From f3db58eca511175ec1813895f1f0a2b25415f0f3 Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Fri, 2 Oct 2020 09:46:57 -0400 Subject: [PATCH 001/109] Use top-level build.sh in regression test compile scripts (#209) * Use top-level build.sh to compile executables in for regression tests * Do not copy the executable from build to the top-level directory --- CMakeLists.txt | 18 ++-- build.sh | 16 ++-- tests/RegressionTests_hera.gnu.log | 30 +++--- tests/RegressionTests_hera.intel.log | 120 ++++++++++++------------ tests/RegressionTests_orion.intel.log | 108 ++++++++++----------- tests/RegressionTests_wcoss_cray.log | 96 +++++++++---------- tests/RegressionTests_wcoss_dell_p3.log | 102 ++++++++++---------- tests/compile.sh | 72 +++++++------- 8 files changed, 278 insertions(+), 284 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 09a1ed7dec..76baa59942 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -262,23 +262,23 @@ target_link_libraries(ufs-weather-model-lib PUBLIC fv3atm) ############################################################################### ### UFS executable ############################################################################### -add_executable(NEMS.exe +add_executable(ufs_model NEMS/src/MAIN_NEMS.F90 ) -add_dependencies(NEMS.exe ufs-weather-model-lib) +add_dependencies(ufs_model ufs-weather-model-lib) -target_compile_definitions(NEMS.exe PRIVATE -DESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR}) -target_include_directories(NEMS.exe PRIVATE ${PROJECT_BINARY_DIR}/NEMS/src) +target_compile_definitions(ufs_model PRIVATE -DESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR}) +target_include_directories(ufs_model PRIVATE ${PROJECT_BINARY_DIR}/NEMS/src) -set_target_properties(NEMS.exe PROPERTIES Fortran_MODULE_DIRECTORY ${PROJECT_BINARY_DIR}/mod) +set_target_properties(ufs_model PROPERTIES Fortran_MODULE_DIRECTORY ${PROJECT_BINARY_DIR}/mod) if(WW3) - target_compile_definitions(NEMS.exe PRIVATE -DFRONT_WW3=WMESMFMD) - set_target_properties(NEMS.exe PROPERTIES Fortran_MODULE_DIRECTORY ${PROJECT_SOURCE_DIR}/WW3/model/mod) - add_dependencies(NEMS.exe ww3_nems) + target_compile_definitions(ufs_model PRIVATE -DFRONT_WW3=WMESMFMD) + set_target_properties(ufs_model PROPERTIES Fortran_MODULE_DIRECTORY ${PROJECT_SOURCE_DIR}/WW3/model/mod) + add_dependencies(ufs_model ww3_nems) endif() -target_link_libraries(NEMS.exe +target_link_libraries(ufs_model ufs-weather-model-lib ${WW3_LIBS} esmf NetCDF::NetCDF_Fortran ${MKL_LIB}) diff --git a/build.sh b/build.sh index dffe3f405a..d2a071c38d 100755 --- a/build.sh +++ b/build.sh @@ -2,9 +2,9 @@ set -eu if [[ $(uname -s) == Darwin ]]; then - readonly MYDIR=$(cd "$(dirname "$(greadlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P) + readonly UFS_MODEL_DIR=$(cd "$(dirname "$(greadlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P) else - readonly MYDIR=$(cd "$(dirname "$(readlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P) + readonly UFS_MODEL_DIR=$(cd "$(dirname "$(readlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P) fi export CMAKE_C_COMPILER=${CMAKE_C_COMPILER:-mpicc} @@ -14,14 +14,12 @@ export CMAKE_Fortran_COMPILER=${CMAKE_Fortran_COMPILER:-mpif90} export NETCDF=${NETCDF:?"Please set NETCDF environment variable"} export ESMFMKFILE=${ESMFMKFILE:?"Please set ESMFMKFILE environment variable"} -BUILD_DIR=${MYDIR}/build -rm -rf ${BUILD_DIR} -mkdir ${BUILD_DIR} +BUILD_DIR=${BUILD_DIR:-${UFS_MODEL_DIR}/build} +mkdir -p ${BUILD_DIR} -CCPP_SUITES="${CCPP_SUITES:-FV3_GFS_v15p2}" -CMAKE_FLAGS+=" -DCCPP_SUITES=${CCPP_SUITES} -DNETCDF_DIR=${NETCDF}" +[[ -n "${CCPP_SUITES:-""}" ]] && CMAKE_FLAGS+=" -DCCPP_SUITES=${CCPP_SUITES}" +CMAKE_FLAGS+=" -DNETCDF_DIR=${NETCDF}" cd ${BUILD_DIR} -cmake .. ${CMAKE_FLAGS} +cmake ${UFS_MODEL_DIR} ${CMAKE_FLAGS} make -j ${BUILD_JOBS:-4} -cp NEMS.exe ${MYDIR}/ufs_weather_model diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index e8301127c2..9d7a06ef69 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Tue Sep 29 14:43:14 UTC 2020 +Thu Oct 1 13:48:21 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_179204/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/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-20200929/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_179204/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/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-20200929/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_179204/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/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 @@ -187,7 +187,7 @@ Test 003 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_179204/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -255,7 +255,7 @@ Test 004 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_179204/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_gsd_prod Checking test 005 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -347,7 +347,7 @@ Test 005 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_179204/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_thompson_prod Checking test 006 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -415,7 +415,7 @@ Test 006 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_179204/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_thompson_no_aero_prod Checking test 007 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -483,7 +483,7 @@ Test 007 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_179204/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_rrfs_v1beta_prod Checking test 008 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -575,13 +575,13 @@ Test 008 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_179204/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_control_debug_prod Checking test 009 fv3_ccpp_control_debug results .... Test 009 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_179204/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_gfs_v15p2_debug_prod Checking test 010 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -649,7 +649,7 @@ Test 010 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_179204/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_gfs_v16beta_debug_prod Checking test 011 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -717,7 +717,7 @@ Test 011 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_179204/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_multigases_prod Checking test 012 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -791,5 +791,5 @@ Test 012 fv3_ccpp_multigases PASS REGRESSION TEST WAS SUCCESSFUL -Tue Sep 29 15:07:20 UTC 2020 -Elapsed time: 00h:24m:09s. Have a nice day! +Thu Oct 1 14:10:17 UTC 2020 +Elapsed time: 00h:21m:57s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 1c3681cc68..674f0f81ae 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Tue Sep 29 14:43:09 UTC 2020 +Thu Oct 1 13:18:48 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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-20200929/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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-20200929/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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-20200929/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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-20200929/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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-20200929/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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-20200929/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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-20200929/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,7 +787,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -855,7 +855,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfdlmprad_prod Checking test 016 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -952,7 +952,7 @@ Test 016 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1001,7 +1001,7 @@ Test 017 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1050,7 +1050,7 @@ Test 018 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,7 +1124,7 @@ Test 019 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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 @@ -1192,7 +1192,7 @@ Test 020 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1248,7 +1248,7 @@ Test 021 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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 @@ -1315,7 +1315,7 @@ Test 022 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1326,7 +1326,7 @@ Test 023 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1335,7 +1335,7 @@ Test 024 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1346,7 +1346,7 @@ Test 025 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_regional_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1357,19 +1357,19 @@ Test 026 fv3_ccpp_regional_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_stretched_nest_debug_prod Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1417,7 +1417,7 @@ Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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 @@ -1465,7 +1465,7 @@ Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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 @@ -1513,7 +1513,7 @@ Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_hwrfsas_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 032 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,7 +1561,7 @@ Test 032 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1609,7 +1609,7 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,7 +1657,7 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,7 +1705,7 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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 @@ -1753,7 +1753,7 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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 @@ -1805,7 +1805,7 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1859,7 +1859,7 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1951,7 +1951,7 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2019,7 +2019,7 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2087,7 +2087,7 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2155,7 +2155,7 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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 @@ -2223,7 +2223,7 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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 @@ -2315,7 +2315,7 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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 @@ -2383,7 +2383,7 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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 @@ -2451,7 +2451,7 @@ Test 046 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfsv16_csawmg_prod Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2499,7 +2499,7 @@ Test 047 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfsv16_csawmgt_prod Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2547,7 +2547,7 @@ Test 048 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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 @@ -2595,7 +2595,7 @@ Test 049 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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 @@ -2663,7 +2663,7 @@ Test 050 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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 @@ -2731,7 +2731,7 @@ Test 051 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/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 @@ -2799,7 +2799,7 @@ Test 052 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gsd_debug_prod Checking test 053 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2867,7 +2867,7 @@ Test 053 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gsd_diag3d_debug_prod Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2935,7 +2935,7 @@ Test 054 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_thompson_debug_prod Checking test 055 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3003,7 +3003,7 @@ Test 055 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_thompson_no_aero_debug_prod Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3071,7 +3071,7 @@ Test 056 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_65594/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3139,5 +3139,5 @@ Test 057 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Sep 29 15:11:40 UTC 2020 -Elapsed time: 00h:28m:34s. Have a nice day! +Thu Oct 1 13:45:15 UTC 2020 +Elapsed time: 00h:26m:29s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index dc648535c1..2e86370b87 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Wed Sep 30 07:26:34 CDT 2020 +Thu Oct 1 08:23:30 CDT 2020 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/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-20200929/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/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-20200929/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/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-20200929/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/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-20200929/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/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-20200929/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/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-20200929/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/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-20200929/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,7 +787,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -836,7 +836,7 @@ Test 014 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -934,7 +934,7 @@ Test 016 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1008,7 +1008,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/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 @@ -1076,7 +1076,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1132,7 +1132,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/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 @@ -1199,7 +1199,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1210,7 +1210,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1219,7 +1219,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1230,7 +1230,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_regional_c768_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_regional_c768_prod Checking test 024 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1241,19 +1241,19 @@ Test 024 fv3_ccpp_regional_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1301,7 +1301,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/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 @@ -1349,7 +1349,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/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 @@ -1397,7 +1397,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1445,7 +1445,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1493,7 +1493,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1541,7 +1541,7 @@ Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1593,7 +1593,7 @@ Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1647,7 +1647,7 @@ Test 034 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1739,7 +1739,7 @@ Test 035 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1807,7 +1807,7 @@ Test 036 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1875,7 +1875,7 @@ Test 037 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1967,7 +1967,7 @@ Test 038 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/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 @@ -2035,7 +2035,7 @@ Test 039 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gfs_v16beta_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/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 @@ -2103,7 +2103,7 @@ Test 040 fv3_ccpp_gfs_v16beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2151,7 +2151,7 @@ Test 041 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2199,7 +2199,7 @@ Test 042 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2247,7 +2247,7 @@ Test 043 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2315,7 +2315,7 @@ Test 044 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfs_v15p2_debug_prod Checking test 045 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2383,7 +2383,7 @@ Test 045 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfs_v16beta_debug_prod Checking test 046 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2451,7 +2451,7 @@ Test 046 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2519,7 +2519,7 @@ Test 047 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2587,7 +2587,7 @@ Test 048 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2655,7 +2655,7 @@ Test 049 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2723,7 +2723,7 @@ Test 050 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_337997/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2791,5 +2791,5 @@ Test 051 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Sep 30 07:55:38 CDT 2020 -Elapsed time: 00h:29m:05s. Have a nice day! +Thu Oct 1 08:53:08 CDT 2020 +Elapsed time: 00h:29m:39s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 86cf3d3508..58c36eccad 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Tue Sep 29 17:03:17 UTC 2020 +Thu Oct 1 14:16:29 UTC 2020 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/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-20200929/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/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-20200929/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/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-20200929/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/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-20200929/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/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-20200929/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/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-20200929/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/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-20200929/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -841,7 +841,7 @@ Test 014 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -909,7 +909,7 @@ Test 015 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -965,7 +965,7 @@ Test 016 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1032,7 +1032,7 @@ Test 017 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1043,7 +1043,7 @@ Test 018 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1052,7 +1052,7 @@ Test 019 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1063,19 +1063,19 @@ Test 020 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_control_debug_prod Checking test 021 fv3_ccpp_control_debug results .... Test 021 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_stretched_nest_debug_prod Checking test 022 fv3_ccpp_stretched_nest_debug results .... Test 022 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfdlmp_prod Checking test 023 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,7 +1123,7 @@ Test 023 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfdlmprad_gwd_prod Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1171,7 +1171,7 @@ Test 024 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,7 +1219,7 @@ Test 025 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 026 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,7 +1267,7 @@ Test 026 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,7 +1315,7 @@ Test 027 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,7 +1363,7 @@ Test 028 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,7 +1411,7 @@ Test 029 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,7 +1459,7 @@ Test 030 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1511,7 +1511,7 @@ Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1565,7 +1565,7 @@ Test 032 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,7 +1657,7 @@ Test 033 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1725,7 +1725,7 @@ Test 034 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,7 +1793,7 @@ Test 035 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1885,7 +1885,7 @@ Test 036 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfsv16_csawmg_prod Checking test 037 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1933,7 +1933,7 @@ Test 037 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfsv16_csawmgt_prod Checking test 038 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1981,7 +1981,7 @@ Test 038 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gocart_clm_prod Checking test 039 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2029,7 +2029,7 @@ Test 039 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfs_v16beta_flake_prod Checking test 040 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2097,7 +2097,7 @@ Test 040 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2165,7 +2165,7 @@ Test 041 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2233,7 +2233,7 @@ Test 042 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2301,7 +2301,7 @@ Test 043 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2369,7 +2369,7 @@ Test 044 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_26822/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2437,5 +2437,5 @@ Test 045 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Sep 29 17:33:41 UTC 2020 -Elapsed time: 00h:30m:24s. Have a nice day! +Thu Oct 1 14:53:07 UTC 2020 +Elapsed time: 00h:36m:40s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 82ea7f9acc..d83176f2e5 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Tue Sep 29 16:23:49 UTC 2020 +Thu Oct 1 14:16:18 UTC 2020 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/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-20200929/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/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-20200929/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/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-20200929/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/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-20200929/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/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-20200929/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/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-20200929/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/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-20200929/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,7 +816,7 @@ Test 014 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -865,7 +865,7 @@ Test 015 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -939,7 +939,7 @@ Test 016 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1063,7 +1063,7 @@ Test 018 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,7 +1130,7 @@ Test 019 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1141,7 +1141,7 @@ Test 020 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1150,7 +1150,7 @@ Test 021 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1161,7 +1161,7 @@ Test 022 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_regional_c768_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_regional_c768_prod Checking test 023 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1172,19 +1172,19 @@ Test 023 fv3_ccpp_regional_c768 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1232,7 +1232,7 @@ Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1280,7 +1280,7 @@ Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,7 +1328,7 @@ Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 029 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,7 +1376,7 @@ Test 029 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1424,7 +1424,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1472,7 +1472,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1520,7 +1520,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/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 @@ -1568,7 +1568,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/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 @@ -1620,7 +1620,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1674,7 +1674,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1766,7 +1766,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1834,7 +1834,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/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 @@ -1902,7 +1902,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1994,7 +1994,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfsv16_csawmg_prod Checking test 040 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2042,7 +2042,7 @@ Test 040 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfsv16_csawmgt_prod Checking test 041 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2090,7 +2090,7 @@ Test 041 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gocart_clm_prod Checking test 042 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2138,7 +2138,7 @@ Test 042 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfs_v16beta_flake_prod Checking test 043 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,7 +2206,7 @@ Test 043 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gsd_debug_prod Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,7 +2274,7 @@ Test 044 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gsd_diag3d_debug_prod Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2342,7 +2342,7 @@ Test 045 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_thompson_debug_prod Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,7 +2410,7 @@ Test 046 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_thompson_no_aero_debug_prod Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2478,7 +2478,7 @@ Test 047 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_102642/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2546,5 +2546,5 @@ Test 048 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Sep 29 17:07:02 UTC 2020 -Elapsed time: 00h:43m:25s. Have a nice day! +Thu Oct 1 16:01:13 UTC 2020 +Elapsed time: 01h:45m:00s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index 45aa29545d..b1b91fcb7a 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -43,12 +43,12 @@ BUILD_DIR=$(pwd)/build_${BUILD_NAME} # Make sure we have reasonable number of threads. if [[ $MACHINE_ID == cheyenne.* ]] ; then - MAKE_THREADS=${MAKE_THREADS:-3} + BUILD_JOBS=${BUILD_JOBS:-3} elif [[ $MACHINE_ID == wcoss_dell_p3 ]] ; then - MAKE_THREADS=${MAKE_THREADS:-1} + BUILD_JOBS=${BUILD_JOBS:-1} fi -MAKE_THREADS=${MAKE_THREADS:-8} +BUILD_JOBS=${BUILD_JOBS:-8} hostname @@ -64,34 +64,28 @@ set -x echo "Compiling ${MAKE_OPT} into $BUILD_NAME.exe on $MACHINE_ID" -if [ $clean_before = YES ] ; then - rm -rf ${BUILD_DIR} -fi +# set CMAKE_FLAGS based on $MAKE_OPT -mkdir -p ${BUILD_DIR} - -# set CCPP_CMAKE_FLAGS based on $MAKE_OPT - -CCPP_CMAKE_FLAGS="-DNETCDF_DIR=${NETCDF}" +CMAKE_FLAGS='' if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DDEBUG=Y" + CMAKE_FLAGS="${CMAKE_FLAGS} -DDEBUG=Y" elif [[ "${MAKE_OPT}" == *"REPRO=Y"* ]]; then - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DREPRO=Y" + CMAKE_FLAGS="${CMAKE_FLAGS} -DREPRO=Y" fi if [[ "${MAKE_OPT}" == *"32BIT=Y"* ]]; then - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -D32BIT=Y" + CMAKE_FLAGS="${CMAKE_FLAGS} -D32BIT=Y" fi if [[ "${MAKE_OPT}" == *"OPENMP=N"* ]]; then - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DOPENMP=OFF" + CMAKE_FLAGS="${CMAKE_FLAGS} -DOPENMP=OFF" fi if [[ "${MAKE_OPT}" == *"MULTI_GASES=Y"* ]]; then - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DMULTI_GASES=ON" + CMAKE_FLAGS="${CMAKE_FLAGS} -DMULTI_GASES=ON" else - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DMULTI_GASES=OFF" + CMAKE_FLAGS="${CMAKE_FLAGS} -DMULTI_GASES=OFF" fi if [[ "${MAKE_OPT}" == *"CCPP=Y"* ]]; then @@ -105,52 +99,55 @@ if [[ "${MAKE_OPT}" == *"CCPP=Y"* ]]; then # Similar for this directory, which apparently never gets populated mkdir -p $PATHTR/FMS/fms2_io/include - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DCCPP=ON -DMPI=ON" + CMAKE_FLAGS="${CMAKE_FLAGS} -DCCPP=ON -DMPI=ON" if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Debug" + CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Debug" elif [[ "${MAKE_OPT}" == *"REPRO=Y"* ]]; then - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Bitforbit" + CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Bitforbit" else - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Release" + CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Release" if [[ "${MACHINE_ID}" == "jet.intel" ]]; then - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DSIMDMULTIARCH=ON" + CMAKE_FLAGS="${CMAKE_FLAGS} -DSIMDMULTIARCH=ON" fi fi if [[ "${MAKE_OPT}" == *"32BIT=Y"* ]]; then - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DDYN32=ON" + CMAKE_FLAGS="${CMAKE_FLAGS} -DDYN32=ON" else - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DDYN32=OFF" + CMAKE_FLAGS="${CMAKE_FLAGS} -DDYN32=OFF" fi # Check if suites argument is provided or not set +ex TEST=$( echo $MAKE_OPT | grep -e "SUITES=" ) if [[ $? -eq 0 ]]; then - SUITES=$( echo $MAKE_OPT | sed 's/.* SUITES=//' | sed 's/ .*//' ) - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DCCPP_SUITES=${SUITES}" - echo "Compiling suites ${SUITES}" + CCPP_SUITES=$( echo $MAKE_OPT | sed 's/.* SUITES=//' | sed 's/ .*//' ) + echo "Compiling suites ${CCPP_SUITES}" fi set -ex fi if [[ "${MAKE_OPT}" == *"WW3=Y"* ]]; then - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DWW3=Y" + CMAKE_FLAGS="${CMAKE_FLAGS} -DWW3=Y" fi -CCPP_CMAKE_FLAGS=$(trim "${CCPP_CMAKE_FLAGS}") +CMAKE_FLAGS=$(trim "${CMAKE_FLAGS}") -( - cd ${BUILD_DIR} +if [ $clean_before = YES ] ; then + rm -rf ${BUILD_DIR} +fi + +export BUILD_DIR +export BUILD_JOBS +export CCPP_SUITES +export CMAKE_FLAGS - cmake ${PATHTR} ${CCPP_CMAKE_FLAGS} - make -j ${MAKE_THREADS} - mv NEMS.exe ${PATHTR}/tests/${BUILD_NAME}.exe - cp ${PATHTR}/modulefiles/${MACHINE_ID}/fv3 ${PATHTR}/tests/modules.${BUILD_NAME} - cd .. -) +bash -x ${PATHTR}/build.sh + +mv ${BUILD_DIR}/ufs_model ${PATHTR}/tests/${BUILD_NAME}.exe +cp ${PATHTR}/modulefiles/${MACHINE_ID}/fv3 ${PATHTR}/tests/modules.${BUILD_NAME} if [ $clean_after = YES ] ; then rm -rf ${BUILD_DIR} @@ -158,4 +155,3 @@ fi elapsed=$SECONDS echo "Elapsed time $elapsed seconds. Compiling ${MAKE_OPT} finished" - From 219053035b0b0e014d0a49c7a48300419cbafc10 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Wed, 7 Oct 2020 14:20:45 -0400 Subject: [PATCH 002/109] Preparation for S2S cmake (#213) - All `#ifdef OPENMP` are replaced with `#ifdef _OPENMP` to follow standard compiler macro for OpenMP. - CCPP code generation is moved inside of `FV3/`. This will be redundant when the Data Atmosphere component comes in. Updates to the python script was performed to remove the hard-wired `FV3/` path name in the file. - `cmake/GNU.cmake` and `cmake/Intel.cmake` hard-wire global compiler definitions with `add_definitions`. These are now applied with `target_compile_definitions`. - CMakeLists.txt is passed through cmake-norm checker. - `INSTALL_INTERFACE` is added, so that this component can be installed and linked in downstream applications e.g. JEDI. This may be incomplete, so will need more work. --- .gitignore | 16 ++ .gitmodules | 30 +-- CMakeLists.txt | 259 ++++++++++-------------- FV3 | 2 +- build.sh | 2 +- cmake/GNU.cmake | 33 +-- cmake/Intel.cmake | 18 -- stochastic_physics | 2 +- tests/RegressionTests_hera.gnu.log | 30 +-- tests/RegressionTests_hera.intel.log | 120 +++++------ tests/RegressionTests_orion.intel.log | 108 +++++----- tests/RegressionTests_wcoss_cray.log | 96 ++++----- tests/RegressionTests_wcoss_dell_p3.log | 102 +++++----- tests/compile.sh | 1 + 14 files changed, 374 insertions(+), 445 deletions(-) diff --git a/.gitignore b/.gitignore index 07e72778a7..76cce4296f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,18 @@ coupled*.mk rt.conf.single +*.swp +*~ + +build*/ +install*/ + +ufs_weather_model +NEMS.exe +*.exe + +tests/fv3_*.exe +tests/modules.fv3_* +tests/ecflow_run/ +tests/log_*/ +tests/lock/ +tests/Compile_*.log diff --git a/.gitmodules b/.gitmodules index a6770b7e98..0692ca31b1 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,20 +1,20 @@ [submodule "FV3"] - path = FV3 - url = https://github.com/NOAA-EMC/fv3atm - branch = develop + path = FV3 + url = https://github.com/NOAA-EMC/fv3atm + branch = develop [submodule "NEMS"] - path = NEMS - url = https://github.com/NOAA-EMC/NEMS - branch = develop + path = NEMS + url = https://github.com/NOAA-EMC/NEMS + branch = develop [submodule "FMS"] - path = FMS - url = https://github.com/NOAA-GFDL/FMS - branch = master + path = FMS + url = https://github.com/NOAA-GFDL/FMS + branch = master [submodule "WW3"] - path = WW3 - url = https://github.com/NOAA-EMC/WW3 - branch = develop + path = WW3 + url = https://github.com/NOAA-EMC/WW3 + branch = develop [submodule "stochastic_physics"] - path = stochastic_physics - url = https://github.com/noaa-psd/stochastic_physics - branch = master + path = stochastic_physics + url = https://github.com/noaa-psd/stochastic_physics + branch = master diff --git a/CMakeLists.txt b/CMakeLists.txt index 76baa59942..19313de5b1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ set(CMAKE_CXX_COMPILER $ENV{CMAKE_CXX_COMPILER}) set(CMAKE_Fortran_COMPILER $ENV{CMAKE_Fortran_COMPILER}) set(CMAKE_Platform $ENV{CMAKE_Platform}) -project(ufs-weather-model +project(ufs VERSION 1.0 LANGUAGES C CXX Fortran) @@ -33,9 +33,9 @@ set(WW3 OFF CACHE BOOL "Enable WW3") if(CMAKE_Platform) message("") - if(EXISTS ${PROJECT_SOURCE_DIR}/cmake/configure_${CMAKE_Platform}.cmake) + if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/cmake/configure_${CMAKE_Platform}.cmake) message("Setting configuration for ${CMAKE_Platform}") - include(${PROJECT_SOURCE_DIR}/cmake/configure_${CMAKE_Platform}.cmake) + include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/configure_${CMAKE_Platform}.cmake) else() message("Platform '${CMAKE_Platform}' configuration file does not exist") endif() @@ -65,11 +65,18 @@ message("CXX compiler: ${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION message("Fortran compiler: ${CMAKE_Fortran_COMPILER_ID} ${CMAKE_Fortran_COMPILER_VERSION} (${Fortran_COMPILER_NAME})") message("") +if (CMAKE_Fortran_COMPILER_ID MATCHES "GNU" AND CMAKE_Fortran_COMPILER_VERSION VERSION_LESS 9.0.0) + message(FATAL_ERROR "GNU Compiler >= 9 is required") +endif() + include(cmake/${CMAKE_Fortran_COMPILER_ID}.cmake) message("") find_package(NetCDF REQUIRED C Fortran) find_package(MPI REQUIRED) +if(OPENMP) + find_package(OpenMP REQUIRED) +endif() find_package(ESMF MODULE REQUIRED) find_package(bacio REQUIRED) @@ -83,75 +90,12 @@ endif() # See https://github.com/NOAA-EMC/NCEPLIBS-nemsio/pull/22 target_link_libraries(nemsio::nemsio INTERFACE w3emc::w3emc_d bacio::bacio_4) -add_definitions(-Duse_libMPI) -add_definitions(-Duse_netCDF) -add_definitions(-Duse_WRTCOMP) -add_definitions(-DSPMD) -add_definitions(-DUSE_LOG_DIAG_FIELD_INFO) -#add_definitions(-Duse_LARGEFILE) -add_definitions(-DUSE_GFSL63) -add_definitions(-DGFS_PHYS) -add_definitions(-DMOIST_CAPPA) -add_definitions(-DUSE_COND) -add_definitions(-DNEW_TAUCTMAX) -add_definitions(-DINTERNAL_FILE_NML) - -if (CMAKE_Fortran_COMPILER_ID MATCHES "GNU" AND CMAKE_Fortran_COMPILER_VERSION VERSION_LESS 9.0.0) - message(FATAL_ERROR "GNU Compiler >= 9 is required") -endif() - if(CCPP) - - find_package(Python 3 QUIET COMPONENTS Interpreter) - if (NOT Python_Interpreter_FOUND) - find_package(Python 2.7 QUIET REQUIRED COMPONENTS Interpreter) - endif() - message("Found Python: ${Python_EXECUTABLE}") - - if(DEFINED CCPP_SUITES) - message("Calling CCPP code generator (ccpp_prebuild.py) for SUITES = ${CCPP_SUITES}") - execute_process(COMMAND ${Python_EXECUTABLE} - "FV3/ccpp/framework/scripts/ccpp_prebuild.py" - "--config=FV3/ccpp/config/ccpp_prebuild_config.py" - "--suites=${CCPP_SUITES}" - "--builddir=${PROJECT_BINARY_DIR}/FV3" - WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} - OUTPUT_FILE ${PROJECT_BINARY_DIR}/ccpp_prebuild.out - ERROR_FILE ${PROJECT_BINARY_DIR}/ccpp_prebuild.err - RESULT_VARIABLE RC - ) - else() - message("Calling CCPP code generator (ccpp_prebuild.py) ...") - execute_process(COMMAND ${Python_EXECUTABLE} - "FV3/ccpp/framework/scripts/ccpp_prebuild.py" - "--config=FV3/ccpp/config/ccpp_prebuild_config.py" - "--builddir=${PROJECT_BINARY_DIR}/FV3" - WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} - OUTPUT_FILE ${PROJECT_BINARY_DIR}/ccpp_prebuild.out - ERROR_FILE ${PROJECT_BINARY_DIR}/ccpp_prebuild.err - RESULT_VARIABLE RC - ) - endif() - - # Check return code from ccpp_prebuild.py - if(RC EQUAL 0) - message("") - else() - message(FATAL_ERROR "An error occured while running ccpp_prebuild.py, check ${PROJECT_BINARY_DIR}/ccpp_prebuild.{out,err}") - endif() - - # this should not be necessary; including CCPP_*.cmake here and passing - # SCHEMES, CAPS and TYPEDEFS via environment variables to CCPP build. - # CCPP should be able to directly include those three .cmake files. - - include(${PROJECT_BINARY_DIR}/FV3/ccpp/physics/CCPP_SCHEMES.cmake) - include(${PROJECT_BINARY_DIR}/FV3/ccpp/physics/CCPP_CAPS.cmake) - include(${PROJECT_BINARY_DIR}/FV3/ccpp/physics/CCPP_TYPEDEFS.cmake) - - set(ENV{CCPP_SCHEMES} "${SCHEMES}") - set(ENV{CCPP_CAPS} "${CAPS}") - set(ENV{CCPP_TYPEDEFS} "${TYPEDEFS}") - + find_package(Python 3 QUIET COMPONENTS Interpreter) + if (NOT Python_Interpreter_FOUND) + find_package(Python 2.7 QUIET REQUIRED COMPONENTS Interpreter) + endif() + message("Found Python: ${Python_EXECUTABLE}") endif() ############################################################################### @@ -162,14 +106,34 @@ add_library(fms ${fms_src_files}) # stupid cmake can not figure out dependency of fft.F90 on fft99.F90 because 'use fft99_mod' is inside ifdefs set_property(SOURCE FMS/fft/fft.F90 APPEND_STRING PROPERTY COMPILE_FLAGS "-DSGICRAY=0 -DNAGFFT=0") -target_include_directories(fms PUBLIC $ - $ - $ - $) -target_link_libraries(fms PRIVATE NetCDF::NetCDF_Fortran) +list(APPEND _fms_defs_public use_libMPI + use_netCDF + GFS_PHYS + INTERNAL_FILE_NML) +if(QUAD_PRECISION) + list(APPEND _fms_defs_public ENABLE_QUAD_PRECISION) +endif() +target_compile_definitions(fms PUBLIC "${_fms_defs_public}") + +if(32BIT) + list(APPEND _fms_defs_private OVERLOAD_R4 + OVERLOAD_R8) +endif() +target_compile_definitions(fms PRIVATE "${_fms_defs_private}") + +target_include_directories(fms PUBLIC $ + $ + $ + $) +target_link_libraries(fms PUBLIC MPI::MPI_Fortran + NetCDF::NetCDF_Fortran) +if(OpenMP_Fortran_FOUND) + target_link_libraries(fms PUBLIC OpenMP::OpenMP_Fortran) +endif() set_target_properties(fms PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS) set_target_properties(fms PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod) -target_include_directories(fms PUBLIC $) +target_include_directories(fms INTERFACE $ + $) ############################################################################### ### stochastic_physics @@ -185,115 +149,112 @@ add_subdirectory(FV3) ### WW3 ############################################################################### if(WW3) - set(WW3_COMP ${CMAKE_Platform}) - if(${CMAKE_Platform} STREQUAL "hera.intel") - set(WW3_COMP "hera") - endif() - if(${CMAKE_Platform} STREQUAL "orion.intel") - set(WW3_COMP "orion") + if(CMAKE_Platform) + if(${CMAKE_Platform} STREQUAL "hera.intel") + set(WW3_COMP "hera") + elseif(${CMAKE_Platform} STREQUAL "orion.intel") + set(WW3_COMP "orion") + else() + set(WW3_COMP ${CMAKE_Platform}) + endif() endif() message("Build WW3:") message(" run: ${CMAKE_BUILD_TOOL} WW3_PARCOMPN=4 WW3_COMP=${WW3_COMP} ww3_nemslibonly") - message(" in: ${PROJECT_SOURCE_DIR}/WW3/model/esmf") + message(" in: ${CMAKE_CURRENT_SOURCE_DIR}/WW3/model/esmf") message("") add_custom_target(ww3_nems - WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/WW3/model/esmf - COMMAND ${CMAKE_BUILD_TOOL} WW3_PARCOMPN=4 WW3_COMP=${WW3_COMP} ww3_nemslibonly > ${PROJECT_BINARY_DIR}/ww3_make.log 2>&1 - ) + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/WW3/model/esmf + COMMAND ${CMAKE_BUILD_TOOL} WW3_PARCOMPN=4 WW3_COMP=${WW3_COMP} ww3_nemslibonly > ${CMAKE_CURRENT_BINARY_DIR}/ww3_make.log 2>&1) - set(WW3_LIBS ${PROJECT_SOURCE_DIR}/WW3/model/obj/libww3_multi_esmf.a) + set(WW3_LIBS ${CMAKE_CURRENT_SOURCE_DIR}/WW3/model/obj/libww3_multi_esmf.a) endif() ############################################################################### -### NEMS (ufs-weather-model-lib) +### NEMS (ufs) ############################################################################### -add_library( - ufs-weather-model-lib - - NEMS/src/module_NEMS_UTILS.F90 - NEMS/src/module_MEDIATOR_methods.F90 - NEMS/src/module_MEDIATOR.F90 - NEMS/src/module_MEDIATOR_SpaceWeather.F90 - NEMS/src/module_EARTH_INTERNAL_STATE.F90 - NEMS/src/module_EARTH_GRID_COMP.F90 - NEMS/src/module_NEMS_INTERNAL_STATE.F90 - NEMS/src/module_NEMS_GRID_COMP.F90 - NEMS/src/module_NEMS_Rusage.F90 - NEMS/src/nems_c_rusage.c - NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90 -) -add_dependencies(ufs-weather-model-lib fv3atm) -target_link_libraries(ufs-weather-model-lib PRIVATE esmf) +list(APPEND _nems_srcs NEMS/src/module_NEMS_UTILS.F90 + NEMS/src/module_MEDIATOR_methods.F90 + NEMS/src/module_MEDIATOR.F90 + NEMS/src/module_MEDIATOR_SpaceWeather.F90 + NEMS/src/module_EARTH_INTERNAL_STATE.F90 + NEMS/src/module_EARTH_GRID_COMP.F90 + NEMS/src/module_NEMS_INTERNAL_STATE.F90 + NEMS/src/module_NEMS_GRID_COMP.F90 + NEMS/src/module_NEMS_Rusage.F90 + NEMS/src/nems_c_rusage.c + NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90) + +configure_file(${CMAKE_CURRENT_SOURCE_DIR}/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h + ${CMAKE_CURRENT_BINARY_DIR}/NEMS/src/ESMFVersionDefine.h + COPYONLY) +# until we remove "../ESMFVersionDefine.h" from ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90 +configure_file(${CMAKE_CURRENT_SOURCE_DIR}/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h + ${CMAKE_CURRENT_BINARY_DIR}/NEMS/ESMFVersionDefine.h + COPYONLY) +configure_file(${CMAKE_CURRENT_SOURCE_DIR}/NEMS/src/ESMFConvenienceMacros.h + ${CMAKE_CURRENT_BINARY_DIR}/NEMS/src/ESMFConvenienceMacros.h + COPYONLY) + +add_library(ufs ${_nems_srcs}) -target_compile_definitions(ufs-weather-model-lib PRIVATE -DESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR}) -target_compile_definitions(ufs-weather-model-lib PRIVATE -DFRONT_FMS) -target_compile_definitions(ufs-weather-model-lib PRIVATE -DFRONT_FV3=fv3gfs_cap_mod) +list(APPEND _ufs_defs_private ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR} + FRONT_FMS + FRONT_FV3=fv3gfs_cap_mod) -target_include_directories(ufs-weather-model-lib PRIVATE ${PROJECT_BINARY_DIR}/NEMS/src) -target_include_directories(ufs-weather-model-lib PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/FV3/mod) -target_include_directories(ufs-weather-model-lib PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod) +set_target_properties(ufs PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) +target_include_directories(ufs PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/NEMS/src) if(WW3) - target_compile_definitions(ufs-weather-model-lib PRIVATE -DFRONT_WW3=WMESMFMD) - target_include_directories(ufs-weather-model-lib PRIVATE ${PROJECT_SOURCE_DIR}/WW3/model/mod) - set_target_properties(ufs-weather-model-lib PROPERTIES Fortran_MODULE_DIRECTORY ${PROJECT_SOURCE_DIR}/WW3/model/mod) - add_dependencies(ufs-weather-model-lib ww3_nems) + list(APPEND _ufs_defs_private FRONT_WW3=WMESMFMD) + target_include_directories(ufs PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/WW3/model/mod) + add_dependencies(ufs ww3_nems) + target_link_libraries(ufs PUBLIC ${WW3_LIBS}) endif() -set_target_properties(ufs-weather-model-lib PROPERTIES Fortran_MODULE_DIRECTORY ${PROJECT_BINARY_DIR}/mod) -target_include_directories(ufs-weather-model-lib PUBLIC $ - $ - $) +target_include_directories(ufs INTERFACE $ + $) -configure_file(${PROJECT_SOURCE_DIR}/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h - ${PROJECT_BINARY_DIR}/NEMS/src/ESMFVersionDefine.h - COPYONLY) -# until we remove "../ESMFVersionDefine.h" from ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90 -configure_file(${PROJECT_SOURCE_DIR}/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h - ${PROJECT_BINARY_DIR}/NEMS/ESMFVersionDefine.h - COPYONLY) -configure_file(${PROJECT_SOURCE_DIR}/NEMS/src/ESMFConvenienceMacros.h - ${PROJECT_BINARY_DIR}/NEMS/src/ESMFConvenienceMacros.h - COPYONLY) - -target_link_libraries(ufs-weather-model-lib PUBLIC fv3atm) +target_compile_definitions(ufs PRIVATE ${_ufs_defs_private}) +target_link_libraries(ufs PUBLIC esmf + fv3atm) ############################################################################### ### UFS executable ############################################################################### -add_executable(ufs_model - NEMS/src/MAIN_NEMS.F90 -) -add_dependencies(ufs_model ufs-weather-model-lib) +add_executable(ufs_model NEMS/src/MAIN_NEMS.F90) + +list(APPEND _ufs_model_defs_private ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR}) -target_compile_definitions(ufs_model PRIVATE -DESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR}) -target_include_directories(ufs_model PRIVATE ${PROJECT_BINARY_DIR}/NEMS/src) +set_target_properties(ufs_model PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -set_target_properties(ufs_model PROPERTIES Fortran_MODULE_DIRECTORY ${PROJECT_BINARY_DIR}/mod) +target_include_directories(ufs_model PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/NEMS/src) if(WW3) - target_compile_definitions(ufs_model PRIVATE -DFRONT_WW3=WMESMFMD) - set_target_properties(ufs_model PROPERTIES Fortran_MODULE_DIRECTORY ${PROJECT_SOURCE_DIR}/WW3/model/mod) - add_dependencies(ufs_model ww3_nems) + list(APPEND _ufs_model_defs_private FRONT_WW3=WMESMFMD) + target_include_directories(ufs_model PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/WW3/model/mod) + add_dependencies(ufs_model ww3_nems) endif() -target_link_libraries(ufs_model - ufs-weather-model-lib - ${WW3_LIBS} - esmf NetCDF::NetCDF_Fortran ${MKL_LIB}) +target_compile_definitions(ufs_model PRIVATE "${_ufs_model_defs_private}") + +target_link_libraries(ufs_model PRIVATE ufs + esmf + NetCDF::NetCDF_Fortran + ${MKL_LIB}) ############################################################################### ### Install ############################################################################### install( - TARGETS ufs-weather-model-lib fms - EXPORT ufs-weather-model-lib-config + TARGETS ufs_model ufs fms + EXPORT ufs-config LIBRARY DESTINATION lib ARCHIVE DESTINATION lib) + install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PREFIX}) -install(EXPORT ufs-weather-model-lib-config +install(EXPORT ufs-config DESTINATION lib/cmake ) diff --git a/FV3 b/FV3 index ab0e5ae33b..2fa7a447cb 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit ab0e5ae33b24c191f201edb80361de799816a2d8 +Subproject commit 2fa7a447cbd5bbf4112bc48e0880f0cf1eb923a2 diff --git a/build.sh b/build.sh index d2a071c38d..92a328401e 100755 --- a/build.sh +++ b/build.sh @@ -22,4 +22,4 @@ CMAKE_FLAGS+=" -DNETCDF_DIR=${NETCDF}" cd ${BUILD_DIR} cmake ${UFS_MODEL_DIR} ${CMAKE_FLAGS} -make -j ${BUILD_JOBS:-4} +make -j ${BUILD_JOBS:-4} VERBOSE=${BUILD_VERBOSE:-0} diff --git a/cmake/GNU.cmake b/cmake/GNU.cmake index 043da10719..16d7e8f4d3 100644 --- a/cmake/GNU.cmake +++ b/cmake/GNU.cmake @@ -23,37 +23,6 @@ else() set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2") endif() - -if(32BIT) - add_definitions(-DOVERLOAD_R4) - add_definitions(-DOVERLOAD_R8) -else() +if(NOT 32BIT) set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fdefault-real-8 -fdefault-double-8") endif() - - -if(OPENMP) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fopenmp") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fopenmp") - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fopenmp") - add_definitions(-DOPENMP) -endif() - -if(AVX2) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS}") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") -elseif(SIMDMULTIARCH) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS}") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") -else() - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS}") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") -endif() - -if(QUAD_PRECISION) - add_definitions(-DENABLE_QUAD_PRECISION) -endif() - -if(MULTI_GASES) - add_definitions(-DMULTI_GASES) -endif() diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake index 7f5adfabe5..6d2eb74537 100644 --- a/cmake/Intel.cmake +++ b/cmake/Intel.cmake @@ -2,11 +2,8 @@ set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fpp -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -qno-opt-dynamic-align") - if(32BIT) set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -i4 -real-size 32") - add_definitions(-DOVERLOAD_R4) - add_definitions(-DOVERLOAD_R8) else() set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -i4 -real-size 64") if(NOT REPRO) @@ -54,19 +51,4 @@ else() set(FAST "-fast-transcendentals") endif() -if(OPENMP) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -qopenmp") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -qopenmp") - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -qopenmp") - add_definitions(-DOPENMP) -endif() - -if(QUAD_PRECISION) - add_definitions(-DENABLE_QUAD_PRECISION) -endif() - -if(MULTI_GASES) - add_definitions(-DMULTI_GASES) -endif() - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D__IFC -sox -fp-model source") diff --git a/stochastic_physics b/stochastic_physics index ffdd19bc6c..6eac8455ec 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit ffdd19bc6c1df747394b7e9958a76238fcd44242 +Subproject commit 6eac8455ece23fcadcb97c876346cd87c0f70e6f diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 9d7a06ef69..86c0bf9100 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Thu Oct 1 13:48:21 UTC 2020 +Mon Oct 5 19:57:38 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/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-20200929/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/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-20200929/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/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 @@ -187,7 +187,7 @@ Test 003 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -255,7 +255,7 @@ Test 004 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_gsd_prod Checking test 005 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -347,7 +347,7 @@ Test 005 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_thompson_prod Checking test 006 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -415,7 +415,7 @@ Test 006 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_thompson_no_aero_prod Checking test 007 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -483,7 +483,7 @@ Test 007 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_rrfs_v1beta_prod Checking test 008 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -575,13 +575,13 @@ Test 008 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_control_debug_prod Checking test 009 fv3_ccpp_control_debug results .... Test 009 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_gfs_v15p2_debug_prod Checking test 010 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -649,7 +649,7 @@ Test 010 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_gfs_v16beta_debug_prod Checking test 011 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -717,7 +717,7 @@ Test 011 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_124202/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_multigases_prod Checking test 012 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -791,5 +791,5 @@ Test 012 fv3_ccpp_multigases PASS REGRESSION TEST WAS SUCCESSFUL -Thu Oct 1 14:10:17 UTC 2020 -Elapsed time: 00h:21m:57s. Have a nice day! +Mon Oct 5 20:22:39 UTC 2020 +Elapsed time: 00h:25m:02s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 674f0f81ae..a36885a1ee 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Thu Oct 1 13:18:48 UTC 2020 +Mon Oct 5 19:22:53 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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-20200929/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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-20200929/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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-20200929/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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-20200929/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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-20200929/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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-20200929/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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-20200929/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,7 +787,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -855,7 +855,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfdlmprad_prod Checking test 016 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -952,7 +952,7 @@ Test 016 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1001,7 +1001,7 @@ Test 017 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1050,7 +1050,7 @@ Test 018 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,7 +1124,7 @@ Test 019 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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 @@ -1192,7 +1192,7 @@ Test 020 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1248,7 +1248,7 @@ Test 021 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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 @@ -1315,7 +1315,7 @@ Test 022 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1326,7 +1326,7 @@ Test 023 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1335,7 +1335,7 @@ Test 024 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1346,7 +1346,7 @@ Test 025 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_regional_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1357,19 +1357,19 @@ Test 026 fv3_ccpp_regional_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_stretched_nest_debug_prod Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1417,7 +1417,7 @@ Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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 @@ -1465,7 +1465,7 @@ Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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 @@ -1513,7 +1513,7 @@ Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_hwrfsas_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 032 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,7 +1561,7 @@ Test 032 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1609,7 +1609,7 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,7 +1657,7 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,7 +1705,7 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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 @@ -1753,7 +1753,7 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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 @@ -1805,7 +1805,7 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1859,7 +1859,7 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1951,7 +1951,7 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2019,7 +2019,7 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2087,7 +2087,7 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2155,7 +2155,7 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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 @@ -2223,7 +2223,7 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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 @@ -2315,7 +2315,7 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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 @@ -2383,7 +2383,7 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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 @@ -2451,7 +2451,7 @@ Test 046 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfsv16_csawmg_prod Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2499,7 +2499,7 @@ Test 047 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfsv16_csawmgt_prod Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2547,7 +2547,7 @@ Test 048 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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 @@ -2595,7 +2595,7 @@ Test 049 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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 @@ -2663,7 +2663,7 @@ Test 050 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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 @@ -2731,7 +2731,7 @@ Test 051 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/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 @@ -2799,7 +2799,7 @@ Test 052 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gsd_debug_prod Checking test 053 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2867,7 +2867,7 @@ Test 053 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gsd_diag3d_debug_prod Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2935,7 +2935,7 @@ Test 054 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_thompson_debug_prod Checking test 055 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3003,7 +3003,7 @@ Test 055 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_thompson_no_aero_debug_prod Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3071,7 +3071,7 @@ Test 056 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_122098/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3139,5 +3139,5 @@ Test 057 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Oct 1 13:45:15 UTC 2020 -Elapsed time: 00h:26m:29s. Have a nice day! +Mon Oct 5 19:54:13 UTC 2020 +Elapsed time: 00h:31m:22s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 2e86370b87..111ee26836 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Oct 1 08:23:30 CDT 2020 +Mon Oct 5 10:09:47 CDT 2020 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/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-20200929/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/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-20200929/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/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-20200929/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/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-20200929/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/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-20200929/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/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-20200929/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/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-20200929/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,7 +787,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -836,7 +836,7 @@ Test 014 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -934,7 +934,7 @@ Test 016 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1008,7 +1008,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/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 @@ -1076,7 +1076,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1132,7 +1132,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/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 @@ -1199,7 +1199,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1210,7 +1210,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1219,7 +1219,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1230,7 +1230,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_regional_c768_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_regional_c768_prod Checking test 024 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1241,19 +1241,19 @@ Test 024 fv3_ccpp_regional_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1301,7 +1301,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/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 @@ -1349,7 +1349,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/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 @@ -1397,7 +1397,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1445,7 +1445,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1493,7 +1493,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1541,7 +1541,7 @@ Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1593,7 +1593,7 @@ Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1647,7 +1647,7 @@ Test 034 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1739,7 +1739,7 @@ Test 035 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1807,7 +1807,7 @@ Test 036 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1875,7 +1875,7 @@ Test 037 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1967,7 +1967,7 @@ Test 038 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/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 @@ -2035,7 +2035,7 @@ Test 039 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfs_v16beta_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/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 @@ -2103,7 +2103,7 @@ Test 040 fv3_ccpp_gfs_v16beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2151,7 +2151,7 @@ Test 041 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2199,7 +2199,7 @@ Test 042 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2247,7 +2247,7 @@ Test 043 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2315,7 +2315,7 @@ Test 044 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfs_v15p2_debug_prod Checking test 045 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2383,7 +2383,7 @@ Test 045 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfs_v16beta_debug_prod Checking test 046 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2451,7 +2451,7 @@ Test 046 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2519,7 +2519,7 @@ Test 047 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2587,7 +2587,7 @@ Test 048 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2655,7 +2655,7 @@ Test 049 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2723,7 +2723,7 @@ Test 050 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_441870/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2791,5 +2791,5 @@ Test 051 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Oct 1 08:53:08 CDT 2020 -Elapsed time: 00h:29m:39s. Have a nice day! +Mon Oct 5 13:38:16 CDT 2020 +Elapsed time: 03h:28m:31s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 58c36eccad..08cbf26819 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Thu Oct 1 14:16:29 UTC 2020 +Mon Oct 5 18:24:30 UTC 2020 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/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-20200929/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/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-20200929/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/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-20200929/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/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-20200929/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/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-20200929/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/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-20200929/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/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-20200929/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -841,7 +841,7 @@ Test 014 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -909,7 +909,7 @@ Test 015 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -965,7 +965,7 @@ Test 016 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1032,7 +1032,7 @@ Test 017 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1043,7 +1043,7 @@ Test 018 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1052,7 +1052,7 @@ Test 019 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1063,19 +1063,19 @@ Test 020 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_control_debug_prod Checking test 021 fv3_ccpp_control_debug results .... Test 021 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_stretched_nest_debug_prod Checking test 022 fv3_ccpp_stretched_nest_debug results .... Test 022 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfdlmp_prod Checking test 023 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,7 +1123,7 @@ Test 023 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfdlmprad_gwd_prod Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1171,7 +1171,7 @@ Test 024 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,7 +1219,7 @@ Test 025 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 026 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,7 +1267,7 @@ Test 026 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,7 +1315,7 @@ Test 027 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,7 +1363,7 @@ Test 028 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,7 +1411,7 @@ Test 029 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,7 +1459,7 @@ Test 030 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1511,7 +1511,7 @@ Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1565,7 +1565,7 @@ Test 032 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,7 +1657,7 @@ Test 033 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1725,7 +1725,7 @@ Test 034 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,7 +1793,7 @@ Test 035 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1885,7 +1885,7 @@ Test 036 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfsv16_csawmg_prod Checking test 037 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1933,7 +1933,7 @@ Test 037 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfsv16_csawmgt_prod Checking test 038 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1981,7 +1981,7 @@ Test 038 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gocart_clm_prod Checking test 039 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2029,7 +2029,7 @@ Test 039 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfs_v16beta_flake_prod Checking test 040 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2097,7 +2097,7 @@ Test 040 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2165,7 +2165,7 @@ Test 041 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2233,7 +2233,7 @@ Test 042 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2301,7 +2301,7 @@ Test 043 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2369,7 +2369,7 @@ Test 044 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_1087/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2437,5 +2437,5 @@ Test 045 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Oct 1 14:53:07 UTC 2020 -Elapsed time: 00h:36m:40s. Have a nice day! +Mon Oct 5 20:51:24 UTC 2020 +Elapsed time: 02h:26m:55s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index d83176f2e5..83069e672d 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Thu Oct 1 14:16:18 UTC 2020 +Mon Oct 5 18:23:39 UTC 2020 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/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-20200929/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/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-20200929/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/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-20200929/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/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-20200929/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/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-20200929/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/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-20200929/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/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-20200929/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,7 +816,7 @@ Test 014 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -865,7 +865,7 @@ Test 015 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -939,7 +939,7 @@ Test 016 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1063,7 +1063,7 @@ Test 018 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,7 +1130,7 @@ Test 019 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1141,7 +1141,7 @@ Test 020 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1150,7 +1150,7 @@ Test 021 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1161,7 +1161,7 @@ Test 022 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_regional_c768_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_regional_c768_prod Checking test 023 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1172,19 +1172,19 @@ Test 023 fv3_ccpp_regional_c768 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1232,7 +1232,7 @@ Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1280,7 +1280,7 @@ Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,7 +1328,7 @@ Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 029 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,7 +1376,7 @@ Test 029 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1424,7 +1424,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1472,7 +1472,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1520,7 +1520,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/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 @@ -1568,7 +1568,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/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 @@ -1620,7 +1620,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1674,7 +1674,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1766,7 +1766,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1834,7 +1834,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/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 @@ -1902,7 +1902,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1994,7 +1994,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfsv16_csawmg_prod Checking test 040 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2042,7 +2042,7 @@ Test 040 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfsv16_csawmgt_prod Checking test 041 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2090,7 +2090,7 @@ Test 041 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gocart_clm_prod Checking test 042 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2138,7 +2138,7 @@ Test 042 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfs_v16beta_flake_prod Checking test 043 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,7 +2206,7 @@ Test 043 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gsd_debug_prod Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,7 +2274,7 @@ Test 044 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gsd_diag3d_debug_prod Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2342,7 +2342,7 @@ Test 045 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_thompson_debug_prod Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,7 +2410,7 @@ Test 046 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_thompson_no_aero_debug_prod Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2478,7 +2478,7 @@ Test 047 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_150887/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2546,5 +2546,5 @@ Test 048 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Oct 1 16:01:13 UTC 2020 -Elapsed time: 01h:45m:00s. Have a nice day! +Mon Oct 5 19:56:06 UTC 2020 +Elapsed time: 01h:32m:31s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index b1b91fcb7a..1ef19c47c5 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -139,6 +139,7 @@ if [ $clean_before = YES ] ; then rm -rf ${BUILD_DIR} fi +export BUILD_VERBOSE=1 export BUILD_DIR export BUILD_JOBS export CCPP_SUITES From b00a11fa3d74e47a23c5f1cb7c7343cf3116a182 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Fri, 9 Oct 2020 12:03:54 -0600 Subject: [PATCH 003/109] Merge NCAR feature/transition-to-capgen-1 (prepare for cap_gen.py, step 1) to develop (#216) Preparation for transitioning to the next-generation code generator of the ccpp-framework (cap_gen.py). --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 54 +++---- tests/RegressionTests_cheyenne.intel.log | 194 +++++++++++------------ tests/RegressionTests_hera.gnu.log | 30 ++-- tests/RegressionTests_hera.intel.log | 120 +++++++------- tests/RegressionTests_orion.intel.log | 108 ++++++------- tests/RegressionTests_wcoss_cray.log | 96 +++++------ tests/RegressionTests_wcoss_dell_p3.log | 102 ++++++------ 8 files changed, 353 insertions(+), 353 deletions(-) diff --git a/FV3 b/FV3 index 2fa7a447cb..90bc1a4d6b 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 2fa7a447cbd5bbf4112bc48e0880f0cf1eb923a2 +Subproject commit 90bc1a4d6b660b5497c36dc009e1624f9982a2b1 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index d4c114c0a0..e55414ba89 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Wed Sep 23 16:39:24 MDT 2020 +Wed Oct 7 16:12:13 MDT 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68881/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/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-20200923/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68881/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/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-20200923/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68881/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/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 @@ -186,8 +186,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-20200923/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68881/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68881/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_gsd_prod Checking test 005 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -346,8 +346,8 @@ Checking test 005 fv3_ccpp_gsd results .... Test 005 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68881/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_thompson_prod Checking test 006 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -414,8 +414,8 @@ Checking test 006 fv3_ccpp_thompson results .... Test 006 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68881/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_thompson_no_aero_prod Checking test 007 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_thompson_no_aero results .... Test 007 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68881/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_rrfs_v1beta_prod Checking test 008 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -574,14 +574,14 @@ Checking test 008 fv3_ccpp_rrfs_v1beta results .... Test 008 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/GNU/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68881/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_control_debug_prod Checking test 009 fv3_ccpp_control_debug results .... Test 009 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68881/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_gfs_v15p2_debug_prod Checking test 010 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -648,8 +648,8 @@ Checking test 010 fv3_ccpp_gfs_v15p2_debug results .... Test 010 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68881/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_gfs_v16beta_debug_prod Checking test 011 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -716,8 +716,8 @@ Checking test 011 fv3_ccpp_gfs_v16beta_debug results .... Test 011 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68881/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_multigases_prod Checking test 012 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -791,5 +791,5 @@ Test 012 fv3_ccpp_multigases PASS REGRESSION TEST WAS SUCCESSFUL -Wed Sep 23 17:03:55 MDT 2020 -Elapsed time: 00h:24m:32s. Have a nice day! +Wed Oct 7 16:28:37 MDT 2020 +Elapsed time: 00h:16m:25s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index d9be72c5c2..67e6d6674f 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Wed Sep 23 20:42:23 MDT 2020 +Wed Oct 7 16:12:04 MDT 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/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-20200923/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/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-20200923/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/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-20200923/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/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-20200923/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/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-20200923/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/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-20200923/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/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-20200923/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ 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-20200923/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -908,8 +908,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -976,8 +976,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1032,8 +1032,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1119,8 +1119,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1130,20 +1130,20 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_control_debug_prod Checking test 022 fv3_ccpp_control_debug results .... Test 022 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_stretched_nest_debug_prod Checking test 023 fv3_ccpp_stretched_nest_debug results .... Test 023 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfdlmp_prod Checking test 024 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1190,8 +1190,8 @@ Checking test 024 fv3_ccpp_gfdlmp results .... Test 024 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfdlmprad_gwd_prod Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1238,8 +1238,8 @@ Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Test 025 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1286,8 +1286,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Test 026 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_gfdlmp_hwrfsas_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_gfdlmp_hwrfsas_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_hwrfsas_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 027 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1334,8 +1334,8 @@ Checking test 027 fv3_ccpp_gfdlmp_hwrfsas results .... Test 027 fv3_ccpp_gfdlmp_hwrfsas PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1382,8 +1382,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1430,8 +1430,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1478,8 +1478,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1526,8 +1526,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,8 +1578,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1632,8 +1632,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1724,8 +1724,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1792,8 +1792,8 @@ Checking test 035 fv3_ccpp_thompson results .... Test 035 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1860,8 +1860,8 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Test 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_rrfs_v1beta_prod Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1952,8 +1952,8 @@ Checking test 037 fv3_ccpp_rrfs_v1beta results .... Test 037 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfs_v15p2_prod Checking test 038 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2020,8 +2020,8 @@ Checking test 038 fv3_ccpp_gfs_v15p2 results .... Test 038 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfs_v16beta_prod Checking test 039 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2088,8 +2088,8 @@ Checking test 039 fv3_ccpp_gfs_v16beta results .... Test 039 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_gocart_clm_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gocart_clm_prod Checking test 040 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2136,8 +2136,8 @@ Checking test 040 fv3_ccpp_gocart_clm results .... Test 040 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfs_v16beta_flake_prod Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2204,8 +2204,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... Test 041 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfs_v16beta_debug_prod Checking test 042 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2272,8 +2272,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_debug results .... Test 042 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gsd_debug_prod Checking test 043 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2340,8 +2340,8 @@ Checking test 043 fv3_ccpp_gsd_debug results .... Test 043 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gsd_diag3d_debug_prod Checking test 044 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2408,8 +2408,8 @@ Checking test 044 fv3_ccpp_gsd_diag3d_debug results .... Test 044 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_thompson_debug_prod Checking test 045 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2476,8 +2476,8 @@ Checking test 045 fv3_ccpp_thompson_debug results .... Test 045 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_thompson_no_aero_debug_prod Checking test 046 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2544,8 +2544,8 @@ Checking test 046 fv3_ccpp_thompson_no_aero_debug results .... Test 046 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200923/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_23962/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 047 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2613,5 +2613,5 @@ Test 047 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Sep 24 00:22:25 MDT 2020 -Elapsed time: 03h:40m:02s. Have a nice day! +Wed Oct 7 16:43:56 MDT 2020 +Elapsed time: 00h:31m:53s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 86c0bf9100..de100452ed 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Mon Oct 5 19:57:38 UTC 2020 +Wed Oct 7 22:12:02 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/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-20200929/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/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-20200929/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/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 @@ -187,7 +187,7 @@ Test 003 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -255,7 +255,7 @@ Test 004 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_gsd_prod Checking test 005 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -347,7 +347,7 @@ Test 005 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_thompson_prod Checking test 006 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -415,7 +415,7 @@ Test 006 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_thompson_no_aero_prod Checking test 007 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -483,7 +483,7 @@ Test 007 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_rrfs_v1beta_prod Checking test 008 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -575,13 +575,13 @@ Test 008 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_control_debug_prod Checking test 009 fv3_ccpp_control_debug results .... Test 009 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_gfs_v15p2_debug_prod Checking test 010 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -649,7 +649,7 @@ Test 010 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_gfs_v16beta_debug_prod Checking test 011 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -717,7 +717,7 @@ Test 011 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_292576/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_multigases_prod Checking test 012 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -791,5 +791,5 @@ Test 012 fv3_ccpp_multigases PASS REGRESSION TEST WAS SUCCESSFUL -Mon Oct 5 20:22:39 UTC 2020 -Elapsed time: 00h:25m:02s. Have a nice day! +Wed Oct 7 22:34:02 UTC 2020 +Elapsed time: 00h:22m:01s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index a36885a1ee..81af9d3b0a 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Mon Oct 5 19:22:53 UTC 2020 +Wed Oct 7 22:11:14 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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-20200929/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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-20200929/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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-20200929/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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-20200929/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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-20200929/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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-20200929/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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-20200929/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,7 +787,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -855,7 +855,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfdlmprad_prod Checking test 016 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -952,7 +952,7 @@ Test 016 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1001,7 +1001,7 @@ Test 017 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1050,7 +1050,7 @@ Test 018 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,7 +1124,7 @@ Test 019 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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 @@ -1192,7 +1192,7 @@ Test 020 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1248,7 +1248,7 @@ Test 021 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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 @@ -1315,7 +1315,7 @@ Test 022 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1326,7 +1326,7 @@ Test 023 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1335,7 +1335,7 @@ Test 024 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1346,7 +1346,7 @@ Test 025 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_regional_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1357,19 +1357,19 @@ Test 026 fv3_ccpp_regional_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_stretched_nest_debug_prod Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1417,7 +1417,7 @@ Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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 @@ -1465,7 +1465,7 @@ Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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 @@ -1513,7 +1513,7 @@ Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_hwrfsas_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 032 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,7 +1561,7 @@ Test 032 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1609,7 +1609,7 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,7 +1657,7 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,7 +1705,7 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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 @@ -1753,7 +1753,7 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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 @@ -1805,7 +1805,7 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1859,7 +1859,7 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1951,7 +1951,7 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2019,7 +2019,7 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2087,7 +2087,7 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2155,7 +2155,7 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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 @@ -2223,7 +2223,7 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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 @@ -2315,7 +2315,7 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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 @@ -2383,7 +2383,7 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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 @@ -2451,7 +2451,7 @@ Test 046 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfsv16_csawmg_prod Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2499,7 +2499,7 @@ Test 047 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfsv16_csawmgt_prod Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2547,7 +2547,7 @@ Test 048 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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 @@ -2595,7 +2595,7 @@ Test 049 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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 @@ -2663,7 +2663,7 @@ Test 050 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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 @@ -2731,7 +2731,7 @@ Test 051 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/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 @@ -2799,7 +2799,7 @@ Test 052 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gsd_debug_prod Checking test 053 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2867,7 +2867,7 @@ Test 053 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gsd_diag3d_debug_prod Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2935,7 +2935,7 @@ Test 054 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_thompson_debug_prod Checking test 055 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3003,7 +3003,7 @@ Test 055 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_thompson_no_aero_debug_prod Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3071,7 +3071,7 @@ Test 056 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_43993/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3139,5 +3139,5 @@ Test 057 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Oct 5 19:54:13 UTC 2020 -Elapsed time: 00h:31m:22s. Have a nice day! +Wed Oct 7 22:40:11 UTC 2020 +Elapsed time: 00h:29m:00s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 111ee26836..d286678941 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Mon Oct 5 10:09:47 CDT 2020 +Wed Oct 7 17:34:49 CDT 2020 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/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-20200929/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/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-20200929/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/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-20200929/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/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-20200929/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/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-20200929/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/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-20200929/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/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-20200929/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,7 +787,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -836,7 +836,7 @@ Test 014 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -934,7 +934,7 @@ Test 016 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1008,7 +1008,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/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 @@ -1076,7 +1076,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1132,7 +1132,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/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 @@ -1199,7 +1199,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1210,7 +1210,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1219,7 +1219,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1230,7 +1230,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_regional_c768_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_regional_c768_prod Checking test 024 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1241,19 +1241,19 @@ Test 024 fv3_ccpp_regional_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1301,7 +1301,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/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 @@ -1349,7 +1349,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/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 @@ -1397,7 +1397,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1445,7 +1445,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1493,7 +1493,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1541,7 +1541,7 @@ Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1593,7 +1593,7 @@ Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1647,7 +1647,7 @@ Test 034 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1739,7 +1739,7 @@ Test 035 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1807,7 +1807,7 @@ Test 036 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1875,7 +1875,7 @@ Test 037 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1967,7 +1967,7 @@ Test 038 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/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 @@ -2035,7 +2035,7 @@ Test 039 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfs_v16beta_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/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 @@ -2103,7 +2103,7 @@ Test 040 fv3_ccpp_gfs_v16beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2151,7 +2151,7 @@ Test 041 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2199,7 +2199,7 @@ Test 042 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2247,7 +2247,7 @@ Test 043 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2315,7 +2315,7 @@ Test 044 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfs_v15p2_debug_prod Checking test 045 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2383,7 +2383,7 @@ Test 045 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfs_v16beta_debug_prod Checking test 046 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2451,7 +2451,7 @@ Test 046 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2519,7 +2519,7 @@ Test 047 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2587,7 +2587,7 @@ Test 048 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2655,7 +2655,7 @@ Test 049 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2723,7 +2723,7 @@ Test 050 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_43288/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2791,5 +2791,5 @@ Test 051 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Oct 5 13:38:16 CDT 2020 -Elapsed time: 03h:28m:31s. Have a nice day! +Wed Oct 7 18:18:28 CDT 2020 +Elapsed time: 00h:43m:41s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 08cbf26819..12a37f5a21 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Mon Oct 5 18:24:30 UTC 2020 +Thu Oct 8 12:15:12 UTC 2020 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/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-20200929/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/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-20200929/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/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-20200929/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/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-20200929/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/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-20200929/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/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-20200929/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/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-20200929/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -841,7 +841,7 @@ Test 014 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -909,7 +909,7 @@ Test 015 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -965,7 +965,7 @@ Test 016 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1032,7 +1032,7 @@ Test 017 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1043,7 +1043,7 @@ Test 018 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1052,7 +1052,7 @@ Test 019 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1063,19 +1063,19 @@ Test 020 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_control_debug_prod Checking test 021 fv3_ccpp_control_debug results .... Test 021 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_stretched_nest_debug_prod Checking test 022 fv3_ccpp_stretched_nest_debug results .... Test 022 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfdlmp_prod Checking test 023 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,7 +1123,7 @@ Test 023 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfdlmprad_gwd_prod Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1171,7 +1171,7 @@ Test 024 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,7 +1219,7 @@ Test 025 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 026 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,7 +1267,7 @@ Test 026 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,7 +1315,7 @@ Test 027 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,7 +1363,7 @@ Test 028 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,7 +1411,7 @@ Test 029 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,7 +1459,7 @@ Test 030 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1511,7 +1511,7 @@ Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1565,7 +1565,7 @@ Test 032 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,7 +1657,7 @@ Test 033 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1725,7 +1725,7 @@ Test 034 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,7 +1793,7 @@ Test 035 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1885,7 +1885,7 @@ Test 036 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfsv16_csawmg_prod Checking test 037 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1933,7 +1933,7 @@ Test 037 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfsv16_csawmgt_prod Checking test 038 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1981,7 +1981,7 @@ Test 038 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gocart_clm_prod Checking test 039 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2029,7 +2029,7 @@ Test 039 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfs_v16beta_flake_prod Checking test 040 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2097,7 +2097,7 @@ Test 040 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2165,7 +2165,7 @@ Test 041 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2233,7 +2233,7 @@ Test 042 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2301,7 +2301,7 @@ Test 043 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2369,7 +2369,7 @@ Test 044 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_32193/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2437,5 +2437,5 @@ Test 045 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Oct 5 20:51:24 UTC 2020 -Elapsed time: 02h:26m:55s. Have a nice day! +Thu Oct 8 17:31:48 UTC 2020 +Elapsed time: 05h:16m:37s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 83069e672d..21f796d1fd 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Mon Oct 5 18:23:39 UTC 2020 +Thu Oct 8 12:17:56 UTC 2020 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/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-20200929/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/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-20200929/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/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-20200929/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/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-20200929/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/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-20200929/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/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-20200929/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/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-20200929/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,7 +816,7 @@ Test 014 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -865,7 +865,7 @@ Test 015 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -939,7 +939,7 @@ Test 016 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1063,7 +1063,7 @@ Test 018 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,7 +1130,7 @@ Test 019 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1141,7 +1141,7 @@ Test 020 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1150,7 +1150,7 @@ Test 021 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1161,7 +1161,7 @@ Test 022 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_regional_c768_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_regional_c768_prod Checking test 023 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1172,19 +1172,19 @@ Test 023 fv3_ccpp_regional_c768 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1232,7 +1232,7 @@ Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1280,7 +1280,7 @@ Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,7 +1328,7 @@ Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 029 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,7 +1376,7 @@ Test 029 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1424,7 +1424,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1472,7 +1472,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1520,7 +1520,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/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 @@ -1568,7 +1568,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/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 @@ -1620,7 +1620,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1674,7 +1674,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1766,7 +1766,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1834,7 +1834,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/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 @@ -1902,7 +1902,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1994,7 +1994,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfsv16_csawmg_prod Checking test 040 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2042,7 +2042,7 @@ Test 040 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfsv16_csawmgt_prod Checking test 041 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2090,7 +2090,7 @@ Test 041 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gocart_clm_prod Checking test 042 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2138,7 +2138,7 @@ Test 042 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfs_v16beta_flake_prod Checking test 043 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,7 +2206,7 @@ Test 043 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gsd_debug_prod Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,7 +2274,7 @@ Test 044 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gsd_diag3d_debug_prod Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2342,7 +2342,7 @@ Test 045 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_thompson_debug_prod Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,7 +2410,7 @@ Test 046 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_thompson_no_aero_debug_prod Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2478,7 +2478,7 @@ Test 047 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148096/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2546,5 +2546,5 @@ Test 048 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Oct 5 19:56:06 UTC 2020 -Elapsed time: 01h:32m:31s. Have a nice day! +Thu Oct 8 13:35:50 UTC 2020 +Elapsed time: 01h:18m:02s. Have a nice day! From fd001d4793d805242386bb4dfd27f2712bb4d96b Mon Sep 17 00:00:00 2001 From: XiaqiongZhou-NOAA <48254930+XiaqiongZhou-NOAA@users.noreply.github.com> Date: Mon, 19 Oct 2020 14:06:34 -0400 Subject: [PATCH 004/109] Change horizontal advection options in input namelist (#215) Change horizontal advection options by replacing hord=-6 or -8 with hord=6 or 8 in all ~tests/parm/ *.nml.IN files --- FV3 | 2 +- tests/RegressionTests_hera.gnu.log | 54 ++--- tests/RegressionTests_hera.intel.log | 234 ++++++++++---------- tests/RegressionTests_orion.intel.log | 210 +++++++++--------- tests/RegressionTests_wcoss_cray.log | 186 ++++++++-------- tests/RegressionTests_wcoss_dell_p3.log | 198 ++++++++--------- tests/parm/ccpp.gocart.nml.IN | 2 +- tests/parm/ccpp_cpt.nml.IN | 2 +- tests/parm/ccpp_csawmg.nml.IN | 2 +- tests/parm/ccpp_csawmgshoc.nml.IN | 2 +- tests/parm/ccpp_gfdlmp.nml.IN | 2 +- tests/parm/ccpp_gfsv16_csawmg.nml.IN | 2 +- tests/parm/ccpp_gsd_sar.nml.IN | 2 +- tests/parm/ccpp_gsd_sar_v1.nml.IN | 2 +- tests/parm/ccpp_input_nest02.nml.IN | 2 +- tests/parm/ccpp_regional.nml.IN | 2 +- tests/parm/ccpp_regional_c768.nml.IN | 2 +- tests/parm/ccpp_regional_c768_FA.nml.IN | 2 +- tests/parm/ccpp_stretched-input.nml.IN | 2 +- tests/parm/ccpp_stretched-nest-input.nml.IN | 2 +- tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN | 2 +- tests/parm/cpt.nml.IN | 2 +- tests/parm/csawmg.nml.IN | 2 +- tests/parm/csawmgshoc.nml.IN | 2 +- tests/parm/fv3.gocart.nml.IN | 2 +- tests/parm/gfdlmp.nml.IN | 2 +- tests/parm/gfsv16_csawmg.nml.IN | 2 +- tests/parm/input_nest02.nml.IN | 2 +- tests/parm/rasmgshoc.nml.IN | 2 +- tests/parm/regional.nml.IN | 2 +- tests/parm/regional_c768.nml.IN | 2 +- tests/parm/stretched-input.nml.IN | 2 +- tests/parm/stretched-nest-input.nml.IN | 2 +- tests/rt.sh | 4 +- 34 files changed, 471 insertions(+), 471 deletions(-) diff --git a/FV3 b/FV3 index 90bc1a4d6b..b955f81015 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 90bc1a4d6b660b5497c36dc009e1624f9982a2b1 +Subproject commit b955f81015b2de589d886e7052feb68485f79466 diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index de100452ed..9b841f1a0e 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Wed Oct 7 22:12:02 UTC 2020 +Fri Oct 16 21:01:04 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/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-20200929/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/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-20200929/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/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 @@ -186,8 +186,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-20200929/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_gsd_prod Checking test 005 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -346,8 +346,8 @@ Checking test 005 fv3_ccpp_gsd results .... Test 005 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_thompson_prod Checking test 006 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -414,8 +414,8 @@ Checking test 006 fv3_ccpp_thompson results .... Test 006 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_thompson_no_aero_prod Checking test 007 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_thompson_no_aero results .... Test 007 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_rrfs_v1beta_prod Checking test 008 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -574,14 +574,14 @@ Checking test 008 fv3_ccpp_rrfs_v1beta results .... Test 008 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_control_debug_prod Checking test 009 fv3_ccpp_control_debug results .... Test 009 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_gfs_v15p2_debug_prod Checking test 010 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -648,8 +648,8 @@ Checking test 010 fv3_ccpp_gfs_v15p2_debug results .... Test 010 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_gfs_v16beta_debug_prod Checking test 011 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -716,8 +716,8 @@ Checking test 011 fv3_ccpp_gfs_v16beta_debug results .... Test 011 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_73579/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_multigases_prod Checking test 012 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -791,5 +791,5 @@ Test 012 fv3_ccpp_multigases PASS REGRESSION TEST WAS SUCCESSFUL -Wed Oct 7 22:34:02 UTC 2020 -Elapsed time: 00h:22m:01s. Have a nice day! +Fri Oct 16 21:22:58 UTC 2020 +Elapsed time: 00h:21m:55s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 81af9d3b0a..5d983e70e6 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Wed Oct 7 22:11:14 UTC 2020 +Fri Oct 16 20:59:30 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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-20200929/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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-20200929/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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-20200929/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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-20200929/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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-20200929/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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-20200929/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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-20200929/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -854,8 +854,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfdlmprad_prod Checking test 016 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -951,8 +951,8 @@ Checking test 016 fv3_ccpp_gfdlmprad results .... Test 016 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1000,8 +1000,8 @@ Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Test 017 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1049,8 +1049,8 @@ Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 018 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_multigases results .... Test 019 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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,8 +1191,8 @@ Checking test 020 fv3_ccpp_control_32bit results .... Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,8 +1247,8 @@ Checking test 021 fv3_ccpp_stretched results .... Test 021 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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,8 +1314,8 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1325,8 +1325,8 @@ Checking test 023 fv3_ccpp_regional_control results .... Test 023 fv3_ccpp_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1334,8 +1334,8 @@ Checking test 024 fv3_ccpp_regional_restart results .... Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1345,8 +1345,8 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_regional_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_regional_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1356,20 +1356,20 @@ Checking test 026 fv3_ccpp_regional_c768 results .... Test 026 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_stretched_nest_debug_prod Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1416,8 +1416,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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 @@ -1464,8 +1464,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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 @@ -1512,8 +1512,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_hwrfsas_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfdlmp_hwrfsas_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmp_hwrfsas_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 032 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1560,8 +1560,8 @@ Checking test 032 fv3_ccpp_gfdlmp_hwrfsas results .... Test 032 fv3_ccpp_gfdlmp_hwrfsas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1608,8 +1608,8 @@ Checking test 033 fv3_ccpp_csawmg results .... Test 033 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1656,8 +1656,8 @@ Checking test 034 fv3_ccpp_satmedmf results .... Test 034 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1704,8 +1704,8 @@ Checking test 035 fv3_ccpp_satmedmfq results .... Test 035 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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 @@ -1752,8 +1752,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-20200929/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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 @@ -1804,8 +1804,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-20200929/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1858,8 +1858,8 @@ Checking test 038 fv3_ccpp_cpt results .... Test 038 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1950,8 +1950,8 @@ Checking test 039 fv3_ccpp_gsd results .... Test 039 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2018,8 +2018,8 @@ Checking test 040 fv3_ccpp_rap results .... Test 040 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2086,8 +2086,8 @@ Checking test 041 fv3_ccpp_hrrr results .... Test 041 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2154,8 +2154,8 @@ Checking test 042 fv3_ccpp_thompson results .... Test 042 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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 @@ -2222,8 +2222,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-20200929/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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 @@ -2314,8 +2314,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-20200929/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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 @@ -2382,8 +2382,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-20200929/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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 @@ -2450,8 +2450,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-20200929/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfsv16_csawmg_prod Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2498,8 +2498,8 @@ Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Test 047 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfsv16_csawmgt_prod Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2546,8 +2546,8 @@ Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Test 048 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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 @@ -2594,8 +2594,8 @@ Checking test 049 fv3_ccpp_gocart_clm results .... Test 049 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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 @@ -2662,8 +2662,8 @@ Checking test 050 fv3_ccpp_gfs_v16beta_flake results .... Test 050 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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 @@ -2730,8 +2730,8 @@ Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... Test 051 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/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 @@ -2798,8 +2798,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_debug results .... Test 052 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gsd_debug_prod Checking test 053 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2866,8 +2866,8 @@ Checking test 053 fv3_ccpp_gsd_debug results .... Test 053 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gsd_diag3d_debug_prod Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2934,8 +2934,8 @@ Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Test 054 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_thompson_debug_prod Checking test 055 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3002,8 +3002,8 @@ Checking test 055 fv3_ccpp_thompson_debug results .... Test 055 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_thompson_no_aero_debug_prod Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3070,8 +3070,8 @@ Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Test 056 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_10700/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3139,5 +3139,5 @@ Test 057 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Oct 7 22:40:11 UTC 2020 -Elapsed time: 00h:29m:00s. Have a nice day! +Fri Oct 16 21:28:28 UTC 2020 +Elapsed time: 00h:29m:01s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index d286678941..af99e9dd88 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Wed Oct 7 17:34:49 CDT 2020 +Fri Oct 16 15:22:28 CDT 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/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-20200929/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/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-20200929/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/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-20200929/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/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-20200929/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/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-20200929/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/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-20200929/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/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-20200929/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,8 +835,8 @@ Checking test 014 fv3_ccpp_gfdlmprad results .... Test 014 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Test 015 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,8 +933,8 @@ Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 016 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,8 +1007,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/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 @@ -1075,8 +1075,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,8 +1131,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/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 @@ -1198,8 +1198,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,8 +1209,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,8 +1218,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,8 +1229,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_regional_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_regional_c768_prod Checking test 024 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1240,20 +1240,20 @@ Checking test 024 fv3_ccpp_regional_c768 results .... Test 024 fv3_ccpp_regional_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1300,8 +1300,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/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 @@ -1348,8 +1348,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/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 @@ -1396,8 +1396,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1444,8 +1444,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1492,8 +1492,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1540,8 +1540,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1592,8 +1592,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1646,8 +1646,8 @@ Checking test 034 fv3_ccpp_cpt results .... Test 034 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,8 +1738,8 @@ Checking test 035 fv3_ccpp_gsd results .... Test 035 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1806,8 +1806,8 @@ Checking test 036 fv3_ccpp_thompson results .... Test 036 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1874,8 +1874,8 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1966,8 +1966,8 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/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 @@ -2034,8 +2034,8 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/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 @@ -2102,8 +2102,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Test 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2150,8 +2150,8 @@ Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Test 041 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2198,8 +2198,8 @@ Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Test 042 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2246,8 +2246,8 @@ Checking test 043 fv3_ccpp_gocart_clm results .... Test 043 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2314,8 +2314,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Test 044 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfs_v15p2_debug_prod Checking test 045 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2382,8 +2382,8 @@ Checking test 045 fv3_ccpp_gfs_v15p2_debug results .... Test 045 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfs_v16beta_debug_prod Checking test 046 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2450,8 +2450,8 @@ Checking test 046 fv3_ccpp_gfs_v16beta_debug results .... Test 046 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2518,8 +2518,8 @@ Checking test 047 fv3_ccpp_gsd_debug results .... Test 047 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2586,8 +2586,8 @@ Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Test 048 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2654,8 +2654,8 @@ Checking test 049 fv3_ccpp_thompson_debug results .... Test 049 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2722,8 +2722,8 @@ Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Test 050 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_252308/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2791,5 +2791,5 @@ Test 051 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Oct 7 18:18:28 CDT 2020 -Elapsed time: 00h:43m:41s. Have a nice day! +Fri Oct 16 16:41:33 CDT 2020 +Elapsed time: 01h:19m:14s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 12a37f5a21..8de59421a5 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Thu Oct 8 12:15:12 UTC 2020 +Fri Oct 16 19:41:27 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/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-20200929/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/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-20200929/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/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-20200929/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/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-20200929/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/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-20200929/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/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-20200929/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/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-20200929/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -840,8 +840,8 @@ Checking test 014 fv3_ccpp_multigases results .... Test 014 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -908,8 +908,8 @@ Checking test 015 fv3_ccpp_control_32bit results .... Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -964,8 +964,8 @@ Checking test 016 fv3_ccpp_stretched results .... Test 016 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1031,8 +1031,8 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1042,8 +1042,8 @@ Checking test 018 fv3_ccpp_regional_control results .... Test 018 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1051,8 +1051,8 @@ Checking test 019 fv3_ccpp_regional_restart results .... Test 019 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1062,20 +1062,20 @@ Checking test 020 fv3_ccpp_regional_quilt results .... Test 020 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_control_debug_prod Checking test 021 fv3_ccpp_control_debug results .... Test 021 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_stretched_nest_debug_prod Checking test 022 fv3_ccpp_stretched_nest_debug results .... Test 022 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfdlmp_prod Checking test 023 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1122,8 +1122,8 @@ Checking test 023 fv3_ccpp_gfdlmp results .... Test 023 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfdlmprad_gwd_prod Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1170,8 +1170,8 @@ Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Test 024 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1218,8 +1218,8 @@ Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Test 025 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfdlmp_hwrfsas_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmp_hwrfsas_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 026 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 026 fv3_ccpp_gfdlmp_hwrfsas results .... Test 026 fv3_ccpp_gfdlmp_hwrfsas PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1314,8 +1314,8 @@ Checking test 027 fv3_ccpp_csawmg results .... Test 027 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1362,8 +1362,8 @@ Checking test 028 fv3_ccpp_satmedmf results .... Test 028 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1410,8 +1410,8 @@ Checking test 029 fv3_ccpp_satmedmfq results .... Test 029 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1458,8 +1458,8 @@ Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Test 030 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1510,8 +1510,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1564,8 +1564,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1656,8 +1656,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1724,8 +1724,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1792,8 +1792,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1884,8 +1884,8 @@ Checking test 036 fv3_ccpp_rrfs_v1beta results .... Test 036 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfsv16_csawmg_prod Checking test 037 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1932,8 +1932,8 @@ Checking test 037 fv3_ccpp_gfsv16_csawmg results .... Test 037 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfsv16_csawmgt_prod Checking test 038 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1980,8 +1980,8 @@ Checking test 038 fv3_ccpp_gfsv16_csawmgt results .... Test 038 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gocart_clm_prod Checking test 039 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2028,8 +2028,8 @@ Checking test 039 fv3_ccpp_gocart_clm results .... Test 039 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfs_v16beta_flake_prod Checking test 040 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2096,8 +2096,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta_flake results .... Test 040 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2164,8 +2164,8 @@ Checking test 041 fv3_ccpp_gsd_debug results .... Test 041 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2232,8 +2232,8 @@ Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Test 042 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2300,8 +2300,8 @@ Checking test 043 fv3_ccpp_thompson_debug results .... Test 043 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2368,8 +2368,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Test 044 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_5662/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2437,5 +2437,5 @@ Test 045 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Oct 8 17:31:48 UTC 2020 -Elapsed time: 05h:16m:37s. Have a nice day! +Fri Oct 16 20:26:14 UTC 2020 +Elapsed time: 00h:44m:48s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 21f796d1fd..6147bd6cf1 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Thu Oct 8 12:17:56 UTC 2020 +Fri Oct 16 19:42:31 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/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-20200929/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/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-20200929/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/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-20200929/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/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-20200929/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/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-20200929/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/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-20200929/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/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-20200929/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,8 +815,8 @@ Checking test 014 fv3_ccpp_gfdlmprad results .... Test 014 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -864,8 +864,8 @@ Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Test 015 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1062,8 +1062,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1129,8 +1129,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1140,8 +1140,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1149,8 +1149,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1160,8 +1160,8 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_regional_c768_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_regional_c768_prod Checking test 023 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1171,20 +1171,20 @@ Checking test 023 fv3_ccpp_regional_c768 results .... Test 023 fv3_ccpp_regional_c768 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1231,8 +1231,8 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,8 +1279,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1327,8 +1327,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfdlmp_hwrfsas_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmp_hwrfsas_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 029 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,8 +1375,8 @@ Checking test 029 fv3_ccpp_gfdlmp_hwrfsas results .... Test 029 fv3_ccpp_gfdlmp_hwrfsas PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1423,8 +1423,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1471,8 +1471,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1519,8 +1519,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/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 @@ -1567,8 +1567,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/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 @@ -1619,8 +1619,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1673,8 +1673,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1765,8 +1765,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1833,8 +1833,8 @@ Checking test 037 fv3_ccpp_thompson results .... Test 037 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/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 @@ -1901,8 +1901,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1993,8 +1993,8 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfsv16_csawmg_prod Checking test 040 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2041,8 +2041,8 @@ Checking test 040 fv3_ccpp_gfsv16_csawmg results .... Test 040 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfsv16_csawmgt_prod Checking test 041 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2089,8 +2089,8 @@ Checking test 041 fv3_ccpp_gfsv16_csawmgt results .... Test 041 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gocart_clm_prod Checking test 042 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2137,8 +2137,8 @@ Checking test 042 fv3_ccpp_gocart_clm results .... Test 042 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfs_v16beta_flake_prod Checking test 043 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2205,8 +2205,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta_flake results .... Test 043 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gsd_debug_prod Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2273,8 +2273,8 @@ Checking test 044 fv3_ccpp_gsd_debug results .... Test 044 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gsd_diag3d_debug_prod Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2341,8 +2341,8 @@ Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Test 045 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_thompson_debug_prod Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2409,8 +2409,8 @@ Checking test 046 fv3_ccpp_thompson_debug results .... Test 046 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_thompson_no_aero_debug_prod Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2477,8 +2477,8 @@ Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Test 047 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200929/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_171286/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2546,5 +2546,5 @@ Test 048 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Oct 8 13:35:50 UTC 2020 -Elapsed time: 01h:18m:02s. Have a nice day! +Fri Oct 16 21:02:33 UTC 2020 +Elapsed time: 01h:20m:07s. Have a nice day! diff --git a/tests/parm/ccpp.gocart.nml.IN b/tests/parm/ccpp.gocart.nml.IN index b1e061f731..9c6ea71100 100644 --- a/tests/parm/ccpp.gocart.nml.IN +++ b/tests/parm/ccpp.gocart.nml.IN @@ -89,7 +89,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 1. diff --git a/tests/parm/ccpp_cpt.nml.IN b/tests/parm/ccpp_cpt.nml.IN index 28500230ba..1ce6b91ffb 100644 --- a/tests/parm/ccpp_cpt.nml.IN +++ b/tests/parm/ccpp_cpt.nml.IN @@ -88,7 +88,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 1. diff --git a/tests/parm/ccpp_csawmg.nml.IN b/tests/parm/ccpp_csawmg.nml.IN index 5faffcb447..931adad584 100644 --- a/tests/parm/ccpp_csawmg.nml.IN +++ b/tests/parm/ccpp_csawmg.nml.IN @@ -88,7 +88,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 13 adjust_dry_mass = .F. consv_te = 1. diff --git a/tests/parm/ccpp_csawmgshoc.nml.IN b/tests/parm/ccpp_csawmgshoc.nml.IN index 6435a9a01a..7c9063c693 100644 --- a/tests/parm/ccpp_csawmgshoc.nml.IN +++ b/tests/parm/ccpp_csawmgshoc.nml.IN @@ -88,7 +88,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 13 adjust_dry_mass = .F. consv_te = 1. diff --git a/tests/parm/ccpp_gfdlmp.nml.IN b/tests/parm/ccpp_gfdlmp.nml.IN index ff3d652e32..c70ff52454 100644 --- a/tests/parm/ccpp_gfdlmp.nml.IN +++ b/tests/parm/ccpp_gfdlmp.nml.IN @@ -89,7 +89,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 1. diff --git a/tests/parm/ccpp_gfsv16_csawmg.nml.IN b/tests/parm/ccpp_gfsv16_csawmg.nml.IN index 11eba8a959..5591f9a27b 100644 --- a/tests/parm/ccpp_gfsv16_csawmg.nml.IN +++ b/tests/parm/ccpp_gfsv16_csawmg.nml.IN @@ -88,7 +88,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 13 adjust_dry_mass = .F. consv_te = 1. diff --git a/tests/parm/ccpp_gsd_sar.nml.IN b/tests/parm/ccpp_gsd_sar.nml.IN index 42db838d00..3a561bdaf1 100644 --- a/tests/parm/ccpp_gsd_sar.nml.IN +++ b/tests/parm/ccpp_gsd_sar.nml.IN @@ -88,7 +88,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 0. diff --git a/tests/parm/ccpp_gsd_sar_v1.nml.IN b/tests/parm/ccpp_gsd_sar_v1.nml.IN index e053d93541..4a32777539 100644 --- a/tests/parm/ccpp_gsd_sar_v1.nml.IN +++ b/tests/parm/ccpp_gsd_sar_v1.nml.IN @@ -88,7 +88,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 0. diff --git a/tests/parm/ccpp_input_nest02.nml.IN b/tests/parm/ccpp_input_nest02.nml.IN index c942942b39..3cb847c24a 100644 --- a/tests/parm/ccpp_input_nest02.nml.IN +++ b/tests/parm/ccpp_input_nest02.nml.IN @@ -89,7 +89,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 0. diff --git a/tests/parm/ccpp_regional.nml.IN b/tests/parm/ccpp_regional.nml.IN index 0c9554f328..3f05bf0f1c 100644 --- a/tests/parm/ccpp_regional.nml.IN +++ b/tests/parm/ccpp_regional.nml.IN @@ -89,7 +89,7 @@ hord_vt = -5 hord_tm = -5 hord_dp = -5 - hord_tr = -8 + hord_tr = 8 adjust_dry_mass = .F. consv_te = 0. do_sat_adj = .T. diff --git a/tests/parm/ccpp_regional_c768.nml.IN b/tests/parm/ccpp_regional_c768.nml.IN index c5761bce4f..a7da51e57e 100644 --- a/tests/parm/ccpp_regional_c768.nml.IN +++ b/tests/parm/ccpp_regional_c768.nml.IN @@ -88,7 +88,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 0. diff --git a/tests/parm/ccpp_regional_c768_FA.nml.IN b/tests/parm/ccpp_regional_c768_FA.nml.IN index 489a0365f1..bdda8af137 100644 --- a/tests/parm/ccpp_regional_c768_FA.nml.IN +++ b/tests/parm/ccpp_regional_c768_FA.nml.IN @@ -88,7 +88,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 0. diff --git a/tests/parm/ccpp_stretched-input.nml.IN b/tests/parm/ccpp_stretched-input.nml.IN index 748ec302a7..ff01ca775d 100644 --- a/tests/parm/ccpp_stretched-input.nml.IN +++ b/tests/parm/ccpp_stretched-input.nml.IN @@ -89,7 +89,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 1. diff --git a/tests/parm/ccpp_stretched-nest-input.nml.IN b/tests/parm/ccpp_stretched-nest-input.nml.IN index f2848e5b03..dc788b2a6f 100644 --- a/tests/parm/ccpp_stretched-nest-input.nml.IN +++ b/tests/parm/ccpp_stretched-nest-input.nml.IN @@ -89,7 +89,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 1. diff --git a/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN b/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN index 2fe6be3d92..a8fbe7fffa 100644 --- a/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN +++ b/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN @@ -94,7 +94,7 @@ deflate_level=1 hord_mt = 5 hord_vt = 5 hord_tm = 5 - hord_dp = -5 + hord_dp = 5 hord_tr = 8 adjust_dry_mass = .false. consv_te = 1. diff --git a/tests/parm/cpt.nml.IN b/tests/parm/cpt.nml.IN index ac8f822219..cffd0346b0 100644 --- a/tests/parm/cpt.nml.IN +++ b/tests/parm/cpt.nml.IN @@ -87,7 +87,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 1. diff --git a/tests/parm/csawmg.nml.IN b/tests/parm/csawmg.nml.IN index 6332890b6e..40daa3f769 100644 --- a/tests/parm/csawmg.nml.IN +++ b/tests/parm/csawmg.nml.IN @@ -87,7 +87,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 13 adjust_dry_mass = .F. consv_te = 1. diff --git a/tests/parm/csawmgshoc.nml.IN b/tests/parm/csawmgshoc.nml.IN index 12456ccabc..dd7181538d 100644 --- a/tests/parm/csawmgshoc.nml.IN +++ b/tests/parm/csawmgshoc.nml.IN @@ -87,7 +87,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 13 adjust_dry_mass = .F. consv_te = 1. diff --git a/tests/parm/fv3.gocart.nml.IN b/tests/parm/fv3.gocart.nml.IN index 0d4b4d75fd..fb58915445 100644 --- a/tests/parm/fv3.gocart.nml.IN +++ b/tests/parm/fv3.gocart.nml.IN @@ -88,7 +88,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 1. diff --git a/tests/parm/gfdlmp.nml.IN b/tests/parm/gfdlmp.nml.IN index a81c66bf62..f9eed249a6 100644 --- a/tests/parm/gfdlmp.nml.IN +++ b/tests/parm/gfdlmp.nml.IN @@ -88,7 +88,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 1. diff --git a/tests/parm/gfsv16_csawmg.nml.IN b/tests/parm/gfsv16_csawmg.nml.IN index e0bb83d83d..fee1b56c52 100644 --- a/tests/parm/gfsv16_csawmg.nml.IN +++ b/tests/parm/gfsv16_csawmg.nml.IN @@ -87,7 +87,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 13 adjust_dry_mass = .F. consv_te = 1. diff --git a/tests/parm/input_nest02.nml.IN b/tests/parm/input_nest02.nml.IN index d26e78bcea..e8648b19dc 100644 --- a/tests/parm/input_nest02.nml.IN +++ b/tests/parm/input_nest02.nml.IN @@ -88,7 +88,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 0. diff --git a/tests/parm/rasmgshoc.nml.IN b/tests/parm/rasmgshoc.nml.IN index bbbd6bc31e..57da39c4e3 100644 --- a/tests/parm/rasmgshoc.nml.IN +++ b/tests/parm/rasmgshoc.nml.IN @@ -87,7 +87,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 13 adjust_dry_mass = .F. consv_te = 1. diff --git a/tests/parm/regional.nml.IN b/tests/parm/regional.nml.IN index 856e8fd0e2..d854127859 100644 --- a/tests/parm/regional.nml.IN +++ b/tests/parm/regional.nml.IN @@ -88,7 +88,7 @@ hord_vt = -5 hord_tm = -5 hord_dp = -5 - hord_tr = -8 + hord_tr = 8 adjust_dry_mass = .F. consv_te = 0. consv_am = .F. diff --git a/tests/parm/regional_c768.nml.IN b/tests/parm/regional_c768.nml.IN index 4301728653..7b24731482 100644 --- a/tests/parm/regional_c768.nml.IN +++ b/tests/parm/regional_c768.nml.IN @@ -87,7 +87,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 0. diff --git a/tests/parm/stretched-input.nml.IN b/tests/parm/stretched-input.nml.IN index 24a9c1263c..412c9e8f3d 100644 --- a/tests/parm/stretched-input.nml.IN +++ b/tests/parm/stretched-input.nml.IN @@ -88,7 +88,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 1. diff --git a/tests/parm/stretched-nest-input.nml.IN b/tests/parm/stretched-nest-input.nml.IN index 99fcf8d863..a7c8e4749e 100644 --- a/tests/parm/stretched-nest-input.nml.IN +++ b/tests/parm/stretched-nest-input.nml.IN @@ -88,7 +88,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 1. diff --git a/tests/rt.sh b/tests/rt.sh index 02c93deb06..cef20c1014 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -400,9 +400,9 @@ if [[ $SINGLE_NAME != '' ]]; then fi if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = jet.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20200929/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201015/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20200929} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201015} fi shift $((OPTIND-1)) From 764a38c5725feec60bf20f8aadc0046751968d1d Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Tue, 20 Oct 2020 12:35:29 -0400 Subject: [PATCH 005/109] Enable building of coupled model (#217) * Option to build coupled model * fix in build.sh * update modulefiles for orion, hera and wcoss to load pio. Make PIO optional in CMakeLists.txt if not building S2S * FMS needs to be linked in MOM6 objects. Add 32BIT and S2S check * add S2S option to MAKE_OPT * Add standard s2s tests * add CICE_IO option (default: NetCDF). Add MOM6 solo executable option (default: OFF) MOM6 library and NUOPC cap are 2 separate entities. * add debug flags for MOM6 and CICE from @minsukji-noaa * add debug modulefiles for hera, orion and wcoss_dell_p3 * enable VERBOSE on build only when requested. Remove -warn flags from CMEPS and MOM6 as they drown out any error messages. The warnings should be resolved at the upstream repos. When building with -DDEBUG=ON, set CMAKE_BUILD_TYPE=Debug. Co-authored-by: Dusan Jovic --- .gitignore | 66 +- .gitmodules | 16 + CICE-interface/CICE | 1 + CICE-interface/CMakeLists.txt | 101 ++ CICE-interface/cice_files.cmake | 185 ++++ CMEPS-interface/CMEPS | 1 + CMEPS-interface/CMakeLists.txt | 90 ++ CMakeLists.txt | 75 +- CMakeModules | 1 + MOM6-interface/CMakeLists.txt | 98 ++ MOM6-interface/MOM6 | 1 + MOM6-interface/mom6_files.cmake | 267 +++++ README.md | 27 +- WW3 | 2 +- build.sh | 10 +- cmake/FindESMF.cmake | 105 -- cmake/FindNetCDF.cmake | 340 ------- cmake/configure_linux.gnu.cmake | 2 + cmake/configure_linux.intel.cmake | 2 + conf/before_components.mk | 36 - conf/configure.fv3.cheyenne.gnu | 203 ---- conf/configure.fv3.cheyenne.intel | 212 ---- conf/configure.fv3.gaea.intel | 180 ---- conf/configure.fv3.hera.gnu | 171 ---- conf/configure.fv3.hera.intel | 185 ---- conf/configure.fv3.jet.intel | 199 ---- conf/configure.fv3.linux.gnu | 202 ---- conf/configure.fv3.macosx.gnu | 212 ---- conf/configure.fv3.odin | 175 ---- conf/configure.fv3.orion.intel | 183 ---- conf/configure.fv3.s4.intel | 189 ---- conf/configure.fv3.stampede.intel | 200 ---- conf/configure.fv3.wcoss_cray | 169 ---- conf/configure.fv3.wcoss_dell_p3 | 172 ---- modulefiles/hera.gnu/fv3 | 73 +- modulefiles/hera.intel/fv3 | 1 + modulefiles/hera.intel/fv3_debug | 42 + modulefiles/orion.intel/fv3 | 1 + modulefiles/orion.intel/fv3_debug | 41 + modulefiles/wcoss_dell_p3/fv3 | 1 + modulefiles/wcoss_dell_p3/fv3_debug | 45 + tests/RegressionTests_hera.gnu.log | 54 +- tests/RegressionTests_hera.intel.log | 935 +++++++++++++++--- tests/RegressionTests_orion.intel.log | 911 +++++++++++++++-- tests/RegressionTests_wcoss_cray.log | 186 ++-- tests/RegressionTests_wcoss_dell_p3.log | 899 +++++++++++++++-- tests/compile.sh | 4 + tests/default_vars.sh | 150 ++- tests/edit_inputs.sh | 60 ++ .../cpld_fv3_mom6_cice_atm_flux_run.IN | 79 ++ .../cpld_fv3_mom6_cice_bmark_35d_run.IN | 53 + .../cpld_fv3_mom6_cice_bmark_restart_run.IN | 82 ++ .../cpld_fv3_mom6_cice_bmark_rt_run.IN | 53 + .../cpld_fv3_mom6_cice_ww3_bmark_35d_run.IN | 59 ++ .../cpld_fv3_mom6_cice_ww3_bmark_rt_run.IN | 57 ++ tests/parm/MOM_input_template_025 | 887 +++++++++++++++++ tests/parm/MOM_input_wave_template_025 | 910 +++++++++++++++++ tests/parm/MOM_override | 2 + tests/parm/data_table_template | 1 + tests/parm/diag_table_benchmark | 273 +++++ tests/parm/diag_table_template | 360 +++++++ tests/parm/fd_nems.yaml | 756 ++++++++++++++ tests/parm/ice_in_template | 589 +++++++++++ tests/parm/input.benchmark.nml.IN | 326 ++++++ tests/parm/input.benchmark_ccpp.nml.IN | 330 +++++++ tests/parm/input.mom6_ccpp.nml.IN | 317 ++++++ tests/parm/med_modelio.nml | 8 + tests/parm/model_configure.IN | 2 + .../nems.configure.medcmeps_atm_ocn_ice.IN | 102 ++ ...nems.configure.medcmeps_atm_ocn_ice_wav.IN | 116 +++ tests/parm/pio_in | 34 + tests/rt.conf | 22 + tests/rt.sh | 13 +- tests/rt_utils.sh | 6 +- tests/run_test.sh | 12 + ...d_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt | 173 ++++ ...d_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux | 101 ++ ..._ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac | 103 ++ .../cpld_fv3_ccpp_384_mom6_cice_cmeps_35d | 79 ++ ...fv3_ccpp_384_mom6_cice_cmeps_bmark_restart | 147 +++ ...3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt | 136 +++ ...p_384_mom6_cice_cmeps_ww3_1d_bmark_rt_frac | 138 +++ .../cpld_fv3_ccpp_384_mom6_cice_ww3_cmeps_35d | 80 ++ .../cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf | 92 ++ ...v3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux | 90 ++ .../cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads | 104 ++ .../cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux | 92 ++ .../cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp | 95 ++ .../cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux | 92 ++ .../cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug | 89 ++ .../cpld_fv3_ccpp_mom6_cice_cmeps_restart | 104 ++ 91 files changed, 10980 insertions(+), 3665 deletions(-) create mode 160000 CICE-interface/CICE create mode 100644 CICE-interface/CMakeLists.txt create mode 100644 CICE-interface/cice_files.cmake create mode 160000 CMEPS-interface/CMEPS create mode 100644 CMEPS-interface/CMakeLists.txt create mode 160000 CMakeModules create mode 100644 MOM6-interface/CMakeLists.txt create mode 160000 MOM6-interface/MOM6 create mode 100644 MOM6-interface/mom6_files.cmake delete mode 100644 cmake/FindESMF.cmake delete mode 100644 cmake/FindNetCDF.cmake create mode 100644 cmake/configure_linux.gnu.cmake create mode 100644 cmake/configure_linux.intel.cmake delete mode 100644 conf/before_components.mk delete mode 100644 conf/configure.fv3.cheyenne.gnu delete mode 100644 conf/configure.fv3.cheyenne.intel delete mode 100644 conf/configure.fv3.gaea.intel delete mode 100644 conf/configure.fv3.hera.gnu delete mode 100644 conf/configure.fv3.hera.intel delete mode 100644 conf/configure.fv3.jet.intel delete mode 100644 conf/configure.fv3.linux.gnu delete mode 100644 conf/configure.fv3.macosx.gnu delete mode 100644 conf/configure.fv3.odin delete mode 100644 conf/configure.fv3.orion.intel delete mode 100644 conf/configure.fv3.s4.intel delete mode 100644 conf/configure.fv3.stampede.intel delete mode 100644 conf/configure.fv3.wcoss_cray delete mode 100644 conf/configure.fv3.wcoss_dell_p3 create mode 100644 modulefiles/hera.intel/fv3_debug create mode 100644 modulefiles/orion.intel/fv3_debug create mode 100644 modulefiles/wcoss_dell_p3/fv3_debug create mode 100755 tests/edit_inputs.sh create mode 100644 tests/fv3_conf/cpld_fv3_mom6_cice_atm_flux_run.IN create mode 100644 tests/fv3_conf/cpld_fv3_mom6_cice_bmark_35d_run.IN create mode 100644 tests/fv3_conf/cpld_fv3_mom6_cice_bmark_restart_run.IN create mode 100644 tests/fv3_conf/cpld_fv3_mom6_cice_bmark_rt_run.IN create mode 100644 tests/fv3_conf/cpld_fv3_mom6_cice_ww3_bmark_35d_run.IN create mode 100644 tests/fv3_conf/cpld_fv3_mom6_cice_ww3_bmark_rt_run.IN create mode 100644 tests/parm/MOM_input_template_025 create mode 100644 tests/parm/MOM_input_wave_template_025 create mode 100644 tests/parm/MOM_override create mode 100644 tests/parm/data_table_template create mode 100644 tests/parm/diag_table_benchmark create mode 100644 tests/parm/diag_table_template create mode 100644 tests/parm/fd_nems.yaml create mode 100644 tests/parm/ice_in_template create mode 100644 tests/parm/input.benchmark.nml.IN create mode 100644 tests/parm/input.benchmark_ccpp.nml.IN create mode 100644 tests/parm/input.mom6_ccpp.nml.IN create mode 100644 tests/parm/med_modelio.nml create mode 100644 tests/parm/nems.configure.medcmeps_atm_ocn_ice.IN create mode 100644 tests/parm/nems.configure.medcmeps_atm_ocn_ice_wav.IN create mode 100644 tests/parm/pio_in create mode 100644 tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt create mode 100644 tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux create mode 100644 tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac create mode 100644 tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_35d create mode 100644 tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_bmark_restart create mode 100644 tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt create mode 100644 tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_frac create mode 100644 tests/tests/cpld_fv3_ccpp_384_mom6_cice_ww3_cmeps_35d create mode 100644 tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf create mode 100644 tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux create mode 100644 tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads create mode 100644 tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux create mode 100644 tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp create mode 100644 tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux create mode 100644 tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug create mode 100644 tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_restart diff --git a/.gitignore b/.gitignore index 76cce4296f..460a60a019 100644 --- a/.gitignore +++ b/.gitignore @@ -1,18 +1,70 @@ -coupled*.mk -rt.conf.single +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app +*.x + +# system files *.swp *~ +.DS_Store +# python files +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# CMake files and directories build*/ install*/ +CMakeLists.txt.user +CMakeCache.txt +CMakeFiles +CMakeScripts +cmake_install.cmake +install_manifest.txt +compile_commands.json +CTestTestfile.cmake +_deps -ufs_weather_model -NEMS.exe -*.exe - -tests/fv3_*.exe +# repo-specific ignorables +coupled*.mk +rt.conf.single +ufs_model tests/modules.fv3_* tests/ecflow_run/ tests/log_*/ tests/lock/ tests/Compile_*.log +tests/fail_test +log* +build*.log* diff --git a/.gitmodules b/.gitmodules index 0692ca31b1..82a9329eea 100644 --- a/.gitmodules +++ b/.gitmodules @@ -18,3 +18,19 @@ path = stochastic_physics url = https://github.com/noaa-psd/stochastic_physics branch = master +[submodule "CMakeModules"] + path = CMakeModules + url = https://github.com/NOAA-EMC/CMakeModules + branch = develop +[submodule "CMEPS"] + path = CMEPS-interface/CMEPS + url = https://github.com/NOAA-EMC/CMEPS.git + branch = emc/develop +[submodule "MOM6"] + path = MOM6-interface/MOM6 + url = https://github.com/NOAA-EMC/MOM6 + branch = dev/emc +[submodule "CICE"] + path = CICE-interface/CICE + url = https://github.com/NOAA-EMC/CICE + branch = emc/develop diff --git a/CICE-interface/CICE b/CICE-interface/CICE new file mode 160000 index 0000000000..ac617cde36 --- /dev/null +++ b/CICE-interface/CICE @@ -0,0 +1 @@ +Subproject commit ac617cde36db5b41029d2c2523b0fb52c711897b diff --git a/CICE-interface/CMakeLists.txt b/CICE-interface/CMakeLists.txt new file mode 100644 index 0000000000..db4bf3a02b --- /dev/null +++ b/CICE-interface/CMakeLists.txt @@ -0,0 +1,101 @@ +### CICE Fortran compiler flags +if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") + set(CMAKE_Fortran_FLAGS "-g -fbacktrace") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fconvert=big-endian -ffree-line-length-none ") + set(CMAKE_Fortran_FLAGS_RELEASE "-O2") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -Wall -Wextra -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) + set(CMAKE_Fortran_LINK_FLAGS "" ) +elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") + set(CMAKE_Fortran_FLAGS "-g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -FR -convert big_endian -assume byterecl -ftz -align array64byte -xHOST") + set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check uninit -check bounds -check pointers -fpe0 -check noarg_temp_created -link_mpi=dbg") + set(CMAKE_Fortran_LINK_FLAGS "") +else() + message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") +endif() + +### CICE C compiler flags +if(CMAKE_C_COMPILER_ID MATCHES "GNU") + set(CMAKE_C_FLAGS "-g") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") + set(CMAKE_C_FLAGS_RELEASE "-O3") + set(CMAKE_C_FLAGS_DEBUG "-O0") + set(CMAKE_C_LINK_FLAGS "") +elseif(CMAKE_C_COMPILER_ID MATCHES "Intel") + set( CMAKE_C_FLAGS "-g -traceback") + set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -xHOST") + set( CMAKE_C_FLAGS_RELEASE "-O2 -fp-model precise") + set( CMAKE_C_FLAGS_DEBUG "-O0 -ftrapuv") + set( CMAKE_C_LINK_FLAGS "") +elseif(CMAKE_C_COMPILER_ID MATCHES "Clang") + set(CMAKE_C_FLAGS "-g") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") + set( CMAKE_C_FLAGS_RELEASE "-O3" ) + set( CMAKE_C_FLAGS_DEBUG "-O0" ) + set( CMAKE_C_LINK_FLAGS "" ) +else() + message(WARNING "C compiler with ID ${CMAKE_C_COMPILER_ID} will be used with CMake default options") +endif() + +# Configuration Options +set(CICE_IO "NetCDF" CACHE STRING "CICE OPTIONS: Choose IO options.") +set_property(CACHE CICE_IO PROPERTY STRINGS "NetCDF" "PIO" "Binary") + +# Too many files to list, so include them via this file +include("cice_files.cmake") + +# Collect source files for library +list(APPEND lib_src_files + ${cice_shared_files} + ${cice_shared_files_c} + ${icepack_files} + ${cice_mpi_comm_files} + ${cice_nuopc_cmeps_driver_files}) + +list(APPEND _cice_defs FORTRANUNDERSCORE + coupled) + +# Select IO source files based on CICE_IO +if(CICE_IO MATCHES "NetCDF") + list(APPEND lib_src_files ${cice_netcdf_io_files}) + list(APPEND _cice_defs USE_NETCDF) +elseif(CICE_IO MATCHES "PIO") + list(APPEND lib_src_files ${cice_pio2_io_files}) + list(APPEND _cice_defs USE_NETCDF) +elseif(CICE_IO MATCHES "Binary") + list(APPEND lib_src_files ${cice_binary_io_files}) +endif() + +### Create target library and set PUBLIC interfaces on the library +add_library(cice STATIC ${lib_src_files}) +set_target_properties(cice PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) +target_compile_definitions(cice PUBLIC "${_cice_defs}") +target_include_directories(cice PUBLIC $ + $) +target_link_libraries(cice PUBLIC esmf) +if(CICE_IO MATCHES "^(NetCDF|PIO)$") + target_link_libraries(cice PUBLIC NetCDF::NetCDF_Fortran) + if(CICE_IO MATCHES "PIO") + target_link_libraries(cice PUBLIC PIO::PIO_Fortran) + endif() +endif() +if(OpenMP_Fortran_FOUND) + target_link_libraries(cice PRIVATE OpenMP::OpenMP_Fortran) +endif() + +############################################################################### +### Install +############################################################################### + +install( + TARGETS cice + EXPORT cice-config + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib + COMPONENT Library) + +install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PREFIX}/CICE) + +install(EXPORT cice-config + DESTINATION lib/cmake) diff --git a/CICE-interface/cice_files.cmake b/CICE-interface/cice_files.cmake new file mode 100644 index 0000000000..8f237478f0 --- /dev/null +++ b/CICE-interface/cice_files.cmake @@ -0,0 +1,185 @@ +list(APPEND cice_shared_files + #Shared List: + CICE/cicecore/shared/ice_arrays_column.F90 + CICE/cicecore/shared/ice_calendar.F90 + CICE/cicecore/shared/ice_constants.F90 + CICE/cicecore/shared/ice_distribution.F90 + CICE/cicecore/shared/ice_domain_size.F90 + CICE/cicecore/shared/ice_fileunits.F90 + CICE/cicecore/shared/ice_init_column.F90 + CICE/cicecore/shared/ice_kinds_mod.F90 + CICE/cicecore/shared/ice_restart_column.F90 + CICE/cicecore/shared/ice_restart_shared.F90 + CICE/cicecore/shared/ice_spacecurve.F90 + + #Analysis List: + CICE/cicecore/cicedynB/analysis/ice_diagnostics.F90 + CICE/cicecore/cicedynB/analysis/ice_diagnostics_bgc.F90 + CICE/cicecore/cicedynB/analysis/ice_history.F90 + CICE/cicecore/cicedynB/analysis/ice_history_bgc.F90 + CICE/cicecore/cicedynB/analysis/ice_history_drag.F90 + CICE/cicecore/cicedynB/analysis/ice_history_fsd.F90 + CICE/cicecore/cicedynB/analysis/ice_history_mechred.F90 + CICE/cicecore/cicedynB/analysis/ice_history_pond.F90 + CICE/cicecore/cicedynB/analysis/ice_history_shared.F90 + + #Dynamics List: + CICE/cicecore/cicedynB/dynamics/ice_dyn_eap.F90 + CICE/cicecore/cicedynB/dynamics/ice_dyn_evp.F90 + CICE/cicecore/cicedynB/dynamics/ice_dyn_evp_1d.F90 + CICE/cicecore/cicedynB/dynamics/ice_dyn_shared.F90 + CICE/cicecore/cicedynB/dynamics/ice_transport_driver.F90 + CICE/cicecore/cicedynB/dynamics/ice_transport_remap.F90 + + #General List: + CICE/cicecore/cicedynB/general/ice_flux.F90 + CICE/cicecore/cicedynB/general/ice_flux_bgc.F90 + CICE/cicecore/cicedynB/general/ice_forcing.F90 + CICE/cicecore/cicedynB/general/ice_forcing_bgc.F90 + CICE/cicecore/cicedynB/general/ice_init.F90 + CICE/cicecore/cicedynB/general/ice_state.F90 + CICE/cicecore/cicedynB/general/ice_step_mod.F90 + + #Infrastructure List + CICE/cicecore/cicedynB/infrastructure/ice_blocks.F90 + CICE/cicecore/cicedynB/infrastructure/ice_domain.F90 + CICE/cicecore/cicedynB/infrastructure/ice_grid.F90 + CICE/cicecore/cicedynB/infrastructure/ice_read_write.F90 + CICE/cicecore/cicedynB/infrastructure/ice_restart_driver.F90 + CICE/cicecore/cicedynB/infrastructure/ice_restoring.F90 +) + + +#Icepack List: +list(APPEND icepack_files + CICE/icepack/columnphysics/icepack_aerosol.F90 + CICE/icepack/columnphysics/icepack_age.F90 + CICE/icepack/columnphysics/icepack_algae.F90 + CICE/icepack/columnphysics/icepack_atmo.F90 + CICE/icepack/columnphysics/icepack_brine.F90 + CICE/icepack/columnphysics/icepack_firstyear.F90 + CICE/icepack/columnphysics/icepack_flux.F90 + CICE/icepack/columnphysics/icepack_fsd.F90 + CICE/icepack/columnphysics/icepack_intfc.F90 + CICE/icepack/columnphysics/icepack_isotope.F90 + CICE/icepack/columnphysics/icepack_itd.F90 + CICE/icepack/columnphysics/icepack_kinds.F90 + CICE/icepack/columnphysics/icepack_mechred.F90 + CICE/icepack/columnphysics/icepack_meltpond_cesm.F90 + CICE/icepack/columnphysics/icepack_meltpond_lvl.F90 + CICE/icepack/columnphysics/icepack_meltpond_topo.F90 + CICE/icepack/columnphysics/icepack_mushy_physics.F90 + CICE/icepack/columnphysics/icepack_ocean.F90 + CICE/icepack/columnphysics/icepack_orbital.F90 + CICE/icepack/columnphysics/icepack_parameters.F90 + CICE/icepack/columnphysics/icepack_shortwave.F90 + CICE/icepack/columnphysics/icepack_therm_0layer.F90 + CICE/icepack/columnphysics/icepack_therm_bl99.F90 + CICE/icepack/columnphysics/icepack_therm_itd.F90 + CICE/icepack/columnphysics/icepack_therm_mushy.F90 + CICE/icepack/columnphysics/icepack_therm_shared.F90 + CICE/icepack/columnphysics/icepack_therm_vertical.F90 + CICE/icepack/columnphysics/icepack_tracers.F90 + CICE/icepack/columnphysics/icepack_warnings.F90 + CICE/icepack/columnphysics/icepack_wavefracspec.F90 + CICE/icepack/columnphysics/icepack_zbgc.F90 + CICE/icepack/columnphysics/icepack_zbgc_shared.F90 + CICE/icepack/columnphysics/icepack_zsalinity.F90 +) + +list(APPEND cice_shared_files_c + CICE/cicecore/cicedynB/infrastructure/ice_shr_reprosum86.c +) + +#-- Using MPI +list(APPEND cice_mpi_comm_files + CICE/cicecore/cicedynB/infrastructure/comm/mpi/ice_boundary.F90 + CICE/cicecore/cicedynB/infrastructure/comm/mpi/ice_broadcast.F90 + CICE/cicecore/cicedynB/infrastructure/comm/mpi/ice_communicate.F90 + CICE/cicecore/cicedynB/infrastructure/comm/mpi/ice_exit.F90 + CICE/cicecore/cicedynB/infrastructure/comm/mpi/ice_gather_scatter.F90 + CICE/cicecore/cicedynB/infrastructure/comm/mpi/ice_global_reductions.F90 + CICE/cicecore/cicedynB/infrastructure/comm/mpi/ice_reprosum.F90 + CICE/cicecore/cicedynB/infrastructure/comm/mpi/ice_timers.F90 +) + +#-- Using Serial +list(APPEND cice_serial_comm_files + CICE/cicecore/cicedynB/infrastructure/comm/serial/ice_boundary.F90 + CICE/cicecore/cicedynB/infrastructure/comm/serial/ice_broadcast.F90 + CICE/cicecore/cicedynB/infrastructure/comm/serial/ice_communicate.F90 + CICE/cicecore/cicedynB/infrastructure/comm/serial/ice_exit.F90 + CICE/cicecore/cicedynB/infrastructure/comm/serial/ice_gather_scatter.F90 + CICE/cicecore/cicedynB/infrastructure/comm/serial/ice_global_reductions.F90 + CICE/cicecore/cicedynB/infrastructure/comm/serial/ice_reprosum.F90 + CICE/cicecore/cicedynB/infrastructure/comm/serial/ice_timers.F90 +) + +#-- Using binary IO +list(APPEND cice_binary_io_files + CICE/cicecore/cicedynB/infrastructure/io/io_binary/ice_history_write.F90 + CICE/cicecore/cicedynB/infrastructure/io/io_binary/ice_restart.F90 +) + +#-- Using NetCDF IO +list(APPEND cice_netcdf_io_files + CICE/cicecore/cicedynB/infrastructure/io/io_netcdf/ice_history_write.F90 + CICE/cicecore/cicedynB/infrastructure/io/io_netcdf/ice_restart.F90 +) + +#PIO2 I/O List: +list(APPEND cice_pio2_io_files + CICE/cicecore/cicedynB/infrastructure/io/io_pio2/ice_history_write.F90 + CICE/cicecore/cicedynB/infrastructure/io/io_pio2/ice_pio.F90 + CICE/cicecore/cicedynB/infrastructure/io/io_pio2/ice_restart.F90 +) + +#-- Using standalone driver +list(APPEND cice_standalone_driver_files + CICE/cicecore/drivers/standalone/cice/CICE.F90 + CICE/cicecore/drivers/standalone/cice/CICE_FinalMod.F90 + CICE/cicecore/drivers/standalone/cice/CICE_InitMod.F90 + CICE/cicecore/drivers/standalone/cice/CICE_RunMod.F90 +) + +#-- Using NUOPC CMEPS driver +list(APPEND cice_nuopc_cmeps_driver_files + CICE/cicecore/drivers/nuopc/cmeps/CICE_FinalMod.F90 + CICE/cicecore/drivers/nuopc/cmeps/CICE_InitMod.F90 + CICE/cicecore/drivers/nuopc/cmeps/CICE_RunMod.F90 + CICE/cicecore/drivers/nuopc/cmeps/cice_wrapper_mod.F90 + CICE/cicecore/drivers/nuopc/cmeps/ice_comp_nuopc.F90 + CICE/cicecore/drivers/nuopc/cmeps/ice_import_export.F90 + CICE/cicecore/drivers/nuopc/cmeps/ice_prescribed_mod.F90 + CICE/cicecore/drivers/nuopc/cmeps/ice_scam.F90 + CICE/cicecore/drivers/nuopc/cmeps/ice_shr_methods.F90 +) + +#-- Using NUOPC DMI driver +list(APPEND cice_nuopc_dmi_driver_files + CICE/cicecore/drivers/nuopc/dmi/CICE.F90 + CICE/cicecore/drivers/nuopc/dmi/CICE_FinalMod.F90 + CICE/cicecore/drivers/nuopc/dmi/CICE_InitMod.F90 + CICE/cicecore/drivers/nuopc/dmi/CICE_RunMod.F90 +) + +#-- Using direct driver +list(APPEND cice_direct_driver_files + CICE/cicecore/drivers/direct/hadgem3/CICE.F90 + CICE/cicecore/drivers/direct/hadgem3/CICE_FinalMod.F90 + CICE/cicecore/drivers/direct/hadgem3/CICE_InitMod.F90 + CICE/cicecore/drivers/direct/hadgem3/CICE_RunMod.F90 +) + +#-- Using MCT driver +list(APPEND cice_mct_driver_files + CICE/cicecore/drivers/mct/cesm1/CICE_FinalMod.F90 + CICE/cicecore/drivers/mct/cesm1/CICE_InitMod.F90 + CICE/cicecore/drivers/mct/cesm1/CICE_RunMod.F90 + CICE/cicecore/drivers/mct/cesm1/ice_comp_esmf.F90 + CICE/cicecore/drivers/mct/cesm1/ice_comp_mct.F90 + CICE/cicecore/drivers/mct/cesm1/ice_cpl_indices.F90 + CICE/cicecore/drivers/mct/cesm1/ice_import_export.F90 + CICE/cicecore/drivers/mct/cesm1/ice_prescribed_mod.F90 + CICE/cicecore/drivers/mct/cesm1/ice_scam.F90 +) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS new file mode 160000 index 0000000000..4d50adf2c6 --- /dev/null +++ b/CMEPS-interface/CMEPS @@ -0,0 +1 @@ +Subproject commit 4d50adf2c63749241afbc028cbe245881b087585 diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt new file mode 100644 index 0000000000..e20108ba8a --- /dev/null +++ b/CMEPS-interface/CMakeLists.txt @@ -0,0 +1,90 @@ +# CMEPS compiler flags +if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") + set(CMAKE_Fortran_FLAGS "-g -fbacktrace -ffree-line-length-none") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS}") + set(CMAKE_Fortran_FLAGS_RELEASE "-O2") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) + set(CMAKE_Fortran_LINK_FLAGS "") +elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") + set(CMAKE_Fortran_FLAGS "-g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O -assume realloc_lhs") + set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv") + set(CMAKE_Fortran_LINK_FLAGS "") +else() + message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") +endif() + +list(APPEND _nems_util_files + CMEPS/nems/util/shr_abort_mod.F90 + CMEPS/nems/util/shr_log_mod.F90 + CMEPS/nems/util/shr_pio_mod.F90 + CMEPS/nems/util/shr_sys_mod.F90 + CMEPS/nems/util/shr_flux_mod.F90 + CMEPS/nems/util/shr_mpi_mod.F90 + CMEPS/nems/util/glc_elevclass_mod.F90 + CMEPS/nems/util/shr_mem_mod.F90 + CMEPS/nems/util/shr_kind_mod.F90 + CMEPS/nems/util/perf_mod.F90 + CMEPS/nems/util/shr_const_mod.F90) + +list(APPEND _mediator_files + CMEPS/mediator/med_phases_restart_mod.F90 + CMEPS/mediator/med_map_mod.F90 + CMEPS/mediator/med_methods_mod.F90 + CMEPS/mediator/med_phases_prep_ice_mod.F90 + CMEPS/mediator/med_phases_history_mod.F90 + CMEPS/mediator/med_phases_prep_glc_mod.F90 + CMEPS/mediator/med_internalstate_mod.F90 + CMEPS/mediator/med_phases_profile_mod.F90 + CMEPS/mediator/esmFldsExchange_hafs_mod.F90 + CMEPS/mediator/med_phases_prep_rof_mod.F90 + CMEPS/mediator/esmFldsExchange_cesm_mod.F90 + CMEPS/mediator/med_merge_mod.F90 + CMEPS/mediator/med_constants_mod.F90 + CMEPS/mediator/med_kind_mod.F90 + CMEPS/mediator/esmFldsExchange_nems_mod.F90 + CMEPS/mediator/med_phases_prep_lnd_mod.F90 + CMEPS/mediator/med_phases_prep_atm_mod.F90 + CMEPS/mediator/med_phases_prep_ocn_mod.F90 + CMEPS/mediator/esmFlds.F90 + CMEPS/mediator/med.F90 + CMEPS/mediator/med_time_mod.F90 + CMEPS/mediator/med_phases_ocnalb_mod.F90 + CMEPS/mediator/med_phases_prep_wav_mod.F90 + CMEPS/mediator/med_utils_mod.F90 + CMEPS/mediator/med_fraction_mod.F90 + CMEPS/mediator/med_phases_aofluxes_mod.F90 + CMEPS/mediator/med_io_mod.F90) + +list(APPEND _mediator_defs ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR} + ESMF_VERSION_MINOR=${ESMF_VERSION_MINOR} + INTERNAL_PIO_INIT) + +### Create target library and set PUBLIC interfaces on the library +add_library(cmeps STATIC ${_nems_util_files} ${_mediator_files}) +set_target_properties(cmeps PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) +target_compile_definitions(cmeps PUBLIC "${_mediator_defs}") +target_include_directories(cmeps PUBLIC $ + $) +target_link_libraries(cmeps PUBLIC esmf + PIO::PIO_Fortran) +if(OpenMP_Fortran_FOUND) + target_link_libraries(cmeps PRIVATE OpenMP::OpenMP_Fortran) +endif() + +############################################################################### +### Install +############################################################################### + +install( + TARGETS cmeps + EXPORT cmeps-config + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib + COMPONENT Library) + +install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PREFIX}/CMEPS) + +install(EXPORT cmeps-config + DESTINATION lib/cmake) diff --git a/CMakeLists.txt b/CMakeLists.txt index 19313de5b1..c64931b49f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,6 +16,7 @@ project(ufs LANGUAGES C CXX Fortran) list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake) +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") @@ -30,6 +31,14 @@ set(PARALLEL_NETCDF OFF CACHE BOOL "Enable parallel NetCDF") set(QUAD_PRECISION ON CACHE BOOL "Enable QUAD_PRECISION (for certain grid metric terms in dycore)") set(REPRO OFF CACHE BOOL "Enable REPRO mode") set(WW3 OFF CACHE BOOL "Enable WW3") +set(S2S OFF CACHE BOOL "Enable S2S") + +############################################################################### +### Set CMAKE_BUILD_TYPE for DEBUG mode +############################################################################### +if(DEBUG) + set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Set type of build to Debug." FORCE) +endif() if(CMAKE_Platform) message("") @@ -44,7 +53,7 @@ endif() message("") message("32BIT ............ ${32BIT}") message("AVX2 ............. ${AVX2}") -message("SIMDMULTIARCH ${SIMDMULTIARCH}") +message("SIMDMULTIARCH ... ${SIMDMULTIARCH}") message("CCPP ............. ${CCPP}") message("DEBUG ............ ${DEBUG}") message("DEBUG_LINKMPI .... ${DEBUG_LINKMPI}") @@ -55,6 +64,7 @@ message("PARALLEL_NETCDF .. ${PARALLEL_NETCDF}") message("QUAD_PRECISION ... ${QUAD_PRECISION}") message("REPRO ............ ${REPRO}") message("WW3 .............. ${WW3}") +message("S2S .............. ${S2S}") message("") get_filename_component (C_COMPILER_NAME ${CMAKE_C_COMPILER} NAME) @@ -72,12 +82,18 @@ endif() include(cmake/${CMAKE_Fortran_COMPILER_ID}.cmake) message("") -find_package(NetCDF REQUIRED C Fortran) +############################################################################### +### Find Dependencies +############################################################################### find_package(MPI REQUIRED) if(OPENMP) find_package(OpenMP REQUIRED) endif() +find_package(NetCDF REQUIRED C Fortran) find_package(ESMF MODULE REQUIRED) +if(S2S) + find_package(PIO REQUIRED COMPONENTS C Fortran STATIC) +endif() find_package(bacio REQUIRED) find_package(nemsio REQUIRED) @@ -87,17 +103,25 @@ find_package(w3nco REQUIRED) if(INLINE_POST) find_package(nceppost REQUIRED) 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 QUIET REQUIRED COMPONENTS Interpreter) + find_package(Python 2.7 REQUIRED COMPONENTS Interpreter) endif() message("Found Python: ${Python_EXECUTABLE}") endif() +############################################################################### +### Checks +############################################################################### +if(S2S AND 32BIT) + message(FATAL_ERROR "S2S=ON and 32BIT=ON are incompatible, ABORT!") +endif() + ############################################################################### ### FMS ############################################################################### @@ -123,12 +147,11 @@ target_compile_definitions(fms PRIVATE "${_fms_defs_private}") target_include_directories(fms PUBLIC $ $ - $ $) target_link_libraries(fms PUBLIC MPI::MPI_Fortran NetCDF::NetCDF_Fortran) if(OpenMP_Fortran_FOUND) - target_link_libraries(fms PUBLIC OpenMP::OpenMP_Fortran) + target_link_libraries(fms PRIVATE OpenMP::OpenMP_Fortran) endif() set_target_properties(fms PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS) set_target_properties(fms PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod) @@ -154,6 +177,12 @@ if(WW3) set(WW3_COMP "hera") elseif(${CMAKE_Platform} STREQUAL "orion.intel") set(WW3_COMP "orion") + elseif(${CMAKE_Platform} MATCHES "linux*" OR ${CMAKE_Platform} MATCHES "macosx*") + if (CMAKE_Fortran_COMPILER_ID MATCHES "GNU") + set(WW3_COMP "gnu") + elseif (CMAKE_Fortran_COMPILER_ID MATCHES "Intel") + set(WW3_COMP "intel") + endif() else() set(WW3_COMP ${CMAKE_Platform}) endif() @@ -171,7 +200,16 @@ if(WW3) endif() ############################################################################### -### NEMS (ufs) +### S2S Components [CMEPS, MOM6, CICE] +############################################################################### +if(S2S) + add_subdirectory(CMEPS-interface) + add_subdirectory(MOM6-interface) + add_subdirectory(CICE-interface) +endif() + +############################################################################### +### UFS Library [NEMS] ############################################################################### list(APPEND _nems_srcs NEMS/src/module_NEMS_UTILS.F90 NEMS/src/module_MEDIATOR_methods.F90 @@ -201,6 +239,7 @@ add_library(ufs ${_nems_srcs}) list(APPEND _ufs_defs_private ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR} FRONT_FMS FRONT_FV3=fv3gfs_cap_mod) +add_dependencies(ufs fms fv3atm) set_target_properties(ufs PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(ufs PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/NEMS/src) @@ -215,10 +254,22 @@ endif() target_include_directories(ufs INTERFACE $ $) -target_compile_definitions(ufs PRIVATE ${_ufs_defs_private}) target_link_libraries(ufs PUBLIC esmf fv3atm) +if(S2S) + list(APPEND _ufs_defs_private FRONT_MOM6=mom_cap_mod + FRONT_CICE6=ice_comp_nuopc + CMEPS + FRONT_CMEPS=MED) + add_dependencies(ufs mom6 cice cmeps) + target_link_libraries(ufs PUBLIC mom6 + cice + cmeps) +endif() + +target_compile_definitions(ufs PRIVATE "${_ufs_defs_private}") + ############################################################################### ### UFS executable ############################################################################### @@ -248,16 +299,16 @@ target_link_libraries(ufs_model PRIVATE ufs ############################################################################### install( TARGETS ufs_model ufs fms - EXPORT ufs-config + EXPORT ufs-config + RUNTIME DESTINATION bin LIBRARY DESTINATION lib ARCHIVE DESTINATION lib) install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PREFIX}) -install(EXPORT ufs-config - DESTINATION lib/cmake -) +install(EXPORT ufs-config + DESTINATION lib/cmake) ############################################################################### -### done +### Done ############################################################################### diff --git a/CMakeModules b/CMakeModules new file mode 160000 index 0000000000..18658695a0 --- /dev/null +++ b/CMakeModules @@ -0,0 +1 @@ +Subproject commit 18658695a0b87ad6fcf33982b9cb13e6d7373911 diff --git a/MOM6-interface/CMakeLists.txt b/MOM6-interface/CMakeLists.txt new file mode 100644 index 0000000000..833bb87242 --- /dev/null +++ b/MOM6-interface/CMakeLists.txt @@ -0,0 +1,98 @@ +### MOM6 Fortran compiler flags +if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") + set(CMAKE_Fortran_FLAGS "-g -fbacktrace") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fdefault-real-8 -fdefault-double-8") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -Waliasing -fcray-pointer -fconvert=big-endian -ffree-line-length-none -fno-range-check -fbacktrace") + set(CMAKE_Fortran_FLAGS_RELEASE "-O2") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) + set(CMAKE_Fortran_LINK_FLAGS "") +elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") + set(CMAKE_Fortran_FLAGS "-g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -i4 -r8") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -sox") + set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -debug minimal -fp-model source") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv -link_mpi=dbg") + set(CMAKE_Fortran_LINK_FLAGS "") +else() + message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") +endif() + +# User option to build MOM6 solo executable +set(MOM6SOLO OFF CACHE BOOL "Build MOM6 solo") + +# Too many files to list, so include them via this file +include("mom6_files.cmake") + +### Use common object library for building target library +add_library(mom6_obj OBJECT ${mom6_src_files}) +set_target_properties(mom6_obj PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) +target_include_directories(mom6_obj PRIVATE $) +target_include_directories(mom6_obj PRIVATE $ + $) +target_link_libraries(mom6_obj PRIVATE fms + NetCDF::NetCDF_Fortran) +# OpenMP is disabled in MOM6 +#if(OpenMP_Fortran_FOUND) +# target_link_libraries(mom6_obj PRIVATE OpenMP::OpenMP_Fortran) +#endif() + +add_library(mom6_nuopc_obj OBJECT ${mom6_nuopc_src_files}) +set_target_properties(mom6_nuopc_obj PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) +target_include_directories(mom6_nuopc_obj PRIVATE $) +target_include_directories(mom6_nuopc_obj PRIVATE $ + $) +target_link_libraries(mom6_nuopc_obj PRIVATE mom6_obj + fms + esmf) +# OpenMP is disabled in MOM6 +#if(OpenMP_Fortran_FOUND) +# target_link_libraries(mom6_nuopc_obj PRIVATE OpenMP::OpenMP_Fortran) +#endif() + +### Create target library and set PUBLIC interfaces on the library +add_library(mom6 STATIC $ + $) +target_include_directories(mom6 PUBLIC $ + $) +target_include_directories(mom6 PUBLIC $ + $) +target_link_libraries(mom6 PUBLIC fms + esmf + NetCDF::NetCDF_Fortran) +# OpenMP is disabled in MOM6 +#if(OpenMP_Fortran_FOUND) +# target_link_libraries(mom6 PRIVATE OpenMP::OpenMP_Fortran) +#endif() + +### Create standalone MOM6 executable [bug in our fork prevents this compilation] +#add_executable(mom6solo ${mom6_solo_src_files}) +#add_dependencies(mom6solo mom6_obj) +#set_target_properties(mom6solo PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod_solo) +#target_include_directories(mom6solo PRIVATE $) +#target_include_directories(mom6solo PRIVATE $) +#target_include_directories(mom6solo PRIVATE $ +# $) +#target_link_libraries(mom6solo PRIVATE mom6_obj +# fms +# NetCDF::NetCDF_Fortran) +# OpenMP is disabled in MOM6 +#if(OpenMP_Fortran_FOUND) +# target_link_libraries(mom6solo PRIVATE OpenMP::OpenMP_Fortran) +#endif() + +############################################################################### +### Install +############################################################################### + +install( + TARGETS mom6 #mom6solo + EXPORT mom6-config + RUNTIME DESTINATION bin + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib + COMPONENT Library) + +install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PREFIX}/MOM6) + +install(EXPORT mom6-config + DESTINATION lib/cmake) diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 new file mode 160000 index 0000000000..7a76a13900 --- /dev/null +++ b/MOM6-interface/MOM6 @@ -0,0 +1 @@ +Subproject commit 7a76a13900b68e06a6bc4ff8c53b98352bf8b741 diff --git a/MOM6-interface/mom6_files.cmake b/MOM6-interface/mom6_files.cmake new file mode 100644 index 0000000000..6500fda423 --- /dev/null +++ b/MOM6-interface/mom6_files.cmake @@ -0,0 +1,267 @@ +list(APPEND mom6_src_files + MOM6/src/ALE/MOM_ALE.F90 + MOM6/src/ALE/MOM_regridding.F90 + MOM6/src/ALE/MOM_remapping.F90 + MOM6/src/ALE/P1M_functions.F90 + MOM6/src/ALE/P3M_functions.F90 + MOM6/src/ALE/PCM_functions.F90 + MOM6/src/ALE/PLM_functions.F90 + MOM6/src/ALE/PPM_functions.F90 + MOM6/src/ALE/PQM_functions.F90 + MOM6/src/ALE/coord_adapt.F90 + MOM6/src/ALE/coord_hycom.F90 + MOM6/src/ALE/coord_rho.F90 + MOM6/src/ALE/coord_sigma.F90 + MOM6/src/ALE/coord_slight.F90 + MOM6/src/ALE/coord_zlike.F90 + MOM6/src/ALE/polynomial_functions.F90 + MOM6/src/ALE/regrid_consts.F90 + MOM6/src/ALE/regrid_edge_values.F90 + MOM6/src/ALE/regrid_interp.F90 + MOM6/src/ALE/regrid_solvers.F90 + + MOM6/src/core/MOM.F90 + MOM6/src/core/MOM_CoriolisAdv.F90 + MOM6/src/core/MOM_PressureForce.F90 + MOM6/src/core/MOM_PressureForce_Montgomery.F90 + MOM6/src/core/MOM_PressureForce_analytic_FV.F90 + MOM6/src/core/MOM_barotropic.F90 + MOM6/src/core/MOM_boundary_update.F90 + MOM6/src/core/MOM_checksum_packages.F90 + MOM6/src/core/MOM_continuity.F90 + MOM6/src/core/MOM_continuity_PPM.F90 + MOM6/src/core/MOM_dynamics_split_RK2.F90 + MOM6/src/core/MOM_dynamics_unsplit.F90 + MOM6/src/core/MOM_dynamics_unsplit_RK2.F90 + MOM6/src/core/MOM_forcing_type.F90 + MOM6/src/core/MOM_grid.F90 + MOM6/src/core/MOM_interface_heights.F90 + MOM6/src/core/MOM_isopycnal_slopes.F90 + MOM6/src/core/MOM_open_boundary.F90 + MOM6/src/core/MOM_transcribe_grid.F90 + MOM6/src/core/MOM_unit_tests.F90 + MOM6/src/core/MOM_variables.F90 + MOM6/src/core/MOM_verticalGrid.F90 + + MOM6/src/diagnostics/MOM_PointAccel.F90 + MOM6/src/diagnostics/MOM_debugging.F90 + MOM6/src/diagnostics/MOM_diagnostics.F90 + MOM6/src/diagnostics/MOM_obsolete_diagnostics.F90 + MOM6/src/diagnostics/MOM_obsolete_params.F90 + MOM6/src/diagnostics/MOM_sum_output.F90 + MOM6/src/diagnostics/MOM_wave_speed.F90 + MOM6/src/diagnostics/MOM_wave_structure.F90 + + MOM6/src/equation_of_state/MOM_EOS.F90 + MOM6/src/equation_of_state/MOM_EOS_NEMO.F90 + MOM6/src/equation_of_state/MOM_EOS_TEOS10.F90 + MOM6/src/equation_of_state/MOM_EOS_UNESCO.F90 + MOM6/src/equation_of_state/MOM_EOS_Wright.F90 + MOM6/src/equation_of_state/MOM_EOS_linear.F90 + MOM6/src/equation_of_state/MOM_TFreeze.F90 + + MOM6/src/equation_of_state/TEOS10/gsw_chem_potential_water_t_exact.f90 + MOM6/src/equation_of_state/TEOS10/gsw_ct_freezing_exact.f90 + MOM6/src/equation_of_state/TEOS10/gsw_ct_freezing_poly.f90 + MOM6/src/equation_of_state/TEOS10/gsw_ct_from_pt.f90 + MOM6/src/equation_of_state/TEOS10/gsw_ct_from_t.f90 + MOM6/src/equation_of_state/TEOS10/gsw_entropy_part.f90 + MOM6/src/equation_of_state/TEOS10/gsw_entropy_part_zerop.f90 + MOM6/src/equation_of_state/TEOS10/gsw_gibbs.f90 + MOM6/src/equation_of_state/TEOS10/gsw_gibbs_ice.f90 + MOM6/src/equation_of_state/TEOS10/gsw_gibbs_pt0_pt0.f90 + MOM6/src/equation_of_state/TEOS10/gsw_mod_freezing_poly_coefficients.f90 + MOM6/src/equation_of_state/TEOS10/gsw_mod_gibbs_ice_coefficients.f90 + MOM6/src/equation_of_state/TEOS10/gsw_mod_kinds.f90 + MOM6/src/equation_of_state/TEOS10/gsw_mod_specvol_coefficients.f90 + MOM6/src/equation_of_state/TEOS10/gsw_mod_teos10_constants.f90 + MOM6/src/equation_of_state/TEOS10/gsw_mod_toolbox.f90 + MOM6/src/equation_of_state/TEOS10/gsw_pt0_from_t.f90 + MOM6/src/equation_of_state/TEOS10/gsw_pt_from_ct.f90 + MOM6/src/equation_of_state/TEOS10/gsw_pt_from_t.f90 + MOM6/src/equation_of_state/TEOS10/gsw_rho.f90 + MOM6/src/equation_of_state/TEOS10/gsw_rho_first_derivatives.f90 + MOM6/src/equation_of_state/TEOS10/gsw_rho_second_derivatives.f90 + MOM6/src/equation_of_state/TEOS10/gsw_sp_from_sr.f90 + MOM6/src/equation_of_state/TEOS10/gsw_specvol.f90 + MOM6/src/equation_of_state/TEOS10/gsw_specvol_first_derivatives.f90 + MOM6/src/equation_of_state/TEOS10/gsw_specvol_second_derivatives.f90 + MOM6/src/equation_of_state/TEOS10/gsw_sr_from_sp.f90 + MOM6/src/equation_of_state/TEOS10/gsw_t_deriv_chem_potential_water_t_exact.f90 + MOM6/src/equation_of_state/TEOS10/gsw_t_freezing_exact.f90 + MOM6/src/equation_of_state/TEOS10/gsw_t_freezing_poly.f90 + MOM6/src/equation_of_state/TEOS10/gsw_t_from_ct.f90 + + MOM6/src/framework/MOM_array_transform.F90 + MOM6/src/framework/MOM_checksums.F90 + MOM6/src/framework/MOM_coms.F90 + MOM6/src/framework/MOM_constants.F90 + MOM6/src/framework/MOM_cpu_clock.F90 + MOM6/src/framework/MOM_diag_manager_wrapper.F90 + MOM6/src/framework/MOM_diag_mediator.F90 + MOM6/src/framework/MOM_diag_remap.F90 + MOM6/src/framework/MOM_diag_vkernels.F90 + MOM6/src/framework/MOM_document.F90 + MOM6/src/framework/MOM_domains.F90 + MOM6/src/framework/MOM_dyn_horgrid.F90 + MOM6/src/framework/MOM_error_handler.F90 + MOM6/src/framework/MOM_file_parser.F90 + MOM6/src/framework/MOM_get_input.F90 + MOM6/src/framework/MOM_hor_index.F90 + MOM6/src/framework/MOM_horizontal_regridding.F90 + MOM6/src/framework/MOM_intrinsic_functions.F90 + MOM6/src/framework/MOM_io.F90 + MOM6/src/framework/MOM_random.F90 + MOM6/src/framework/MOM_restart.F90 + MOM6/src/framework/MOM_safe_alloc.F90 + MOM6/src/framework/MOM_spatial_means.F90 + MOM6/src/framework/MOM_string_functions.F90 + MOM6/src/framework/MOM_time_manager.F90 + MOM6/src/framework/MOM_transform_FMS.F90 + MOM6/src/framework/MOM_unit_scaling.F90 + MOM6/src/framework/MOM_write_cputime.F90 + + MOM6/src/ice_shelf/MOM_ice_shelf.F90 + MOM6/src/ice_shelf/MOM_ice_shelf_dynamics.F90 + MOM6/src/ice_shelf/MOM_ice_shelf_initialize.F90 + MOM6/src/ice_shelf/MOM_ice_shelf_state.F90 + MOM6/src/ice_shelf/MOM_marine_ice.F90 + MOM6/src/ice_shelf/user_shelf_init.F90 + + MOM6/src/initialization/MOM_coord_initialization.F90 + MOM6/src/initialization/MOM_fixed_initialization.F90 + MOM6/src/initialization/MOM_grid_initialize.F90 + MOM6/src/initialization/MOM_shared_initialization.F90 + MOM6/src/initialization/MOM_state_initialization.F90 + MOM6/src/initialization/MOM_tracer_initialization_from_Z.F90 + + MOM6/src/parameterizations/lateral/MOM_MEKE.F90 + MOM6/src/parameterizations/lateral/MOM_MEKE_types.F90 + MOM6/src/parameterizations/lateral/MOM_hor_visc.F90 + MOM6/src/parameterizations/lateral/MOM_internal_tides.F90 + MOM6/src/parameterizations/lateral/MOM_lateral_mixing_coeffs.F90 + MOM6/src/parameterizations/lateral/MOM_mixed_layer_restrat.F90 + MOM6/src/parameterizations/lateral/MOM_thickness_diffuse.F90 + MOM6/src/parameterizations/lateral/MOM_tidal_forcing.F90 + + MOM6/src/parameterizations/vertical/MOM_ALE_sponge.F90 + MOM6/src/parameterizations/vertical/MOM_CVMix_KPP.F90 + MOM6/src/parameterizations/vertical/MOM_CVMix_conv.F90 + MOM6/src/parameterizations/vertical/MOM_CVMix_ddiff.F90 + MOM6/src/parameterizations/vertical/MOM_CVMix_shear.F90 + MOM6/src/parameterizations/vertical/MOM_bkgnd_mixing.F90 + MOM6/src/parameterizations/vertical/MOM_bulk_mixed_layer.F90 + MOM6/src/parameterizations/vertical/MOM_diabatic_aux.F90 + MOM6/src/parameterizations/vertical/MOM_diabatic_driver.F90 + MOM6/src/parameterizations/vertical/MOM_diapyc_energy_req.F90 + MOM6/src/parameterizations/vertical/MOM_energetic_PBL.F90 + MOM6/src/parameterizations/vertical/MOM_entrain_diffusive.F90 + MOM6/src/parameterizations/vertical/MOM_full_convection.F90 + MOM6/src/parameterizations/vertical/MOM_geothermal.F90 + MOM6/src/parameterizations/vertical/MOM_internal_tide_input.F90 + MOM6/src/parameterizations/vertical/MOM_kappa_shear.F90 + MOM6/src/parameterizations/vertical/MOM_opacity.F90 + MOM6/src/parameterizations/vertical/MOM_regularize_layers.F90 + MOM6/src/parameterizations/vertical/MOM_set_diffusivity.F90 + MOM6/src/parameterizations/vertical/MOM_set_viscosity.F90 + MOM6/src/parameterizations/vertical/MOM_sponge.F90 + MOM6/src/parameterizations/vertical/MOM_tidal_mixing.F90 + MOM6/src/parameterizations/vertical/MOM_vert_friction.F90 + + MOM6/src/parameterizations/CVmix/cvmix_background.F90 + MOM6/src/parameterizations/CVmix/cvmix_convection.F90 + MOM6/src/parameterizations/CVmix/cvmix_ddiff.F90 + MOM6/src/parameterizations/CVmix/cvmix_kinds_and_types.F90 + MOM6/src/parameterizations/CVmix/cvmix_kpp.F90 + MOM6/src/parameterizations/CVmix/cvmix_math.F90 + MOM6/src/parameterizations/CVmix/cvmix_put_get.F90 + MOM6/src/parameterizations/CVmix/cvmix_shear.F90 + MOM6/src/parameterizations/CVmix/cvmix_tidal.F90 + MOM6/src/parameterizations/CVmix/cvmix_utils.F90 + + MOM6/src/tracer/DOME_tracer.F90 + + MOM6/src/tracer/ISOMIP_tracer.F90 + + MOM6/src/tracer/MOM_OCMIP2_CFC.F90 + MOM6/src/tracer/MOM_generic_tracer.F90 + MOM6/src/tracer/MOM_lateral_boundary_diffusion.F90 + MOM6/src/tracer/MOM_neutral_diffusion.F90 + MOM6/src/tracer/MOM_offline_aux.F90 + MOM6/src/tracer/MOM_offline_main.F90 + MOM6/src/tracer/MOM_tracer_Z_init.F90 + MOM6/src/tracer/MOM_tracer_advect.F90 + MOM6/src/tracer/MOM_tracer_diabatic.F90 + MOM6/src/tracer/MOM_tracer_flow_control.F90 + MOM6/src/tracer/MOM_tracer_hor_diff.F90 + MOM6/src/tracer/MOM_tracer_registry.F90 + MOM6/src/tracer/RGC_tracer.F90 + MOM6/src/tracer/advection_test_tracer.F90 + MOM6/src/tracer/boundary_impulse_tracer.F90 + MOM6/src/tracer/dye_example.F90 + MOM6/src/tracer/dyed_obc_tracer.F90 + MOM6/src/tracer/ideal_age_example.F90 + MOM6/src/tracer/oil_tracer.F90 + MOM6/src/tracer/pseudo_salt_tracer.F90 + MOM6/src/tracer/tracer_example.F90 + + MOM6/src/user/BFB_initialization.F90 + MOM6/src/user/BFB_surface_forcing.F90 + MOM6/src/user/DOME2d_initialization.F90 + MOM6/src/user/DOME_initialization.F90 + MOM6/src/user/ISOMIP_initialization.F90 + MOM6/src/user/Idealized_Hurricane.F90 + MOM6/src/user/Kelvin_initialization.F90 + MOM6/src/user/MOM_controlled_forcing.F90 + MOM6/src/user/MOM_wave_interface.F90 + MOM6/src/user/Neverland_initialization.F90 + MOM6/src/user/Phillips_initialization.F90 + MOM6/src/user/RGC_initialization.F90 + MOM6/src/user/Rossby_front_2d_initialization.F90 + MOM6/src/user/SCM_CVMix_tests.F90 + MOM6/src/user/adjustment_initialization.F90 + MOM6/src/user/baroclinic_zone_initialization.F90 + MOM6/src/user/benchmark_initialization.F90 + MOM6/src/user/circle_obcs_initialization.F90 + MOM6/src/user/dense_water_initialization.F90 + MOM6/src/user/dumbbell_initialization.F90 + MOM6/src/user/dumbbell_surface_forcing.F90 + MOM6/src/user/dyed_channel_initialization.F90 + MOM6/src/user/dyed_obcs_initialization.F90 + MOM6/src/user/external_gwave_initialization.F90 + MOM6/src/user/lock_exchange_initialization.F90 + MOM6/src/user/seamount_initialization.F90 + MOM6/src/user/shelfwave_initialization.F90 + MOM6/src/user/sloshing_initialization.F90 + MOM6/src/user/soliton_initialization.F90 + MOM6/src/user/supercritical_initialization.F90 + MOM6/src/user/tidal_bay_initialization.F90 + MOM6/src/user/user_change_diffusivity.F90 + MOM6/src/user/user_initialization.F90 + MOM6/src/user/user_revise_forcing.F90 + + MOM6/src/ocean_data_assim/MOM_oda_driver.F90 + MOM6/src/ocean_data_assim/core/ocean_da_core.F90 + MOM6/src/ocean_data_assim/core/ocean_da_types.F90 + MOM6/src/ocean_data_assim/core/write_ocean_obs.F90 + + MOM6/src/ocean_data_assim/geoKdTree/kdtree.f90 +) + +list(APPEND mom6_nuopc_src_files + MOM6/config_src/nuopc_driver/mom_cap.F90 + MOM6/config_src/nuopc_driver/time_utils.F90 + MOM6/config_src/nuopc_driver/mom_cap_methods.F90 + MOM6/config_src/nuopc_driver/mom_cap_time.F90 + MOM6/config_src/nuopc_driver/mom_ocean_model_nuopc.F90 + MOM6/config_src/nuopc_driver/mom_surface_forcing_nuopc.F90 +) + +list(APPEND mom6_solo_src_files + MOM6/config_src/solo_driver/MESO_surface_forcing.F90 + MOM6/config_src/solo_driver/MOM_driver.F90 + MOM6/config_src/solo_driver/MOM_surface_forcing.F90 + MOM6/config_src/solo_driver/Neverland_surface_forcing.F90 + MOM6/config_src/solo_driver/atmos_ocean_fluxes.F90 + MOM6/config_src/solo_driver/user_surface_forcing.F90 +) diff --git a/README.md b/README.md index 4892c7afc5..e59bf02c0e 100644 --- a/README.md +++ b/README.md @@ -14,21 +14,20 @@ Start at the [ufs-weather-model wiki](https://github.com/ufs-community/ufs-weath The top level directory structure groups source code and input files as follow: -| File/directory | Purpose | -| -------------- | ------- | -| ```LICENSE.md``` | A copy of the Gnu lesser general public license, version 3. | -| ```README.md``` | This file with basic pointers to more information. | -| ```FMS/``` | Contains Flexible Modeling System source code. | -| ```NEMS/``` | Contains NOAA Environmental Modeling System source code and nems compset runi scripts. | -| ```FV3/``` | Contains FV3 atmosphere model component including fv3 dynamics core, dynsmics to physics driver, physics and io. | -| ```WW3/``` | Contains community wave modeling framework WW3. | +| File/directory | Purpose | +| -------------- | ------- | +| ```LICENSE.md``` | A copy of the GNU Lesser General Public License, Version 3. | +| ```README.md``` | This file with basic pointers to more information. | +| ```FMS/``` | Contains Flexible Modeling System source code. | +| ```NEMS/``` | Contains NOAA Environmental Modeling System source code and nems compset runi scripts. | +| ```CMEPS-interface/``` | Contains CMEPS mediator | +| ```FV3/``` | Contains FV3 atmosphere model component including FV3 dynamical core, dynamics to physics driver, physics and IO. | +| ```WW3/``` | Contains community wave modeling framework WW3. | +| ```MOM6-interface/``` | Contains MOM6 ocean model component | +| ```CICE-interface/``` | Contains CICE sea-ice model component including CICE6 and Icepack | | ```stochastic physics/``` | Contains the stochastic physics source code. | -| ```conf/``` | Contains compile option files on various platforms. | -| ```compsets/``` | Contains NEMSCompsetRun regression test compset information. | -| ```log/``` | Contains log files from NEMSCompsetRun regression test.| -| ```modulefiles/``` | Contains module files on various platforms.| -| ```parm/``` | Contains model configuration and namelist templates.| -| ```doc/``` | Workspace for documentation. | +| ```cmake/``` | Contains compile option files on various platforms. | +| ```modulefiles/``` | Contains module files on various platforms.| # Disclaimer diff --git a/WW3 b/WW3 index 96e3f3a8fa..9c22b13506 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 96e3f3a8fa0389a4b110b0fa23e7a414f6d92038 +Subproject commit 9c22b13506e797940ebab538fe4a3940dd9e3fc0 diff --git a/build.sh b/build.sh index 92a328401e..08e97ef5d9 100755 --- a/build.sh +++ b/build.sh @@ -7,11 +7,11 @@ else readonly UFS_MODEL_DIR=$(cd "$(dirname "$(readlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P) fi -export CMAKE_C_COMPILER=${CMAKE_C_COMPILER:-mpicc} -export CMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER:-mpicxx} -export CMAKE_Fortran_COMPILER=${CMAKE_Fortran_COMPILER:-mpif90} +export CMAKE_C_COMPILER=${CMAKE_C_COMPILER:-${CC:-mpicc}} +export CMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER:-${CXX:-mpicxx}} +export CMAKE_Fortran_COMPILER=${CMAKE_Fortran_COMPILER:-${FC:-mpif90}} -export NETCDF=${NETCDF:?"Please set NETCDF environment variable"} +export NETCDF=${NETCDF:-${NETCDF_ROOT:?"Please set NETCDF/NETCDF_ROOT environment variable"}} export ESMFMKFILE=${ESMFMKFILE:?"Please set ESMFMKFILE environment variable"} BUILD_DIR=${BUILD_DIR:-${UFS_MODEL_DIR}/build} @@ -22,4 +22,4 @@ CMAKE_FLAGS+=" -DNETCDF_DIR=${NETCDF}" cd ${BUILD_DIR} cmake ${UFS_MODEL_DIR} ${CMAKE_FLAGS} -make -j ${BUILD_JOBS:-4} VERBOSE=${BUILD_VERBOSE:-0} +make -j ${BUILD_JOBS:-4} VERBOSE=${BUILD_VERBOSE:-} diff --git a/cmake/FindESMF.cmake b/cmake/FindESMF.cmake deleted file mode 100644 index 72d66ea9da..0000000000 --- a/cmake/FindESMF.cmake +++ /dev/null @@ -1,105 +0,0 @@ -# - Try to find ESMF -# -# Requires setting ESMFMKFILE to the filepath of esmf.mk. If this is NOT set, -# then ESMF_FOUND will always be FALSE. If ESMFMKFILE exists, then ESMF_FOUND=TRUE -# and all ESMF makefile variables will be set in the global scope. Optionally, -# set ESMF_MKGLOBALS to a string list to filter makefile variables. For example, -# to globally scope only ESMF_LIBSDIR and ESMF_APPSDIR variables, use this CMake -# command in CMakeLists.txt: -# -# set(ESMF_MKGLOBALS "LIBSDIR" "APPSDIR") - - -# Add the ESMFMKFILE path to the cache if defined as system env variable -if (DEFINED ENV{ESMFMKFILE} AND NOT DEFINED ESMFMKFILE) - set(ESMFMKFILE $ENV{ESMFMKFILE} CACHE FILEPATH "Path to ESMF mk file") -endif () - -# Found the mk file and ESMF exists on the system -if (EXISTS ${ESMFMKFILE}) - set(ESMF_FOUND TRUE CACHE BOOL "ESMF mk file found" FORCE) - # Did not find the ESMF mk file -else() - set(ESMF_FOUND FALSE CACHE BOOL "ESMF mk file NOT found" FORCE) - # Best to warn users that without the mk file there is no way to find ESMF - if (NOT DEFINED ESMFMKFILE) - message(FATAL_ERROR "ESMFMKFILE not defined. This is the path to esmf.mk file. \ -Without this filepath, ESMF_FOUND will always be FALSE.") - endif () -endif() - -# Only parse the mk file if it is found -if (ESMF_FOUND) - # Read the mk file - file(STRINGS "${ESMFMKFILE}" esmfmkfile_contents) - # Parse each line in the mk file - foreach(str ${esmfmkfile_contents}) - # Only consider uncommented lines - string(REGEX MATCH "^[^#]" def ${str}) - # Line is not commented - if (def) - # Extract the variable name - string(REGEX MATCH "^[^=]+" esmf_varname ${str}) - # Extract the variable's value - string(REGEX MATCH "=.+$" esmf_vardef ${str}) - # Only for variables with a defined value - if (esmf_vardef) - # Get rid of the assignment string - string(SUBSTRING ${esmf_vardef} 1 -1 esmf_vardef) - # Remove whitespace - string(STRIP ${esmf_vardef} esmf_vardef) - # A string or single-valued list - if(NOT DEFINED ESMF_MKGLOBALS) - # Set in global scope - set(${esmf_varname} ${esmf_vardef}) - # Don't display by default in GUI - mark_as_advanced(esmf_varname) - else() # Need to filter global promotion - foreach(m ${ESMF_MKGLOBALS}) - string(FIND ${esmf_varname} ${m} match) - # Found the string - if(NOT ${match} EQUAL -1) - # Promote to global scope - set(${esmf_varname} ${esmf_vardef}) - # Don't display by default in the GUI - mark_as_advanced (esmf_varname) - # No need to search for the current string filter - break() - endif() - endforeach() - endif() - endif() - endif() - endforeach() - - separate_arguments(ESMF_F90COMPILEPATHS NATIVE_COMMAND ${ESMF_F90COMPILEPATHS}) - foreach (ITEM ${ESMF_F90COMPILEPATHS}) - string(REGEX REPLACE "^-I" "" ITEM "${ITEM}") - list(APPEND tmp ${ITEM}) - endforeach() - set(ESMF_F90COMPILEPATHS ${tmp}) - - add_library(esmf UNKNOWN IMPORTED) - # Look for static library, if not found try dynamic library - find_library(esmf_lib NAMES libesmf.a PATHS ${ESMF_LIBSDIR}) - if(esmf_lib MATCHES "esmf_lib-NOTFOUND") - message(STATUS "Static ESMF library not found, searching for dynamic library instead") - find_library(esmf_lib NAMES esmf_fullylinked PATHS ${ESMF_LIBSDIR}) - if(esmf_lib MATCHES "esmf_lib-NOTFOUND") - message(FATAL_ERROR "Neither the dynamic nor the static ESMF library was found") - else() - message(STATUS "Found ESMF library: ${esmf_lib}") - endif() - set(ESMF_INTERFACE_LINK_LIBRARIES "") - else() - # When linking the static library, also need the ESMF linker flags; strip any leading/trailing whitespaces - string(STRIP "${ESMF_F90ESMFLINKRPATHS} ${ESMF_F90ESMFLINKPATHS} ${ESMF_F90LINKPATHS} ${ESMF_F90LINKLIBS} ${ESMF_F90LINKOPTS}" ESMF_INTERFACE_LINK_LIBRARIES) - message(STATUS "Found ESMF library: ${esmf_lib}") - endif() - - set_target_properties(esmf PROPERTIES - IMPORTED_LOCATION ${esmf_lib} - INTERFACE_INCLUDE_DIRECTORIES "${ESMF_F90COMPILEPATHS}" - INTERFACE_LINK_LIBRARIES "${ESMF_INTERFACE_LINK_LIBRARIES}") - -endif() diff --git a/cmake/FindNetCDF.cmake b/cmake/FindNetCDF.cmake deleted file mode 100644 index 64d0395541..0000000000 --- a/cmake/FindNetCDF.cmake +++ /dev/null @@ -1,340 +0,0 @@ -# (C) Copyright 2011- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# In applying this licence, ECMWF does not waive the privileges and immunities -# granted to it by virtue of its status as an intergovernmental organisation nor -# does it submit to any jurisdiction. - -# Try to find NetCDF includes and library. -# Supports static and shared libaries and allows each component to be found in sepearte prefixes. -# -# This module defines -# -# - NetCDF_FOUND - System has NetCDF -# - NetCDF_INCLUDE_DIRS - the NetCDF include directories -# - NetCDF_VERSION - the version of NetCDF -# - NetCDF_CONFIG_EXECUTABLE - the netcdf-config executable if found -# - NetCDF_PARALLEL - Boolean True if NetCDF4 has parallel IO support via hdf5 and/or pnetcdf -# - NetCDF_HAS_PNETCDF - Boolean True if NetCDF4 has pnetcdf support -# -# Deprecated Defines -# - NetCDF_LIBRARIES - [Deprecated] Use NetCDF::NetCDF_ targets instead. -# -# -# Following components are available: -# -# - C - C interface to NetCDF (netcdf) -# - CXX - CXX4 interface to NetCDF (netcdf_c++4) -# - Fortran - Fortran interface to NetCDF (netcdff) -# -# For each component the following are defined: -# -# - NetCDF__FOUND - whether the component is found -# - NetCDF__LIBRARIES - the libraries for the component -# - NetCDF__LIBRARY_SHARED - Boolean is true if libraries for component are shared -# - NetCDF__INCLUDE_DIRS - the include directories for specified component -# - NetCDF::NetCDF_ - target of component to be used with target_link_libraries() -# -# The following paths will be searched in order if set in CMake (first priority) or environment (second priority) -# -# - NetCDF_ROOT - root of NetCDF installation -# - NetCDF_PATH - root of NetCDF installation -# -# The search process begins with locating NetCDF Include headers. If these are in a non-standard location, -# set one of the following CMake or environment variables to point to the location: -# -# - NetCDF_INCLUDE_DIR or NetCDF_${comp}_INCLUDE_DIR -# - NetCDF_INCLUDE_DIRS or NetCDF_${comp}_INCLUDE_DIR -# -# Notes: -# -# - Use "NetCDF::NetCDF_" targets only. NetCDF_LIBRARIES exists for backwards compatibility and should not be used. -# - These targets have all the knowledge of include directories and library search directories, and a single -# call to target_link_libraries will provide all these transitive properties to your target. Normally all that is -# needed to build and link against NetCDF is, e.g.: -# target_link_libraries(my_c_tgt PUBLIC NetCDF::NetCDF_C) -# - "NetCDF" is always the preferred naming for this package, its targets, variables, and environment variables -# - For compatibility, some variables are also set/checked using alternate names NetCDF4, NETCDF, or NETCDF4 -# - Environments relying on these older environment variable names should move to using a "NetCDF_ROOT" environment variable -# - Preferred component capitalization follows the CMake LANGUAGES variables: i.e., C, Fortran, CXX -# - For compatibility, alternate capitalizations are supported but should not be used. -# - If no components are defined, all components will be searched -# - -list( APPEND _possible_components C CXX Fortran ) - -## Include names for each component -set( NetCDF_C_INCLUDE_NAME netcdf.h ) -set( NetCDF_CXX_INCLUDE_NAME netcdf ) -set( NetCDF_Fortran_INCLUDE_NAME netcdf.mod ) - -## Library names for each component -set( NetCDF_C_LIBRARY_NAME netcdf ) -set( NetCDF_CXX_LIBRARY_NAME netcdf_c++4 ) -set( NetCDF_Fortran_LIBRARY_NAME netcdff ) - -## Enumerate search components -foreach( _comp ${_possible_components} ) - string( TOUPPER "${_comp}" _COMP ) - set( _arg_${_COMP} ${_comp} ) - set( _name_${_COMP} ${_comp} ) -endforeach() - -set( _search_components C) -foreach( _comp ${${CMAKE_FIND_PACKAGE_NAME}_FIND_COMPONENTS} ) - string( TOUPPER "${_comp}" _COMP ) - set( _arg_${_COMP} ${_comp} ) - list( APPEND _search_components ${_name_${_COMP}} ) - if( NOT _name_${_COMP} ) - message(SEND_ERROR "Find${CMAKE_FIND_PACKAGE_NAME}: COMPONENT ${_comp} is not a valid component. Valid components: ${_possible_components}" ) - endif() -endforeach() -list( REMOVE_DUPLICATES _search_components ) - -## Search hints for finding include directories and libraries -foreach( _comp IN ITEMS "_" "_C_" "_Fortran_" "_CXX_" ) - foreach( _name IN ITEMS NetCDF4 NetCDF NETCDF4 NETCDF ) - foreach( _var IN ITEMS ROOT PATH ) - list(APPEND _search_hints ${${_name}${_comp}${_var}} $ENV{${_name}${_comp}${_var}} ) - list(APPEND _include_search_hints - ${${_name}${_comp}INCLUDE_DIR} $ENV{${_name}${_comp}INCLUDE_DIR} - ${${_name}${_comp}INCLUDE_DIRS} $ENV{${_name}${_comp}INCLUDE_DIRS} ) - endforeach() - endforeach() -endforeach() -#Old-school HPC module env variable names -foreach( _name IN ITEMS NetCDF4 NetCDF NETCDF4 NETCDF ) - foreach( _comp IN ITEMS "_C" "_Fortran" "_CXX" ) - list(APPEND _search_hints ${${_name}} $ENV{${_name}}) - list(APPEND _search_hints ${${_name}${_comp}} $ENV{${_name}${_comp}}) - endforeach() -endforeach() - -## Find headers for each component -set(NetCDF_INCLUDE_DIRS) -set(_new_search_components) -foreach( _comp IN LISTS _search_components ) - if(NOT ${PROJECT_NAME}_NetCDF_${_comp}_FOUND) - list(APPEND _new_search_components ${_comp}) - endif() - find_file(NetCDF_${_comp}_INCLUDE_FILE - NAMES ${NetCDF_${_comp}_INCLUDE_NAME} - DOC "NetCDF ${_comp} include directory" - HINTS ${_include_search_hints} ${_search_hints} - PATH_SUFFIXES include include/netcdf - ) - mark_as_advanced(NetCDF_${_comp}_INCLUDE_FILE) - message(DEBUG "NetCDF_${_comp}_INCLUDE_FILE: ${NetCDF_${_comp}_INCLUDE_FILE}") - if( NetCDF_${_comp}_INCLUDE_FILE ) - get_filename_component(NetCDF_${_comp}_INCLUDE_FILE ${NetCDF_${_comp}_INCLUDE_FILE} ABSOLUTE) - get_filename_component(NetCDF_${_comp}_INCLUDE_DIR ${NetCDF_${_comp}_INCLUDE_FILE} DIRECTORY) - list(APPEND NetCDF_INCLUDE_DIRS ${NetCDF_${_comp}_INCLUDE_DIR}) - endif() -endforeach() -if(NetCDF_INCLUDE_DIRS) - list(REMOVE_DUPLICATES NetCDF_INCLUDE_DIRS) -endif() -set(NetCDF_INCLUDE_DIRS "${NetCDF_INCLUDE_DIRS}" CACHE STRING "NetCDF Include directory paths" FORCE) - -## Find n*-config executables for search components -foreach( _comp IN LISTS _search_components ) - if( _comp MATCHES "^(C)$" ) - set(_conf "c") - elseif( _comp MATCHES "^(Fortran)$" ) - set(_conf "f") - elseif( _comp MATCHES "^(CXX)$" ) - set(_conf "cxx4") - endif() - find_program( NetCDF_${_comp}_CONFIG_EXECUTABLE - NAMES n${_conf}-config - HINTS ${NetCDF_INCLUDE_DIRS} ${_include_search_hints} ${_search_hints} - PATH_SUFFIXES bin Bin ../bin ../../bin - DOC "NetCDF n${_conf}-config helper" ) - message(DEBUG "NetCDF_${_comp}_CONFIG_EXECUTABLE: ${NetCDF_${_comp}_CONFIG_EXECUTABLE}") -endforeach() - -set(_C_libs_flag --libs) -set(_Fortran_libs_flag --flibs) -set(_CXX_libs_flag --libs) -set(_C_includes_flag --includedir) -set(_Fortran_includes_flag --includedir) -set(_CXX_includes_flag --includedir) -function(netcdf_config exec flag output_var) - set(${output_var} False PARENT_SCOPE) - if( exec ) - execute_process( COMMAND ${exec} ${flag} RESULT_VARIABLE _ret OUTPUT_VARIABLE _val) - if( _ret EQUAL 0 ) - string( STRIP ${_val} _val ) - set( ${output_var} ${_val} PARENT_SCOPE ) - endif() - endif() -endfunction() - -## Find libraries for each component -set( NetCDF_LIBRARIES ) -foreach( _comp IN LISTS _search_components ) - string( TOUPPER "${_comp}" _COMP ) - - find_library( NetCDF_${_comp}_LIBRARY - NAMES ${NetCDF_${_comp}_LIBRARY_NAME} - DOC "NetCDF ${_comp} library" - HINTS ${NetCDF_${_comp}_INCLUDE_DIRS} ${_search_hints} - PATH_SUFFIXES lib64 lib ../lib64 ../lib ../../lib64 ../../lib ) - mark_as_advanced( NetCDF_${_comp}_LIBRARY ) - get_filename_component(NetCDF_${_comp}_LIBRARY ${NetCDF_${_comp}_LIBRARY} ABSOLUTE) - set(NetCDF_${_comp}_LIBRARY ${NetCDF_${_comp}_LIBRARY} CACHE STRING "NetCDF ${_comp} library" FORCE) - message(DEBUG "NetCDF_${_comp}_LIBRARY: ${NetCDF_${_comp}_LIBRARY}") - - if( NetCDF_${_comp}_LIBRARY ) - if( NetCDF_${_comp}_LIBRARY MATCHES ".a$" ) - set( NetCDF_${_comp}_LIBRARY_SHARED FALSE ) - set( _library_type STATIC) - else() - list( APPEND NetCDF_LIBRARIES ${NetCDF_${_comp}_LIBRARY} ) - set( NetCDF_${_comp}_LIBRARY_SHARED TRUE ) - set( _library_type SHARED) - endif() - endif() - - #Use nc-config to set per-component LIBRARIES variable if possible - netcdf_config( ${NetCDF_${_comp}_CONFIG_EXECUTABLE} ${_${_comp}_libs_flag} _val ) - if( _val ) - set( NetCDF_${_comp}_LIBRARIES ${_val} ) - if(NOT NetCDF_${_comp}_LIBRARY_SHARED AND NOT NetCDF_${_comp}_FOUND) #Static targets should use nc_config to get a proper link line with all necessary static targets. - list( APPEND NetCDF_LIBRARIES ${NetCDF_${_comp}_LIBRARIES} ) - endif() - else() - set( NetCDF_${_comp}_LIBRARIES ${NetCDF_${_comp}_LIBRARY} ) - if(NOT NetCDF_${_comp}_LIBRARY_SHARED) - message(SEND_ERROR "Unable to properly find NetCDF. Found static libraries at: ${NetCDF_${_comp}_LIBRARY} but could not run nc-config: ${NetCDF_CONFIG_EXECUTABLE}") - endif() - endif() - - #Use nc-config to set per-component INCLUDE_DIRS variable if possible - netcdf_config( ${NetCDF_${_comp}_CONFIG_EXECUTABLE} ${_${_comp}_includes_flag} _val ) - if( _val ) - string( REPLACE " " ";" _val ${_val} ) - set( NetCDF_${_comp}_INCLUDE_DIRS ${_val} ) - else() - set( NetCDF_${_comp}_INCLUDE_DIRS ${NetCDF_${_comp}_INCLUDE_DIR} ) - endif() - - if( NetCDF_${_comp}_LIBRARIES AND NetCDF_${_comp}_INCLUDE_DIRS ) - set( ${CMAKE_FIND_PACKAGE_NAME}_${_arg_${_COMP}}_FOUND TRUE ) - if (NOT TARGET NetCDF::NetCDF_${_comp}) - add_library(NetCDF::NetCDF_${_comp} ${_library_type} IMPORTED) - set_target_properties(NetCDF::NetCDF_${_comp} PROPERTIES - IMPORTED_LOCATION ${NetCDF_${_comp}_LIBRARY} - INTERFACE_INCLUDE_DIRECTORIES "${NetCDF_${_comp}_INCLUDE_DIRS}" - INTERFACE_LINK_LIBRARIES ${NetCDF_${_comp}_LIBRARIES} ) - if( NOT _comp MATCHES "^(C)$" ) - target_link_libraries(NetCDF::NetCDF_${_comp} INTERFACE NetCDF::NetCDF_C) - endif() - endif() - endif() -endforeach() -if(NetCDF_LIBRARIES AND NetCDF_${_comp}_LIBRARY_SHARED) - list(REMOVE_DUPLICATES NetCDF_LIBRARIES) -endif() -set(NetCDF_LIBRARIES "${NetCDF_LIBRARIES}" CACHE STRING "NetCDF library targets" FORCE) - -## Find version via netcdf-config if possible -if (NetCDF_INCLUDE_DIRS) - if( NetCDF_C_CONFIG_EXECUTABLE ) - netcdf_config( ${NetCDF_C_CONFIG_EXECUTABLE} --version _vers ) - if( _vers ) - string(REGEX REPLACE ".* ((([0-9]+)\\.)+([0-9]+)).*" "\\1" NetCDF_VERSION "${_vers}" ) - endif() - else() - foreach( _dir IN LISTS NetCDF_INCLUDE_DIRS) - if( EXISTS "${_dir}/netcdf_meta.h" ) - file(STRINGS "${_dir}/netcdf_meta.h" _netcdf_version_lines - REGEX "#define[ \t]+NC_VERSION_(MAJOR|MINOR|PATCH|NOTE)") - string(REGEX REPLACE ".*NC_VERSION_MAJOR *\([0-9]*\).*" "\\1" _netcdf_version_major "${_netcdf_version_lines}") - string(REGEX REPLACE ".*NC_VERSION_MINOR *\([0-9]*\).*" "\\1" _netcdf_version_minor "${_netcdf_version_lines}") - string(REGEX REPLACE ".*NC_VERSION_PATCH *\([0-9]*\).*" "\\1" _netcdf_version_patch "${_netcdf_version_lines}") - string(REGEX REPLACE ".*NC_VERSION_NOTE *\"\([^\"]*\)\".*" "\\1" _netcdf_version_note "${_netcdf_version_lines}") - set(NetCDF_VERSION "${_netcdf_version_major}.${_netcdf_version_minor}.${_netcdf_version_patch}${_netcdf_version_note}") - unset(_netcdf_version_major) - unset(_netcdf_version_minor) - unset(_netcdf_version_patch) - unset(_netcdf_version_note) - unset(_netcdf_version_lines) - endif() - endforeach() - endif() -endif () - -## Detect additional package properties -netcdf_config(${NetCDF_C_CONFIG_EXECUTABLE} --has-parallel4 _val) -if( NOT _val MATCHES "^(yes|no)$" ) - netcdf_config(${NetCDF_C_CONFIG_EXECUTABLE} --has-parallel _val) -endif() -if( _val MATCHES "^(yes)$" ) - set(NetCDF_PARALLEL TRUE CACHE STRING "NetCDF has parallel IO capability via pnetcdf or hdf5." FORCE) -else() - set(NetCDF_PARALLEL FALSE CACHE STRING "NetCDF has no parallel IO capability." FORCE) -endif() - -## Finalize find_package -include(FindPackageHandleStandardArgs) - -if(NOT NetCDF_FOUND OR _new_search_components) - find_package_handle_standard_args( ${CMAKE_FIND_PACKAGE_NAME} - REQUIRED_VARS NetCDF_INCLUDE_DIRS NetCDF_LIBRARIES - VERSION_VAR NetCDF_VERSION - HANDLE_COMPONENTS ) -endif() - -foreach( _comp IN LISTS _search_components ) - if( NetCDF_${_comp}_FOUND ) - #Record found components to avoid duplication in NetCDF_LIBRARIES for static libraries - set(NetCDF_${_comp}_FOUND ${NetCDF_${_comp}_FOUND} CACHE BOOL "NetCDF ${_comp} Found" FORCE) - #Set a per-package, per-component found variable to communicate between multiple calls to find_package() - set(${PROJECT_NAME}_NetCDF_${_comp}_FOUND True) - endif() -endforeach() - -if( ${CMAKE_FIND_PACKAGE_NAME}_FOUND AND NOT ${CMAKE_FIND_PACKAGE_NAME}_FIND_QUIETLY AND _new_search_components) - message( STATUS "Find${CMAKE_FIND_PACKAGE_NAME} defines targets:" ) - message( STATUS " - NetCDF_VERSION [${NetCDF_VERSION}]") - message( STATUS " - NetCDF_PARALLEL [${NetCDF_PARALLEL}]") - foreach( _comp IN LISTS _new_search_components ) - string( TOUPPER "${_comp}" _COMP ) - message( STATUS " - NetCDF_${_comp}_CONFIG_EXECUTABLE [${NetCDF_${_comp}_CONFIG_EXECUTABLE}]") - if( ${CMAKE_FIND_PACKAGE_NAME}_${_arg_${_COMP}}_FOUND ) - get_filename_component(_root ${NetCDF_${_comp}_INCLUDE_DIR}/.. ABSOLUTE) - if( NetCDF_${_comp}_LIBRARY_SHARED ) - message( STATUS " - NetCDF::NetCDF_${_comp} [SHARED] [Root: ${_root}] Lib: ${NetCDF_${_comp}_LIBRARY} ") - else() - message( STATUS " - NetCDF::NetCDF_${_comp} [STATIC] [Root: ${_root}] Lib: ${NetCDF_${_comp}_LIBRARY} ") - endif() - endif() - endforeach() -endif() - -foreach( _prefix NetCDF NetCDF4 NETCDF NETCDF4 ${CMAKE_FIND_PACKAGE_NAME} ) - set( ${_prefix}_INCLUDE_DIRS ${NetCDF_INCLUDE_DIRS} ) - set( ${_prefix}_LIBRARIES ${NetCDF_LIBRARIES}) - set( ${_prefix}_VERSION ${NetCDF_VERSION} ) - set( ${_prefix}_FOUND ${${CMAKE_FIND_PACKAGE_NAME}_FOUND} ) - set( ${_prefix}_CONFIG_EXECUTABLE ${NetCDF_CONFIG_EXECUTABLE} ) - set( ${_prefix}_PARALLEL ${NetCDF_PARALLEL} ) - - foreach( _comp ${_search_components} ) - string( TOUPPER "${_comp}" _COMP ) - set( _arg_comp ${_arg_${_COMP}} ) - set( ${_prefix}_${_comp}_FOUND ${${CMAKE_FIND_PACKAGE_NAME}_${_arg_comp}_FOUND} ) - set( ${_prefix}_${_COMP}_FOUND ${${CMAKE_FIND_PACKAGE_NAME}_${_arg_comp}_FOUND} ) - set( ${_prefix}_${_arg_comp}_FOUND ${${CMAKE_FIND_PACKAGE_NAME}_${_arg_comp}_FOUND} ) - - set( ${_prefix}_${_comp}_LIBRARIES ${NetCDF_${_comp}_LIBRARIES} ) - set( ${_prefix}_${_COMP}_LIBRARIES ${NetCDF_${_comp}_LIBRARIES} ) - set( ${_prefix}_${_arg_comp}_LIBRARIES ${NetCDF_${_comp}_LIBRARIES} ) - - set( ${_prefix}_${_comp}_INCLUDE_DIRS ${NetCDF_${_comp}_INCLUDE_DIRS} ) - set( ${_prefix}_${_COMP}_INCLUDE_DIRS ${NetCDF_${_comp}_INCLUDE_DIRS} ) - set( ${_prefix}_${_arg_comp}_INCLUDE_DIRS ${NetCDF_${_comp}_INCLUDE_DIRS} ) - endforeach() -endforeach() diff --git a/cmake/configure_linux.gnu.cmake b/cmake/configure_linux.gnu.cmake new file mode 100644 index 0000000000..ba689958ab --- /dev/null +++ b/cmake/configure_linux.gnu.cmake @@ -0,0 +1,2 @@ +set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) diff --git a/cmake/configure_linux.intel.cmake b/cmake/configure_linux.intel.cmake new file mode 100644 index 0000000000..ba689958ab --- /dev/null +++ b/cmake/configure_linux.intel.cmake @@ -0,0 +1,2 @@ +set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) diff --git a/conf/before_components.mk b/conf/before_components.mk deleted file mode 100644 index 6eee9d190c..0000000000 --- a/conf/before_components.mk +++ /dev/null @@ -1,36 +0,0 @@ -# This file sets the location of configure.nems and modules.nems, and -# adds Make rules to create the tests/*.exe and tests/modules.* files. -# This file is included by the NEMS build system, within -# NEMS/GNUmakefile, just after platform logic is executed, but before -# the appbuilder file (if any) is read. - -# IMPORTANT: This file MUST NOT CONTAIN any logic specific to building -# FV3, CCPP, FMS, or NEMS. Otherwise, coupled FV3 applications will -# break. There should only be logic specific to the NEMSfv3gfs test -# system and NEMSfv3gfs file naming in this makefile fragment. -# -# Logic specific to FV3, CCPP, FMS, or NEMS belong in NEMS/src/incmake. - -# ---------------------------------------------------------------------- -# Decide the conf and modulefile names. - -CHOSEN_MODULE=$(BUILD_TARGET)/fv3 - -CONFIGURE_NEMS_FILE=configure.fv3.$(BUILD_TARGET) - -# ---------------------------------------------------------------------- -# Copy the executable and modules.nems files into the tests/ directory -# if a TEST_BUILD_NAME is specified. - -ifneq ($(TEST_BUILD_NAME),) -$(info Will copy modules.nems and NEMS.x as $(TEST_BUILD_NAME) under tests/) -$(ROOTDIR)/tests/$(TEST_BUILD_NAME).exe: $(NEMS_EXE) - set -xe ; cp "$<" "$@" - -$(ROOTDIR)/tests/modules.$(TEST_BUILD_NAME): $(NEMSDIR)/src/conf/modules.nems - set -xe ; cp "$<" "$@" - -configure: $(ROOTDIR)/tests/modules.$(TEST_BUILD_NAME) ; -build: $(ROOTDIR)/tests/$(TEST_BUILD_NAME).exe ; -endif - diff --git a/conf/configure.fv3.cheyenne.gnu b/conf/configure.fv3.cheyenne.gnu deleted file mode 100644 index ee0c061244..0000000000 --- a/conf/configure.fv3.cheyenne.gnu +++ /dev/null @@ -1,203 +0,0 @@ -## NEMS configuration file -## -## Platform: Cheyenne -## Compiler: GNU with SGI MPT - -SHELL=/bin/sh - -################################################################################ -## Include the common configuration parts - -ifdef InNemsMakefile -include $(TOP)/conf/configure.nems.NUOPC -endif - -###################### PHYS_MODE ##### CHEM_MODE ############################### -# -# -# - -PHYS_MODE =compile -CHEM_MODE =compile -ifeq ($(PHYS_MODE),compile) - PHYS_LIB = $(TOP)/atmos/gsm/gsmphys - PHYS_INC = $(TOP)/atmos/gsm/gsmphys - PHYS_DIR = $(TOP)/atmos/gsm/gsmphys -endif -ifeq ($(CHEM_MODE),compile) - CHEM_LIB = $(TOP)/chem - CHEM_INC = $(TOP)/chem/gocart/src/Config/ - CHEM_DIR = $(TOP)/chem - CHEM_MOD = $(TOP)/chem/gocart/${ARCH}/include - ESMADIR = chem/gocart -endif - -############ -# commands # -############ -SFC = gfortran -SCC = gcc -CCOMP = gcc -DM_FC = mpif90 -f90=$(SFC) -DM_CC = mpicc -cc=$(SCC) -DMPI2_SUPPORT -FC = $(DM_FC) -CC = $(DM_CC) -DFSEEKO64_OK -LD = $(FC) - -######### -# flags # -######### -# default is 64-bit OpenMP non-hydrostatic build using AVX2 -DEBUG = -REPRO = -VERBOSE = -OPENMP = Y -AVX2 = Y -HYDRO = N -CCPP = N -SION = N -QUAD_PRECISION = Y -MULTI_GASES = N - -include $(ESMFMKFILE) -ESMF_INC = $(ESMF_F90COMPILEPATHS) - -NEMSIOINC = -I$(NEMSIO_INC) -NCEPLIBS = $(POST_LIB) $(NEMSIO_LIB) $(G2_LIB4) $(G2TMPL_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) $(CRTM_LIB) -lpng -ljasper -lz -# $(PNG_LIB) $(JASPER_LIB) $(Z_LIB) - -############################################## -# Need to use at least GNU Make version 3.81 # -############################################## -need := 3.81 -ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) $(need)))) -ifneq ($(need),$(ok)) -$(error Need at least make version $(need). Load module gmake/3.81) -endif - -NETCDF_ROOT = $(NETCDF) -INCLUDE = -I$(NETCDF_ROOT)/include -NETCDF_INC = -I$(NETCDF_ROOT)/include -ifneq ($(findstring netcdf/4,$(LOADEDMODULES)),) - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf -else - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf -endif - -FPPFLAGS := -cpp -Wp,-w $(INCLUDE) -CFLAGS := $(INCLUDE) - -FFLAGS := $(INCLUDE) -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace - -CPPDEFS += -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML - -ifeq ($(HYDRO),Y) -CPPDEFS += -else -CPPDEFS += -DMOIST_CAPPA -DUSE_COND -endif - -ifeq ($(32BIT),Y) -CPPDEFS += -DOVERLOAD_R4 -DOVERLOAD_R8 -FFLAGS += -else -FFLAGS += -fdefault-real-8 -fdefault-double-8 -endif - -ifeq ($(AVX2),Y) -FFLAGS += -CFLAGS += -else -FFLAGS += -CFLAGS += -endif - -ifeq ($(MULTI_GASES),Y) -CPPDEFS += -DMULTI_GASES -endif - -ifeq ($(QUAD_PRECISION),Y) -CPPDEFS += -DENABLE_QUAD_PRECISION -endif - -FFLAGS_OPT = -O2 -fno-range-check -FFLAGS_REPRO = -O2 -g -fbacktrace -fno-range-check -FFLAGS_DEBUG = -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -Wall - -TRANSCENDENTALS := -FFLAGS_OPENMP = -fopenmp -FFLAGS_VERBOSE = -v -V - -CFLAGS += -D__IFC - -CFLAGS_OPT = -O2 -CFLAGS_REPRO = -O2 -CFLAGS_OPENMP = -fopenmp -CFLAGS_DEBUG = -O0 -g - -# Optional Testing compile flags. Mutually exclusive from DEBUG, REPRO, and OPT -# *_TEST will match the production if no new option(s) is(are) to be tested. -FFLAGS_TEST = -O3 -CFLAGS_TEST = -O2 - -LDFLAGS := -LDFLAGS_OPENMP := -fopenmp -LDFLAGS_VERBOSE := -Wl,-V,--verbose,-cref,-M - -# start with blank LIBS -LIBS := - -ifeq ($(REPRO),Y) -CPPDEFS += -DREPRO -CFLAGS += $(CFLAGS_REPRO) -FFLAGS += $(FFLAGS_REPRO) -FAST := -else ifeq ($(DEBUG),Y) -CPPDEFS += -DDEBUG -CFLAGS += $(CFLAGS_DEBUG) -FFLAGS += $(FFLAGS_DEBUG) -FAST := -else ifeq ($(TEST),Y) -CFLAGS += $(CFLAGS_TEST) -FFLAGS += $(FFLAGS_TEST) -FAST := -else -CFLAGS += $(CFLAGS_OPT) -FFLAGS += $(FFLAGS_OPT) -FAST := $(TRANSCENDENTALS) -endif - -ifeq ($(OPENMP),Y) -CPPDEFS += -DOPENMP -CFLAGS += $(CFLAGS_OPENMP) -FFLAGS += $(FFLAGS_OPENMP) -LDFLAGS += $(LDFLAGS_OPENMP) -endif - -ifeq ($(VERBOSE),Y) -CFLAGS += $(CFLAGS_VERBOSE) -FFLAGS += $(FFLAGS_VERBOSE) -LDFLAGS += $(LDFLAGS_VERBOSE) -endif - -ifeq ($(CCPP),Y) -CPPDEFS += -DCCPP -CFLAGS += -I$(PATH_CCPP)/include -FFLAGS += -I$(PATH_CCPP)/include -LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -endif - -ifeq ($(SION),Y) -CPPDEFS += -DSION -CFLAGS += $(SIONLIB_INC) -FFLAGS += $(SIONLIB_INC) -endif - -LDFLAGS += $(LIBS) - -ifdef InNemsMakefile -FFLAGS += $(ESMF_INC) -CPPFLAGS += -cpp -traditional -EXTLIBS = $(NCEPLIBS) $(ESMF_LIB) $(LDFLAGS) $(NETCDF_LIB) $(SIONLIB_LIB) -endif diff --git a/conf/configure.fv3.cheyenne.intel b/conf/configure.fv3.cheyenne.intel deleted file mode 100644 index dc1442e32d..0000000000 --- a/conf/configure.fv3.cheyenne.intel +++ /dev/null @@ -1,212 +0,0 @@ -## NEMS configuration file -## -## Platform: Cheyenne -## Compiler: Intel with SGI MPT - -SHELL=/bin/sh - -################################################################################ -## Include the common configuration parts - -ifdef InNemsMakefile -include $(TOP)/conf/configure.nems.NUOPC -endif - -###################### PHYS_MODE ##### CHEM_MODE ############################### -# -# -# - -PHYS_MODE =compile -CHEM_MODE =compile -ifeq ($(PHYS_MODE),compile) - PHYS_LIB = $(TOP)/atmos/gsm/gsmphys - PHYS_INC = $(TOP)/atmos/gsm/gsmphys - PHYS_DIR = $(TOP)/atmos/gsm/gsmphys -endif -ifeq ($(CHEM_MODE),compile) - CHEM_LIB = $(TOP)/chem - CHEM_INC = $(TOP)/chem/gocart/src/Config/ - CHEM_DIR = $(TOP)/chem - CHEM_MOD = $(TOP)/chem/gocart/${ARCH}/include - ESMADIR = chem/gocart -endif - -############ -# commands # -############ -SFC = ifort -SCC = icc -CCOMP = icc -DM_FC = mpif90 -f90=$(SFC) -DM_CC = mpicc -cc=$(SCC) -DMPI2_SUPPORT -FC = $(DM_FC) -CC = $(DM_CC) -DFSEEKO64_OK -LD = $(FC) -mkl=sequential - -######### -# flags # -######### -# default is 64-bit OpenMP non-hydrostatic build using AVX2 -DEBUG = -REPRO = -VERBOSE = -OPENMP = Y -AVX2 = Y -HYDRO = N -CCPP = N -SION = N -QUAD_PRECISION = Y -MULTI_GASES = N - -include $(ESMFMKFILE) -ESMF_INC = $(ESMF_F90COMPILEPATHS) - -NEMSIOINC = -I$(NEMSIO_INC) -NCEPLIBS = $(POST_LIB) $(NEMSIO_LIB) $(G2_LIB4) $(G2TMPL_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) $(CRTM_LIB) -lpng -ljasper -lz -# $(PNG_LIB) $(JASPER_LIB) $(Z_LIB) - -############################################## -# Need to use at least GNU Make version 3.81 # -############################################## -need := 3.81 -ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) $(need)))) -ifneq ($(need),$(ok)) -$(error Need at least make version $(need). Load module gmake/3.81) -endif - -NETCDF_ROOT = $(NETCDF) -INCLUDE = -I$(NETCDF_ROOT)/include -NETCDF_INC = -I$(NETCDF_ROOT)/include -ifneq ($(findstring netcdf/4,$(LOADEDMODULES)),) - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf -else - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf -endif - -FPPFLAGS := -fpp -Wp,-w $(INCLUDE) -CFLAGS := $(INCLUDE) - -FFLAGS := $(INCLUDE) -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte - -CPPDEFS += -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML - -ifeq ($(HYDRO),Y) -CPPDEFS += -else -CPPDEFS += -DMOIST_CAPPA -DUSE_COND -endif - -ifeq ($(32BIT),Y) -CPPDEFS += -DOVERLOAD_R4 -DOVERLOAD_R8 -FFLAGS += -i4 -real-size 32 -else -ifeq ($(REPRO),Y) -FFLAGS += -i4 -real-size 64 -else -FFLAGS += -i4 -real-size 64 -no-prec-div -no-prec-sqrt -endif -endif - -ifeq ($(REPRO),Y) -FFLAGS += -qno-opt-dynamic-align -CFLAGS += -qno-opt-dynamic-align -else -ifeq ($(AVX2),Y) -FFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align -CFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align -else -FFLAGS += -xHOST -qno-opt-dynamic-align -CFLAGS += -xHOST -qno-opt-dynamic-align -endif -endif - -ifeq ($(MULTI_GASES),Y) -CPPDEFS += -DMULTI_GASES -endif - -ifeq ($(QUAD_PRECISION),Y) -CPPDEFS += -DENABLE_QUAD_PRECISION -endif - -FFLAGS_OPT = -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -FFLAGS_REPRO = -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -FFLAGS_DEBUG = -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -link_mpi=dbg - -TRANSCENDENTALS := -fast-transcendentals -FFLAGS_OPENMP = -qopenmp -FFLAGS_VERBOSE = -v -V -what - -CFLAGS += -D__IFC -sox -fp-model source - -CFLAGS_OPT = -O2 -debug minimal -CFLAGS_REPRO = -O2 -debug minimal -CFLAGS_OPENMP = -qopenmp -CFLAGS_DEBUG = -O0 -g -ftrapuv -traceback - -# Optional Testing compile flags. Mutually exclusive from DEBUG, REPRO, and OPT -# *_TEST will match the production if no new option(s) is(are) to be tested. -FFLAGS_TEST = -O3 -debug minimal -fp-model source -qoverride-limits -CFLAGS_TEST = -O2 - -LDFLAGS := -LDFLAGS_OPENMP := -qopenmp -LDFLAGS_VERBOSE := -Wl,-V,--verbose,-cref,-M - -# start with blank LIBS -LIBS := - -ifeq ($(REPRO),Y) -CPPDEFS += -DREPRO -CFLAGS += $(CFLAGS_REPRO) -FFLAGS += $(FFLAGS_REPRO) -FAST := -else ifeq ($(DEBUG),Y) -CPPDEFS += -DDEBUG -CFLAGS += $(CFLAGS_DEBUG) -FFLAGS += $(FFLAGS_DEBUG) -FAST := -else ifeq ($(TEST),Y) -CFLAGS += $(CFLAGS_TEST) -FFLAGS += $(FFLAGS_TEST) -FAST := -else -CFLAGS += $(CFLAGS_OPT) -FFLAGS += $(FFLAGS_OPT) -FAST := $(TRANSCENDENTALS) -endif - -ifeq ($(OPENMP),Y) -CPPDEFS += -DOPENMP -CFLAGS += $(CFLAGS_OPENMP) -FFLAGS += $(FFLAGS_OPENMP) -LDFLAGS += $(LDFLAGS_OPENMP) -endif - -ifeq ($(VERBOSE),Y) -CFLAGS += $(CFLAGS_VERBOSE) -FFLAGS += $(FFLAGS_VERBOSE) -LDFLAGS += $(LDFLAGS_VERBOSE) -endif - -ifeq ($(CCPP),Y) -CPPDEFS += -DCCPP -CFLAGS += -I$(PATH_CCPP)/include -FFLAGS += -I$(PATH_CCPP)/include -LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -endif - -ifeq ($(SION),Y) -CPPDEFS += -DSION -CFLAGS += $(SIONLIB_INC) -FFLAGS += $(SIONLIB_INC) -endif - -LDFLAGS += $(LIBS) - -ifdef InNemsMakefile -FFLAGS += $(ESMF_INC) -CPPFLAGS += -traditional -EXTLIBS = $(NCEPLIBS) $(ESMF_LIB) $(LDFLAGS) $(NETCDF_LIB) $(SIONLIB_LIB) -endif diff --git a/conf/configure.fv3.gaea.intel b/conf/configure.fv3.gaea.intel deleted file mode 100644 index 16e57ef053..0000000000 --- a/conf/configure.fv3.gaea.intel +++ /dev/null @@ -1,180 +0,0 @@ -## NEMS configuration file -## -## Platform: Gaea -## Compiler: Intel with CrayMPICH - -SHELL=/bin/sh - -################################################################################ -## Include the common configuration parts - -ifdef InNemsMakefile -include $(TOP)/conf/configure.nems.NUOPC -endif - -############ -# commands # -############ -FC = ftn -CC = cc -CXX = CC -LD = ftn - -######### -# flags # -######### -# default is 64-bit OpenMP non-hydrostatic build using AVX2 -DEBUG = -REPRO = -VERBOSE = -OPENMP = Y -AVX2 = Y -HYDRO = N -CCPP = N -QUAD_PRECISION = Y -MULTI_GASES = N - -include $(ESMFMKFILE) -ESMF_INC = $(ESMF_F90COMPILEPATHS) - -NEMSIOINC = -I$(NEMSIO_INC) -NCEPLIBS = $(NEMSIO_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) - -############################################## -# Need to use at least GNU Make version 3.81 # -############################################## -need := 3.81 -ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) $(need)))) -ifneq ($(need),$(ok)) -$(error Need at least make version $(need). Load module gmake/3.81) -endif - -NETCDF_ROOT = $(NETCDF_DIR) -INCLUDE = -I$(NETCDF_ROOT)/include - -FPPFLAGS := -fpp -Wp,-w $(INCLUDE) -CFLAGS := $(INCLUDE) - -FFLAGS := $(INCLUDE) -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte - -CPPDEFS += -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST - -ifeq ($(HYDRO),Y) -CPPDEFS += -else -CPPDEFS += -DMOIST_CAPPA -DUSE_COND -endif - -ifeq ($(32BIT),Y) -CPPDEFS += -DOVERLOAD_R4 -DOVERLOAD_R8 -FFLAGS += -i4 -real-size 32 -else -ifeq ($(REPRO),Y) -FFLAGS += -i4 -real-size 64 -else -FFLAGS += -i4 -real-size 64 -no-prec-div -no-prec-sqrt -endif -endif - -ifeq ($(REPRO),Y) -FFLAGS += -qno-opt-dynamic-align -CFLAGS += -qno-opt-dynamic-align -else -ifeq ($(AVX2),Y) -FFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align -CFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align -else -FFLAGS += -qno-opt-dynamic-align -CFLAGS += -qno-opt-dynamic-align -endif -endif - -ifeq ($(MULTI_GASES),Y) -CPPDEFS += -DMULTI_GASES -endif - -ifeq ($(QUAD_PRECISION),Y) -CPPDEFS += -DENABLE_QUAD_PRECISION -endif - -FFLAGS_OPT = -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -FFLAGS_REPRO = -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -FFLAGS_DEBUG = -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv - -TRANSCENDENTALS := -fast-transcendentals -FFLAGS_OPENMP = -qopenmp -FFLAGS_VERBOSE = -v -V -what - -CFLAGS += -D__IFC -sox -fp-model source - -CFLAGS_OPT = -O2 -debug minimal -CFLAGS_REPRO = -O2 -debug minimal -CFLAGS_OPENMP = -qopenmp -CFLAGS_DEBUG = -O0 -g -ftrapuv -traceback - -# Optional Testing compile flags. Mutually exclusive from DEBUG, REPRO, and OPT -# *_TEST will match the production if no new option(s) is(are) to be tested. -FFLAGS_TEST = -O3 -debug minimal -fp-model source -qoverride-limits -CFLAGS_TEST = -O2 - -LDFLAGS := -LDFLAGS_OPENMP := -qopenmp -LDFLAGS_VERBOSE := -Wl,-V,--verbose,-cref,-M - -# start with blank LIBS -LIBS := - -ifeq ($(REPRO),Y) -CPPDEFS += -DREPRO -CFLAGS += $(CFLAGS_REPRO) -FFLAGS += $(FFLAGS_REPRO) -FAST := -else ifeq ($(DEBUG),Y) -CPPDEFS += -DDEBUG -CFLAGS += $(CFLAGS_DEBUG) -FFLAGS += $(FFLAGS_DEBUG) -FAST := -else ifeq ($(TEST),Y) -CFLAGS += $(CFLAGS_TEST) -FFLAGS += $(FFLAGS_TEST) -FAST := -else -CFLAGS += $(CFLAGS_OPT) -FFLAGS += $(FFLAGS_OPT) -FAST := $(TRANSCENDENTALS) -endif - -ifeq ($(OPENMP),Y) -CPPDEFS += -DOPENMP -CFLAGS += $(CFLAGS_OPENMP) -FFLAGS += $(FFLAGS_OPENMP) -LDFLAGS += $(LDFLAGS_OPENMP) -endif - -ifeq ($(VERBOSE),Y) -CFLAGS += $(CFLAGS_VERBOSE) -FFLAGS += $(FFLAGS_VERBOSE) -LDFLAGS += $(LDFLAGS_VERBOSE) -endif - -ifeq ($(CCPP),Y) -CPPDEFS += -DCCPP -CFLAGS += -I$(PATH_CCPP)/include -FFLAGS += -I$(PATH_CCPP)/include -LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -endif - -ifneq ($(findstring netcdf/4,$(LOADEDMODULES)),) - LIBS += -lnetcdff -lnetcdf -L$(HDF5)/lib -lhdf5_hl -lhdf5 -lz -else - LIBS += -lnetcdf -endif - -LDFLAGS += $(LIBS) - -ifdef InNemsMakefile -FFLAGS += $(ESMF_INC) -CPPFLAGS += -traditional -EXTLIBS = $(NCEPLIBS) $(ESMF_LIB) $(LDFLAGS) -endif diff --git a/conf/configure.fv3.hera.gnu b/conf/configure.fv3.hera.gnu deleted file mode 100644 index 54a499b261..0000000000 --- a/conf/configure.fv3.hera.gnu +++ /dev/null @@ -1,171 +0,0 @@ -## NEMS configuration file -## -## Platform: Hera -## Compiler: GNU with MPICH - -SHELL=/bin/sh - -################################################################################ -## Include the common configuration parts - -ifdef InNemsMakefile -include $(TOP)/conf/configure.nems.NUOPC -endif - -############ -# commands # -############ -FC = mpif90 -CC = mpicc -CXX = mpicxx -LD = $(FC) - -######### -# flags # -######### -# default is 64-bit OpenMP non-hydrostatic build using AVX2 -DEBUG = -REPRO = -VERBOSE = -OPENMP = Y -AVX2 = Y -HYDRO = N -CCPP = N -QUAD_PRECISION = Y -MULTI_GASES = N - -include $(ESMFMKFILE) -ESMF_INC = $(ESMF_F90COMPILEPATHS) - -NEMSIOINC = -I$(NEMSIO_INC) -NCEPLIBS = $(NEMSIO_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) - -############################################## -# Need to use at least GNU Make version 3.81 # -############################################## -need := 3.81 -ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) $(need)))) -ifneq ($(need),$(ok)) -$(error Need at least make version $(need). Load module gmake/3.81) -endif - -NETCDF_ROOT = $(NETCDF) -INCLUDE = -I$(NETCDF_ROOT)/include -NETCDF_INC = -I$(NETCDF_ROOT)/include -ifneq ($(findstring netcdf/4,$(LOADEDMODULES)),) - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf -else - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf -endif - -FPPFLAGS := -cpp -Wp,-w $(INCLUDE) -CFLAGS := $(INCLUDE) - -FFLAGS := $(INCLUDE) -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace - -CPPDEFS += -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML - -ifeq ($(HYDRO),Y) -CPPDEFS += -else -CPPDEFS += -DMOIST_CAPPA -DUSE_COND -endif - -ifeq ($(32BIT),Y) -CPPDEFS += -DOVERLOAD_R4 -DOVERLOAD_R8 -FFLAGS += -else -FFLAGS += -fdefault-real-8 -fdefault-double-8 -endif - -ifeq ($(AVX2),Y) -FFLAGS += -CFLAGS += -else -FFLAGS += -CFLAGS += -endif - -ifeq ($(MULTI_GASES),Y) -CPPDEFS += -DMULTI_GASES -endif - -ifeq ($(QUAD_PRECISION),Y) -CPPDEFS += -DENABLE_QUAD_PRECISION -endif - -FFLAGS_OPT = -O2 -fno-range-check -FFLAGS_REPRO = -O2 -g -fbacktrace -fno-range-check -FFLAGS_DEBUG = -g -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -Wall - -TRANSCENDENTALS := -FFLAGS_OPENMP = -fopenmp -FFLAGS_VERBOSE = -v -V - -CFLAGS += -D__IFC - -CFLAGS_OPT = -O2 -CFLAGS_REPRO = -O2 -CFLAGS_OPENMP = -fopenmp -CFLAGS_DEBUG = -O0 -g - -# Optional Testing compile flags. Mutually exclusive from DEBUG, REPRO, and OPT -# *_TEST will match the production if no new option(s) is(are) to be tested. -FFLAGS_TEST = -O3 -CFLAGS_TEST = -O2 - -LDFLAGS := -LDFLAGS_OPENMP := -fopenmp -LDFLAGS_VERBOSE := -Wl,-V,--verbose,-cref,-M - -# start with blank LIBS -LIBS := - -ifeq ($(REPRO),Y) -CPPDEFS += -DREPRO -CFLAGS += $(CFLAGS_REPRO) -FFLAGS += $(FFLAGS_REPRO) -FAST := -else ifeq ($(DEBUG),Y) -CPPDEFS += -DDEBUG -CFLAGS += $(CFLAGS_DEBUG) -FFLAGS += $(FFLAGS_DEBUG) -FAST := -else ifeq ($(TEST),Y) -CFLAGS += $(CFLAGS_TEST) -FFLAGS += $(FFLAGS_TEST) -FAST := -else -CFLAGS += $(CFLAGS_OPT) -FFLAGS += $(FFLAGS_OPT) -FAST := $(TRANSCENDENTALS) -endif - -ifeq ($(OPENMP),Y) -CPPDEFS += -DOPENMP -CFLAGS += $(CFLAGS_OPENMP) -FFLAGS += $(FFLAGS_OPENMP) -LDFLAGS += $(LDFLAGS_OPENMP) -endif - -ifeq ($(VERBOSE),Y) -CFLAGS += $(CFLAGS_VERBOSE) -FFLAGS += $(FFLAGS_VERBOSE) -LDFLAGS += $(LDFLAGS_VERBOSE) -endif - -ifeq ($(CCPP),Y) -CPPDEFS += -DCCPP -CFLAGS += -I$(PATH_CCPP)/include -FFLAGS += -I$(PATH_CCPP)/include -LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -endif - -LDFLAGS += $(LIBS) - -ifdef InNemsMakefile -FFLAGS += $(ESMF_INC) -CPPFLAGS += -cpp -traditional -EXTLIBS = $(NCEPLIBS) $(ESMF_LIB) $(LDFLAGS) $(NETCDF_LIB) -endif diff --git a/conf/configure.fv3.hera.intel b/conf/configure.fv3.hera.intel deleted file mode 100644 index 2881a69ea8..0000000000 --- a/conf/configure.fv3.hera.intel +++ /dev/null @@ -1,185 +0,0 @@ -## NEMS configuration file -## -## Platform: Hera -## Compiler: Intel with IntelMPI - -SHELL=/bin/sh - -################################################################################ -## Include the common configuration parts - -ifdef InNemsMakefile -include $(TOP)/conf/configure.nems.NUOPC -endif - -############ -# commands # -############ -FC = mpiifort -CC = mpiicc -CXX = mpiicpc -LD = mpiifort -mkl=sequential - -######### -# flags # -######### -# default is 64-bit OpenMP non-hydrostatic build using AVX2 -DEBUG = -REPRO = -VERBOSE = -OPENMP = Y -AVX2 = Y -HYDRO = N -CCPP = N -QUAD_PRECISION = Y -MULTI_GASES = N - -include $(ESMFMKFILE) -ESMF_INC = $(ESMF_F90COMPILEPATHS) - -NEMSIOINC = -I$(NEMSIO_INC) -NCEPLIBS = $(POST_LIB) $(NEMSIO_LIB) $(G2_LIB4) $(G2TMPL_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) $(CRTM_LIB) -lpng -ljasper -lz -# $(PNG_LIB) $(JASPER_LIB) $(Z_LIB) - -############################################## -# Need to use at least GNU Make version 3.81 # -############################################## -need := 3.81 -ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) $(need)))) -ifneq ($(need),$(ok)) -$(error Need at least make version $(need). Load module gmake/3.81) -endif - -NETCDF_ROOT = $(NETCDF) -INCLUDE = -I$(NETCDF_ROOT)/include -NETCDF_INC = -I$(NETCDF_ROOT)/include -ifneq ($(findstring netcdf/4,$(LOADEDMODULES)),) - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf -else - NETCDF_LIB = -L$(NETCDF)/lib -lnetcdff -lnetcdf -endif - -FPPFLAGS := -fpp -Wp,-w $(INCLUDE) -CFLAGS := $(INCLUDE) - -FFLAGS := $(INCLUDE) -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte - -CPPDEFS += -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML - -ifeq ($(HYDRO),Y) -CPPDEFS += -else -CPPDEFS += -DMOIST_CAPPA -DUSE_COND -endif - -ifeq ($(32BIT),Y) -CPPDEFS += -DOVERLOAD_R4 -DOVERLOAD_R8 -FFLAGS += -i4 -real-size 32 -else -ifeq ($(REPRO),Y) -FFLAGS += -i4 -real-size 64 -else -FFLAGS += -i4 -real-size 64 -no-prec-div -no-prec-sqrt -endif -endif - -ifeq ($(REPRO),Y) -FFLAGS += -qno-opt-dynamic-align -CFLAGS += -qno-opt-dynamic-align -else -ifeq ($(AVX2),Y) -# Don't use the AVX512 flags yet on hera -#FFLAGS += -axSSE4.2,AVX,CORE-AVX2,CORE-AVX512 -qno-opt-dynamic-align -#CFLAGS += -axSSE4.2,AVX,CORE-AVX2,CORE-AVX512 -qno-opt-dynamic-align -FFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align -CFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align -else -FFLAGS += -qno-opt-dynamic-align -CFLAGS += -qno-opt-dynamic-align -endif -endif - -ifeq ($(MULTI_GASES),Y) -CPPDEFS += -DMULTI_GASES -endif - -ifeq ($(QUAD_PRECISION),Y) -CPPDEFS += -DENABLE_QUAD_PRECISION -endif - - -FFLAGS_OPT = -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -FFLAGS_REPRO = -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -FFLAGS_DEBUG = -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -link_mpi=dbg - -TRANSCENDENTALS := -fast-transcendentals -FFLAGS_OPENMP = -qopenmp -FFLAGS_VERBOSE = -v -V -what - -CFLAGS += -D__IFC -sox -fp-model source - -CFLAGS_OPT = -O2 -debug minimal -CFLAGS_REPRO = -O2 -debug minimal -CFLAGS_OPENMP = -qopenmp -CFLAGS_DEBUG = -O0 -g -ftrapuv -traceback - -# Optional Testing compile flags. Mutually exclusive from DEBUG, REPRO, and OPT -# *_TEST will match the production if no new option(s) is(are) to be tested. -FFLAGS_TEST = -O3 -debug minimal -fp-model source -qoverride-limits -CFLAGS_TEST = -O2 - -LDFLAGS := -LDFLAGS_OPENMP := -qopenmp -LDFLAGS_VERBOSE := -Wl,-V,--verbose,-cref,-M - -# start with blank LIBS -LIBS := - -ifeq ($(REPRO),Y) -CPPDEFS += -DREPRO -CFLAGS += $(CFLAGS_REPRO) -FFLAGS += $(FFLAGS_REPRO) -FAST := -else ifeq ($(DEBUG),Y) -CPPDEFS += -DDEBUG -CFLAGS += $(CFLAGS_DEBUG) -FFLAGS += $(FFLAGS_DEBUG) -FAST := -else ifeq ($(TEST),Y) -CFLAGS += $(CFLAGS_TEST) -FFLAGS += $(FFLAGS_TEST) -FAST := -else -CFLAGS += $(CFLAGS_OPT) -FFLAGS += $(FFLAGS_OPT) -FAST := $(TRANSCENDENTALS) -endif - -ifeq ($(OPENMP),Y) -CPPDEFS += -DOPENMP -CFLAGS += $(CFLAGS_OPENMP) -FFLAGS += $(FFLAGS_OPENMP) -LDFLAGS += $(LDFLAGS_OPENMP) -endif - -ifeq ($(VERBOSE),Y) -CFLAGS += $(CFLAGS_VERBOSE) -FFLAGS += $(FFLAGS_VERBOSE) -LDFLAGS += $(LDFLAGS_VERBOSE) -endif - -ifeq ($(CCPP),Y) -CPPDEFS += -DCCPP -CFLAGS += -I$(PATH_CCPP)/include -FFLAGS += -I$(PATH_CCPP)/include -LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -endif - -LDFLAGS += $(LIBS) - -ifdef InNemsMakefile -FFLAGS += $(ESMF_INC) -CPPFLAGS += -traditional -EXTLIBS = $(NCEPLIBS) $(ESMF_F90LINKPATHS) $(ESMF_LIB) $(LDFLAGS) $(NETCDF_LIB) -endif diff --git a/conf/configure.fv3.jet.intel b/conf/configure.fv3.jet.intel deleted file mode 100644 index bf5ed5f6d2..0000000000 --- a/conf/configure.fv3.jet.intel +++ /dev/null @@ -1,199 +0,0 @@ -## NEMS configuration file -## -## Platform: Jet -## Compiler: Intel with IntelMPI - -SHELL=/bin/sh - -################################################################################ -## Include the common configuration parts - -ifdef InNemsMakefile -include $(TOP)/conf/configure.nems.NUOPC -endif - -###################### PHYS_MODE ##### CHEM_MODE ############################### -# -# -# - -PHYS_MODE =compile -CHEM_MODE =compile -ifeq ($(PHYS_MODE),compile) - PHYS_LIB = $(TOP)/atmos/gsm/gsmphys - PHYS_INC = $(TOP)/atmos/gsm/gsmphys - PHYS_DIR = $(TOP)/atmos/gsm/gsmphys -endif -ifeq ($(CHEM_MODE),compile) - CHEM_LIB = $(TOP)/chem - CHEM_INC = $(TOP)/chem/gocart/src/Config/ - CHEM_DIR = $(TOP)/chem - CHEM_MOD = $(TOP)/chem/gocart/${ARCH}/include - ESMADIR = chem/gocart -endif - -############ -# commands # -############ -FC = mpiifort -CC = mpiicc -CXX = mpiicpc -LD = mpiifort -mkl=sequential - -######### -# flags # -######### -# default is 64-bit OpenMP non-hydrostatic build using AVX2 -DEBUG = -REPRO = -VERBOSE = -OPENMP = Y -AVX2 = Y -HYDRO = N -CCPP = N -QUAD_PRECISION = Y -MULTI_GASES = N - -include $(ESMFMKFILE) -ESMF_INC = $(ESMF_F90COMPILEPATHS) - -NEMSIOINC = -I$(NEMSIO_INC) -NCEPLIBS = $(NEMSIO_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) - -############################################## -# Need to use at least GNU Make version 3.81 # -############################################## -need := 3.81 -ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) $(need)))) -ifneq ($(need),$(ok)) -$(error Need at least make version $(need). Load module gmake/3.81) -endif - -NETCDF_ROOT = $(NETCDF) -INCLUDE = -I$(NETCDF_ROOT)/include -NETCDF_INC = -I$(NETCDF_ROOT)/include -ifneq ($(findstring netcdf/4,$(LOADEDMODULES)),) - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf -else - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf -endif - -FPPFLAGS := -fpp -Wp,-w $(INCLUDE) -CFLAGS := $(INCLUDE) - -FFLAGS := $(INCLUDE) -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte - -CPPDEFS += -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST - -ifeq ($(HYDRO),Y) -CPPDEFS += -else -CPPDEFS += -DMOIST_CAPPA -DUSE_COND -endif - -ifeq ($(32BIT),Y) -CPPDEFS += -DOVERLOAD_R4 -DOVERLOAD_R8 -FFLAGS += -i4 -real-size 32 -else -ifeq ($(REPRO),Y) -FFLAGS += -i4 -real-size 64 -else -FFLAGS += -i4 -real-size 64 -no-prec-div -no-prec-sqrt -endif -endif - -ifeq ($(REPRO),Y) -FFLAGS += -qno-opt-dynamic-align -CFLAGS += -qno-opt-dynamic-align -else -ifeq ($(AVX2),Y) -FFLAGS += -axSSE4.2,AVX,CORE-AVX2,CORE-AVX512 -qno-opt-dynamic-align -CFLAGS += -axSSE4.2,AVX,CORE-AVX2,CORE-AVX512 -qno-opt-dynamic-align -else -FFLAGS += -qno-opt-dynamic-align -CFLAGS += -qno-opt-dynamic-align -endif -endif - -ifeq ($(MULTI_GASES),Y) -CPPDEFS += -DMULTI_GASES -endif -ifeq ($(QUAD_PRECISION),Y) -CPPDEFS += -DENABLE_QUAD_PRECISION -endif - -FFLAGS_OPT = -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -FFLAGS_REPRO = -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -FFLAGS_DEBUG = -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv - -TRANSCENDENTALS := -fast-transcendentals -FFLAGS_OPENMP = -qopenmp -FFLAGS_VERBOSE = -v -V -what - -CFLAGS += -D__IFC -sox -fp-model source - -CFLAGS_OPT = -O2 -debug minimal -CFLAGS_REPRO = -O2 -debug minimal -CFLAGS_OPENMP = -qopenmp -CFLAGS_DEBUG = -O0 -g -ftrapuv -traceback - -# Optional Testing compile flags. Mutually exclusive from DEBUG, REPRO, and OPT -# *_TEST will match the production if no new option(s) is(are) to be tested. -FFLAGS_TEST = -O3 -debug minimal -fp-model source -qoverride-limits -CFLAGS_TEST = -O2 - -LDFLAGS := -LDFLAGS_OPENMP := -qopenmp -LDFLAGS_VERBOSE := -Wl,-V,--verbose,-cref,-M - -# start with blank LIBS -LIBS := - -ifeq ($(REPRO),Y) -CPPDEFS += -DREPRO -CFLAGS += $(CFLAGS_REPRO) -FFLAGS += $(FFLAGS_REPRO) -FAST := -else ifeq ($(DEBUG),Y) -CPPDEFS += -DDEBUG -CFLAGS += $(CFLAGS_DEBUG) -FFLAGS += $(FFLAGS_DEBUG) -FAST := -else ifeq ($(TEST),Y) -CFLAGS += $(CFLAGS_TEST) -FFLAGS += $(FFLAGS_TEST) -FAST := -else -CFLAGS += $(CFLAGS_OPT) -FFLAGS += $(FFLAGS_OPT) -FAST := $(TRANSCENDENTALS) -endif - -ifeq ($(OPENMP),Y) -CPPDEFS += -DOPENMP -CFLAGS += $(CFLAGS_OPENMP) -FFLAGS += $(FFLAGS_OPENMP) -LDFLAGS += $(LDFLAGS_OPENMP) -endif - -ifeq ($(VERBOSE),Y) -CFLAGS += $(CFLAGS_VERBOSE) -FFLAGS += $(FFLAGS_VERBOSE) -LDFLAGS += $(LDFLAGS_VERBOSE) -endif - -ifeq ($(CCPP),Y) -CPPDEFS += -DCCPP -CFLAGS += -I$(PATH_CCPP)/include -FFLAGS += -I$(PATH_CCPP)/include -LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -endif - -LDFLAGS += $(LIBS) - -ifdef InNemsMakefile -FFLAGS += $(ESMF_INC) -CPPFLAGS += -traditional -EXTLIBS = $(NCEPLIBS) $(ESMF_LIB) $(LDFLAGS) $(NETCDF_LIB) -endif diff --git a/conf/configure.fv3.linux.gnu b/conf/configure.fv3.linux.gnu deleted file mode 100644 index f693327c98..0000000000 --- a/conf/configure.fv3.linux.gnu +++ /dev/null @@ -1,202 +0,0 @@ -## NEMS configuration file -## -## Platform: Linux -## Compiler: GNU (gcc/gfortran) with MPICH - -SHELL=/bin/sh - -################################################################################ -## Include the common configuration parts - -ifdef InNemsMakefile -include $(TOP)/conf/configure.nems.NUOPC -endif - -###################### PHYS_MODE ##### CHEM_MODE ############################### -# -# -# - -PHYS_MODE =compile -CHEM_MODE =compile -ifeq ($(PHYS_MODE),compile) - PHYS_LIB = $(TOP)/atmos/gsm/gsmphys - PHYS_INC = $(TOP)/atmos/gsm/gsmphys - PHYS_DIR = $(TOP)/atmos/gsm/gsmphys -endif -ifeq ($(CHEM_MODE),compile) - CHEM_LIB = $(TOP)/chem - CHEM_INC = $(TOP)/chem/gocart/src/Config/ - CHEM_DIR = $(TOP)/chem - CHEM_MOD = $(TOP)/chem/gocart/${ARCH}/include - ESMADIR = chem/gocart -endif - -############ -# commands # -############ -SFC = gfortran -SCC = gcc -CCOMP = gcc -DM_FC = mpif90 -DM_CC = mpicc -DMPI2_SUPPORT -FC = $(DM_FC) -CC = $(DM_CC) -DFSEEKO64_OK -LD = $(FC) - -######### -# flags # -######### -# default is 64-bit OpenMP non-hydrostatic build using AVX2 -DEBUG = -REPRO = -VERBOSE = -OPENMP = Y -AVX2 = Y -HYDRO = N -CCPP = N -SION = N -QUAD_PRECISION = Y -MULTI_GASES = N - -include $(ESMFMKFILE) -ESMF_INC = $(ESMF_F90COMPILEPATHS) - -NEMSIOINC = -I$(NEMSIO_INC) -NCEPLIBS = $(NEMSIO_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) - -############################################## -# Need to use at least GNU Make version 3.81 # -############################################## -need := 3.81 -ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) $(need)))) -ifneq ($(need),$(ok)) -$(error Need at least make version $(need). Load module gmake/3.81) -endif - -NETCDF_ROOT = $(NETCDF) -INCLUDE = -I$(NETCDF_ROOT)/include -NETCDF_INC = -I$(NETCDF_ROOT)/include -ifneq ($(findstring netcdf/4,$(LOADEDMODULES)),) - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf -else - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf -endif - -FPPFLAGS := -cpp -Wp,-w $(INCLUDE) -CFLAGS := $(INCLUDE) - -FFLAGS := $(INCLUDE) -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace - -CPPDEFS += -DLINUX -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST - -ifeq ($(HYDRO),Y) -CPPDEFS += -else -CPPDEFS += -DMOIST_CAPPA -DUSE_COND -endif - -ifeq ($(32BIT),Y) -CPPDEFS += -DOVERLOAD_R4 -DOVERLOAD_R8 -FFLAGS += -else -FFLAGS += -fdefault-real-8 -fdefault-double-8 -endif - -ifeq ($(AVX2),Y) -FFLAGS += -CFLAGS += -else -FFLAGS += -CFLAGS += -endif - -ifeq ($(MULTI_GASES),Y) -CPPDEFS += -DMULTI_GASES -endif - -ifeq ($(QUAD_PRECISION),Y) -CPPDEFS += -DENABLE_QUAD_PRECISION -endif - -FFLAGS_OPT = -O2 -fno-range-check -FFLAGS_REPRO = -O2 -g -fbacktrace -fno-range-check -FFLAGS_DEBUG = -g -O0 -ggdb -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -Wall - -TRANSCENDENTALS := -FFLAGS_OPENMP = -fopenmp -FFLAGS_VERBOSE = -v -V - -CFLAGS += -D__IFC - -CFLAGS_OPT = -O2 -CFLAGS_REPRO = -O2 -CFLAGS_OPENMP = -fopenmp -CFLAGS_DEBUG = -O0 -g - -# Optional Testing compile flags. Mutually exclusive from DEBUG, REPRO, and OPT -# *_TEST will match the production if no new option(s) is(are) to be tested. -FFLAGS_TEST = -O3 -CFLAGS_TEST = -O2 - -LDFLAGS := -LDFLAGS_OPENMP := -fopenmp -LDFLAGS_VERBOSE := -Wl,-V,--verbose,-cref,-M - -# start with blank LIBS -LIBS := - -ifeq ($(REPRO),Y) -CPPDEFS += -DREPRO -CFLAGS += $(CFLAGS_REPRO) -FFLAGS += $(FFLAGS_REPRO) -FAST := -else ifeq ($(DEBUG),Y) -CPPDEFS += -DDEBUG -CFLAGS += $(CFLAGS_DEBUG) -FFLAGS += $(FFLAGS_DEBUG) -FAST := -else ifeq ($(TEST),Y) -CFLAGS += $(CFLAGS_TEST) -FFLAGS += $(FFLAGS_TEST) -FAST := -else -CFLAGS += $(CFLAGS_OPT) -FFLAGS += $(FFLAGS_OPT) -FAST := $(TRANSCENDENTALS) -endif - -ifeq ($(OPENMP),Y) -CPPDEFS += -DOPENMP -CFLAGS += $(CFLAGS_OPENMP) -FFLAGS += $(FFLAGS_OPENMP) -LDFLAGS += $(LDFLAGS_OPENMP) -endif - -ifeq ($(VERBOSE),Y) -CFLAGS += $(CFLAGS_VERBOSE) -FFLAGS += $(FFLAGS_VERBOSE) -LDFLAGS += $(LDFLAGS_VERBOSE) -endif - -ifeq ($(CCPP),Y) -CPPDEFS += -DCCPP -CFLAGS += -I$(PATH_CCPP)/include -FFLAGS += -I$(PATH_CCPP)/include -LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -endif - -ifeq ($(SION),Y) -CPPDEFS += -DSION -CFLAGS += $(SIONLIB_INC) -FFLAGS += $(SIONLIB_INC) -endif - -LDFLAGS += $(LIBS) - -ifdef InNemsMakefile -FFLAGS += $(ESMF_INC) -CPPFLAGS += -cpp -traditional -EXTLIBS = $(NCEPLIBS) $(ESMF_LIB) $(LDFLAGS) $(NETCDF_LIB) $(SIONLIB_LIB) -endif diff --git a/conf/configure.fv3.macosx.gnu b/conf/configure.fv3.macosx.gnu deleted file mode 100644 index 47a12d5d78..0000000000 --- a/conf/configure.fv3.macosx.gnu +++ /dev/null @@ -1,212 +0,0 @@ -## NEMS configuration file -## -## Platform: Darwin Mac OS X -## Compiler: GNU (gcc/clang+gfortran) with MPICH - -SHELL=/bin/sh - -################################################################################ -## Include the common configuration parts - -ifdef InNemsMakefile -include $(TOP)/conf/configure.nems.NUOPC -endif - -###################### PHYS_MODE ##### CHEM_MODE ############################### -# -# -# - -PHYS_MODE =compile -CHEM_MODE =compile -ifeq ($(PHYS_MODE),compile) - PHYS_LIB = $(TOP)/atmos/gsm/gsmphys - PHYS_INC = $(TOP)/atmos/gsm/gsmphys - PHYS_DIR = $(TOP)/atmos/gsm/gsmphys -endif -ifeq ($(CHEM_MODE),compile) - CHEM_LIB = $(TOP)/chem - CHEM_INC = $(TOP)/chem/gocart/src/Config/ - CHEM_DIR = $(TOP)/chem - CHEM_MOD = $(TOP)/chem/gocart/${ARCH}/include - ESMADIR = chem/gocart -endif - -############ -# commands # -############ -SFC = $(F90) -SCC = $(CC) -CCOMP = $(CC) -DM_FC = $(MPIF90) -DM_CC = $(MPICC) -DMPI2_SUPPORT -FC = $(DM_FC) -CC = $(DM_CC) -DFSEEKO64_OK -LD = $(FC) - -######### -# flags # -######### -# default is 64-bit OpenMP non-hydrostatic build using AVX2 -DEBUG = -REPRO = -VERBOSE = -OPENMP = Y -AVX2 = Y -HYDRO = N -CCPP = N -SION = N -QUAD_PRECISION = Y -MULTI_GASES = N - -include $(ESMFMKFILE) -ESMF_INC = $(ESMF_F90COMPILEPATHS) - -# New NCEPLIBS -NEMSIO_INC=$(NEMSIO_ROOT)/include -NEMSIO_LIB=$(NEMSIO_ROOT)/lib/libnemsio.a -BACIO_LIB4=$(BACIO_ROOT)/lib/libbacio_4.a -SP_LIBd=$(SP_ROOT)/lib/libsp_d.a -W3EMC_LIBd=$(W3EMC_ROOT)/lib/libw3emc_d.a -W3NCO_LIBd=$(W3NCO_ROOT)/lib/libw3nco_d.a -# -NEMSIOINC = -I$(NEMSIO_INC) -NCEPLIBS = $(NEMSIO_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) - -############################################## -# Need to use at least GNU Make version 3.81 # -############################################## -need := 3.81 -ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) $(need)))) -ifneq ($(need),$(ok)) -$(error Need at least make version $(need). Load module gmake/3.81) -endif - -NETCDF_ROOT = $(NETCDF) -INCLUDE = -I$(NETCDF_ROOT)/include -NETCDF_INC = -I$(NETCDF_ROOT)/include -ifneq ($(findstring netcdf/4,$(LOADEDMODULES)),) - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf -else - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf -endif - -INCLUDE += $(MKL_INC) - -FPPFLAGS := -cpp -Wp,-w $(INCLUDE) -CFLAGS := $(INCLUDE) - -FFLAGS := $(INCLUDE) -fcray-pointer -ffree-line-length-none -fno-range-check -fbacktrace - -CPPDEFS += -DMACOSX -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST -DHAVE_GETTID - -ifeq ($(HYDRO),Y) -CPPDEFS += -else -CPPDEFS += -DMOIST_CAPPA -DUSE_COND -endif - -ifeq ($(32BIT),Y) -CPPDEFS += -DOVERLOAD_R4 -DOVERLOAD_R8 -FFLAGS += -else -FFLAGS += -fdefault-real-8 -fdefault-double-8 -endif - -ifeq ($(AVX2),Y) -FFLAGS += -CFLAGS += -else -FFLAGS += -CFLAGS += -endif - -ifeq ($(MULTI_GASES),Y) -CPPDEFS += -DMULTI_GASES -endif - -ifeq ($(QUAD_PRECISION),Y) -CPPDEFS += -DENABLE_QUAD_PRECISION -endif - -FFLAGS_OPT = -O2 -g -fno-range-check -FFLAGS_REPRO = -O0 -g -fbacktrace -fno-range-check -FFLAGS_DEBUG = -g -O0 -ggdb -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -fbacktrace -fno-range-check -Wall - -TRANSCENDENTALS := -FFLAGS_OPENMP = -fopenmp -FFLAGS_VERBOSE = -v -V - -CFLAGS += -D__IFC - -CFLAGS_OPT = -O2 -g -CFLAGS_REPRO = -O2 -g -CFLAGS_OPENMP = -fopenmp -CFLAGS_DEBUG = -O0 -g - -# Optional Testing compile flags. Mutually exclusive from DEBUG, REPRO, and OPT -# *_TEST will match the production if no new option(s) is(are) to be tested. -FFLAGS_TEST = -O3 -CFLAGS_TEST = -O2 - -LDFLAGS := -LDFLAGS_OPENMP := -fopenmp $(LIBS_OPENMP) -LDFLAGS_VERBOSE := -Wl,-V,--verbose,-cref,-M - -# start with blank LIBS -LIBS := - -ifeq ($(REPRO),Y) -CPPDEFS += -DREPRO -CFLAGS += $(CFLAGS_REPRO) -FFLAGS += $(FFLAGS_REPRO) -FAST := -else ifeq ($(DEBUG),Y) -CPPDEFS += -DDEBUG -CFLAGS += $(CFLAGS_DEBUG) -FFLAGS += $(FFLAGS_DEBUG) -FAST := -else ifeq ($(TEST),Y) -CFLAGS += $(CFLAGS_TEST) -FFLAGS += $(FFLAGS_TEST) -FAST := -else -CFLAGS += $(CFLAGS_OPT) -FFLAGS += $(FFLAGS_OPT) -FAST := $(TRANSCENDENTALS) -endif - -ifeq ($(OPENMP),Y) -CPPDEFS += -DOPENMP -CFLAGS += $(CFLAGS_OPENMP) -FFLAGS += $(FFLAGS_OPENMP) -LDFLAGS += $(LDFLAGS_OPENMP) -endif - -ifeq ($(VERBOSE),Y) -CFLAGS += $(CFLAGS_VERBOSE) -FFLAGS += $(FFLAGS_VERBOSE) -LDFLAGS += $(LDFLAGS_VERBOSE) -endif - -ifeq ($(CCPP),Y) -CPPDEFS += -DCCPP -CFLAGS += -I$(PATH_CCPP)/include -FFLAGS += -I$(PATH_CCPP)/include -LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -endif - -ifeq ($(SION),Y) -CPPDEFS += -DSION -CFLAGS += $(SIONLIB_INC) -FFLAGS += $(SIONLIB_INC) -endif - -LDFLAGS += $(LIBS) - -ifdef InNemsMakefile -FFLAGS += $(ESMF_INC) -CPPFLAGS += -cpp -traditional -EXTLIBS = $(NCEPLIBS) $(ESMF_LIB) $(LDFLAGS) $(NETCDF_LIB) $(MKL_LIB) $(SIONLIB_LIB) -endif diff --git a/conf/configure.fv3.odin b/conf/configure.fv3.odin deleted file mode 100644 index 8b3d2fc3f7..0000000000 --- a/conf/configure.fv3.odin +++ /dev/null @@ -1,175 +0,0 @@ -## NEMS configuration file -## -## Platform: Odin -## Compiler: Intel with MVAPICH2 - -SHELL=/bin/sh - -################################################################################ -## Include the common configuration parts - -ifdef InNemsMakefile -include $(TOP)/conf/configure.nems.NUOPC -endif - -###################### PHYS_MODE ##### CHEM_MODE ############################### -# -# -# - -PHYS_MODE =compile -CHEM_MODE =compile -ifeq ($(PHYS_MODE),compile) - PHYS_LIB = $(TOP)/atmos/gsm/gsmphys - PHYS_INC = $(TOP)/atmos/gsm/gsmphys - PHYS_DIR = $(TOP)/atmos/gsm/gsmphys -endif -ifeq ($(CHEM_MODE),compile) - CHEM_LIB = $(TOP)/chem - CHEM_INC = $(TOP)/chem/gocart/src/Config/ - CHEM_DIR = $(TOP)/chem - CHEM_MOD = $(TOP)/chem/gocart/${ARCH}/include - ESMADIR = chem/gocart -endif - -############ -# commands # -############ -FC = ftn -CC = cc -CXX = CC -LD = ftn -mkl=sequential - -######### -# flags # -######### -# default is 64-bit OpenMP non-hydrostatic build using AVX2 -DEBUG = -REPRO = -VERBOSE = -OPENMP = Y -AVX2 = Y -HYDRO = N -QUAD_PRECISION = Y -MULTI_GASES = N - -include $(ESMFMKFILE) -ESMF_INC = $(ESMF_F90COMPILEPATHS) - -NEMSIOINC = -I$(NEMSIO_INC) -NCEPLIBS = $(NEMSIO_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) - -############################################## -# Need to use at least GNU Make version 3.81 # -############################################## -need := 3.81 -ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) $(need)))) -ifneq ($(need),$(ok)) -$(error Need at least make version $(need). Load module gmake/3.81) -endif - -NETCDF_ROOT = $(NETCDF4) -INCLUDE = -I$(NETCDF_ROOT)/include -NETCDF_INC = -I$(NETCDF_ROOT)/include -ifneq ($(findstring netcdf/4,$(LOADEDMODULES)),) - NETCDF_LIB += -L$(NETCDF4)/lib -lnetcdff -lnetcdf -else - NETCDF_LIB += -L$(NETCDF4)/lib -lnetcdff -lnetcdf -endif - -FPPFLAGS := -fpp -Wp,-w $(INCLUDE) -CFLAGS := $(INCLUDE) - -FFLAGS := $(INCLUDE) -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte - -ifeq ($(HYDRO),Y) -CPPDEFS += -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNO_INLINE_POST -else -CPPDEFS += -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -DMOIST_CAPPA -DUSE_COND -Duse_WRTCOMP -DNO_INLINE_POST -endif - -CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML - -ifeq ($(32BIT),Y) -CPPDEFS += -DOVERLOAD_R4 -DOVERLOAD_R8 -FFLAGS += -i4 -real-size 32 -else -FFLAGS += -i4 -real-size 64 -no-prec-div -no-prec-sqrt -endif - -FFLAGS += -xCORE-AVX-I #-axavx -CFLAGS += -xCORE-AVX-I #-axavx - -ifeq ($(MULTI_GASES),Y) -CPPDEFS += -DMULTI_GASES -endif - -ifeq ($(QUAD_PRECISION),Y) -CPPDEFS += -DENABLE_QUAD_PRECISION -endif - -FFLAGS_OPT = -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -FFLAGS_REPRO = -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -#FFLAGS_DEBUG = -g -O0 -check bounds -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -FFLAGS_DEBUG = -g -O0 -check bounds -traceback - -TRANSCENDENTALS := -fast-transcendentals -FFLAGS_OPENMP = -qopenmp -FFLAGS_VERBOSE = -v -V -what - -CFLAGS += -D__IFC -sox -fp-model source - -CFLAGS_OPT = -O2 -debug minimal -CFLAGS_REPRO = -O2 -debug minimal -CFLAGS_OPENMP = -qopenmp -CFLAGS_DEBUG = -O0 -g -ftrapuv -traceback - -# Optional Testing compile flags. Mutually exclusive from DEBUG, REPRO, and OPT -# *_TEST will match the production if no new option(s) is(are) to be tested. -FFLAGS_TEST = -O3 -debug minimal -fp-model source -qoverride-limits -CFLAGS_TEST = -O2 - -LDFLAGS := -LDFLAGS_OPENMP := -qopenmp -LDFLAGS_VERBOSE := -Wl,-V,--verbose,-cref,-M - -# start with blank LIBS -LIBS := - -#ifneq ($(REPRO),) -#CFLAGS += $(CFLAGS_REPRO) -#FFLAGS += $(FFLAGS_REPRO) -#FAST := -#else ifneq ($(DEBUG),) -CFLAGS += $(CFLAGS_DEBUG) -FFLAGS += $(FFLAGS_DEBUG) -FAST := -#else ifneq ($(TEST),) -#CFLAGS += $(CFLAGS_TEST) -#FFLAGS += $(FFLAGS_TEST) -#FAST := -#else -#CFLAGS += $(CFLAGS_OPT) -#FFLAGS += $(FFLAGS_OPT) -#FAST := $(TRANSCENDENTALS) -#endif - -ifneq ($(OPENMP),) -CFLAGS += $(CFLAGS_OPENMP) -FFLAGS += $(FFLAGS_OPENMP) -LDFLAGS += $(LDFLAGS_OPENMP) -endif - -ifneq ($(VERBOSE),) -CFLAGS += $(CFLAGS_VERBOSE) -FFLAGS += $(FFLAGS_VERBOSE) -LDFLAGS += $(LDFLAGS_VERBOSE) -endif - -LDFLAGS += $(LIBS) - -ifdef InNemsMakefile -FFLAGS += $(ESMF_INC) -CPPFLAGS += -traditional -EXTLIBS = $(NCEPLIBS) $(ESMF_LIB) $(LDFLAGS) $(NETCDF_LIB) -endif diff --git a/conf/configure.fv3.orion.intel b/conf/configure.fv3.orion.intel deleted file mode 100644 index 580eddc151..0000000000 --- a/conf/configure.fv3.orion.intel +++ /dev/null @@ -1,183 +0,0 @@ -## NEMS configuration file -## -## Platform: Hera -## Compiler: Intel with IntelMPI - -SHELL=/bin/sh - -################################################################################ -## Include the common configuration parts - -ifdef InNemsMakefile -include $(TOP)/conf/configure.nems.NUOPC -endif - -############ -# commands # -############ -FC = mpiifort -CC = mpiicc -CXX = mpiicpc -LD = mpiifort -mkl=sequential - -######### -# flags # -######### -# default is 64-bit OpenMP non-hydrostatic build using AVX2 -DEBUG = -REPRO = -VERBOSE = -OPENMP = Y -AVX2 = Y -HYDRO = N -CCPP = N -QUAD_PRECISION = Y -MULTI_GASES = N - -include $(ESMFMKFILE) -ESMF_INC = $(ESMF_F90COMPILEPATHS) - -NEMSIOINC = -I$(NEMSIO_INC) -NCEPLIBS = $(POST_LIB) $(NEMSIO_LIB) $(G2_LIB4) $(G2TMPL_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) $(CRTM_LIB) $(JASPER_LIB) -lpng -lz - -############################################## -# Need to use at least GNU Make version 3.81 # -############################################## -need := 3.81 -ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) $(need)))) -ifneq ($(need),$(ok)) -$(error Need at least make version $(need). Load module gmake/3.81) -endif - -NETCDF_ROOT = $(NETCDF) -INCLUDE = -I$(NETCDF_ROOT)/include -NETCDF_INC = -I$(NETCDF_ROOT)/include -ifneq ($(findstring netcdf/4,$(LOADEDMODULES)),) - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf -else - NETCDF_LIB = -L$(NETCDF)/lib -lnetcdff -lnetcdf -endif - -FPPFLAGS := -fpp -Wp,-w $(INCLUDE) -CFLAGS := $(INCLUDE) - -FFLAGS := $(INCLUDE) -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte - -CPPDEFS += -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML - -ifeq ($(HYDRO),Y) -CPPDEFS += -else -CPPDEFS += -DMOIST_CAPPA -DUSE_COND -endif - -ifeq ($(32BIT),Y) -CPPDEFS += -DOVERLOAD_R4 -DOVERLOAD_R8 -FFLAGS += -i4 -real-size 32 -else -ifeq ($(REPRO),Y) -FFLAGS += -i4 -real-size 64 -else -FFLAGS += -i4 -real-size 64 -no-prec-div -no-prec-sqrt -endif -endif - -ifeq ($(REPRO),Y) -FFLAGS += -qno-opt-dynamic-align -CFLAGS += -qno-opt-dynamic-align -else -ifeq ($(AVX2),Y) -# Don't use the AVX512 flags yet on hera -#FFLAGS += -axSSE4.2,AVX,CORE-AVX2,CORE-AVX512 -qno-opt-dynamic-align -#CFLAGS += -axSSE4.2,AVX,CORE-AVX2,CORE-AVX512 -qno-opt-dynamic-align -FFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align -CFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align -else -FFLAGS += -qno-opt-dynamic-align -CFLAGS += -qno-opt-dynamic-align -endif -endif - -ifeq ($(MULTI_GASES),Y) -CPPDEFS += -DMULTI_GASES -endif - -ifeq ($(QUAD_PRECISION),Y) -CPPDEFS += -DENABLE_QUAD_PRECISION -endif - -FFLAGS_OPT = -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -FFLAGS_REPRO = -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -FFLAGS_DEBUG = -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -link_mpi=dbg - -TRANSCENDENTALS := -fast-transcendentals -FFLAGS_OPENMP = -qopenmp -FFLAGS_VERBOSE = -v -V -what - -CFLAGS += -D__IFC -sox -fp-model source - -CFLAGS_OPT = -O2 -debug minimal -CFLAGS_REPRO = -O2 -debug minimal -CFLAGS_OPENMP = -qopenmp -CFLAGS_DEBUG = -O0 -g -ftrapuv -traceback - -# Optional Testing compile flags. Mutually exclusive from DEBUG, REPRO, and OPT -# *_TEST will match the production if no new option(s) is(are) to be tested. -FFLAGS_TEST = -O3 -debug minimal -fp-model source -qoverride-limits -CFLAGS_TEST = -O2 - -LDFLAGS := -LDFLAGS_OPENMP := -qopenmp -LDFLAGS_VERBOSE := -Wl,-V,--verbose,-cref,-M - -# start with blank LIBS -LIBS := - -ifeq ($(REPRO),Y) -CPPDEFS += -DREPRO -CFLAGS += $(CFLAGS_REPRO) -FFLAGS += $(FFLAGS_REPRO) -FAST := -else ifeq ($(DEBUG),Y) -CPPDEFS += -DDEBUG -CFLAGS += $(CFLAGS_DEBUG) -FFLAGS += $(FFLAGS_DEBUG) -FAST := -else ifeq ($(TEST),Y) -CFLAGS += $(CFLAGS_TEST) -FFLAGS += $(FFLAGS_TEST) -FAST := -else -CFLAGS += $(CFLAGS_OPT) -FFLAGS += $(FFLAGS_OPT) -FAST := $(TRANSCENDENTALS) -endif - -ifeq ($(OPENMP),Y) -CPPDEFS += -DOPENMP -CFLAGS += $(CFLAGS_OPENMP) -FFLAGS += $(FFLAGS_OPENMP) -LDFLAGS += $(LDFLAGS_OPENMP) -endif - -ifeq ($(VERBOSE),Y) -CFLAGS += $(CFLAGS_VERBOSE) -FFLAGS += $(FFLAGS_VERBOSE) -LDFLAGS += $(LDFLAGS_VERBOSE) -endif - -ifeq ($(CCPP),Y) -CPPDEFS += -DCCPP -CFLAGS += -I$(PATH_CCPP)/include -FFLAGS += -I$(PATH_CCPP)/include -LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -endif - -LDFLAGS += $(LIBS) - -ifdef InNemsMakefile -FFLAGS += $(ESMF_INC) -CPPFLAGS += -traditional -EXTLIBS = $(NCEPLIBS) $(ESMF_LIB) $(LDFLAGS) $(NETCDF_LIB) -endif diff --git a/conf/configure.fv3.s4.intel b/conf/configure.fv3.s4.intel deleted file mode 100644 index 8e8830546f..0000000000 --- a/conf/configure.fv3.s4.intel +++ /dev/null @@ -1,189 +0,0 @@ -## NEMS configuration file -## -## Platform: SSEC Wisconsin S4 -## Compiler: Intel with IntelMPI - -SHELL=/bin/sh - -################################################################################ -## Include the common configuration parts - -ifdef InNemsMakefile -include $(TOP)/conf/configure.nems.NUOPC -endif - -############ -# commands # -############ -FC = mpiifort -CC = mpiicc -CXX = mpiicpc -LD = mpiifort -mkl=sequential - -######### -# flags # -######### -# default is 64-bit OpenMP non-hydrostatic build using AVX2 -DEBUG = -REPRO = -VERBOSE = -OPENMP = Y -AVX2 = N -HYDRO = N -CCPP = N -INLINE_POST=N -QUAD_PRECISION = Y -MULTI_GASES = N - -include $(ESMFMKFILE) -ESMF_INC = $(ESMF_F90COMPILEPATHS) - -NEMSIOINC = -I$(NEMSIO_INC) -NCEPLIBS = $(NEMSIO_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) - -############################################## -# Need to use at least GNU Make version 3.81 # -############################################## -need := 3.81 -ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) $(need)))) -ifneq ($(need),$(ok)) -$(error Need at least make version $(need). Load module gmake/3.81) -endif - -NETCDF_ROOT = $(NETCDF_DIR) -NETCDF = $(NETCDF_DIR) -INCLUDE = -I$(NETCDF_ROOT)/include -NETCDF_INC = -I$(NETCDF_ROOT)/include -ifneq ($(findstring netcdf/4,$(LOADEDMODULES)),) - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf -else - NETCDF_LIB = -L$(NETCDF)/lib -lnetcdff -lnetcdf -endif - -FPPFLAGS := -fpp -Wp,-w $(INCLUDE) -CFLAGS := $(INCLUDE) - -FFLAGS := $(INCLUDE) -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte - -CPPDEFS += -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML - -ifeq ($(INLINE_POST),Y) -CPPDEFS += -NCEPLIBS = $(POST_LIB) $(NEMSIO_LIB) $(G2_LIB4) $(G2TMPL_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) $(CRTM_LIB) $(PNG_LIB) $(JASPER_LIB) $(Z_LIB) -else -CPPDEFS += -DNO_INLINE_POST -endif - -ifeq ($(HYDRO),Y) -CPPDEFS += -else -CPPDEFS += -DMOIST_CAPPA -DUSE_COND -endif - -ifeq ($(32BIT),Y) -CPPDEFS += -DOVERLOAD_R4 -DOVERLOAD_R8 -FFLAGS += -i4 -real-size 32 -else -ifeq ($(REPRO),Y) -FFLAGS += -i4 -real-size 64 -else -FFLAGS += -i4 -real-size 64 -no-prec-div -no-prec-sqrt -endif -endif - -ifeq ($(REPRO),Y) -FFLAGS += -qno-opt-dynamic-align -CFLAGS += -qno-opt-dynamic-align -else -ifeq ($(AVX2),Y) -FFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align -CFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align -else -FFLAGS += -xHOST -qno-opt-dynamic-align -CFLAGS += -xHOST -qno-opt-dynamic-align -endif -endif - -ifeq ($(MULTI_GASES),Y) -CPPDEFS += -DMULTI_GASES -endif - -ifeq ($(QUAD_PRECISION),Y) -CPPDEFS += -DENABLE_QUAD_PRECISION -endif - -FFLAGS_OPT = -O2 -debug minimal -fp-model strict -qoverride-limits -qopt-prefetch=3 -g -traceback -FFLAGS_REPRO = -O2 -debug minimal -fp-model strict -qoverride-limits -g -traceback -FFLAGS_DEBUG = -g -O0 -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv - -TRANSCENDENTALS := -fast-transcendentals -FFLAGS_OPENMP = -qopenmp -FFLAGS_VERBOSE = -v -V -what - -CFLAGS += -D__IFC -sox -fp-model strict - -CFLAGS_OPT = -O2 -debug minimal -CFLAGS_REPRO = -O2 -debug minimal -CFLAGS_OPENMP = -qopenmp -CFLAGS_DEBUG = -O0 -g -ftrapuv -traceback - -# Optional Testing compile flags. Mutually exclusive from DEBUG, REPRO, and OPT -# *_TEST will match the production if no new option(s) is(are) to be tested. -FFLAGS_TEST = -O2 -debug minimal -fp-model strict -qoverride-limits -CFLAGS_TEST = -O2 - -LDFLAGS := -LDFLAGS_OPENMP := -qopenmp -LDFLAGS_VERBOSE := -Wl,-V,--verbose,-cref,-M - -# start with blank LIBS -LIBS := - -ifeq ($(REPRO),Y) -CPPDEFS += -DREPRO -CFLAGS += $(CFLAGS_REPRO) -FFLAGS += $(FFLAGS_REPRO) -FAST := -else ifeq ($(DEBUG),Y) -CPPDEFS += -DDEBUG -CFLAGS += $(CFLAGS_DEBUG) -FFLAGS += $(FFLAGS_DEBUG) -FAST := -else ifeq ($(TEST),Y) -CFLAGS += $(CFLAGS_TEST) -FFLAGS += $(FFLAGS_TEST) -FAST := -else -CFLAGS += $(CFLAGS_OPT) -FFLAGS += $(FFLAGS_OPT) -FAST := $(TRANSCENDENTALS) -endif - -ifeq ($(OPENMP),Y) -CPPDEFS += -DOPENMP -CFLAGS += $(CFLAGS_OPENMP) -FFLAGS += $(FFLAGS_OPENMP) -LDFLAGS += $(LDFLAGS_OPENMP) -endif - -ifeq ($(VERBOSE),Y) -CFLAGS += $(CFLAGS_VERBOSE) -FFLAGS += $(FFLAGS_VERBOSE) -LDFLAGS += $(LDFLAGS_VERBOSE) -endif - -ifeq ($(CCPP),Y) -CPPDEFS += -DCCPP -CFLAGS += -I$(PATH_CCPP)/include -FFLAGS += -I$(PATH_CCPP)/include -LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -endif - -LDFLAGS += $(LIBS) - -ifdef InNemsMakefile -FFLAGS += $(ESMF_INC) -CPPFLAGS += -traditional -EXTLIBS = $(NCEPLIBS) $(ESMF_LIB) $(LDFLAGS) $(NETCDF_LIB) -endif diff --git a/conf/configure.fv3.stampede.intel b/conf/configure.fv3.stampede.intel deleted file mode 100644 index 67a2c7fa68..0000000000 --- a/conf/configure.fv3.stampede.intel +++ /dev/null @@ -1,200 +0,0 @@ -## NEMS configuration file -## -## Platform: STAMPEDE -## Compiler: Intel with IntelMPI - -SHELL=/bin/sh - -################################################################################ -## Include the common configuration parts - -ifdef InNemsMakefile -include $(TOP)/conf/configure.nems.NUOPC -endif - -###################### PHYS_MODE ##### CHEM_MODE ############################### -# -# -# - -PHYS_MODE =compile -CHEM_MODE =compile -ifeq ($(PHYS_MODE),compile) - PHYS_LIB = $(TOP)/atmos/gsm/gsmphys - PHYS_INC = $(TOP)/atmos/gsm/gsmphys - PHYS_DIR = $(TOP)/atmos/gsm/gsmphys -endif -ifeq ($(CHEM_MODE),compile) - CHEM_LIB = $(TOP)/chem - CHEM_INC = $(TOP)/chem/gocart/src/Config/ - CHEM_DIR = $(TOP)/chem - CHEM_MOD = $(TOP)/chem/gocart/${ARCH}/include - ESMADIR = chem/gocart -endif - -############ -# commands # -############ -FC = mpiifort -CC = mpiicc -CXX = mpiicpc -LD = mpiifort -mkl=sequential - -######### -# flags # -######### -# default is 64-bit OpenMP non-hydrostatic build using AVX2 -DEBUG = -REPRO = -VERBOSE = -OPENMP = Y -AVX2 = Y -HYDRO = N -CCPP = N -QUAD_PRECISION = Y -MULTI_GASES = N - -include $(ESMFMKFILE) -ESMF_INC = $(ESMF_F90COMPILEPATHS) - -NEMSIOINC = -I$(NEMSIO_INC) -NCEPLIBS = $(NEMSIO_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) - -############################################## -# Need to use at least GNU Make version 3.81 # -############################################## -need := 3.81 -ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) $(need)))) -ifneq ($(need),$(ok)) -$(error Need at least make version $(need). Load module gmake/3.81) -endif - -NETCDF_ROOT = $(NETCDF) -INCLUDE = -I$(NETCDF_ROOT)/include -NETCDF_INC = -I$(NETCDF_ROOT)/include -ifneq ($(findstring netcdf/4,$(LOADEDMODULES)),) - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf -else - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf -endif - -FPPFLAGS := -fpp -Wp,-w $(INCLUDE) -CFLAGS := $(INCLUDE) - -FFLAGS := $(INCLUDE) -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte - -CPPDEFS += -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST - -ifeq ($(HYDRO),Y) -CPPDEFS += -else -CPPDEFS += -DMOIST_CAPPA -DUSE_COND -endif - -ifeq ($(32BIT),Y) -CPPDEFS += -DOVERLOAD_R4 -DOVERLOAD_R8 -FFLAGS += -i4 -real-size 32 -else -ifeq ($(REPRO),Y) -FFLAGS += -i4 -real-size 64 -else -FFLAGS += -i4 -real-size 64 -no-prec-div -no-prec-sqrt -endif -endif - -ifeq ($(REPRO),Y) -FFLAGS += -qno-opt-dynamic-align -CFLAGS += -qno-opt-dynamic-align -else -ifeq ($(AVX2),Y) -FFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align -CFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align -else -FFLAGS += -xHOST -qno-opt-dynamic-align -CFLAGS += -xHOST -qno-opt-dynamic-align -endif -endif - -ifeq ($(MULTI_GASES),Y) -CPPDEFS += -DMULTI_GASES -endif - -ifeq ($(QUAD_PRECISION),Y) -CPPDEFS += -DENABLE_QUAD_PRECISION -endif - -FFLAGS_OPT = -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -FFLAGS_REPRO = -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -FFLAGS_DEBUG = -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv - -TRANSCENDENTALS := -fast-transcendentals -FFLAGS_OPENMP = -qopenmp -FFLAGS_VERBOSE = -v -V -what - -CFLAGS += -D__IFC -sox -fp-model source - -CFLAGS_OPT = -O2 -debug minimal -CFLAGS_REPRO = -O2 -debug minimal -CFLAGS_OPENMP = -qopenmp -CFLAGS_DEBUG = -O0 -g -ftrapuv -traceback - -# Optional Testing compile flags. Mutually exclusive from DEBUG, REPRO, and OPT -# *_TEST will match the production if no new option(s) is(are) to be tested. -FFLAGS_TEST = -O3 -debug minimal -fp-model source -qoverride-limits -CFLAGS_TEST = -O2 - -LDFLAGS := -LDFLAGS_OPENMP := -qopenmp -LDFLAGS_VERBOSE := -Wl,-V,--verbose,-cref,-M - -# start with blank LIBS -LIBS := - -ifeq ($(REPRO),Y) -CPPDEFS += -DREPRO -CFLAGS += $(CFLAGS_REPRO) -FFLAGS += $(FFLAGS_REPRO) -FAST := -else ifeq ($(DEBUG),Y) -CPPDEFS += -DDEBUG -CFLAGS += $(CFLAGS_DEBUG) -FFLAGS += $(FFLAGS_DEBUG) -FAST := -else ifeq ($(TEST),Y) -CFLAGS += $(CFLAGS_TEST) -FFLAGS += $(FFLAGS_TEST) -FAST := -else -CFLAGS += $(CFLAGS_OPT) -FFLAGS += $(FFLAGS_OPT) -FAST := $(TRANSCENDENTALS) -endif - -ifeq ($(OPENMP),Y) -CPPDEFS += -DOPENMP -CFLAGS += $(CFLAGS_OPENMP) -FFLAGS += $(FFLAGS_OPENMP) -LDFLAGS += $(LDFLAGS_OPENMP) -endif - -ifeq ($(VERBOSE),Y) -CFLAGS += $(CFLAGS_VERBOSE) -FFLAGS += $(FFLAGS_VERBOSE) -LDFLAGS += $(LDFLAGS_VERBOSE) -endif - -ifeq ($(CCPP),Y) -CPPDEFS += -DCCPP -CFLAGS += -I$(PATH_CCPP)/include -FFLAGS += -I$(PATH_CCPP)/include -LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -endif - -LDFLAGS += $(LIBS) - -ifdef InNemsMakefile -FFLAGS += $(ESMF_INC) -CPPFLAGS += -traditional -EXTLIBS = $(NCEPLIBS) $(ESMF_LIB) $(LDFLAGS) $(NETCDF_LIB) -endif diff --git a/conf/configure.fv3.wcoss_cray b/conf/configure.fv3.wcoss_cray deleted file mode 100644 index b2d37a20db..0000000000 --- a/conf/configure.fv3.wcoss_cray +++ /dev/null @@ -1,169 +0,0 @@ -ifdef InNemsMakefile -include $(TOP)/conf/configure.nems.NUOPC -endif - -############ -# commands # -############ -FC = ftn -CC = cc -CXX = CC -LD = ftn - -######### -# flags # -######### -# default is 64-bit OpenMP non-hydrostatic build using AVX2 -DEBUG = -REPRO = -VERBOSE = -OPENMP = Y -AVX2 = Y -HYDRO = N -CCPP = N -QUAD_PRECISION = Y -MULTI_GASES = N - -include $(ESMFMKFILE) -ESMF_INC = $(ESMF_F90COMPILEPATHS) - -NEMSIOINC = -I$(NEMSIO_INC) -NCEPLIBS = $(POST_LIB) $(NEMSIO_LIB) $(G2_LIB4) $(G2TMPL_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) $(CRTM_LIB) $(PNG_LIB) $(JASPER_LIB) $(Z_LIB) - -############################################## -# Need to use at least GNU Make version 3.81 # -############################################## -need := 3.81 -ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) $(need)))) -ifneq ($(need),$(ok)) -$(error Need at least make version $(need). Load module gmake/3.81) -endif - -NETCDF_ROOT = $(NETCDF) -INCLUDE = -I$(NETCDF_ROOT)/include - -FPPFLAGS := -fpp -Wp,-w $(INCLUDE) -CFLAGS := $(INCLUDE) - -FFLAGS := $(INCLUDE) -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte - -CPPDEFS += -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML - -ifeq ($(HYDRO),Y) -CPPDEFS += -else -CPPDEFS += -DMOIST_CAPPA -DUSE_COND -endif - -ifeq ($(32BIT),Y) -CPPDEFS += -DOVERLOAD_R4 -DOVERLOAD_R8 -FFLAGS += -i4 -real-size 32 -else -ifeq ($(REPRO),Y) -FFLAGS += -i4 -real-size 64 -else -FFLAGS += -i4 -real-size 64 -no-prec-div -no-prec-sqrt -endif -endif - -ifeq ($(REPRO),Y) -FFLAGS += -qno-opt-dynamic-align -CFLAGS += -qno-opt-dynamic-align -else -ifeq ($(AVX2),Y) -FFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align -CFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align -else -FFLAGS += -qno-opt-dynamic-align -CFLAGS += -qno-opt-dynamic-align -endif -endif - -ifeq ($(MULTI_GASES),Y) -CPPDEFS += -DMULTI_GASES -endif - -ifeq ($(QUAD_PRECISION),Y) -CPPDEFS += -DENABLE_QUAD_PRECISION -endif - -FFLAGS_OPT = -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -FFLAGS_REPRO = -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -FFLAGS_DEBUG = -g -O0 -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv - -TRANSCENDENTALS := -fast-transcendentals -FFLAGS_OPENMP = -qopenmp -FFLAGS_VERBOSE = -v -V -what - -CFLAGS += -D__IFC -sox -fp-model source - -CFLAGS_OPT = -O2 -debug minimal -CFLAGS_REPRO = -O2 -debug minimal -CFLAGS_OPENMP = -qopenmp -CFLAGS_DEBUG = -O0 -g -ftrapuv -traceback - -# Optional Testing compile flags. Mutually exclusive from DEBUG, REPRO, and OPT -# *_TEST will match the production if no new option(s) is(are) to be tested. -FFLAGS_TEST = -O3 -debug minimal -fp-model source -qoverride-limits -CFLAGS_TEST = -O2 - -LDFLAGS := -LDFLAGS += $(Z_LIB) -L$(NETCDF_ROOT)/lib -LDFLAGS_OPENMP := -qopenmp -LDFLAGS_VERBOSE := -Wl,-V,--verbose,-cref,-M - -# start with blank LIBS -LIBS := - -ifeq ($(REPRO),Y) -CPPDEFS += -DREPRO -CFLAGS += $(CFLAGS_REPRO) -FFLAGS += $(FFLAGS_REPRO) -FAST := -else ifeq ($(DEBUG),Y) -CPPDEFS += -DDEBUG -CFLAGS += $(CFLAGS_DEBUG) -FFLAGS += $(FFLAGS_DEBUG) -FAST := -else ifeq ($(TEST),Y) -CFLAGS += $(CFLAGS_TEST) -FFLAGS += $(FFLAGS_TEST) -FAST := -else -CFLAGS += $(CFLAGS_OPT) -FFLAGS += $(FFLAGS_OPT) -FAST := $(TRANSCENDENTALS) -endif - -ifeq ($(OPENMP),Y) -CPPDEFS += -DOPENMP -CFLAGS += $(CFLAGS_OPENMP) -FFLAGS += $(FFLAGS_OPENMP) -LDFLAGS += $(LDFLAGS_OPENMP) -# to correct a loader bug on gaea: envars below set by module load intel -LIBS += -L$(INTEL_PATH)/$(INTEL_MAJOR_VERSION)/$(INTEL_MINOR_VERSION)/lib/intel64 -lifcoremt -endif - -ifeq ($(VERBOSE),Y) -CFLAGS += $(CFLAGS_VERBOSE) -FFLAGS += $(FFLAGS_VERBOSE) -LDFLAGS += $(LDFLAGS_VERBOSE) -endif - -ifeq ($(CCPP),Y) -CPPDEFS += -DCCPP -CFLAGS += -I$(PATH_CCPP)/include -FFLAGS += -I$(PATH_CCPP)/include -LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -endif - -LIBS += -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 $(Z_LIB) - -LDFLAGS += $(LIBS) - -ifdef InNemsMakefile -FFLAGS += $(ESMF_INC) -CPPFLAGS += -traditional -EXTLIBS = $(NCEPLIBS) $(LDFLAGS) $(ESMF_LIB) -endif diff --git a/conf/configure.fv3.wcoss_dell_p3 b/conf/configure.fv3.wcoss_dell_p3 deleted file mode 100644 index 8e768fa930..0000000000 --- a/conf/configure.fv3.wcoss_dell_p3 +++ /dev/null @@ -1,172 +0,0 @@ -ifdef InNemsMakefile -include $(TOP)/conf/configure.nems.NUOPC -endif - -############ -# commands # -############ -FC = mpiifort -CC = mpiicc -CXX = mpiicpc -LD = mpiifort - -######### -# flags # -######### -# default is 64-bit OpenMP non-hydrostatic build using AVX2 -DEBUG = -REPRO = -VERBOSE = -OPENMP = Y -AVX2 = Y -HYDRO = N -CCPP = N -QUAD_PRECISION = Y -MULTI_GASES = N - -include $(ESMFMKFILE) -ESMF_INC = $(ESMF_F90COMPILEPATHS) - -NEMSIOINC = -I$(NEMSIO_INC) -NCEPLIBS = $(POST_LIB) $(NEMSIO_LIB) $(G2_LIB4) $(G2TMPL_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) $(CRTM_LIB) $(JASPER_LIB) -lpng -lz - -############################################## -# Need to use at least GNU Make version 3.81 # -############################################## -need := 3.81 -ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) $(need)))) -ifneq ($(need),$(ok)) -$(error Need at least make version $(need). Load module gmake/3.81) -endif - -NETCDF_ROOT = $(NETCDF) -INCLUDE = -I$(NETCDF_ROOT)/include - -FPPFLAGS := -fpp -Wp,-w $(INCLUDE) -CFLAGS := $(INCLUDE) - -FFLAGS := $(INCLUDE) -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte - -CPPDEFS += -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML - -ifeq ($(HYDRO),Y) -CPPDEFS += -else -CPPDEFS += -DMOIST_CAPPA -DUSE_COND -endif - -ifeq ($(32BIT),Y) -CPPDEFS += -DOVERLOAD_R4 -DOVERLOAD_R8 -FFLAGS += -i4 -real-size 32 -else -ifeq ($(REPRO),Y) -FFLAGS += -i4 -real-size 64 -else -FFLAGS += -i4 -real-size 64 -no-prec-div -no-prec-sqrt -endif -endif - -ifeq ($(REPRO),Y) -FFLAGS += -qno-opt-dynamic-align -CFLAGS += -qno-opt-dynamic-align -else -ifeq ($(AVX2),Y) -FFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align -CFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align -else -FFLAGS += -qno-opt-dynamic-align -CFLAGS += -qno-opt-dynamic-align -endif -endif - -ifeq ($(MULTI_GASES),Y) -CPPDEFS += -DMULTI_GASES -endif - -ifeq ($(QUAD_PRECISION),Y) -CPPDEFS += -DENABLE_QUAD_PRECISION -endif - -# -FFLAGS_OPT = -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -FFLAGS_REPRO = -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -FFLAGS_DEBUG = -g -O0 -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -link_mpi=dbg - -TRANSCENDENTALS := -fast-transcendentals -FFLAGS_OPENMP = -qopenmp -FFLAGS_VERBOSE = -v -V -what - -CFLAGS += -D__IFC -sox -fp-model source - -CFLAGS_OPT = -O2 -debug minimal -CFLAGS_REPRO = -O2 -debug minimal -CFLAGS_OPENMP = -qopenmp -CFLAGS_DEBUG = -O0 -g -ftrapuv -traceback - -# Optional Testing compile flags. Mutually exclusive from DEBUG, REPRO, and OPT -# *_TEST will match the production if no new option(s) is(are) to be tested. -FFLAGS_TEST = -O3 -debug minimal -fp-model source -qoverride-limits -CFLAGS_TEST = -O2 - -LDFLAGS := -LDFLAGS += -L$(NETCDF_ROOT)/lib -L$(HDF5)/lib -LDFLAGS_OPENMP := -qopenmp -LDFLAGS_VERBOSE := -Wl,-V,--verbose,-cref,-M - -# start with blank LIBS -LIBS := - -ifeq ($(REPRO),Y) -CPPDEFS += -DREPRO -CFLAGS += $(CFLAGS_REPRO) -FFLAGS += $(FFLAGS_REPRO) -FAST := -else ifeq ($(DEBUG),Y) -CPPDEFS += -DDEBUG -CFLAGS += $(CFLAGS_DEBUG) -FFLAGS += $(FFLAGS_DEBUG) -FAST := -else ifeq ($(TEST),Y) -CFLAGS += $(CFLAGS_TEST) -FFLAGS += $(FFLAGS_TEST) -FAST := -else -CFLAGS += $(CFLAGS_OPT) -FFLAGS += $(FFLAGS_OPT) -FAST := $(TRANSCENDENTALS) -endif - -ifeq ($(OPENMP),Y) -CPPDEFS += -DOPENMP -CFLAGS += $(CFLAGS_OPENMP) -FFLAGS += $(FFLAGS_OPENMP) -LDFLAGS += $(LDFLAGS_OPENMP) -endif - -ifeq ($(VERBOSE),Y) -CFLAGS += $(CFLAGS_VERBOSE) -FFLAGS += $(FFLAGS_VERBOSE) -LDFLAGS += $(LDFLAGS_VERBOSE) -endif - -ifeq ($(CCPP),Y) -CPPDEFS += -DCCPP -CFLAGS += -I$(PATH_CCPP)/include -FFLAGS += -I$(PATH_CCPP)/include -LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -endif - -ifneq ($(findstring NetCDF/4,$(LOADEDMODULES)),) - LIBS += -lnetcdff -lhdf5 $(Z_LIB) -else - LIBS += -lnetcdf -endif - -LDFLAGS += $(LIBS) - -ifdef InNemsMakefile -FFLAGS += $(ESMF_INC) -CPPFLAGS += -traditional -EXTLIBS = $(NCEPLIBS) $(ESMF_LIB) $(LDFLAGS) -endif diff --git a/modulefiles/hera.gnu/fv3 b/modulefiles/hera.gnu/fv3 index a1ce290c2c..3cea5e910c 100644 --- a/modulefiles/hera.gnu/fv3 +++ b/modulefiles/hera.gnu/fv3 @@ -1,57 +1,42 @@ -#%Module###################################################################### -## -## NEMS FV3 Prerequisites: Hera/GNU +#%Module proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running FV3 under NEMS on Hera/GNU" + puts stderr "\tcit - loads modules required for building and running UFS Model on Hera/GNU" } -module-whatis "loads NEMS FV3 prerequisites for Hera/GNU" +module-whatis "loads UFS Model prerequisites for Hera/GNU" -## -## load contrib environment -## load slurm utils (arbitrary.pl layout.pl) -## -module use -a /contrib/sutils/modulefiles +module use /contrib/sutils/modulefiles module load sutils -## -## load programming environment -## this typically includes compiler, MPI and job scheduler -## -module load gnu/9.2.0 -module use -a /scratch1/BMC/gmtb/software/modulefiles/gnu-9.2.0/mpich-3.3.2 -module load mpich/3.3.2 +module load cmake/3.16.1 +setenv CMAKE_C_COMPILER mpicc +setenv CMAKE_CXX_COMPILER mpicxx +setenv CMAKE_Fortran_COMPILER mpif90 +setenv CMAKE_Platform hera.gnu + +module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/v1.0.0-beta1/modulefiles/stack -## -## use pre-compiled PNG, NetCDF, ESMF and NCEP libraries for above compiler / MPI combination -## -module use -a /scratch1/BMC/gmtb/software/ufs-stack-20200909/gnu-9.2.0/mpich-3.3.2/modules +module load hpc/1.0.0-beta1 +module load hpc-gnu/9.2.0 +module load hpc-mpich/3.3.2 -module load libpng/1.6.35 +module load jasper/2.0.15 +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 esmf/8.1.0bs27 +module load pio/2.5.1 +module load esmf/8_1_0_beta_snapshot_27 -module load bacio/2.4.0 +module load bacio/2.4.1 module load crtm/2.3.0 -module load g2/3.4.0 -module load g2tmpl/1.9.0 -module load ip/3.3.0 +module load g2/3.4.1 +module load g2tmpl/1.9.1 +module load ip/3.3.3 module load nceppost/dceca26 -module load nemsio/2.5.1 -module load sp/2.3.0 -module load w3emc/2.7.0 -module load w3nco/2.4.0 - -module load gfsio/1.4.0 -module load sfcio/1.4.0 -module load sigio/2.3.0 - -## -## load cmake -## -module load cmake/3.16.1 -setenv CMAKE_C_COMPILER mpicc -setenv CMAKE_CXX_COMPILER mpicxx -setenv CMAKE_Fortran_COMPILER mpif90 -setenv CMAKE_Platform hera.gnu +module load nemsio/2.5.2 +module load sp/2.3.3 +module load w3emc/2.7.3 +module load w3nco/2.4.1 diff --git a/modulefiles/hera.intel/fv3 b/modulefiles/hera.intel/fv3 index 4f1f4284c5..efc66b74ee 100644 --- a/modulefiles/hera.intel/fv3 +++ b/modulefiles/hera.intel/fv3 @@ -27,6 +27,7 @@ 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 diff --git a/modulefiles/hera.intel/fv3_debug b/modulefiles/hera.intel/fv3_debug new file mode 100644 index 0000000000..f099c10474 --- /dev/null +++ b/modulefiles/hera.intel/fv3_debug @@ -0,0 +1,42 @@ +#%Module + +proc ModulesHelp {} { + puts stderr "\tcit - loads modules required for building and running UFS Model on Hera/Intel" +} + +module-whatis "loads UFS Model prerequisites for Hera/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 hera.intel + +module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/v1.0.0-beta1/modulefiles/stack + +module load hpc/1.0.0-beta1 +module load hpc-intel/18.0.5.274 +module load hpc-impi/2018.0.4 + +module load jasper/2.0.15 +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-debug + +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 nceppost/dceca26 +module load nemsio/2.5.2 +module load sp/2.3.3 +module load w3emc/2.7.3 +module load w3nco/2.4.1 diff --git a/modulefiles/orion.intel/fv3 b/modulefiles/orion.intel/fv3 index c9930367d1..47245c13b0 100644 --- a/modulefiles/orion.intel/fv3 +++ b/modulefiles/orion.intel/fv3 @@ -26,6 +26,7 @@ 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 diff --git a/modulefiles/orion.intel/fv3_debug b/modulefiles/orion.intel/fv3_debug new file mode 100644 index 0000000000..b651ca8af7 --- /dev/null +++ b/modulefiles/orion.intel/fv3_debug @@ -0,0 +1,41 @@ +#%Module + +proc ModulesHelp {} { + puts stderr "\tcit - loads modules required for building and running UFS Model on Orion/Intel" +} + +module-whatis "loads UFS Model prerequisites for Orion/Intel" + +module load contrib noaatools + +module load cmake/3.17.3 +setenv CMAKE_C_COMPILER mpiicc +setenv CMAKE_CXX_COMPILER mpiicpc +setenv CMAKE_Fortran_COMPILER mpiifort +setenv CMAKE_Platform orion.intel + +module use /apps/contrib/NCEP/libs/hpc-stack/v1.0.0-beta1/modulefiles/stack + +module load hpc/1.0.0-beta1 +module load hpc-intel/2018.4 +module load hpc-impi/2018.4 + +module load jasper/2.0.15 +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-debug + +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 nceppost/dceca26 +module load nemsio/2.5.2 +module load sp/2.3.3 +module load w3emc/2.7.3 +module load w3nco/2.4.1 diff --git a/modulefiles/wcoss_dell_p3/fv3 b/modulefiles/wcoss_dell_p3/fv3 index 8b90bb72c0..cf0f0ef05d 100644 --- a/modulefiles/wcoss_dell_p3/fv3 +++ b/modulefiles/wcoss_dell_p3/fv3 @@ -30,6 +30,7 @@ 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 diff --git a/modulefiles/wcoss_dell_p3/fv3_debug b/modulefiles/wcoss_dell_p3/fv3_debug new file mode 100644 index 0000000000..bc0010d580 --- /dev/null +++ b/modulefiles/wcoss_dell_p3/fv3_debug @@ -0,0 +1,45 @@ +#%Module + +proc ModulesHelp {} { + puts stderr "\tcit - loads modules required for building and running UFS Model on the Dell side of WCOSS" +} + +module-whatis "loads UFS Model prerequisites on Venus and Mars" + +module load ips/18.0.1.163 +module load impi/18.0.1 +module load lsf/10.1 +# module load python/3.6.3 +module load python/2.7.14 + +module load cmake/3.16.2 +setenv CMAKE_C_COMPILER mpiicc +setenv CMAKE_CXX_COMPILER mpiicpc +setenv CMAKE_Fortran_COMPILER mpiifort +setenv CMAKE_Platform wcoss_dell_p3 + +module use /usrx/local/nceplibs/dev/hpc-stack/libs/hpc-stack/v1.0.0-beta1/modulefiles/stack + +module load hpc/1.0.0-beta1 +module load hpc-ips/18.0.1.163 +module load hpc-impi/18.0.1 + +module load jasper/2.0.15 +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-debug + +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 nceppost/dceca26 +module load nemsio/2.5.2 +module load sp/2.3.3 +module load w3emc/2.7.3 +module load w3nco/2.4.1 diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 9b841f1a0e..c6a73e601f 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Fri Oct 16 21:01:04 UTC 2020 +Tue Oct 20 02:27:45 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/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-20201015/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/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-20201015/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/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 @@ -186,8 +186,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-20201015/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gsd_prod Checking test 005 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -346,8 +346,8 @@ Checking test 005 fv3_ccpp_gsd results .... Test 005 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_thompson_prod Checking test 006 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -414,8 +414,8 @@ Checking test 006 fv3_ccpp_thompson results .... Test 006 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_thompson_no_aero_prod Checking test 007 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_thompson_no_aero results .... Test 007 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_rrfs_v1beta_prod Checking test 008 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -574,14 +574,14 @@ Checking test 008 fv3_ccpp_rrfs_v1beta results .... Test 008 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_control_debug_prod Checking test 009 fv3_ccpp_control_debug results .... Test 009 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gfs_v15p2_debug_prod Checking test 010 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -648,8 +648,8 @@ Checking test 010 fv3_ccpp_gfs_v15p2_debug results .... Test 010 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gfs_v16beta_debug_prod Checking test 011 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -716,8 +716,8 @@ Checking test 011 fv3_ccpp_gfs_v16beta_debug results .... Test 011 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_104669/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_multigases_prod Checking test 012 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -791,5 +791,5 @@ Test 012 fv3_ccpp_multigases PASS REGRESSION TEST WAS SUCCESSFUL -Fri Oct 16 21:22:58 UTC 2020 -Elapsed time: 00h:21m:55s. Have a nice day! +Tue Oct 20 03:01:57 UTC 2020 +Elapsed time: 00h:34m:14s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 5d983e70e6..b60d5e6434 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Fri Oct 16 20:59:30 UTC 2020 +Tue Oct 20 01:51:21 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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-20201015/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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-20201015/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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-20201015/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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-20201015/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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-20201015/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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-20201015/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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-20201015/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -854,8 +854,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmprad_prod Checking test 016 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -951,8 +951,8 @@ Checking test 016 fv3_ccpp_gfdlmprad results .... Test 016 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1000,8 +1000,8 @@ Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Test 017 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1049,8 +1049,8 @@ Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 018 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_multigases results .... Test 019 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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,8 +1191,8 @@ Checking test 020 fv3_ccpp_control_32bit results .... Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,8 +1247,8 @@ Checking test 021 fv3_ccpp_stretched results .... Test 021 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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,8 +1314,8 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1325,8 +1325,8 @@ Checking test 023 fv3_ccpp_regional_control results .... Test 023 fv3_ccpp_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1334,8 +1334,8 @@ Checking test 024 fv3_ccpp_regional_restart results .... Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1345,8 +1345,8 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_regional_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1356,20 +1356,20 @@ Checking test 026 fv3_ccpp_regional_c768 results .... Test 026 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_stretched_nest_debug_prod Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1416,8 +1416,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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 @@ -1464,8 +1464,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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 @@ -1512,8 +1512,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmp_hwrfsas_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfdlmp_hwrfsas_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_hwrfsas_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 032 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1560,8 +1560,8 @@ Checking test 032 fv3_ccpp_gfdlmp_hwrfsas results .... Test 032 fv3_ccpp_gfdlmp_hwrfsas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1608,8 +1608,8 @@ Checking test 033 fv3_ccpp_csawmg results .... Test 033 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1656,8 +1656,8 @@ Checking test 034 fv3_ccpp_satmedmf results .... Test 034 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1704,8 +1704,8 @@ Checking test 035 fv3_ccpp_satmedmfq results .... Test 035 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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 @@ -1752,8 +1752,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-20201015/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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 @@ -1804,8 +1804,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-20201015/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1858,8 +1858,8 @@ Checking test 038 fv3_ccpp_cpt results .... Test 038 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1950,8 +1950,8 @@ Checking test 039 fv3_ccpp_gsd results .... Test 039 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2018,8 +2018,8 @@ Checking test 040 fv3_ccpp_rap results .... Test 040 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2086,8 +2086,8 @@ Checking test 041 fv3_ccpp_hrrr results .... Test 041 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2154,8 +2154,8 @@ Checking test 042 fv3_ccpp_thompson results .... Test 042 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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 @@ -2222,8 +2222,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-20201015/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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 @@ -2314,8 +2314,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-20201015/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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 @@ -2382,8 +2382,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-20201015/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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 @@ -2450,8 +2450,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-20201015/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfsv16_csawmg_prod Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2498,8 +2498,8 @@ Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Test 047 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfsv16_csawmgt_prod Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2546,8 +2546,8 @@ Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Test 048 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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 @@ -2594,8 +2594,8 @@ Checking test 049 fv3_ccpp_gocart_clm results .... Test 049 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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 @@ -2662,8 +2662,8 @@ Checking test 050 fv3_ccpp_gfs_v16beta_flake results .... Test 050 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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 @@ -2730,8 +2730,8 @@ Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... Test 051 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/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 @@ -2798,8 +2798,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_debug results .... Test 052 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gsd_debug_prod Checking test 053 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2866,8 +2866,8 @@ Checking test 053 fv3_ccpp_gsd_debug results .... Test 053 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gsd_diag3d_debug_prod Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2934,8 +2934,8 @@ Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Test 054 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_thompson_debug_prod Checking test 055 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3002,8 +3002,8 @@ Checking test 055 fv3_ccpp_thompson_debug results .... Test 055 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_thompson_no_aero_debug_prod Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3070,8 +3070,8 @@ Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Test 056 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_47138/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3138,6 +3138,707 @@ Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Test 057 fv3_ccpp_rrfs_v1beta_debug PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1stepcold_ccpp_cmeps_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod +Checking test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux 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/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/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.2016-10-05-00000.nc .........OK +Test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod +Checking test 059 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux 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/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/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.2016-10-05-00000.nc .........OK +Test 059 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_3d_warm_ccpp_cmeps_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod +Checking test 060 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux results .... + Comparing phyf072.tile1.nc .........OK + Comparing phyf072.tile2.nc .........OK + Comparing phyf072.tile3.nc .........OK + Comparing phyf072.tile4.nc .........OK + Comparing phyf072.tile5.nc .........OK + Comparing phyf072.tile6.nc .........OK + Comparing dynf072.tile1.nc .........OK + Comparing dynf072.tile2.nc .........OK + Comparing dynf072.tile3.nc .........OK + Comparing dynf072.tile4.nc .........OK + Comparing dynf072.tile5.nc .........OK + Comparing dynf072.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 + 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.2016-10-06-00000.nc .........OK +Test 060 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_3d_warm_ccpp_cmeps_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod +Checking test 061 cpld_fv3_ccpp_mom6_cice_cmeps_restart results .... + Comparing phyf072.tile1.nc .........OK + Comparing phyf072.tile2.nc .........OK + Comparing phyf072.tile3.nc .........OK + Comparing phyf072.tile4.nc .........OK + Comparing phyf072.tile5.nc .........OK + Comparing phyf072.tile6.nc .........OK + Comparing dynf072.tile1.nc .........OK + Comparing dynf072.tile2.nc .........OK + Comparing dynf072.tile3.nc .........OK + Comparing dynf072.tile4.nc .........OK + Comparing dynf072.tile5.nc .........OK + Comparing dynf072.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 + 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.2016-10-06-00000.nc .........OK +Test 061 cpld_fv3_ccpp_mom6_cice_cmeps_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod +Checking test 062 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads 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/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/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.2016-10-05-00000.nc .........OK +Test 062 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod +Checking test 063 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp 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/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/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.2016-10-05-00000.nc .........OK +Test 063 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_warm_satmedmf_ccpp_cmeps_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod +Checking test 064 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf results .... + 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 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 + 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.2016-10-04-00000.nc .........OK +Test 064 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp384_cmeps_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod +Checking test 065 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux 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/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/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.2016-10-05-00000.nc .........OK +Test 065 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp384_cmeps_frac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod +Checking test 066 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac 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/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/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.2016-10-05-00000.nc .........OK +Test 066 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_bmrt_ccpp_cmeps_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod +Checking test 067 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt results .... + 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 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 + Comparing RESTART/20130401.120000.coupler.res .........OK + Comparing RESTART/20130401.120000.fv_core.res.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile6.nc .........OK + 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/MOM.res.2013-04-01-12-00-00.nc .........OK + Comparing RESTART/MOM.res.2013-04-01-12-00-00_1.nc .........OK + Comparing RESTART/MOM.res.2013-04-01-12-00-00_2.nc .........OK + Comparing RESTART/MOM.res.2013-04-01-12-00-00_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/iced.2013-04-01-43200.nc .........OK +Test 067 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_bmwav_ccpp_cmeps_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod +Checking test 068 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt results .... + 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 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 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........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/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.2013-04-02-00000.nc .........OK +Test 068 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_6h_warm_debug_ccpp_cmeps_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod +Checking test 069 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug results .... + 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 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 + 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.2016-10-03-21600.nc .........OK + Comparing ufs.s2s.cpl.r.2016-10-03-21600.nc .........OK +Test 069 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug PASS + + REGRESSION TEST WAS SUCCESSFUL -Fri Oct 16 21:28:28 UTC 2020 -Elapsed time: 00h:29m:01s. Have a nice day! +Tue Oct 20 04:17:59 UTC 2020 +Elapsed time: 02h:26m:39s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index af99e9dd88..7dde0f4cf5 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Fri Oct 16 15:22:28 CDT 2020 +Mon Oct 19 18:53:17 CDT 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/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-20201015/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/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-20201015/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/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-20201015/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/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-20201015/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/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-20201015/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/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-20201015/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/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-20201015/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,8 +835,8 @@ Checking test 014 fv3_ccpp_gfdlmprad results .... Test 014 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Test 015 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,8 +933,8 @@ Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 016 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,8 +1007,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/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 @@ -1075,8 +1075,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,8 +1131,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/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 @@ -1198,8 +1198,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,8 +1209,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,8 +1218,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,8 +1229,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_regional_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_regional_c768_prod Checking test 024 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1240,20 +1240,20 @@ Checking test 024 fv3_ccpp_regional_c768 results .... Test 024 fv3_ccpp_regional_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1300,8 +1300,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/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 @@ -1348,8 +1348,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/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 @@ -1396,8 +1396,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1444,8 +1444,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1492,8 +1492,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1540,8 +1540,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1592,8 +1592,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1646,8 +1646,8 @@ Checking test 034 fv3_ccpp_cpt results .... Test 034 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,8 +1738,8 @@ Checking test 035 fv3_ccpp_gsd results .... Test 035 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1806,8 +1806,8 @@ Checking test 036 fv3_ccpp_thompson results .... Test 036 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1874,8 +1874,8 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1966,8 +1966,8 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/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 @@ -2034,8 +2034,8 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/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 @@ -2102,8 +2102,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Test 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2150,8 +2150,8 @@ Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Test 041 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2198,8 +2198,8 @@ Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Test 042 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2246,8 +2246,8 @@ Checking test 043 fv3_ccpp_gocart_clm results .... Test 043 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2314,8 +2314,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Test 044 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfs_v15p2_debug_prod Checking test 045 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2382,8 +2382,8 @@ Checking test 045 fv3_ccpp_gfs_v15p2_debug results .... Test 045 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfs_v16beta_debug_prod Checking test 046 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2450,8 +2450,8 @@ Checking test 046 fv3_ccpp_gfs_v16beta_debug results .... Test 046 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2518,8 +2518,8 @@ Checking test 047 fv3_ccpp_gsd_debug results .... Test 047 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2586,8 +2586,8 @@ Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Test 048 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2654,8 +2654,8 @@ Checking test 049 fv3_ccpp_thompson_debug results .... Test 049 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2722,8 +2722,8 @@ Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Test 050 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/xzhou/stmp/xzhou/FV3_RT/rt_180014/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2790,6 +2790,707 @@ Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Test 051 fv3_ccpp_rrfs_v1beta_debug PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1stepcold_ccpp_cmeps_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod +Checking test 052 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux 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/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/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.2016-10-05-00000.nc .........OK +Test 052 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod +Checking test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux 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/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/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.2016-10-05-00000.nc .........OK +Test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_3d_warm_ccpp_cmeps_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod +Checking test 054 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux results .... + Comparing phyf072.tile1.nc .........OK + Comparing phyf072.tile2.nc .........OK + Comparing phyf072.tile3.nc .........OK + Comparing phyf072.tile4.nc .........OK + Comparing phyf072.tile5.nc .........OK + Comparing phyf072.tile6.nc .........OK + Comparing dynf072.tile1.nc .........OK + Comparing dynf072.tile2.nc .........OK + Comparing dynf072.tile3.nc .........OK + Comparing dynf072.tile4.nc .........OK + Comparing dynf072.tile5.nc .........OK + Comparing dynf072.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 + 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.2016-10-06-00000.nc .........OK +Test 054 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_3d_warm_ccpp_cmeps_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod +Checking test 055 cpld_fv3_ccpp_mom6_cice_cmeps_restart results .... + Comparing phyf072.tile1.nc .........OK + Comparing phyf072.tile2.nc .........OK + Comparing phyf072.tile3.nc .........OK + Comparing phyf072.tile4.nc .........OK + Comparing phyf072.tile5.nc .........OK + Comparing phyf072.tile6.nc .........OK + Comparing dynf072.tile1.nc .........OK + Comparing dynf072.tile2.nc .........OK + Comparing dynf072.tile3.nc .........OK + Comparing dynf072.tile4.nc .........OK + Comparing dynf072.tile5.nc .........OK + Comparing dynf072.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 + 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.2016-10-06-00000.nc .........OK +Test 055 cpld_fv3_ccpp_mom6_cice_cmeps_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod +Checking test 056 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads 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/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/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.2016-10-05-00000.nc .........OK +Test 056 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod +Checking test 057 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp 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/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/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.2016-10-05-00000.nc .........OK +Test 057 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_warm_satmedmf_ccpp_cmeps_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod +Checking test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf results .... + 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 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 + 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.2016-10-04-00000.nc .........OK +Test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp384_cmeps_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod +Checking test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux 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/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/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.2016-10-05-00000.nc .........OK +Test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp384_cmeps_frac_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod +Checking test 060 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac 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/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/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.2016-10-05-00000.nc .........OK +Test 060 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_bmrt_ccpp_cmeps_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod +Checking test 061 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt results .... + 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 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 + Comparing RESTART/20130401.120000.coupler.res .........OK + Comparing RESTART/20130401.120000.fv_core.res.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile6.nc .........OK + 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/MOM.res.2013-04-01-12-00-00.nc .........OK + Comparing RESTART/MOM.res.2013-04-01-12-00-00_1.nc .........OK + Comparing RESTART/MOM.res.2013-04-01-12-00-00_2.nc .........OK + Comparing RESTART/MOM.res.2013-04-01-12-00-00_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/iced.2013-04-01-43200.nc .........OK +Test 061 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_bmwav_ccpp_cmeps_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod +Checking test 062 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt results .... + 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 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 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........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/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.2013-04-02-00000.nc .........OK +Test 062 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_6h_warm_debug_ccpp_cmeps_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod +Checking test 063 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug results .... + 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 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 + 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.2016-10-03-21600.nc .........OK + Comparing ufs.s2s.cpl.r.2016-10-03-21600.nc .........OK +Test 063 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug PASS + + REGRESSION TEST WAS SUCCESSFUL -Fri Oct 16 16:41:33 CDT 2020 -Elapsed time: 01h:19m:14s. Have a nice day! +Mon Oct 19 20:31:25 CDT 2020 +Elapsed time: 01h:38m:10s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 8de59421a5..5250a45d33 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Fri Oct 16 19:41:27 UTC 2020 +Mon Oct 19 20:51:37 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/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-20201015/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/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-20201015/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/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-20201015/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/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-20201015/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/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-20201015/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/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-20201015/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/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-20201015/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -840,8 +840,8 @@ Checking test 014 fv3_ccpp_multigases results .... Test 014 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -908,8 +908,8 @@ Checking test 015 fv3_ccpp_control_32bit results .... Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -964,8 +964,8 @@ Checking test 016 fv3_ccpp_stretched results .... Test 016 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1031,8 +1031,8 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1042,8 +1042,8 @@ Checking test 018 fv3_ccpp_regional_control results .... Test 018 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1051,8 +1051,8 @@ Checking test 019 fv3_ccpp_regional_restart results .... Test 019 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1062,20 +1062,20 @@ Checking test 020 fv3_ccpp_regional_quilt results .... Test 020 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_control_debug_prod Checking test 021 fv3_ccpp_control_debug results .... Test 021 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_stretched_nest_debug_prod Checking test 022 fv3_ccpp_stretched_nest_debug results .... Test 022 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmp_prod Checking test 023 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1122,8 +1122,8 @@ Checking test 023 fv3_ccpp_gfdlmp results .... Test 023 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmprad_gwd_prod Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1170,8 +1170,8 @@ Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Test 024 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1218,8 +1218,8 @@ Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Test 025 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfdlmp_hwrfsas_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_hwrfsas_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 026 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 026 fv3_ccpp_gfdlmp_hwrfsas results .... Test 026 fv3_ccpp_gfdlmp_hwrfsas PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1314,8 +1314,8 @@ Checking test 027 fv3_ccpp_csawmg results .... Test 027 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1362,8 +1362,8 @@ Checking test 028 fv3_ccpp_satmedmf results .... Test 028 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1410,8 +1410,8 @@ Checking test 029 fv3_ccpp_satmedmfq results .... Test 029 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1458,8 +1458,8 @@ Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Test 030 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1510,8 +1510,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1564,8 +1564,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1656,8 +1656,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1724,8 +1724,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1792,8 +1792,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1884,8 +1884,8 @@ Checking test 036 fv3_ccpp_rrfs_v1beta results .... Test 036 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfsv16_csawmg_prod Checking test 037 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1932,8 +1932,8 @@ Checking test 037 fv3_ccpp_gfsv16_csawmg results .... Test 037 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfsv16_csawmgt_prod Checking test 038 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1980,8 +1980,8 @@ Checking test 038 fv3_ccpp_gfsv16_csawmgt results .... Test 038 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gocart_clm_prod Checking test 039 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2028,8 +2028,8 @@ Checking test 039 fv3_ccpp_gocart_clm results .... Test 039 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfs_v16beta_flake_prod Checking test 040 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2096,8 +2096,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta_flake results .... Test 040 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2164,8 +2164,8 @@ Checking test 041 fv3_ccpp_gsd_debug results .... Test 041 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2232,8 +2232,8 @@ Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Test 042 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2300,8 +2300,8 @@ Checking test 043 fv3_ccpp_thompson_debug results .... Test 043 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2368,8 +2368,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Test 044 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/emc.enspara/FV3_RT/rt_38881/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2437,5 +2437,5 @@ Test 045 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Oct 16 20:26:14 UTC 2020 -Elapsed time: 00h:44m:48s. Have a nice day! +Mon Oct 19 22:29:29 UTC 2020 +Elapsed time: 01h:37m:53s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 6147bd6cf1..b9a1851d66 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Fri Oct 16 19:42:31 UTC 2020 +Mon Oct 19 23:21:16 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/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-20201015/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/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-20201015/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/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-20201015/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/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-20201015/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/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-20201015/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/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-20201015/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/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-20201015/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,8 +815,8 @@ Checking test 014 fv3_ccpp_gfdlmprad results .... Test 014 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -864,8 +864,8 @@ Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Test 015 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1062,8 +1062,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1129,8 +1129,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1140,8 +1140,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1149,8 +1149,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1160,8 +1160,8 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_regional_c768_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_regional_c768_prod Checking test 023 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1171,20 +1171,20 @@ Checking test 023 fv3_ccpp_regional_c768 results .... Test 023 fv3_ccpp_regional_c768 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1231,8 +1231,8 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,8 +1279,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1327,8 +1327,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfdlmp_hwrfsas_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_hwrfsas_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 029 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,8 +1375,8 @@ Checking test 029 fv3_ccpp_gfdlmp_hwrfsas results .... Test 029 fv3_ccpp_gfdlmp_hwrfsas PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1423,8 +1423,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1471,8 +1471,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1519,8 +1519,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/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 @@ -1567,8 +1567,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/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 @@ -1619,8 +1619,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1673,8 +1673,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1765,8 +1765,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1833,8 +1833,8 @@ Checking test 037 fv3_ccpp_thompson results .... Test 037 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/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 @@ -1901,8 +1901,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1993,8 +1993,8 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfsv16_csawmg_prod Checking test 040 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2041,8 +2041,8 @@ Checking test 040 fv3_ccpp_gfsv16_csawmg results .... Test 040 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfsv16_csawmgt_prod Checking test 041 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2089,8 +2089,8 @@ Checking test 041 fv3_ccpp_gfsv16_csawmgt results .... Test 041 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gocart_clm_prod Checking test 042 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2137,8 +2137,8 @@ Checking test 042 fv3_ccpp_gocart_clm results .... Test 042 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfs_v16beta_flake_prod Checking test 043 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2205,8 +2205,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta_flake results .... Test 043 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gsd_debug_prod Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2273,8 +2273,8 @@ Checking test 044 fv3_ccpp_gsd_debug results .... Test 044 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gsd_diag3d_debug_prod Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2341,8 +2341,8 @@ Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Test 045 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_thompson_debug_prod Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2409,8 +2409,8 @@ Checking test 046 fv3_ccpp_thompson_debug results .... Test 046 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_thompson_no_aero_debug_prod Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2477,8 +2477,8 @@ Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Test 047 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201015/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_45322/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2545,6 +2545,707 @@ Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Test 048 fv3_ccpp_rrfs_v1beta_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_1stepcold_ccpp_cmeps_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod +Checking test 049 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux 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/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/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.2016-10-05-00000.nc .........OK +Test 049 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp_cmeps_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod +Checking test 050 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux 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/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/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.2016-10-05-00000.nc .........OK +Test 050 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_3d_warm_ccpp_cmeps_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod +Checking test 051 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux results .... + Comparing phyf072.tile1.nc .........OK + Comparing phyf072.tile2.nc .........OK + Comparing phyf072.tile3.nc .........OK + Comparing phyf072.tile4.nc .........OK + Comparing phyf072.tile5.nc .........OK + Comparing phyf072.tile6.nc .........OK + Comparing dynf072.tile1.nc .........OK + Comparing dynf072.tile2.nc .........OK + Comparing dynf072.tile3.nc .........OK + Comparing dynf072.tile4.nc .........OK + Comparing dynf072.tile5.nc .........OK + Comparing dynf072.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 + 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.2016-10-06-00000.nc .........OK +Test 051 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_3d_warm_ccpp_cmeps_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod +Checking test 052 cpld_fv3_ccpp_mom6_cice_cmeps_restart results .... + Comparing phyf072.tile1.nc .........OK + Comparing phyf072.tile2.nc .........OK + Comparing phyf072.tile3.nc .........OK + Comparing phyf072.tile4.nc .........OK + Comparing phyf072.tile5.nc .........OK + Comparing phyf072.tile6.nc .........OK + Comparing dynf072.tile1.nc .........OK + Comparing dynf072.tile2.nc .........OK + Comparing dynf072.tile3.nc .........OK + Comparing dynf072.tile4.nc .........OK + Comparing dynf072.tile5.nc .........OK + Comparing dynf072.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 + 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.2016-10-06-00000.nc .........OK +Test 052 cpld_fv3_ccpp_mom6_cice_cmeps_restart PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp_cmeps_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod +Checking test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads 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/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/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.2016-10-05-00000.nc .........OK +Test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp_cmeps_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod +Checking test 054 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp 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/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/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.2016-10-05-00000.nc .........OK +Test 054 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_1d_warm_satmedmf_ccpp_cmeps_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod +Checking test 055 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf results .... + 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 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 + 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.2016-10-04-00000.nc .........OK +Test 055 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp384_cmeps_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod +Checking test 056 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux 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/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/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.2016-10-05-00000.nc .........OK +Test 056 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp384_cmeps_frac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod +Checking test 057 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac 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/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/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.2016-10-05-00000.nc .........OK +Test 057 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_1d_bmrt_ccpp_cmeps_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod +Checking test 058 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt results .... + 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 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 + Comparing RESTART/20130401.120000.coupler.res .........OK + Comparing RESTART/20130401.120000.fv_core.res.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.120000.sfc_data.tile6.nc .........OK + 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/MOM.res.2013-04-01-12-00-00.nc .........OK + Comparing RESTART/MOM.res.2013-04-01-12-00-00_1.nc .........OK + Comparing RESTART/MOM.res.2013-04-01-12-00-00_2.nc .........OK + Comparing RESTART/MOM.res.2013-04-01-12-00-00_3.nc .........OK + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/iced.2013-04-01-43200.nc .........OK +Test 058 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_1d_bmwav_ccpp_cmeps_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod +Checking test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt results .... + 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 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 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........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/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.2013-04-02-00000.nc .........OK +Test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_6h_warm_debug_ccpp_cmeps_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod +Checking test 060 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug results .... + 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 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 + 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.2016-10-03-21600.nc .........OK + Comparing ufs.s2s.cpl.r.2016-10-03-21600.nc .........OK +Test 060 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug PASS + + REGRESSION TEST WAS SUCCESSFUL -Fri Oct 16 21:02:33 UTC 2020 -Elapsed time: 01h:20m:07s. Have a nice day! +Tue Oct 20 02:21:19 UTC 2020 +Elapsed time: 03h:00m:08s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index 1ef19c47c5..ec01aeec3d 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -133,6 +133,10 @@ if [[ "${MAKE_OPT}" == *"WW3=Y"* ]]; then CMAKE_FLAGS="${CMAKE_FLAGS} -DWW3=Y" fi +if [[ "${MAKE_OPT}" == *"S2S=Y"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DS2S=Y" +fi + CMAKE_FLAGS=$(trim "${CMAKE_FLAGS}") if [ $clean_before = YES ] ; then diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 02daa2e065..5b33e06dc5 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -21,6 +21,22 @@ elif [ $MACHINE_ID = wcoss_dell_p3 ]; then TASKS_stretch=48 ; TPN_stretch=28 ; INPES_stretch=2 ; JNPES_stretch=4 TASKS_strnest=96 ; TPN_strnest=28 ; INPES_strnest=2 ; JNPES_strnest=4 + TASKS_cpl_dflt=318; TPN_cpl_dflt=28; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 + THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" + OPB_cpl_dflt="150 269"; IPB_cpl_dflt="270 317" + + TASKS_cpl_thrd=246; TPN_cpl_thrd=14; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 + THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" + OPB_cpl_thrd="78 197"; IPB_cpl_thrd="198 245" + + TASKS_cpl_bmrk=480; TPN_cpl_bmrk=28; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 + THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" + OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479" + + TASKS_cpl_wwav=520; TPN_cpl_wwav=28; INPES_cpl_wwav=6; JNPES_cpl_wwav=8 + THRD_cpl_wwav=1; WPG_cpl_wwav=24; MPB_cpl_wwav="0 287"; APB_cpl_wwav="0 311" + OPB_cpl_wwav="312 431"; IPB_cpl_wwav="432 479"; WPB_cpl_wwav="480 519" + elif [[ $MACHINE_ID = orion.* ]]; then TASKS_dflt=150 ; TPN_dflt=40 ; INPES_dflt=3 ; JNPES_dflt=8 @@ -28,6 +44,22 @@ elif [[ $MACHINE_ID = orion.* ]]; then TASKS_stretch=48 ; TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 TASKS_strnest=96 ; TPN_strnest=12 ; INPES_strnest=2 ; JNPES_strnest=4 + TASKS_cpl_dflt=318; TPN_cpl_dflt=40; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 + THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" + OPB_cpl_dflt="150 269"; IPB_cpl_dflt="270 317" + + TASKS_cpl_thrd=246; TPN_cpl_thrd=40; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 + THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" + OPB_cpl_thrd="78 197"; IPB_cpl_thrd="198 245" + + TASKS_cpl_bmrk=480; TPN_cpl_bmrk=40; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 + THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" + OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479" + + TASKS_cpl_wwav=520; TPN_cpl_wwav=40; INPES_cpl_wwav=6; JNPES_cpl_wwav=8 + THRD_cpl_wwav=1; WPG_cpl_wwav=24; MPB_cpl_wwav="0 287"; APB_cpl_wwav="0 311" + OPB_cpl_wwav="312 431"; IPB_cpl_wwav="432 479"; WPB_cpl_wwav="480 519" + elif [[ $MACHINE_ID = hera.* ]]; then TASKS_dflt=150 ; TPN_dflt=40 ; INPES_dflt=3 ; JNPES_dflt=8 @@ -35,6 +67,22 @@ elif [[ $MACHINE_ID = hera.* ]]; then TASKS_stretch=48 ; TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 TASKS_strnest=96 ; TPN_strnest=12 ; INPES_strnest=2 ; JNPES_strnest=4 + TASKS_cpl_dflt=318; TPN_cpl_dflt=40; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 + THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" + OPB_cpl_dflt="150 269"; IPB_cpl_dflt="270 317" + + TASKS_cpl_thrd=246; TPN_cpl_thrd=40; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 + THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" + OPB_cpl_thrd="78 197"; IPB_cpl_thrd="198 245" + + TASKS_cpl_bmrk=480; TPN_cpl_bmrk=40; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 + THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" + OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479" + + TASKS_cpl_wwav=520; TPN_cpl_wwav=40; INPES_cpl_wwav=6; JNPES_cpl_wwav=8 + THRD_cpl_wwav=1; WPG_cpl_wwav=24; MPB_cpl_wwav="0 287"; APB_cpl_wwav="0 311" + OPB_cpl_wwav="312 431"; IPB_cpl_wwav="432 479"; WPB_cpl_wwav="480 519" + elif [[ $MACHINE_ID = linux.* ]]; then if [[ $CI_TEST = true ]]; then @@ -200,6 +248,7 @@ export SHOUR=00 export FHMAX=${FHMAX:-`expr $DAYS \* 24`} export DT_ATMOS=1800 export FHCYC=24 +export FHROT=0 export LDIAG3D=.F. export QDIAG3D=.F. export MAX_OUTPUT_FIELDS=300 @@ -208,7 +257,7 @@ export MAX_OUTPUT_FIELDS=300 export DO_SPPT=.F. export DO_SHUM=.F. export DO_SKEB=.F. -export LNDP_TYPE=0 +export LNDP_TYPE=0 export N_VAR_LNDP=0 export SKEB=-999. export SPPT=-999. @@ -226,4 +275,103 @@ export IAU_DRYMASSFIXER=.false. # Regional export WRITE_RESTART_WITH_BCS=.false. + +export S2S=false +export coupling_interval_fast_sec=0 +} + +export_cpl () +{ +export S2S=true + +export TASKS=$TASKS_cpl_dflt +export TPN=$TPN_cpl_dflt +export INPES=$INPES_cpl_dflt +export JNPES=$JNPES_cpl_dflt +export THRD=$THRD_cpl_dflt + +export WRTTASK_PER_GROUP=$WPG_cpl_dflt +export med_petlist_bounds=$MPB_cpl_dflt +export atm_petlist_bounds=$APB_cpl_dflt +export ocn_petlist_bounds=$OPB_cpl_dflt +export ice_petlist_bounds=$IPB_cpl_dflt + +export ATMRES='C96' +# default ice and ocean resolution +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export SUITE_NAME='' +export MED_restart_data='' +export INPUT_NML="input.mom6.nml.IN" +export FIELD_TABLE="field_table" +#export FV3_RESTART_INTERVAL='0' +export RESTART_INTERVAL='0' +export FHROT='0' +export NSOUT='-1' +export FDIAG='6' +export NFHOUT='6' +#no high freq fv3 output +export NFHMAX_HF='-1' +export NFHOUT_HF='-1' +export CPLFLX='.T.' +export CPL='.true.' +export FRAC_GRID='.F.' +export NSTF_NAME='0,0,0,0,0' +export MOM6_RESTART_SETTING='n' +export med_model="nems" +export atm_model="fv3" +export ocn_model="mom6" +export ice_model="cice6" +export wav_model="ww3" +export cap_dbug_flag="0" +export use_coldstart="false" +# MOM6 river runoff +export MOM6_RIVER_RUNOFF='True' +# set USE_LA_LI2016 to the current default; this must be set False for restart repro +export MOM6_REPRO_LA='True' +# set the THERMO_SPANS_COUPLING to the current default; according to Gustavo and Alper, the correct setting is "False" +export MOM6_THERMO_SPAN='True' +export NPROC_ICE='48' +export DT_ATMOS='900' #needed for C96 cases +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export MOM_INPUT=MOM_input_template_025 +# defaults for CICE runtype and restart writing +export RUNTYPE='startup' +export DUMPFREQ='d' +export DUMPFREQ_N='35' +export USE_RESTART_TIME='.false.' +# set false for CICE6 +export RESTART_EXT='.false' +# resolution dependent files +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" +# setting to true will allow Frazil FW and Salt to be +# included in fluxes sent to ocean +export FRAZIL_FWSALT='.true.' +# default to write CICE average history files +export CICE_HIST_AVG='.true.' +# default setting for runid +export RUNID='unknown' +# for FV3: default values will be changed if doing a warm-warm restart +export WARM_START='.F.' +export MAKE_NH='.T.' +export NA_INIT='1' +export EXTERNAL_IC='.T.' +export NGGPS_IC='.T.' +export MOUNTAIN='.F.' +export CPLMODE='nems_orig' +export RESTART_PREFIX='' +export RESTART_SUFFIX='' +} +export_35d_run () +{ +export CNTL_DIR="" +export CNTLMED_DIR="" +export LIST_FILES="" } diff --git a/tests/edit_inputs.sh b/tests/edit_inputs.sh new file mode 100755 index 0000000000..5341bafa0d --- /dev/null +++ b/tests/edit_inputs.sh @@ -0,0 +1,60 @@ +#! /usr/bin/env bash +set -eu + +function edit_ice_in { + if [[ $DUMPFREQ == h ]]; then + DUMPFREQ_N=$(( DUMPFREQ_N*3600 )) + DUMPFREQ="s" + fi + + jday=$(date -d "${SYEAR}-${SMONTH}-${SDAY} ${SHOUR}:00:00" +%j) + istep0=$(( ((10#$jday-1)*86400 + 10#$SHOUR*3600) / DT_CICE )) + + # assumes processor shape = "slenderX2" + np2=$((NPROC_ICE/2)) + BLCKX=$((NX_GLB/$np2)) + BLCKY=$((NY_GLB/2)) + + sed -e "s/YEAR_INIT/$SYEAR/g" \ + -e "s/ISTEP0/$istep0/g" \ + -e "s/DT_CICE/$DT_CICE/g" \ + -e "s/CICEGRID/$CICEGRID/g" \ + -e "s/CICEMASK/$CICEMASK/g" \ + -e "s/NPROC_ICE/$NPROC_ICE/g" \ + -e "s/NX_GLB/$NX_GLB/g" \ + -e "s/NY_GLB/$NY_GLB/g" \ + -e "s/BLCKX/$BLCKX/g" \ + -e "s/BLCKY/$BLCKY/g" \ + -e "s/RUNTYPE/$RUNTYPE/g" \ + -e "s/RUNID/$RUNID/g" \ + -e "s/CICE_HIST_AVG/$CICE_HIST_AVG/g" \ + -e "s/RESTART_EXT/$RESTART_EXT/g" \ + -e "s/USE_RESTART_TIME/$USE_RESTART_TIME/g" \ + -e "s/DUMPFREQ_N/$DUMPFREQ_N/g" \ + -e "s/DUMPFREQ/$DUMPFREQ/g" \ + -e "s/FRAZIL_FWSALT/$FRAZIL_FWSALT/g" +} + +function edit_mom_input { + + sed -e "s/DT_THERM_MOM6/$DT_THERM_MOM6/g" \ + -e "s/DT_DYNAM_MOM6/$DT_DYNAM_MOM6/g" \ + -e "s/MOM6_RIVER_RUNOFF/$MOM6_RIVER_RUNOFF/g" \ + -e "s/MOM6_THERMO_SPAN/$MOM6_THERMO_SPAN/g" \ + -e "s/MOM6_REPRO_LA/$MOM6_REPRO_LA/g" \ + -e "s/NX_GLB/$NX_GLB/g" \ + -e "s/NY_GLB/$NY_GLB/g" \ + -e "s/CHLCLIM/$CHLCLIM/g" +} + +function edit_data_table { + sed -e "s/FRUNOFF/$FRUNOFF/g" +} + +function edit_diag_table { + sed -e "s/YMD/$SYEAR$SMONTH$SDAY/g" \ + -e "s/ATMRES/$ATMRES/g" \ + -e "s/SYEAR/$SYEAR/g" \ + -e "s/SMONTH/$SMONTH/g" \ + -e "s/SDAY/$SDAY/g" +} diff --git a/tests/fv3_conf/cpld_fv3_mom6_cice_atm_flux_run.IN b/tests/fv3_conf/cpld_fv3_mom6_cice_atm_flux_run.IN new file mode 100644 index 0000000000..08ba8d975d --- /dev/null +++ b/tests/fv3_conf/cpld_fv3_mom6_cice_atm_flux_run.IN @@ -0,0 +1,79 @@ +mkdir INPUT RESTART history MOM6_OUTPUT + +if [[ $ATMRES == 'C96' ]]; then + FV3_DIR=FV3_input_data +else + FV3_DIR=FV3_input_data${ATMRES#C} +fi + +ICERES="${OCNRES:0:1}.${OCNRES:1}" + +# FV3 fixed input +cp @[RTPWD]/${FV3_DIR}/INPUT/aerosol.dat . +cp @[RTPWD]/${FV3_DIR}/INPUT/co2historicaldata_201*.txt . +cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . +cp @[RTPWD]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . +if [ $OZ_PHYS_NEW = .T. ]; then + cp @[RTPWD]/${FV3_DIR}/ozprdlos_2015_new_sbuv03_tclm15_nuchem.f77 ./global_o3prdlos.f77 +elif [ $OZ_PHYS_OLD = .T. ]; then + cp @[RTPWD]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . +fi +cp @[RTPWD]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[RTPWD]/${FV3_DIR}/*grb . +cp @[RTPWD]/${FV3_DIR}/@[FIELD_TABLE] ./field_table +cp @[RTPWD]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT +cp @[RTPWD]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT +if [ $FRAC_GRID = .F. ]; then + cp @[RTPWD]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT +else + cp @[RTPWD]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/oro_data*.nc ./INPUT +fi +cp @[RTPWD]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc +cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT + +# MOM6 fixed input +cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT + +# CICE fixed input +cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . +cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . +cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . + +# No restart +if [ $WARM_START = .F. ]; then + # ICs + if [ $FRAC_GRID = .F. ]; then + cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_data*.nc ./INPUT + cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_data*.nc ./INPUT + else + cp @[RTPWD]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/sfc_data*.nc ./INPUT + cp @[RTPWD]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/gfs_data*.nc ./INPUT + fi + cp @[RTPWD]/MOM6_IC/MOM*.nc ./INPUT + cp @[RTPWD]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].res_2016100300.nc ./cice_model.res.nc + +# Restart +else + # Restart files + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/coupler.res ./INPUT + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/fv_*.nc ./INPUT + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/sfc_data*.nc ./INPUT + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/phy_data*.nc ./INPUT + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM*.nc ./INPUT + + # CMEPS restart and pointer files + #cp ${DEP_RUN}${RT_SUFFIX}/RESTART/ufs.s2s.cpl.r.2016-10-05-00000.nc . + cp ../${DEP_RUN}${RT_SUFFIX}/ufs.s2s.cpl.r.2016-10-05-00000.nc . + RFILE="ufs.s2s.cpl.r.2016-10-05-00000.nc" + ls -1 ${RFILE}>rpointer.cpl + + # CICE restart and pointer files + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/iced.2016-10-05-00000.nc ./INPUT + RFILE="iced.2016-10-05-00000.nc" + ls -1 "./INPUT/"${RFILE}>ice.restart_file +fi + +# CCPP +if [[ ! $SUITE_NAME == '' ]]; then + cp ${PATHTR}/FV3/ccpp/suites/suite_@[SUITE_NAME].xml . +fi diff --git a/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_35d_run.IN b/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_35d_run.IN new file mode 100644 index 0000000000..8faec3dfdb --- /dev/null +++ b/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_35d_run.IN @@ -0,0 +1,53 @@ +mkdir INPUT RESTART history MOM6_OUTPUT + +if [[ $ATMRES == 'C96' ]]; then + FV3_DIR=FV3_input_data +else + FV3_DIR=FV3_input_data${ATMRES#C} +fi + +ICERES="${OCNRES:0:1}.${OCNRES:1}" + +BM_IC=BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR} +FV3_IC=${BM_IC}/gfs/@[ATMRES]/INPUT +MOM6_IC=${BM_IC}/mom6_da +CICE_IC=${BM_IC}/cpc + +# FV3 fixed input +cp @[RTPWD]/${FV3_DIR}/INPUT/aerosol.dat . +cp @[RTPWD]/FV3_input_bm2/INPUT/co2historicaldata_201*.txt . +cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . +cp @[RTPWD]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . +if [ $OZ_PHYS_NEW = .T. ]; then + cp @[RTPWD]/${FV3_DIR}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +elif [ $OZ_PHYS_OLD = .T. ]; then + cp @[RTPWD]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . +fi +cp @[RTPWD]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[RTPWD]/${FV3_DIR}/*grb . +cp @[RTPWD]/${FV3_DIR}/@[FIELD_TABLE] ./field_table +cp @[RTPWD]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT +cp @[RTPWD]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT +cp @[RTPWD]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT +cp @[RTPWD]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc +cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT + +# MOM6 fixed input +cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT + +# CICE fixed input +cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . +cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . +cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . + +# ICs +cp @[RTPWD]/${FV3_IC}/sfc_data*.nc ./INPUT +cp @[RTPWD]/${FV3_IC}/gfs_data*.nc ./INPUT +cp @[RTPWD]/${MOM6_IC}/MOM*.nc ./INPUT +# the BM ICs are still named cice5 and need to remain so until P5.0 is completed +cp @[RTPWD]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc + +# CCPP +if [[ ! $SUITE_NAME == '' ]]; then + cp ${PATHTR}/FV3/ccpp/suites/suite_@[SUITE_NAME].xml . +fi diff --git a/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_restart_run.IN b/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_restart_run.IN new file mode 100644 index 0000000000..b8a27e6353 --- /dev/null +++ b/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_restart_run.IN @@ -0,0 +1,82 @@ +mkdir INPUT RESTART history MOM6_OUTPUT + +if [[ $ATMRES == 'C96' ]]; then + FV3_DIR=FV3_input_data +else + FV3_DIR=FV3_input_data${ATMRES#C} +fi + +ICERES="${OCNRES:0:1}.${OCNRES:1}" + +BM_IC=BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR} +FV3_IC=${BM_IC}/gfs/@[ATMRES]/INPUT +MOM6_IC=${BM_IC}/mom6_da +CICE_IC=${BM_IC}/cpc +RESTART_PREFIX=${SYEAR}${SMONTH}${SDAY}.${FHROT}0000. +RESTART_SUFFIX=.${SYEAR}-${SMONTH}-${SDAY}-${FHROT}-00-00 +RESTART_INPUTDIR=RT-Baselines_1d_bmrt_ccpp_cmeps +SECS=$((FHROT*3600)) + +# FV3 fixed input +cp @[RTPWD]/${FV3_DIR}/INPUT/aerosol.dat . +cp @[RTPWD]/FV3_input_bm2/INPUT/co2historicaldata_201*.txt . +cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . +cp @[RTPWD]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . +if [ $OZ_PHYS_NEW = .T. ]; then + cp @[RTPWD]/${FV3_DIR}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +elif [ $OZ_PHYS_OLD = .T. ]; then + cp @[RTPWD]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . +fi +cp @[RTPWD]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[RTPWD]/${FV3_DIR}/*grb . +cp @[RTPWD]/${FV3_DIR}/@[FIELD_TABLE] ./field_table +cp @[RTPWD]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT +cp @[RTPWD]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT +cp @[RTPWD]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT +cp @[RTPWD]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc +cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT + +# MOM6 fixed input +cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT + +# CICE fixed input +cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . +cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . +cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . + +# +# FIXME: need to copy in from just completed 1-d run, not baseline +# PREFIX and SUFFIX are known +# +# ICs: FV3 timestamped prefix +cp @[RTPWD]/${RESTART_INPUTDIR}/RESTART/${RESTART_PREFIX}* ./INPUT +RFILE="INPUT/${RESTART_PREFIX}" +for oldname in ${RFILE}*; do + lengthRFILE=${#RFILE} + newname=${oldname:$lengthRFILE} + mv $oldname INPUT/$newname +done + +# ICs: MOM6 timestamped suffix +cp @[RTPWD]/${RESTART_INPUTDIR}/RESTART/MOM.res${RESTART_SUFFIX}* ./INPUT +RFILE="INPUT/MOM.res${RESTART_SUFFIX}" +for oldname in ${RFILE}*; do + lengthRFILE=${#RFILE} + newname=${oldname:$lengthRFILE} + mv $oldname INPUT/"MOM.res"$newname +done + +# ICs: Mediator restart and pointer file +cp @[RTPWD]/${RESTART_INPUTDIR}/RESTART/ufs.s2s.cpl.r.${SYEAR}-${SMONTH}-${SDAY}-${SECS}.nc . +RFILE="ufs.s2s.cpl.r.${SYEAR}-${SMONTH}-${SDAY}-${SECS}.nc" +ls -1 ${RFILE}>rpointer.cpl + +# ICs: CICE restart and pointer file +cp @[RTPWD]/${RESTART_INPUTDIR}/RESTART/iced.${SYEAR}-${SMONTH}-${SDAY}-${SECS}.nc ./INPUT +RFILE="iced.${SYEAR}-${SMONTH}-${SDAY}-${SECS}.nc" +ls -1 "./INPUT/"${RFILE}>ice.restart_file + +# CCPP +if [[ ! $SUITE_NAME == '' ]]; then + cp ${PATHTR}/FV3/ccpp/suites/suite_@[SUITE_NAME].xml . +fi diff --git a/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_rt_run.IN b/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_rt_run.IN new file mode 100644 index 0000000000..8faec3dfdb --- /dev/null +++ b/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_rt_run.IN @@ -0,0 +1,53 @@ +mkdir INPUT RESTART history MOM6_OUTPUT + +if [[ $ATMRES == 'C96' ]]; then + FV3_DIR=FV3_input_data +else + FV3_DIR=FV3_input_data${ATMRES#C} +fi + +ICERES="${OCNRES:0:1}.${OCNRES:1}" + +BM_IC=BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR} +FV3_IC=${BM_IC}/gfs/@[ATMRES]/INPUT +MOM6_IC=${BM_IC}/mom6_da +CICE_IC=${BM_IC}/cpc + +# FV3 fixed input +cp @[RTPWD]/${FV3_DIR}/INPUT/aerosol.dat . +cp @[RTPWD]/FV3_input_bm2/INPUT/co2historicaldata_201*.txt . +cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . +cp @[RTPWD]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . +if [ $OZ_PHYS_NEW = .T. ]; then + cp @[RTPWD]/${FV3_DIR}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +elif [ $OZ_PHYS_OLD = .T. ]; then + cp @[RTPWD]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . +fi +cp @[RTPWD]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[RTPWD]/${FV3_DIR}/*grb . +cp @[RTPWD]/${FV3_DIR}/@[FIELD_TABLE] ./field_table +cp @[RTPWD]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT +cp @[RTPWD]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT +cp @[RTPWD]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT +cp @[RTPWD]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc +cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT + +# MOM6 fixed input +cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT + +# CICE fixed input +cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . +cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . +cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . + +# ICs +cp @[RTPWD]/${FV3_IC}/sfc_data*.nc ./INPUT +cp @[RTPWD]/${FV3_IC}/gfs_data*.nc ./INPUT +cp @[RTPWD]/${MOM6_IC}/MOM*.nc ./INPUT +# the BM ICs are still named cice5 and need to remain so until P5.0 is completed +cp @[RTPWD]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc + +# CCPP +if [[ ! $SUITE_NAME == '' ]]; then + cp ${PATHTR}/FV3/ccpp/suites/suite_@[SUITE_NAME].xml . +fi diff --git a/tests/fv3_conf/cpld_fv3_mom6_cice_ww3_bmark_35d_run.IN b/tests/fv3_conf/cpld_fv3_mom6_cice_ww3_bmark_35d_run.IN new file mode 100644 index 0000000000..24bb218f65 --- /dev/null +++ b/tests/fv3_conf/cpld_fv3_mom6_cice_ww3_bmark_35d_run.IN @@ -0,0 +1,59 @@ +mkdir INPUT RESTART history MOM6_OUTPUT + +if [[ $ATMRES == 'C96' ]]; then + FV3_DIR=FV3_input_data +else + FV3_DIR=FV3_input_data${ATMRES#C} +fi + +ICERES="${OCNRES:0:1}.${OCNRES:1}" + +BM_IC=BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR} +FV3_IC=${BM_IC}/gfs/@[ATMRES]/INPUT +MOM6_IC=${BM_IC}/mom6_da +CICE_IC=${BM_IC}/cpc +WW3_IC=${BM_IC}/ww3 + +# FV3 fixed input +cp @[RTPWD]/${FV3_DIR}/INPUT/aerosol.dat . +cp @[RTPWD]/FV3_input_bm2/INPUT/co2historicaldata_201*.txt . +cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . +cp @[RTPWD]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . +if [ $OZ_PHYS_NEW = .T. ]; then + cp @[RTPWD]/${FV3_DIR}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +elif [ $OZ_PHYS_OLD = .T. ]; then + cp @[RTPWD]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . +fi +cp @[RTPWD]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[RTPWD]/${FV3_DIR}/*grb . +cp @[RTPWD]/${FV3_DIR}/@[FIELD_TABLE] ./field_table +cp @[RTPWD]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT +cp @[RTPWD]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT +cp @[RTPWD]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT +cp @[RTPWD]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc +cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT + +# MOM6 fixed input +cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT + +# CICE fixed input +cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . +cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . +cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . + +# WW3 fix/input +cp @[RTPWD]/WW3_input_data/mod_def.* . +cp @[RTPWD]/WW3_input_data/ww3_multi_35d.inp ww3_multi.inp + +# ICs +cp @[RTPWD]/${FV3_IC}/sfc_data*.nc ./INPUT +cp @[RTPWD]/${FV3_IC}/gfs_data*.nc ./INPUT +cp @[RTPWD]/${MOM6_IC}/MOM*.nc ./INPUT +# the BM ICs are still named cice5 and need to remain so until P5.0 is completed +cp @[RTPWD]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc +cp @[RTPWD]/${WW3_IC}/*.000000.restart.gwes_30m ./restart.gwes_30m + +# CCPP +if [[ ! $SUITE_NAME == '' ]]; then + cp ${PATHTR}/FV3/ccpp/suites/suite_@[SUITE_NAME].xml . +fi diff --git a/tests/fv3_conf/cpld_fv3_mom6_cice_ww3_bmark_rt_run.IN b/tests/fv3_conf/cpld_fv3_mom6_cice_ww3_bmark_rt_run.IN new file mode 100644 index 0000000000..f079f1692b --- /dev/null +++ b/tests/fv3_conf/cpld_fv3_mom6_cice_ww3_bmark_rt_run.IN @@ -0,0 +1,57 @@ +mkdir INPUT RESTART history MOM6_OUTPUT + +if [[ $ATMRES == 'C96' ]]; then + FV3_DIR=FV3_input_data +else + FV3_DIR=FV3_input_data${ATMRES#C} +fi + +ICERES="${OCNRES:0:1}.${OCNRES:1}" + +BM_IC=BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR} +FV3_IC=${BM_IC}/gfs/@[ATMRES]/INPUT +MOM6_IC=${BM_IC}/mom6_da +CICE_IC=${BM_IC}/cpc + +# FV3 fixed input +cp @[RTPWD]/${FV3_DIR}/INPUT/aerosol.dat . +cp @[RTPWD]/FV3_input_bm2/INPUT/co2historicaldata_201*.txt . +cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . +cp @[RTPWD]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . +if [ $OZ_PHYS_NEW = .T. ]; then + cp @[RTPWD]/${FV3_DIR}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +elif [ $OZ_PHYS_OLD = .T. ]; then + cp @[RTPWD]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . +fi +cp @[RTPWD]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[RTPWD]/${FV3_DIR}/*grb . +cp @[RTPWD]/${FV3_DIR}/@[FIELD_TABLE] ./field_table +cp @[RTPWD]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT +cp @[RTPWD]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT +cp @[RTPWD]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT +cp @[RTPWD]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc +cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT + +# MOM6 fixed input +cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT + +# CICE fixed input +cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . +cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . +cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . + +# WW3 fix/input +cp @[RTPWD]/WW3_input_data/mod_def.* . +cp @[RTPWD]/WW3_input_data/ww3_multi.inp . + +# ICs +cp @[RTPWD]/${FV3_IC}/sfc_data*.nc ./INPUT +cp @[RTPWD]/${FV3_IC}/gfs_data*.nc ./INPUT +cp @[RTPWD]/${MOM6_IC}/MOM*.nc ./INPUT +# the BM ICs are still named cice5 and need to remain so until P5.0 is completed +cp @[RTPWD]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc + +# CCPP +if [[ ! $SUITE_NAME == '' ]]; then + cp ${PATHTR}/FV3/ccpp/suites/suite_@[SUITE_NAME].xml . +fi diff --git a/tests/parm/MOM_input_template_025 b/tests/parm/MOM_input_template_025 new file mode 100644 index 0000000000..de9f09578f --- /dev/null +++ b/tests/parm/MOM_input_template_025 @@ -0,0 +1,887 @@ +/* This input file provides the adjustable run-time parameters for version 6 of + the Modular Ocean Model (MOM6), a numerical ocean model developed at NOAA-GFDL. + Where appropriate, parameters use usually given in MKS units. + + This particular file is for the example in OM4_025. + + This MOM_input file typically contains only the non-default values that are + needed to reproduce this example. A full list of parameters for this example + can be found in the corresponding MOM_parameter_doc.all file which is + generated by the model at run-time. */ + +! === module MOM === +USE_REGRIDDING = True ! [Boolean] default = False + ! If True, use the ALE algorithm (regridding/remapping). + ! If False, use the layered isopycnal algorithm. +THICKNESSDIFFUSE = True ! [Boolean] default = False + ! If true, interface heights are diffused with a + ! coefficient of KHTH. +THICKNESSDIFFUSE_FIRST = True ! [Boolean] default = False + ! If true, do thickness diffusion before dynamics. + ! This is only used if THICKNESSDIFFUSE is true. +DT = DT_DYNAM_MOM6 ! [s] + ! The (baroclinic) dynamics time step. The time-step that + ! is actually used will be an integer fraction of the + ! forcing time-step (DT_FORCING in ocean-only mode or the + ! coupling timestep in coupled mode.) +DT_THERM = DT_THERM_MOM6 ! [s] default = 900.0 + ! The thermodynamic and tracer advection time step. + ! Ideally DT_THERM should be an integer multiple of DT + ! and less than the forcing or coupling time-step, unless + ! THERMO_SPANS_COUPLING is true, in which case DT_THERM + ! can be an integer multiple of the coupling timestep. By + ! default DT_THERM is set to DT. +THERMO_SPANS_COUPLING = MOM6_THERMO_SPAN ! [Boolean] default = False + ! If true, the MOM will take thermodynamic and tracer + ! timesteps that can be longer than the coupling timestep. + ! The actual thermodynamic timestep that is used in this + ! case is the largest integer multiple of the coupling + ! timestep that is less than or equal to DT_THERM. +HFREEZE = 20.0 ! [m] default = -1.0 + ! If HFREEZE > 0, melt potential will be computed. The actual depth + ! over which melt potential is computed will be min(HFREEZE, OBLD) + ! where OBLD is the boundary layer depth. If HFREEZE <= 0 (default) + ! melt potential will not be computed. +FRAZIL = True ! [Boolean] default = False + ! If true, water freezes if it gets too cold, and the + ! the accumulated heat deficit is returned in the + ! surface state. FRAZIL is only used if + ! ENABLE_THERMODYNAMICS is true. +DO_GEOTHERMAL = True ! [Boolean] default = False + ! If true, apply geothermal heating. +BOUND_SALINITY = True ! [Boolean] default = False + ! If true, limit salinity to being positive. (The sea-ice + ! model may ask for more salt than is available and + ! drive the salinity negative otherwise.) +C_P = 3992.0 ! [J kg-1 K-1] default = 3991.86795711963 + ! The heat capacity of sea water, approximated as a + ! constant. This is only used if ENABLE_THERMODYNAMICS is + ! true. The default value is from the TEOS-10 definition + ! of conservative temperature. +CHECK_BAD_SURFACE_VALS = True ! [Boolean] default = False + ! If true, check the surface state for ridiculous values. +BAD_VAL_SSH_MAX = 50.0 ! [m] default = 20.0 + ! The value of SSH above which a bad value message is + ! triggered, if CHECK_BAD_SURFACE_VALS is true. +BAD_VAL_SSS_MAX = 75.0 ! [PPT] default = 45.0 + ! The value of SSS above which a bad value message is + ! triggered, if CHECK_BAD_SURFACE_VALS is true. +BAD_VAL_SST_MAX = 65.0 ! [deg C] default = 45.0, PTripp: changed from 55.0 on 12/28/2017 + ! The value of SST above which a bad value message is + ! triggered, if CHECK_BAD_SURFACE_VALS is true. +BAD_VAL_SST_MIN = -3.0 ! [deg C] default = -2.1 + ! The value of SST below which a bad value message is + ! triggered, if CHECK_BAD_SURFACE_VALS is true. +WRITE_GEOM = 2 ! default = 1 + ! If =0, never write the geometry and vertical grid files. + ! If =1, write the geometry and vertical grid files only for + ! a new simulation. If =2, always write the geometry and + ! vertical grid files. Other values are invalid. + +! === module MOM_domains === +TRIPOLAR_N = True ! [Boolean] default = False + ! Use tripolar connectivity at the northern edge of the + ! domain. With TRIPOLAR_N, NIGLOBAL must be even. +NIGLOBAL = NX_GLB ! + ! The total number of thickness grid points in the + ! x-direction in the physical domain. With STATIC_MEMORY_ + ! this is set in MOM_memory.h at compile time. +NJGLOBAL = NY_GLB ! + ! The total number of thickness grid points in the + ! y-direction in the physical domain. With STATIC_MEMORY_ + ! this is set in MOM_memory.h at compile time. + +! === module MOM_hor_index === +! Sets the horizontal array index types. + +! === module MOM_verticalGrid === +! Parameters providing information about the vertical grid. +NK = 75 ! [nondim] + ! The number of model layers. + +! === module MOM_fixed_initialization === +INPUTDIR = "INPUT" ! default = "." + ! The directory in which input files are found. + +! === module MOM_grid_init === +GRID_CONFIG = "mosaic" ! + ! A character string that determines the method for + ! defining the horizontal grid. Current options are: + ! mosaic - read the grid from a mosaic (supergrid) + ! file set by GRID_FILE. + ! cartesian - use a (flat) Cartesian grid. + ! spherical - use a simple spherical grid. + ! mercator - use a Mercator spherical grid. +GRID_FILE = "ocean_hgrid.nc" ! + ! Name of the file from which to read horizontal grid data. +TOPO_CONFIG = "file" ! + ! This specifies how bathymetry is specified: + ! file - read bathymetric information from the file + ! specified by (TOPO_FILE). + ! flat - flat bottom set to MAXIMUM_DEPTH. + ! bowl - an analytically specified bowl-shaped basin + ! ranging between MAXIMUM_DEPTH and MINIMUM_DEPTH. + ! spoon - a similar shape to 'bowl', but with an vertical + ! wall at the southern face. + ! halfpipe - a zonally uniform channel with a half-sine + ! profile in the meridional direction. + ! benchmark - use the benchmark test case topography. + ! Neverland - use the Neverland test case topography. + ! DOME - use a slope and channel configuration for the + ! DOME sill-overflow test case. + ! ISOMIP - use a slope and channel configuration for the + ! ISOMIP test case. + ! DOME2D - use a shelf and slope configuration for the + ! DOME2D gravity current/overflow test case. + ! Kelvin - flat but with rotated land mask. + ! seamount - Gaussian bump for spontaneous motion test case. + ! shelfwave - exponential slope for shelfwave test case. + ! supercritical - flat but with 8.95 degree land mask. + ! Phillips - ACC-like idealized topography used in the Phillips config. + ! dense - Denmark Strait-like dense water formation and overflow. + ! USER - call a user modified routine. +TOPO_FILE = "ocean_topog.nc" ! default = "topog.nc" + ! The file from which the bathymetry is read. +TOPO_EDITS_FILE = "All_edits.nc" ! default = "" + ! The file from which to read a list of i,j,z topography overrides. +MAXIMUM_DEPTH = 6500.0 ! [m] + ! The maximum depth of the ocean. +MINIMUM_DEPTH = 9.5 ! [m] default = 0.0 + ! If MASKING_DEPTH is unspecified, then anything shallower than + ! MINIMUM_DEPTH is assumed to be land and all fluxes are masked out. + ! If MASKING_DEPTH is specified, then all depths shallower than + ! MINIMUM_DEPTH but deeper than MASKING_DEPTH are rounded to MINIMUM_DEPTH. +GRID_ROTATION_ANGLE_BUGS = False ! [Boolean] default = True + ! If true, use an older algorithm to calculate the sine and + ! cosines needed rotate between grid-oriented directions and + ! true north and east. Differences arise at the tripolar fold +USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = True + ! If true, use older code that incorrectly sets the longitude + ! in some points along the tripolar fold to be off by 360 degrees + +! === module MOM_open_boundary === +! Controls where open boundaries are located, what kind of boundary condition to impose, and what data to apply, if any. +MASKING_DEPTH = 0.0 ! [m] default = -9999.0 + ! The depth below which to mask points as land points, for which all + ! fluxes are zeroed out. MASKING_DEPTH is ignored if negative. +CHANNEL_CONFIG = "list" ! default = "none" + ! A parameter that determines which set of channels are + ! restricted to specific widths. Options are: + ! none - All channels have the grid width. + ! global_1deg - Sets 16 specific channels appropriate + ! for a 1-degree model, as used in CM2G. + ! list - Read the channel locations and widths from a + ! text file, like MOM_channel_list in the MOM_SIS + ! test case. + ! file - Read open face widths everywhere from a + ! NetCDF file on the model grid. +CHANNEL_LIST_FILE = "MOM_channels_global_025" ! default = "MOM_channel_list" + ! The file from which the list of narrowed channels is read. + +! === module MOM_tracer_registry === + +! === module MOM_EOS === +DTFREEZE_DP = -7.75E-08 ! [deg C Pa-1] default = 0.0 + ! When TFREEZE_FORM=LINEAR, + ! this is the derivative of the freezing potential + ! temperature with pressure. + +! === module MOM_restart === +PARALLEL_RESTARTFILES = True ! [Boolean] default = False + ! If true, each processor writes its own restart file, + ! otherwise a single restart file is generated + +! === module MOM_tracer_flow_control === +USE_IDEAL_AGE_TRACER = False ! [Boolean] default = False + ! If true, use the ideal_age_example tracer package. + +! === module ideal_age_example === + +! === module MOM_coord_initialization === +COORD_CONFIG = "file" ! + ! This specifies how layers are to be defined: + ! ALE or none - used to avoid defining layers in ALE mode + ! file - read coordinate information from the file + ! specified by (COORD_FILE). + ! BFB - Custom coords for buoyancy-forced basin case + ! based on SST_S, T_BOT and DRHO_DT. + ! linear - linear based on interfaces not layers + ! layer_ref - linear based on layer densities + ! ts_ref - use reference temperature and salinity + ! ts_range - use range of temperature and salinity + ! (T_REF and S_REF) to determine surface density + ! and GINT calculate internal densities. + ! gprime - use reference density (RHO_0) for surface + ! density and GINT calculate internal densities. + ! ts_profile - use temperature and salinity profiles + ! (read from COORD_FILE) to set layer densities. + ! USER - call a user modified routine. +COORD_FILE = "layer_coord.nc" ! + ! The file from which the coordinate densities are read. +REGRIDDING_COORDINATE_MODE = "HYCOM1" ! default = "LAYER" + ! Coordinate mode for vertical regridding. + ! Choose among the following possibilities: + ! LAYER - Isopycnal or stacked shallow water layers + ! ZSTAR, Z* - stetched geopotential z* + ! SIGMA_SHELF_ZSTAR - stetched geopotential z* ignoring shelf + ! SIGMA - terrain following coordinates + ! RHO - continuous isopycnal + ! HYCOM1 - HyCOM-like hybrid coordinate + ! SLIGHT - stretched coordinates above continuous isopycnal + ! ADAPTIVE - optimize for smooth neutral density surfaces +BOUNDARY_EXTRAPOLATION = True ! [Boolean] default = False + ! When defined, a proper high-order reconstruction + ! scheme is used within boundary cells rather + ! than PCM. E.g., if PPM is used for remapping, a + ! PPM reconstruction will also be used within + ! boundary cells. +ALE_COORDINATE_CONFIG = "HYBRID:hycom1_75_800m.nc,sigma2,FNC1:2,4000,4.5,.01" ! default = "UNIFORM" + ! Determines how to specify the coordinate + ! resolution. Valid options are: + ! PARAM - use the vector-parameter ALE_RESOLUTION + ! UNIFORM[:N] - uniformly distributed + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,dz + ! or FILE:lev.nc,interfaces=zw + ! WOA09[:N] - the WOA09 vertical grid (approximately) + ! FNC1:string - FNC1:dz_min,H_total,power,precision + ! HYBRID:string - read from a file. The string specifies + ! the filename and two variable names, separated + ! by a comma or space, for sigma-2 and dz. e.g. + ! HYBRID:vgrid.nc,sigma2,dz +!ALE_RESOLUTION = 7*2.0, 2*2.01, 2.02, 2.03, 2.05, 2.08, 2.11, 2.15, 2.21, 2.2800000000000002, 2.37, 2.48, 2.61, 2.77, 2.95, 3.17, 3.4299999999999997, 3.74, 4.09, 4.49, 4.95, 5.48, 6.07, 6.74, 7.5, 8.34, 9.280000000000001, 10.33, 11.49, 12.77, 14.19, 15.74, 17.450000000000003, 19.31, 21.35, 23.56, 25.97, 28.580000000000002, 31.41, 34.47, 37.77, 41.32, 45.14, 49.25, 53.65, 58.370000000000005, 63.42, 68.81, 74.56, 80.68, 87.21000000000001, 94.14, 101.51, 109.33, 117.62, 126.4, 135.68, 145.5, 155.87, 166.81, 178.35, 190.51, 203.31, 216.78, 230.93, 245.8, 261.42, 277.83 ! [m] + ! The distribution of vertical resolution for the target + ! grid used for Eulerian-like coordinates. For example, + ! in z-coordinate mode, the parameter is a list of level + ! thicknesses (in m). In sigma-coordinate mode, the list + ! is of non-dimensional fractions of the water column. +!TARGET_DENSITIES = 1010.0, 1014.3034, 1017.8088, 1020.843, 1023.5566, 1025.813, 1027.0275, 1027.9114, 1028.6422, 1029.2795, 1029.852, 1030.3762, 1030.8626, 1031.3183, 1031.7486, 1032.1572, 1032.5471, 1032.9207, 1033.2798, 1033.6261, 1033.9608, 1034.2519, 1034.4817, 1034.6774, 1034.8508, 1035.0082, 1035.1533, 1035.2886, 1035.4159, 1035.5364, 1035.6511, 1035.7608, 1035.8661, 1035.9675, 1036.0645, 1036.1554, 1036.2411, 1036.3223, 1036.3998, 1036.4739, 1036.5451, 1036.6137, 1036.68, 1036.7441, 1036.8062, 1036.8526, 1036.8874, 1036.9164, 1036.9418, 1036.9647, 1036.9857, 1037.0052, 1037.0236, 1037.0409, 1037.0574, 1037.0738, 1037.0902, 1037.1066, 1037.123, 1037.1394, 1037.1558, 1037.1722, 1037.1887, 1037.206, 1037.2241, 1037.2435, 1037.2642, 1037.2866, 1037.3112, 1037.3389, 1037.3713, 1037.4118, 1037.475, 1037.6332, 1037.8104, 1038.0 ! [m] + ! HYBRID target densities for itnerfaces +REGRID_COMPRESSIBILITY_FRACTION = 0.01 ! [not defined] default = 0.0 + ! When interpolating potential density profiles we can add + ! some artificial compressibility solely to make homogenous + ! regions appear stratified. +MAXIMUM_INT_DEPTH_CONFIG = "FNC1:5,8000.0,1.0,.01" ! default = "NONE" + ! Determines how to specify the maximum interface depths. + ! Valid options are: + ! NONE - there are no maximum interface depths + ! PARAM - use the vector-parameter MAXIMUM_INTERFACE_DEPTHS + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,Z + ! FNC1:string - FNC1:dz_min,H_total,power,precision +!MAXIMUM_INT_DEPTHS = 0.0, 5.0, 12.75, 23.25, 36.49, 52.480000000000004, 71.22, 92.71000000000001, 116.94000000000001, 143.92000000000002, 173.65, 206.13, 241.36, 279.33000000000004, 320.05000000000007, 363.5200000000001, 409.7400000000001, 458.7000000000001, 510.4100000000001, 564.8700000000001, 622.0800000000002, 682.0300000000002, 744.7300000000002, 810.1800000000003, 878.3800000000003, 949.3300000000004, 1023.0200000000004, 1099.4600000000005, 1178.6500000000005, 1260.5900000000006, 1345.2700000000007, 1432.7000000000007, 1522.8800000000008, 1615.8100000000009, 1711.490000000001, 1809.910000000001, 1911.080000000001, 2015.0000000000011, 2121.670000000001, 2231.080000000001, 2343.2400000000007, 2458.1500000000005, 2575.8100000000004, 2696.2200000000003, 2819.3700000000003, 2945.2700000000004, 3073.9200000000005, 3205.3200000000006, 3339.4600000000005, 3476.3500000000004, 3615.9900000000002, 3758.38, 3903.52, 4051.4, 4202.03, 4355.41, 4511.54, 4670.41, 4832.03, 4996.4, 5163.5199999999995, 5333.379999999999, 5505.989999999999, 5681.3499999999985, 5859.459999999998, 6040.319999999998, 6223.919999999998, 6410.269999999999, 6599.369999999999, 6791.219999999999, 6985.8099999999995, 7183.15, 7383.24, 7586.08, 7791.67, 8000.0 + ! The list of maximum depths for each interface. +MAX_LAYER_THICKNESS_CONFIG = "FNC1:400,31000.0,0.1,.01" ! default = "NONE" + ! Determines how to specify the maximum layer thicknesses. + ! Valid options are: + ! NONE - there are no maximum layer thicknesses + ! PARAM - use the vector-parameter MAX_LAYER_THICKNESS + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,Z + ! FNC1:string - FNC1:dz_min,H_total,power,precision +!MAX_LAYER_THICKNESS = 400.0, 409.63, 410.32, 410.75, 411.07, 411.32, 411.52, 411.7, 411.86, 412.0, 412.13, 412.24, 412.35, 412.45, 412.54, 412.63, 412.71, 412.79, 412.86, 412.93, 413.0, 413.06, 413.12, 413.18, 413.24, 413.29, 413.34, 413.39, 413.44, 413.49, 413.54, 413.58, 413.62, 413.67, 413.71, 413.75, 413.78, 413.82, 413.86, 413.9, 413.93, 413.97, 414.0, 414.03, 414.06, 414.1, 414.13, 414.16, 414.19, 414.22, 414.24, 414.27, 414.3, 414.33, 414.35, 414.38, 414.41, 414.43, 414.46, 414.48, 414.51, 414.53, 414.55, 414.58, 414.6, 414.62, 414.65, 414.67, 414.69, 414.71, 414.73, 414.75, 414.77, 414.79, 414.83 ! [m] + ! The list of maximum thickness for each layer. +REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" + ! This sets the reconstruction scheme used + ! for vertical remapping for all variables. + ! It can be one of the following schemes: + ! PCM (1st-order accurate) + ! PLM (2nd-order accurate) + ! PPM_H4 (3rd-order accurate) + ! PPM_IH4 (3rd-order accurate) + ! PQM_IH4IH3 (4th-order accurate) + ! PQM_IH6IH5 (5th-order accurate) + +! === module MOM_grid === +! Parameters providing information about the lateral grid. + +! === module MOM_state_initialization === +INIT_LAYERS_FROM_Z_FILE = True ! [Boolean] default = False + ! If true, intialize the layer thicknesses, temperatures, + ! and salnities from a Z-space file on a latitude- + ! longitude grid. + +! === module MOM_initialize_layers_from_Z === +!TEMP_SALT_Z_INIT_FILE = "WOA05_pottemp_salt.nc" ! default = "temp_salt_z.nc" +TEMP_SALT_Z_INIT_FILE = "MOM6_IC_TS.nc" + ! The name of the z-space input file used to initialize + ! temperatures (T) and salinities (S). If T and S are not + ! in the same file, TEMP_Z_INIT_FILE and SALT_Z_INIT_FILE + ! must be set. +Z_INIT_FILE_PTEMP_VAR = "temp" ! default = "ptemp" + ! The name of the potential temperature variable in + ! TEMP_Z_INIT_FILE. +Z_INIT_FILE_SALT_VAR = "salt" ! default = "salt" + ! The name of the salinity variable in + ! SALT_Z_INIT_FILE. +Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False + ! If True, then remap straight to model coordinate from file. + +! === module MOM_diag_mediator === +!Jiande NUM_DIAG_COORDS = 2 ! default = 1 +NUM_DIAG_COORDS = 1 + ! The number of diagnostic vertical coordinates to use. + ! For each coordinate, an entry in DIAG_COORDS must be provided. +!Jiande DIAG_COORDS = "z Z ZSTAR", "rho2 RHO2 RHO" ! +DIAG_COORDS = "z Z ZSTAR" + ! A list of string tuples associating diag_table modules to + ! a coordinate definition used for diagnostics. Each string + ! is of the form "MODULE_SUFFIX,PARAMETER_SUFFIX,COORDINATE_NAME". +DIAG_COORD_DEF_Z="FILE:interpolate_zgrid_40L.nc,interfaces=zw" +DIAG_MISVAL = -1e34 +!Jiande DIAG_COORD_DEF_RHO2 = "RFNC1:35,999.5,1028,1028.5,8.,1038.,0.0078125" ! default = "WOA09" + ! Determines how to specify the coordinate + ! resolution. Valid options are: + ! PARAM - use the vector-parameter DIAG_COORD_RES_RHO2 + ! UNIFORM[:N] - uniformly distributed + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,dz + ! or FILE:lev.nc,interfaces=zw + ! WOA09[:N] - the WOA09 vertical grid (approximately) + ! FNC1:string - FNC1:dz_min,H_total,power,precision + ! HYBRID:string - read from a file. The string specifies + ! the filename and two variable names, separated + ! by a comma or space, for sigma-2 and dz. e.g. + ! HYBRID:vgrid.nc,sigma2,dz + +! === module MOM_MEKE === +USE_MEKE = True ! [Boolean] default = False + ! If true, turns on the MEKE scheme which calculates + ! a sub-grid mesoscale eddy kinetic energy budget. +MEKE_GMCOEFF = 1.0 ! [nondim] default = -1.0 + ! The efficiency of the conversion of potential energy + ! into MEKE by the thickness mixing parameterization. + ! If MEKE_GMCOEFF is negative, this conversion is not + ! used or calculated. +MEKE_BGSRC = 1.0E-13 ! [W kg-1] default = 0.0 + ! A background energy source for MEKE. +MEKE_KHMEKE_FAC = 1.0 ! [nondim] default = 0.0 + ! A factor that maps MEKE%Kh to Kh for MEKE itself. +MEKE_ALPHA_RHINES = 0.15 ! [nondim] default = 0.05 + ! If positive, is a coefficient weighting the Rhines scale + ! in the expression for mixing length used in MEKE-derived diffusiviity. +MEKE_ALPHA_EADY = 0.15 ! [nondim] default = 0.05 + ! If positive, is a coefficient weighting the Eady length scale + ! in the expression for mixing length used in MEKE-derived diffusiviity. + +! === module MOM_lateral_mixing_coeffs === +USE_VARIABLE_MIXING = True ! [Boolean] default = False + ! If true, the variable mixing code will be called. This + ! allows diagnostics to be created even if the scheme is + ! not used. If KHTR_SLOPE_CFF>0 or KhTh_Slope_Cff>0, + ! this is set to true regardless of what is in the + ! parameter file. +RESOLN_SCALED_KH = True ! [Boolean] default = False + ! If true, the Laplacian lateral viscosity is scaled away + ! when the first baroclinic deformation radius is well + ! resolved. +RESOLN_SCALED_KHTH = True ! [Boolean] default = False + ! If true, the interface depth diffusivity is scaled away + ! when the first baroclinic deformation radius is well + ! resolved. +KHTR_SLOPE_CFF = 0.25 ! [nondim] default = 0.0 + ! The nondimensional coefficient in the Visbeck formula + ! for the epipycnal tracer diffusivity +USE_STORED_SLOPES = True ! [Boolean] default = False + ! If true, the isopycnal slopes are calculated once and + ! stored for re-use. This uses more memory but avoids calling + ! the equation of state more times than should be necessary. +INTERPOLATE_RES_FN = False ! [Boolean] default = True + ! If true, interpolate the resolution function to the + ! velocity points from the thickness points; otherwise + ! interpolate the wave speed and calculate the resolution + ! function independently at each point. +GILL_EQUATORIAL_LD = True ! [Boolean] default = False + ! If true, uses Gill's definition of the baroclinic + ! equatorial deformation radius, otherwise, if false, use + ! Pedlosky's definition. These definitions differ by a factor + ! of 2 infront of the beta term in the denominator. Gill'sis the more appropriate definition. + +! === module MOM_set_visc === +CHANNEL_DRAG = True ! [Boolean] default = False + ! If true, the bottom drag is exerted directly on each + ! layer proportional to the fraction of the bottom it + ! overlies. +PRANDTL_TURB = 1.25 ! [nondim] default = 1.0 + ! The turbulent Prandtl number applied to shear + ! instability. +HBBL = 10.0 ! [m] + ! The thickness of a bottom boundary layer with a + ! viscosity of KVBBL if BOTTOMDRAGLAW is not defined, or + ! the thickness over which near-bottom velocities are + ! averaged for the drag law if BOTTOMDRAGLAW is defined + ! but LINEAR_DRAG is not. +DRAG_BG_VEL = 0.1 ! [m s-1] default = 0.0 + ! DRAG_BG_VEL is either the assumed bottom velocity (with + ! LINEAR_DRAG) or an unresolved velocity that is + ! combined with the resolved velocity to estimate the + ! velocity magnitude. DRAG_BG_VEL is only used when + ! BOTTOMDRAGLAW is defined. +BBL_USE_EOS = True ! [Boolean] default = False + ! If true, use the equation of state in determining the + ! properties of the bottom boundary layer. Otherwise use + ! the layer target potential densities. +BBL_THICK_MIN = 0.1 ! [m] default = 0.0 + ! The minimum bottom boundary layer thickness that can be + ! used with BOTTOMDRAGLAW. This might be + ! Kv / (cdrag * drag_bg_vel) to give Kv as the minimum + ! near-bottom viscosity. +KV = 1.0E-04 ! [m2 s-1] + ! The background kinematic viscosity in the interior. + ! The molecular value, ~1e-6 m2 s-1, may be used. +KV_BBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 + ! The minimum viscosities in the bottom boundary layer. +KV_TBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 + ! The minimum viscosities in the top boundary layer. + +! === module MOM_continuity === + +! === module MOM_continuity_PPM === +ETA_TOLERANCE = 1.0E-06 ! [m] default = 3.75E-09 + ! The tolerance for the differences between the + ! barotropic and baroclinic estimates of the sea surface + ! height due to the fluxes through each face. The total + ! tolerance for SSH is 4 times this value. The default + ! is 0.5*NK*ANGSTROM, and this should not be set less x + ! than about 10^-15*MAXIMUM_DEPTH. +ETA_TOLERANCE_AUX = 0.001 ! [m] default = 1.0E-06 + ! The tolerance for free-surface height discrepancies + ! between the barotropic solution and the sum of the + ! layer thicknesses when calculating the auxiliary + ! corrected velocities. By default, this is the same as + ! ETA_TOLERANCE, but can be made larger for efficiency. + +! === module MOM_CoriolisAdv === +CORIOLIS_SCHEME = "SADOURNY75_ENSTRO" ! default = "SADOURNY75_ENERGY" + ! CORIOLIS_SCHEME selects the discretization for the + ! Coriolis terms. Valid values are: + ! SADOURNY75_ENERGY - Sadourny, 1975; energy cons. + ! ARAKAWA_HSU90 - Arakawa & Hsu, 1990 + ! SADOURNY75_ENSTRO - Sadourny, 1975; enstrophy cons. + ! ARAKAWA_LAMB81 - Arakawa & Lamb, 1981; En. + Enst. + ! ARAKAWA_LAMB_BLEND - A blend of Arakawa & Lamb with + ! Arakawa & Hsu and Sadourny energy +BOUND_CORIOLIS = True ! [Boolean] default = False + ! If true, the Coriolis terms at u-points are bounded by + ! the four estimates of (f+rv)v from the four neighboring + ! v-points, and similarly at v-points. This option would + ! have no effect on the SADOURNY Coriolis scheme if it + ! were possible to use centered difference thickness fluxes. + +! === module MOM_PressureForce === + +! === module MOM_PressureForce_AFV === +MASS_WEIGHT_IN_PRESSURE_GRADIENT = True ! [Boolean] default = False + ! If true, use mass weighting when interpolation T/S for + ! top/bottom integrals in AFV pressure gradient calculation. + +! === module MOM_hor_visc === +LAPLACIAN = True ! [Boolean] default = False + ! If true, use a Laplacian horizontal viscosity. +AH_VEL_SCALE = 0.01 ! [m s-1] default = 0.0 + ! The velocity scale which is multiplied by the cube of + ! the grid spacing to calculate the biharmonic viscosity. + ! The final viscosity is the largest of this scaled + ! viscosity, the Smagorinsky and Leith viscosities, and AH. +SMAGORINSKY_AH = True ! [Boolean] default = False + ! If true, use a biharmonic Smagorinsky nonlinear eddy + ! viscosity. +SMAG_BI_CONST = 0.06 ! [nondim] default = 0.0 + ! The nondimensional biharmonic Smagorinsky constant, + ! typically 0.015 - 0.06. + +! === module MOM_vert_friction === +U_TRUNC_FILE = "U_velocity_truncations" ! default = "" + ! The absolute path to a file into which the accelerations + ! leading to zonal velocity truncations are written. + ! Undefine this for efficiency if this diagnostic is not + ! needed. +V_TRUNC_FILE = "V_velocity_truncations" ! default = "" + ! The absolute path to a file into which the accelerations + ! leading to meridional velocity truncations are written. + ! Undefine this for efficiency if this diagnostic is not + ! needed. +HMIX_FIXED = 0.5 ! [m] + ! The prescribed depth over which the near-surface + ! viscosity and diffusivity are elevated when the bulk + ! mixed layer is not used. +MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 + ! The maximum velocity allowed before the velocity + ! components are truncated. + +! === module MOM_PointAccel === + +! === module MOM_barotropic === +BOUND_BT_CORRECTION = True ! [Boolean] default = False + ! If true, the corrective pseudo mass-fluxes into the + ! barotropic solver are limited to values that require + ! less than maxCFL_BT_cont to be accommodated. +BT_PROJECT_VELOCITY = True ! [Boolean] default = False + ! If true, step the barotropic velocity first and project + ! out the velocity tendancy by 1+BEBT when calculating the + ! transport. The default (false) is to use a predictor + ! continuity step to find the pressure field, and then + ! to do a corrector continuity step using a weighted + ! average of the old and new velocities, with weights + ! of (1-BEBT) and BEBT. +DYNAMIC_SURFACE_PRESSURE = True ! [Boolean] default = False + ! If true, add a dynamic pressure due to a viscous ice + ! shelf, for instance. +BEBT = 0.2 ! [nondim] default = 0.1 + ! BEBT determines whether the barotropic time stepping + ! uses the forward-backward time-stepping scheme or a + ! backward Euler scheme. BEBT is valid in the range from + ! 0 (for a forward-backward treatment of nonrotating + ! gravity waves) to 1 (for a backward Euler treatment). + ! In practice, BEBT must be greater than about 0.05. +DTBT = -0.9 ! [s or nondim] default = -0.98 + ! The barotropic time step, in s. DTBT is only used with + ! the split explicit time stepping. To set the time step + ! automatically based the maximum stable value use 0, or + ! a negative value gives the fraction of the stable value. + ! Setting DTBT to 0 is the same as setting it to -0.98. + ! The value of DTBT that will actually be used is an + ! integer fraction of DT, rounding down. +BT_USE_OLD_CORIOLIS_BRACKET_BUG = True ! [Boolean] default = False + ! If True, use an order of operations that is not bitwise + ! rotationally symmetric in the meridional Coriolis term of + ! the barotropic solver. + +! === module MOM_thickness_diffuse === +KHTH_MAX_CFL = 0.1 ! [nondimensional] default = 0.8 + ! The maximum value of the local diffusive CFL ratio that + ! is permitted for the thickness diffusivity. 1.0 is the + ! marginally unstable value in a pure layered model, but + ! much smaller numbers (e.g. 0.1) seem to work better for + ! ALE-based models. + +! === module MOM_mixed_layer_restrat === +MIXEDLAYER_RESTRAT = True ! [Boolean] default = False + ! If true, a density-gradient dependent re-stratifying + ! flow is imposed in the mixed layer. Can be used in ALE mode + ! without restriction but in layer mode can only be used if + ! BULKMIXEDLAYER is true. +FOX_KEMPER_ML_RESTRAT_COEF = 1.0 ! [nondim] default = 0.0 + ! A nondimensional coefficient that is proportional to + ! the ratio of the deformation radius to the dominant + ! lengthscale of the submesoscale mixed layer + ! instabilities, times the minimum of the ratio of the + ! mesoscale eddy kinetic energy to the large-scale + ! geostrophic kinetic energy or 1 plus the square of the + ! grid spacing over the deformation radius, as detailed + ! by Fox-Kemper et al. (2010) +MLE_FRONT_LENGTH = 500.0 ! [m] default = 0.0 + ! If non-zero, is the frontal-length scale used to calculate the + ! upscaling of buoyancy gradients that is otherwise represented + ! by the parameter FOX_KEMPER_ML_RESTRAT_COEF. If MLE_FRONT_LENGTH is + ! non-zero, it is recommended to set FOX_KEMPER_ML_RESTRAT_COEF=1.0. +MLE_USE_PBL_MLD = True ! [Boolean] default = False + ! If true, the MLE parameterization will use the mixed-layer + ! depth provided by the active PBL parameterization. If false, + ! MLE will estimate a MLD based on a density difference with the + ! surface using the parameter MLE_DENSITY_DIFF. +MLE_MLD_DECAY_TIME = 2.592E+06 ! [s] default = 0.0 + ! The time-scale for a running-mean filter applied to the mixed-layer + ! depth used in the MLE restratification parameterization. When + ! the MLD deepens below the current running-mean the running-mean + ! is instantaneously set to the current MLD. + +! === module MOM_diag_to_Z === +!Z_OUTPUT_GRID_FILE = "analysis_vgrid_lev35.v1.nc" ! default = "" +!Z_OUTPUT_GRID_FILE = "interpolate_zgrid_40L.nc" + ! The file that specifies the vertical grid for + ! depth-space diagnostics, or blank to disable + ! depth-space output. +!NK_ZSPACE (from file) = 35 ! [nondim] + ! The number of depth-space levels. This is determined + ! from the size of the variable zw in the output grid file. + +! === module MOM_diabatic_driver === +! The following parameters are used for diabatic processes. +ENERGETICS_SFC_PBL = True ! [Boolean] default = False + ! If true, use an implied energetics planetary boundary + ! layer scheme to determine the diffusivity and viscosity + ! in the surface boundary layer. +EPBL_IS_ADDITIVE = False ! [Boolean] default = True + ! If true, the diffusivity from ePBL is added to all + ! other diffusivities. Otherwise, the larger of kappa- + ! shear and ePBL diffusivities are used. + +! === module MOM_KPP === +! This is the MOM wrapper to CVmix:KPP +! See http://code.google.com/p/cvmix/ + +! === module MOM_diffConvection === +! This module implements enhanced diffusivity as a +! function of static stability, N^2. +CONVECTION% +%CONVECTION + +! === module MOM_entrain_diffusive === + +! === module MOM_geothermal === +GEOTHERMAL_SCALE = 1.0 ! [W m-2 or various] default = 0.0 + ! The constant geothermal heat flux, a rescaling + ! factor for the heat flux read from GEOTHERMAL_FILE, or + ! 0 to disable the geothermal heating. +GEOTHERMAL_FILE = "geothermal_davies2013_v1.nc" ! default = "" + ! The file from which the geothermal heating is to be + ! read, or blank to use a constant heating rate. +GEOTHERMAL_VARNAME = "geothermal_hf" ! default = "geo_heat" + ! The name of the geothermal heating variable in + ! GEOTHERMAL_FILE. + +! === module MOM_set_diffusivity === +BBL_MIXING_AS_MAX = False ! [Boolean] default = True + ! If true, take the maximum of the diffusivity from the + ! BBL mixing and the other diffusivities. Otherwise, + ! diffusiviy from the BBL_mixing is simply added. +USE_LOTW_BBL_DIFFUSIVITY = True ! [Boolean] default = False + ! If true, uses a simple, imprecise but non-coordinate dependent, model + ! of BBL mixing diffusivity based on Law of the Wall. Otherwise, uses + ! the original BBL scheme. +SIMPLE_TKE_TO_KD = True ! [Boolean] default = False + ! If true, uses a simple estimate of Kd/TKE that will + ! work for arbitrary vertical coordinates. If false, + ! calculates Kd/TKE and bounds based on exact energetics/nfor an isopycnal layer-formulation. +HENYEY_IGW_BACKGROUND = True ! [Boolean] default = False + ! If true, use a latitude-dependent scaling for the near + ! surface background diffusivity, as described in + ! Harrison & Hallberg, JPO 2008. +N2_FLOOR_IOMEGA2 = 0.0 ! [nondim] default = 1.0 + ! The floor applied to N2(k) scaled by Omega^2: + ! If =0., N2(k) is simply positive definite. + ! If =1., N2(k) > Omega^2 everywhere. +KD = 1.5E-05 ! [m2 s-1] + ! The background diapycnal diffusivity of density in the + ! interior. Zero or the molecular value, ~1e-7 m2 s-1, + ! may be used. +KD_MIN = 2.0E-06 ! [m2 s-1] default = 1.5E-07 + ! The minimum diapycnal diffusivity. +KD_MAX = 0.1 ! [m2 s-1] default = -1.0 + ! The maximum permitted increment for the diapycnal + ! diffusivity from TKE-based parameterizations, or a + ! negative value for no limit. +INT_TIDE_DISSIPATION = True ! [Boolean] default = False + ! If true, use an internal tidal dissipation scheme to + ! drive diapycnal mixing, along the lines of St. Laurent + ! et al. (2002) and Simmons et al. (2004). +INT_TIDE_PROFILE = "POLZIN_09" ! default = "STLAURENT_02" + ! INT_TIDE_PROFILE selects the vertical profile of energy + ! dissipation with INT_TIDE_DISSIPATION. Valid values are: + ! STLAURENT_02 - Use the St. Laurent et al exponential + ! decay profile. + ! POLZIN_09 - Use the Polzin WKB-streched algebraic + ! decay profile. +INT_TIDE_DECAY_SCALE = 300.3003003003003 ! [m] default = 0.0 + ! The decay scale away from the bottom for tidal TKE with + ! the new coding when INT_TIDE_DISSIPATION is used. +KAPPA_ITIDES = 6.28319E-04 ! [m-1] default = 6.283185307179586E-04 + ! A topographic wavenumber used with INT_TIDE_DISSIPATION. + ! The default is 2pi/10 km, as in St.Laurent et al. 2002. +KAPPA_H2_FACTOR = 0.84 ! [nondim] default = 1.0 + ! A scaling factor for the roughness amplitude with nINT_TIDE_DISSIPATION. +TKE_ITIDE_MAX = 0.1 ! [W m-2] default = 1000.0 + ! The maximum internal tide energy source availble to mix + ! above the bottom boundary layer with INT_TIDE_DISSIPATION. +READ_TIDEAMP = True ! [Boolean] default = False + ! If true, read a file (given by TIDEAMP_FILE) containing + ! the tidal amplitude with INT_TIDE_DISSIPATION. +TIDEAMP_FILE = "tidal_amplitude.v20140616.nc" ! default = "tideamp.nc" + ! The path to the file containing the spatially varying + ! tidal amplitudes with INT_TIDE_DISSIPATION. +H2_FILE = "ocean_topog.nc" ! + ! The path to the file containing the sub-grid-scale + ! topographic roughness amplitude with INT_TIDE_DISSIPATION. + +! === module MOM_kappa_shear === +! Parameterization of shear-driven turbulence following Jackson, Hallberg and Legg, JPO 2008 +USE_JACKSON_PARAM = True ! [Boolean] default = False + ! If true, use the Jackson-Hallberg-Legg (JPO 2008) + ! shear mixing parameterization. +MAX_RINO_IT = 25 ! [nondim] default = 50 + ! The maximum number of iterations that may be used to + ! estimate the Richardson number driven mixing. +VERTEX_SHEAR = True ! [Boolean] default = False + ! If true, do the calculations of the shear-driven mixing + ! at the cell vertices (i.e., the vorticity points). +! === module MOM_CVMix_shear === +! Parameterization of shear-driven turbulence via CVMix (various options) + +! === module MOM_diabatic_aux === +! The following parameters are used for auxiliary diabatic processes. +RECLAIM_FRAZIL = True ! [Boolean] default = True + ! If true, try to use any frazil heat deficit to cool any + ! overlying layers down to the freezing point, thereby + ! avoiding the creation of thin ice when the SST is above + ! the freezing point. + +PRESSURE_DEPENDENT_FRAZIL = False ! [Boolean] default = False + ! If true, use a pressure dependent freezing temperature + ! when making frazil. The default is false, which will be + ! faster but is inappropriate with ice-shelf cavities. + +! === module MOM_energetic_PBL === +MSTAR_MODE = 2 ! [units=nondim] default = 0 + ! An integer switch for how to compute MSTAR. + ! 0 for constant MSTAR + ! 1 for MSTAR w/ MLD in stabilizing limit + ! 2 for MSTAR w/ L_E/L_O in stabilizing limit. +MSTAR = 0.0 ! [units=nondim] default = 1.2 + ! The ratio of the friction velocity cubed to the TKE + ! input to the mixed layer. +MIX_LEN_EXPONENT = 1.0 ! [units=nondim] default = 2.0 + ! The exponent applied to the ratio of the distance to the MLD + ! and the MLD depth which determines the shape of the mixing length. +MSTAR_CAP = 10.0 ! [units=nondim] default = -1.0 + ! Maximum value of mstar allowed in model if non-negative + ! (used if MSTAR_MODE>0). +MSTAR_CONV_ADJ = 0.667 ! [units=nondim] default = 0.0 + ! Factor used for reducing mstar during convection + ! due to reduction of stable density gradient. +MSTAR2_COEF1 = 0.29 ! [units=nondim] default = 0.3 + ! Coefficient in computing mstar when rotation and + ! stabilizing effects are both important (used if MSTAR_MODE=2) +MSTAR2_COEF2 = 0.152 ! [units=nondim] default = 0.085 + ! Coefficient in computing mstar when only rotation limits + ! the total mixing. (used only if MSTAR_MODE=2) +NSTAR = 0.06 ! [nondim] default = 0.2 + ! The portion of the buoyant potential energy imparted by + ! surface fluxes that is available to drive entrainment + ! at the base of mixed layer when that energy is positive. +TKE_DECAY = 0.01 ! [nondim] default = 2.5 + ! TKE_DECAY relates the vertical rate of decay of the + ! TKE available for mechanical entrainment to the natural + ! Ekman depth. +ML_OMEGA_FRAC = 0.001 ! [nondim] default = 0.0 + ! When setting the decay scale for turbulence, use this + ! fraction of the absolute rotation rate blended with the + ! local value of f, as sqrt((1-of)*f^2 + of*4*omega^2). +USE_MLD_ITERATION = True ! [Boolean] default = False + ! A logical that specifies whether or not to use the + ! distance to the bottom of the actively turblent boundary + ! layer to help set the EPBL length scale. +ORIG_MLD_ITERATION = False ! [Boolean] default = True + ! A logical that specifies whether or not to use the + ! old method for determining MLD depth in iteration, which + ! is limited to resolution. +EPBL_TRANSITION_SCALE = 0.01 ! [nondim] default = 0.1 + ! A scale for the mixing length in the transition layer + ! at the edge of the boundary layer as a fraction of the + ! boundary layer thickness. The default is 0.1. +USE_LA_LI2016 = MOM6_REPRO_LA ! [nondim] default = False + ! A logical to use the Li et al. 2016 (submitted) formula to + ! determine the Langmuir number. +LT_ENHANCE = 3 ! [nondim] default = 0 + ! Integer for Langmuir number mode. + ! *Requires USE_LA_LI2016 to be set to True. + ! Options: 0 - No Langmuir + ! 1 - Van Roekel et al. 2014/Li et al., 2016 + ! 2 - Multiplied w/ adjusted La. + ! 3 - Added w/ adjusted La. +LT_ENHANCE_COEF = 0.044 ! [nondim] default = 0.447 + ! Coefficient for Langmuir enhancement if LT_ENHANCE > 1 +LT_ENHANCE_EXP = -1.5 ! [nondim] default = -1.33 + ! Exponent for Langmuir enhancement if LT_ENHANCE > 1 +LT_MOD_LAC1 = 0.0 ! [nondim] default = -0.87 + ! Coefficient for modification of Langmuir number due to + ! MLD approaching Ekman depth if LT_ENHANCE=2. +LT_MOD_LAC4 = 0.0 ! [nondim] default = 0.95 + ! Coefficient for modification of Langmuir number due to + ! ratio of Ekman to stable Obukhov depth if LT_ENHANCE=2. +LT_MOD_LAC5 = 0.22 ! [nondim] default = 0.95 + ! Coefficient for modification of Langmuir number due to + ! ratio of Ekman to unstable Obukhov depth if LT_ENHANCE=2. +EPBL_USTAR_MIN = 1.45842E-18 ! [m s-1] + ! The (tiny) minimum friction velocity used within the + ! ePBL code, derived from OMEGA and ANGSTROM. + +! === module MOM_regularize_layers === + +! === module MOM_opacity === +VAR_PEN_SW = True ! [Boolean] default = False + ! If true, use one of the CHL_A schemes specified by + ! OPACITY_SCHEME to determine the e-folding depth of + ! incoming short wave radiation. +CHL_FILE = CHLCLIM ! CHL_FILE is the file containing chl_a concentrations in + ! the variable CHL_A. It is used when VAR_PEN_SW and + ! CHL_FROM_FILE are true. +CHL_VARNAME = "chlor_a" ! default = "CHL_A" +PEN_SW_NBANDS = 3 ! default = 1 + ! The number of bands of penetrating shortwave radiation. + +! === module MOM_tracer_advect === +TRACER_ADVECTION_SCHEME = "PPM:H3" ! default = "PLM" + ! The horizontal transport scheme for tracers: + ! PLM - Piecewise Linear Method + ! PPM:H3 - Piecewise Parabolic Method (Huyhn 3rd order) + ! PPM - Piecewise Parabolic Method (Colella-Woodward) + +! === module MOM_tracer_hor_diff === +CHECK_DIFFUSIVE_CFL = True ! [Boolean] default = False + ! If true, use enough iterations the diffusion to ensure + ! that the diffusive equivalent of the CFL limit is not + ! violated. If false, always use 1 iteration. + +! === module MOM_neutral_diffusion === +! This module implements neutral diffusion of tracers + +! === module ocean_model_init === +OCEAN_SURFACE_STAGGER = "A" ! default = "C" + ! A case-insensitive character string to indicate the + ! staggering of the surface velocity field that is + ! returned to the coupler. Valid values include + ! 'A', 'B', or 'C'. +ENERGYSAVEDAYS = 1.00 ! [days] default = 1.0 + ! The interval in units of TIMEUNIT between saves of the + ! energies of the run and other globally summed diagnostics. + +! === module ocean_model_init === +ICE_SHELF = False ! [Boolean] default = False + ! If true, enables the ice shelf model. +ICEBERGS_APPLY_RIGID_BOUNDARY = False ! [Boolean] default = False + ! If true, allows icebergs to change boundary condition felt by ocean + +! === module MOM_surface_forcing === +MAX_P_SURF = 0.0 ! [Pa] default = -1.0 + ! The maximum surface pressure that can be exerted by the + ! atmosphere and floating sea-ice or ice shelves. This is + ! needed because the FMS coupling structure does not + ! limit the water that can be frozen out of the ocean and + ! the ice-ocean heat fluxes are treated explicitly. No + ! limit is applied if a negative value is used. +WIND_STAGGER = "A" ! default = "C" + ! A case-insensitive character string to indicate the + ! staggering of the input wind stress field. Valid + ! values are 'A', 'B', or 'C'. +CD_TIDES = 0.0018 ! [nondim] default = 1.0E-04 + ! The drag coefficient that applies to the tides. +GUST_CONST = 0.0 ! [Pa] default = 0.02 + ! The background gustiness in the winds. +USE_RIGID_SEA_ICE = True ! [Boolean] default = False + ! If true, sea-ice is rigid enough to exert a + ! nonhydrostatic pressure that resist vertical motion. +SEA_ICE_RIGID_MASS = 100.0 ! [kg m-2] default = 1000.0 + ! The mass of sea-ice per unit area at which the sea-ice + ! starts to exhibit rigidity +LIQUID_RUNOFF_FROM_DATA = MOM6_RIVER_RUNOFF ! [Boolean] default = False + ! If true, allows liquid river runoff to be specified via + ! the data_table using the component name 'OCN'. +! === module MOM_restart === +RESTART_CHECKSUMS_REQUIRED = False +! === module MOM_sum_output === +CALCULATE_APE = False ! [Boolean] default = True + ! If true, calculate the available potential energy of + ! the interfaces. Setting this to false reduces the + ! memory footprint of high-PE-count models dramatically. +MAXTRUNC = 100000 ! [truncations save_interval-1] default = 0 + ! The run will be stopped, and the day set to a very + ! large value if the velocity is truncated more than + ! MAXTRUNC times between energy saves. Set MAXTRUNC to 0 + ! to stop if there is any truncation of velocities. + +! === module MOM_file_parser === diff --git a/tests/parm/MOM_input_wave_template_025 b/tests/parm/MOM_input_wave_template_025 new file mode 100644 index 0000000000..00a0fbadbd --- /dev/null +++ b/tests/parm/MOM_input_wave_template_025 @@ -0,0 +1,910 @@ +/* This input file provides the adjustable run-time parameters for version 6 of + the Modular Ocean Model (MOM6), a numerical ocean model developed at NOAA-GFDL. + Where appropriate, parameters use usually given in MKS units. + + This particular file is for the example in OM4_025. + + This MOM_input file typically contains only the non-default values that are + needed to reproduce this example. A full list of parameters for this example + can be found in the corresponding MOM_parameter_doc.all file which is + generated by the model at run-time. */ + +! === module MOM === +USE_REGRIDDING = True ! [Boolean] default = False + ! If True, use the ALE algorithm (regridding/remapping). + ! If False, use the layered isopycnal algorithm. +THICKNESSDIFFUSE = True ! [Boolean] default = False + ! If true, interface heights are diffused with a + ! coefficient of KHTH. +THICKNESSDIFFUSE_FIRST = True ! [Boolean] default = False + ! If true, do thickness diffusion before dynamics. + ! This is only used if THICKNESSDIFFUSE is true. +DT = DT_DYNAM_MOM6 ! [s] + ! The (baroclinic) dynamics time step. The time-step that + ! is actually used will be an integer fraction of the + ! forcing time-step (DT_FORCING in ocean-only mode or the + ! coupling timestep in coupled mode.) +DT_THERM = DT_THERM_MOM6 ! [s] default = 900.0 + ! The thermodynamic and tracer advection time step. + ! Ideally DT_THERM should be an integer multiple of DT + ! and less than the forcing or coupling time-step, unless + ! THERMO_SPANS_COUPLING is true, in which case DT_THERM + ! can be an integer multiple of the coupling timestep. By + ! default DT_THERM is set to DT. +THERMO_SPANS_COUPLING = True ! [Boolean] default = False + ! If true, the MOM will take thermodynamic and tracer + ! timesteps that can be longer than the coupling timestep. + ! The actual thermodynamic timestep that is used in this + ! case is the largest integer multiple of the coupling + ! timestep that is less than or equal to DT_THERM. +HFREEZE = 20.0 ! [m] default = -1.0 + ! If HFREEZE > 0, melt potential will be computed. The actual depth + ! over which melt potential is computed will be min(HFREEZE, OBLD) + ! where OBLD is the boundary layer depth. If HFREEZE <= 0 (default) + ! melt potential will not be computed. +FRAZIL = True ! [Boolean] default = False + ! If true, water freezes if it gets too cold, and the + ! the accumulated heat deficit is returned in the + ! surface state. FRAZIL is only used if + ! ENABLE_THERMODYNAMICS is true. +DO_GEOTHERMAL = True ! [Boolean] default = False + ! If true, apply geothermal heating. +BOUND_SALINITY = True ! [Boolean] default = False + ! If true, limit salinity to being positive. (The sea-ice + ! model may ask for more salt than is available and + ! drive the salinity negative otherwise.) +C_P = 3992.0 ! [J kg-1 K-1] default = 3991.86795711963 + ! The heat capacity of sea water, approximated as a + ! constant. This is only used if ENABLE_THERMODYNAMICS is + ! true. The default value is from the TEOS-10 definition + ! of conservative temperature. +CHECK_BAD_SURFACE_VALS = True ! [Boolean] default = False + ! If true, check the surface state for ridiculous values. +BAD_VAL_SSH_MAX = 50.0 ! [m] default = 20.0 + ! The value of SSH above which a bad value message is + ! triggered, if CHECK_BAD_SURFACE_VALS is true. +BAD_VAL_SSS_MAX = 75.0 ! [PPT] default = 45.0 + ! The value of SSS above which a bad value message is + ! triggered, if CHECK_BAD_SURFACE_VALS is true. +BAD_VAL_SST_MAX = 65.0 ! [deg C] default = 45.0, PTripp: changed from 55.0 on 12/28/2017 + ! The value of SST above which a bad value message is + ! triggered, if CHECK_BAD_SURFACE_VALS is true. +BAD_VAL_SST_MIN = -3.0 ! [deg C] default = -2.1 + ! The value of SST below which a bad value message is + ! triggered, if CHECK_BAD_SURFACE_VALS is true. +WRITE_GEOM = 2 ! default = 1 + ! If =0, never write the geometry and vertical grid files. + ! If =1, write the geometry and vertical grid files only for + ! a new simulation. If =2, always write the geometry and + ! vertical grid files. Other values are invalid. + +! === module MOM_domains === +TRIPOLAR_N = True ! [Boolean] default = False + ! Use tripolar connectivity at the northern edge of the + ! domain. With TRIPOLAR_N, NIGLOBAL must be even. +NIGLOBAL = NX_GLB ! + ! The total number of thickness grid points in the + ! x-direction in the physical domain. With STATIC_MEMORY_ + ! this is set in MOM_memory.h at compile time. +NJGLOBAL = NY_GLB ! + ! The total number of thickness grid points in the + ! y-direction in the physical domain. With STATIC_MEMORY_ + ! this is set in MOM_memory.h at compile time. + +! === module MOM_hor_index === +! Sets the horizontal array index types. + +! === module MOM_verticalGrid === +! Parameters providing information about the vertical grid. +NK = 75 ! [nondim] + ! The number of model layers. + +! === module MOM_fixed_initialization === +INPUTDIR = "INPUT" ! default = "." + ! The directory in which input files are found. + +! === module MOM_grid_init === +GRID_CONFIG = "mosaic" ! + ! A character string that determines the method for + ! defining the horizontal grid. Current options are: + ! mosaic - read the grid from a mosaic (supergrid) + ! file set by GRID_FILE. + ! cartesian - use a (flat) Cartesian grid. + ! spherical - use a simple spherical grid. + ! mercator - use a Mercator spherical grid. +GRID_FILE = "ocean_hgrid.nc" ! + ! Name of the file from which to read horizontal grid data. +TOPO_CONFIG = "file" ! + ! This specifies how bathymetry is specified: + ! file - read bathymetric information from the file + ! specified by (TOPO_FILE). + ! flat - flat bottom set to MAXIMUM_DEPTH. + ! bowl - an analytically specified bowl-shaped basin + ! ranging between MAXIMUM_DEPTH and MINIMUM_DEPTH. + ! spoon - a similar shape to 'bowl', but with an vertical + ! wall at the southern face. + ! halfpipe - a zonally uniform channel with a half-sine + ! profile in the meridional direction. + ! benchmark - use the benchmark test case topography. + ! Neverland - use the Neverland test case topography. + ! DOME - use a slope and channel configuration for the + ! DOME sill-overflow test case. + ! ISOMIP - use a slope and channel configuration for the + ! ISOMIP test case. + ! DOME2D - use a shelf and slope configuration for the + ! DOME2D gravity current/overflow test case. + ! Kelvin - flat but with rotated land mask. + ! seamount - Gaussian bump for spontaneous motion test case. + ! shelfwave - exponential slope for shelfwave test case. + ! supercritical - flat but with 8.95 degree land mask. + ! Phillips - ACC-like idealized topography used in the Phillips config. + ! dense - Denmark Strait-like dense water formation and overflow. + ! USER - call a user modified routine. +TOPO_FILE = "ocean_topog.nc" ! default = "topog.nc" + ! The file from which the bathymetry is read. +TOPO_EDITS_FILE = "All_edits.nc" ! default = "" + ! The file from which to read a list of i,j,z topography overrides. +MAXIMUM_DEPTH = 6500.0 ! [m] + ! The maximum depth of the ocean. +MINIMUM_DEPTH = 9.5 ! [m] default = 0.0 + ! If MASKING_DEPTH is unspecified, then anything shallower than + ! MINIMUM_DEPTH is assumed to be land and all fluxes are masked out. + ! If MASKING_DEPTH is specified, then all depths shallower than + ! MINIMUM_DEPTH but deeper than MASKING_DEPTH are rounded to MINIMUM_DEPTH. +GRID_ROTATION_ANGLE_BUGS = False ! [Boolean] default = True + ! If true, use an older algorithm to calculate the sine and + ! cosines needed rotate between grid-oriented directions and + ! true north and east. Differences arise at the tripolar fold +USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = True + ! If true, use older code that incorrectly sets the longitude + ! in some points along the tripolar fold to be off by 360 degrees + +! === module MOM_open_boundary === +! Controls where open boundaries are located, what kind of boundary condition to impose, and what data to apply, if any. +MASKING_DEPTH = 0.0 ! [m] default = -9999.0 + ! The depth below which to mask points as land points, for which all + ! fluxes are zeroed out. MASKING_DEPTH is ignored if negative. +CHANNEL_CONFIG = "list" ! default = "none" + ! A parameter that determines which set of channels are + ! restricted to specific widths. Options are: + ! none - All channels have the grid width. + ! global_1deg - Sets 16 specific channels appropriate + ! for a 1-degree model, as used in CM2G. + ! list - Read the channel locations and widths from a + ! text file, like MOM_channel_list in the MOM_SIS + ! test case. + ! file - Read open face widths everywhere from a + ! NetCDF file on the model grid. +CHANNEL_LIST_FILE = "MOM_channels_global_025" ! default = "MOM_channel_list" + ! The file from which the list of narrowed channels is read. + +! === module MOM_tracer_registry === + +! === module MOM_EOS === +DTFREEZE_DP = -7.75E-08 ! [deg C Pa-1] default = 0.0 + ! When TFREEZE_FORM=LINEAR, + ! this is the derivative of the freezing potential + ! temperature with pressure. + +! === module MOM_restart === +PARALLEL_RESTARTFILES = True ! [Boolean] default = False + ! If true, each processor writes its own restart file, + ! otherwise a single restart file is generated + +! === module MOM_tracer_flow_control === +USE_IDEAL_AGE_TRACER = False ! [Boolean] default = False + ! If true, use the ideal_age_example tracer package. + +! === module ideal_age_example === + +! === module MOM_coord_initialization === +COORD_CONFIG = "file" ! + ! This specifies how layers are to be defined: + ! ALE or none - used to avoid defining layers in ALE mode + ! file - read coordinate information from the file + ! specified by (COORD_FILE). + ! BFB - Custom coords for buoyancy-forced basin case + ! based on SST_S, T_BOT and DRHO_DT. + ! linear - linear based on interfaces not layers + ! layer_ref - linear based on layer densities + ! ts_ref - use reference temperature and salinity + ! ts_range - use range of temperature and salinity + ! (T_REF and S_REF) to determine surface density + ! and GINT calculate internal densities. + ! gprime - use reference density (RHO_0) for surface + ! density and GINT calculate internal densities. + ! ts_profile - use temperature and salinity profiles + ! (read from COORD_FILE) to set layer densities. + ! USER - call a user modified routine. +COORD_FILE = "layer_coord.nc" ! + ! The file from which the coordinate densities are read. +REGRIDDING_COORDINATE_MODE = "HYCOM1" ! default = "LAYER" + ! Coordinate mode for vertical regridding. + ! Choose among the following possibilities: + ! LAYER - Isopycnal or stacked shallow water layers + ! ZSTAR, Z* - stetched geopotential z* + ! SIGMA_SHELF_ZSTAR - stetched geopotential z* ignoring shelf + ! SIGMA - terrain following coordinates + ! RHO - continuous isopycnal + ! HYCOM1 - HyCOM-like hybrid coordinate + ! SLIGHT - stretched coordinates above continuous isopycnal + ! ADAPTIVE - optimize for smooth neutral density surfaces +BOUNDARY_EXTRAPOLATION = True ! [Boolean] default = False + ! When defined, a proper high-order reconstruction + ! scheme is used within boundary cells rather + ! than PCM. E.g., if PPM is used for remapping, a + ! PPM reconstruction will also be used within + ! boundary cells. +ALE_COORDINATE_CONFIG = "HYBRID:hycom1_75_800m.nc,sigma2,FNC1:2,4000,4.5,.01" ! default = "UNIFORM" + ! Determines how to specify the coordinate + ! resolution. Valid options are: + ! PARAM - use the vector-parameter ALE_RESOLUTION + ! UNIFORM[:N] - uniformly distributed + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,dz + ! or FILE:lev.nc,interfaces=zw + ! WOA09[:N] - the WOA09 vertical grid (approximately) + ! FNC1:string - FNC1:dz_min,H_total,power,precision + ! HYBRID:string - read from a file. The string specifies + ! the filename and two variable names, separated + ! by a comma or space, for sigma-2 and dz. e.g. + ! HYBRID:vgrid.nc,sigma2,dz +!ALE_RESOLUTION = 7*2.0, 2*2.01, 2.02, 2.03, 2.05, 2.08, 2.11, 2.15, 2.21, 2.2800000000000002, 2.37, 2.48, 2.61, 2.77, 2.95, 3.17, 3.4299999999999997, 3.74, 4.09, 4.49, 4.95, 5.48, 6.07, 6.74, 7.5, 8.34, 9.280000000000001, 10.33, 11.49, 12.77, 14.19, 15.74, 17.450000000000003, 19.31, 21.35, 23.56, 25.97, 28.580000000000002, 31.41, 34.47, 37.77, 41.32, 45.14, 49.25, 53.65, 58.370000000000005, 63.42, 68.81, 74.56, 80.68, 87.21000000000001, 94.14, 101.51, 109.33, 117.62, 126.4, 135.68, 145.5, 155.87, 166.81, 178.35, 190.51, 203.31, 216.78, 230.93, 245.8, 261.42, 277.83 ! [m] + ! The distribution of vertical resolution for the target + ! grid used for Eulerian-like coordinates. For example, + ! in z-coordinate mode, the parameter is a list of level + ! thicknesses (in m). In sigma-coordinate mode, the list + ! is of non-dimensional fractions of the water column. +!TARGET_DENSITIES = 1010.0, 1014.3034, 1017.8088, 1020.843, 1023.5566, 1025.813, 1027.0275, 1027.9114, 1028.6422, 1029.2795, 1029.852, 1030.3762, 1030.8626, 1031.3183, 1031.7486, 1032.1572, 1032.5471, 1032.9207, 1033.2798, 1033.6261, 1033.9608, 1034.2519, 1034.4817, 1034.6774, 1034.8508, 1035.0082, 1035.1533, 1035.2886, 1035.4159, 1035.5364, 1035.6511, 1035.7608, 1035.8661, 1035.9675, 1036.0645, 1036.1554, 1036.2411, 1036.3223, 1036.3998, 1036.4739, 1036.5451, 1036.6137, 1036.68, 1036.7441, 1036.8062, 1036.8526, 1036.8874, 1036.9164, 1036.9418, 1036.9647, 1036.9857, 1037.0052, 1037.0236, 1037.0409, 1037.0574, 1037.0738, 1037.0902, 1037.1066, 1037.123, 1037.1394, 1037.1558, 1037.1722, 1037.1887, 1037.206, 1037.2241, 1037.2435, 1037.2642, 1037.2866, 1037.3112, 1037.3389, 1037.3713, 1037.4118, 1037.475, 1037.6332, 1037.8104, 1038.0 ! [m] + ! HYBRID target densities for itnerfaces +REGRID_COMPRESSIBILITY_FRACTION = 0.01 ! [not defined] default = 0.0 + ! When interpolating potential density profiles we can add + ! some artificial compressibility solely to make homogenous + ! regions appear stratified. +MAXIMUM_INT_DEPTH_CONFIG = "FNC1:5,8000.0,1.0,.01" ! default = "NONE" + ! Determines how to specify the maximum interface depths. + ! Valid options are: + ! NONE - there are no maximum interface depths + ! PARAM - use the vector-parameter MAXIMUM_INTERFACE_DEPTHS + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,Z + ! FNC1:string - FNC1:dz_min,H_total,power,precision +!MAXIMUM_INT_DEPTHS = 0.0, 5.0, 12.75, 23.25, 36.49, 52.480000000000004, 71.22, 92.71000000000001, 116.94000000000001, 143.92000000000002, 173.65, 206.13, 241.36, 279.33000000000004, 320.05000000000007, 363.5200000000001, 409.7400000000001, 458.7000000000001, 510.4100000000001, 564.8700000000001, 622.0800000000002, 682.0300000000002, 744.7300000000002, 810.1800000000003, 878.3800000000003, 949.3300000000004, 1023.0200000000004, 1099.4600000000005, 1178.6500000000005, 1260.5900000000006, 1345.2700000000007, 1432.7000000000007, 1522.8800000000008, 1615.8100000000009, 1711.490000000001, 1809.910000000001, 1911.080000000001, 2015.0000000000011, 2121.670000000001, 2231.080000000001, 2343.2400000000007, 2458.1500000000005, 2575.8100000000004, 2696.2200000000003, 2819.3700000000003, 2945.2700000000004, 3073.9200000000005, 3205.3200000000006, 3339.4600000000005, 3476.3500000000004, 3615.9900000000002, 3758.38, 3903.52, 4051.4, 4202.03, 4355.41, 4511.54, 4670.41, 4832.03, 4996.4, 5163.5199999999995, 5333.379999999999, 5505.989999999999, 5681.3499999999985, 5859.459999999998, 6040.319999999998, 6223.919999999998, 6410.269999999999, 6599.369999999999, 6791.219999999999, 6985.8099999999995, 7183.15, 7383.24, 7586.08, 7791.67, 8000.0 + ! The list of maximum depths for each interface. +MAX_LAYER_THICKNESS_CONFIG = "FNC1:400,31000.0,0.1,.01" ! default = "NONE" + ! Determines how to specify the maximum layer thicknesses. + ! Valid options are: + ! NONE - there are no maximum layer thicknesses + ! PARAM - use the vector-parameter MAX_LAYER_THICKNESS + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,Z + ! FNC1:string - FNC1:dz_min,H_total,power,precision +!MAX_LAYER_THICKNESS = 400.0, 409.63, 410.32, 410.75, 411.07, 411.32, 411.52, 411.7, 411.86, 412.0, 412.13, 412.24, 412.35, 412.45, 412.54, 412.63, 412.71, 412.79, 412.86, 412.93, 413.0, 413.06, 413.12, 413.18, 413.24, 413.29, 413.34, 413.39, 413.44, 413.49, 413.54, 413.58, 413.62, 413.67, 413.71, 413.75, 413.78, 413.82, 413.86, 413.9, 413.93, 413.97, 414.0, 414.03, 414.06, 414.1, 414.13, 414.16, 414.19, 414.22, 414.24, 414.27, 414.3, 414.33, 414.35, 414.38, 414.41, 414.43, 414.46, 414.48, 414.51, 414.53, 414.55, 414.58, 414.6, 414.62, 414.65, 414.67, 414.69, 414.71, 414.73, 414.75, 414.77, 414.79, 414.83 ! [m] + ! The list of maximum thickness for each layer. +REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" + ! This sets the reconstruction scheme used + ! for vertical remapping for all variables. + ! It can be one of the following schemes: + ! PCM (1st-order accurate) + ! PLM (2nd-order accurate) + ! PPM_H4 (3rd-order accurate) + ! PPM_IH4 (3rd-order accurate) + ! PQM_IH4IH3 (4th-order accurate) + ! PQM_IH6IH5 (5th-order accurate) + +! === module MOM_grid === +! Parameters providing information about the lateral grid. + +! === module MOM_state_initialization === +INIT_LAYERS_FROM_Z_FILE = True ! [Boolean] default = False + ! If true, intialize the layer thicknesses, temperatures, + ! and salnities from a Z-space file on a latitude- + ! longitude grid. + +! === module MOM_initialize_layers_from_Z === +!TEMP_SALT_Z_INIT_FILE = "WOA05_pottemp_salt.nc" ! default = "temp_salt_z.nc" +TEMP_SALT_Z_INIT_FILE = "MOM6_IC_TS.nc" + ! The name of the z-space input file used to initialize + ! temperatures (T) and salinities (S). If T and S are not + ! in the same file, TEMP_Z_INIT_FILE and SALT_Z_INIT_FILE + ! must be set. +Z_INIT_FILE_PTEMP_VAR = "temp" ! default = "ptemp" + ! The name of the potential temperature variable in + ! TEMP_Z_INIT_FILE. +Z_INIT_FILE_SALT_VAR = "salt" ! default = "salt" + ! The name of the salinity variable in + ! SALT_Z_INIT_FILE. +Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False + ! If True, then remap straight to model coordinate from file. + +! === module MOM_diag_mediator === +!Jiande NUM_DIAG_COORDS = 2 ! default = 1 +NUM_DIAG_COORDS = 1 + ! The number of diagnostic vertical coordinates to use. + ! For each coordinate, an entry in DIAG_COORDS must be provided. +!Jiande DIAG_COORDS = "z Z ZSTAR", "rho2 RHO2 RHO" ! +DIAG_COORDS = "z Z ZSTAR" + ! A list of string tuples associating diag_table modules to + ! a coordinate definition used for diagnostics. Each string + ! is of the form "MODULE_SUFFIX,PARAMETER_SUFFIX,COORDINATE_NAME". +DIAG_COORD_DEF_Z="FILE:interpolate_zgrid_40L.nc,interfaces=zw" +DIAG_MISVAL = -1e34 +!Jiande DIAG_COORD_DEF_RHO2 = "RFNC1:35,999.5,1028,1028.5,8.,1038.,0.0078125" ! default = "WOA09" + ! Determines how to specify the coordinate + ! resolution. Valid options are: + ! PARAM - use the vector-parameter DIAG_COORD_RES_RHO2 + ! UNIFORM[:N] - uniformly distributed + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,dz + ! or FILE:lev.nc,interfaces=zw + ! WOA09[:N] - the WOA09 vertical grid (approximately) + ! FNC1:string - FNC1:dz_min,H_total,power,precision + ! HYBRID:string - read from a file. The string specifies + ! the filename and two variable names, separated + ! by a comma or space, for sigma-2 and dz. e.g. + ! HYBRID:vgrid.nc,sigma2,dz + +! === module MOM_MEKE === +USE_MEKE = True ! [Boolean] default = False + ! If true, turns on the MEKE scheme which calculates + ! a sub-grid mesoscale eddy kinetic energy budget. +MEKE_GMCOEFF = 1.0 ! [nondim] default = -1.0 + ! The efficiency of the conversion of potential energy + ! into MEKE by the thickness mixing parameterization. + ! If MEKE_GMCOEFF is negative, this conversion is not + ! used or calculated. +MEKE_BGSRC = 1.0E-13 ! [W kg-1] default = 0.0 + ! A background energy source for MEKE. +MEKE_KHMEKE_FAC = 1.0 ! [nondim] default = 0.0 + ! A factor that maps MEKE%Kh to Kh for MEKE itself. +MEKE_ALPHA_RHINES = 0.15 ! [nondim] default = 0.05 + ! If positive, is a coefficient weighting the Rhines scale + ! in the expression for mixing length used in MEKE-derived diffusiviity. +MEKE_ALPHA_EADY = 0.15 ! [nondim] default = 0.05 + ! If positive, is a coefficient weighting the Eady length scale + ! in the expression for mixing length used in MEKE-derived diffusiviity. + +! === module MOM_lateral_mixing_coeffs === +USE_VARIABLE_MIXING = True ! [Boolean] default = False + ! If true, the variable mixing code will be called. This + ! allows diagnostics to be created even if the scheme is + ! not used. If KHTR_SLOPE_CFF>0 or KhTh_Slope_Cff>0, + ! this is set to true regardless of what is in the + ! parameter file. +RESOLN_SCALED_KH = True ! [Boolean] default = False + ! If true, the Laplacian lateral viscosity is scaled away + ! when the first baroclinic deformation radius is well + ! resolved. +RESOLN_SCALED_KHTH = True ! [Boolean] default = False + ! If true, the interface depth diffusivity is scaled away + ! when the first baroclinic deformation radius is well + ! resolved. +KHTR_SLOPE_CFF = 0.25 ! [nondim] default = 0.0 + ! The nondimensional coefficient in the Visbeck formula + ! for the epipycnal tracer diffusivity +USE_STORED_SLOPES = True ! [Boolean] default = False + ! If true, the isopycnal slopes are calculated once and + ! stored for re-use. This uses more memory but avoids calling + ! the equation of state more times than should be necessary. +INTERPOLATE_RES_FN = False ! [Boolean] default = True + ! If true, interpolate the resolution function to the + ! velocity points from the thickness points; otherwise + ! interpolate the wave speed and calculate the resolution + ! function independently at each point. +GILL_EQUATORIAL_LD = True ! [Boolean] default = False + ! If true, uses Gill's definition of the baroclinic + ! equatorial deformation radius, otherwise, if false, use + ! Pedlosky's definition. These definitions differ by a factor + ! of 2 infront of the beta term in the denominator. Gill'sis the more appropriate definition. + +! === module MOM_set_visc === +CHANNEL_DRAG = True ! [Boolean] default = False + ! If true, the bottom drag is exerted directly on each + ! layer proportional to the fraction of the bottom it + ! overlies. +PRANDTL_TURB = 1.25 ! [nondim] default = 1.0 + ! The turbulent Prandtl number applied to shear + ! instability. +HBBL = 10.0 ! [m] + ! The thickness of a bottom boundary layer with a + ! viscosity of KVBBL if BOTTOMDRAGLAW is not defined, or + ! the thickness over which near-bottom velocities are + ! averaged for the drag law if BOTTOMDRAGLAW is defined + ! but LINEAR_DRAG is not. +DRAG_BG_VEL = 0.1 ! [m s-1] default = 0.0 + ! DRAG_BG_VEL is either the assumed bottom velocity (with + ! LINEAR_DRAG) or an unresolved velocity that is + ! combined with the resolved velocity to estimate the + ! velocity magnitude. DRAG_BG_VEL is only used when + ! BOTTOMDRAGLAW is defined. +BBL_USE_EOS = True ! [Boolean] default = False + ! If true, use the equation of state in determining the + ! properties of the bottom boundary layer. Otherwise use + ! the layer target potential densities. +BBL_THICK_MIN = 0.1 ! [m] default = 0.0 + ! The minimum bottom boundary layer thickness that can be + ! used with BOTTOMDRAGLAW. This might be + ! Kv / (cdrag * drag_bg_vel) to give Kv as the minimum + ! near-bottom viscosity. +KV = 1.0E-04 ! [m2 s-1] + ! The background kinematic viscosity in the interior. + ! The molecular value, ~1e-6 m2 s-1, may be used. +KV_BBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 + ! The minimum viscosities in the bottom boundary layer. +KV_TBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 + ! The minimum viscosities in the top boundary layer. + +! === module MOM_continuity === + +! === module MOM_continuity_PPM === +ETA_TOLERANCE = 1.0E-06 ! [m] default = 3.75E-09 + ! The tolerance for the differences between the + ! barotropic and baroclinic estimates of the sea surface + ! height due to the fluxes through each face. The total + ! tolerance for SSH is 4 times this value. The default + ! is 0.5*NK*ANGSTROM, and this should not be set less x + ! than about 10^-15*MAXIMUM_DEPTH. +ETA_TOLERANCE_AUX = 0.001 ! [m] default = 1.0E-06 + ! The tolerance for free-surface height discrepancies + ! between the barotropic solution and the sum of the + ! layer thicknesses when calculating the auxiliary + ! corrected velocities. By default, this is the same as + ! ETA_TOLERANCE, but can be made larger for efficiency. + +! === module MOM_CoriolisAdv === +CORIOLIS_SCHEME = "SADOURNY75_ENSTRO" ! default = "SADOURNY75_ENERGY" + ! CORIOLIS_SCHEME selects the discretization for the + ! Coriolis terms. Valid values are: + ! SADOURNY75_ENERGY - Sadourny, 1975; energy cons. + ! ARAKAWA_HSU90 - Arakawa & Hsu, 1990 + ! SADOURNY75_ENSTRO - Sadourny, 1975; enstrophy cons. + ! ARAKAWA_LAMB81 - Arakawa & Lamb, 1981; En. + Enst. + ! ARAKAWA_LAMB_BLEND - A blend of Arakawa & Lamb with + ! Arakawa & Hsu and Sadourny energy +BOUND_CORIOLIS = True ! [Boolean] default = False + ! If true, the Coriolis terms at u-points are bounded by + ! the four estimates of (f+rv)v from the four neighboring + ! v-points, and similarly at v-points. This option would + ! have no effect on the SADOURNY Coriolis scheme if it + ! were possible to use centered difference thickness fluxes. + +! === module MOM_PressureForce === + +! === module MOM_PressureForce_AFV === +MASS_WEIGHT_IN_PRESSURE_GRADIENT = True ! [Boolean] default = False + ! If true, use mass weighting when interpolation T/S for + ! top/bottom integrals in AFV pressure gradient calculation. + +! === module MOM_hor_visc === +LAPLACIAN = True ! [Boolean] default = False + ! If true, use a Laplacian horizontal viscosity. +AH_VEL_SCALE = 0.01 ! [m s-1] default = 0.0 + ! The velocity scale which is multiplied by the cube of + ! the grid spacing to calculate the biharmonic viscosity. + ! The final viscosity is the largest of this scaled + ! viscosity, the Smagorinsky and Leith viscosities, and AH. +SMAGORINSKY_AH = True ! [Boolean] default = False + ! If true, use a biharmonic Smagorinsky nonlinear eddy + ! viscosity. +SMAG_BI_CONST = 0.06 ! [nondim] default = 0.0 + ! The nondimensional biharmonic Smagorinsky constant, + ! typically 0.015 - 0.06. + +! === module MOM_vert_friction === +U_TRUNC_FILE = "U_velocity_truncations" ! default = "" + ! The absolute path to a file into which the accelerations + ! leading to zonal velocity truncations are written. + ! Undefine this for efficiency if this diagnostic is not + ! needed. +V_TRUNC_FILE = "V_velocity_truncations" ! default = "" + ! The absolute path to a file into which the accelerations + ! leading to meridional velocity truncations are written. + ! Undefine this for efficiency if this diagnostic is not + ! needed. +HMIX_FIXED = 0.5 ! [m] + ! The prescribed depth over which the near-surface + ! viscosity and diffusivity are elevated when the bulk + ! mixed layer is not used. +MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 + ! The maximum velocity allowed before the velocity + ! components are truncated. + +! === module MOM_PointAccel === + +! === module MOM_barotropic === +BOUND_BT_CORRECTION = True ! [Boolean] default = False + ! If true, the corrective pseudo mass-fluxes into the + ! barotropic solver are limited to values that require + ! less than maxCFL_BT_cont to be accommodated. +BT_PROJECT_VELOCITY = True ! [Boolean] default = False + ! If true, step the barotropic velocity first and project + ! out the velocity tendancy by 1+BEBT when calculating the + ! transport. The default (false) is to use a predictor + ! continuity step to find the pressure field, and then + ! to do a corrector continuity step using a weighted + ! average of the old and new velocities, with weights + ! of (1-BEBT) and BEBT. +DYNAMIC_SURFACE_PRESSURE = True ! [Boolean] default = False + ! If true, add a dynamic pressure due to a viscous ice + ! shelf, for instance. +BEBT = 0.2 ! [nondim] default = 0.1 + ! BEBT determines whether the barotropic time stepping + ! uses the forward-backward time-stepping scheme or a + ! backward Euler scheme. BEBT is valid in the range from + ! 0 (for a forward-backward treatment of nonrotating + ! gravity waves) to 1 (for a backward Euler treatment). + ! In practice, BEBT must be greater than about 0.05. +DTBT = -0.9 ! [s or nondim] default = -0.98 + ! The barotropic time step, in s. DTBT is only used with + ! the split explicit time stepping. To set the time step + ! automatically based the maximum stable value use 0, or + ! a negative value gives the fraction of the stable value. + ! Setting DTBT to 0 is the same as setting it to -0.98. + ! The value of DTBT that will actually be used is an + ! integer fraction of DT, rounding down. +BT_USE_OLD_CORIOLIS_BRACKET_BUG = True ! [Boolean] default = False + ! If True, use an order of operations that is not bitwise + ! rotationally symmetric in the meridional Coriolis term of + ! the barotropic solver. + +! === module MOM_thickness_diffuse === +KHTH_MAX_CFL = 0.1 ! [nondimensional] default = 0.8 + ! The maximum value of the local diffusive CFL ratio that + ! is permitted for the thickness diffusivity. 1.0 is the + ! marginally unstable value in a pure layered model, but + ! much smaller numbers (e.g. 0.1) seem to work better for + ! ALE-based models. + +! === module MOM_mixed_layer_restrat === +MIXEDLAYER_RESTRAT = True ! [Boolean] default = False + ! If true, a density-gradient dependent re-stratifying + ! flow is imposed in the mixed layer. Can be used in ALE mode + ! without restriction but in layer mode can only be used if + ! BULKMIXEDLAYER is true. +FOX_KEMPER_ML_RESTRAT_COEF = 1.0 ! [nondim] default = 0.0 + ! A nondimensional coefficient that is proportional to + ! the ratio of the deformation radius to the dominant + ! lengthscale of the submesoscale mixed layer + ! instabilities, times the minimum of the ratio of the + ! mesoscale eddy kinetic energy to the large-scale + ! geostrophic kinetic energy or 1 plus the square of the + ! grid spacing over the deformation radius, as detailed + ! by Fox-Kemper et al. (2010) +MLE_FRONT_LENGTH = 500.0 ! [m] default = 0.0 + ! If non-zero, is the frontal-length scale used to calculate the + ! upscaling of buoyancy gradients that is otherwise represented + ! by the parameter FOX_KEMPER_ML_RESTRAT_COEF. If MLE_FRONT_LENGTH is + ! non-zero, it is recommended to set FOX_KEMPER_ML_RESTRAT_COEF=1.0. +MLE_USE_PBL_MLD = True ! [Boolean] default = False + ! If true, the MLE parameterization will use the mixed-layer + ! depth provided by the active PBL parameterization. If false, + ! MLE will estimate a MLD based on a density difference with the + ! surface using the parameter MLE_DENSITY_DIFF. +MLE_MLD_DECAY_TIME = 2.592E+06 ! [s] default = 0.0 + ! The time-scale for a running-mean filter applied to the mixed-layer + ! depth used in the MLE restratification parameterization. When + ! the MLD deepens below the current running-mean the running-mean + ! is instantaneously set to the current MLD. + +! === module MOM_diag_to_Z === +!Z_OUTPUT_GRID_FILE = "analysis_vgrid_lev35.v1.nc" ! default = "" +!Z_OUTPUT_GRID_FILE = "interpolate_zgrid_40L.nc" + ! The file that specifies the vertical grid for + ! depth-space diagnostics, or blank to disable + ! depth-space output. +!NK_ZSPACE (from file) = 35 ! [nondim] + ! The number of depth-space levels. This is determined + ! from the size of the variable zw in the output grid file. + +! === module MOM_diabatic_driver === +! The following parameters are used for diabatic processes. +ENERGETICS_SFC_PBL = True ! [Boolean] default = False + ! If true, use an implied energetics planetary boundary + ! layer scheme to determine the diffusivity and viscosity + ! in the surface boundary layer. +EPBL_IS_ADDITIVE = False ! [Boolean] default = True + ! If true, the diffusivity from ePBL is added to all + ! other diffusivities. Otherwise, the larger of kappa- + ! shear and ePBL diffusivities are used. + +! === module MOM_KPP === +! This is the MOM wrapper to CVmix:KPP +! See http://code.google.com/p/cvmix/ + +! === module MOM_diffConvection === +! This module implements enhanced diffusivity as a +! function of static stability, N^2. +CONVECTION% +%CONVECTION + +! === module MOM_entrain_diffusive === + +! === module MOM_geothermal === +GEOTHERMAL_SCALE = 1.0 ! [W m-2 or various] default = 0.0 + ! The constant geothermal heat flux, a rescaling + ! factor for the heat flux read from GEOTHERMAL_FILE, or + ! 0 to disable the geothermal heating. +GEOTHERMAL_FILE = "geothermal_davies2013_v1.nc" ! default = "" + ! The file from which the geothermal heating is to be + ! read, or blank to use a constant heating rate. +GEOTHERMAL_VARNAME = "geothermal_hf" ! default = "geo_heat" + ! The name of the geothermal heating variable in + ! GEOTHERMAL_FILE. + +! === module MOM_set_diffusivity === +BBL_MIXING_AS_MAX = False ! [Boolean] default = True + ! If true, take the maximum of the diffusivity from the + ! BBL mixing and the other diffusivities. Otherwise, + ! diffusiviy from the BBL_mixing is simply added. +USE_LOTW_BBL_DIFFUSIVITY = True ! [Boolean] default = False + ! If true, uses a simple, imprecise but non-coordinate dependent, model + ! of BBL mixing diffusivity based on Law of the Wall. Otherwise, uses + ! the original BBL scheme. +SIMPLE_TKE_TO_KD = True ! [Boolean] default = False + ! If true, uses a simple estimate of Kd/TKE that will + ! work for arbitrary vertical coordinates. If false, + ! calculates Kd/TKE and bounds based on exact energetics/nfor an isopycnal layer-formulation. +HENYEY_IGW_BACKGROUND = True ! [Boolean] default = False + ! If true, use a latitude-dependent scaling for the near + ! surface background diffusivity, as described in + ! Harrison & Hallberg, JPO 2008. +N2_FLOOR_IOMEGA2 = 0.0 ! [nondim] default = 1.0 + ! The floor applied to N2(k) scaled by Omega^2: + ! If =0., N2(k) is simply positive definite. + ! If =1., N2(k) > Omega^2 everywhere. +KD = 1.5E-05 ! [m2 s-1] + ! The background diapycnal diffusivity of density in the + ! interior. Zero or the molecular value, ~1e-7 m2 s-1, + ! may be used. +KD_MIN = 2.0E-06 ! [m2 s-1] default = 1.5E-07 + ! The minimum diapycnal diffusivity. +KD_MAX = 0.1 ! [m2 s-1] default = -1.0 + ! The maximum permitted increment for the diapycnal + ! diffusivity from TKE-based parameterizations, or a + ! negative value for no limit. +INT_TIDE_DISSIPATION = True ! [Boolean] default = False + ! If true, use an internal tidal dissipation scheme to + ! drive diapycnal mixing, along the lines of St. Laurent + ! et al. (2002) and Simmons et al. (2004). +INT_TIDE_PROFILE = "POLZIN_09" ! default = "STLAURENT_02" + ! INT_TIDE_PROFILE selects the vertical profile of energy + ! dissipation with INT_TIDE_DISSIPATION. Valid values are: + ! STLAURENT_02 - Use the St. Laurent et al exponential + ! decay profile. + ! POLZIN_09 - Use the Polzin WKB-streched algebraic + ! decay profile. +INT_TIDE_DECAY_SCALE = 300.3003003003003 ! [m] default = 0.0 + ! The decay scale away from the bottom for tidal TKE with + ! the new coding when INT_TIDE_DISSIPATION is used. +KAPPA_ITIDES = 6.28319E-04 ! [m-1] default = 6.283185307179586E-04 + ! A topographic wavenumber used with INT_TIDE_DISSIPATION. + ! The default is 2pi/10 km, as in St.Laurent et al. 2002. +KAPPA_H2_FACTOR = 0.84 ! [nondim] default = 1.0 + ! A scaling factor for the roughness amplitude with nINT_TIDE_DISSIPATION. +TKE_ITIDE_MAX = 0.1 ! [W m-2] default = 1000.0 + ! The maximum internal tide energy source availble to mix + ! above the bottom boundary layer with INT_TIDE_DISSIPATION. +READ_TIDEAMP = True ! [Boolean] default = False + ! If true, read a file (given by TIDEAMP_FILE) containing + ! the tidal amplitude with INT_TIDE_DISSIPATION. +TIDEAMP_FILE = "tidal_amplitude.v20140616.nc" ! default = "tideamp.nc" + ! The path to the file containing the spatially varying + ! tidal amplitudes with INT_TIDE_DISSIPATION. +H2_FILE = "ocean_topog.nc" ! + ! The path to the file containing the sub-grid-scale + ! topographic roughness amplitude with INT_TIDE_DISSIPATION. + +! === module MOM_kappa_shear === +! Parameterization of shear-driven turbulence following Jackson, Hallberg and Legg, JPO 2008 +USE_JACKSON_PARAM = True ! [Boolean] default = False + ! If true, use the Jackson-Hallberg-Legg (JPO 2008) + ! shear mixing parameterization. +MAX_RINO_IT = 25 ! [nondim] default = 50 + ! The maximum number of iterations that may be used to + ! estimate the Richardson number driven mixing. +VERTEX_SHEAR = True ! [Boolean] default = False + ! If true, do the calculations of the shear-driven mixing + ! at the cell vertices (i.e., the vorticity points). +! === module MOM_CVMix_shear === +! Parameterization of shear-driven turbulence via CVMix (various options) + +! === module MOM_diabatic_aux === +! The following parameters are used for auxiliary diabatic processes. +RECLAIM_FRAZIL = True ! [Boolean] default = True + ! If true, try to use any frazil heat deficit to cool any + ! overlying layers down to the freezing point, thereby + ! avoiding the creation of thin ice when the SST is above + ! the freezing point. + +PRESSURE_DEPENDENT_FRAZIL = False ! [Boolean] default = False + ! If true, use a pressure dependent freezing temperature + ! when making frazil. The default is false, which will be + ! faster but is inappropriate with ice-shelf cavities. + +! === module MOM_energetic_PBL === +MSTAR_MODE = 2 ! [units=nondim] default = 0 + ! An integer switch for how to compute MSTAR. + ! 0 for constant MSTAR + ! 1 for MSTAR w/ MLD in stabilizing limit + ! 2 for MSTAR w/ L_E/L_O in stabilizing limit. +MSTAR = 0.0 ! [units=nondim] default = 1.2 + ! The ratio of the friction velocity cubed to the TKE + ! input to the mixed layer. +MIX_LEN_EXPONENT = 1.0 ! [units=nondim] default = 2.0 + ! The exponent applied to the ratio of the distance to the MLD + ! and the MLD depth which determines the shape of the mixing length. +MSTAR_CAP = 10.0 ! [units=nondim] default = -1.0 + ! Maximum value of mstar allowed in model if non-negative + ! (used if MSTAR_MODE>0). +MSTAR_CONV_ADJ = 0.667 ! [units=nondim] default = 0.0 + ! Factor used for reducing mstar during convection + ! due to reduction of stable density gradient. +MSTAR2_COEF1 = 0.29 ! [units=nondim] default = 0.3 + ! Coefficient in computing mstar when rotation and + ! stabilizing effects are both important (used if MSTAR_MODE=2) +MSTAR2_COEF2 = 0.152 ! [units=nondim] default = 0.085 + ! Coefficient in computing mstar when only rotation limits + ! the total mixing. (used only if MSTAR_MODE=2) +NSTAR = 0.06 ! [nondim] default = 0.2 + ! The portion of the buoyant potential energy imparted by + ! surface fluxes that is available to drive entrainment + ! at the base of mixed layer when that energy is positive. +TKE_DECAY = 0.01 ! [nondim] default = 2.5 + ! TKE_DECAY relates the vertical rate of decay of the + ! TKE available for mechanical entrainment to the natural + ! Ekman depth. +ML_OMEGA_FRAC = 0.001 ! [nondim] default = 0.0 + ! When setting the decay scale for turbulence, use this + ! fraction of the absolute rotation rate blended with the + ! local value of f, as sqrt((1-of)*f^2 + of*4*omega^2). +USE_MLD_ITERATION = True ! [Boolean] default = False + ! A logical that specifies whether or not to use the + ! distance to the bottom of the actively turblent boundary + ! layer to help set the EPBL length scale. +ORIG_MLD_ITERATION = False ! [Boolean] default = True + ! A logical that specifies whether or not to use the + ! old method for determining MLD depth in iteration, which + ! is limited to resolution. +EPBL_TRANSITION_SCALE = 0.01 ! [nondim] default = 0.1 + ! A scale for the mixing length in the transition layer + ! at the edge of the boundary layer as a fraction of the + ! boundary layer thickness. The default is 0.1. +USE_LA_LI2016 = True ! [nondim] default = False + ! A logical to use the Li et al. 2016 (submitted) formula to + ! determine the Langmuir number. +LT_ENHANCE = 3 ! [nondim] default = 0 + ! Integer for Langmuir number mode. + ! *Requires USE_LA_LI2016 to be set to True. + ! Options: 0 - No Langmuir + ! 1 - Van Roekel et al. 2014/Li et al., 2016 + ! 2 - Multiplied w/ adjusted La. + ! 3 - Added w/ adjusted La. +USE_WAVES = True ! [Boolean] default = False + ! If true, enables surface wave modules. +WAVE_METHOD = "SURFACE_BANDS" ! default = "EMPTY" + ! Choice of wave method, valid options include: + ! TEST_PROFILE - Prescribed from surface Stokes drift + ! and a decay wavelength. + ! SURFACE_BANDS - Computed from multiple surface values + ! and decay wavelengths. + ! DHH85 - Uses Donelan et al. 1985 empirical + ! wave spectrum with prescribed values. + ! LF17 - Infers Stokes drift profile from wind + ! speed following Li and Fox-Kemper 2017. +SURFBAND_SOURCE = "COUPLER" ! default = "EMPTY" + ! Choice of SURFACE_BANDS data mode, valid options include: + ! DATAOVERRIDE - Read from NetCDF using FMS DataOverride. + ! COUPLER - Look for variables from coupler pass + ! INPUT - Testing with fixed values. +STK_BAND_COUPLER = 3 ! default = 1 + ! STK_BAND_COUPLER is the number of Stokes drift bands in the coupler. This has + ! to be consistent with the number of Stokes drift bands in WW3, or the model + ! will fail. +SURFBAND_WAVENUMBERS = 0.04, 0.11, 0.3305 ! [rad/m] default = 0.12566 + ! Central wavenumbers for surface Stokes drift bands. +LT_ENHANCE_COEF = 0.044 ! [nondim] default = 0.447 + ! Coefficient for Langmuir enhancement if LT_ENHANCE > 1 +LT_ENHANCE_EXP = -1.5 ! [nondim] default = -1.33 + ! Exponent for Langmuir enhancement if LT_ENHANCE > 1 +LT_MOD_LAC1 = 0.0 ! [nondim] default = -0.87 + ! Coefficient for modification of Langmuir number due to + ! MLD approaching Ekman depth if LT_ENHANCE=2. +LT_MOD_LAC4 = 0.0 ! [nondim] default = 0.95 + ! Coefficient for modification of Langmuir number due to + ! ratio of Ekman to stable Obukhov depth if LT_ENHANCE=2. +LT_MOD_LAC5 = 0.22 ! [nondim] default = 0.95 + ! Coefficient for modification of Langmuir number due to + ! ratio of Ekman to unstable Obukhov depth if LT_ENHANCE=2. +EPBL_USTAR_MIN = 1.45842E-18 ! [m s-1] + ! The (tiny) minimum friction velocity used within the + ! ePBL code, derived from OMEGA and ANGSTROM. + +! === module MOM_regularize_layers === + +! === module MOM_opacity === +VAR_PEN_SW = True ! [Boolean] default = False + ! If true, use one of the CHL_A schemes specified by + ! OPACITY_SCHEME to determine the e-folding depth of + ! incoming short wave radiation. +CHL_FILE = CHLCLIM ! CHL_FILE is the file containing chl_a concentrations in + ! the variable CHL_A. It is used when VAR_PEN_SW and + ! CHL_FROM_FILE are true. +CHL_VARNAME = "chlor_a" ! default = "CHL_A" +PEN_SW_NBANDS = 3 ! default = 1 + ! The number of bands of penetrating shortwave radiation. + +! === module MOM_tracer_advect === +TRACER_ADVECTION_SCHEME = "PPM:H3" ! default = "PLM" + ! The horizontal transport scheme for tracers: + ! PLM - Piecewise Linear Method + ! PPM:H3 - Piecewise Parabolic Method (Huyhn 3rd order) + ! PPM - Piecewise Parabolic Method (Colella-Woodward) + +! === module MOM_tracer_hor_diff === +CHECK_DIFFUSIVE_CFL = True ! [Boolean] default = False + ! If true, use enough iterations the diffusion to ensure + ! that the diffusive equivalent of the CFL limit is not + ! violated. If false, always use 1 iteration. + +! === module MOM_neutral_diffusion === +! This module implements neutral diffusion of tracers + +! === module ocean_model_init === +OCEAN_SURFACE_STAGGER = "A" ! default = "C" + ! A case-insensitive character string to indicate the + ! staggering of the surface velocity field that is + ! returned to the coupler. Valid values include + ! 'A', 'B', or 'C'. +ENERGYSAVEDAYS = 1.00 ! [days] default = 1.0 + ! The interval in units of TIMEUNIT between saves of the + ! energies of the run and other globally summed diagnostics. + +! === module ocean_model_init === +ICE_SHELF = False ! [Boolean] default = False + ! If true, enables the ice shelf model. +ICEBERGS_APPLY_RIGID_BOUNDARY = False ! [Boolean] default = False + ! If true, allows icebergs to change boundary condition felt by ocean + +! === module MOM_surface_forcing === +MAX_P_SURF = 0.0 ! [Pa] default = -1.0 + ! The maximum surface pressure that can be exerted by the + ! atmosphere and floating sea-ice or ice shelves. This is + ! needed because the FMS coupling structure does not + ! limit the water that can be frozen out of the ocean and + ! the ice-ocean heat fluxes are treated explicitly. No + ! limit is applied if a negative value is used. +WIND_STAGGER = "A" ! default = "C" + ! A case-insensitive character string to indicate the + ! staggering of the input wind stress field. Valid + ! values are 'A', 'B', or 'C'. +CD_TIDES = 0.0018 ! [nondim] default = 1.0E-04 + ! The drag coefficient that applies to the tides. +GUST_CONST = 0.0 ! [Pa] default = 0.02 + ! The background gustiness in the winds. +USE_RIGID_SEA_ICE = True ! [Boolean] default = False + ! If true, sea-ice is rigid enough to exert a + ! nonhydrostatic pressure that resist vertical motion. +SEA_ICE_RIGID_MASS = 100.0 ! [kg m-2] default = 1000.0 + ! The mass of sea-ice per unit area at which the sea-ice + ! starts to exhibit rigidity +LIQUID_RUNOFF_FROM_DATA = MOM6_RIVER_RUNOFF ! [Boolean] default = False + ! If true, allows liquid river runoff to be specified via + ! the data_table using the component name 'OCN'. +! === module MOM_restart === +RESTART_CHECKSUMS_REQUIRED = False +! === module MOM_sum_output === +CALCULATE_APE = False ! [Boolean] default = True + ! If true, calculate the available potential energy of + ! the interfaces. Setting this to false reduces the + ! memory footprint of high-PE-count models dramatically. +MAXTRUNC = 100000 ! [truncations save_interval-1] default = 0 + ! The run will be stopped, and the day set to a very + ! large value if the velocity is truncated more than + ! MAXTRUNC times between energy saves. Set MAXTRUNC to 0 + ! to stop if there is any truncation of velocities. + +! === module MOM_file_parser === diff --git a/tests/parm/MOM_override b/tests/parm/MOM_override new file mode 100644 index 0000000000..472c9f7176 --- /dev/null +++ b/tests/parm/MOM_override @@ -0,0 +1,2 @@ +#override EPBL_LANGMUIR_SCHEME = "NONE" +#override LT_ENHANCE = 0 diff --git a/tests/parm/data_table_template b/tests/parm/data_table_template new file mode 100644 index 0000000000..cc7fc5b127 --- /dev/null +++ b/tests/parm/data_table_template @@ -0,0 +1 @@ +"OCN", "runoff", "runoff", "./INPUT/FRUNOFF", "none" , 1.0 diff --git a/tests/parm/diag_table_benchmark b/tests/parm/diag_table_benchmark new file mode 100644 index 0000000000..f5e547a4f8 --- /dev/null +++ b/tests/parm/diag_table_benchmark @@ -0,0 +1,273 @@ +YMD.00Z.ATMRES.64bit.non-mono +SYEAR SMONTH SDAY 00 0 0 + +"grid_spec", -1, "months", 1, "days", "time" +"atmos_4xdaily", 6, "hours", 1, "days", "time" +"atmos_static", -1, "hours", 1, "hours", "time" +"fv3_history", 0, "hours", 1, "hours", "time" +"fv3_history2d", 0, "hours", 1, "hours", "time" +###################### +"ocn%4yr%2mo%2dy%2hr", 6, "hours", 1, "hours", "time", 6, "hours", "1901 1 1 0 0 0" +"SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "1901 1 1 0 0 0" +############################################## +# static fields + "ocean_model", "geolon", "geolon", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_c", "geolon_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_c", "geolat_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_u", "geolon_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_u", "geolat_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_v", "geolon_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_v", "geolat_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "depth_ocean", "depth_ocean", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "wet", "wet", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_c", "wet_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_u", "wet_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_v", "wet_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "sin_rot", "sin_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "cos_rot", "cos_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + +# ocean output TSUV and others + "ocean_model", "SSH", "SSH", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SST", "SST", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSS", "SSS", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "speed", "speed", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSU", "SSU", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSV", "SSV", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "frazil", "frazil", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "ePBL_h_ML","ePBL", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# save daily SST + "ocean_model", "geolon", "geolon", "SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "SST", "sst", "SST%4yr%2mo%2dy", "all", .true., "none", 2 + +# Z-Space Fields Provided for CMIP6 (CMOR Names): +#=============================================== + "ocean_model_z","uo","uo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","vo","vo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","so","so" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","temp","temp" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# forcing + "ocean_model", "taux", "taux", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tauy", "tauy", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "latent", "latent", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "sensible", "sensible", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SW", "SW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LW", "LW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "evap", "evap", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lprec", "lprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +# "ocean_model", "frunoff", "frunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "fprec", "fprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +#============================================================================================= +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "ice_nc", "nccice", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "rain_nc", "nconrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "cld_amt", "cld_amt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "pfhy", "preshy", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "pfnh", "presnh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 + +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 + +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rainc", "cnvprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + + +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/tests/parm/diag_table_template b/tests/parm/diag_table_template new file mode 100644 index 0000000000..45862fb434 --- /dev/null +++ b/tests/parm/diag_table_template @@ -0,0 +1,360 @@ +YMD.00Z.ATMRES.64bit.non-mono +SYEAR SMONTH SDAY 00 0 0 + +"grid_spec", -1, "months", 1, "days", "time" +"atmos_4xdaily", 6, "hours", 1, "days", "time" +"atmos_static", -1, "hours", 1, "hours", "time" +"fv3_history", 0, "hours", 1, "hours", "time" +"fv3_history2d", 0, "hours", 1, "hours", "time" +###################### +"ocn%4yr%2mo%2dy%2hr", 6, "hours", 1, "hours", "time", 6, "hours", "1901 1 1 0 0 0" +"SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "1901 1 1 0 0 0" +############################################## +# static fields + "ocean_model", "geolon", "geolon", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_c", "geolon_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_c", "geolat_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_u", "geolon_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_u", "geolat_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_v", "geolon_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_v", "geolat_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "depth_ocean", "depth_ocean", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "wet", "wet", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_c", "wet_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_u", "wet_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_v", "wet_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "sin_rot", "sin_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "cos_rot", "cos_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + +# ocean output TSUV and others + "ocean_model", "SSH", "SSH", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SST", "SST", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSS", "SSS", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "speed", "speed", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSU", "SSU", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSV", "SSV", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "frazil", "frazil", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "ePBL_h_ML", "ePBL", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# save daily SST + "ocean_model", "geolon", "geolon", "SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "SST", "sst", "SST%4yr%2mo%2dy", "all", .true., "none", 2 + +# Z-Space Fields Provided for CMIP6 (CMOR Names): +#=============================================== + "ocean_model_z","uo","uo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","vo","vo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","so","so" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","temp","temp" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# forcing + "ocean_model", "taux", "taux", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tauy", "tauy", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "latent", "latent", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "sensible", "sensible", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SW", "SW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LW", "LW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "evap", "evap", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lprec", "lprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +# "ocean_model", "frunoff", "frunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "fprec", "fprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +#============================================================================================= +################## +# +#======================= +# ATMOSPHERE DIAGNOSTICS +#======================= +### +# grid_spec +### + "dynamics", "grid_lon", "grid_lon", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lat", "grid_lat", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lont", "grid_lont", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_latt", "grid_latt", "grid_spec", "all", .false., "none", 2, + "dynamics", "area", "area", "grid_spec", "all", .false., "none", 2, +### +# 4x daily output +### + "dynamics", "slp", "slp", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "vort850", "vort850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "vort200", "vort200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "us", "us", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u1000", "u1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u850", "u850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u700", "u700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u500", "u500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u200", "u200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u100", "u100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u50", "u50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u10", "u10", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "vs", "vs", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v1000", "v1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v850", "v850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v700", "v700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v500", "v500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v200", "v200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v100", "v100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v50", "v50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v10", "v10", "atmos_4xdaily", "all", .false., "none", 2 +#### + "dynamics", "tm", "tm", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t1000", "t1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t850", "t850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t700", "t700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t500", "t500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t200", "t200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t100", "t100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t50", "t50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t10", "t10", "atmos_4xdaily", "all", .false., "none", 2 +#### + "dynamics", "h1000", "h1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "h850", "h850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "h700", "h700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "h500", "h500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "h200", "h200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "h100", "h100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "h50", "h50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "h10", "h10", "atmos_4xdaily", "all", .false., "none", 2 +#### +#"dynamics", "w1000", "w1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "w850", "w850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "w700", "w700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "w500", "w500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "w200", "w200", "atmos_4xdaily", "all", .false., "none", 2 +#### + "dynamics", "q1000", "q1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q850", "q850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q700", "q700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q500", "q500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q200", "q200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q100", "q100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q50", "q50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q10", "q10", "atmos_4xdaily", "all", .false., "none", 2 +#### + "dynamics", "rh1000", "rh1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "rh850", "rh850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "rh700", "rh700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "rh500", "rh500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "rh200", "rh200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg1000", "omg1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg850", "omg850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg700", "omg700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg500", "omg500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg200", "omg200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg100", "omg100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg50", "omg50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg10", "omg10", "atmos_4xdaily", "all", .false., "none", 2 +### +# gfs static data +### + "dynamics", "pk", "pk", "atmos_static", "all", .false., "none", 2 + "dynamics", "bk", "bk", "atmos_static", "all", .false., "none", 2 + "dynamics", "hyam", "hyam", "atmos_static", "all", .false., "none", 2 + "dynamics", "hybm", "hybm", "atmos_static", "all", .false., "none", 2 + "dynamics", "zsurf", "zsurf", "atmos_static", "all", .false., "none", 2 +### +# FV3 variabls needed for NGGPS evaluation +### +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 + +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 + +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/tests/parm/fd_nems.yaml b/tests/parm/fd_nems.yaml new file mode 100644 index 0000000000..7b27d884c7 --- /dev/null +++ b/tests/parm/fd_nems.yaml @@ -0,0 +1,756 @@ + field_dictionary: + version_number: 0.0.0 + institution: National ESPC, CSC & MCL Working Groups + source: automatically generated by the NUOPC Layer + description: Community-based dictionary for shared coupling fields + entries: + # + #----------------------------------- + # section: mediator calculation for atm/ocn flux calculation + #----------------------------------- + # + - standard_name: Faox_lat + alias: mean_laten_heat_flx_atm_into_ocn + canonical_units: W m-2 + description: mediator calculation - atm/ocn surface latent heat flux + # + - standard_name: Faox_lwup + alias: mean_up_lw_flx_ocn + canonical_units: W m-2 + description: mediator calculation - long wave radiation flux over the ocean + # + - standard_name: Faox_taux + alias: stress_on_air_ocn_zonal + canonical_units: N m-2 + description: mediator calculation + # + - standard_name: Faox_tauy + alias: stress_on_air_ocn_merid + canonical_units: N m-2 + description: mediator calculation + # + #----------------------------------- + # section: atmosphere export + #----------------------------------- + # + - standard_name: Faxa_bcph + canonical_units: kg m-2 s-1 + description: atmosphere export + # + - standard_name: Faxa_dstdry + canonical_units: kg m-2 s-1 + description: atmosphere export + # + - standard_name: Faxa_dstwet + canonical_units: kg m-2 s-1 + description: atmosphere export + # + #----------------------------------- + # section: atmosphere export + #----------------------------------- + # + - standard_name: Faxa_swdn + alias: mean_down_sw_flx + canonical_units: W m-2 + description: atmosphere export - mean downward SW heat flux + # + - standard_name: Faxa_lwdn + alias: mean_down_lw_flx + canonical_units: W m-2 + description: atmosphere export - mean downward LW heat flux + # + - standard_name: Faxa_rain + alias: mean_prec_rate + canonical_units: kg m-2 s-1 + description: atmosphere export + # + - standard_name: Faxa_snow + alias: mean_fprec_rate + canonical_units: kg m-2 s-1 + description: atmosphere export + # + - standard_name: Faxa_swnet + canonical_units: W m-2 + description: atmosphere export + # + - standard_name: Faxa_swndf + alias: mean_down_sw_ir_dif_flx + canonical_units: W m-2 + description: atmosphere export - mean surface downward nir diffuse flux + # + - standard_name: Faxa_swndr + alias: mean_down_sw_ir_dir_flx + canonical_units: W m-2 + description: atmosphere export - mean surface downward nir direct flux + # + - standard_name: Faxa_swvdf + alias: mean_down_sw_vis_dif_flx + canonical_units: W m-2 + description: atmosphere export - mean surface downward uv+vis diffuse flux + # + - standard_name: Faxa_swvdr + alias: mean_down_sw_vis_dir_flx + canonical_units: W m-2 + description: atmosphere export - mean surface downward uv+visvdirect flux + # + - standard_name: Sa_dens + alias: air_density_height_lowest + canonical_units: kg m-3 + description: atmosphere export- density at the lowest model layer + # + - standard_name: Sa_pbot + alias: inst_pres_height_lowest + canonical_units: Pa + description: atmosphere export - pressure at lowest model layer + # + - standard_name: Sa_pslv + alias: inst_pres_height_surface + canonical_units: Pa + description: atmosphere export - instantaneous pressure land and sea surface + # + - standard_name: Sa_ptem + canonical_units: K + description: atmosphere export - bottom layer potential temperature + # + - standard_name: Sa_shum + alias: inst_spec_humid_height_lowest + canonical_units: kg kg-1 + description: atmosphere export - bottom layer specific humidity + # + - standard_name: Sa_tbot + alias: inst_temp_height_lowest + canonical_units: K + description: atmosphere export - bottom layer temperature + # + - standard_name: Sa_u + alias: inst_zonal_wind_height_lowest + canonical_units: m s-1 + description: atmosphere export - bottom layer zonal wind + # + - standard_name: Sa_v + alias: inst_merid_wind_height_lowest + canonical_units: m s-1 + description: atmosphere export - bottom layer meridional wind + # + - standard_name: Sa_z + alias: inst_height_lowest + canonical_units: m + description: atmosphere export - bottom layer height + # + - standard_name: Faxa_taux + alias: mean_zonal_moment_flx_atm + canonical_units: N m-2 + description: atmosphere export- zonal component of momentum flux + # + - standard_name: Faxa_tauy + alias: mean_merid_moment_flx_atm + canonical_units: N m-2 + description: atmosphere export - meridional component of momentum flux + # + - standard_name: Faxa_lat + alias: mean_laten_heat_flx + canonical_units: W m-2 + description: atmosphere export - latent heat flux + # + - standard_name: Faxx_lwup + alias: mean_up_lw_flx + canonical_units: W m-2 + description: atmosphere import - merged ocn/ice flux + # + #----------------------------------- + # section: sea-ice export + #----------------------------------- + # + - standard_name: Faii_evap + alias: mean_evap_rate_atm_into_ice + canonical_units: kg m-2 s-1 + description: sea-ice export + # + - standard_name: Faii_lat + alias: mean_laten_heat_flx_atm_into_ice + canonical_units: W m-2 + description: sea-ice export to atm - atm/ice latent heat flux + # + - standard_name: Faii_sen + alias: mean_sensi_heat_flx_atm_into_ice + canonical_units: W m-2 + description: sea-ice export to atm - atm/ice sensible heat flux + # + - standard_name: Faii_lwup + alias: mean_up_lw_flx_ice + canonical_units: W m-2 + description: sea-ice export - outgoing logwave radiation + # + - standard_name: Faii_swnet + canonical_units: W m-2 + description: sea-ice export to atm + # + - standard_name: Faii_taux + alias: stress_on_air_ice_zonal + canonical_units: N m-2 + description: sea-ice export to atm - air ice zonal stress + # + - standard_name: Faii_tauy + alias: stress_on_air_ice_merid + canonical_units: N m-2 + description: sea-ice export - air ice meridional stress + # + - standard_name: Fioi_bcphi + canonical_units: kg m-2 s-1 + description: sea-ice export to ocean - hydrophilic black carbon flux to ocean + # + - standard_name: Fioi_bcpho + canonical_units: kg m-2 s-1 + description: sea-ice export to ocean - hydrophobic black carbon flux to ocean + # + - standard_name: Fioi_flxdst + canonical_units: kg m-2 s-1 + description: sea-ice export to ocean - dust aerosol flux to ocean + # + - standard_name: Fioi_melth + alias: net_heat_flx_to_ocn + canonical_units: W m-2 + description: sea-ice export to ocean - net heat flux to ocean + # + - standard_name: Fioi_meltw + alias: mean_fresh_water_to_ocean_rate + canonical_units: kg m-2 s-1 + description: sea-ice export to ocean - fresh water to ocean (h2o flux from melting) + # + - standard_name: Fioi_meltw_wiso + alias: mean_fresh_water_to_ocean_rate_wiso + canonical_units: kg m-2 s-1 + description: sea-ice export to ocean - fresh water to ocean (h2o flux from melting) for 16O, 18O, HDO + # + - standard_name: Fioi_salt + alias: mean_salt_rate + canonical_units: kg m-2 s-1 + description: sea-ice export to ocean - salt to ocean (salt flux from melting) + # + - standard_name: Fioi_swpen + alias: mean_sw_pen_to_ocn + canonical_units: W m-2 + description: sea-ice export to ocean - flux of shortwave through ice to ocean + # + - standard_name: Fioi_swpen_vdr + alias: mean_sw_pen_to_ocn_vis_dir_flx + canonical_units: W m-2 + description: sea-ice export to ocean - flux of vis dir shortwave through ice to ocean + # + - standard_name: Fioi_swpen_vdf + alias: mean_sw_pen_to_ocn_vis_dif_flx + canonical_units: W m-2 + description: sea-ice export to ocean - flux of vif dir shortwave through ice to ocean + # + - standard_name: Fioi_swpen_idr + alias: mean_sw_pen_to_ocn_ir_dir_flx + canonical_units: W m-2 + description: sea-ice export to ocean - flux of ir dir shortwave through ice to ocean + # + - standard_name: Fioi_swpen_idf + alias: mean_sw_pen_to_ocn_ir_dif_flx + canonical_units: W m-2 + description: sea-ice export to ocean - flux of ir dif shortwave through ice to ocean + # + - standard_name: Fioi_taux + alias: stress_on_ocn_ice_zonal + canonical_units: N m-2 + description: sea-ice export to ocean - ice ocean zonal stress + # + - standard_name: Fioi_tauy + alias: stress_on_ocn_ice_merid + canonical_units: N m-2 + description: sea-ice export to ocean - ice ocean meridional stress + # + - standard_name: Si_anidf + alias: inst_ice_ir_dif_albedo + canonical_units: 1 + description: sea-ice export to atm + # + - standard_name: Si_anidr + alias: inst_ice_ir_dir_albedo + canonical_units: 1 + description: sea-ice export to atm + # + - standard_name: Si_avsdf + alias: inst_ice_vis_dif_albedo + canonical_units: 1 + description: sea-ice export to atm + # + - standard_name: Si_avsdr + alias: inst_ice_vis_dir_albedo + canonical_units: 1 + description: sea-ice export to atm + # + - standard_name: Si_ifrac + alias: ice_fraction + canonical_units: 1 + description: sea-ice export to atm - ice fraction (varies with time) + # + - standard_name: Si_imask + alias: ice_mask + canonical_units: 1 + description: sea-ice export - ice mask + # + - standard_name: Si_qref + canonical_units: kg kg-1 + description: sea-ice export to atm + # + - standard_name: Si_t + alias: sea_ice_surface_temperature + canonical_units: K + description: sea-ice export + # + - standard_name: Si_tref + canonical_units: K + description: sea-ice export + # + - standard_name: Si_u10 + canonical_units: m + description: sea-ice export + # + - standard_name: Si_vice + alias: mean_ice_volume + canonical_units: m + description: sea-ice export + volume of ice per unit area + # + - standard_name: Si_snowh + canonical_units: m + description: sea-ice export - surface_snow_water_equivalent + # + - standard_name: Si_vsno + alias: mean_snow_volume + canonical_units: m + description: sea-ice export - volume of snow per unit area + # + #----------------------------------- + # section: ocean export to mediator + #----------------------------------- + # + - standard_name: Fioo_q + alias: freezing_melting_potential + canonical_units: W m-2 + description: ocean export + # + - standard_name: So_bldepth + alias: mixed_layer_depth + canonical_units: m + description: ocean export + # + - standard_name: So_dhdx + alias: sea_surface_slope_zonal + canonical_units: m m-1 + description: ocean export + # + - standard_name: So_dhdy + alias: sea_surface_slope_merid + canonical_units: m m-1 + description: ocean export + # + - standard_name: So_duu10n + canonical_units: m2 s-2 + description: ocean export + # + - standard_name: So_fswpen + canonical_units: 1 + description: ocean export + # + - standard_name: So_ofrac + canonical_units: 1 + description: ocean export + # + - standard_name: So_omask + alias: ocean_mask + canonical_units: 1 + description: ocean export + # + - standard_name: So_qref + canonical_units: kg kg-1 + description: ocean export + # + - standard_name: So_re + canonical_units: 1 + description: ocean export + # + - standard_name: So_s + alias: s_surf + canonical_units: g kg-1 + description: ocean export + # + - standard_name: So_ssq + canonical_units: kg kg-1 + description: ocean export + # + - standard_name: So_t + alias: sea_surface_temperature + canonical_units: K + description: ocean export + # + - standard_name: So_tref + canonical_units: K + description: ocean export + # + - standard_name: So_u + alias: ocn_current_zonal + canonical_units: m s-1 + description: ocean export + # + - standard_name: So_u10 + canonical_units: m + description: ocean export + # + - standard_name: So_ustar + canonical_units: m s-1 + description: ocean export + # + - standard_name: So_v + alias: ocn_current_merid + canonical_units: m s-1 + description: ocean export + # + #----------------------------------- + # section: ocean import + #----------------------------------- + # + - standard_name: mean_runoff_rate + canonical_units: kg m-2 s-1 + description: ocean import - total runoff to ocean + # + - standard_name: mean_runoff_heat_flux + canonical_units: kg m-2 s-1 + description: ocean import - heat content of runoff + # + - standard_name: mean_calving_rate + canonical_units: kg m-2 s-1 + description: ocean import - total calving to ocean + # + - standard_name: mean_calving_heat_flux + canonical_units: kg m-2 s-1 + description: ocean import - heat content of calving + # + - standard_name: Foxx_rofi + canonical_units: kg m-2 s-1 + description: ocean import - water flux due to runoff (frozen) + # + - standard_name: Foxx_rofl + alias: mean_runoff_rate + canonical_units: kg m-2 s-1 + description: ocean import - water flux due to runoff (liquid) + # + - standard_name: Foxx_swnet + alias: mean_net_sw_flx + canonical_units: W m-2 + description: ocean import - net shortwave radiation to ocean + # + - standard_name: Foxx_swnet_vdr + alias: mean_net_sw_vis_dir_flx + canonical_units: W m-2 + description: ocean import - net shortwave visible direct radiation to ocean + # + - standard_name: Foxx_swnet_vdf + alias: mean_net_sw_vis_dif_flx + canonical_units: W m-2 + description: ocean import - net shortwave visible diffuse radiation to ocean + # + - standard_name: Foxx_swnet_idr + alias: mean_net_sw_ir_dir_flx + canonical_units: W m-2 + description: ocean import - net shortwave ir direct radiation to ocean + # + - standard_name: Foxx_swnet_idf + alias: mean_net_sw_ir_dif_flx + canonical_units: W m-2 + description: ocean import - net shortwave ir diffuse radiation to ocean + # + - standard_name: Foxx_taux + alias: mean_zonal_moment_flx + canonical_units: N m-2 + description: ocean import - zonal surface stress to ocean + # + - standard_name: Foxx_tauy + alias: mean_merid_moment_flx + canonical_units: N m-2 + description: ocean import - meridional surface stress to ocean + # + #----------------------------------- + # mediator fields + #----------------------------------- + # + - standard_name: cpl_scalars + canonical_units: unitless + # + - standard_name: frac + canonical_units: 1 + # + - standard_name: mask + canonical_units: 1 + # + #----------------------------------- + # aliased fields for active and datm + #----------------------------------- + # + - standard_name: mean_net_lw_flx + canonical_units: W m-2 + - alias: Faxa_lwnet + standard_name : mean_net_lw_flx + description: atmosphere export - mean net longwave flux from atm + - alias: Foxx_lwnet + standard_name : mean_net_lw_flx + description: mediator calculation - atm/ocn net longwave flux + # + - standard_name: mean_sensi_heat_flx + canonical_units: W m-2 + - alias: Faxa_sen + standard_name : mean_sensi_heat_flx + description: atmosphere export - sensible heat flux + - alias: Faox_sen + standard_name : mean_sensi_heat_flx + description: mediator calculation - atm/ocn surface sensible heat flux + # + - standard_name: mean_evap_rate + canonical_units: kg m-2 s-1 + - alias: Faxa_evap + standard_name : mean_evap_rate + description: atmosphere export - latent heat flux conversion + - alias: Faox_evap + standard_name : mean_evap_rate + description: mediator calculation - atm/ocn specific humidity flux + # + #----------------------------------- + # section: atmosphere fields that need to be defined but are not used + #----------------------------------- + # + - standard_name: inst_temp_height2m + canonical_units: K + - standard_name: inst_spec_humid_height2m + canonical_units: K + - standard_name: inst_down_lw_flx + canonical_units: W m-2 + - standard_name: inst_net_lw_flx + canonical_units: W m-2 + - standard_name: inst_down_sw_flx + canonical_units: W m-2 + - standard_name: inst_net_sw_flx + canonical_units: W m-2 + - standard_name: inst_net_sw_ir_dir_flx + canonical_units: W m-2 + - standard_name: inst_net_sw_ir_dif_flx + canonical_units: W m-2 + - standard_name: inst_net_sw_vis_dir_flx + canonical_units: W m-2 + - standard_name: inst_net_sw_vis_dif_flx + canonical_units: W m-2 + - standard_name: inst_down_sw_ir_dif_flx + canonical_units: W m-2 + - standard_name: inst_down_sw_ir_dir_flx + canonical_units: W m-2 + - standard_name: inst_down_sw_vis_dif_flx + canonical_units: W m-2 + - standard_name: inst_down_sw_vis_dir_flx + canonical_units: W m-2 + - standard_name: inst_surface_height + canonical_units: m + - standard_name: inst_zonal_wind_height10m + canonical_units: m s-1 + - standard_name: inst_merid_wind_height10m + canonical_units: m s-1 + - standard_name: inst_zonal_moment_flx + canonical_units: N m-2 + - standard_name: inst_merid_moment_flx + canonical_units: N m-2 + - standard_name: inst_sensi_heat_flx + canonical_units: N m-2 + - standard_name: inst_laten_heat_flx + canonical_units: N m-2 + - standard_name: inst_tracer_mass_frac + canonical_units: 1 + - standard_name: inst_tracer_up_surface_flx + canonical_units: kg m-2 s-1 + - standard_name: inst_tracer_down_surface_flx + canonical_units: kg m-2 s-1 + - standard_name: inst_tracer_clmn_mass_dens + canonical_units: g m-2 + - standard_name: inst_tracer_anth_biom_flx + canonical_units: ug m-2 s-1 + description: atmosphere export + - standard_name: inst_pres_interface + canonical_units: Pa + - standard_name: inst_pres_levels + canonical_units: Pa + - standard_name: inst_geop_interface + canonical_units: tbd + - standard_name: inst_geop_levels + canonical_units: tbd + - standard_name: inst_temp_interface + canonical_units: K + - standard_name: inst_temp_levels + canonical_units: K + - standard_name: inst_zonal_wind_levels + canonical_units: m s-1 + - standard_name: inst_merid_wind_levels + canonical_units: m s-1 + - standard_name: inst_omega_levels + canonical_units: tbd + - standard_name: inst_tracer_mass_frac + canonical_units: 1 + - standard_name: inst_soil_moisture_content + canonical_units: tbd + - standard_name: soil_type + canonical_units: tbd + - standard_name: inst_pbl_height + canonical_units: tbd + - standard_name: surface_cell_area + canonical_units: tbd + - standard_name: inst_convective_rainfall_amount + canonical_units: tbd + - standard_name: inst_spec_humid_conv_tendency_levels + canonical_units: tbd + - standard_name: inst_exchange_coefficient_heat_levels + canonical_units: tbd + - standard_name: inst_friction_velocity + canonical_units: tbd + - standard_name: inst_rainfall_amount + canonical_units: tbd + - standard_name: inst_land_sea_mask + canonical_units: tbd + - standard_name: inst_temp_height_surface + canonical_units: tbd + - standard_name: inst_up_sensi_heat_flx + canonical_units: tbd + - standard_name: inst_lwe_snow_thickness + canonical_units: tbd + - standard_name: vegetation_type + canonical_units: tbd + - standard_name: inst_vegetation_area_frac + canonical_units: tbd + - standard_name: inst_surface_roughness + canonical_units: tbd + - standard_name: inst_zonal_moment_flx + canonical_units: N m-2 + - standard_name: inst_merid_moment_flx + canonical_units: N m-2 + - standard_name: inst_laten_heat_flx + canonical_units: W m-2 + - standard_name: inst_sensi_heat_flx + canonical_units: W m-2 + - standard_name: land_mask + canonical_units: 1 + # + #----------------------------------- + # WW3 import + #----------------------------------- + # + - standard_name: sea_surface_height_above_sea_level + canonical_units: m + description: ww3 import + # + - standard_name: sea_surface_salinity + alias: s_surf + canonical_units: g kg-1 + description: ww3 import + # + - standard_name: surface_eastward_sea_water_velocity + alias: ocn_current_zonal + canonical_units: m s-1 + description: ww3 import + # + - standard_name: surface_northward_sea_water_velocity + alias: ocn_current_merid + canonical_units: m s-1 + description: ww3 import + # + - standard_name: eastward_wind_at_10m_height + alias: inst_zonal_wind_height10m + canonical_units: m s-1 + description: ww3 import + # + - standard_name: northward_wind_at_10m_height + alias: inst_merid_wind_height10m + canonical_units: m s-1 + description: ww3 import + # + - standard_name: sea_ice_concentration + alias: ice_fraction + canonical_units: 1 + description: ww3 import + # + # + # WW3 export + # + - standard_name: wave_induced_charnock_parameter + canonical_units: 1 + description: ww3 export + # + - standard_name: wave_z0_roughness_length + canonical_units: 1 + description: ww3 export + # + - standard_name: northward_stokes_drift_current + canonical_units: m s-1 + description: ww3 export + # + - standard_name: eastward_stokes_drift_current + canonical_units: m s-1 + description: ww3 export + # + - standard_name: eastward_partitioned_stokes_drift_1 + canonical_units: m s-1 + description: ww3 export + # + - standard_name: eastward_partitioned_stokes_drift_2 + canonical_units: m s-1 + description: ww3 export + # + - standard_name: eastward_partitioned_stokes_drift_3 + canonical_units: m s-1 + description: ww3 export + # + - standard_name: northward_partitioned_stokes_drift_1 + canonical_units: m s-1 + description: ww3 export + # + - standard_name: northward_partitioned_stokes_drift_2 + canonical_units: m s-1 + description: ww3 export + # + - standard_name: northward_partitioned_stokes_drift_3 + canonical_units: m s-1 + description: ww3 export + # + - standard_name: eastward_wave_bottom_current + canonical_units: m s-1 + description: ww3 export + # + - standard_name: northward_wave_bottom_current + canonical_units: m s-1 + description: ww3 export + # + - standard_name: wave_bottom_current_radian_frequency + canonical_units: rad s-1 + description: ww3 export + # + - standard_name: eastward_wave_radiation_stress_gradient + canonical_units: Pa + description: ww3 export + # + - standard_name: northward_wave_radiation_stress_gradient + canonical_units: Pa + description: ww3 export + # + - standard_name: eastward_wave_radiation_stress + canonical_units: N m-1 + description: ww3 export + # + - standard_name: eastward_northward_wave_radiation_stress + canonical_units: N m-1 + description: ww3 export + # + - standard_name: wave_bottom_current_period + canonical_units: s + description: ww3 export + # + - standard_name: northward_wave_radiation_stress + canonical_units: Pa + description: ww3 export + # diff --git a/tests/parm/ice_in_template b/tests/parm/ice_in_template new file mode 100644 index 0000000000..c5f374155e --- /dev/null +++ b/tests/parm/ice_in_template @@ -0,0 +1,589 @@ +&setup_nml + days_per_year = 365 + use_leap_years = .true. + year_init = YEAR_INIT + istep0 = ISTEP0 + dt = DT_CICE + npt = 999 + ndtd = 1 + runtype = 'RUNTYPE' + runid = 'RUNID' + ice_ic = 'cice_model.res.nc' + restart = .true. + restart_ext = RESTART_EXT + use_restart_time = USE_RESTART_TIME + restart_format = 'nc' + lcdf64 = .false. + numin = 21 + numax = 89 + restart_dir = './RESTART/' + restart_file = 'iced' + pointer_file = './ice.restart_file' + dumpfreq = 'DUMPFREQ' + dumpfreq_n = DUMPFREQ_N + dump_last = .false. + bfbflag = 'off' + diagfreq = 6 + diag_type = 'file' + diag_file = 'ice_diag.d' + print_global = .true. + print_points = .true. + latpnt(1) = 90. + lonpnt(1) = 0. + latpnt(2) = -65. + lonpnt(2) = -45. + dbug = .false. + histfreq = 'm','d','h','x','x' + histfreq_n = 0 , 0 , 6 , 1 , 1 + hist_avg = CICE_HIST_AVG + history_dir = './history/' + history_file = 'iceh' + write_ic = .true. + incond_dir = './history/' + incond_file = 'iceh_ic' + version_name = 'CICE_6.0.2' +/ + +&grid_nml + grid_format = 'nc' + grid_type = 'tripole' + grid_file = 'CICEGRID' + kmt_file = 'CICEMASK' + use_bathymetry = .false. + kcatbound = 0 + ncat = 5 + nfsd = 1 + nilyr = 7 + nslyr = 1 + nblyr = 1 + nfsd = 1 +/ + +&tracer_nml + n_aero = 1 + n_zaero = 0 + n_algae = 0 + n_doc = 0 + n_dic = 0 + n_don = 0 + n_fed = 0 + n_fep = 0 + tr_iage = .true. + restart_age = .false. + tr_FY = .true. + restart_FY = .false. + tr_lvl = .true. + restart_lvl = .false. + tr_pond_cesm = .false. + restart_pond_cesm = .false. + tr_pond_topo = .false. + restart_pond_topo = .false. + tr_pond_lvl = .true. + restart_pond_lvl = .false. + tr_aero = .false. + restart_aero = .false. + tr_fsd = .false. + restart_fsd = .false. +/ + +&thermo_nml + kitd = 1 + ktherm = 1 + conduct = 'MU71' + a_rapid_mode = 0.5e-3 + Rac_rapid_mode = 10.0 + aspect_rapid_mode = 1.0 + dSdt_slow_mode = -5.0e-8 + phi_c_slow_mode = 0.05 + phi_i_mushy = 0.85 + sw_redist = .true. +/ + +&dynamics_nml + kdyn = 1 + ndte = 120 + revised_evp = .false. + kevp_kernel = 0 + brlx = 300.0 + arlx = 300.0 + ssh_stress = 'coupled' + advection = 'remap' + kstrength = 1 + krdg_partic = 1 + krdg_redist = 1 + mu_rdg = 3 + Cf = 17. + Ktens = 0. + e_ratio = 2. + basalstress = .false. + k1 = 8. + coriolis = 'latitude' + kridge = 1 + ktransport = 1 +/ + +&shortwave_nml + shortwave = 'dEdd' + albedo_type = 'default' + albicev = 0.78 + albicei = 0.36 + albsnowv = 0.98 + albsnowi = 0.70 + ahmax = 0.3 + R_ice = 0. + R_pnd = 0. + R_snw = 1.5 + dT_mlt = 1.5 + rsnw_mlt = 1500. + kalg = 0.0 +/ + +&ponds_nml + hp1 = 0.01 + hs0 = 0. + hs1 = 0.03 + dpscale = 1.e-3 + frzpnd = 'hlid' + rfracmin = 0.15 + rfracmax = 1. + pndaspect = 0.8 +/ + +&forcing_nml + formdrag = .false. + atmbndy = 'default' + calc_strair = .true. + calc_Tsfc = .true. + highfreq = .false. + natmiter = 5 + ustar_min = 0.0005 + emissivity = 0.95 + fbot_xfer_type = 'constant' + update_ocn_f = FRAZIL_FWSALT + l_mpond_fresh = .false. + tfrz_option = 'linear_salt' + restart_coszen = .true. + oceanmixed_ice = .false. + wave_spec_type = 'none' + wave_spec_file = 'unknown_wave_spec_file' + nfreq = 25 + restore_ice = .false. + restore_ocn = .false. + trestore = 90 + precip_units = 'mm_per_month' + default_season = 'winter' + atm_data_type = 'ncar' + ocn_data_type = 'default' + bgc_data_type = 'default' + fe_data_type = 'default' + ice_data_type = 'default' + fyear_init = 1997 + ycycle = 1 + atm_data_format = 'nc' + atm_data_dir = './INPUT/gx3_forcing_fields.nc' + bgc_data_dir = 'unknown_bgc_data_dir' + ocn_data_format = 'bin' + ocn_data_dir = '/unknown_ocn_data_dir' + oceanmixed_file = 'unknown_oceanmixed_file' +/ + +&domain_nml + nprocs = NPROC_ICE + nx_global = NX_GLB + ny_global = NY_GLB + block_size_x = BLCKX + block_size_y = BLCKY + max_blocks = -1 + processor_shape = 'slenderX2' + distribution_type = 'cartesian' + distribution_wght = 'latitude' + ew_boundary_type = 'cyclic' + ns_boundary_type = 'tripole' + maskhalo_dyn = .false. + maskhalo_remap = .false. + maskhalo_bound = .false. +/ + +&zbgc_nml + tr_brine = .false. + restart_hbrine = .false. + tr_zaero = .false. + modal_aero = .false. + skl_bgc = .false. + z_tracers = .false. + dEdd_algae = .false. + solve_zbgc = .false. + bgc_flux_type = 'Jin2006' + restore_bgc = .false. + restart_bgc = .false. + scale_bgc = .false. + solve_zsal = .false. + restart_zsal = .false. + tr_bgc_Nit = .true. + tr_bgc_C = .true. + tr_bgc_chl = .false. + tr_bgc_Am = .true. + tr_bgc_Sil = .true. + tr_bgc_DMS = .false. + tr_bgc_PON = .true. + tr_bgc_hum = .true. + tr_bgc_DON = .false. + tr_bgc_Fe = .true. + grid_o = 0.006 + grid_o_t = 0.006 + l_sk = 0.024 + grid_oS = 0.0 + l_skS = 0.028 + phi_snow = -0.3 + initbio_frac = 0.8 + frazil_scav = 0.8 + ratio_Si2N_diatoms = 1.8 + ratio_Si2N_sp = 0.0 + ratio_Si2N_phaeo = 0.0 + ratio_S2N_diatoms = 0.03 + ratio_S2N_sp = 0.03 + ratio_S2N_phaeo = 0.03 + ratio_Fe2C_diatoms = 0.0033 + ratio_Fe2C_sp = 0.0033 + ratio_Fe2C_phaeo = 0.1 + ratio_Fe2N_diatoms = 0.023 + ratio_Fe2N_sp = 0.023 + ratio_Fe2N_phaeo = 0.7 + ratio_Fe2DON = 0.023 + ratio_Fe2DOC_s = 0.1 + ratio_Fe2DOC_l = 0.033 + fr_resp = 0.05 + tau_min = 5200.0 + tau_max = 173000.0 + algal_vel = 0.0000000111 + R_dFe2dust = 0.035 + dustFe_sol = 0.005 + chlabs_diatoms = 0.03 + chlabs_sp = 0.01 + chlabs_phaeo = 0.05 + alpha2max_low_diatoms = 0.8 + alpha2max_low_sp = 0.67 + alpha2max_low_phaeo = 0.67 + beta2max_diatoms = 0.018 + beta2max_sp = 0.0025 + beta2max_phaeo = 0.01 + mu_max_diatoms = 1.44 + mu_max_sp = 0.851 + mu_max_phaeo = 0.851 + grow_Tdep_diatoms = 0.06 + grow_Tdep_sp = 0.06 + grow_Tdep_phaeo = 0.06 + fr_graze_diatoms = 0.0 + fr_graze_sp = 0.1 + fr_graze_phaeo = 0.1 + mort_pre_diatoms = 0.007 + mort_pre_sp = 0.007 + mort_pre_phaeo = 0.007 + mort_Tdep_diatoms = 0.03 + mort_Tdep_sp = 0.03 + mort_Tdep_phaeo = 0.03 + k_exude_diatoms = 0.0 + k_exude_sp = 0.0 + k_exude_phaeo = 0.0 + K_Nit_diatoms = 1.0 + K_Nit_sp = 1.0 + K_Nit_phaeo = 1.0 + K_Am_diatoms = 0.3 + K_Am_sp = 0.3 + K_Am_phaeo = 0.3 + K_Sil_diatoms = 4.0 + K_Sil_sp = 0.0 + K_Sil_phaeo = 0.0 + K_Fe_diatoms = 1.0 + K_Fe_sp = 0.2 + K_Fe_phaeo = 0.1 + f_don_protein = 0.6 + kn_bac_protein = 0.03 + f_don_Am_protein = 0.25 + f_doc_s = 0.4 + f_doc_l = 0.4 + f_exude_s = 1.0 + f_exude_l = 1.0 + k_bac_s = 0.03 + k_bac_l = 0.03 + T_max = 0.0 + fsal = 1.0 + op_dep_min = 0.1 + fr_graze_s = 0.5 + fr_graze_e = 0.5 + fr_mort2min = 0.5 + fr_dFe = 0.3 + k_nitrif = 0.0 + t_iron_conv = 3065.0 + max_loss = 0.9 + max_dfe_doc1 = 0.2 + fr_resp_s = 0.75 + y_sk_DMS = 0.5 + t_sk_conv = 3.0 + t_sk_ox = 10.0 + algaltype_diatoms = 0.0 + algaltype_sp = 0.5 + algaltype_phaeo = 0.5 + nitratetype = -1.0 + ammoniumtype = 1.0 + silicatetype = -1.0 + dmspptype = 0.5 + dmspdtype = -1.0 + humtype = 1.0 + doctype_s = 0.5 + doctype_l = 0.5 + dontype_protein = 0.5 + fedtype_1 = 0.5 + feptype_1 = 0.5 + zaerotype_bc1 = 1.0 + zaerotype_bc2 = 1.0 + zaerotype_dust1 = 1.0 + zaerotype_dust2 = 1.0 + zaerotype_dust3 = 1.0 + zaerotype_dust4 = 1.0 + ratio_C2N_diatoms = 7.0 + ratio_C2N_sp = 7.0 + ratio_C2N_phaeo = 7.0 + ratio_chl2N_diatoms= 2.1 + ratio_chl2N_sp = 1.1 + ratio_chl2N_phaeo = 0.84 + F_abs_chl_diatoms = 2.0 + F_abs_chl_sp = 4.0 + F_abs_chl_phaeo = 5.0 + ratio_C2N_proteins = 7.0 +/ + +&icefields_nml + f_tmask = .true. + f_blkmask = .true. + f_tarea = .true. + f_uarea = .true. + f_dxt = .false. + f_dyt = .false. + f_dxu = .false. + f_dyu = .false. + f_HTN = .false. + f_HTE = .false. + f_ANGLE = .true. + f_ANGLET = .true. + f_NCAT = .true. + f_VGRDi = .false. + f_VGRDs = .false. + f_VGRDb = .false. + f_VGRDa = .true. + f_bounds = .false. + f_aice = 'mdhxx' + f_hi = 'mdhxx' + f_hs = 'mdhxx' + f_Tsfc = 'mdhxx' + f_sice = 'mdhxx' + f_uvel = 'mdhxx' + f_vvel = 'mdhxx' + f_uatm = 'mdhxx' + f_vatm = 'mdhxx' + f_fswdn = 'mdhxx' + f_flwdn = 'mdhxx' + f_snowfrac = 'x' + f_snow = 'mdhxx' + f_snow_ai = 'x' + f_rain = 'mdhxx' + f_rain_ai = 'x' + f_sst = 'mdhxx' + f_sss = 'mdhxx' + f_uocn = 'mdhxx' + f_vocn = 'mdhxx' + f_frzmlt = 'mdhxx' + f_fswfac = 'mdhxx' + f_fswint_ai = 'x' + f_fswabs = 'mdhxx' + f_fswabs_ai = 'x' + f_albsni = 'mdhxx' + f_alvdr = 'mdhxx' + f_alidr = 'mdhxx' + f_alvdf = 'mdhxx' + f_alidf = 'mdhxx' + f_alvdr_ai = 'x' + f_alidr_ai = 'x' + f_alvdf_ai = 'x' + f_alidf_ai = 'x' + f_albice = 'mdhxx' + f_albsno = 'mdhxx' + f_albpnd = 'mdhxx' + f_coszen = 'mdhxx' + f_flat = 'mdhxx' + f_flat_ai = 'x' + f_fsens = 'mdhxx' + f_fsens_ai = 'x' + f_fswup = 'x' + f_flwup = 'mdhxx' + f_flwup_ai = 'x' + f_evap = 'mdhxx' + f_evap_ai = 'x' + f_Tair = 'mdhxx' + f_Tref = 'mdhxx' + f_Qref = 'mdhxx' + f_congel = 'mdhxx' + f_frazil = 'mdhxx' + f_snoice = 'mdhxx' + f_dsnow = 'mdhxx' + f_melts = 'mdhxx' + f_meltt = 'mdhxx' + f_meltb = 'mdhxx' + f_meltl = 'mdhxx' + f_fresh = 'mdhxx' + f_fresh_ai = 'x' + f_fsalt = 'mdhxx' + f_fsalt_ai = 'x' + f_fbot = 'mdhxx' + f_fhocn = 'mdhxx' + f_fhocn_ai = 'x' + f_fswthru = 'mdhxx' + f_fswthru_ai = 'x' + f_fsurf_ai = 'x' + f_fcondtop_ai = 'x' + f_fmeltt_ai = 'x' + f_strairx = 'mdhxx' + f_strairy = 'mdhxx' + f_strtltx = 'x' + f_strtlty = 'x' + f_strcorx = 'x' + f_strcory = 'x' + f_strocnx = 'mdhxx' + f_strocny = 'mdhxx' + f_strintx = 'x' + f_strinty = 'x' + f_taubx = 'x' + f_tauby = 'x' + f_strength = 'x' + f_divu = 'x' + f_shear = 'x' + f_sig1 = 'x' + f_sig2 = 'x' + f_sigP = 'x' + f_dvidtt = 'x' + f_dvidtd = 'x' + f_daidtt = 'x' + f_daidtd = 'x' + f_dagedtt = 'x' + f_dagedtd = 'x' + f_mlt_onset = 'mdhxx' + f_frz_onset = 'mdhxx' + f_hisnap = 'x' + f_aisnap = 'x' + f_trsig = 'x' + f_icepresent = 'x' + f_iage = 'x' + f_FY = 'x' + f_aicen = 'x' + f_vicen = 'x' + f_vsnon = 'x' + f_snowfracn = 'x' + f_keffn_top = 'x' + f_Tinz = 'x' + f_Sinz = 'x' + f_Tsnz = 'x' + f_fsurfn_ai = 'x' + f_fcondtopn_ai = 'x' + f_fmelttn_ai = 'x' + f_flatn_ai = 'x' + f_fsensn_ai = 'x' +/ + +&icefields_mechred_nml + f_alvl = 'x' + f_vlvl = 'x' + f_ardg = 'x' + f_vrdg = 'x' + f_dardg1dt = 'x' + f_dardg2dt = 'x' + f_dvirdgdt = 'x' + f_opening = 'x' + f_ardgn = 'x' + f_vrdgn = 'x' + f_dardg1ndt = 'x' + f_dardg2ndt = 'x' + f_dvirdgndt = 'x' + f_krdgn = 'x' + f_aparticn = 'x' + f_aredistn = 'x' + f_vredistn = 'x' + f_araftn = 'x' + f_vraftn = 'x' +/ + +&icefields_pond_nml + f_apondn = 'x' + f_apeffn = 'x' + f_hpondn = 'x' + f_apond = 'mdhxx' + f_hpond = 'mdhxx' + f_ipond = 'mdhxx' + f_apeff = 'mdhxx' + f_apond_ai = 'x' + f_hpond_ai = 'x' + f_ipond_ai = 'x' + f_apeff_ai = 'x' +/ + +&icefields_bgc_nml + f_faero_atm = 'x' + f_faero_ocn = 'x' + f_aero = 'x' + f_fbio = 'x' + f_fbio_ai = 'x' + f_zaero = 'x' + f_bgc_S = 'x' + f_bgc_N = 'x' + f_bgc_C = 'x' + f_bgc_DOC = 'x' + f_bgc_DIC = 'x' + f_bgc_chl = 'x' + f_bgc_Nit = 'x' + f_bgc_Am = 'x' + f_bgc_Sil = 'x' + f_bgc_DMSPp = 'x' + f_bgc_DMSPd = 'x' + f_bgc_DMS = 'x' + f_bgc_DON = 'x' + f_bgc_Fe = 'x' + f_bgc_hum = 'x' + f_bgc_PON = 'x' + f_bgc_ml = 'x' + f_upNO = 'x' + f_upNH = 'x' + f_bTin = 'x' + f_bphi = 'x' + f_iDi = 'x' + f_iki = 'x' + f_fbri = 'x' + f_hbri = 'x' + f_zfswin = 'x' + f_bionet = 'x' + f_biosnow = 'x' + f_grownet = 'x' + f_PPnet = 'x' + f_algalpeak = 'x' + f_zbgc_frac = 'x' +/ + +&icefields_drag_nml + f_drag = 'x' + f_Cdn_atm = 'x' + f_Cdn_ocn = 'x' +/ + +&icefields_fsd_nml + f_fsdrad = 'x' + f_fsdperim = 'x' + f_afsd = 'x' + f_afsdn = 'x' + f_dafsd_newi = 'x' + f_dafsd_latg = 'x' + f_dafsd_latm = 'x' + f_dafsd_wave = 'x' + f_dafsd_weld = 'x' + f_wave_sig_ht = 'x' + f_aice_ww = 'x' + f_diam_ww = 'x' + f_hice_ww = 'x' +/ diff --git a/tests/parm/input.benchmark.nml.IN b/tests/parm/input.benchmark.nml.IN new file mode 100644 index 0000000000..35f91985b5 --- /dev/null +++ b/tests/parm/input.benchmark.nml.IN @@ -0,0 +1,326 @@ +&amip_interp_nml + interp_oi_sst = .true. + use_ncep_sst = .true. + use_ncep_ice = .false. + no_anom_sst = .false. + data_set = 'reynolds_oi' + date_out_of_range = 'climo' + +/ + +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + fdiag = 6 + fhmax = 840 + fhout = 6 + fhmaxhf = 0 + fhouthf = -1 + +/ + +&diag_manager_nml + prepend_date = .false. + +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 + +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = 3000000 + print_memory_usage = .false. + +/ + +&fv_core_nml + layout = @[INPES],@[JNPES] + io_layout = 1,1 + npx = @[NPX] + npy = @[NPY] + ntiles = 6, + npz = @[NPZ] + grid_type = -1 + make_nh = @[MAKE_NH] + fv_debug = .false. + range_warn = .false. + reset_eta = .false. + n_sponge = 10 + nudge_qv = .true. + nudge_dz = .false. + tau = 10. + rf_cutoff = 7.5e2 + d2_bg_k1 = 0.15 + d2_bg_k2 = 0.02 + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .false. + phys_hydrostatic = .false. + use_hydro_pressure = .false. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 6 + nwat = 6 + na_init = @[NA_INIT] + d_ext = 0. + dnats = 1 + fv_sg_adj = 450 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.12 + vtdm4 = 0.02 + delt_max = 0.002 + ke_bg = 0. + do_vort_damp = .true. + external_ic = @[EXTERNAL_IC] + external_eta = .true. + gfs_phil = .false. + nggps_ic = @[NGGPS_IC] + mountain = @[MOUNTAIN] + ncep_ic = .false. + d_con = 1. + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 + adjust_dry_mass = .false. + consv_te = 1. + do_sat_adj = .true. + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = 6 + warm_start = @[WARM_START] + no_dycore = .false. + z_tracer = .true. + agrid_vel_rst = .true. + read_increment = .false. + res_latlon_dynamics = "" + +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = 0 + launch_level = 27 +/ + +&external_ic_nml + filtered_terrain = .true. + levp = 65 + gfs_dwinds = .true. + checker_tr = .false. + nt_checker = 0 + +/ + +&gfs_physics_nml + fhzero = 6 + h2o_phys = .true. + ldiag3d = .false. + fhcyc = 24 + use_ufo = .true. + pre_rad = .false. + ncld = 5 + imp_physics = 11 + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = 1 + iems = 1 + iaer = 111 + icliq_sw = 1 + iovr_lw = 1 + iovr_sw = 1 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. + shal_cnv = .true. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = .true. + satmedmf = .false. + isatmedmf = 0 + lheatstrg = .false. + random_clds = .false. + trans_trac = .true. + cnvcld = .true. + imfshalcnv = 2 + imfdeepcnv = 2 + cdmbgwd = 1.0,1.2 + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsoil = 4 + lsm = 1 + iopt_dveg = 1 + iopt_crs = 1 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_alb = 2 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 1 + debug = .false. + nstf_name = 0,0,0,0,0 + nst_anl = .false. + psautco = 0.0008,0.0005 + prautco = 0.00015,0.00015 + lgfdlmprad = .true. + effr_in = .true. + ldiag_ugwp = .false. + do_ugwp = .false. + do_tofd = .false. + cplflx = .T. + cplwav = @[CPLWAV] + cplwav2atm = @[CPLWAV2ATM] + +/ + +&gfdl_cloud_microphysics_nml + sedi_transport = .true. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .F. + const_vs = .F. + const_vg = .F. + const_vr = .F. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 225. + tau_v2l = 150. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0E-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 150. + +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' + +/ + +&namsfc + FNGLAC = "global_glacier.2x2.grb", + FNMXIC = "global_maxice.2x2.grb", + FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", + FNSNOC = "global_snoclim.1.875.grb", + FNZORC = "igbp", + FNALBC = @[FNALBC] + FNALBC2 = "global_albedo4.1x1.grb", + FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", + FNTG3C = "global_tg3clim.2.6x1.5.grb", + FNVEGC = "global_vegfrac.0.144.decpercent.grb", + FNVETC = @[FNVETC] + FNSOTC = @[FNSOTC] + FNSMCC = @[FNSMCC] + FNMSKH = "seaice_newland.grb", + FNTSFA = "", + FNACNA = "", + FNSNOA = "", + FNVMNC = "global_shdmin.0.144x0.144.grb", + FNVMXC = "global_shdmax.0.144x0.144.grb", + FNSLPC = "global_slope.1x1.grb", + FNABSC = @[FNABSC] + LDEBUG =.false., + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + LANDICE = .true. + FTSFS = 90 + FAISL = 99999 + FAISS = 99999 + FSNOL = 99999 + FSNOS = 99999 + FSICL = 99999 + FSICS = 99999 + FTSFL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 + +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' + +/ + +&nam_stochy +/ +&nam_sfcperts +/ + + &MOM_input_nml + output_directory = 'MOM6_OUTPUT/', + input_filename = '@[MOM6_RESTART_SETTING]' + restart_input_dir = 'INPUT/', + restart_output_dir = 'RESTART/', + parameter_filename = 'INPUT/MOM_input', + 'INPUT/MOM_override' / + diff --git a/tests/parm/input.benchmark_ccpp.nml.IN b/tests/parm/input.benchmark_ccpp.nml.IN new file mode 100644 index 0000000000..07ea5dd084 --- /dev/null +++ b/tests/parm/input.benchmark_ccpp.nml.IN @@ -0,0 +1,330 @@ +&amip_interp_nml + interp_oi_sst = .true. + use_ncep_sst = .true. + use_ncep_ice = .false. + no_anom_sst = .false. + data_set = 'reynolds_oi' + date_out_of_range = 'climo' + +/ + +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + fdiag = 6 + fhmax = 840 + fhout = 6 + fhmaxhf = 0 + fhouthf = -1 + ccpp_suite = '@[SUITE_NAME]' + +/ + +&diag_manager_nml + prepend_date = .false. + +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 + +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = 3000000 + print_memory_usage = .false. + +/ + +&fv_core_nml + layout = @[INPES],@[JNPES] + io_layout = 1,1 + npx = @[NPX] + npy = @[NPY] + ntiles = 6, + npz = @[NPZ] + grid_type = -1 + make_nh = @[MAKE_NH] + fv_debug = .false. + range_warn = .false. + reset_eta = .false. + n_sponge = 10 + nudge_qv = .true. + nudge_dz = .false. + tau = 10. + rf_cutoff = 7.5e2 + d2_bg_k1 = 0.15 + d2_bg_k2 = 0.02 + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .false. + phys_hydrostatic = .false. + use_hydro_pressure = .false. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 6 + nwat = 6 + na_init = @[NA_INIT] + d_ext = 0. + dnats = 1 + fv_sg_adj = 450 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.12 + vtdm4 = 0.02 + delt_max = 0.002 + ke_bg = 0. + do_vort_damp = .true. + external_ic = @[EXTERNAL_IC] + external_eta = .true. + gfs_phil = .false. + nggps_ic = @[NGGPS_IC] + mountain = @[MOUNTAIN] + ncep_ic = .false. + d_con = 1. + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 + adjust_dry_mass = .false. + consv_te = 1. + do_sat_adj = .true. + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = 6 + warm_start = @[WARM_START] + no_dycore = .false. + z_tracer = .true. + agrid_vel_rst = .true. + read_increment = .false. + res_latlon_dynamics = "" + +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = 0 + launch_level = 27 +/ + +&external_ic_nml + filtered_terrain = .true. + levp = 65 + gfs_dwinds = .true. + checker_tr = .false. + nt_checker = 0 + +/ + +&gfs_physics_nml + fhzero = 6 + oz_phys = .false. + oz_phys_2015 = .true. + h2o_phys = .true. + ldiag3d = .false. + fhcyc = 24 + use_ufo = .true. + pre_rad = .false. + ncld = 5 + imp_physics = 11 + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = 1 + iems = 1 + iaer = 111 + icliq_sw = 1 + iovr_lw = 1 + iovr_sw = 1 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. + shal_cnv = .true. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = .true. + satmedmf = .false. + isatmedmf = 0 + lheatstrg = .false. + random_clds = .false. + trans_trac = .true. + cnvcld = .true. + imfshalcnv = 2 + imfdeepcnv = 2 + cdmbgwd = 1.0,1.2 + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsoil = 4 + lsm = 1 + iopt_dveg = 1 + iopt_crs = 1 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_alb = 2 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 1 + debug = .false. + nstf_name = 0,0,0,0,0 + frac_grid = @[FRAC_GRID] + nst_anl = .false. + psautco = 0.0008,0.0005 + prautco = 0.00015,0.00015 + lgfdlmprad = .true. + effr_in = .true. + ldiag_ugwp = .false. + do_ugwp = .false. + do_tofd = .false. + cplflx = .T. + cplwav = @[CPLWAV] + cplwav2atm = @[CPLWAV2ATM] + +/ + +&gfdl_cloud_microphysics_nml + sedi_transport = .true. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .F. + const_vs = .F. + const_vg = .F. + const_vr = .F. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 225. + tau_v2l = 150. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0E-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 150. + +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' + +/ + +&namsfc + FNGLAC = "global_glacier.2x2.grb", + FNMXIC = "global_maxice.2x2.grb", + FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", + FNSNOC = "global_snoclim.1.875.grb", + FNZORC = "igbp", + FNALBC = @[FNALBC] + FNALBC2 = "global_albedo4.1x1.grb", + FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", + FNTG3C = "global_tg3clim.2.6x1.5.grb", + FNVEGC = "global_vegfrac.0.144.decpercent.grb", + FNVETC = @[FNVETC] + FNSOTC = @[FNSOTC] + FNSMCC = @[FNSMCC] + FNMSKH = "seaice_newland.grb", + FNTSFA = "", + FNACNA = "", + FNSNOA = "", + FNVMNC = "global_shdmin.0.144x0.144.grb", + FNVMXC = "global_shdmax.0.144x0.144.grb", + FNSLPC = "global_slope.1x1.grb", + FNABSC = @[FNABSC] + LDEBUG =.false., + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + LANDICE = .true. + FTSFS = 90 + FAISL = 99999 + FAISS = 99999 + FSNOL = 99999 + FSNOS = 99999 + FSICL = 99999 + FSICS = 99999 + FTSFL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 + +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' + +/ + +&nam_stochy +/ +&nam_sfcperts +/ + + &MOM_input_nml + output_directory = 'MOM6_OUTPUT/', + input_filename = '@[MOM6_RESTART_SETTING]' + restart_input_dir = 'INPUT/', + restart_output_dir = 'RESTART/', + parameter_filename = 'INPUT/MOM_input', + 'INPUT/MOM_override' / + diff --git a/tests/parm/input.mom6_ccpp.nml.IN b/tests/parm/input.mom6_ccpp.nml.IN new file mode 100644 index 0000000000..f6d8b5f39a --- /dev/null +++ b/tests/parm/input.mom6_ccpp.nml.IN @@ -0,0 +1,317 @@ +&amip_interp_nml + interp_oi_sst = .true. + use_ncep_sst = .true. + use_ncep_ice = .false. + no_anom_sst = .false. + data_set = 'reynolds_oi', + date_out_of_range = 'climo', +/ + +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + fdiag = @[FDIAG] + fhmax = @[FHMAX] + fhmaxhf = @[NFHMAX_HF] + ccpp_suite = '@[SUITE_NAME]' +/ + +&diag_manager_nml + prepend_date = .F. +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100, + max_files_w = 100, +/ + +&fms_nml + clock_grain = 'ROUTINE', + domains_stack_size = 3000000, + print_memory_usage = .false. +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&fv_core_nml + layout = @[INPES],@[JNPES] + io_layout = 1,1 + npx = @[NPX] + npy = @[NPY] + ntiles = 6, + npz = @[NPZ] + grid_type = -1 + make_nh = @[MAKE_NH] + fv_debug = .F. + range_warn = .F. + reset_eta = .F. + n_sponge = 24 + nudge_qv = .T. + tau = 5. + rf_cutoff = 7.5e2 + d2_bg_k1 = 0.15 + d2_bg_k2 = 0.02 + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .F. + phys_hydrostatic = .F. + use_hydro_pressure = .F. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 6 + nwat = 2 + na_init = @[NA_INIT] + d_ext = 0.0 + dnats = 0 + fv_sg_adj = 450 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.12 + vtdm4 = 0.02 + delt_max = 0.002 + ke_bg = 0. + do_vort_damp = .true. + external_ic = @[EXTERNAL_IC] + external_eta = .T. + gfs_phil = .false. + nggps_ic = @[NGGPS_IC] + mountain = @[MOUNTAIN] + ncep_ic = .F. + d_con = 1. + hord_mt = 6 + hord_vt = 6 + hord_tm = 6 + hord_dp = 6 + hord_tr = 8 + adjust_dry_mass = .F. + consv_te = 1. + consv_am = .F. + fill = .T. + dwind_2d = .F. + print_freq = 6 + warm_start = @[WARM_START] + no_dycore = .false. + z_tracer = .T. + read_increment = @[READ_INCREMENT] + res_latlon_dynamics = "fv3_increment.nc" +/ + +#&coupler_nml +# months = 0 +# days = 1 +# hours = 0 +# dt_atmos = 225 +# dt_ocean = 225 +# current_date = 2016,10,03,00,0,0 +# calendar = 'julian' +# memuse_verbose = .false. +# atmos_nthreads = 1 +# use_hyper_thread = .false. +# ncores_per_node = 24 +#/ + +&external_ic_nml + filtered_terrain = .true. + levp = @[NPZP] + gfs_dwinds = .true. + checker_tr = .F. + nt_checker = 0 +/ + +&gfs_physics_nml + fhzero = 6. + ldiag3d = .false. + fhcyc = 24. + nst_anl = .true. + use_ufo = .true. + pre_rad = .false. + ncld = 1 + imp_physics = 99 + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = 1 + iems = 1 + IAER = 111 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. + shal_cnv = .true. + cal_pre = .true. + redrag = .true. + dspheat = .true. + hybedmf = @[HYBEDMF] + satmedmf = @[SATMEDMF] + lheatstrg = @[LHEATSTRG] + random_clds = .true. + trans_trac = .false. + cnvcld = .true. + imfshalcnv = 2 + imfdeepcnv = 2 + isatmedmf = @[ISATMEDMF] + cdmbgwd = 3.5,0.25 + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsm = 1 + iopt_dveg = 2 + iopt_crs = 1 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_alb = 2 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 1 + debug = .false. + oz_phys = @[OZ_PHYS_OLD] + oz_phys_2015 = @[OZ_PHYS_NEW] + h2o_phys = @[H2O_PHYS] + nstf_name = @[NSTF_NAME] + frac_grid = @[FRAC_GRID] + cplflx = @[CPLFLX] + cplwav = @[CPLWAV] + cplwav2atm = @[CPLWAV2ATM] + iau_delthrs = 6 + iaufhrs = 30 + iau_inc_files = @[IAU_INC_FILES] + iau_drymassfixer = @[IAU_DRYMASSFIXER] + do_sppt = @[DO_SPPT] + do_shum = @[DO_SHUM] + do_skeb = @[DO_SKEB] + lndp_type = @[LNDP_TYPE] + n_var_lndp = @[N_VAR_LNDP] + do_ca = .false. + ca_sgs = .false. + nca = 1 + ncells = 5 + nlives = 30 + nseed = 1000000 + nfracseed = 0.5 + nthresh = 0. + ca_trigger = .true. + ca_entr = .false. + ca_closure = .false. + ca_global = .false. + nca_g = 1 + ncells_g = 1 + nlives_g = 100 + nseed_g = 100 + ca_smooth = .false. + nspinup = 100 + iseed_ca = 1 + nsmooth = 1 + ca_amplitude = 0.5 +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&namsfc + FNGLAC = "global_glacier.2x2.grb", + FNMXIC = "global_maxice.2x2.grb", + FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", + FNSNOC = "global_snoclim.1.875.grb", + FNZORC = "igbp", + FNALBC = @[FNALBC] + FNALBC2 = "global_albedo4.1x1.grb", + FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", + FNTG3C = "global_tg3clim.2.6x1.5.grb", + FNVEGC = "global_vegfrac.0.144.decpercent.grb", + FNVETC = @[FNVETC] + FNSOTC = @[FNSOTC] + FNSMCC = @[FNSMCC] + FNMSKH = "seaice_newland.grb", + FNTSFA = "", + FNACNA = "", + FNSNOA = "", + FNVMNC = "global_shdmin.0.144x0.144.grb", + FNVMXC = "global_shdmax.0.144x0.144.grb", + FNSLPC = "global_slope.1x1.grb", + FNABSC = @[FNABSC] + LDEBUG =.false., + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + FTSFS = 90 + FAISS = 99999 + FSNOL = 99999 + FSICL = 99999 + FTSFL = 99999, + FAISL = 99999, + FVETL = 99999, + FSOTL = 99999, + FvmnL = 99999, + FvmxL = 99999, + FSLPL = 99999, + FABSL = 99999, + FSNOS = 99999, + FSICS = 99999, +/ +&nam_stochy + lon_s=768, + lat_s=384, + ntrunc=382, + SKEBNORM=1, + SKEB_NPASS=30, + SKEB_VDOF=5, + SKEB=@[SKEB], + SKEB_TAU=2.16E4, + SKEB_LSCALE=1000.E3, + SHUM=@[SHUM], + SHUM_TAU=21600, + SHUM_LSCALE=500000, + SPPT=@[SPPT], + SPPT_TAU=21600, + SPPT_LSCALE=500000, + SPPT_LOGIT=.TRUE., + SPPT_SFCLIMIT=.TRUE., + ISEED_SHUM=1, + ISEED_SKEB=2, + ISEED_SPPT=3, +/ +&nam_sfcperts + lndp_type = @[LNDP_TYPE] + LNDP_TAU=21600, + LNDP_LSCALE=500000, + ISEED_LNDP=2010, +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = 0 + launch_level = 25 +/ +&MOM_input_nml + output_directory = 'MOM6_OUTPUT/', + input_filename = '@[MOM6_RESTART_SETTING]' + restart_input_dir = 'INPUT/', + restart_output_dir = 'RESTART/', + parameter_filename = 'INPUT/MOM_input', + 'INPUT/MOM_override' / diff --git a/tests/parm/med_modelio.nml b/tests/parm/med_modelio.nml new file mode 100644 index 0000000000..959488b191 --- /dev/null +++ b/tests/parm/med_modelio.nml @@ -0,0 +1,8 @@ +&pio_inparm + pio_netcdf_format = "64bit_offset" + pio_numiotasks = -99 + pio_rearranger = 1 + pio_root = 1 + pio_stride = 36 + pio_typename = "netcdf" +/ diff --git a/tests/parm/model_configure.IN b/tests/parm/model_configure.IN index f266e5a81d..73122f7774 100644 --- a/tests/parm/model_configure.IN +++ b/tests/parm/model_configure.IN @@ -19,7 +19,9 @@ atmos_nthreads: @[THRD] use_hyper_thread: .false. ncores_per_node: 24 restart_interval: @[RESTART_INTERVAL] +fhrot: @[FHROT] output_1st_tstep_rst: .false. +atm_coupling_interval_sec: @[coupling_interval_fast_sec] quilting: @[QUILTING] write_groups: @[WRITE_GROUP] diff --git a/tests/parm/nems.configure.medcmeps_atm_ocn_ice.IN b/tests/parm/nems.configure.medcmeps_atm_ocn_ice.IN new file mode 100644 index 0000000000..2058ebedae --- /dev/null +++ b/tests/parm/nems.configure.medcmeps_atm_ocn_ice.IN @@ -0,0 +1,102 @@ +############################################# +#### NEMS Run-Time Configuration File ##### +############################################# + +# EARTH # +EARTH_component_list: MED ATM OCN ICE +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESHICE] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 +:: + +# CMEPS warm run sequence +runSeq:: +@@[coupling_interval_slow_sec] + MED med_phases_prep_ocn_accum_avg + MED -> OCN :remapMethod=redist + OCN + @@[coupling_interval_fast_sec] + MED med_phases_prep_atm + MED med_phases_prep_ice + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + ATM + ICE + ATM -> MED :remapMethod=redist + ICE -> MED :remapMethod=redist + MED med_fraction_set + MED med_phases_prep_ocn_map + MED med_phases_prep_ocn_merge + MED med_phases_prep_ocn_accum_fast + MED med_phases_profile + @ + OCN -> MED :remapMethod=redist + MED med_phases_restart_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: + mediator_read_restart = @[use_coldstart] +:: +MED_attributes:: + ATM_model = @[atm_model] + ICE_model = @[ice_model] + OCN_model = @[ocn_model] + history_n = 0 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] +:: +ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + case_name = ufs.s2s + restart_n = @[RESTART_INTERVAL] + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + use_coldstart = @[use_coldstart] +:: diff --git a/tests/parm/nems.configure.medcmeps_atm_ocn_ice_wav.IN b/tests/parm/nems.configure.medcmeps_atm_ocn_ice_wav.IN new file mode 100644 index 0000000000..63eb5ebd5e --- /dev/null +++ b/tests/parm/nems.configure.medcmeps_atm_ocn_ice_wav.IN @@ -0,0 +1,116 @@ +############################################# +#### NEMS Run-Time Configuration File ##### +############################################# + +# EARTH # +EARTH_component_list: MED ATM OCN ICE WAV +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESHICE] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 +:: + +# WAV # +WAV_model: @[wav_model] +WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_attributes:: + Verbosity = 0 + OverwriteSlice = false +:: + +# CMEPS warm run sequence +runSeq:: +@@[coupling_interval_slow_sec] + MED med_phases_prep_ocn_accum_avg + MED -> OCN :remapMethod=redist + OCN -> WAV + WAV -> OCN :srcMaskValues=1 + OCN + @@[coupling_interval_fast_sec] + MED med_phases_prep_atm + MED med_phases_prep_ice + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + WAV -> ATM :srcMaskValues=1 + ATM -> WAV + ICE -> WAV + ATM + ICE + WAV + ATM -> MED :remapMethod=redist + ICE -> MED :remapMethod=redist + MED med_fraction_set + MED med_phases_prep_ocn_map + MED med_phases_prep_ocn_merge + MED med_phases_prep_ocn_accum_fast + MED med_phases_profile + @ + OCN -> MED :remapMethod=redist + MED med_phases_restart_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: + mediator_read_restart = @[use_coldstart] +:: +MED_attributes:: + ATM_model = @[atm_model] + ICE_model = @[ice_model] + OCN_model = @[ocn_model] + history_n = 0 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] +:: +ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + case_name = ufs.s2s + restart_n = @[RESTART_INTERVAL] + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + use_coldstart = @[use_coldstart] +:: diff --git a/tests/parm/pio_in b/tests/parm/pio_in new file mode 100644 index 0000000000..0282ee8721 --- /dev/null +++ b/tests/parm/pio_in @@ -0,0 +1,34 @@ +&papi_inparm + papi_ctr1_str = "PAPI_FP_OPS" + papi_ctr2_str = "PAPI_NO_CTR" + papi_ctr3_str = "PAPI_NO_CTR" + papi_ctr4_str = "PAPI_NO_CTR" +/ +&pio_default_inparm + pio_async_interface = .false. + pio_blocksize = -1 + pio_buffer_size_limit = -1 + pio_debug_level = 0 + pio_rearr_comm_enable_hs_comp2io = .true. + pio_rearr_comm_enable_hs_io2comp = .false. + pio_rearr_comm_enable_isend_comp2io = .false. + pio_rearr_comm_enable_isend_io2comp = .true. + pio_rearr_comm_fcd = "2denable" + pio_rearr_comm_max_pend_req_comp2io = 0 + pio_rearr_comm_max_pend_req_io2comp = 64 + pio_rearr_comm_type = "p2p" +/ +&prof_inparm + profile_add_detail = .false. + profile_barrier = .false. + profile_depth_limit = 4 + profile_detail_limit = 2 + profile_disable = .false. + profile_global_stats = .true. + profile_outpe_num = 1 + profile_outpe_stride = 0 + profile_ovhd_measurement = .false. + profile_papi_enable = .false. + profile_single_file = .false. + profile_timer = 4 +/ diff --git a/tests/rt.conf b/tests/rt.conf index df8587b5bd..69a93d77e4 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -168,3 +168,25 @@ RUN | fv3_ccpp_gsd_diag3d_debug RUN | fv3_ccpp_thompson_debug | standard | | fv3 | RUN | fv3_ccpp_thompson_no_aero_debug | standard | | fv3 | RUN | fv3_ccpp_rrfs_v1beta_debug | standard | | fv3 | + +####################################################################################################################################################################################### +# S2S tests +####################################################################################################################################################################################### + +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_fv3_ccpp_mom6_cice_cmeps_restart | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux +RUN | cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads | standard | hera.intel orion.intel wcoss_dell_p3 | | +RUN | cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp | standard | hera.intel orion.intel wcoss_dell_p3 | | +RUN | cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | + +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | + +COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index cef20c1014..119cf98abf 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -400,9 +400,9 @@ if [[ $SINGLE_NAME != '' ]]; then fi if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = jet.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201015/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201019/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201015} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201019} fi shift $((OPTIND-1)) @@ -420,6 +420,14 @@ if [[ $CREATE_BASELINE == true ]]; then rsync -a "${RTPWD}"/FV3_* "${NEW_BASELINE}"/ rsync -a "${RTPWD}"/WW3_* "${NEW_BASELINE}"/ + # S2S baselines are only (so far) available on these machines + if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = wcoss_dell_p3 ]]; then + rsync -a "${RTPWD}"/MOM6_* "${NEW_BASELINE}"/ + rsync -a "${RTPWD}"/CICE_* "${NEW_BASELINE}"/ + rsync -a "${RTPWD}"/CPL_* "${NEW_BASELINE}"/ + rsync -a "${RTPWD}"/BM_* "${NEW_BASELINE}"/ + fi + # FIXME: move these namelist files to parm directory rsync -a "${RTPWD}"/fv3_regional_control/input.nml "${NEW_BASELINE}"/fv3_regional_control/ rsync -a "${RTPWD}"/fv3_regional_quilt/input.nml "${NEW_BASELINE}"/fv3_regional_quilt/ @@ -679,6 +687,7 @@ EOF export ECFLOW=${ECFLOW} export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG} export LOG_DIR=${LOG_DIR} + export DEP_RUN=${DEP_RUN} EOF if [[ $ROCOTO == true ]]; then diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 0b486da55f..921933de5d 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -288,16 +288,12 @@ check_results() { # echo;echo "Moving baseline ${TEST_NR} ${TEST_NAME} files ...." echo;echo "Moving baseline ${TEST_NR} ${TEST_NAME} files ...." >> ${REGRESSIONTEST_LOG} - if [[ ! -d ${NEW_BASELINE}/${CNTL_DIR}/RESTART ]] ; then - echo " mkdir -p ${NEW_BASELINE}/${CNTL_DIR}/RESTART" >> ${REGRESSIONTEST_LOG} - mkdir -p ${NEW_BASELINE}/${CNTL_DIR}/RESTART - fi for i in ${LIST_FILES} ; do printf %s " Moving " $i " ....." printf %s " Moving " $i " ....." >> ${REGRESSIONTEST_LOG} - printf %s " Moving " $i " ....." if [[ -f ${RUNDIR}/$i ]] ; then + mkdir -p ${NEW_BASELINE}/${CNTL_DIR}/$(dirname ${i}) cp ${RUNDIR}/${i} ${NEW_BASELINE}/${CNTL_DIR}/${i} echo "....OK" >>${REGRESSIONTEST_LOG} echo "....OK" diff --git a/tests/run_test.sh b/tests/run_test.sh index 8425242bf6..addc400242 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -62,6 +62,7 @@ echo "Test ${TEST_NR} ${TEST_NAME} ${TEST_DESCR}" source rt_utils.sh source atparse.bash +source edit_inputs.sh mkdir -p ${RUNDIR} cd $RUNDIR @@ -101,6 +102,17 @@ fi # Set up the run directory source ./fv3_run +if [[ $S2S = 'true' ]]; then + edit_ice_in < ${PATHRT}/parm/ice_in_template > ice_in + edit_mom_input < ${PATHRT}/parm/${MOM_INPUT:-MOM_input_template_$OCNRES} > INPUT/MOM_input + edit_diag_table < ${PATHRT}/parm/diag_table_template > diag_table + edit_data_table < ${PATHRT}/parm/data_table_template > data_table + # CMEPS + cp ${PATHRT}/parm/fd_nems.yaml fd_nems.yaml + cp ${PATHRT}/parm/pio_in pio_in + cp ${PATHRT}/parm/med_modelio.nml med_modelio.nml +fi + if [[ $SCHEDULER = 'pbs' ]]; then NODES=$(( TASKS / TPN )) if (( NODES * TPN < TASKS )); then diff --git a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt new file mode 100644 index 0000000000..a2e773be6b --- /dev/null +++ b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt @@ -0,0 +1,173 @@ +# +# CPLD_FV3_CCPP_MOM6_CICE_CMEPS 1D_BMARK_RT test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS 1 day run" + +export CNTL_DIR="RT-Baselines_1d_bmrt_ccpp_cmeps" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/20130401.120000.coupler.res \ + RESTART/20130401.120000.fv_core.res.nc \ + RESTART/20130401.120000.fv_core.res.tile1.nc \ + RESTART/20130401.120000.fv_core.res.tile2.nc \ + RESTART/20130401.120000.fv_core.res.tile3.nc \ + RESTART/20130401.120000.fv_core.res.tile4.nc \ + RESTART/20130401.120000.fv_core.res.tile5.nc \ + RESTART/20130401.120000.fv_core.res.tile6.nc \ + RESTART/20130401.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20130401.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20130401.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20130401.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20130401.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20130401.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20130401.120000.fv_tracer.res.tile1.nc \ + RESTART/20130401.120000.fv_tracer.res.tile2.nc \ + RESTART/20130401.120000.fv_tracer.res.tile3.nc \ + RESTART/20130401.120000.fv_tracer.res.tile4.nc \ + RESTART/20130401.120000.fv_tracer.res.tile5.nc \ + RESTART/20130401.120000.fv_tracer.res.tile6.nc \ + RESTART/20130401.120000.phy_data.tile1.nc \ + RESTART/20130401.120000.phy_data.tile2.nc \ + RESTART/20130401.120000.phy_data.tile3.nc \ + RESTART/20130401.120000.phy_data.tile4.nc \ + RESTART/20130401.120000.phy_data.tile5.nc \ + RESTART/20130401.120000.phy_data.tile6.nc \ + RESTART/20130401.120000.sfc_data.tile1.nc \ + RESTART/20130401.120000.sfc_data.tile2.nc \ + RESTART/20130401.120000.sfc_data.tile3.nc \ + RESTART/20130401.120000.sfc_data.tile4.nc \ + RESTART/20130401.120000.sfc_data.tile5.nc \ + RESTART/20130401.120000.sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/MOM.res.2013-04-01-12-00-00.nc \ + RESTART/MOM.res.2013-04-01-12-00-00_1.nc \ + RESTART/MOM.res.2013-04-01-12-00-00_2.nc \ + RESTART/MOM.res.2013-04-01-12-00-00_3.nc \ + RESTART/iced.2013-04-02-00000.nc \ + RESTART/iced.2013-04-01-43200.nc" + #ufs.s2s.cpl.r.2013-04-01-43200.nc \ + #ufs.s2s.cpl.r.2013-04-02-00000.nc" + +export_fv3 +export_cpl + +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export DAYS="1" +export FHMAX="24" +export FDIAG="6" +export WLCLK=30 + +export DT_ATMOS="450" +export NPX="385" +export NPY="385" +export IMO="1536" +export JMO="768" +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export TASKS=$TASKS_cpl_bmrk +export TPN=$TPN_cpl_bmrk +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export THRD=$THRD_cpl_bmrk +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk + +export med_petlist_bounds=$MPB_cpl_bmrk +export atm_petlist_bounds=$APB_cpl_bmrk +export ocn_petlist_bounds=$OPB_cpl_bmrk +export ice_petlist_bounds=$IPB_cpl_bmrk + +# no high freq fv3 output +NFHMAX_HF='-1' +NFHOUT_HF='-1' + +# set component and coupling timesteps +export DT_CICE=${DT_ATMOS} +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# restart test: write a CICE restart at 12 hour intervals +export DUMPFREQ_N='12' +export DUMPFREQ="h" + +# restart test: CMEPS controls intervals in ALLCOMP +export RESTART_INTERVAL='12' + +# restart test: required for restart repro +export MOM6_REPRO_LA='False' +export MOM6_THERMO_SPAN='False' + +# nems.configure +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FV3_RUN=cpld_fv3_mom6_cice_bmark_rt_run.IN +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export OZ_PHYS_NEW=".T." + +# set run type for CICE in ice_in +export RUNID="cpcice" + +# set initialization type for MOM6 +export MOM6_RESTART_SETTING="r" + +export ATMRES=C384 diff --git a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux new file mode 100644 index 0000000000..49b7bdcc56 --- /dev/null +++ b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux @@ -0,0 +1,101 @@ +# +# CPLD_FV3_CCPP_384_MOM6_CICE_CMEPS 2d_ATM_FLUX test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - 2d_warm" + +export CNTL_DIR="RT-Baselines_2d_warm_ccpp384_cmeps" + +export LIST_FILES="phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2016-10-05-00000.nc" + #ufs.s2s.cpl.r.2016-10-05-00000.nc" + +export_fv3 +export_cpl + +export DAYS="2" +export FHMAX="48" +export FDIAG="6" +export WLCLK=60 + +export DT_ATMOS="450" +export NPX="385" +export NPY="385" +export IMO="1536" +export JMO="768" +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +# set component and coupling timesteps +export DT_CICE=${DT_ATMOS} +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# write a CICE restart at DAYS +export DUMPFREQ_N=${DAYS} +export DUMPFREQ="d" + +# CMEPS controls intervals in ALLCOMP +export RESTART_INTERVAL=${FHMAX} + +# nems.configure +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN +export INPUT_NML=input.mom6_ccpp.nml.IN + +export SUITE_NAME="FV3_GFS_2017_coupled" + +export ATMRES=C384 diff --git a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac new file mode 100644 index 0000000000..2838ad26b5 --- /dev/null +++ b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac @@ -0,0 +1,103 @@ +# +# CPLD_FV3_CCPP_384_MOM6_CICE_CMEPS 2d_ATM_FLUX_FRAC test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-FRAC system - 2d_warm" + +export CNTL_DIR="RT-Baselines_2d_warm_ccpp384_cmeps_frac" + +export LIST_FILES="phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2016-10-05-00000.nc" + #ufs.s2s.cpl.r.2016-10-05-00000.nc" + +export_fv3 +export_cpl + +export DAYS="2" +export FHMAX="48" +export FDIAG="6" +export WLCLK=60 + +export DT_ATMOS="450" +export NPX="385" +export NPY="385" +export IMO="1536" +export JMO="768" +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +# set component and coupling timesteps +export DT_CICE=${DT_ATMOS} +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# write a CICE restart at DAYS +export DUMPFREQ_N=${DAYS} +export DUMPFREQ="d" + +# CMEPS controls intervals in ALLCOMP +export RESTART_INTERVAL=${FHMAX} + +# nems.configure +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN +export INPUT_NML=input.mom6_ccpp.nml.IN + +export SUITE_NAME="FV3_GFS_2017_coupled" + +export ATMRES=C384 +export FRAC_GRID="T" +export CPLMODE="nems_frac" diff --git a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_35d b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_35d new file mode 100644 index 0000000000..6f1c8b1732 --- /dev/null +++ b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_35d @@ -0,0 +1,79 @@ +# +# CPLD_FV3_CCPP_384_MOM6_CICE_CMEPS_35D_BMARK_RT test +# + +export TEST_DESCR="Coupled FV3-CCPP-MOM6-CICE-CMEPS system" +export_35d_run +export_fv3 +export_cpl + +export SYEAR +export SMONTH +export SDAY="01" +export SHOUR="00" + +export DAYS="35" +export FHMAX="840" +export FDIAG="6" +export WLCLK=480 + +export DT_ATMOS="450" +export NPX="385" +export NPY="385" +export IMO="1536" +export JMO="768" +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export TASKS=$TASKS_cpl_bmrk +export TPN=$TPN_cpl_bmrk +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export THRD=1 +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk + +export med_petlist_bounds=$MPB_cpl_bmrk +export atm_petlist_bounds=$APB_cpl_bmrk +export ocn_petlist_bounds=$OPB_cpl_bmrk +export ice_petlist_bounds=$IPB_cpl_bmrk + +# no high freq fv3 output +NFHMAX_HF='-1' +NFHOUT_HF='-1' + +# set component and coupling timesteps +export DT_CICE=${DT_ATMOS} +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# write a CICE restart at DAYS +export DUMPFREQ_N=${DAYS} +export DUMPFREQ="d" + +# CMEPS controls intervals in ALLCOMP +export RESTART_INTERVAL=${FHMAX} + +# nems.configure +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} +export MOM_INPUT=MOM_input_template_${OCNRES} + +export FV3_RUN=cpld_fv3_mom6_cice_bmark_35d_run.IN +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export OZ_PHYS_NEW=".T." + +export CPLWAV='.F.' +export CPLWAV2ATM='.F.' + +export RUNID="cpcice" +export MOM6_RESTART_SETTING="r" + +export ATMRES=C384 diff --git a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_bmark_restart b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_bmark_restart new file mode 100644 index 0000000000..727a85b811 --- /dev/null +++ b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_bmark_restart @@ -0,0 +1,147 @@ +# +# CPLD_FV3_CCPP_MOM6_CICE_CMEPS MARK_RESTART test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS 0.5 day restart run" + +export CNTL_DIR="RT-Baselines_1d_bmrt_ccpp_cmeps" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-02-00000.nc \ + ufs.s2s.cpl.r.2013-04-02-00000.nc" + +export_fv3 +export_cpl + +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export DAYS="1" +export FHMAX="24" +export FDIAG="6" +export WLCLK=30 + +# ATM warm start +FHROT='12' +WARM_START='.T.' +MAKE_NH='.F.' +NA_INIT='0' +EXTERNAL_IC='.F.' +NGGPS_IC='.F.' +MOUNTAIN='.T.' +# ICE warm start +RUNTYPE='continue' +export USE_RESTART_TIME='.true.' + +export DT_ATMOS="450" +export NPX="385" +export NPY="385" +export IMO="1536" +export JMO="768" +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export TASKS=$TASKS_cpl_bmrk +export TPN=$TPN_cpl_bmrk +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export THRD=$THRD_cpl_bmrk +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk + +export med_petlist_bounds=$MPB_cpl_bmrk +export atm_petlist_bounds=$APB_cpl_bmrk +export ocn_petlist_bounds=$OPB_cpl_bmrk +export ice_petlist_bounds=$IPB_cpl_bmrk + +# no high freq fv3 output +NFHMAX_HF='-1' +NFHOUT_HF='-1' + +# set component and coupling timesteps +export DT_CICE=${DT_ATMOS} +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# write a CICE restart at 12 hour intervals +export DUMPFREQ_N='12' +export DUMPFREQ="h" + +# CMEPS controls intervals in ALLCOMP +export RESTART_INTERVAL='12' + +# restart test: required for restart repro +export MOM6_REPRO_LA='False' +export MOM6_THERMO_SPAN='False' + +# nems.configure +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FV3_RUN=cpld_fv3_mom6_cice_bmark_restart_run.IN +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export OZ_PHYS_NEW=".T." + +# set run type for CICE in ice_in +export RUNID="cpcice" + +# set initialization type for MOM6 +export MOM6_RESTART_SETTING="r" + +export ATMRES=C384 diff --git a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt new file mode 100644 index 0000000000..4594f49050 --- /dev/null +++ b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt @@ -0,0 +1,136 @@ +# +# CPLD_FV3_CCPP_384_MOM6_CICE_CMEPS_WW3_1D_BMARK_RT test +# + +export TEST_DESCR="Coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - 1 day" + +export CNTL_DIR="RT-Baselines_1d_bmwav_ccpp_cmeps" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + 20130402.000000.out_grd.gwes_30m \ + 20130402.000000.out_pnt.points \ + 20130402.000000.restart.gwes_30m \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-02-00000.nc" + #ufs.s2s.cpl.r.2013-04-02-00000.nc" + +export_fv3 +export_cpl + +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export DAYS="1" +export FHMAX="24" +export FDIAG="6" +export WLCLK=60 + +export DT_ATMOS="450" +export NPX="385" +export NPY="385" +export IMO="1536" +export JMO="768" +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export TASKS=$TASKS_cpl_wwav +export TPN=$TPN_cpl_wwav +export INPES=$INPES_cpl_wwav +export JNPES=$JNPES_cpl_wwav +export THRD=$THRD_cpl_wwav +export WRTTASK_PER_GROUP=$WPG_cpl_wwav + +export med_petlist_bounds=$MPB_cpl_wwav +export atm_petlist_bounds=$APB_cpl_wwav +export ocn_petlist_bounds=$OPB_cpl_wwav +export ice_petlist_bounds=$IPB_cpl_wwav +export wav_petlist_bounds=$WPB_cpl_wwav + +# no high freq fv3 output +NFHMAX_HF='-1' +NFHOUT_HF='-1' + +# set component and coupling timesteps +export DT_CICE=${DT_ATMOS} +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# write a CICE restart at DAYS +export DUMPFREQ_N=${DAYS} +export DUMPFREQ="d" + +# CMEPS controls intervals in ALLCOMP +export RESTART_INTERVAL=${FHMAX} + +# nems.configure +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice_wav.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} +export MOM_INPUT=MOM_input_wave_template_${OCNRES} + +export FV3_RUN=cpld_fv3_mom6_cice_ww3_bmark_rt_run.IN +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export OZ_PHYS_NEW=".T." + +export CPLWAV='.T.' +export CPLWAV2ATM='.T.' + +export RUNID="cpcice" +export MOM6_RESTART_SETTING="r" + +export ATMRES=C384 diff --git a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_frac b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_frac new file mode 100644 index 0000000000..e372ffc8b6 --- /dev/null +++ b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_frac @@ -0,0 +1,138 @@ +# +# CPLD_FV3_CCPP_384_MOM6_CICE_CMEPS_WW3_1D_BMARK_RT_FRAC test +# + +export TEST_DESCR="Coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3-FRAC system - 1 day" + +export CNTL_DIR="RT-Baselines_1d_bmwav_ccpp_cmeps_frac" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + 20130402.000000.out_grd.gwes_30m \ + 20130402.000000.out_pnt.points \ + 20130402.000000.restart.gwes_30m \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-02-00000.nc" + # ufs.s2s.cpl.r.2013-04-02-00000.nc" + +export_fv3 +export_cpl + +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export DAYS="1" +export FHMAX="24" +export FDIAG="6" +export WLCLK=60 + +export DT_ATMOS="450" +export NPX="385" +export NPY="385" +export IMO="1536" +export JMO="768" +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export TASKS=$TASKS_cpl_wwav +export TPN=$TPN_cpl_wwav +export INPES=$INPES_cpl_wwav +export JNPES=$JNPES_cpl_wwav +export THRD=$THRD_cpl_wwav +export WRTTASK_PER_GROUP=$WPG_cpl_wwav + +export med_petlist_bounds=$MPB_cpl_wwav +export atm_petlist_bounds=$APB_cpl_wwav +export ocn_petlist_bounds=$OPB_cpl_wwav +export ice_petlist_bounds=$IPB_cpl_wwav +export wav_petlist_bounds=$WPB_cpl_wwav + +# no high freq fv3 output +NFHMAX_HF='-1' +NFHOUT_HF='-1' + +# set component and coupling timesteps +export DT_CICE=${DT_ATMOS} +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# write a CICE restart at DAYS +export DUMPFREQ_N=${DAYS} +export DUMPFREQ="d" + +# CMEPS controls intervals in ALLCOMP +export FV3_RESTART_INTERVAL=${FHMAX} + +# nems.configure +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice_wav.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} +export MOM_INPUT=MOM_input_wave_template_${OCNRES} + +export FV3_RUN=cpld_fv3_mom6_cice_ww3_bmark_rt_run.IN +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export OZ_PHYS_NEW=".T." + +export CPLWAV='.T.' +export CPLWAV2ATM='.T.' + +export RUNID="cpcice" +export MOM6_RESTART_SETTING="r" + +export ATMRES=C384 +export FRAC_GRID="T" +export CPLMODE="nems_frac" diff --git a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_ww3_cmeps_35d b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_ww3_cmeps_35d new file mode 100644 index 0000000000..05f63ecc94 --- /dev/null +++ b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_ww3_cmeps_35d @@ -0,0 +1,80 @@ +# +# CPLD_FV3_CCPP_384_MOM6_CICE_CMEPS_WW3_35D_BMARK_RT test +# + +export TEST_DESCR="Coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system" +export_35d_run +export_fv3 +export_cpl + +export SYEAR +export SMONTH +export SDAY="01" +export SHOUR="00" + +export DAYS="35" +export FHMAX="840" +export FDIAG="6" +export WLCLK=480 + +export DT_ATMOS="450" +export NPX="385" +export NPY="385" +export IMO="1536" +export JMO="768" +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export TASKS=866 +export TPN=40 +export INPES=6 +export JNPES=12 +export THRD=1 +export WRTTASK_PER_GROUP=24 + +export med_petlist_bounds="0 431" +export atm_petlist_bounds="0 455" +export ocn_petlist_bounds="456 695" +export ice_petlist_bounds="696 743" +export wav_petlist_bounds="744 865" + +# no high freq fv3 output +NFHMAX_HF='-1' +NFHOUT_HF='-1' + +# set component and coupling timesteps +export DT_CICE=${DT_ATMOS} +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# write a CICE restart at DAYS +export DUMPFREQ_N=${DAYS} +export DUMPFREQ="d" + +# CMEPS controls intervals in ALLCOMP +export RESTART_INTERVAL=${FHMAX} + +# nems.configure +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice_wav.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} +export MOM_INPUT=MOM_input_wave_template_${OCNRES} + +export FV3_RUN=cpld_fv3_mom6_cice_ww3_bmark_35d_run.IN +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export OZ_PHYS_NEW=".T." + +export CPLWAV='.T.' +export CPLWAV2ATM='.T.' + +export RUNID="cpcice" +export MOM6_RESTART_SETTING="r" + +export ATMRES=C384 diff --git a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf b/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf new file mode 100644 index 0000000000..414e3fa329 --- /dev/null +++ b/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf @@ -0,0 +1,92 @@ +# +# CPLD_FV3_CCPP_MOM6_CICE_CMEPS_1D_SATMEDMF test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - satmedmf" + +export CNTL_DIR="RT-Baselines_1d_warm_satmedmf_ccpp_cmeps" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2016-10-04-00000.nc" + #ufs.s2s.cpl.r.2016-10-04-00000.nc" + +export_fv3 +export_cpl + +export DAYS="1" +export FHMAX="24" +export FDIAG="6" +export WLCLK=30 + +# set component and coupling timesteps +export DT_CICE=${DT_ATMOS} +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# write a CICE restart at DAYS +export DUMPFREQ_N=${DAYS} +export DUMPFREQ="d" + +# CMEPS controls intervals in ALLCOMP +export RESTART_INTERVAL=${FHMAX} + +# nems.configure +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN +export INPUT_NML=input.mom6_ccpp.nml.IN + +export SATMEDMF='.true.' +export HYBEDMF='.false.' + +export FIELD_TABLE='field_table_satmedmf' +export SUITE_NAME='FV3_GFS_2017_satmedmf_coupled' diff --git a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux b/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux new file mode 100644 index 0000000000..06b53c6a22 --- /dev/null +++ b/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux @@ -0,0 +1,90 @@ +# +# CPLD_FV3_CCPP_MOM6_CICE_CMEPS_1STEPCOLD_ATM_FLUX test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - 1 step cold start" + +export CNTL_DIR="RT-Baselines_1stepcold_ccpp_cmeps" + +export LIST_FILES="phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2016-10-05-00000.nc" + #ufs.s2s.cpl.r.2016-10-05-00000.nc" + +export_fv3 +export_cpl + +export DAYS="2" +export FHMAX="48" +export WLCLK=30 +export use_coldstart="false" +export RESTART_INTERVAL=${FHMAX} + +# set component and coupling timesteps +export DT_CICE=${DT_ATMOS} +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# write a CICE restart at DAYS +export DUMPFREQ_N=${DAYS} +export DUMPFREQ="d" + +# restart test: required for restart repro +export MOM6_REPRO_LA='False' +export MOM6_THERMO_SPAN='False' + +# nems.configure +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN +export INPUT_NML=input.mom6_ccpp.nml.IN + +export SUITE_NAME="FV3_GFS_2017_coupled" diff --git a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads b/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads new file mode 100644 index 0000000000..2a15a9d86d --- /dev/null +++ b/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads @@ -0,0 +1,104 @@ +# +# CPLD_FV3_CCPP_MOM6_CICE_CMEPS_2D_2THREADS test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - 2 threads" + +export CNTL_DIR="RT-Baselines_2d_warm_ccpp_cmeps" + +export LIST_FILES="phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2016-10-05-00000.nc" + #ufs.s2s.cpl.r.2016-10-05-00000.nc" + +export_fv3 +export_cpl + +export DAYS="2" +export FHMAX="48" +export FDIAG="6" +export WLCLK=30 + +export TASKS=$TASKS_cpl_thrd +export TPN=$TPN_cpl_thrd +export INPES=$INPES_cpl_thrd +export JNPES=$JNPES_cpl_thrd +export THRD=$THRD_cpl_thrd +export WRTTASK_PER_GROUP=$WPG_cpl_thrd + +export med_petlist_bounds=$MPB_cpl_thrd +export atm_petlist_bounds=$APB_cpl_thrd +export ocn_petlist_bounds=$OPB_cpl_thrd +export ice_petlist_bounds=$IPB_cpl_thrd + +# set component and coupling timesteps +export DT_CICE=${DT_ATMOS} +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# write a CICE restart at DAYS +export DUMPFREQ_N=${DAYS} +export DUMPFREQ="d" + +# CMEPS controls intervals in ALLCOMP +export RESTART_INTERVAL=${FHMAX} + +# restart test: required for restart repro +export MOM6_REPRO_LA='False' +export MOM6_THERMO_SPAN='False' + +# nems.configure +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN +export INPUT_NML=input.mom6_ccpp.nml.IN + +export SUITE_NAME="FV3_GFS_2017_coupled" diff --git a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux b/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux new file mode 100644 index 0000000000..f0d831965b --- /dev/null +++ b/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux @@ -0,0 +1,92 @@ +# +# CPLD_FV3_CCPP_MOM6_CICE_CMEPS_2D_ATM_FLUX test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - 2d_warm" + +export CNTL_DIR="RT-Baselines_2d_warm_ccpp_cmeps" + +export LIST_FILES="phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2016-10-05-00000.nc" + #ufs.s2s.cpl.r.2016-10-05-00000.nc" + +export_fv3 +export_cpl + +export DAYS="2" +export FHMAX="48" +export FDIAG="6" +export WLCLK=30 + +# set component and coupling timesteps +export DT_CICE=${DT_ATMOS} +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# write a CICE restart at DAYS +export DUMPFREQ_N=${DAYS} +export DUMPFREQ="d" + +# CMEPS controls intervals in ALLCOMP +export RESTART_INTERVAL=${FHMAX} + +# restart test: required for restart repro +export MOM6_REPRO_LA='False' +export MOM6_THERMO_SPAN='False' + +# nems.configure +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN +export INPUT_NML=input.mom6_ccpp.nml.IN + +export SUITE_NAME="FV3_GFS_2017_coupled" diff --git a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp b/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp new file mode 100644 index 0000000000..4f70f29594 --- /dev/null +++ b/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp @@ -0,0 +1,95 @@ +# +# CPLD_FV3_CCPP_MOM6_CICE_CMEPS_2D_DECOMP test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - decomp" + +export CNTL_DIR="RT-Baselines_2d_warm_ccpp_cmeps" + +export LIST_FILES="phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2016-10-05-00000.nc" + #ufs.s2s.cpl.r.2016-10-05-00000.nc" + +export_fv3 +export_cpl + +export DAYS="2" +export FHMAX="48" +export FDIAG="6" +export WLCLK=30 + +export INPES='6' +export JNPES='4' + +# set component and coupling timesteps +export DT_CICE=${DT_ATMOS} +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# write a CICE restart at DAYS +export DUMPFREQ_N=${DAYS} +export DUMPFREQ="d" + +# CMEPS controls intervals in ALLCOMP +export RESTART_INTERVAL=${FHMAX} + +# restart test: required for restart repro +export MOM6_REPRO_LA='False' +export MOM6_THERMO_SPAN='False' + +# nems.configure +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN +export INPUT_NML=input.mom6_ccpp.nml.IN + +export SUITE_NAME="FV3_GFS_2017_coupled" diff --git a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux b/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux new file mode 100644 index 0000000000..9dc4785095 --- /dev/null +++ b/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux @@ -0,0 +1,92 @@ +# +# CPLD_FV3_CCPP_MOM6_CICE_CMEPS_3D_ATM_FLUX test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - 3d_warm" + +export CNTL_DIR="RT-Baselines_3d_warm_ccpp_cmeps" + +export LIST_FILES="phyf072.tile1.nc \ + phyf072.tile2.nc \ + phyf072.tile3.nc \ + phyf072.tile4.nc \ + phyf072.tile5.nc \ + phyf072.tile6.nc \ + dynf072.tile1.nc \ + dynf072.tile2.nc \ + dynf072.tile3.nc \ + dynf072.tile4.nc \ + dynf072.tile5.nc \ + dynf072.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2016-10-06-00000.nc" + #ufs.s2s.cpl.r.2016-10-06-00000.nc" + +export_fv3 +export_cpl + +export DAYS="3" +export FHMAX="72" +export FDIAG="6" +export WLCLK=60 + +# set component and coupling timesteps +export DT_CICE=${DT_ATMOS} +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# write a CICE restart at DAYS +export DUMPFREQ_N=${DAYS} +export DUMPFREQ="d" + +# CMEPS controls intervals in ALLCOMP +export RESTART_INTERVAL=${FHMAX} + +# restart test: required for restart repro +export MOM6_REPRO_LA='False' +export MOM6_THERMO_SPAN='False' + +# nems.configure +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN +export INPUT_NML=input.mom6_ccpp.nml.IN + +export SUITE_NAME="FV3_GFS_2017_coupled" diff --git a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug b/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug new file mode 100644 index 0000000000..571ea671c9 --- /dev/null +++ b/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug @@ -0,0 +1,89 @@ +# +# CPLD_FV3_CCPP_MOM6_CICE_CMEPS_6H_DEBUG test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - warm debug" + +export CNTL_DIR="RT-Baselines_6h_warm_debug_ccpp_cmeps" + +export LIST_FILES="phyf006.tile1.nc \ + phyf006.tile2.nc \ + phyf006.tile3.nc \ + phyf006.tile4.nc \ + phyf006.tile5.nc \ + phyf006.tile6.nc \ + dynf006.tile1.nc \ + dynf006.tile2.nc \ + dynf006.tile3.nc \ + dynf006.tile4.nc \ + dynf006.tile5.nc \ + dynf006.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2016-10-03-21600.nc \ + ufs.s2s.cpl.r.2016-10-03-21600.nc" +export_fv3 +export_cpl + +export DAYS="0.25" +export FHMAX="6" +export NFHOUT_HF="1" +export FDIAG="6" +# requires extra time +export WLCLK=60 + +# set component and coupling timesteps +export DT_CICE=${DT_ATMOS} +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# write a CICE restart at FHMAX +export DUMPFREQ_N=${FHMAX} +export DUMPFREQ="h" + +# CMEPS controls intervals in ALLCOMP +export RESTART_INTERVAL=${FHMAX} + +# nems.configure +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN +export INPUT_NML=input.mom6_ccpp.nml.IN + +export SUITE_NAME="FV3_GFS_2017_coupled" diff --git a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_restart b/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_restart new file mode 100644 index 0000000000..cb979df750 --- /dev/null +++ b/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_restart @@ -0,0 +1,104 @@ +# +# CPLD_FV3_CCPP_MOM6_CICE_CMEPS_RESTART test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - 1d restart" + +export CNTL_DIR="RT-Baselines_3d_warm_ccpp_cmeps" + +export LIST_FILES="phyf072.tile1.nc \ + phyf072.tile2.nc \ + phyf072.tile3.nc \ + phyf072.tile4.nc \ + phyf072.tile5.nc \ + phyf072.tile6.nc \ + dynf072.tile1.nc \ + dynf072.tile2.nc \ + dynf072.tile3.nc \ + dynf072.tile4.nc \ + dynf072.tile5.nc \ + dynf072.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2016-10-06-00000.nc" + #ufs.s2s.cpl.r.2016-10-06-00000.nc" + +export_fv3 +export_cpl + +export DAYS="1" +export FHMAX="72" +export FDIAG="6" +export WLCLK=30 + +# ATM warm start +FHROT='48' +WARM_START='.T.' +MAKE_NH='.F.' +NA_INIT='0' +EXTERNAL_IC='.F.' +NGGPS_IC='.F.' +MOUNTAIN='.T.' +# ICE warm start +RUNTYPE='continue' +export USE_RESTART_TIME='.true.' +export MOM6_RESTART_SETTING="r" + +export MOM6_REPRO_LA='False' +export MOM6_THERMO_SPAN='False' + +# set component and coupling timesteps +export DT_CICE=${DT_ATMOS} +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# write a CICE restart at DAYS +export DUMPFREQ_N=${DAYS} +export DUMPFREQ="d" + +# CMEPS controls intervals in ALLCOMP +export RESTART_INTERVAL='24' + +# nems.configure +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN +export INPUT_NML=input.mom6_ccpp.nml.IN + +export SUITE_NAME="FV3_GFS_2017_coupled" From 58e5a8cc2009999926b4def7c5f8f24e9292aaa7 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Tue, 20 Oct 2020 20:52:44 -0600 Subject: [PATCH 006/109] Update documentation and license in develop from release/public-v1 (#219) --- LICENSE.md | 637 +--------------- doc/UsersGuide/Makefile | 20 + doc/UsersGuide/README.md | 11 + doc/UsersGuide/build/.gitignore | 4 + doc/UsersGuide/make.bat | 35 + doc/UsersGuide/requirements.txt | 1 + doc/UsersGuide/source/Acronyms.rst | 82 ++ doc/UsersGuide/source/BuildingAndRunning.rst | 199 +++++ doc/UsersGuide/source/CodeOverview.rst | 103 +++ doc/UsersGuide/source/FAQ.rst | 96 +++ doc/UsersGuide/source/Glossary.rst | 62 ++ doc/UsersGuide/source/InputNML.inc | 321 ++++++++ doc/UsersGuide/source/InputsOutputs.rst | 719 ++++++++++++++++++ doc/UsersGuide/source/Introduction.rst | 118 +++ .../source/SDFandNamelistExamplePractices.rst | 255 +++++++ doc/UsersGuide/source/_static/README | 1 + doc/UsersGuide/source/_templates/README | 1 + doc/UsersGuide/source/conf.py | 205 +++++ doc/UsersGuide/source/index.rst | 20 + doc/UsersGuide/source/references.bib | 14 + 20 files changed, 2286 insertions(+), 618 deletions(-) create mode 100644 doc/UsersGuide/Makefile create mode 100644 doc/UsersGuide/README.md create mode 100644 doc/UsersGuide/build/.gitignore create mode 100644 doc/UsersGuide/make.bat create mode 100644 doc/UsersGuide/requirements.txt create mode 100644 doc/UsersGuide/source/Acronyms.rst create mode 100644 doc/UsersGuide/source/BuildingAndRunning.rst create mode 100644 doc/UsersGuide/source/CodeOverview.rst create mode 100644 doc/UsersGuide/source/FAQ.rst create mode 100644 doc/UsersGuide/source/Glossary.rst create mode 100644 doc/UsersGuide/source/InputNML.inc create mode 100644 doc/UsersGuide/source/InputsOutputs.rst create mode 100644 doc/UsersGuide/source/Introduction.rst create mode 100644 doc/UsersGuide/source/SDFandNamelistExamplePractices.rst create mode 100644 doc/UsersGuide/source/_static/README create mode 100644 doc/UsersGuide/source/_templates/README create mode 100644 doc/UsersGuide/source/conf.py create mode 100644 doc/UsersGuide/source/index.rst create mode 100644 doc/UsersGuide/source/references.bib diff --git a/LICENSE.md b/LICENSE.md index 85c7c69676..ba11b8537c 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,636 +1,37 @@ -# GNU GENERAL PUBLIC LICENSE -Version 3, 29 June 2007 +## Overview -Copyright (C) 2007 [Free Software Foundation, Inc.](http://fsf.org/) +This project includes a mix of the following: -Everyone is permitted to copy and distribute verbatim copies of this license -document, but changing it is not allowed. +- Open source works that are not in the public domain -## Preamble +- Open source works by the U.S. Government that is in the public domain -The GNU General Public License is a free, copyleft license for software and -other kinds of works. +## Parts of this project that are not in the public domain -The licenses for most software and other practical works are designed to take -away your freedom to share and change the works. By contrast, the GNU General -Public License is intended to guarantee your freedom to share and change all -versions of a program--to make sure it remains free software for all its users. -We, the Free Software Foundation, use the GNU General Public License for most -of our software; it applies also to any other work released this way by its -authors. You can apply it to your programs, too. +This project utilizes the following unmodified works under various licenses, as shown below. -When we speak of free software, we are referring to freedom, not price. Our -General Public Licenses are designed to make sure that you have the freedom to -distribute copies of free software (and charge for them if you wish), that you -receive source code or can get it if you want it, that you can change the -software or use pieces of it in new free programs, and that you know you can do -these things. +- Atmos cube sphere dycore: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) -To protect your rights, we need to prevent others from denying you these rights -or asking you to surrender the rights. Therefore, you have certain -responsibilities if you distribute copies of the software, or if you modify it: -responsibilities to respect the freedom of others. +- FV3 Atm: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) -For example, if you distribute copies of such a program, whether gratis or for -a fee, you must pass on to the recipients the same freedoms that you received. -You must make sure that they, too, receive or can get the source code. And you -must show them these terms so they know their rights. +- NEMS: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) -Developers that use the GNU GPL protect your rights with two steps: +- FMS: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) - 1. assert copyright on the software, and - 2. offer you this License giving you legal permission to copy, distribute - and/or modify it. +- Stochastic Physics: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) -For the developers' and authors' protection, the GPL clearly explains that -there is no warranty for this free software. For both users' and authors' sake, -the GPL requires that modified versions be marked as changed, so that their -problems will not be attributed erroneously to authors of previous versions. +- CCPP Physics: [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) -Some devices are designed to deny users access to install or run modified -versions of the software inside them, although the manufacturer can do so. This -is fundamentally incompatible with the aim of protecting users' freedom to -change the software. The systematic pattern of such abuse occurs in the area of -products for individuals to use, which is precisely where it is most -unacceptable. Therefore, we have designed this version of the GPL to prohibit -the practice for those products. If such problems arise substantially in other -domains, we stand ready to extend this provision to those domains in future -versions of the GPL, as needed to protect the freedom of users. +- CCPP Framework: [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) -Finally, every program is threatened constantly by software patents. States -should not allow patents to restrict development and use of software on -general-purpose computers, but in those that do, we wish to avoid the special -danger that patents applied to a free program could make it effectively -proprietary. To prevent this, the GPL assures that patents cannot be used to -render the program non-free. +## The rest of this project is in the worldwide public domain -The precise terms and conditions for copying, distribution and modification -follow. +As a work of the United States Government, this project is in the public domain within the United States. -## TERMS AND CONDITIONS +Additionally, NOAA waives copyright and related rights in the work worldwide through the [CC0 1.0 Universal public domain dedication](https://creativecommons.org/publicdomain/zero/1.0/). -### 0. Definitions. +## CC0 1.0 Universal Summary -*This License* refers to version 3 of the GNU General Public License. +This is a human-readable summary of the [Legal Code (read the full text)](https://creativecommons.org/publicdomain/zero/1.0/legalcode). -*Copyright* also means copyright-like laws that apply to other kinds of works, -such as semiconductor masks. - -*The Program* refers to any copyrightable work licensed under this License. -Each licensee is addressed as *you*. *Licensees* and *recipients* may be -individuals or organizations. - -To *modify* a work means to copy from or adapt all or part of the work in a -fashion requiring copyright permission, other than the making of an exact copy. -The resulting work is called a *modified version* of the earlier work or a work -*based on* the earlier work. - -A *covered work* means either the unmodified Program or a work based on the -Program. - -To *propagate* a work means to do anything with it that, without permission, -would make you directly or secondarily liable for infringement under applicable -copyright law, except executing it on a computer or modifying a private copy. -Propagation includes copying, distribution (with or without modification), -making available to the public, and in some countries other activities as well. - -To *convey* a work means any kind of propagation that enables other parties to -make or receive copies. Mere interaction with a user through a computer -network, with no transfer of a copy, is not conveying. - -An interactive user interface displays *Appropriate Legal Notices* to the -extent that it includes a convenient and prominently visible feature that - - 1. displays an appropriate copyright notice, and - 2. tells the user that there is no warranty for the work (except to the - extent that warranties are provided), that licensees may convey the work - under this License, and how to view a copy of this License. - -If the interface presents a list of user commands or options, such as a menu, a -prominent item in the list meets this criterion. - -### 1. Source Code. - -The *source code* for a work means the preferred form of the work for making -modifications to it. *Object code* means any non-source form of a work. - -A *Standard Interface* means an interface that either is an official standard -defined by a recognized standards body, or, in the case of interfaces specified -for a particular programming language, one that is widely used among developers -working in that language. - -The *System Libraries* of an executable work include anything, other than the -work as a whole, that (a) is included in the normal form of packaging a Major -Component, but which is not part of that Major Component, and (b) serves only -to enable use of the work with that Major Component, or to implement a Standard -Interface for which an implementation is available to the public in source code -form. A *Major Component*, in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system (if any) on -which the executable work runs, or a compiler used to produce the work, or an -object code interpreter used to run it. - -The *Corresponding Source* for a work in object code form means all the source -code needed to generate, install, and (for an executable work) run the object -code and to modify the work, including scripts to control those activities. -However, it does not include the work's System Libraries, or general-purpose -tools or generally available free programs which are used unmodified in -performing those activities but which are not part of the work. For example, -Corresponding Source includes interface definition files associated with source -files for the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, such as -by intimate data communication or control flow between those subprograms and -other parts of the work. - -The Corresponding Source need not include anything that users can regenerate -automatically from other parts of the Corresponding Source. - -The Corresponding Source for a work in source code form is that same work. - -### 2. Basic Permissions. - -All rights granted under this License are granted for the term of copyright on -the Program, and are irrevocable provided the stated conditions are met. This -License explicitly affirms your unlimited permission to run the unmodified -Program. The output from running a covered work is covered by this License only -if the output, given its content, constitutes a covered work. This License -acknowledges your rights of fair use or other equivalent, as provided by -copyright law. - -You may make, run and propagate covered works that you do not convey, without -conditions so long as your license otherwise remains in force. You may convey -covered works to others for the sole purpose of having them make modifications -exclusively for you, or provide you with facilities for running those works, -provided that you comply with the terms of this License in conveying all -material for which you do not control copyright. Those thus making or running -the covered works for you must do so exclusively on your behalf, under your -direction and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - -Conveying under any other circumstances is permitted solely under the -conditions stated below. Sublicensing is not allowed; section 10 makes it -unnecessary. - -### 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - -No covered work shall be deemed part of an effective technological measure -under any applicable law fulfilling obligations under article 11 of the WIPO -copyright treaty adopted on 20 December 1996, or similar laws prohibiting or -restricting circumvention of such measures. - -When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention is -effected by exercising rights under this License with respect to the covered -work, and you disclaim any intention to limit operation or modification of the -work as a means of enforcing, against the work's users, your or third parties' -legal rights to forbid circumvention of technological measures. - -### 4. Conveying Verbatim Copies. - -You may convey verbatim copies of the Program's source code as you receive it, -in any medium, provided that you conspicuously and appropriately publish on -each copy an appropriate copyright notice; keep intact all notices stating that -this License and any non-permissive terms added in accord with section 7 apply -to the code; keep intact all notices of the absence of any warranty; and give -all recipients a copy of this License along with the Program. - -You may charge any price or no price for each copy that you convey, and you may -offer support or warranty protection for a fee. - -### 5. Conveying Modified Source Versions. - -You may convey a work based on the Program, or the modifications to produce it -from the Program, in the form of source code under the terms of section 4, -provided that you also meet all of these conditions: - - - a) The work must carry prominent notices stating that you modified it, and - giving a relevant date. - - b) The work must carry prominent notices stating that it is released under - this License and any conditions added under section 7. This requirement - modifies the requirement in section 4 to *keep intact all notices*. - - c) You must license the entire work, as a whole, under this License to - anyone who comes into possession of a copy. This License will therefore - apply, along with any applicable section 7 additional terms, to the whole - of the work, and all its parts, regardless of how they are packaged. This - License gives no permission to license the work in any other way, but it - does not invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your work need - not make them do so. - -A compilation of a covered work with other separate and independent works, -which are not by their nature extensions of the covered work, and which are not -combined with it such as to form a larger program, in or on a volume of a -storage or distribution medium, is called an *aggregate* if the compilation and -its resulting copyright are not used to limit the access or legal rights of the -compilation's users beyond what the individual works permit. Inclusion of a -covered work in an aggregate does not cause this License to apply to the other -parts of the aggregate. - -### 6. Conveying Non-Source Forms. - -You may convey a covered work in object code form under the terms of sections 4 -and 5, provided that you also convey the machine-readable Corresponding Source -under the terms of this License, in one of these ways: - - - a) Convey the object code in, or embodied in, a physical product (including - a physical distribution medium), accompanied by the Corresponding Source - fixed on a durable physical medium customarily used for software - interchange. - - b) Convey the object code in, or embodied in, a physical product (including - a physical distribution medium), accompanied by a written offer, valid for - at least three years and valid for as long as you offer spare parts or - customer support for that product model, to give anyone who possesses the - object code either - 1. a copy of the Corresponding Source for all the software in the product - that is covered by this License, on a durable physical medium - customarily used for software interchange, for a price no more than your - reasonable cost of physically performing this conveying of source, or - 2. access to copy the Corresponding Source from a network server at no - charge. - - c) Convey individual copies of the object code with a copy of the written - offer to provide the Corresponding Source. This alternative is allowed only - occasionally and noncommercially, and only if you received the object code - with such an offer, in accord with subsection 6b. - - d) Convey the object code by offering access from a designated place - (gratis or for a charge), and offer equivalent access to the Corresponding - Source in the same way through the same place at no further charge. You - need not require recipients to copy the Corresponding Source along with the - object code. If the place to copy the object code is a network server, the - Corresponding Source may be on a different server operated by you or a - third party) that supports equivalent copying facilities, provided you - maintain clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the Corresponding - Source, you remain obligated to ensure that it is available for as long as - needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided you - inform other peers where the object code and Corresponding Source of the - work are being offered to the general public at no charge under subsection - 6d. - -A separable portion of the object code, whose source code is excluded from the -Corresponding Source as a System Library, need not be included in conveying the -object code work. - -A *User Product* is either - - 1. a *consumer product*, which means any tangible personal property which is - normally used for personal, family, or household purposes, or - 2. anything designed or sold for incorporation into a dwelling. - -In determining whether a product is a consumer product, doubtful cases shall be -resolved in favor of coverage. For a particular product received by a -particular user, *normally used* refers to a typical or common use of that -class of product, regardless of the status of the particular user or of the way -in which the particular user actually uses, or expects or is expected to use, -the product. A product is a consumer product regardless of whether the product -has substantial commercial, industrial or non-consumer uses, unless such uses -represent the only significant mode of use of the product. - -*Installation Information* for a User Product means any methods, procedures, -authorization keys, or other information required to install and execute -modified versions of a covered work in that User Product from a modified -version of its Corresponding Source. The information must suffice to ensure -that the continued functioning of the modified object code is in no case -prevented or interfered with solely because modification has been made. - -If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as part of a -transaction in which the right of possession and use of the User Product is -transferred to the recipient in perpetuity or for a fixed term (regardless of -how the transaction is characterized), the Corresponding Source conveyed under -this section must be accompanied by the Installation Information. But this -requirement does not apply if neither you nor any third party retains the -ability to install modified object code on the User Product (for example, the -work has been installed in ROM). - -The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates for a -work that has been modified or installed by the recipient, or for the User -Product in which it has been modified or installed. Access to a network may be -denied when the modification itself materially and adversely affects the -operation of the network or violates the rules and protocols for communication -across the network. - -Corresponding Source conveyed, and Installation Information provided, in accord -with this section must be in a format that is publicly documented (and with an -implementation available to the public in source code form), and must require -no special password or key for unpacking, reading or copying. - -### 7. Additional Terms. - -*Additional permissions* are terms that supplement the terms of this License by -making exceptions from one or more of its conditions. Additional permissions -that are applicable to the entire Program shall be treated as though they were -included in this License, to the extent that they are valid under applicable -law. If additional permissions apply only to part of the Program, that part may -be used separately under those permissions, but the entire Program remains -governed by this License without regard to the additional permissions. - -When you convey a copy of a covered work, you may at your option remove any -additional permissions from that copy, or from any part of it. (Additional -permissions may be written to require their own removal in certain cases when -you modify the work.) You may place additional permissions on material, added -by you to a covered work, for which you have or can give appropriate copyright -permission. - -Notwithstanding any other provision of this License, for material you add to a -covered work, you may (if authorized by the copyright holders of that material) -supplement the terms of this License with terms: - - - a) Disclaiming warranty or limiting liability differently from the terms of - sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or author - attributions in that material or in the Appropriate Legal Notices displayed - by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in reasonable - ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or authors - of the material; or - - e) Declining to grant rights under trademark law for use of some trade - names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that material by - anyone who conveys the material (or modified versions of it) with - contractual assumptions of liability to the recipient, for any liability - that these contractual assumptions directly impose on those licensors and - authors. - -All other non-permissive additional terms are considered *further restrictions* -within the meaning of section 10. If the Program as you received it, or any -part of it, contains a notice stating that it is governed by this License along -with a term that is a further restriction, you may remove that term. If a -license document contains a further restriction but permits relicensing or -conveying under this License, you may add to a covered work material governed -by the terms of that license document, provided that the further restriction -does not survive such relicensing or conveying. - -If you add terms to a covered work in accord with this section, you must place, -in the relevant source files, a statement of the additional terms that apply to -those files, or a notice indicating where to find the applicable terms. - -Additional terms, permissive or non-permissive, may be stated in the form of a -separately written license, or stated as exceptions; the above requirements -apply either way. - -### 8. Termination. - -You may not propagate or modify a covered work except as expressly provided -under this License. Any attempt otherwise to propagate or modify it is void, -and will automatically terminate your rights under this License (including any -patent licenses granted under the third paragraph of section 11). - -However, if you cease all violation of this License, then your license from a -particular copyright holder is reinstated - - - a) provisionally, unless and until the copyright holder explicitly and - finally terminates your license, and - - b) permanently, if the copyright holder fails to notify you of the - violation by some reasonable means prior to 60 days after the cessation. - -Moreover, your license from a particular copyright holder is reinstated -permanently if the copyright holder notifies you of the violation by some -reasonable means, this is the first time you have received notice of violation -of this License (for any work) from that copyright holder, and you cure the -violation prior to 30 days after your receipt of the notice. - -Termination of your rights under this section does not terminate the licenses -of parties who have received copies or rights from you under this License. If -your rights have been terminated and not permanently reinstated, you do not -qualify to receive new licenses for the same material under section 10. - -### 9. Acceptance Not Required for Having Copies. - -You are not required to accept this License in order to receive or run a copy -of the Program. Ancillary propagation of a covered work occurring solely as a -consequence of using peer-to-peer transmission to receive a copy likewise does -not require acceptance. However, nothing other than this License grants you -permission to propagate or modify any covered work. These actions infringe -copyright if you do not accept this License. Therefore, by modifying or -propagating a covered work, you indicate your acceptance of this License to do -so. - -### 10. Automatic Licensing of Downstream Recipients. - -Each time you convey a covered work, the recipient automatically receives a -license from the original licensors, to run, modify and propagate that work, -subject to this License. You are not responsible for enforcing compliance by -third parties with this License. - -An *entity transaction* is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered work -results from an entity transaction, each party to that transaction who receives -a copy of the work also receives whatever licenses to the work the party's -predecessor in interest had or could give under the previous paragraph, plus a -right to possession of the Corresponding Source of the work from the -predecessor in interest, if the predecessor has it or can get it with -reasonable efforts. - -You may not impose any further restrictions on the exercise of the rights -granted or affirmed under this License. For example, you may not impose a -license fee, royalty, or other charge for exercise of rights granted under this -License, and you may not initiate litigation (including a cross-claim or -counterclaim in a lawsuit) alleging that any patent claim is infringed by -making, using, selling, offering for sale, or importing the Program or any -portion of it. - -### 11. Patents. - -A *contributor* is a copyright holder who authorizes use under this License of -the Program or a work on which the Program is based. The work thus licensed is -called the contributor's *contributor version*. - -A contributor's *essential patent claims* are all patent claims owned or -controlled by the contributor, whether already acquired or hereafter acquired, -that would be infringed by some manner, permitted by this License, of making, -using, or selling its contributor version, but do not include claims that would -be infringed only as a consequence of further modification of the contributor -version. For purposes of this definition, *control* includes the right to grant -patent sublicenses in a manner consistent with the requirements of this -License. - -Each contributor grants you a non-exclusive, worldwide, royalty-free patent -license under the contributor's essential patent claims, to make, use, sell, -offer for sale, import and otherwise run, modify and propagate the contents of -its contributor version. - -In the following three paragraphs, a *patent license* is any express agreement -or commitment, however denominated, not to enforce a patent (such as an express -permission to practice a patent or covenant not to sue for patent -infringement). To *grant* such a patent license to a party means to make such -an agreement or commitment not to enforce a patent against the party. - -If you convey a covered work, knowingly relying on a patent license, and the -Corresponding Source of the work is not available for anyone to copy, free of -charge and under the terms of this License, through a publicly available -network server or other readily accessible means, then you must either - - 1. cause the Corresponding Source to be so available, or - 2. arrange to deprive yourself of the benefit of the patent license for this - particular work, or - 3. arrange, in a manner consistent with the requirements of this License, to - extend the patent license to downstream recipients. - -*Knowingly relying* means you have actual knowledge that, but for the patent -license, your conveying the covered work in a country, or your recipient's use -of the covered work in a country, would infringe one or more identifiable -patents in that country that you have reason to believe are valid. - -If, pursuant to or in connection with a single transaction or arrangement, you -convey, or propagate by procuring conveyance of, a covered work, and grant a -patent license to some of the parties receiving the covered work authorizing -them to use, propagate, modify or convey a specific copy of the covered work, -then the patent license you grant is automatically extended to all recipients -of the covered work and works based on it. - -A patent license is *discriminatory* if it does not include within the scope of -its coverage, prohibits the exercise of, or is conditioned on the non-exercise -of one or more of the rights that are specifically granted under this License. -You may not convey a covered work if you are a party to an arrangement with a -third party that is in the business of distributing software, under which you -make payment to the third party based on the extent of your activity of -conveying the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory patent -license - - - a) in connection with copies of the covered work conveyed by you (or copies - made from those copies), or - - b) primarily for and in connection with specific products or compilations - that contain the covered work, unless you entered into that arrangement, or - that patent license was granted, prior to 28 March 2007. - -Nothing in this License shall be construed as excluding or limiting any implied -license or other defenses to infringement that may otherwise be available to -you under applicable patent law. - -### 12. No Surrender of Others' Freedom. - -If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not excuse -you from the conditions of this License. If you cannot convey a covered work so -as to satisfy simultaneously your obligations under this License and any other -pertinent obligations, then as a consequence you may not convey it at all. For -example, if you agree to terms that obligate you to collect a royalty for -further conveying from those to whom you convey the Program, the only way you -could satisfy both those terms and this License would be to refrain entirely -from conveying the Program. - -### 13. Use with the GNU Affero General Public License. - -Notwithstanding any other provision of this License, you have permission to -link or combine any covered work with a work licensed under version 3 of the -GNU Affero General Public License into a single combined work, and to convey -the resulting work. The terms of this License will continue to apply to the -part which is the covered work, but the special requirements of the GNU Affero -General Public License, section 13, concerning interaction through a network -will apply to the combination as such. - -### 14. Revised Versions of this License. - -The Free Software Foundation may publish revised and/or new versions of the GNU -General Public License from time to time. Such new versions will be similar in -spirit to the present version, but may differ in detail to address new problems -or concerns. - -Each version is given a distinguishing version number. If the Program specifies -that a certain numbered version of the GNU General Public License *or any later -version* applies to it, you have the option of following the terms and -conditions either of that numbered version or of any later version published by -the Free Software Foundation. If the Program does not specify a version number -of the GNU General Public License, you may choose any version ever published by -the Free Software Foundation. - -If the Program specifies that a proxy can decide which future versions of the -GNU General Public License can be used, that proxy's public statement of -acceptance of a version permanently authorizes you to choose that version for -the Program. - -Later license versions may give you additional or different permissions. -However, no additional obligations are imposed on any author or copyright -holder as a result of your choosing to follow a later version. - -### 15. Disclaimer of Warranty. - -THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE -LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER -PARTIES PROVIDE THE PROGRAM *AS IS* WITHOUT WARRANTY OF ANY KIND, EITHER -EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE -QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE -DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR -CORRECTION. - -### 16. Limitation of Liability. - -IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY -COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS -PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, -INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE -THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED -INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE -PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY -HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -### 17. Interpretation of Sections 15 and 16. - -If the disclaimer of warranty and limitation of liability provided above cannot -be given local legal effect according to their terms, reviewing courts shall -apply local law that most closely approximates an absolute waiver of all civil -liability in connection with the Program, unless a warranty or assumption of -liability accompanies a copy of the Program in return for a fee. - -## END OF TERMS AND CONDITIONS ### - -### How to Apply These Terms to Your New Programs - -If you develop a new program, and you want it to be of the greatest possible -use to the public, the best way to achieve this is to make it free software -which everyone can redistribute and change under these terms. - -To do so, attach the following notices to the program. It is safest to attach -them to the start of each source file to most effectively state the exclusion -of warranty; and each file should have at least the *copyright* line and a -pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - -If the program does terminal interaction, make it output a short notice like -this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w` and `show c` should show the appropriate -parts of the General Public License. Of course, your program's commands might -be different; for a GUI interface, you would use an *about box*. - -You should also get your employer (if you work as a programmer) or school, if -any, to sign a *copyright disclaimer* for the program, if necessary. For more -information on this, and how to apply and follow the GNU GPL, see -[http://www.gnu.org/licenses/](http://www.gnu.org/licenses/). - -The GNU General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may consider -it more useful to permit linking proprietary applications with the library. If -this is what you want to do, use the GNU Lesser General Public License instead -of this License. But first, please read -[http://www.gnu.org/philosophy/why-not-lgpl.html](http://www.gnu.org/philosophy/why-not-lgpl.html). +## No copyright diff --git a/doc/UsersGuide/Makefile b/doc/UsersGuide/Makefile new file mode 100644 index 0000000000..d0c3cbf102 --- /dev/null +++ b/doc/UsersGuide/Makefile @@ -0,0 +1,20 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = source +BUILDDIR = build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/doc/UsersGuide/README.md b/doc/UsersGuide/README.md new file mode 100644 index 0000000000..028675fd99 --- /dev/null +++ b/doc/UsersGuide/README.md @@ -0,0 +1,11 @@ +This directory contains the Developer's Guide for the UFS Medium-Range Weather Application. + +To build in html format (from this directory, above source and build) type: + +`make html` + +This will create an `index.html` file in `./build/html`. + +To view in a browser window: + +`open build/html/index.html` diff --git a/doc/UsersGuide/build/.gitignore b/doc/UsersGuide/build/.gitignore new file mode 100644 index 0000000000..0addfc818b --- /dev/null +++ b/doc/UsersGuide/build/.gitignore @@ -0,0 +1,4 @@ +# Ignore everything in this directory +* +# Except this file +!.gitignore diff --git a/doc/UsersGuide/make.bat b/doc/UsersGuide/make.bat new file mode 100644 index 0000000000..6247f7e231 --- /dev/null +++ b/doc/UsersGuide/make.bat @@ -0,0 +1,35 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=source +set BUILDDIR=build + +if "%1" == "" goto help + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.http://sphinx-doc.org/ + exit /b 1 +) + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% + +:end +popd diff --git a/doc/UsersGuide/requirements.txt b/doc/UsersGuide/requirements.txt new file mode 100644 index 0000000000..ef36addc62 --- /dev/null +++ b/doc/UsersGuide/requirements.txt @@ -0,0 +1 @@ +sphinxcontrib-bibtex diff --git a/doc/UsersGuide/source/Acronyms.rst b/doc/UsersGuide/source/Acronyms.rst new file mode 100644 index 0000000000..1395ec20d7 --- /dev/null +++ b/doc/UsersGuide/source/Acronyms.rst @@ -0,0 +1,82 @@ +.. _Acronyms: + +************************* +Acronyms +************************* + +.. table:: + :widths: 20 80 + + +----------------+---------------------------------------------------+ + | Acronyms | Explanation | + +================+===================================================+ + | AOML | NOAA's Atlantic Oceanographic and Meteorological | + | | Laboratory | + +----------------+---------------------------------------------------+ + | API | Application Programming Interface | + +----------------+---------------------------------------------------+ + | b4b | Bit-for-bit | + +----------------+---------------------------------------------------+ + | CCPP | Common Community Physics Package | + +----------------+---------------------------------------------------+ + | dycore | Dynamical core | + +----------------+---------------------------------------------------+ + | EDMF | Eddy-Diffusivity Mass Flux | + +----------------+---------------------------------------------------+ + | EMC | Environmental Modeling Center | + +----------------+---------------------------------------------------+ + | ESMF | The Earth System Modeling Framework | + +----------------+---------------------------------------------------+ + | ESRL | NOAA Earth System Research Laboratories | + +----------------+---------------------------------------------------+ + | FMS | Flexible Modeling System | + +----------------+---------------------------------------------------+ + | FV3 | Finite-Volume Cubed Sphere | + +----------------+---------------------------------------------------+ + | GFDL | NOAA Geophysical Fluid Dynamics Laboratory | + +----------------+---------------------------------------------------+ + | GFS | Global Forecast System | + +----------------+---------------------------------------------------+ + | GSD | Global Systems Division | + +----------------+---------------------------------------------------+ + | HTML | Hypertext Markup Language | + +----------------+---------------------------------------------------+ + | LSM | Land Surface Model | + +----------------+---------------------------------------------------+ + | MPI | Message Passing Interface | + +----------------+---------------------------------------------------+ + | NCAR | National Center for Atmospheric Research | + +----------------+---------------------------------------------------+ + | NCEP | National Centers for Environmental Predicction | + +----------------+---------------------------------------------------+ + | NEMS | NOAA Environmental Modeling System | + +----------------+---------------------------------------------------+ + | NOAA | National Oceanic and Atmospheric Administration | + +----------------+---------------------------------------------------+ + | NSSL | National Severe Storms Laboratory | + +----------------+---------------------------------------------------+ + | PBL | Planetary Boundary Layer | + +----------------+---------------------------------------------------+ + | PR | Pull request | + +----------------+---------------------------------------------------+ + | RRTMG | Rapid Radiative Transfer Model for Global | + | | Circulation Models | + +----------------+---------------------------------------------------+ + | SAS | Simplified Arakawa-Schubert | + +----------------+---------------------------------------------------+ + | SDF | Suite Definition File | + +----------------+---------------------------------------------------+ + | sfc | Surface | + +----------------+---------------------------------------------------+ + | SHUM | Perturbed boundary layer specific humidity | + +----------------+---------------------------------------------------+ + | SKEB | Stochastic Kinetic Energy Backscatter | + +----------------+---------------------------------------------------+ + | SPPT | Stochastically Perturbed Physics Tendencies | + +----------------+---------------------------------------------------+ + | TKE | Turbulent Kinetic Energy | + +----------------+---------------------------------------------------+ + | UFS | Unified Forecast System | + +----------------+---------------------------------------------------+ + | WM | Weather Model | + +----------------+---------------------------------------------------+ diff --git a/doc/UsersGuide/source/BuildingAndRunning.rst b/doc/UsersGuide/source/BuildingAndRunning.rst new file mode 100644 index 0000000000..00efb1b101 --- /dev/null +++ b/doc/UsersGuide/source/BuildingAndRunning.rst @@ -0,0 +1,199 @@ +.. _BuildingAndRunning: + +****************************************** +Building and Running the UFS Weather Model +****************************************** + +====================== +Prerequisite Libraries +====================== + +The UFS Weather Model requires a number of libraries for it to compile. +There are two categories of libraries that are needed: + +#. Bundled libraries (NCEPLIBS). These are libraries developed for use with NOAA weather models. + Most have an NCEPLIBS prefix in the repository, e.g. NCEPLIBS-bacio. Select tools from the UFS + Utilities repository (UFS-UTILS) are also included in this category. A list of the bundled + libraries tested with this WM release is in the top-level ``README`` of the `NCEPLIBS repository + `_ (**be sure to look at the tag in that repository that + matches the tag on this WM release**). + +#. Third-party libraries (NCEPLIBS-external). These are libraries that were developed external to + the UFS Weather Model. They are general software packages that are also used by other models in + the community. Building these is optional, since existing builds of these libraries can be pointed + to instead. A list of the external libraries tested with this WM release is in the top-level ``README`` + of the `NCEPLIBS-external repository `_. Again, be + sure to look at the tag in that repository that matches the tag on this WM release. + +.. note:: + The libraries in NCEPLIBS-external must be built *before* the libraries in NCEPLIBS. + +See this `wiki link `_ for +an explanation of which platforms and compilers are supported. This will help to determine if you need +to build NCEPLIBS and NCEPLIBS-external or are working on a system that is already pre-configured. On +pre-configured platforms, the libraries are already available. + +If you do have to build the libraries, it is a good idea to check the platform- and compiler-specific +``README`` files in the doc/ directory of the `NCEPLIBS-external repository `_ +as a first step, to see if your system or one similar to it is included. These files have detailed +instructions for building NCEPLIBS-external, NCEPLIBS, and the UFS Weather Model. They may be all the +documentation you need. Be sure to use the tag that corresponds to this version of the WM, and define a +WORK directory path before you get started. + +If your platform is not included in these platform- and compiler-specific ``README`` files, there is a more +generic set of instructions in the ``README`` file at the top level of the `NCEPLIBS-external repository +`_, and at the top level of the `NCEPLIBS repository +`_. It may still be a good idea to look at some of the platform- +and compiler-specific ``README`` files as a guide. Again, be sure to use the tag that corresponds to this version of the WM. + +The top-level ``README`` in the NCEPLIBS-external repository includes a troubleshooting section that may be helpful. + +You can also get expert help through a `user support forum `_ +set up specifically for issues related to build dependencies. + +.. _DownloadingWMCode: + +================================== +Downloading the Weather Model Code +================================== + +To clone the ufs-weather-model repository for this v1.1.0 release, execute the following commands: + +.. code-block:: console + + git clone https://github.com/ufs-community/ufs-weather-model.git ufs-weather-model + cd ufs-weather-model + git checkout ufs-v1.1.0 + git submodule update --init --recursive + +Compiling the model will take place within the `ufs-weather-model` directory you just created. + +========================== +Building the Weather Model +========================== + +------------------------------------------------------------------------- +Setting environment variables for NCEPLIBS, NCEPLIBS-external and CMake +------------------------------------------------------------------------- +You will need to make sure that the WM has the paths to the libraries that it requires. In order to do +that, these environment variables need to be set, as shown in :numref:`Table %s ` and +:numref:`Table %s ` for the bash shell. + +.. _ReqLibEnvVar: + +.. table:: *Bundled libraries (NCEPLIBS) required for the Weather Model* + + +------------------+-----------------------------------------------------------------+ + | **NCEP Library** | **Environment Variables** | + +==================+=================================================================+ + | nemsio | export NEMSIO_INC= | + +------------------+-----------------------------------------------------------------+ + | | export NEMSIO_LIB=/libnemsio.a | + +------------------+-----------------------------------------------------------------+ + | bacio | export BACIO_LIB4=/libbacio.a | + +------------------+-----------------------------------------------------------------+ + | splib | export SP_LIBd=/libsp_d.a | + +------------------+-----------------------------------------------------------------+ + | w3emc | export W3EMC_LIBd=/libw3emc_d.a | + +------------------+-----------------------------------------------------------------+ + | w3nco | export W3NCO_LIBd=/libw3nco_d.a | + +------------------+-----------------------------------------------------------------+ + +| + +.. _ReqLibEnvVar2: + +.. table:: *Third-party libraries (NCEPLIBS-external) required for the Weather Model* + + +------------------+----------------------------------------------------+ + | **Library** | **Environment Variables** | + +==================+====================================================+ + | NetCDF | export NETCDF= | + +------------------+----------------------------------------------------+ + | ESMF | export ESMFMKFILE=/esmf.mk | + +------------------+----------------------------------------------------+ + +The following are a few different ways to set the required environment variables to the correct values. +If you are running on one of the `pre-configured platforms +`_, you can set them using +modulefiles. Modulefiles for all supported platforms are located in ``modulefiles//fv3``. To +load the modules from the `ufs-weather-model` directory on hera: + +.. code-block:: console + + cd modulefiles/hera.intel + module use $(pwd) + module load fv3 + cd ../.. + +Note that loading this module file will also set the CMake environment variables shown in +:numref:`Table %s `. + +.. _CMakeEnv: + +.. table:: *CMake environment variables required to configure the build for the Weather Model* + + +-------------------------+----------------------------------------------+----------------------+ + | **EnvironmentVariable** | **Description** | **Hera Intel Value** | + +=========================+==============================================+======================+ + | CMAKE_C_COMPILER | Name of C compiler | mpiicc | + +-------------------------+----------------------------------------------+----------------------+ + | CMAKE_CXX_COMPILER | Name of C++ compiler | mpiicpc | + +-------------------------+----------------------------------------------+----------------------+ + | CMAKE_Fortran_COMPILER | Name of Fortran compiler | mpiifort | + +-------------------------+----------------------------------------------+----------------------+ + | CMAKE_Platform | String containing platform and compiler name | hera.intel | + +-------------------------+----------------------------------------------+----------------------+ + +If you are not running on one of the pre-configured platforms, you will need to set the environment variables +in a different way. + +If you used one of the platform- and compiler-specific ``README`` files in the ``doc/`` directory of NCEPLIBS-external +to build the prerequisite libraries, there is a script in the ``NCEPLIBS-ufs-v1.1.0/bin`` directory called +``setenv_nceplibs.sh`` that will set the NCEPLIBS-external variables for you. + +Of course, you can also set the values of these variables yourself if you know where the paths are on your system. + +-------------------------------------------- +Setting the CCPP_SUITES environment variable +-------------------------------------------- + +In order to have one or more CCPP physics suites available at runtime, you need to select those suites at +build time by setting the ``CCPP_SUITES`` environment variable. Multiple suites can be set, as shown below +in an example for the bash shell: + +.. code-block:: console + + export CCPP_SUITES="FV3_GFS_v15p2,FV3_GFS_v16beta" + +If ``CCPP_SUITES`` is not set, the default is set to ``‘FV3_GFS_v15p2’`` in ``build.sh``. + +------------------ +Building the model +------------------ +The UFS Weather Model uses the CMake build system. There is a build script called ``build.sh`` in the +top-level directory of the WM repository that configures the build environment and runs the ``make`` +command. This script also checks that all necessary environment variables have been set. + +If any of the environment variables have not been set, the ``build.sh`` script will exit with a message similar to: + +.. code-block:: console + + ./build.sh: line 11: CMAKE_Platform: Please set the CMAKE_Platform environment variable, e.g. [macosx.gnu|linux.gnu|linux.intel|hera.intel|...] + +The WM can be built by running the following command from the `ufs-weather-model` directory: + +.. code-block:: console + + ./build.sh + +Once ``build.sh`` is finished, you should see the executable, named ``ufs_weather_model``, in the top-level directory. + +Expert help is available through a `user support forum `_ +set up specifically for issues related to the Weather Model. + +================= +Running the model +================= +The `UFS Weather Model wiki `_ includes a simple +test case that illustrates how the model can be run. diff --git a/doc/UsersGuide/source/CodeOverview.rst b/doc/UsersGuide/source/CodeOverview.rst new file mode 100644 index 0000000000..3a4dda312a --- /dev/null +++ b/doc/UsersGuide/source/CodeOverview.rst @@ -0,0 +1,103 @@ +.. _CodeOverview: + +************************* +Code Overview +************************* + +=================================================== +UFS Weather Model Hierarchical Repository Structure +=================================================== + +The ufs-weather-model repository supports the short- and medium-range UFS applications. It contains atmosphere and wave components and some infrastructure components. Each of these components has its own repository. All the repositories are currently located in GitHub with public access to the broad community. :numref:`Table %s ` describes the list of repositories that comprises the ufs-weather-model. + +.. _Repo_Structure: + +.. list-table:: *List of Repositories that comprise the ufs-weather-model* + :widths: 50 50 + :header-rows: 1 + + * - Repository Description + - Authoritative repository URL + * - Umbrella repository for the UFS Weather Model + - https://github.com/ufs-community/ufs-weather-model + * - Infrastructure: Flexible Modeling System + - https://github.com/NOAA-GFDL/FMS + * - Infrastructure: NOAA Environmental Modeling System + - https://github.com/NOAA-EMC/NEMS + * - Infrastructure: Utilities + - https://github.com/NOAA-EMC/NCEPLIBS-pyprodutil + * - Framework to connect the CCPP library to a host model + - https://github.com/NCAR/ccpp-framework + * - CCPP library of physical parameterizations + - https://github.com/NCAR/ccpp-physics + * - Umbrella repository for the physics and dynamics of the atmospheric model + - https://github.com/NOAA-EMC/fv3atm + * - FV3 dynamical core + - https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere + * - Stochastic physics pattern generator + - https://github.com/noaa-psd/stochastic_physics + +In the table, the left column contains a description of each repository, and the right column shows the component repositories which are pointing to (or will point to) the authoritative repositories. The ufs-weather-model currently uses git submodule to manage the sub-components. + +The umbrella repository for the UFS Weather Model is named ufs-weather-model. Under this repository reside a number of submodules that are nested in specific directories under the parent repository’s working directory. When the ufs-weather-model repository is cloned, the *.gitmodules* file creates the following directories: + +.. code-block:: console + + ufs-weather-model/ + ├── FMS https://github.com/NOAA-GFDL/FMS + ├── FV3 https://github.com/NOAA-EMC/fv3atm + │ ├── atmos_cubed_sphere https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere + │ ├── ccpp + │ │ ├── framework https://github.com/NCAR/ccpp-framework + │ │ ├── physics https://github.com/NCAR/ccpp-physics + ├── NEMS https://github.com/NOAA-EMC/NEMS + │ └── tests/produtil/NCEPLIBS-pyprodutil https://github.com/NOAA-EMC/NCEPLIBS-pyprodutil + ├── stochastic_physics https://github.com/noaa-psd/stochastic_physics + +=================== +Directory Structure +=================== + +When the ufs-weather-model is cloned, the basic directory structure will be similar to the example below. Files and some directories have been removed for brevity. + +.. code-block:: console + + ufs-weather-model/ + ├── cmake --------- cmake configuration files + ├── compsets --------- configurations used by some regression tests + ├── conf --------- compile options for Tier 1 and 2 platforms + ├── doc --------- READMEs with build, reg-test hints + ├── FMS --------- The Flexible Modeling System (FMS),a software framework + ├── FV3 --------- FV3 atmosphere model + │ ├── atmos_cubed_sphere ---- FV3 dynamic core + │ │ ├── docs + │ │ ├── driver + │ │ ├── model + │ │ └── tools + │ ├── ccpp -------- Common Community Physics Package + │ │ ├── config + │ │ ├── driver + │ │ ├── framework -------- CCPP framework + │ │ ├── physics -------- CCPP compliant physics schemes + │ │ └── suites -------- CCPP physics suite definition files (SDFs) + │ ├── cpl -------- Coupling field data structures + │ ├── gfsphysics + │ │ ├── CCPP_layer + │ │ ├── GFS_layer + │ │ └── physics --------- unused - IPD version of physics codes + │ ├── io --------- FV3 write grid comp code + │ ├── ipd --------- unused - IPD driver/interfaces + | ├── stochastic_physics ----- Cmakefile for stochastic physics code + ├── log --------- log files from NEMS compset regression tests + ├── modulefiles --------- system module files for supported HPC systems + ├── NEMS --------- NOAA Earth Modeling System framework + │ ├── exe + │ ├── src + │ └── test + ├── parm --------- regression test configurations + ├── stochastic_physics -------- stochastic physics pattern generator + ├── tests --------- regression test scripts + +The physics subdirectory in the *gfsphysics* directory is not used or supported +as part of this release (all physics is available through the :term:`CCPP` using +the repository described in :numref:`Table %s `). diff --git a/doc/UsersGuide/source/FAQ.rst b/doc/UsersGuide/source/FAQ.rst new file mode 100644 index 0000000000..511da9e1c7 --- /dev/null +++ b/doc/UsersGuide/source/FAQ.rst @@ -0,0 +1,96 @@ +.. _FAQ: + +*** +FAQ +*** + +============================================================== +How do I build and run a single test of the UFS Weather Model? +============================================================== + +An efficient way to build and run the UFS Weather Model is to use the regression test +(``rt.sh``). This script is widely used by model developers on Tier 1 and 2 platforms +and is described in the UFS WM GitHub `wiki `_. The advantages to this approach are: + +- It does not require a workflow, pre- or post-processing steps. +- The batch submission script is generated. +- Any required input data is already available for machines used by the regression test. +- Once the ``rt.sh`` test completes, you will have a working copy in your run directory + where you can make modifications to the namelist and other files, and then re-run the + executable. + +The steps are: + +1. Clone the source code and all the submodules as described in :numref:`Section %s `, then + go into the ``tests`` directory: + + .. code-block:: console + + cd ufs-weather-model (or the top level where you checked out the code) + cd tests + +2. Find a configure (``*.conf``) file that contains the machine and compiler you are using. For this + example, the Intel compiler on Cheyenne is used. To create a custom configure file, two lines are + needed: a ``COMPILE`` line and a ``RUN`` line. The ``COMPILE`` line should contain the name + of the machine and compiler ``cheyenne.intel`` and the desired ``SUITES`` for the build. Choose a + ``RUN`` line under this ``COMPILE`` command that uses the desired ``SUITE``. For example: + + .. code-block:: console + + COMPILE | 32BIT=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_no_nsst,FV3_GFS_v16beta_no_nsst | standard | cheyenne.intel | fv3 + RUN | fv3_ccpp_gfs_v16beta | standard | | fv3 | + + Put these two lines into a file called ``my_test.conf``. The parameters used in this run can be + found in the ``fv3_ccpp_gfs_v16beta`` file in the ``ufs-weather-model/tests/tests`` directory. + + .. note:: These two lines are long and may not appear in entirety in your browser. Scroll to the right to see + the entire line. + +3. Modify the ``rt.sh`` script to put the output in a run directory where you have write permission: + + .. code-block:: console + + if [[ $MACHINE_ID = cheyenne.* ]]; then stanza: + ... + dprefix=/glade/scratch + + This works for Cheyenne, since ``$USER/FV3_RT`` will be appended. Also check that ``RTPWD`` + points to a diretory that exists: + + .. code-block:: console + + if [[ $MACHINE_ID = cheyenne.* ]]; then + RTPWD=${RTPWD:-$DISKNM/ufs-public-release-20200224/${COMPILER^^}} + +4. Run the ``rt.sh`` script from the ``tests`` directory: + + .. code-block:: console + + ./rt.sh -k -l my_test.conf >& my_test.out & + + Check ``my_test.out`` for build and run status, plus other standard output. Check + ``/glade/scratch/$USER/FV3_RT/rt_PID`` for the model run, where ``PID`` is a process ID. + The build will take about 10-15 minutes and the run will be fast, depending on how long + it waits in the queue. A message ``"REGRESSION TEST WAS SUCCESSFUL"`` will be written to this + file, along with other entertainment: ``'Elapsed time: 00h:14m:12s. Have a nice day!'``. + +5. When the build and run are complete, modify the namelist or ``model_configure`` files + and re-run by submitting the ``job_card`` file: + + .. code-block:: console + + qsub job_card + +============================================ +How do I change the length of the model run? +============================================ +In your run directory, there is a file named ``model_configure``. Change the +variable ``nhours_fcst`` to the desired number of hours. + +======================================================================== +How do I select the file format for the model output (netCDF or NEMSIO)? +======================================================================== +In your run directory, there is a file named ``model_configure``. Change the +variable ``output_file`` to ``'netcdf'`` or ``'nemsio'``. The variable ``output_file`` +if only valid when the write component is activated by setting ``quilting`` to .true. +in the ``model_configure`` file. diff --git a/doc/UsersGuide/source/Glossary.rst b/doc/UsersGuide/source/Glossary.rst new file mode 100644 index 0000000000..17267c64cf --- /dev/null +++ b/doc/UsersGuide/source/Glossary.rst @@ -0,0 +1,62 @@ +.. _Glossary: + +************************* +Glossary +************************* + +.. glossary:: + + CCPP + Model agnostic, vetted, collection of codes containing atmospheric physical parameterizations + and suites for use in NWP along with a framework that connects the physics to host models + + CCPP-Framework + The infrastructure that connects physics schemes with a host model; also refers to a software + repository of the same name + + CCPP-Physics + The pool of CCPP-compliant physics schemes; also refers to a software repository of the same name + + FMS + The Flexible Modeling System (FMS) is a software framework for supporting the efficient + development, construction, execution, and scientific interpretation of atmospheric, + oceanic, and climate system models. + + NEMS + The NOAA Environmental Modeling System - a software infrastructure that supports + NCEP/EMC’s forecast products. + + NUOPC + The National Unified Operational Prediction Capability is a consortium of Navy, NOAA, + and Air Force modelers and their research partners. It aims to advance the weather + modeling systems used by meteorologists, mission planners, and decision makers. NUOPC + partners are working toward a common model architecture - a standard way of building + models - in order to make it easier to collaboratively build modeling systems. + + Parameterization or physics scheme + The representation, in a dynamic model, of physical effects in terms of admittedly + oversimplified parameters, rather than realistically requiring such effects to be + consequences of the dynamics of the system (AMS Glossary) + + Suite Definition File (SDF) + An external file containing information about the + construction of a physics suite. It describes the schemes that are called, in which + order they are called, whether they are subcycled, and whether they are assembled + into groups to be called together + + Suite + A collection of primary physics schemes and interstitial schemes that are known to work + well together + + UFS + A Unified Forecast System (UFS) is a community-based, coupled comprehensive Earth + system modeling system. The UFS numerical applications span local to global domains + and predictive time scales from sub-hourly analyses to seasonal predictions. It is + designed to support the Weather Enterprise and to be the source system for NOAA's + operational numerical weather prediction applications + + Weather Model + A prognostic model that can be used for short- and medium-range research and + operational forecasts. It can be an atmosphere-only model or be an atmospheric + model coupled with one or more additional components, such as a wave or ocean model. + diff --git a/doc/UsersGuide/source/InputNML.inc b/doc/UsersGuide/source/InputNML.inc new file mode 100644 index 0000000000..32f49cb32c --- /dev/null +++ b/doc/UsersGuide/source/InputNML.inc @@ -0,0 +1,321 @@ +.. --------------------------------------------------- +.. This file is included in the InputsOutputs.rst file +.. --------------------------------------------------- + +.. _InputNML: + +--------------------------- +Namelist file ``input.nml`` +--------------------------- + +The atmosphere model reads many parameters from a Fortran namelist file, named *input.nml*. This file contains +several Fortran namelist records, some of which are always required, others of which are only used when selected +physics options are chosen. + +The following link describes the various physics-related namelist records: + +https://dtcenter.ucar.edu/GMTB/v4.1.0/sci_doc/CCPPsuite_nml_desp.html + +The following link describes the stochastic physics namelist records: + +https://stochastic-physics.readthedocs.io/en/ufs-v1.1.0/namelist_options.html + +The following link describes some of the other namelist records (dynamics, grid, etc): + +https://noaa-emc.github.io/FV3_Dycore_ufs-v1.1.0/html/index.html + +The namelist section ``&interpolator_nml`` is not used in this release, and any modifications to +it will have no effect on the model results. + +fms_io_nml +---------- + +The namelist section ``&fms_io_nml`` of ``input.nml`` contains variables that control +reading and writing of restart data in netCDF format. There is a global switch to turn on/off +the netCDF restart options in all of the modules that read or write these files. The two namelist +variables that control the netCDF restart options are ``fms_netcdf_override`` and ``fms_netcdf_restart``. +The default values of both flags are .true., so by default, the behavior of the entire model is +to use netCDF IO mode. To turn off netCDF restart, simply set ``fms_netcdf_restart`` to .false.. +The namelist variables used in ``&fms_io_nml`` are described in :numref:`Table %s `. + +.. _fms_io_nml: + +.. list-table:: *Description of the &fms_io_nml namelist section.* + :widths: 25 40 15 10 + :header-rows: 1 + + * - Variable Name + - Description + - Data Type + - Default Value + * - fms_netcdf_override + - If true, ``fms_netcdf_restart`` overrides the individual ``do_netcdf_restart`` value. If false, individual module settings has a precedence over the global setting, therefore ``fms_netcdf_restart`` is ignored. + - logical + - .true. + * - fms_netcdf_restart + - If true, all modules using restart files will operate under netCDF mode. If false, all modules using restart files will operate under binary mode. This flag is effective only when ``fms_netcdf_override`` is .true. When ``fms_netcdf_override`` is .false., individual module setting takes over. + - logical + - .true. + * - threading_read + - Can be 'single' or 'multi' + - character(len=32) + - 'multi' + * - format + - Format of restart data. Only netCDF format is supported in fms_io. + - character(len=32) + - 'netcdf' + * - read_all_pe + - Reading can be done either by all PEs (default) or by only the root PE. + - logical + - .true. + * - iospec_ieee32 + - If set, call mpp_open single 32-bit ieee file for reading. + - character(len=64) + - '-N ieee_32' + * - max_files_w + - Maximum number of write files + - integer + - 40 + * - max_files_r + - Maximum number of read files + - integer + - 40 + * - time_stamp_restart + - If true, ``time_stamp`` will be added to the restart file name as a prefix. + - logical + - .true. + * - print_chksum + - If true, print out chksum of fields that are read and written through save_restart/restore_state. + - logical + - .false. + * - show_open_namelist_file_warning + - Flag to warn that open_namelist_file should not be called when INTERNAL_FILE_NML is defined. + - logical + - .false. + * - debug_mask_list + - Set ``debug_mask_list`` to true to print out mask_list reading from mask_table. + - logical + - .false. + * - checksum_required + - If true, compare checksums stored in the attribute of a field against the checksum after reading in the data. + - logical + - .true. + +This release of the UFS Weather Model sets the following variables in the ``&fms_io_nml`` namelist: + +.. code-block:: console + + &fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 + / + +namsfc +------ + +The namelist section ``&namsfc`` contains the filenames of the static datasets (i.e., *fix files*). +:numref:`Table %s ` contains a brief description of the climatological information in these files. +The variables used in ``&namsfc`` to set the filenames are described in :numref:`Table %s `. + +.. _namsfc_nml: + +.. list-table:: *List of common variables in the *namsfc* namelist section used to set the filenames of + static datasets.* + :widths: 15 40 15 20 + :header-rows: 1 + + * - Variable Name + - File contains + - Data Type + - Default Value + * - fnglac + - Climatological glacier data + - character*500 + - 'global_glacier.2x2.grb' + * - fnmxic + - Climatological maximum ice extent + - character*500 + - 'global_maxice.2x2.grb' + * - fntsfc + - Climatological surface temperature + - character*500 + - 'global_sstclim.2x2.grb' + * - fnsnoc + - Climatological snow depth + - character*500 + - 'global_snoclim.1.875.grb' + * - fnzorc + - Climatological surface roughness + - character*500 + - 'global_zorclim.1x1.grb' + * - fnalbc + - Climatological snowfree albedo + - character*500 + - 'global_albedo4.1x1.grb' + * - fnalbc2 + - Four albedo fields for seasonal mean climatology + - character*500 + - 'global_albedo4.1x1.grb' + * - fnaisc + - Climatological sea ice + - character*500 + - 'global_iceclim.2x2.grb' + * - fntg3c + - Climatological deep soil temperature + - character*500 + - 'global_tg3clim.2.6x1.5.grb' + * - fnvegc + - Climatological vegetation cover + - character*500 + - 'global_vegfrac.1x1.grb' + * - fnvetc + - Climatological vegetation type + - character*500 + - 'global_vegtype.1x1.grb' + * - fnsotc + - Climatological soil type + - character*500 + - 'global_soiltype.1x1.grb' + * - fnsmcc + - Climatological soil moisture + - character*500 + - 'global_soilmcpc.1x1.grb' + * - fnmskh + - High resolution land mask field + - character*500 + - 'global_slmask.t126.grb' + * - fnvmnc + - Climatological minimum vegetation cover + - character*500 + - 'global_shdmin.0.144x0.144.grb' + * - fnvmxc + - Climatological maximum vegetation cover + - character*500 + - 'global_shdmax.0.144x0.144.grb' + * - fnslpc + - Climatological slope type + - character*500 + - 'global_slope.1x1.grb' + * - fnabsc + - Climatological maximum snow albedo + - character*500 + - 'global_snoalb.1x1.grb' + +A sample subset of this namelist is shown below: + +.. code-block:: console + + &namsfc + FNGLAC = 'global_glacier.2x2.grb' + FNMXIC = 'global_maxice.2x2.grb' + FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' + FNSNOC = 'global_snoclim.1.875.grb' + FNZORC = 'igbp' + FNALBC = 'global_snowfree_albedo.bosu.t126.384.190.rg.grb' + FNALBC2 = 'global_albedo4.1x1.grb' + FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' + FNTG3C = 'global_tg3clim.2.6x1.5.grb' + FNVEGC = 'global_vegfrac.0.144.decpercent.grb' + FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' + FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' + FNSMCC = 'global_soilmgldas.t126.384.190.grb' + FNMSKH = 'seaice_newland.grb' + FNVMNC = 'global_shdmin.0.144x0.144.grb' + FNVMXC = 'global_shdmax.0.144x0.144.grb' + FNSLPC = 'global_slope.1x1.grb' + FNABSC = 'global_mxsnoalb.uariz.t126.384.190.rg.grb' + / + +Additional variables for the ``&namsfc`` namelist can be found in the ``FV3/ccpp/physics/physics/sfcsub.F`` +file. + +atmos_model_nml +--------------- + +The namelist section ``&atmos_model_nml`` contains information used by the atmosphere model. +The variables used in ``&atmos_model_nml`` are described in :numref:`Table %s `. + +.. _atmos_model_nml: + +.. list-table:: *List of common variables in the *atmos_model_nml* namelist section. + :widths: 10 40 15 15 + :header-rows: 1 + + * - Variable Name + - Description + - Data Type + - Default Value + * - blocksize + - Number of columns in each ``block`` sent to the physics. OpenMP threading is done over the number of blocks. + For best performance this number should divide the number of grid cells per processor: + ``((npx-1)*(npy-1)/(layout\_x)*(layout\_y))``. A description of these variables is provided + `here `_. + - integer + - 1 + * - chksum_debug + - If true, compute checksums for all variables passed into the GFS physics, before and after each physics timestep. This is very useful for reproducibility checking. + - logical + - .false. + * - dycore_only + - If true, only the dynamical core (and not the GFS physics) is executed when running the model, + essentially running the model as a solo dynamical core. + - logical + - .false. + * - debug + - If true, turn on additional diagnostics for the atmospheric model. + - logical + - .false. + * - sync + - If true, initialize timing identifiers. + - logical + - .false. + * - fdiag + - Array with dimension ``maxhr`` = 4096 listing the diagnostic output times (in hours) for the GFS physics. + This can either be a list of times after initialization, or an interval if only the first entry is + nonzero. The default setting of 0 will result in no outputs. + - real + - 0. + * - fhmax + - The maximal forecast time for output. + - real + - 384.0 + * - fhmaxhf + - The maximal forecast hour for high frequency output. + - real + - 120.0 + * - fhout + - Output frequency during forecast time from 0 to ``fhmax``, or from ``fhmaxhf`` to ``fhmax`` if ``fhmaxf>0``. + - real + - 3.0 + * - fhouthf + - The high frequency output frequency during the forecast time from 0 to ``fhmaxhf`` hour. + - real + - 1.0 + * - ccpp_suite + - Name of the CCPP physics suite + - character(len=256) + - FV3_GFS_v15p2, set in ``build.sh`` + * - avg_max_length + - Forecast interval (in seconds) determining when the maximum values of diagnostic fields in FV3 + dynamics are computed. + - real + - 3600. + +A sample of this namelist is shown below: + +.. code-block:: console + + &atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + fdiag = 1 + fhmax = 384 + fhout = 3 + fhmaxhf = 120 + fhouthf = 1 + ccpp_suite = 'FV3_GFS_v16beta' + / + +The namelist section relating to the FMS diagnostic manager ``&diag_manager_nml`` is described in :numref:`Section %s `. diff --git a/doc/UsersGuide/source/InputsOutputs.rst b/doc/UsersGuide/source/InputsOutputs.rst new file mode 100644 index 0000000000..44f3b0f59a --- /dev/null +++ b/doc/UsersGuide/source/InputsOutputs.rst @@ -0,0 +1,719 @@ +.. _InputsOutputs: + +************************* +Inputs and Outputs +************************* + +This chapter describes the input and output files needed for executing the model in the various supported configurations. + +============= +Input files +============= + +There are three types of files needed to execute a run: static datasets (*fix* files containing climatological +information), files that depend on grid resolution and initial conditions, and model configuration files (such as namelists). + +------------------------------------ +Static datasets (i.e., *fix files*) +------------------------------------ +The static input files are listed and described in :numref:`Table %s `. + +.. _FixFiles: + +.. list-table:: *Fix files containing climatological information* + :widths: 40 50 + :header-rows: 1 + + * - Filename + - Description + * - aerosol.dat + - External aerosols data file + * - CFSR.SEAICE.1982.2012.monthly.clim.grb + - CFS reanalysis of monthly sea ice climatology + * - co2historicaldata_YYYY.txt + - Monthly CO2 in PPMV data for year YYYY + * - global_albedo4.1x1.grb + - Four albedo fields for seasonal mean climatology: 2 for strong zenith angle dependent (visible and near IR) + and 2 for weak zenith angle dependent + * - global_glacier.2x2.grb + - Glacier points, permanent/extreme features + * - global_h2oprdlos.f77 + - Coefficients for the parameterization of photochemical production and loss of water (H2O) + * - global_maxice.2x2.grb + - Maximum ice extent, permanent/extreme features + * - global_mxsnoalb.uariz.t126.384.190.rg.grb + - Climatological maximum snow albedo + * - global_o3prdlos.f77 + - Monthly mean ozone coefficients + * - global_shdmax.0.144x0.144.grb + - Climatological maximum vegetation cover + * - global_shdmin.0.144x0.144.grb + - Climatological minimum vegetation cover + * - global_slope.1x1.grb + - Climatological slope type + * - global_snoclim.1.875.grb + - Climatological snow depth + * - global_snowfree_albedo.bosu.t126.384.190.rg.grb + - Climatological snowfree albedo + * - global_soilmgldas.t126.384.190.grb + - Climatological soil moisture + * - global_soiltype.statsgo.t126.384.190.rg.grb + - Soil type from the STATSGO dataset + * - global_tg3clim.2.6x1.5.grb + - Climatological deep soil temperature + * - global_vegfrac.0.144.decpercent.grb + - Climatological vegetation fraction + * - global_vegtype.igbp.t126.384.190.rg.grb + - Climatological vegetation type + * - global_zorclim.1x1.grb + - Climatological surface roughness + * - RTGSST.1982.2012.monthly.clim.grb + - Monthly, climatological, real-time global sea surface temperature + * - seaice_newland.grb + - High resolution land mask + * - sfc_emissivity_idx.txt + - External surface emissivity data table + * - solarconstant_noaa_an.txt + - External solar constant data table + +--------------------------------------------- +Grid description and initial condition files +--------------------------------------------- +The input files containing grid information and the initial conditions are listed and described in :numref:`Table %s `. + +.. _GridICFiles: + +.. list-table:: *Input files containing grid information and initial conditions* + :widths: 35 50 15 + :header-rows: 1 + + * - Filename + - Description + - Date-dependent + * - C96_grid.tile[1-6].nc + - C96 grid information for tiles 1-6 + - + * - gfs_ctrl.nc + - NCEP NGGPS tracers, ak, and bk + - ✔ + * - gfs_data.tile[1-6].nc + - Initial condition fields (ps, u, v, u, z, t, q, O3). May include spfo3, spfo, spf02 if multiple gases are used + - ✔ + * - oro_data.tile[1-6].nc + - Model terrain (topographic/orographic information) for grid tiles 1-6 + - + * - sfc_ctrl.nc + - Control parameters for surface input: forecast hour, date, number of soil levels + - + * - sfc_data.tile[1-6].nc + - Surface properties for grid tiles 1-6 + - ✔ + +------------------------------------ +Model configuration files +------------------------------------ +The configuration files used by the UFS Weather Model are listed here and described below: + +- *diag_table* +- *field_table* +- *model_configure* +- *nems.configure* +- *suite_[suite_name].xml* (used only at build time) + +While the *input.nml* file is also a configuration file used by the UFS Weather Model, it is described in +:numref:`Section %s `. + + +*diag_table* file +------------------------------------ +There are three sections in file *diag_table*: Header (Global), File, and Field. These are described below. + +**Header Description** + +The Header section must reside in the first two lines of the *diag_table* file and contain the title and date +of the experiment (see example below). The title must be a Fortran character string. The base date is the +reference time used for the time units, and must be greater than or equal to the model start time. The base date +consists of six space-separated integers in the following format: ``year month day hour minute second``. Here is an example: + +.. code-block:: console + + 20161003.00Z.C96.64bit.non-mono + 2016 10 03 00 0 0 + +**File Description** + +The File Description lines are used to specify the name of the file(s) to which the output will be written. They +contain one or more sets of six required and five optional fields (optional fields are denoted by square brackets +``[ ]``). The lines containing File Descriptions can be intermixed with the lines containing Field Descriptions as +long as files are defined before fields that are to be written them. File entries have the following format: + +.. code-block:: console + + "file_name", output_freq, "output_freq_units", file_format, "time_axis_units", "time_axis_name" + [, new_file_freq, "new_file_freq_units"[, "start_time"[, file_duration, "file_duration_units"]]] + +These file line entries are described in :numref:`Table %s `. + +.. _FileDescription: + +.. list-table:: *Description of the six required and five optional fields used to define output file sampling rates.* + :widths: 20 25 55 + :header-rows: 1 + + * - File Entry + - Variable Type + - Description + * - file_name + - CHARACTER(len=128) + - Output file name without the trailing ".nc" + * - output_freq + - INTEGER + - | The period between records in the file_name: + | > 0 output frequency in output_freq_units. + | = 0 output frequency every time step (output_freq_units is ignored) + | =-1 output at end of run only (output_freq_units is ignored) + * - output_freq_units + - CHARACTER(len=10) + - The units in which output_freq is given. Valid values are “years”, “months”, “days”, “minutes”, “hours”, or “seconds”. + * - file_format + - INTEGER + - Currently only the netCDF file format is supported. = 1 netCDF + * - time_axis_units + - CHARACTER(len=10) + - The units to use for the time-axis in the file. Valid values are “years”, “months”, “days”, “minutes”, “hours”, + or “seconds”. + * - time_axis_name + - CHARACTER(len=128) + - Axis name for the output file time axis. The character string must contain the string 'time'. + (mixed upper and lowercase allowed.) + * - new_file_freq + - INTEGER, OPTIONAL + - Frequency for closing the existing file, and creating a new file in new_file_freq_units. + * - new_file_freq_units + - CHARACTER(len=10), OPTIONAL + - Time units for creating a new file: either years, months, days, minutes, hours, or seconds. + NOTE: If the new_file_freq field is present, then this field must also be present. + * - start_time + - CHARACTER(len=25), OPTIONAL + - Time to start the file for the first time. The format of this string is the same as the global date. + NOTE: The new_file_freq and the new_file_freq_units fields must be present to use this field. + * - file_duration + - INTEGER, OPTIONAL + - How long file should receive data after start time in file_duration_units. This optional field can only be + used if the start_time field is present. If this field is absent, then the file duration will be equal to the + frequency for creating new files. NOTE: The file_duration_units field must also be present if this field is present. + * - file_duration_units + - CHARACTER(len=10), OPTIONAL + - File duration units. Can be either years, months, days, minutes, hours, or seconds. NOTE: If the file_duration field + is present, then this field must also be present. + +**Field Description** + +The field section of the diag_table specifies the fields to be output at run time. Only fields registered +with ``register_diag_field()``, which is an API in the FMS ``diag_manager`` routine, can be used in the *diag_table*. + +Registration of diagnostic fields is done using the following syntax + +.. code-block:: console + + diag_id = register_diag_field(module_name, diag_name, axes, ...) + +in file ``FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90``. As an example, the sea level pressure is registered as: + +.. code-block:: console + + id_slp = register_diag_field (trim(field), 'slp', axes(1:2), & Time, 'sea-level pressure', 'mb', missing_value=missing_value, range=slprange ) + +All data written out by ``diag_manager`` is controlled via the *diag_table*. A line in the field section of the +*diag_table* file contains eight variables with the following format: + +.. code-block:: console + + "module_name", "field_name", "output_name", "file_name", "time_sampling", "reduction_method", "regional_section", packing + +These field section entries are described in :numref:`Table %s `. + +.. _FieldDescription: + +.. list-table:: *Description of the eight variables used to define the fields written to the output files.* + :widths: 16 24 55 + :header-rows: 1 + + * - Field Entry + - Variable Type + - Description + * - module_name + - CHARACTER(len=128) + - Module that contains the field_name variable. (e.g. dynamic, gfs_phys, gfs_sfc) + * - field_name + - CHARACTER(len=128) + - The name of the variable as registered in the model. + * - output_name + - CHARACTER(len=128) + - Name of the field as written in file_name. + * - file_name + - CHARACTER(len=128) + - Name of the file where the field is to be written. + * - time_sampling + - CHARACTER(len=50) + - Currently not used. Please use the string "all". + * - reduction_method + - CHARACTER(len=50) + - The data reduction method to perform prior to writing data to disk. Current supported option is .false.. See ``FMS/diag_manager/diag_table.F90`` for more information. + * - regional_section + - CHARACTER(len=50) + - Bounds of the regional section to capture. Current supported option is “none”. See ``FMS/diag_manager/diag_table.F90`` for more information. + * - packing + - INTEGER + - Fortran number KIND of the data written. Valid values: 1=double precision, 2=float, 4=packed 16-bit integers, 8=packed 1-byte (not tested). + +Comments can be added to the diag_table using the hash symbol (``#``). + +A brief example of the diag_table is shown below. ``“...”`` denote where lines have been removed. + +.. code-block:: console + + 20161003.00Z.C96.64bit.non-mono + 2016 10 03 00 0 0 + + "grid_spec", -1, "months", 1, "days", "time" + "atmos_4xdaily", 6, "hours", 1, "days", "time" + "atmos_static" -1, "hours", 1, "hours", "time" + "fv3_history", 0, "hours", 1, "hours", "time" + "fv3_history2d", 0, "hours", 1, "hours", "time" + + # + #======================= + # ATMOSPHERE DIAGNOSTICS + #======================= + ### + # grid_spec + ### + "dynamics", "grid_lon", "grid_lon", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lat", "grid_lat", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lont", "grid_lont", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_latt", "grid_latt", "grid_spec", "all", .false., "none", 2, + "dynamics", "area", "area", "grid_spec", "all", .false., "none", 2, + ### + # 4x daily output + ### + "dynamics", "slp", "slp", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "vort850", "vort850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "vort200", "vort200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "us", "us", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u1000", "u1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u850", "u850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u700", "u700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u500", "u500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u200", "u200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u100", "u100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u50", "u50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u10", "u10", "atmos_4xdaily", "all", .false., "none", 2 + + ... + ### + # gfs static data + ### + "dynamics", "pk", "pk", "atmos_static", "all", .false., "none", 2 + "dynamics", "bk", "bk", "atmos_static", "all", .false., "none", 2 + "dynamics", "hyam", "hyam", "atmos_static", "all", .false., "none", 2 + "dynamics", "hybm", "hybm", "atmos_static", "all", .false., "none", 2 + "dynamics", "zsurf", "zsurf", "atmos_static", "all", .false., "none", 2 + ### + # FV3 variables needed for NGGPS evaluation + ### + "gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 + "gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 + "gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 + "gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 + ... + "gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 + "gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 + "gfs_phys", "cnvprcpb_ave", "cpratb_ave","fv3_history2d", "all", .false., "none", 2 + "gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 + ... + "gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 + "gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 + "gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 + "gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 + "gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 + ... + +More information on the content of this file can be found in ``FMS/diag_manager/diag_table.F90``. + +.. note:: None of the lines in the *diag_table* can span multiple lines. + +*field_table* file +------------------------------------ +The FMS field and tracer managers are used to manage tracers and specify tracer options. All tracers +advected by the model must be registered in an ASCII table called *field_table*. The field table consists +of entries in the following format: + +The first line of an entry should consist of three quoted strings: + - The first quoted string will tell the field manager what type of field it is. The string ``“TRACER”`` is used to + declare a field entry. + - The second quoted string will tell the field manager which model the field is being applied to. The supported + type at present is ``“atmos_mod”`` for the atmosphere model. + - The third quoted string should be a unique tracer name that the model will recognize. + +The second and following lines are called ``methods``. These lines can consist of two or three quoted strings. +The first string will be an identifier that the querying module will ask for. The second string will be a name +that the querying module can use to set up values for the module. The third string, if present, can supply +parameters to the calling module that can be parsed and used to further modify values. + +An entry is ended with a forward slash (/) as the final character in a row. Comments can be inserted in the field table by having a hash symbol (#) as the first character in the line. + +Below is an example of a field table entry for the tracer called ``“sphum”``: + +.. code-block:: console + + # added by FRE: sphum must be present in atmos + # specific humidity for moist runs + "TRACER", "atmos_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=3.e-6" / + +In this case, methods applied to this tracer include setting the long name to "specific humidity", the units +to "kg/kg". Finally a field named "profile_type" will be given a child field called "fixed", and that field +will be given a field called "surface_value" with a real value of 3.E-6. The “profile_type” options are listed +in :numref:`Table %s `. If the profile type is “fixed” then the tracer field values are set equal +to the surface value. If the profile type is “profile” then the top/bottom of model and surface values are read +and an exponential profile is calculated, with the profile being dependent on the number of levels in the component model. + +.. _TracerTable: + +.. list-table:: *Tracer profile setup from FMS/tracer_manager/tracer_manager.F90.* + :widths: 20 25 55 + :header-rows: 1 + + * - Method Type + - Method Name + - Method Control + * - profile_type + - fixed + - surface_value = X + * - profile_type + - profile + - surface_value = X, top_value = Y (atmosphere) + +For the case of + +.. code-block:: console + + "profile_type","profile","surface_value = 1e-12, top_value = 1e-15" + +in a 15 layer model this would return values of surf_value = 1e-12 and multiplier = 0.6309573, i.e 1e-15 = 1e-12*(0.6309573^15). + +A ``method`` is a way to allow a component module to alter the parameters it needs for various tracers. In essence, +this is a way to modify a default value. A namelist can supply default parameters for all tracers and a method, as +supplied through the field table, will allow the user to modify the default parameters on an individual tracer basis. +The lines in this file can be coded quite flexibly. Due to this flexibility, a number of restrictions are required. +See ``FMS/field_manager/field_manager.F90`` for more information. + + +*model_configure* file +------------------------------------ + +This file contains settings and configurations for the NUOPC/ESMF main component, including the simulation +start time, the processor layout/configuration, and the I/O selections. :numref:`Table %s ` +shows the following parameters that can be set in *model_configure* at run-time. + +.. _ModelConfigParams: + +.. list-table:: *Parameters that can be set in model_configure at run-time.* + :widths: 20 30 15 20 + :header-rows: 1 + + * - Parameter + - Meaning + - Type + - Default Value + * - print_esmf + - flag for ESMF PET files + - logical + - .true. + * - PE_MEMBER01 + - total number of tasks for ensemble number 1 + - integer + - 150 (for c96 with quilt) + * - start_year + - start year of model integration + - integer + - 2019 + * - start_month + - start month of model integration + - integer + - 09 + * - start_day + - start day of model integration + - integer + - 12 + * - start_hour + - start hour of model integration + - integer + - 00 + * - start_minute + - start minute of model integration + - integer + - 0 + * - start_second + - start second of model integration + - integer + - 0 + * - nhours_fcst + - total forecast length + - integer + - 48 + * - dt_atmos + - atmosphere time step in second + - integer + - 1800 (for C96) + * - output_1st_tstep_rst + - output first time step history file after restart + - logical + - .false. + * - memuse_verbose + - flag for printing out memory usage + - logical + - .false. + * - atmos_nthreads + - number of threads for atmosphere + - integer + - 4 + * - restart_interval + - frequency to output restart file + - integer + - 0 (write restart file at the end of integration) + * - quilting + - flag to turn on quilt + - logical + - .true. + * - write_groups + - total number of groups + - integer + - 2 + * - write_tasks_per_group + - total number of write tasks in each write group + - integer + - 6 + * - output_history + - flag to output history files + - logical + - .true. + * - num_files + - number of output files + - integer + - 2 + * - filename_base + - file name base for the output files + - character(255) + - 'atm' 'sfc' + * - output_grid + - output grid + - character(255) + - gaussian_grid + * - output_file + - output file format + - character(255) + - nemsio + * - imo + - i-dimension for output grid + - integer + - 384 + * - jmo + - j-dimension for output grid + - integer + - 190 + * - nfhout + - history file output frequency + - integer + - 3 + * - nfhmax_hf + - forecast length of high history file + - integer + - 0 (0:no high frequency output) + * - nfhout_hf + - high history file output frequency + - integer + - 1 + * - nsout + - output frequency of number of time step + - integer + - -1 (negative: turn off the option, 1: output history file at every time step) + +:numref:`Table %s ` shows the following parameters in *model_configure* that +are not usually changed. + +.. _ModelConfigParamsNotChanged: + +.. list-table:: *Parameters that are not usually changed in model_configure at run-time.* + :widths: 20 30 15 20 + :header-rows: 1 + + * - Parameter + - Meaning + - Type + - Default Value + * - total_member + - total number of ensemble member + - integer + - 1 + * - RUN_CONTINUE + - Flag for more than one NEMS run + - logical + - .false. + * - ENS_SPS + - flag for the ensemble stochastic coupling flag + - logical + - .false. + * - calendar + - type of calendar year + - character(*) + - 'gregorian' + * - fhrot + - forecast hour at restart for nems/earth grid component clock in coupled model + - integer + - 0 + * - cpl + - flag for coupling with MOM6/CICE5 + - logical + - .false. + * - write_dopost + - flag to do post on write grid component + - logical + - .false. + * - ideflate + - lossless compression level + - integer + - 1 (0:no compression, range 1-9) + * - nbits + - lossy compression level + - integer + - 14 (0: lossless, range 1-32) + * - write_nemsioflip + - flag to flip the vertical level for nemsio file + - logical + - .true. + * - write_fsyncflag + - flag to check if a file is synced to disk + - logical + - .true. + * - iau_offset + - IAU offset lengdth + - integer + - 0 + +*nems.configure* file +------------------------------------ +This file contains information about the various NEMS components and their run sequence. In the current release, +this is an atmosphere-only model, so this file is simple and does not need to be changed. A sample of the file contents is below: + +.. code-block:: console + + EARTH_component_list: ATM + ATM_model: fv3 + runSeq:: + ATM + :: + +*The SDF (Suite Definition File) file* +--------------------------------------- +There are two SDFs currently supported: *suite_FV3_GFS_v15p2.xml* and *suite_FV3_GFS_v16beta.xml*. + +.. ------------------------------------------------------------------- +.. Include InputNML file describing the contents of the input.nml file +.. ------------------------------------------------------------------- + +.. include:: InputNML.inc + +============= +Output files +============= + +The following files are output when running *fv3.exe* in the default configuration (six files of each kind, +corresponding to the six tiles of the model grid): + +- *atmos_4xdaily.tile[1-6].nc* +- *atmos_static.tile[1-6].nc* +- *sfcfHHH.nc* +- *atmfHHH.nc* +- *grid_spec.tile[1-6].nc* + +Note that the sfcf* and atmf* files are not output on the 6 tiles, but instead as a single global gaussian grid file. The specifications of the output files (type, projection, etc) may be overridden in the *model_configure* input file. + +Standard output files are *logf???*, and out and err as specified by the job submission. ESMF may also produce log +files (controlled by variable print_esmf in the *model_configure* file), called *PET???.ESMF_LogFile*. + +============================================================== +Additional Information about the FMS Diagnostic Manager +============================================================== + +The UFS Weather Model output is managed through the FMS (Flexible Modeling System) diagnostic manager (``FMS/diag_manager``) +and is configured using the *diag_table* file. Data can be written at any number of sampling and/or averaging intervals +specified at run-time. More information about the FMS diagnostic manager can be found at: +https://data1.gfdl.noaa.gov/summer-school/Lectures/July16/03_Seth1_DiagManager.pdf + +.. _DiagManagerNML: + +------------------------------ +Diagnostic Manager namelist +------------------------------ +The ``diag_manager_nml`` namelist contains values to control the behavior of the diagnostic manager. Some +of the more common namelist options are described in :numref:`Table %s `. See +``FMS/diag_manager/diag_manager.F90`` for the complete list. + +.. _DiagManager: + +.. list-table:: *Namelist variables used to control the behavior of the diagnostic manager.* + :widths: 15 10 30 10 + :header-rows: 1 + + * - Namelist variable + - Type + - Description + - Default value + * - max_files + - INTEGER + - Maximum number of files allowed in diag_table + - 31 + * - max_output_fields + - INTEGER + - Maximum number of output fields allowed in diag_table + - 300 + * - max_input_fields + - INTEGER + - Maximum number of registered fields allowed + - 300 + * - prepend_date + - LOGICAL + - Prepend the file start date to the output file. .TRUE. is only supported if the diag_manager_init routine is called with the optional time_init parameter. + - .TRUE. + * - do_diag_field_log + - LOGICAL + - Write out all registered fields to a log file + - .FALSE. + * - use_cmor + - LOGICAL + - Override the missing_value to the CMOR value of -1.0e20 + - .FALSE. + * - issue_oor_warnings + - LOGICAL + - Issue a warning if a value passed to diag_manager is outside the given range + - .TRUE. + * - oor_warnings_fatal + - LOGICAL + - Treat out-of-range errors as FATAL + - .FALSE. + * - debug_diag_manager + - LOGICAL + - Check if the diag table is set up correctly + - .FALSE. + +This release of the UFS Weather Model uses the following namelist: + +.. code-block:: console + + &diag_manager_nml + prepend_date = .false. + / diff --git a/doc/UsersGuide/source/Introduction.rst b/doc/UsersGuide/source/Introduction.rst new file mode 100644 index 0000000000..35c7f233d4 --- /dev/null +++ b/doc/UsersGuide/source/Introduction.rst @@ -0,0 +1,118 @@ +.. _Introduction: + +************************* +Introduction +************************* + +The Unified Forecast System (:term:`UFS`) :term:`Weather Model` (WM) is a prognostic model that can be +used for short- and medium-range research and operational forecasts, as exemplified by +its use in the operational Global Forecast System (GFS) of the National Oceanic and +Atmospheric Administration (NOAA). The UFS WM v1.1 is the latest public release of this +software and represents a snapshot of a continuously evolving system undergoing open +development. More information about the UFS can be found in its portal at https://ufscommunity.org/. + +Key architectural elements of the UFS WM, along with links to external detailed documentation +for those elements, are listed below: + +- `The Finite-Volume Cubed-Sphere (FV3) dynamical core `_. + +- `The Flexible Modeling System `_ (:term:`FMS`), a software infrastructure used for functions such as + parallelization. + +- `The Common-Community Physics Package `_ (:term:`CCPP`), a library of + physical parameterizations and the framework to use it with the model. :term:`Parameterization or physics scheme` is defined here. + +- `The stochastic physics capability `_, including the Stochastic Kinetic Backscatter Scheme (SKEBS), + the Stochastically Perturbed Parameterization Tendencies (SPPT) scheme, the perturbed boundary + layer humidity (SHUM) scheme, and the cellular automata method. + +- `The NOAA Environmental Modeling System `_ (:term:`NEMS`) model driver used to create the main program. + +- The libraries needed to build the system, such as: + - `National Centers for Environmental Prediction (NCEP) Libraries `_ + - `Earth System Modeling Framework (ESMF) `_ + - `External libraries `_ + +- The build system used to compile the code and generate the executable. + +- The regression tests used to maintain software integrity as innovations are added. + +For the UFS WM v1.1 release, the following aspects are supported: + +- Global configuration with resolutions of C96 (~100 km), C192 (~50 km), C384 (25 km), and C768 (~13 km) + +- Sixty-four vertical levels at predetermined locations. + +- Four physics suites (:term:`suite`), corresponding to GFS v15.2 (operational at the time of the release) and + GFS v16beta (October 2019 version, in preparation for operational implementation in 2021). Variants + with and without prediction of Sea Surface Temperature (SST) are included. + +- Ability to run with or without SKEBS, SPPT, and SHUM. + +- Ability to initialize from GFS files in Gridded Binary v2 (GRIB2), NEMS Input/Output (NEMSIO), or + Network Common Data Form (netCDF) format for past dates, starting January 1, 2018, when the + preprocessing utility chgres_cube is employed. Dates before that may work, but are not guaranteed. + +- Output files in Network Common Data Form (NetCDF) format. + +The GFS_v15p2 physics suite uses the following physical parameterizations: the +Simplified Arakawa Schubert shallow and deep convective schemes, the Geophysical +Fluid Dynamics Laboratory (GFDL) microphysics scheme, the Noah Land Surface Model (LSM), +the Rapid Radiative Transfer Model for Global Circulation Models (RRTMG) radiation scheme, +the hybrid eddy-diffusivity mass-flux (EDMF) planetary boundary layer (PBL) scheme based on the Smagorinsky K theory, +an orographic gravity wave drag (GWD) parameterization, and the Near SST (NSST) ocean scheme to predict SST. +In the GFS_v16beta suite, a moist TKE-based EDMF scheme replaces the K-based one and a non-stationary GWD parameterization is added. +The GFS_v15p2_no_nsst and the GFS_v16beta_no_nsst suites use a simple ocean scheme instead of the NSST scheme. +This simple ocean scheme keeps the SST constant throughout the forecast and is recommended for use when the initial +conditions do not contain all fields needed to initialize the NSST scheme. + + +Even when using physics suite GFS_v15p2, the UFS WM v1.1 differs from the operational GFS v15.2 in a few ways. First, the public release code +reflects the state of development as of the fall of 2019, +and therefore the parameterizations contain innovations beyond what is in GFSv15.2 operations. +For example, the GFDL microphysics distributed for use in GFS v15.2 and GFS v16beta +is the same scheme and contains development beyond what was transitioned to operations +for GFS v15 in June 2019. Second, the public release code uses the CCPP as the +interface for calling physics, while in operations the Interoperable Physics Driver +(IPD) is used. NOAA is currently working toward phasing out the IPD from UFS applications. +Validation tests demonstrated that CCPP and IPD give bit-for-bit identical results +when the same physics is employed and selected performance flags are excluded at +compilation time. When performance compiler flags employed in operational production are used, runs with +CCPP and IPD for the same physics suite yield differences comparable to running +the model in different computational platforms. Finally, the operational GFS +runs in NOAA Central Operations computational platforms. When users run the model +in different platforms, the results will differ. + +It should also be noted that further changes are expected to the GFS v16 suite before it is implemented in operations in 2021. + +The UFS WM v1 code is portable and can be used with Linux and Mac operating systems with Intel and GNU compilers. It has been tested in a variety of platforms widely used by atmospheric scientists, such as the NOAA research Hera system, the National Center for Atmospheric Research (NCAR) Cheyenne system, the National Science Foundation Stampede system, and Mac laptops. + +.. note:: + + At this time, the following aspects are unsupported: standalone regional domains, configurations in which a mediator is used to couple the atmospheric model to models of other earth domains (such as ocean, ice, and waves), horizontal resolutions other than the supported ones, different number or placement of vertical levels, physics suites other than GFS v15.2 and GFS v16beta, the *cellular automata* stochastic scheme, initialization from sources other than GFS, the use of different file formats for input and output, and the use of the model in different computational platforms. It is expected that the UFS WM supported capabilities will be expanded in future releases. + +It should be noted that the UFS WM is a component of the UFS Medium-Range (MR) Weather Application (App), which also contains pre- and post-processing components, a comprehensive build system, and workflows for configuration and execution of the application. At this time, the UFS WM is only supported to the general community for use as part of the UFS MR Weather App. However, those wishing to contribute development to the UFS WM should become familiar with the procedures for running the model as a standalone component and for executing the regression tests described in the UFS WM GitHub `wiki `_ to make sure no inadvertent changes to the results have been introduced during the development process. + +Support for the UFS WM is provided through the `UFS Forum `_ by the Developmental Testbed Center (DTC) and other groups involved in UFS development, such as NOAA’s Environmental Modeling Center (EMC), NOAA research laboratories (GFDL, NSSL, ESRL, and AOML), and NCAR. UFS users and developers are encouraged not only to post questions, but also to help address questions posted by other members of the community. + +This WM User’s Guide is organized as follows: + +- :numref:`Chapter %s ` (Code Overview) provides a description of the various + code repositories from which source code is pulled and an overview of the directory structure. + +- :numref:`Chapter %s ` (Building and Running the WM) explains how to use the WM without an application. + +- :numref:`Chapter %s ` (Inputs and Outputs) lists the model inputs and outputs + and has a description of the key files. + +- :numref:`Chapter %s ` (SDF and namelist samples and best practices) + contains a description of the :term:`Suite Definition File (SDF)` and namelists needed to configure the model + for running with the GFS v15.2 and GFS v16beta physics suites. + +- :numref:`Chapter %s ` (FAQ) lists frequently asked questions and answers. + +Finally, :numref:`Chapters %s ` and :numref:`%s ` contain a list of acronyms and a glossary, respectively. + +.. This is how you cite a reference :cite:`Bernardet2018`. + +.. bibliography:: references.bib diff --git a/doc/UsersGuide/source/SDFandNamelistExamplePractices.rst b/doc/UsersGuide/source/SDFandNamelistExamplePractices.rst new file mode 100644 index 0000000000..942135a32d --- /dev/null +++ b/doc/UsersGuide/source/SDFandNamelistExamplePractices.rst @@ -0,0 +1,255 @@ +.. _SDFandNamelistExamplePractices: + +******************************************** +SDF and Namelist Samples and Best Practices +******************************************** + +The public release of the UFS MR Weather App includes four supported physics suites: +GFS_v15p2, GFS_v15p2_no_nsst, GFS_v16beta, and GFS_v16beta_no_nsst. You will +find the Suite Definition Files (SDFs) for these suites in + +https://github.com/NOAA-EMC/fv3atm/tree/ufs-v1.1.0/ccpp/suites + +(no other SDFs are available with this release). You will find the namelists for the C96 configuration here: + +https://github.com/ufs-community/ufs-weather-model/tree/ufs-v1.1.0/parm/ccpp_v15p2_c96.nml.IN + +and + +https://github.com/ufs-community/ufs-weather-model/tree/ufs-v1.1.0/parm/ccpp_v16beta_c96.nml.IN + +As noted in the file names, these namelists are for the operational (v15p2) and developmental (v16beta) +GFS suites. Each of these namelists are relevant to the suites with and without the SST prediction scheme, that is, +they are relevant for the suite that employs NSST and for the suite that employs the simple ocean +model (`no_nsst`). The only difference in the namelist regarding how SST prediction is +addressed is variable `nstf_name`. For more information about this variable and for information about +namelist options for higher resolution configurations, please consult the +`CCPP v4.1.0 Scientific Documentation `_. + +The four CCPP suites for the UFS MR Weather App release are supported in four grid resolutions: +C96, C192, C384, and C768, with 64 vertical levels. + +An in depth description of the namelist settings, SDFs, and parameterizations used +in all supported suites can be found in the `CCPP v4.1.0 Scientific Documentation `_. +Note both suites do not +use stochastic physics by default, but the stochastic physics can be activated following the +instructions described in the `stochastic physics v1.1 user's guide `_. + +Both the SDF and the *input.nml* contain information about how to specify the physics suite. +Some of this information is redundant, and the user must make sure they are compatible. The +safest practice is to use the SDF and namelist provided for each suite, since those are +supported configurations. + +Changes to the SDF must be accompanied by corresponding changes to the namelist. While there +is not a one-to-one correspondence between the namelist and the SDF, :numref:`Table %s ` +shows some variables in the namelist that must match the SDF. + +.. _PBLVarOptions: + +.. list-table:: *Variables related to PBL options* + :widths: 15 30 10 10 20 30 + :header-rows: 1 + + * - Namelist option + - Meaning + - Possible Values + - Default + - Used with CCPP scheme + - Recommentation + * - + - **PBL-related variables** + - + - + - + - + * - do_myjpbl + - Flag to activate the MYJ PBL scheme + - T + - F + - mypbl_wrapper + - Set to F for GFSv15p2* and GFSv16beta* + * - do_myjsfc + - Flag to activate the MYJ PBL surface layer scheme + - T, F + - F + - myjsfc_wrapper + - Set to F for GFSv15p2* and GFSv16beta* + * - do_mynnedmf + - Flag to activate the MYNN-EDMF scheme + - T, F + - F + - mynnedmf_wrapper + - Set to F for GFSv15p2* and GFSv16beta* + * - do_ysu + - Flag to activate the YSU PBL scheme + - T, F + - F + - ysudif + - Set to F for GFSv15p2* and GFSv16beta* + * - hybedmf + - Flag to activate the K-based PBL scheme + - T, F + - F + - hedmf + - Set to T for GFSv15p2* and GFSv16beta* + * - isatedmf + - Flag for version of scale-aware TKE-based EDMF scheme + - 0, 1 + - 0 + - 0=satmedmfvdif, 1=satmedmfvdifq + - Set to 0 for GFSv15p2* and 1 for GFSv16beta* + * - ism + - Flag to choose a land surface model to use + - 0, 1, 2 + - 1 + - 1=lsm_noah, 2=lsm_ruc + - Set to 1 for GFSv15p2* and GFSv16beta* + * - satedmf + - Flag to activate the scale-aware TKE-based EDMF scheme + - T, F + - F + - satmedmfvdif or satmedmfvdifq + - Set to T for GFSv15p2* and GFSv16beta* + * - shinhong + - Flag to activate the Shin-Hong PBL parameterization + - T, F + - F + - shinhongdif + - Set to F for GFSv15p2* and GFSv16beta* + * - + - **Convection-releated flags** + - + - + - + - + * - cscnv + - Flag to activate the Chikira-Sugiyama deep convection scheme + - T, F + - F + - cs_conv + - Set to F for GFSv15p2* and GFSv16beta* + * - do_aw + - Flag to activate the Arakawa-Wu extension to the Chikira-Sugiyama deep convection scheme + - T, F + - F + - cs_conv_aw_adj + - Set to F for GFSv15p2* and GFSv16beta* + * - imfdeepcnv + - Flag to choose a mass flux deep convective scheme + - -1, 2, 3, 4 + - -1 + - -1=no deep convection*, 2=samfshalcnv, 3=cu_gf_driver, 4=cu_ntiedtke + - Set to 2 for GFSv15p2* and GFSv16beta* + * - imfshalcvn + - Flag to choose a mass flux shallow convective scheme + - -1, 2, 3, 4 + - -1 + - -1=no deep convection*, 2=samfshalcnv, 3=cu_gf_driver, 4=cu_ntiedtke + - Set to 2 for GFSv15p2* and GFSv16beta* + +\*Even when imfdeepcvn=-1, the Chikira-Sugiyama deep convection scheme may be specified using cscnv=T. + +Other miscellaneous changes to the SDF that must be accompanied by corresponding changes in +the namelist are listed in :numref:`Table %s `. + +.. _MiscVarOptions: + +.. list-table:: *Miscellaneous namelist variables and their relation to the SDF* + :widths: 15 30 10 10 20 30 + :header-rows: 1 + + * - Namelist option + - Meaning + - Possible Values + - Default + - Used with CCPP scheme + - Recommendation + * - + - **Miscellaneous variables** + - + - + - + - + * - do_myjsfc + - Flag to activate the MYJ PBL surface scheme + - T, F + - F + - mynnsfc_wrapper + - Set to F for GFSv15p2* and GFSv16beta* + * - do_shoc + - Flag to activate the Simplified Higher-Order Closure (SHOC) parameterization + - T, F + - F + - shoc + - Set to F for GFSv15p2* and GFSv16beta* + * - do_ugwp** + - Flag to activate the unified Gravity Wave Physics parameterization + - T, F + - F + - cires_ugwp + - Set to F for GFSv15p2* and GFSv16beta* + * - imp_physics + - Flag to choose a microphysics scheme + - 8, 10, 11 + - 99 + - 8=mp_thompson, 10=m_micro, 11=gfdl_cloud_microphysics + - Set to 11 for GFSv15p2* and GFSv16beta* + * - lsm + - Flag to choose a land surface model to use + - 0, 1, 2 + - 1 + - 1=lsm_noah, 2=lsm_ruc + - Set to 1 for GFSv15p2* and GFSv16beta* + * - lsoil + - Number of soil layers + - 4, 9 + - 4 + - 4 for lsm_noah, 9 for lsm_ruc + - Set to 4 for GFSv15p2* and GFSv16beta* + * - h2o_phys + - Flag for stratosphere h2o scheme + - T, F + - + - h2ophys + - Set to T for GFSv15p2* and GFSv16beta* + * - oz_phys_2015 + - Flag for new (2015) ozone physics + - T, F + - + - ozphys_2015 + - Set to T for GFSv15p2* and GFSv16beta* + +\*\*The CIRES Unified Gravity Wave Physics (cires_ugwp) scheme is used in GFSv15p2* and GFSv16beta* SDFs with do_ugwp=F in the namelist. In this setting, the cires_ugwp calls the operational GFS v15.2 orographic gravity wave drag (gwdps) scheme. When do_ugwp=T, the cires_ugwp scheme calls an experimental orographic gravity wave (gwdps_v0). + +**Note that some namelist variables are not available for use with CCPP.** + + * **do_deep**. In order to disable deep convection, it is necessary to remove the deep convection scheme from the SDF. + * **shal_cnv**. In order to disable shallow convection, it is necessary to remove the deep convection scheme from the SDF. + * **ldiag3d** and **ldiag_ugwp**. Must be F for CCPP runs. + * **gwd_opt**. Ignored in CCPP-supported suites. + +**When certain parameterizations are turned on, additional namelist options can be used (they are ignored otherwise). +Some examples are shown in** :numref:`Table %s `. + +.. _EnabledNMLOptions: + +.. list-table:: *Enabled namelist variables* + :widths: 10 50 + :header-rows: 1 + + * - Namelist setting + - Enabled namelist variables + * - do_ugwp=T + - All variables in namelist record &cires_ugwp_nml plus do_tofd. Additionally, if namelist variable cnvgwd=T and + the third and fourth position of namelist array cdmbgwd are both 1, then the convective gravity wave drag that + is part of cires_ugwp will be called. (Not supported with the UFS) + * - do_mynnedmf=T + - bl_mynn_tkeadvect, bl_mynn_edmf, bl_mynn_edmf_mom (Not supported with the UFS) + * - imp_physics=99 + - psautco and prautco (Not supported with the UFS) + * - imp_physics=10 + - mg_* (Not supported with UFS) + * - imp_physics=11 + - All variables in namelist record gfdl_cloud_microphysics_nml and lgfdlmprad + * - satedmf=T + - isatedmf diff --git a/doc/UsersGuide/source/_static/README b/doc/UsersGuide/source/_static/README new file mode 100644 index 0000000000..0e27faf91a --- /dev/null +++ b/doc/UsersGuide/source/_static/README @@ -0,0 +1 @@ +This directory contains custom stylesheets and other static files. diff --git a/doc/UsersGuide/source/_templates/README b/doc/UsersGuide/source/_templates/README new file mode 100644 index 0000000000..99eef870b6 --- /dev/null +++ b/doc/UsersGuide/source/_templates/README @@ -0,0 +1 @@ +This directory contains custom HTML templates. diff --git a/doc/UsersGuide/source/conf.py b/doc/UsersGuide/source/conf.py new file mode 100644 index 0000000000..aaa1ab70d9 --- /dev/null +++ b/doc/UsersGuide/source/conf.py @@ -0,0 +1,205 @@ +# -*- coding: utf-8 -*- +# +# Configuration file for the Sphinx documentation builder. +# +# This file does only contain a selection of the most common options. For a +# full list see the documentation: +# http://www.sphinx-doc.org/en/master/config + +# -- Path setup -------------------------------------------------------------- + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +# +import os +import sys +sys.path.insert(0, os.path.abspath('.')) + + +# -- Project information ----------------------------------------------------- + +project = 'UFS Weather Model Users Guide' +copyright = '2020' +author = ' ' + +# The short X.Y version +version = '' +# The full version, including alpha/beta/rc tags +release = '' + +numfig = True + + +# -- General configuration --------------------------------------------------- + +# If your documentation needs a minimal Sphinx version, state it here. +# +# needs_sphinx = '1.0' + +# Add any Sphinx extension module names here, as strings. They can be +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom +# ones. +extensions = [ + 'sphinx.ext.autodoc', + 'sphinx.ext.doctest', + 'sphinx.ext.intersphinx', + 'sphinx.ext.todo', + 'sphinx.ext.coverage', + 'sphinx.ext.mathjax', + 'sphinx.ext.ifconfig', + 'sphinx.ext.viewcode', + 'sphinx.ext.githubpages', + 'sphinx.ext.napoleon', + 'sphinxcontrib.bibtex' +] + +# Add any paths that contain templates here, relative to this directory. +templates_path = ['_templates'] + +# The suffix(es) of source filenames. +# You can specify multiple suffix as a list of string: +# +# source_suffix = ['.rst', '.md'] +source_suffix = '.rst' + +# The master toctree document. +master_doc = 'index' + +# The language for content autogenerated by Sphinx. Refer to documentation +# for a list of supported languages. +# +# This is also used if you do content translation via gettext catalogs. +# Usually you set "language" from the command line for these cases. +language = None + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +# This pattern also affects html_static_path and html_extra_path. +exclude_patterns = [] + +# The name of the Pygments (syntax highlighting) style to use. +pygments_style = None + + +# -- Options for HTML output ------------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +# +html_theme = 'classic' + +# Theme options are theme-specific and customize the look and feel of a theme +# further. For a list of options available for each theme, see the +# documentation. +# +# html_theme_options = {} +html_theme_options = {"body_max_width": "none"} + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = ['_static'] + +def setup(app): + app.add_stylesheet('custom.css') # may also be an URL + +# Custom sidebar templates, must be a dictionary that maps document names +# to template names. +# +# The default sidebars (for documents that don't match any pattern) are +# defined by theme itself. Builtin themes are using these templates by +# default: ``['localtoc.html', 'relations.html', 'sourcelink.html', +# 'searchbox.html']``. +# +# html_sidebars = {} + + +# -- Options for HTMLHelp output --------------------------------------------- + +# Output file base name for HTML help builder. +htmlhelp_basename = 'UFS-Weather-Model' + + +# -- Options for LaTeX output ------------------------------------------------ + +latex_engine = 'pdflatex' +latex_elements = { + # The paper size ('letterpaper' or 'a4paper'). + # + # 'papersize': 'letterpaper', + + # The font size ('10pt', '11pt' or '12pt'). + # + # 'pointsize': '10pt', + + # Additional stuff for the LaTeX preamble. + # + # 'preamble': '', + + # Latex figure (float) alignment + # + # 'figure_align': 'htbp', + # 'maketitle': r'\newcommand\sphinxbackoftitlepage{For referencing this document please use: \newline \break Schramm, J., L. Bernardet, L. Carson, G. Firl, D. Heinzeller, L. Pan, and M. Zhang, 2020. UFS Weather Model User's Guide Release v1.0.0. Npp. Available at https://dtcenter.org.}\sphinxmaketitle' +} + +# Grouping the document tree into LaTeX files. List of tuples +# (source start file, target name, title, +# author, documentclass [howto, manual, or own class]). +latex_documents = [ + (master_doc, 'UFS_WM_Users_Guide.tex', 'UFS Weather Model Users Guide', + author,'manual'), +] + + +# -- Options for manual page output ------------------------------------------ + +# One entry per manual page. List of tuples +# (source start file, name, description, authors, manual section). +man_pages = [ + (master_doc, 'UFS_WM_Users_Guide', 'UFS Weather Model Users Guide', + [author], 1) +] + + +# -- Options for Texinfo output ---------------------------------------------- + +# Grouping the document tree into Texinfo files. List of tuples +# (source start file, target name, title, author, +# dir menu entry, description, category) +texinfo_documents = [ + (master_doc, 'UFS_WM_Users_guide', 'UFS Weather Model Users Guide', + author, 'UFS_WM_Users_Guide', 'One line description of project.', + 'Miscellaneous'), +] + + +# -- Options for Epub output ------------------------------------------------- + +# Bibliographic Dublin Core info. +epub_title = project + +# The unique identifier of the text. This can be a ISBN number +# or the project homepage. +# +# epub_identifier = '' + +# A unique identification for the text. +# +# epub_uid = '' + +# A list of files that should not be packed into the epub file. +epub_exclude_files = ['search.html'] + + +# -- Extension configuration ------------------------------------------------- + +# -- Options for intersphinx extension --------------------------------------- + +# Example configuration for intersphinx: refer to the Python standard library. +intersphinx_mapping = {'https://docs.python.org/': None} + +# -- Options for todo extension ---------------------------------------------- + +# If true, `todo` and `todoList` produce output, else they produce nothing. +todo_include_todos = True diff --git a/doc/UsersGuide/source/index.rst b/doc/UsersGuide/source/index.rst new file mode 100644 index 0000000000..8100ee51c1 --- /dev/null +++ b/doc/UsersGuide/source/index.rst @@ -0,0 +1,20 @@ +.. UFS Weather Model Users Guide, created by + sphinx-quickstart on Tue Oct 29 09:07:29 2019. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Welcome to the UFS Weather Model User's Guide +======================================================== + +.. toctree:: + :numbered: + :maxdepth: 3 + + Introduction + CodeOverview + BuildingAndRunning + InputsOutputs + SDFandNamelistExamplePractices + FAQ + Acronyms + Glossary diff --git a/doc/UsersGuide/source/references.bib b/doc/UsersGuide/source/references.bib new file mode 100644 index 0000000000..9908c88ee6 --- /dev/null +++ b/doc/UsersGuide/source/references.bib @@ -0,0 +1,14 @@ +@article{Bernardet2018, + title={Community infrastructure for facilitating and accelerating improvement and testing of physical parameterizations}, + author={L. Bernardet}, + journal={WRF-GRAPES Modeling Workshop, Oct 17, Boulder, CO}, + url = {http://www2.mmm.ucar.edu/wrf/grapes/bernardet_2018.pdf}, + year={2018}, + } +@article{BernardetEtAl2018a, + title={Community infrastructure for facilitating improvement and testing of physical parameterizations}, + author={L. Bernardet and G. Firl and L. Carson and J. Dudhia and D. Gill and G. Grell and M. Harrold and C. Harrop and I. Jankov and P. Jimenez and G. Ketefian and L. Nance and D. Stark and J. Wolff and L. Xue and M. Zhang}, + journal={Understanding and Modelling Atmospheric Processes / 2nd Pan-GASS (Global Atmospheric System Studies) meeting, Lorne, Victoria, Australia, Feb 26}, + url={https://drive.google.com/drive/folders/1XYFI08wBUxTyiLkNqn5H3PcXSUgpxWqF}, + year={2018}, + } From 85dd899db28749f04898b60e6feaaf053b87fb1d Mon Sep 17 00:00:00 2001 From: "denise.worthen" Date: Wed, 21 Oct 2020 09:21:19 -0400 Subject: [PATCH 007/109] remove incorrect tests and replace with correct tests --- ...6_cice_cmeps_2d_2threads => cpld_2threads} | 69 ++----- ...m6_cice_cmeps_bmark_restart => cpld_bmark} | 100 +++++----- ...384_mom6_cice_cmeps_35d => cpld_bmark_35d} | 78 ++++---- ..._cmeps_ww3_1d_bmark_rt => cpld_bmark_wave} | 85 +++++---- tests/tests/cpld_bmark_wave_35d | 106 +++++++++++ ..._cice_cmeps_1stepcold_atm_flux => cpld_ca} | 69 +++---- ...m6_cice_cmeps_2d_atm_flux => cpld_control} | 73 +++----- ...ice_cmeps_3d_atm_flux => cpld_control_12h} | 73 +++----- tests/tests/cpld_control_c192 | 114 ++++++++++++ tests/tests/cpld_control_c384 | 121 ++++++++++++ ...e_cmeps_2d_atm_flux => cpld_control_mx025} | 94 +++++----- ...cmeps_2d_decomp => cpld_control_mx025_12h} | 93 ++++++---- ...1d_bmark_rt_frac => cpld_controlfrac_c384} | 119 ++++++------ ...pp_mom6_cice_cmeps_6h_debug => cpld_debug} | 38 +--- tests/tests/cpld_decomp | 64 +++++++ ...d_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt | 173 ------------------ ..._ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac | 103 ----------- .../cpld_fv3_ccpp_384_mom6_cice_ww3_cmeps_35d | 80 -------- ...p_mom6_cice_cmeps_restart => cpld_restart} | 77 +++----- tests/tests/cpld_restart_mx025 | 127 +++++++++++++ ...6_cice_cmeps_1d_satmedmf => cpld_satmedmf} | 41 +---- 21 files changed, 948 insertions(+), 949 deletions(-) rename tests/tests/{cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads => cpld_2threads} (56%) rename tests/tests/{cpld_fv3_ccpp_384_mom6_cice_cmeps_bmark_restart => cpld_bmark} (74%) rename tests/tests/{cpld_fv3_ccpp_384_mom6_cice_cmeps_35d => cpld_bmark_35d} (56%) rename tests/tests/{cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt => cpld_bmark_wave} (78%) create mode 100644 tests/tests/cpld_bmark_wave_35d rename tests/tests/{cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux => cpld_ca} (52%) rename tests/tests/{cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux => cpld_control} (52%) rename tests/tests/{cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux => cpld_control_12h} (52%) create mode 100644 tests/tests/cpld_control_c192 create mode 100644 tests/tests/cpld_control_c384 rename tests/tests/{cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux => cpld_control_mx025} (54%) rename tests/tests/{cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp => cpld_control_mx025_12h} (53%) rename tests/tests/{cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_frac => cpld_controlfrac_c384} (60%) rename tests/tests/{cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug => cpld_debug} (70%) create mode 100644 tests/tests/cpld_decomp delete mode 100644 tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt delete mode 100644 tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac delete mode 100644 tests/tests/cpld_fv3_ccpp_384_mom6_cice_ww3_cmeps_35d rename tests/tests/{cpld_fv3_ccpp_mom6_cice_cmeps_restart => cpld_restart} (55%) create mode 100644 tests/tests/cpld_restart_mx025 rename tests/tests/{cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf => cpld_satmedmf} (70%) diff --git a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads b/tests/tests/cpld_2threads similarity index 56% rename from tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads rename to tests/tests/cpld_2threads index 2a15a9d86d..ecf6449fcc 100644 --- a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads +++ b/tests/tests/cpld_2threads @@ -1,23 +1,24 @@ # -# CPLD_FV3_CCPP_MOM6_CICE_CMEPS_2D_2THREADS test +# cpld_2threads test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - 2 threads" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - 2 threads" -export CNTL_DIR="RT-Baselines_2d_warm_ccpp_cmeps" +export CNTL_DIR="cpld_control" +export CNTLMED_DIR="cpld_control" -export LIST_FILES="phyf048.tile1.nc \ - phyf048.tile2.nc \ - phyf048.tile3.nc \ - phyf048.tile4.nc \ - phyf048.tile5.nc \ - phyf048.tile6.nc \ - dynf048.tile1.nc \ - dynf048.tile2.nc \ - dynf048.tile3.nc \ - dynf048.tile4.nc \ - dynf048.tile5.nc \ - dynf048.tile6.nc \ +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -51,20 +52,12 @@ export LIST_FILES="phyf048.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-05-00000.nc" - #ufs.s2s.cpl.r.2016-10-05-00000.nc" + RESTART/iced.2016-10-04-00000.nc" + #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl -export DAYS="2" -export FHMAX="48" -export FDIAG="6" -export WLCLK=30 - export TASKS=$TASKS_cpl_thrd export TPN=$TPN_cpl_thrd export INPES=$INPES_cpl_thrd @@ -77,28 +70,4 @@ export atm_petlist_bounds=$APB_cpl_thrd export ocn_petlist_bounds=$OPB_cpl_thrd export ice_petlist_bounds=$IPB_cpl_thrd -# set component and coupling timesteps -export DT_CICE=${DT_ATMOS} -export CPL_SLOW=${DT_THERM_MOM6} -export CPL_FAST=${DT_ATMOS} - -# write a CICE restart at DAYS -export DUMPFREQ_N=${DAYS} -export DUMPFREQ="d" - -# CMEPS controls intervals in ALLCOMP -export RESTART_INTERVAL=${FHMAX} - -# restart test: required for restart repro -export MOM6_REPRO_LA='False' -export MOM6_THERMO_SPAN='False' - -# nems.configure -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" -export coupling_interval_slow_sec=${CPL_SLOW} -export coupling_interval_fast_sec=${CPL_FAST} - -export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN -export INPUT_NML=input.mom6_ccpp.nml.IN - -export SUITE_NAME="FV3_GFS_2017_coupled" +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_bmark_restart b/tests/tests/cpld_bmark similarity index 74% rename from tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_bmark_restart rename to tests/tests/cpld_bmark index 727a85b811..ce0f44f223 100644 --- a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_bmark_restart +++ b/tests/tests/cpld_bmark @@ -1,10 +1,10 @@ # -# CPLD_FV3_CCPP_MOM6_CICE_CMEPS MARK_RESTART test +# cpld_bmark test # +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test" -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS 0.5 day restart run" - -export CNTL_DIR="RT-Baselines_1d_bmrt_ccpp_cmeps" +export CNTL_DIR="cpld_bmark" +export CNTLMED_DIR="cpld_bmark" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ @@ -54,8 +54,8 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2013-04-02-00000.nc \ - ufs.s2s.cpl.r.2013-04-02-00000.nc" + RESTART/iced.2013-04-02-00000.nc" + #RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc" export_fv3 export_cpl @@ -65,34 +65,6 @@ export SMONTH="04" export SDAY="01" export SHOUR="00" -export DAYS="1" -export FHMAX="24" -export FDIAG="6" -export WLCLK=30 - -# ATM warm start -FHROT='12' -WARM_START='.T.' -MAKE_NH='.F.' -NA_INIT='0' -EXTERNAL_IC='.F.' -NGGPS_IC='.F.' -MOUNTAIN='.T.' -# ICE warm start -RUNTYPE='continue' -export USE_RESTART_TIME='.true.' - -export DT_ATMOS="450" -export NPX="385" -export NPY="385" -export IMO="1536" -export JMO="768" -export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," -export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," -export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," -export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," - export TASKS=$TASKS_cpl_bmrk export TPN=$TPN_cpl_bmrk export INPES=$INPES_cpl_bmrk @@ -105,43 +77,57 @@ export atm_petlist_bounds=$APB_cpl_bmrk export ocn_petlist_bounds=$OPB_cpl_bmrk export ice_petlist_bounds=$IPB_cpl_bmrk -# no high freq fv3 output -NFHMAX_HF='-1' -NFHOUT_HF='-1' +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' # set component and coupling timesteps +export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' export CPL_SLOW=${DT_THERM_MOM6} export CPL_FAST=${DT_ATMOS} -# write a CICE restart at 12 hour intervals -export DUMPFREQ_N='12' -export DUMPFREQ="h" - -# CMEPS controls intervals in ALLCOMP -export RESTART_INTERVAL='12' - -# restart test: required for restart repro -export MOM6_REPRO_LA='False' -export MOM6_THERMO_SPAN='False' - # nems.configure -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -export FV3_RUN=cpld_fv3_mom6_cice_bmark_restart_run.IN -export INPUT_NML=input.benchmark_ccpp.nml.IN +export FRAC_GRID_INPUT='.F.' -export FIELD_TABLE="field_table.gfdlmp" -export SUITE_NAME="FV3_GFS_v15p2_coupled" +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," export OZ_PHYS_NEW=".T." -# set run type for CICE in ice_in +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" + export RUNID="cpcice" -# set initialization type for MOM6 -export MOM6_RESTART_SETTING="r" +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" -export ATMRES=C384 +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_35d b/tests/tests/cpld_bmark_35d similarity index 56% rename from tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_35d rename to tests/tests/cpld_bmark_35d index 6f1c8b1732..aa5728c173 100644 --- a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_35d +++ b/tests/tests/cpld_bmark_35d @@ -1,8 +1,8 @@ # -# CPLD_FV3_CCPP_384_MOM6_CICE_CMEPS_35D_BMARK_RT test +# cpld_bmark 35D # +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark 35d test" -export TEST_DESCR="Coupled FV3-CCPP-MOM6-CICE-CMEPS system" export_35d_run export_fv3 export_cpl @@ -14,25 +14,14 @@ export SHOUR="00" export DAYS="35" export FHMAX="840" -export FDIAG="6" +export FV3_RESTART_H=${FHMAX} export WLCLK=480 -export DT_ATMOS="450" -export NPX="385" -export NPY="385" -export IMO="1536" -export JMO="768" -export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," -export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," -export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," -export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," - export TASKS=$TASKS_cpl_bmrk export TPN=$TPN_cpl_bmrk export INPES=$INPES_cpl_bmrk export JNPES=$JNPES_cpl_bmrk -export THRD=1 +export THRD=$THRD_cpl_bmrk export WRTTASK_PER_GROUP=$WPG_cpl_bmrk export med_petlist_bounds=$MPB_cpl_bmrk @@ -40,40 +29,59 @@ export atm_petlist_bounds=$APB_cpl_bmrk export ocn_petlist_bounds=$OPB_cpl_bmrk export ice_petlist_bounds=$IPB_cpl_bmrk -# no high freq fv3 output -NFHMAX_HF='-1' -NFHOUT_HF='-1' +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' # set component and coupling timesteps +export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' export CPL_SLOW=${DT_THERM_MOM6} export CPL_FAST=${DT_ATMOS} -# write a CICE restart at DAYS -export DUMPFREQ_N=${DAYS} -export DUMPFREQ="d" - -# CMEPS controls intervals in ALLCOMP -export RESTART_INTERVAL=${FHMAX} - # nems.configure -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -export MOM_INPUT=MOM_input_template_${OCNRES} -export FV3_RUN=cpld_fv3_mom6_cice_bmark_35d_run.IN -export INPUT_NML=input.benchmark_ccpp.nml.IN +export FRAC_GRID_INPUT='.F.' -export FIELD_TABLE="field_table.gfdlmp" -export SUITE_NAME="FV3_GFS_v15p2_coupled" +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," export OZ_PHYS_NEW=".T." -export CPLWAV='.F.' -export CPLWAV2ATM='.F.' +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' export RUNID="cpcice" -export MOM6_RESTART_SETTING="r" -export ATMRES=C384 +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export RT35D='.T.' +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt b/tests/tests/cpld_bmark_wave similarity index 78% rename from tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt rename to tests/tests/cpld_bmark_wave index 4594f49050..ce94276892 100644 --- a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt +++ b/tests/tests/cpld_bmark_wave @@ -1,10 +1,10 @@ # -# CPLD_FV3_CCPP_384_MOM6_CICE_CMEPS_WW3_1D_BMARK_RT test +# cpld_bmark_wave test # +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384 MX025 - Benchmark test with waves" -export TEST_DESCR="Coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - 1 day" - -export CNTL_DIR="RT-Baselines_1d_bmwav_ccpp_cmeps" +export CNTL_DIR="cpld_bmark_wave" +export CNTLMED_DIR="cpld_bmark_wave" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ @@ -58,7 +58,7 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ RESTART/iced.2013-04-02-00000.nc" - #ufs.s2s.cpl.r.2013-04-02-00000.nc" + #RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc" export_fv3 export_cpl @@ -68,22 +68,8 @@ export SMONTH="04" export SDAY="01" export SHOUR="00" -export DAYS="1" -export FHMAX="24" -export FDIAG="6" export WLCLK=60 -export DT_ATMOS="450" -export NPX="385" -export NPY="385" -export IMO="1536" -export JMO="768" -export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," -export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," -export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," -export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," - export TASKS=$TASKS_cpl_wwav export TPN=$TPN_cpl_wwav export INPES=$INPES_cpl_wwav @@ -97,40 +83,63 @@ export ocn_petlist_bounds=$OPB_cpl_wwav export ice_petlist_bounds=$IPB_cpl_wwav export wav_petlist_bounds=$WPB_cpl_wwav -# no high freq fv3 output -NFHMAX_HF='-1' -NFHOUT_HF='-1' +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' # set component and coupling timesteps +export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' export CPL_SLOW=${DT_THERM_MOM6} export CPL_FAST=${DT_ATMOS} -# write a CICE restart at DAYS -export DUMPFREQ_N=${DAYS} -export DUMPFREQ="d" - -# CMEPS controls intervals in ALLCOMP -export RESTART_INTERVAL=${FHMAX} - # nems.configure export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice_wav.IN" export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -export MOM_INPUT=MOM_input_wave_template_${OCNRES} -export FV3_RUN=cpld_fv3_mom6_cice_ww3_bmark_rt_run.IN -export INPUT_NML=input.benchmark_ccpp.nml.IN +export FRAC_GRID_INPUT='.F.' -export FIELD_TABLE="field_table.gfdlmp" -export SUITE_NAME="FV3_GFS_v15p2_coupled" +export CPLWAV='.T.' +export CPLWAV2ATM='.T.' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," export OZ_PHYS_NEW=".T." -export CPLWAV='.T.' -export CPLWAV2ATM='.T.' +export MOM6_USE_WAVES='True' +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' export RUNID="cpcice" -export MOM6_RESTART_SETTING="r" -export ATMRES=C384 +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmark_wave_35d b/tests/tests/cpld_bmark_wave_35d new file mode 100644 index 0000000000..31903f8fab --- /dev/null +++ b/tests/tests/cpld_bmark_wave_35d @@ -0,0 +1,106 @@ +# +# cpld_bmark_wave 35D +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384 MX025 - Benchmark 35d test with waves" + +export_35d_run +export_fv3 +export_cpl + +export SYEAR +export SMONTH +export SDAY="01" +export SHOUR="00" + +export DAYS="35" +export FHMAX="840" +export FV3_RESTART_H=${FHMAX} +export WLCLK=480 + +#export TASKS=$TASKS_cpl_wwav +#export TPN=$TPN_cpl_wwav +#export INPES=$INPES_cpl_wwav +#export JNPES=$JNPES_cpl_wwav +#export THRD=$THRD_cpl_wwav +#export WRTTASK_PER_GROUP=$WPG_cpl_wwav + +#export med_petlist_bounds=$MPB_cpl_wwav +#export atm_petlist_bounds=$APB_cpl_wwav +#export ocn_petlist_bounds=$OPB_cpl_wwav +#export ice_petlist_bounds=$IPB_cpl_wwav +#export wav_petlist_bounds=$WPB_cpl_wwav + +export TASKS=866 +export TPN=40 +export INPES=6 +export JNPES=12 +export THRD=1 +export WRTTASK_PER_GROUP=24 + +export med_petlist_bounds="0 431" +export atm_petlist_bounds="0 455" +export ocn_petlist_bounds="456 695" +export ice_petlist_bounds="696 743" +export wav_petlist_bounds="744 865" + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# set component and coupling timesteps +export DT_ATMOS='450' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice_wav.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID_INPUT='.F.' + +export CPLWAV='.T.' +export CPLWAV2ATM='.T.' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_USE_WAVES='True' +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' + +export RUNID="cpcice" + +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export RT35D='.T.' +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux b/tests/tests/cpld_ca similarity index 52% rename from tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux rename to tests/tests/cpld_ca index 06b53c6a22..da01ca660d 100644 --- a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux +++ b/tests/tests/cpld_ca @@ -1,23 +1,24 @@ # -# CPLD_FV3_CCPP_MOM6_CICE_CMEPS_1STEPCOLD_ATM_FLUX test +# cpld_ca (cellular automata) test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - 1 step cold start" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 CA" -export CNTL_DIR="RT-Baselines_1stepcold_ccpp_cmeps" +export CNTL_DIR="cpld_ca" +export CNTLMED_DIR="cpld_ca" -export LIST_FILES="phyf048.tile1.nc \ - phyf048.tile2.nc \ - phyf048.tile3.nc \ - phyf048.tile4.nc \ - phyf048.tile5.nc \ - phyf048.tile6.nc \ - dynf048.tile1.nc \ - dynf048.tile2.nc \ - dynf048.tile3.nc \ - dynf048.tile4.nc \ - dynf048.tile5.nc \ - dynf048.tile6.nc \ +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -51,40 +52,14 @@ export LIST_FILES="phyf048.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-05-00000.nc" - #ufs.s2s.cpl.r.2016-10-05-00000.nc" + RESTART/iced.2016-10-04-00000.nc " + #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl -export DAYS="2" -export FHMAX="48" -export WLCLK=30 -export use_coldstart="false" -export RESTART_INTERVAL=${FHMAX} +export DO_CA=.T. +export CA_SGS=.T. +export CA_GLOBAL=.T. -# set component and coupling timesteps -export DT_CICE=${DT_ATMOS} -export CPL_SLOW=${DT_THERM_MOM6} -export CPL_FAST=${DT_ATMOS} - -# write a CICE restart at DAYS -export DUMPFREQ_N=${DAYS} -export DUMPFREQ="d" - -# restart test: required for restart repro -export MOM6_REPRO_LA='False' -export MOM6_THERMO_SPAN='False' - -# nems.configure -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" -export coupling_interval_slow_sec=${CPL_SLOW} -export coupling_interval_fast_sec=${CPL_FAST} - -export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN -export INPUT_NML=input.mom6_ccpp.nml.IN - -export SUITE_NAME="FV3_GFS_2017_coupled" +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux b/tests/tests/cpld_control similarity index 52% rename from tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux rename to tests/tests/cpld_control index f0d831965b..67e57f141c 100644 --- a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux +++ b/tests/tests/cpld_control @@ -1,23 +1,24 @@ # -# CPLD_FV3_CCPP_MOM6_CICE_CMEPS_2D_ATM_FLUX test +# cpld_control test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - 2d_warm" - -export CNTL_DIR="RT-Baselines_2d_warm_ccpp_cmeps" - -export LIST_FILES="phyf048.tile1.nc \ - phyf048.tile2.nc \ - phyf048.tile3.nc \ - phyf048.tile4.nc \ - phyf048.tile5.nc \ - phyf048.tile6.nc \ - dynf048.tile1.nc \ - dynf048.tile2.nc \ - dynf048.tile3.nc \ - dynf048.tile4.nc \ - dynf048.tile5.nc \ - dynf048.tile6.nc \ +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100" + +export CNTL_DIR="cpld_control" +export CNTLMED_DIR="cpld_control" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -51,42 +52,10 @@ export LIST_FILES="phyf048.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-05-00000.nc" - #ufs.s2s.cpl.r.2016-10-05-00000.nc" + RESTART/iced.2016-10-04-00000.nc " + #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl -export DAYS="2" -export FHMAX="48" -export FDIAG="6" -export WLCLK=30 - -# set component and coupling timesteps -export DT_CICE=${DT_ATMOS} -export CPL_SLOW=${DT_THERM_MOM6} -export CPL_FAST=${DT_ATMOS} - -# write a CICE restart at DAYS -export DUMPFREQ_N=${DAYS} -export DUMPFREQ="d" - -# CMEPS controls intervals in ALLCOMP -export RESTART_INTERVAL=${FHMAX} - -# restart test: required for restart repro -export MOM6_REPRO_LA='False' -export MOM6_THERMO_SPAN='False' - -# nems.configure -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" -export coupling_interval_slow_sec=${CPL_SLOW} -export coupling_interval_fast_sec=${CPL_FAST} - -export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN -export INPUT_NML=input.mom6_ccpp.nml.IN - -export SUITE_NAME="FV3_GFS_2017_coupled" +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux b/tests/tests/cpld_control_12h similarity index 52% rename from tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux rename to tests/tests/cpld_control_12h index 9dc4785095..84f103f020 100644 --- a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux +++ b/tests/tests/cpld_control_12h @@ -1,23 +1,24 @@ # -# CPLD_FV3_CCPP_MOM6_CICE_CMEPS_3D_ATM_FLUX test -# +# cpld_control 12h test +# NOTE: test is not currently used; restarts are tested at c96mx025 -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - 3d_warm" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 12h" -export CNTL_DIR="RT-Baselines_3d_warm_ccpp_cmeps" +export CNTL_DIR="cpld_control_12h" +export CNTLMED_DIR="cpld_control_12h" -export LIST_FILES="phyf072.tile1.nc \ - phyf072.tile2.nc \ - phyf072.tile3.nc \ - phyf072.tile4.nc \ - phyf072.tile5.nc \ - phyf072.tile6.nc \ - dynf072.tile1.nc \ - dynf072.tile2.nc \ - dynf072.tile3.nc \ - dynf072.tile4.nc \ - dynf072.tile5.nc \ - dynf072.tile6.nc \ +export LIST_FILES="phyf012.tile1.nc \ + phyf012.tile2.nc \ + phyf012.tile3.nc \ + phyf012.tile4.nc \ + phyf012.tile5.nc \ + phyf012.tile6.nc \ + dynf012.tile1.nc \ + dynf012.tile2.nc \ + dynf012.tile3.nc \ + dynf012.tile4.nc \ + dynf012.tile5.nc \ + dynf012.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -51,42 +52,14 @@ export LIST_FILES="phyf072.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-06-00000.nc" - #ufs.s2s.cpl.r.2016-10-06-00000.nc" + RESTART/iced.2016-10-03-43200.nc " + #RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc" export_fv3 export_cpl -export DAYS="3" -export FHMAX="72" -export FDIAG="6" -export WLCLK=60 - -# set component and coupling timesteps -export DT_CICE=${DT_ATMOS} -export CPL_SLOW=${DT_THERM_MOM6} -export CPL_FAST=${DT_ATMOS} - -# write a CICE restart at DAYS -export DUMPFREQ_N=${DAYS} -export DUMPFREQ="d" - -# CMEPS controls intervals in ALLCOMP -export RESTART_INTERVAL=${FHMAX} - -# restart test: required for restart repro -export MOM6_REPRO_LA='False' -export MOM6_THERMO_SPAN='False' - -# nems.configure -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" -export coupling_interval_slow_sec=${CPL_SLOW} -export coupling_interval_fast_sec=${CPL_FAST} - -export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN -export INPUT_NML=input.mom6_ccpp.nml.IN +export DAYS="0.50" +export FHMAX="12" +export FV3_RESTART_H=${FHMAX} -export SUITE_NAME="FV3_GFS_2017_coupled" +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_c192 b/tests/tests/cpld_control_c192 new file mode 100644 index 0000000000..2b24334ee4 --- /dev/null +++ b/tests/tests/cpld_control_c192 @@ -0,0 +1,114 @@ +# +# cpld_control_c192 test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050" + +export CNTL_DIR="cpld_control_c192" +export CNTLMED_DIR="cpld_control_c192" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/iced.2016-10-04-00000.nc " + #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + +export_fv3 +export_cpl + +export TASKS=$TASKS_cpl_c192 +export TPN=$TPN_cpl_c192 +export INPES=$INPES_cpl_c192 +export JNPES=$JNPES_cpl_c192 +export THRD=$THRD_cpl_c192 +export WRTTASK_PER_GROUP=$WPG_cpl_c192 +export WRITE_GROUP=1 + +export med_petlist_bounds=$MPB_cpl_c192 +export atm_petlist_bounds=$APB_cpl_c192 +export ocn_petlist_bounds=$OPB_cpl_c192 +export ice_petlist_bounds=$IPB_cpl_c192 + +# atm/ocn/ice resolution +export ATMRES='C192' +export NPX=193 +export NPY=193 +export IMO=768 +export JMO=384 + +export OCNRES='050' +export ICERES='0.50' +export NX_GLB=720 +export NY_GLB=576 +export NPROC_ICE='24' + +# set component and coupling timesteps +export DT_ATMOS='900' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='1800' +export DT_THERM_MOM6='3600' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t382.768.384.rg.grb'," +export FNVETC="'global_vegtype.igbp.t382.768.384.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," +export FNSMCC="'global_soilmgldas.t382.768.384.grb'," +export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," + +export MOM6_RIVER_RUNOFF='True' + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_c384 b/tests/tests/cpld_control_c384 new file mode 100644 index 0000000000..45203c9834 --- /dev/null +++ b/tests/tests/cpld_control_c384 @@ -0,0 +1,121 @@ +# +# cpld_control_c384 test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025" + +export CNTL_DIR="cpld_control_c384" +export CNTLMED_DIR="cpld_control_c384" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2016-10-04-00000.nc" + #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + +export_fv3 +export_cpl + +export WLCLK=60 + +export TASKS=$TASKS_cpl_c384 +export TPN=$TPN_cpl_c384 +export INPES=$INPES_cpl_c384 +export JNPES=$JNPES_cpl_c384 +export THRD=$THRD_cpl_c384 +export WRTTASK_PER_GROUP=$WPG_cpl_c384 + +export med_petlist_bounds=$MPB_cpl_c384 +export atm_petlist_bounds=$APB_cpl_c384 +export ocn_petlist_bounds=$OPB_cpl_c384 +export ice_petlist_bounds=$IPB_cpl_c384 + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# set component and coupling timesteps +export DT_ATMOS='450' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID_INPUT='.F.' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export MOM6_RIVER_RUNOFF='True' +export MOM6_REPRO_LA='True' + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux b/tests/tests/cpld_control_mx025 similarity index 54% rename from tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux rename to tests/tests/cpld_control_mx025 index 49b7bdcc56..c211e0bae3 100644 --- a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux +++ b/tests/tests/cpld_control_mx025 @@ -1,23 +1,23 @@ # -# CPLD_FV3_CCPP_384_MOM6_CICE_CMEPS 2d_ATM_FLUX test +# cpld_control test # +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX025" -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - 2d_warm" +export CNTL_DIR="cpld_control_mx025" +export CNTLMED_DIR="cpld_control_mx025" -export CNTL_DIR="RT-Baselines_2d_warm_ccpp384_cmeps" - -export LIST_FILES="phyf048.tile1.nc \ - phyf048.tile2.nc \ - phyf048.tile3.nc \ - phyf048.tile4.nc \ - phyf048.tile5.nc \ - phyf048.tile6.nc \ - dynf048.tile1.nc \ - dynf048.tile2.nc \ - dynf048.tile3.nc \ - dynf048.tile4.nc \ - dynf048.tile5.nc \ - dynf048.tile6.nc \ +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -54,48 +54,52 @@ export LIST_FILES="phyf048.tile1.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-05-00000.nc" - #ufs.s2s.cpl.r.2016-10-05-00000.nc" + RESTART/iced.2016-10-04-00000.nc" + #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl -export DAYS="2" -export FHMAX="48" -export FDIAG="6" -export WLCLK=60 +# replicate current tests; explicitly set values for c96/mx025 +export TASKS=$TASKS_cpl_c384 +export TPN=$TPN_cpl_c384 +export INPES=$INPES_cpl_c384 +export JNPES=$JNPES_cpl_c384 +export THRD=$THRD_cpl_c384 + +export WRTTASK_PER_GROUP=$WPG_cpl_c384 +export med_petlist_bounds=$MPB_cpl_c384 +export atm_petlist_bounds=$APB_cpl_c384 +export ocn_petlist_bounds=$OPB_cpl_c384 +export ice_petlist_bounds=$IPB_cpl_c384 + +# atm/ocn/ice resolution +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 -export DT_ATMOS="450" -export NPX="385" -export NPY="385" -export IMO="1536" -export JMO="768" -export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," -export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," -export FNSMCC="'global_soilmgldas.t766.1536.768.grb'," -export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," +export NPROC_ICE='48' # set component and coupling timesteps -export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' export CPL_SLOW=${DT_THERM_MOM6} export CPL_FAST=${DT_ATMOS} -# write a CICE restart at DAYS -export DUMPFREQ_N=${DAYS} -export DUMPFREQ="d" - -# CMEPS controls intervals in ALLCOMP -export RESTART_INTERVAL=${FHMAX} +export FRAC_GRID_INPUT='.F.' # nems.configure -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN -export INPUT_NML=input.mom6_ccpp.nml.IN - -export SUITE_NAME="FV3_GFS_2017_coupled" +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" -export ATMRES=C384 +export MOM6_RIVER_RUNOFF='True' +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp b/tests/tests/cpld_control_mx025_12h similarity index 53% rename from tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp rename to tests/tests/cpld_control_mx025_12h index 4f70f29594..c3a7a882cd 100644 --- a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp +++ b/tests/tests/cpld_control_mx025_12h @@ -1,23 +1,23 @@ # -# CPLD_FV3_CCPP_MOM6_CICE_CMEPS_2D_DECOMP test +# cpld_control 12h test # +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX025 12h" -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - decomp" +export CNTL_DIR="cpld_control_mx025_12h" +export CNTLMED_DIR="cpld_control_mx025_12h" -export CNTL_DIR="RT-Baselines_2d_warm_ccpp_cmeps" - -export LIST_FILES="phyf048.tile1.nc \ - phyf048.tile2.nc \ - phyf048.tile3.nc \ - phyf048.tile4.nc \ - phyf048.tile5.nc \ - phyf048.tile6.nc \ - dynf048.tile1.nc \ - dynf048.tile2.nc \ - dynf048.tile3.nc \ - dynf048.tile4.nc \ - dynf048.tile5.nc \ - dynf048.tile6.nc \ +export LIST_FILES="phyf012.tile1.nc \ + phyf012.tile2.nc \ + phyf012.tile3.nc \ + phyf012.tile4.nc \ + phyf012.tile5.nc \ + phyf012.tile6.nc \ + dynf012.tile1.nc \ + dynf012.tile2.nc \ + dynf012.tile3.nc \ + dynf012.tile4.nc \ + dynf012.tile5.nc \ + dynf012.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -54,42 +54,57 @@ export LIST_FILES="phyf048.tile1.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-05-00000.nc" - #ufs.s2s.cpl.r.2016-10-05-00000.nc" + RESTART/iced.2016-10-03-43200.nc" + #RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc" export_fv3 export_cpl -export DAYS="2" -export FHMAX="48" -export FDIAG="6" -export WLCLK=30 +export DAYS="0.50" +export FHMAX="12" +export FV3_RESTART_H=${FHMAX} + +# replicate current tests; explicitly set values for c96/mx025 +export TASKS=$TASKS_cpl_c384 +export TPN=$TPN_cpl_c384 +export INPES=$INPES_cpl_c384 +export JNPES=$JNPES_cpl_c384 +export THRD=$THRD_cpl_c384 + +export WRTTASK_PER_GROUP=$WPG_cpl_c384 +export med_petlist_bounds=$MPB_cpl_c384 +export atm_petlist_bounds=$APB_cpl_c384 +export ocn_petlist_bounds=$OPB_cpl_c384 +export ice_petlist_bounds=$IPB_cpl_c384 + +# atm/ocn/ice resolution +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 -export INPES='6' -export JNPES='4' +export NPROC_ICE='48' # set component and coupling timesteps -export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' export CPL_SLOW=${DT_THERM_MOM6} export CPL_FAST=${DT_ATMOS} -# write a CICE restart at DAYS -export DUMPFREQ_N=${DAYS} -export DUMPFREQ="d" - -# CMEPS controls intervals in ALLCOMP -export RESTART_INTERVAL=${FHMAX} - -# restart test: required for restart repro -export MOM6_REPRO_LA='False' -export MOM6_THERMO_SPAN='False' +export FRAC_GRID_INPUT='.F.' # nems.configure -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN -export INPUT_NML=input.mom6_ccpp.nml.IN +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export MOM6_RIVER_RUNOFF='True' -export SUITE_NAME="FV3_GFS_2017_coupled" +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_frac b/tests/tests/cpld_controlfrac_c384 similarity index 60% rename from tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_frac rename to tests/tests/cpld_controlfrac_c384 index e372ffc8b6..221001d621 100644 --- a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_frac +++ b/tests/tests/cpld_controlfrac_c384 @@ -1,10 +1,10 @@ # -# CPLD_FV3_CCPP_384_MOM6_CICE_CMEPS_WW3_1D_BMARK_RT_FRAC test +# cpld_controlfrac_c384 frac grid test # +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025, frac grid " -export TEST_DESCR="Coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3-FRAC system - 1 day" - -export CNTL_DIR="RT-Baselines_1d_bmwav_ccpp_cmeps_frac" +export CNTL_DIR="cpld_controlfrac_c384" +export CNTLMED_DIR="cpld_controlfrac_c384" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ @@ -18,9 +18,6 @@ export LIST_FILES="phyf024.tile1.nc \ dynf024.tile4.nc \ dynf024.tile5.nc \ dynf024.tile6.nc \ - 20130402.000000.out_grd.gwes_30m \ - 20130402.000000.out_pnt.points \ - 20130402.000000.restart.gwes_30m \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -57,82 +54,68 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2013-04-02-00000.nc" - # ufs.s2s.cpl.r.2013-04-02-00000.nc" + RESTART/iced.2016-10-04-00000.nc" + #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl -export SYEAR="2013" -export SMONTH="04" -export SDAY="01" -export SHOUR="00" - -export DAYS="1" -export FHMAX="24" -export FDIAG="6" -export WLCLK=60 - -export DT_ATMOS="450" -export NPX="385" -export NPY="385" -export IMO="1536" -export JMO="768" -export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," -export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," -export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," -export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," - -export TASKS=$TASKS_cpl_wwav -export TPN=$TPN_cpl_wwav -export INPES=$INPES_cpl_wwav -export JNPES=$JNPES_cpl_wwav -export THRD=$THRD_cpl_wwav -export WRTTASK_PER_GROUP=$WPG_cpl_wwav - -export med_petlist_bounds=$MPB_cpl_wwav -export atm_petlist_bounds=$APB_cpl_wwav -export ocn_petlist_bounds=$OPB_cpl_wwav -export ice_petlist_bounds=$IPB_cpl_wwav -export wav_petlist_bounds=$WPB_cpl_wwav - -# no high freq fv3 output -NFHMAX_HF='-1' -NFHOUT_HF='-1' +export TASKS=$TASKS_cpl_c384 +export TPN=$TPN_cpl_c384 +export INPES=$INPES_cpl_c384 +export JNPES=$JNPES_cpl_c384 +export THRD=$THRD_cpl_c384 +export WRTTASK_PER_GROUP=$WPG_cpl_c384 + +export med_petlist_bounds=$MPB_cpl_c384 +export atm_petlist_bounds=$APB_cpl_c384 +export ocn_petlist_bounds=$OPB_cpl_c384 +export ice_petlist_bounds=$IPB_cpl_c384 + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' # set component and coupling timesteps +export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' export CPL_SLOW=${DT_THERM_MOM6} export CPL_FAST=${DT_ATMOS} -# write a CICE restart at DAYS -export DUMPFREQ_N=${DAYS} -export DUMPFREQ="d" - -# CMEPS controls intervals in ALLCOMP -export FV3_RESTART_INTERVAL=${FHMAX} - # nems.configure -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice_wav.IN" export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -export MOM_INPUT=MOM_input_wave_template_${OCNRES} - -export FV3_RUN=cpld_fv3_mom6_cice_ww3_bmark_rt_run.IN -export INPUT_NML=input.benchmark_ccpp.nml.IN -export FIELD_TABLE="field_table.gfdlmp" -export SUITE_NAME="FV3_GFS_v15p2_coupled" +export FRAC_GRID='.T.' +export FRAC_GRID_INPUT='.T.' +export CPLMODE="nems_frac" -export OZ_PHYS_NEW=".T." +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" -export CPLWAV='.T.' -export CPLWAV2ATM='.T.' +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," -export RUNID="cpcice" -export MOM6_RESTART_SETTING="r" +export MOM6_RIVER_RUNOFF='True' +export MOM6_REPRO_LA='True' -export ATMRES=C384 -export FRAC_GRID="T" -export CPLMODE="nems_frac" +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug b/tests/tests/cpld_debug similarity index 70% rename from tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug rename to tests/tests/cpld_debug index 571ea671c9..c1df0a90af 100644 --- a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug +++ b/tests/tests/cpld_debug @@ -1,10 +1,11 @@ # -# CPLD_FV3_CCPP_MOM6_CICE_CMEPS_6H_DEBUG test +# cpld_debug test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - warm debug" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - debug" -export CNTL_DIR="RT-Baselines_6h_warm_debug_ccpp_cmeps" +export CNTL_DIR="cpld_debug" +export CNTLMED_DIR="cpld_debug" export LIST_FILES="phyf006.tile1.nc \ phyf006.tile2.nc \ @@ -51,39 +52,18 @@ export LIST_FILES="phyf006.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-03-21600.nc \ - ufs.s2s.cpl.r.2016-10-03-21600.nc" + RESTART/iced.2016-10-03-21600.nc " + #RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc" + export_fv3 export_cpl export DAYS="0.25" export FHMAX="6" export NFHOUT_HF="1" -export FDIAG="6" # requires extra time export WLCLK=60 -# set component and coupling timesteps -export DT_CICE=${DT_ATMOS} -export CPL_SLOW=${DT_THERM_MOM6} -export CPL_FAST=${DT_ATMOS} - -# write a CICE restart at FHMAX -export DUMPFREQ_N=${FHMAX} -export DUMPFREQ="h" - -# CMEPS controls intervals in ALLCOMP -export RESTART_INTERVAL=${FHMAX} - -# nems.configure -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" -export coupling_interval_slow_sec=${CPL_SLOW} -export coupling_interval_fast_sec=${CPL_FAST} - -export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN -export INPUT_NML=input.mom6_ccpp.nml.IN +export FV3_RESTART_H=${FHMAX} -export SUITE_NAME="FV3_GFS_2017_coupled" +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_decomp b/tests/tests/cpld_decomp new file mode 100644 index 0000000000..d62c432855 --- /dev/null +++ b/tests/tests/cpld_decomp @@ -0,0 +1,64 @@ +# +# cpld_decomp test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - decomp" + +export CNTL_DIR="cpld_control" +export CNTLMED_DIR="cpld_control" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/iced.2016-10-04-00000.nc " + #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + +export_fv3 +export_cpl + +export INPES='6' +export JNPES='4' + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt deleted file mode 100644 index a2e773be6b..0000000000 --- a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt +++ /dev/null @@ -1,173 +0,0 @@ -# -# CPLD_FV3_CCPP_MOM6_CICE_CMEPS 1D_BMARK_RT test -# - -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS 1 day run" - -export CNTL_DIR="RT-Baselines_1d_bmrt_ccpp_cmeps" - -export LIST_FILES="phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/20130401.120000.coupler.res \ - RESTART/20130401.120000.fv_core.res.nc \ - RESTART/20130401.120000.fv_core.res.tile1.nc \ - RESTART/20130401.120000.fv_core.res.tile2.nc \ - RESTART/20130401.120000.fv_core.res.tile3.nc \ - RESTART/20130401.120000.fv_core.res.tile4.nc \ - RESTART/20130401.120000.fv_core.res.tile5.nc \ - RESTART/20130401.120000.fv_core.res.tile6.nc \ - RESTART/20130401.120000.fv_srf_wnd.res.tile1.nc \ - RESTART/20130401.120000.fv_srf_wnd.res.tile2.nc \ - RESTART/20130401.120000.fv_srf_wnd.res.tile3.nc \ - RESTART/20130401.120000.fv_srf_wnd.res.tile4.nc \ - RESTART/20130401.120000.fv_srf_wnd.res.tile5.nc \ - RESTART/20130401.120000.fv_srf_wnd.res.tile6.nc \ - RESTART/20130401.120000.fv_tracer.res.tile1.nc \ - RESTART/20130401.120000.fv_tracer.res.tile2.nc \ - RESTART/20130401.120000.fv_tracer.res.tile3.nc \ - RESTART/20130401.120000.fv_tracer.res.tile4.nc \ - RESTART/20130401.120000.fv_tracer.res.tile5.nc \ - RESTART/20130401.120000.fv_tracer.res.tile6.nc \ - RESTART/20130401.120000.phy_data.tile1.nc \ - RESTART/20130401.120000.phy_data.tile2.nc \ - RESTART/20130401.120000.phy_data.tile3.nc \ - RESTART/20130401.120000.phy_data.tile4.nc \ - RESTART/20130401.120000.phy_data.tile5.nc \ - RESTART/20130401.120000.phy_data.tile6.nc \ - RESTART/20130401.120000.sfc_data.tile1.nc \ - RESTART/20130401.120000.sfc_data.tile2.nc \ - RESTART/20130401.120000.sfc_data.tile3.nc \ - RESTART/20130401.120000.sfc_data.tile4.nc \ - RESTART/20130401.120000.sfc_data.tile5.nc \ - RESTART/20130401.120000.sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/MOM.res.2013-04-01-12-00-00.nc \ - RESTART/MOM.res.2013-04-01-12-00-00_1.nc \ - RESTART/MOM.res.2013-04-01-12-00-00_2.nc \ - RESTART/MOM.res.2013-04-01-12-00-00_3.nc \ - RESTART/iced.2013-04-02-00000.nc \ - RESTART/iced.2013-04-01-43200.nc" - #ufs.s2s.cpl.r.2013-04-01-43200.nc \ - #ufs.s2s.cpl.r.2013-04-02-00000.nc" - -export_fv3 -export_cpl - -export SYEAR="2013" -export SMONTH="04" -export SDAY="01" -export SHOUR="00" - -export DAYS="1" -export FHMAX="24" -export FDIAG="6" -export WLCLK=30 - -export DT_ATMOS="450" -export NPX="385" -export NPY="385" -export IMO="1536" -export JMO="768" -export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," -export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," -export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," -export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," - -export TASKS=$TASKS_cpl_bmrk -export TPN=$TPN_cpl_bmrk -export INPES=$INPES_cpl_bmrk -export JNPES=$JNPES_cpl_bmrk -export THRD=$THRD_cpl_bmrk -export WRTTASK_PER_GROUP=$WPG_cpl_bmrk - -export med_petlist_bounds=$MPB_cpl_bmrk -export atm_petlist_bounds=$APB_cpl_bmrk -export ocn_petlist_bounds=$OPB_cpl_bmrk -export ice_petlist_bounds=$IPB_cpl_bmrk - -# no high freq fv3 output -NFHMAX_HF='-1' -NFHOUT_HF='-1' - -# set component and coupling timesteps -export DT_CICE=${DT_ATMOS} -export CPL_SLOW=${DT_THERM_MOM6} -export CPL_FAST=${DT_ATMOS} - -# restart test: write a CICE restart at 12 hour intervals -export DUMPFREQ_N='12' -export DUMPFREQ="h" - -# restart test: CMEPS controls intervals in ALLCOMP -export RESTART_INTERVAL='12' - -# restart test: required for restart repro -export MOM6_REPRO_LA='False' -export MOM6_THERMO_SPAN='False' - -# nems.configure -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" -export coupling_interval_slow_sec=${CPL_SLOW} -export coupling_interval_fast_sec=${CPL_FAST} - -export FV3_RUN=cpld_fv3_mom6_cice_bmark_rt_run.IN -export INPUT_NML=input.benchmark_ccpp.nml.IN - -export FIELD_TABLE="field_table.gfdlmp" -export SUITE_NAME="FV3_GFS_v15p2_coupled" - -export OZ_PHYS_NEW=".T." - -# set run type for CICE in ice_in -export RUNID="cpcice" - -# set initialization type for MOM6 -export MOM6_RESTART_SETTING="r" - -export ATMRES=C384 diff --git a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac deleted file mode 100644 index 2838ad26b5..0000000000 --- a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac +++ /dev/null @@ -1,103 +0,0 @@ -# -# CPLD_FV3_CCPP_384_MOM6_CICE_CMEPS 2d_ATM_FLUX_FRAC test -# - -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-FRAC system - 2d_warm" - -export CNTL_DIR="RT-Baselines_2d_warm_ccpp384_cmeps_frac" - -export LIST_FILES="phyf048.tile1.nc \ - phyf048.tile2.nc \ - phyf048.tile3.nc \ - phyf048.tile4.nc \ - phyf048.tile5.nc \ - phyf048.tile6.nc \ - dynf048.tile1.nc \ - dynf048.tile2.nc \ - dynf048.tile3.nc \ - dynf048.tile4.nc \ - dynf048.tile5.nc \ - dynf048.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-05-00000.nc" - #ufs.s2s.cpl.r.2016-10-05-00000.nc" - -export_fv3 -export_cpl - -export DAYS="2" -export FHMAX="48" -export FDIAG="6" -export WLCLK=60 - -export DT_ATMOS="450" -export NPX="385" -export NPY="385" -export IMO="1536" -export JMO="768" -export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," -export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," -export FNSMCC="'global_soilmgldas.t766.1536.768.grb'," -export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," - -# set component and coupling timesteps -export DT_CICE=${DT_ATMOS} -export CPL_SLOW=${DT_THERM_MOM6} -export CPL_FAST=${DT_ATMOS} - -# write a CICE restart at DAYS -export DUMPFREQ_N=${DAYS} -export DUMPFREQ="d" - -# CMEPS controls intervals in ALLCOMP -export RESTART_INTERVAL=${FHMAX} - -# nems.configure -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" -export coupling_interval_slow_sec=${CPL_SLOW} -export coupling_interval_fast_sec=${CPL_FAST} - -export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN -export INPUT_NML=input.mom6_ccpp.nml.IN - -export SUITE_NAME="FV3_GFS_2017_coupled" - -export ATMRES=C384 -export FRAC_GRID="T" -export CPLMODE="nems_frac" diff --git a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_ww3_cmeps_35d b/tests/tests/cpld_fv3_ccpp_384_mom6_cice_ww3_cmeps_35d deleted file mode 100644 index 05f63ecc94..0000000000 --- a/tests/tests/cpld_fv3_ccpp_384_mom6_cice_ww3_cmeps_35d +++ /dev/null @@ -1,80 +0,0 @@ -# -# CPLD_FV3_CCPP_384_MOM6_CICE_CMEPS_WW3_35D_BMARK_RT test -# - -export TEST_DESCR="Coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system" -export_35d_run -export_fv3 -export_cpl - -export SYEAR -export SMONTH -export SDAY="01" -export SHOUR="00" - -export DAYS="35" -export FHMAX="840" -export FDIAG="6" -export WLCLK=480 - -export DT_ATMOS="450" -export NPX="385" -export NPY="385" -export IMO="1536" -export JMO="768" -export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," -export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," -export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," -export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," - -export TASKS=866 -export TPN=40 -export INPES=6 -export JNPES=12 -export THRD=1 -export WRTTASK_PER_GROUP=24 - -export med_petlist_bounds="0 431" -export atm_petlist_bounds="0 455" -export ocn_petlist_bounds="456 695" -export ice_petlist_bounds="696 743" -export wav_petlist_bounds="744 865" - -# no high freq fv3 output -NFHMAX_HF='-1' -NFHOUT_HF='-1' - -# set component and coupling timesteps -export DT_CICE=${DT_ATMOS} -export CPL_SLOW=${DT_THERM_MOM6} -export CPL_FAST=${DT_ATMOS} - -# write a CICE restart at DAYS -export DUMPFREQ_N=${DAYS} -export DUMPFREQ="d" - -# CMEPS controls intervals in ALLCOMP -export RESTART_INTERVAL=${FHMAX} - -# nems.configure -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice_wav.IN" -export coupling_interval_slow_sec=${CPL_SLOW} -export coupling_interval_fast_sec=${CPL_FAST} -export MOM_INPUT=MOM_input_wave_template_${OCNRES} - -export FV3_RUN=cpld_fv3_mom6_cice_ww3_bmark_35d_run.IN -export INPUT_NML=input.benchmark_ccpp.nml.IN - -export FIELD_TABLE="field_table.gfdlmp" -export SUITE_NAME="FV3_GFS_v15p2_coupled" - -export OZ_PHYS_NEW=".T." - -export CPLWAV='.T.' -export CPLWAV2ATM='.T.' - -export RUNID="cpcice" -export MOM6_RESTART_SETTING="r" - -export ATMRES=C384 diff --git a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_restart b/tests/tests/cpld_restart similarity index 55% rename from tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_restart rename to tests/tests/cpld_restart index cb979df750..9285467aa7 100644 --- a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_restart +++ b/tests/tests/cpld_restart @@ -1,23 +1,24 @@ # -# CPLD_FV3_CCPP_MOM6_CICE_CMEPS_RESTART test -# +# cpld_restart test +# NOTE: test is not currently used; restarts are tested at c96mx025 -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - 1d restart" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - 12h restart" -export CNTL_DIR="RT-Baselines_3d_warm_ccpp_cmeps" +export CNTL_DIR="cpld_control" +export CNTLMED_DIR="cpld_control" -export LIST_FILES="phyf072.tile1.nc \ - phyf072.tile2.nc \ - phyf072.tile3.nc \ - phyf072.tile4.nc \ - phyf072.tile5.nc \ - phyf072.tile6.nc \ - dynf072.tile1.nc \ - dynf072.tile2.nc \ - dynf072.tile3.nc \ - dynf072.tile4.nc \ - dynf072.tile5.nc \ - dynf072.tile6.nc \ +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -51,54 +52,30 @@ export LIST_FILES="phyf072.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-06-00000.nc" - #ufs.s2s.cpl.r.2016-10-06-00000.nc" + RESTART/iced.2016-10-04-00000.nc " + #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl -export DAYS="1" -export FHMAX="72" -export FDIAG="6" -export WLCLK=30 +export DAYS="0.50" +export FHMAX="24" +export FV3_RESTART_H=12 +export FHROT='12' # ATM warm start -FHROT='48' WARM_START='.T.' MAKE_NH='.F.' NA_INIT='0' EXTERNAL_IC='.F.' NGGPS_IC='.F.' MOUNTAIN='.T.' + # ICE warm start RUNTYPE='continue' export USE_RESTART_TIME='.true.' -export MOM6_RESTART_SETTING="r" - -export MOM6_REPRO_LA='False' -export MOM6_THERMO_SPAN='False' - -# set component and coupling timesteps -export DT_CICE=${DT_ATMOS} -export CPL_SLOW=${DT_THERM_MOM6} -export CPL_FAST=${DT_ATMOS} -# write a CICE restart at DAYS -export DUMPFREQ_N=${DAYS} -export DUMPFREQ="d" - -# CMEPS controls intervals in ALLCOMP -export RESTART_INTERVAL='24' - -# nems.configure -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" -export coupling_interval_slow_sec=${CPL_SLOW} -export coupling_interval_fast_sec=${CPL_FAST} - -export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN -export INPUT_NML=input.mom6_ccpp.nml.IN +# MOM6 warm start +export MOM6_RESTART_SETTING="r" -export SUITE_NAME="FV3_GFS_2017_coupled" +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_mx025 b/tests/tests/cpld_restart_mx025 new file mode 100644 index 0000000000..a2e98357de --- /dev/null +++ b/tests/tests/cpld_restart_mx025 @@ -0,0 +1,127 @@ +# +# cpld_restart test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX025 - 12h restart" + +export CNTL_DIR="cpld_control_mx025" +export CNTLMED_DIR="cpld_control_mx025" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2016-10-04-00000.nc " + #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + +export_fv3 +export_cpl + +export DAYS="0.50" +export FHMAX="24" +export FV3_RESTART_H=12 +export FHROT='12' + +# replicate current tests; explicitly set values for c96/mx025 +export TASKS=$TASKS_cpl_c384 +export TPN=$TPN_cpl_c384 +export INPES=$INPES_cpl_c384 +export JNPES=$JNPES_cpl_c384 +export THRD=$THRD_cpl_c384 + +export WRTTASK_PER_GROUP=$WPG_cpl_c384 +export med_petlist_bounds=$MPB_cpl_c384 +export atm_petlist_bounds=$APB_cpl_c384 +export ocn_petlist_bounds=$OPB_cpl_c384 +export ice_petlist_bounds=$IPB_cpl_c384 + +# atm/ocn/ice resolution +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 + +export NPROC_ICE='48' + +# set component and coupling timesteps +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +export FRAC_GRID_INPUT='.F.' + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export MOM6_RIVER_RUNOFF='True' + +# ATM warm start +WARM_START='.T.' +MAKE_NH='.F.' +NA_INIT='0' +EXTERNAL_IC='.F.' +NGGPS_IC='.F.' +MOUNTAIN='.T.' + +# ICE warm start +RUNTYPE='continue' +export USE_RESTART_TIME='.true.' + +# MOM6 warm start +export MOM6_RESTART_SETTING="r" + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf b/tests/tests/cpld_satmedmf similarity index 70% rename from tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf rename to tests/tests/cpld_satmedmf index 414e3fa329..3ab2387a8e 100644 --- a/tests/tests/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf +++ b/tests/tests/cpld_satmedmf @@ -1,10 +1,11 @@ # -# CPLD_FV3_CCPP_MOM6_CICE_CMEPS_1D_SATMEDMF test +# cpld_satmedmf test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - satmedmf" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - satmedmf" -export CNTL_DIR="RT-Baselines_1d_warm_satmedmf_ccpp_cmeps" +export CNTL_DIR="cpld_satmedmf" +export CNTLMED_DIR="cpld_satmedmf" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ @@ -51,42 +52,16 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-04-00000.nc" - #ufs.s2s.cpl.r.2016-10-04-00000.nc" + RESTART/iced.2016-10-04-00000.nc " + #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl -export DAYS="1" -export FHMAX="24" -export FDIAG="6" -export WLCLK=30 - -# set component and coupling timesteps -export DT_CICE=${DT_ATMOS} -export CPL_SLOW=${DT_THERM_MOM6} -export CPL_FAST=${DT_ATMOS} - -# write a CICE restart at DAYS -export DUMPFREQ_N=${DAYS} -export DUMPFREQ="d" - -# CMEPS controls intervals in ALLCOMP -export RESTART_INTERVAL=${FHMAX} - -# nems.configure -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" -export coupling_interval_slow_sec=${CPL_SLOW} -export coupling_interval_fast_sec=${CPL_FAST} - -export FV3_RUN=cpld_fv3_mom6_cice_atm_flux_run.IN -export INPUT_NML=input.mom6_ccpp.nml.IN - export SATMEDMF='.true.' export HYBEDMF='.false.' export FIELD_TABLE='field_table_satmedmf' export SUITE_NAME='FV3_GFS_2017_satmedmf_coupled' + +export FV3_RUN=cpld_control_run.IN From 78da81244d089662138d184057f38902ce5c35a7 Mon Sep 17 00:00:00 2001 From: "denise.worthen" Date: Wed, 21 Oct 2020 09:27:00 -0400 Subject: [PATCH 008/109] add correct default vars for coupled model --- tests/default_vars.sh | 205 ++++++++++++++++++++++++++++-------------- 1 file changed, 140 insertions(+), 65 deletions(-) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 5b33e06dc5..7055ea2d8b 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -21,13 +21,13 @@ elif [ $MACHINE_ID = wcoss_dell_p3 ]; then TASKS_stretch=48 ; TPN_stretch=28 ; INPES_stretch=2 ; JNPES_stretch=4 TASKS_strnest=96 ; TPN_strnest=28 ; INPES_strnest=2 ; JNPES_strnest=4 - TASKS_cpl_dflt=318; TPN_cpl_dflt=28; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 + TASKS_cpl_dflt=192; TPN_cpl_dflt=28; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" - OPB_cpl_dflt="150 269"; IPB_cpl_dflt="270 317" + OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191" - TASKS_cpl_thrd=246; TPN_cpl_thrd=14; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 + TASKS_cpl_thrd=120; TPN_cpl_thrd=14; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" - OPB_cpl_thrd="78 197"; IPB_cpl_thrd="198 245" + OPB_cpl_thrd="78 107"; IPB_cpl_thrd="108 119" TASKS_cpl_bmrk=480; TPN_cpl_bmrk=28; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" @@ -37,6 +37,14 @@ elif [ $MACHINE_ID = wcoss_dell_p3 ]; then THRD_cpl_wwav=1; WPG_cpl_wwav=24; MPB_cpl_wwav="0 287"; APB_cpl_wwav="0 311" OPB_cpl_wwav="312 431"; IPB_cpl_wwav="432 479"; WPB_cpl_wwav="480 519" + TASKS_cpl_c192=288; TPN_cpl_c192=28; INPES_cpl_c192=4; JNPES_cpl_c192=8 + THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" + OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" + + TASKS_cpl_c384=318; TPN_cpl_c384=28; INPES_cpl_c384=3; JNPES_cpl_c384=8 + THRD_cpl_c384=1; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" + OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" + elif [[ $MACHINE_ID = orion.* ]]; then TASKS_dflt=150 ; TPN_dflt=40 ; INPES_dflt=3 ; JNPES_dflt=8 @@ -44,13 +52,13 @@ elif [[ $MACHINE_ID = orion.* ]]; then TASKS_stretch=48 ; TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 TASKS_strnest=96 ; TPN_strnest=12 ; INPES_strnest=2 ; JNPES_strnest=4 - TASKS_cpl_dflt=318; TPN_cpl_dflt=40; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 + TASKS_cpl_dflt=192; TPN_cpl_dflt=40; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" - OPB_cpl_dflt="150 269"; IPB_cpl_dflt="270 317" + OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191" - TASKS_cpl_thrd=246; TPN_cpl_thrd=40; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 + TASKS_cpl_thrd=120; TPN_cpl_thrd=40; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" - OPB_cpl_thrd="78 197"; IPB_cpl_thrd="198 245" + OPB_cpl_thrd="78 107"; IPB_cpl_thrd="108 119" TASKS_cpl_bmrk=480; TPN_cpl_bmrk=40; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" @@ -60,6 +68,14 @@ elif [[ $MACHINE_ID = orion.* ]]; then THRD_cpl_wwav=1; WPG_cpl_wwav=24; MPB_cpl_wwav="0 287"; APB_cpl_wwav="0 311" OPB_cpl_wwav="312 431"; IPB_cpl_wwav="432 479"; WPB_cpl_wwav="480 519" + TASKS_cpl_c192=288; TPN_cpl_c192=40; INPES_cpl_c192=4; JNPES_cpl_c192=8 + THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" + OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" + + TASKS_cpl_c384=318; TPN_cpl_c384=40; INPES_cpl_c384=3; JNPES_cpl_c384=8 + THRD_cpl_c384=1; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" + OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" + elif [[ $MACHINE_ID = hera.* ]]; then TASKS_dflt=150 ; TPN_dflt=40 ; INPES_dflt=3 ; JNPES_dflt=8 @@ -67,13 +83,13 @@ elif [[ $MACHINE_ID = hera.* ]]; then TASKS_stretch=48 ; TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 TASKS_strnest=96 ; TPN_strnest=12 ; INPES_strnest=2 ; JNPES_strnest=4 - TASKS_cpl_dflt=318; TPN_cpl_dflt=40; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 + TASKS_cpl_dflt=192; TPN_cpl_dflt=40; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" - OPB_cpl_dflt="150 269"; IPB_cpl_dflt="270 317" + OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191" - TASKS_cpl_thrd=246; TPN_cpl_thrd=40; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 + TASKS_cpl_thrd=120; TPN_cpl_thrd=40; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" - OPB_cpl_thrd="78 197"; IPB_cpl_thrd="198 245" + OPB_cpl_thrd="78 107"; IPB_cpl_thrd="108 119" TASKS_cpl_bmrk=480; TPN_cpl_bmrk=40; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" @@ -83,6 +99,14 @@ elif [[ $MACHINE_ID = hera.* ]]; then THRD_cpl_wwav=1; WPG_cpl_wwav=24; MPB_cpl_wwav="0 287"; APB_cpl_wwav="0 311" OPB_cpl_wwav="312 431"; IPB_cpl_wwav="432 479"; WPB_cpl_wwav="480 519" + TASKS_cpl_c192=288; TPN_cpl_c192=40; INPES_cpl_c192=4; JNPES_cpl_c192=8 + THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" + OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" + + TASKS_cpl_c384=318; TPN_cpl_c384=40; INPES_cpl_c384=3; JNPES_cpl_c384=8 + THRD_cpl_c384=1; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" + OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" + elif [[ $MACHINE_ID = linux.* ]]; then if [[ $CI_TEST = true ]]; then @@ -121,6 +145,29 @@ elif [[ $MACHINE_ID = stampede.* ]]; then TASKS_thrd=84 ; TPN_thrd=24 ; INPES_thrd=3 ; JNPES_thrd=4 TASKS_stretch=48 ; TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 + TASKS_cpl_dflt=192; TPN_cpl_dflt=48; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 + THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" + OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191" + + TASKS_cpl_thrd=120; TPN_cpl_thrd=48; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 + THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" + OPB_cpl_thrd="78 107"; IPB_cpl_thrd="108 119" + + TASKS_cpl_bmrk=480; TPN_cpl_bmrk=48; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 + THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" + OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479" + + TASKS_cpl_wwav=520; TPN_cpl_wwav=48; INPES_cpl_wwav=6; JNPES_cpl_wwav=8 + THRD_cpl_wwav=1; WPG_cpl_wwav=24; MPB_cpl_wwav="0 287"; APB_cpl_wwav="0 311" + OPB_cpl_wwav="312 431"; IPB_cpl_wwav="432 479"; WPB_cpl_wwav="480 519" + + TASKS_cpl_c192=288; TPN_cpl_c192=40; INPES_cpl_c192=4; JNPES_cpl_c192=8 + THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" + OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" + + TASKS_cpl_c384=318; TPN_cpl_c384=48; INPES_cpl_c384=3; JNPES_cpl_c384=8 + THRD_cpl_c384=1; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" + OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" else echo "Unknown MACHINE_ID ${MACHINE_ID}" @@ -284,30 +331,67 @@ export_cpl () { export S2S=true +export DAYS="1" +export FHMAX="24" +export FDIAG="6" +export WLCLK=30 + +# default atm/ocn/ice resolution +export ATMRES='C96' +export OCNRES='100' +export ICERES='1.00' +export NX_GLB=360 +export NY_GLB=320 + +# default resources export TASKS=$TASKS_cpl_dflt export TPN=$TPN_cpl_dflt export INPES=$INPES_cpl_dflt export JNPES=$JNPES_cpl_dflt export THRD=$THRD_cpl_dflt - export WRTTASK_PER_GROUP=$WPG_cpl_dflt + export med_petlist_bounds=$MPB_cpl_dflt export atm_petlist_bounds=$APB_cpl_dflt export ocn_petlist_bounds=$OPB_cpl_dflt export ice_petlist_bounds=$IPB_cpl_dflt -export ATMRES='C96' -# default ice and ocean resolution -export OCNRES='025' -export ICERES='0.25' -export NX_GLB=1440 -export NY_GLB=1080 -export SUITE_NAME='' -export MED_restart_data='' -export INPUT_NML="input.mom6.nml.IN" +# component and coupling timesteps +export DT_ATMOS='900' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='1800' +export DT_THERM_MOM6='3600' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure defaults +export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" +export med_model="nems" +export atm_model="fv3" +export ocn_model="mom6" +export ice_model="cice6" +export wav_model="ww3" + +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FV3_RESTART_H=${FHMAX} +export CPLMODE='nems_orig' +export cap_dbug_flag="0" +export use_coldstart="false" +export RUNTYPE='startup' + +# FV3 defaults +# to use new oro and ics created from 1deg ocean mask on c96 tiles +# set frac_grid=.F. but FRAC_GRID_INPUT=.T. +# to repro existing tests set both frac_grid and FRAC_GRID_INPUT to .F. +# to run frac_grid, set both frac_grid and FRAC_GRID_INPUTs to .T. +export FRAC_GRID='.F.' +export FRAC_GRID_INPUT='.T.' +export SUITE_NAME="FV3_GFS_2017_coupled" +export INPUT_NML=input.mom6_ccpp.nml.IN export FIELD_TABLE="field_table" -#export FV3_RESTART_INTERVAL='0' -export RESTART_INTERVAL='0' + export FHROT='0' export NSOUT='-1' export FDIAG='6' @@ -315,59 +399,50 @@ export NFHOUT='6' #no high freq fv3 output export NFHMAX_HF='-1' export NFHOUT_HF='-1' + export CPLFLX='.T.' export CPL='.true.' -export FRAC_GRID='.F.' export NSTF_NAME='0,0,0,0,0' + +# for FV3: default values will be changed if doing a warm-warm restart +export WARM_START='.F.' +export MAKE_NH='.T.' +export NA_INIT='1' +export EXTERNAL_IC='.T.' +export NGGPS_IC='.T.' +export MOUNTAIN='.F.' + +# MOM6 defaults; 1 degree +export MOM_INPUT=MOM_input_template_100 export MOM6_RESTART_SETTING='n' -export med_model="nems" -export atm_model="fv3" -export ocn_model="mom6" -export ice_model="cice6" -export wav_model="ww3" -export cap_dbug_flag="0" -export use_coldstart="false" -# MOM6 river runoff -export MOM6_RIVER_RUNOFF='True' -# set USE_LA_LI2016 to the current default; this must be set False for restart repro -export MOM6_REPRO_LA='True' -# set the THERMO_SPANS_COUPLING to the current default; according to Gustavo and Alper, the correct setting is "False" -export MOM6_THERMO_SPAN='True' -export NPROC_ICE='48' -export DT_ATMOS='900' #needed for C96 cases -export DT_DYNAM_MOM6='900' -export DT_THERM_MOM6='1800' -export MOM_INPUT=MOM_input_template_025 -# defaults for CICE runtype and restart writing -export RUNTYPE='startup' -export DUMPFREQ='d' -export DUMPFREQ_N='35' -export USE_RESTART_TIME='.false.' -# set false for CICE6 -export RESTART_EXT='.false' -# resolution dependent files +export MOM6_RIVER_RUNOFF='False' +export FRUNOFF="" +export CHLCLIM="seawifs_1998-2006_smoothed_2X.nc" +# this must be set False for restart repro +export MOM6_REPRO_LA='False' +# since CPL_SLOW is set to DT_THERM, this should be always be false +export MOM6_THERMO_SPAN='False' +# no WW3 +export MOM6_USE_WAVES='False' + +# CICE6 defaults; 1 degree +export NPROC_ICE='12' export MESHICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" -export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" -export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" +export RUNID='unknown' +# set large; restart frequency now controlled by restart_n in nems.configure +export DUMPFREQ='d' +export DUMPFREQ_N=1000 +export USE_RESTART_TIME='.false.' +export RESTART_EXT='.false' # setting to true will allow Frazil FW and Salt to be # included in fluxes sent to ocean export FRAZIL_FWSALT='.true.' # default to write CICE average history files export CICE_HIST_AVG='.true.' -# default setting for runid -export RUNID='unknown' -# for FV3: default values will be changed if doing a warm-warm restart -export WARM_START='.F.' -export MAKE_NH='.T.' -export NA_INIT='1' -export EXTERNAL_IC='.T.' -export NGGPS_IC='.T.' -export MOUNTAIN='.F.' -export CPLMODE='nems_orig' -export RESTART_PREFIX='' -export RESTART_SUFFIX='' + +export RT35D='' } export_35d_run () { From a9393ce68667ea3cd2f2978b1532b42a2217ae76 Mon Sep 17 00:00:00 2001 From: "denise.worthen" Date: Wed, 21 Oct 2020 09:27:41 -0400 Subject: [PATCH 009/109] add correct edit_inputs for coupled model --- tests/edit_inputs.sh | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/tests/edit_inputs.sh b/tests/edit_inputs.sh index 5341bafa0d..8086ab962c 100755 --- a/tests/edit_inputs.sh +++ b/tests/edit_inputs.sh @@ -2,11 +2,6 @@ set -eu function edit_ice_in { - if [[ $DUMPFREQ == h ]]; then - DUMPFREQ_N=$(( DUMPFREQ_N*3600 )) - DUMPFREQ="s" - fi - jday=$(date -d "${SYEAR}-${SMONTH}-${SDAY} ${SHOUR}:00:00" +%j) istep0=$(( ((10#$jday-1)*86400 + 10#$SHOUR*3600) / DT_CICE )) @@ -42,13 +37,14 @@ function edit_mom_input { -e "s/MOM6_RIVER_RUNOFF/$MOM6_RIVER_RUNOFF/g" \ -e "s/MOM6_THERMO_SPAN/$MOM6_THERMO_SPAN/g" \ -e "s/MOM6_REPRO_LA/$MOM6_REPRO_LA/g" \ + -e "s/MOM6_USE_WAVES/$MOM6_USE_WAVES/g" \ -e "s/NX_GLB/$NX_GLB/g" \ -e "s/NY_GLB/$NY_GLB/g" \ - -e "s/CHLCLIM/$CHLCLIM/g" + -e "s/CHLCLIM/$CHLCLIM/g" } function edit_data_table { - sed -e "s/FRUNOFF/$FRUNOFF/g" + sed -e "s/FRUNOFF/$FRUNOFF/g" } function edit_diag_table { From c1731005b19f4ede7e6cc7b9fb622a12e4adc047 Mon Sep 17 00:00:00 2001 From: "denise.worthen" Date: Wed, 21 Oct 2020 09:30:27 -0400 Subject: [PATCH 010/109] remove incorrect fv3_conf files for coupled model and add correct ones --- ...ww3_bmark_35d_run.IN => cpld_bmark_run.IN} | 18 ++-- ...ce_atm_flux_run.IN => cpld_control_run.IN} | 30 +++---- .../cpld_fv3_mom6_cice_bmark_35d_run.IN | 53 ------------ .../cpld_fv3_mom6_cice_bmark_restart_run.IN | 82 ------------------- .../cpld_fv3_mom6_cice_bmark_rt_run.IN | 53 ------------ .../cpld_fv3_mom6_cice_ww3_bmark_rt_run.IN | 57 ------------- 6 files changed, 22 insertions(+), 271 deletions(-) rename tests/fv3_conf/{cpld_fv3_mom6_cice_ww3_bmark_35d_run.IN => cpld_bmark_run.IN} (83%) rename tests/fv3_conf/{cpld_fv3_mom6_cice_atm_flux_run.IN => cpld_control_run.IN} (72%) delete mode 100644 tests/fv3_conf/cpld_fv3_mom6_cice_bmark_35d_run.IN delete mode 100644 tests/fv3_conf/cpld_fv3_mom6_cice_bmark_restart_run.IN delete mode 100644 tests/fv3_conf/cpld_fv3_mom6_cice_bmark_rt_run.IN delete mode 100644 tests/fv3_conf/cpld_fv3_mom6_cice_ww3_bmark_rt_run.IN diff --git a/tests/fv3_conf/cpld_fv3_mom6_cice_ww3_bmark_35d_run.IN b/tests/fv3_conf/cpld_bmark_run.IN similarity index 83% rename from tests/fv3_conf/cpld_fv3_mom6_cice_ww3_bmark_35d_run.IN rename to tests/fv3_conf/cpld_bmark_run.IN index 24bb218f65..ad159842e6 100644 --- a/tests/fv3_conf/cpld_fv3_mom6_cice_ww3_bmark_35d_run.IN +++ b/tests/fv3_conf/cpld_bmark_run.IN @@ -1,4 +1,4 @@ -mkdir INPUT RESTART history MOM6_OUTPUT +mkdir INPUT RESTART history MOM6_OUTPUT if [[ $ATMRES == 'C96' ]]; then FV3_DIR=FV3_input_data @@ -42,8 +42,15 @@ cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . # WW3 fix/input -cp @[RTPWD]/WW3_input_data/mod_def.* . -cp @[RTPWD]/WW3_input_data/ww3_multi_35d.inp ww3_multi.inp +if [[ $CPLWAV == .T. && $CPLWAV2ATM == .T. ]]; then + cp @[RTPWD]/WW3_input_data/mod_def.* . + if [[ $RT35D == .T. ]]; then + cp @[RTPWD]/WW3_input_data/ww3_multi_35d.inp ww3_multi.inp + cp @[RTPWD]/${WW3_IC}/*.000000.restart.gwes_30m ./restart.gwes_30m + else + cp @[RTPWD]/WW3_input_data/ww3_multi.inp . + fi +fi # ICs cp @[RTPWD]/${FV3_IC}/sfc_data*.nc ./INPUT @@ -51,9 +58,4 @@ cp @[RTPWD]/${FV3_IC}/gfs_data*.nc ./INPUT cp @[RTPWD]/${MOM6_IC}/MOM*.nc ./INPUT # the BM ICs are still named cice5 and need to remain so until P5.0 is completed cp @[RTPWD]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc -cp @[RTPWD]/${WW3_IC}/*.000000.restart.gwes_30m ./restart.gwes_30m -# CCPP -if [[ ! $SUITE_NAME == '' ]]; then - cp ${PATHTR}/FV3/ccpp/suites/suite_@[SUITE_NAME].xml . -fi diff --git a/tests/fv3_conf/cpld_fv3_mom6_cice_atm_flux_run.IN b/tests/fv3_conf/cpld_control_run.IN similarity index 72% rename from tests/fv3_conf/cpld_fv3_mom6_cice_atm_flux_run.IN rename to tests/fv3_conf/cpld_control_run.IN index 08ba8d975d..4d8534fb17 100644 --- a/tests/fv3_conf/cpld_fv3_mom6_cice_atm_flux_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -1,4 +1,4 @@ -mkdir INPUT RESTART history MOM6_OUTPUT +mkdir INPUT RESTART history MOM6_OUTPUT if [[ $ATMRES == 'C96' ]]; then FV3_DIR=FV3_input_data @@ -23,7 +23,7 @@ cp @[RTPWD]/${FV3_DIR}/*grb . cp @[RTPWD]/${FV3_DIR}/@[FIELD_TABLE] ./field_table cp @[RTPWD]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT cp @[RTPWD]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT -if [ $FRAC_GRID = .F. ]; then +if [ ${FRAC_GRID_INPUT} = .F. ]; then cp @[RTPWD]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT else cp @[RTPWD]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/oro_data*.nc ./INPUT @@ -42,7 +42,7 @@ cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . # No restart if [ $WARM_START = .F. ]; then # ICs - if [ $FRAC_GRID = .F. ]; then + if [ ${FRAC_GRID_INPUT} = .F. ]; then cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_data*.nc ./INPUT cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_data*.nc ./INPUT else @@ -55,25 +55,19 @@ if [ $WARM_START = .F. ]; then # Restart else # Restart files - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/coupler.res ./INPUT - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/fv_*.nc ./INPUT - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/sfc_data*.nc ./INPUT - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/phy_data*.nc ./INPUT - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM*.nc ./INPUT + cp ../${DEP_RUN}/RESTART/coupler.res ./INPUT + cp ../${DEP_RUN}/RESTART/fv_*.nc ./INPUT + cp ../${DEP_RUN}/RESTART/sfc_data*.nc ./INPUT + cp ../${DEP_RUN}/RESTART/phy_data*.nc ./INPUT + cp ../${DEP_RUN}/RESTART/MOM*.nc ./INPUT # CMEPS restart and pointer files - #cp ${DEP_RUN}${RT_SUFFIX}/RESTART/ufs.s2s.cpl.r.2016-10-05-00000.nc . - cp ../${DEP_RUN}${RT_SUFFIX}/ufs.s2s.cpl.r.2016-10-05-00000.nc . - RFILE="ufs.s2s.cpl.r.2016-10-05-00000.nc" + cp ../${DEP_RUN}/RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc . + RFILE="ufs.cpld.cpl.r.2016-10-03-43200.nc" ls -1 ${RFILE}>rpointer.cpl # CICE restart and pointer files - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/iced.2016-10-05-00000.nc ./INPUT - RFILE="iced.2016-10-05-00000.nc" + cp ../${DEP_RUN}/RESTART/iced.2016-10-03-43200.nc ./INPUT + RFILE="iced.2016-10-03-43200.nc" ls -1 "./INPUT/"${RFILE}>ice.restart_file fi - -# CCPP -if [[ ! $SUITE_NAME == '' ]]; then - cp ${PATHTR}/FV3/ccpp/suites/suite_@[SUITE_NAME].xml . -fi diff --git a/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_35d_run.IN b/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_35d_run.IN deleted file mode 100644 index 8faec3dfdb..0000000000 --- a/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_35d_run.IN +++ /dev/null @@ -1,53 +0,0 @@ -mkdir INPUT RESTART history MOM6_OUTPUT - -if [[ $ATMRES == 'C96' ]]; then - FV3_DIR=FV3_input_data -else - FV3_DIR=FV3_input_data${ATMRES#C} -fi - -ICERES="${OCNRES:0:1}.${OCNRES:1}" - -BM_IC=BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR} -FV3_IC=${BM_IC}/gfs/@[ATMRES]/INPUT -MOM6_IC=${BM_IC}/mom6_da -CICE_IC=${BM_IC}/cpc - -# FV3 fixed input -cp @[RTPWD]/${FV3_DIR}/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_bm2/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . -if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/${FV3_DIR}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -elif [ $OZ_PHYS_OLD = .T. ]; then - cp @[RTPWD]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . -fi -cp @[RTPWD]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/${FV3_DIR}/*grb . -cp @[RTPWD]/${FV3_DIR}/@[FIELD_TABLE] ./field_table -cp @[RTPWD]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc -cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT - -# MOM6 fixed input -cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT - -# CICE fixed input -cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . - -# ICs -cp @[RTPWD]/${FV3_IC}/sfc_data*.nc ./INPUT -cp @[RTPWD]/${FV3_IC}/gfs_data*.nc ./INPUT -cp @[RTPWD]/${MOM6_IC}/MOM*.nc ./INPUT -# the BM ICs are still named cice5 and need to remain so until P5.0 is completed -cp @[RTPWD]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc - -# CCPP -if [[ ! $SUITE_NAME == '' ]]; then - cp ${PATHTR}/FV3/ccpp/suites/suite_@[SUITE_NAME].xml . -fi diff --git a/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_restart_run.IN b/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_restart_run.IN deleted file mode 100644 index b8a27e6353..0000000000 --- a/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_restart_run.IN +++ /dev/null @@ -1,82 +0,0 @@ -mkdir INPUT RESTART history MOM6_OUTPUT - -if [[ $ATMRES == 'C96' ]]; then - FV3_DIR=FV3_input_data -else - FV3_DIR=FV3_input_data${ATMRES#C} -fi - -ICERES="${OCNRES:0:1}.${OCNRES:1}" - -BM_IC=BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR} -FV3_IC=${BM_IC}/gfs/@[ATMRES]/INPUT -MOM6_IC=${BM_IC}/mom6_da -CICE_IC=${BM_IC}/cpc -RESTART_PREFIX=${SYEAR}${SMONTH}${SDAY}.${FHROT}0000. -RESTART_SUFFIX=.${SYEAR}-${SMONTH}-${SDAY}-${FHROT}-00-00 -RESTART_INPUTDIR=RT-Baselines_1d_bmrt_ccpp_cmeps -SECS=$((FHROT*3600)) - -# FV3 fixed input -cp @[RTPWD]/${FV3_DIR}/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_bm2/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . -if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/${FV3_DIR}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -elif [ $OZ_PHYS_OLD = .T. ]; then - cp @[RTPWD]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . -fi -cp @[RTPWD]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/${FV3_DIR}/*grb . -cp @[RTPWD]/${FV3_DIR}/@[FIELD_TABLE] ./field_table -cp @[RTPWD]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc -cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT - -# MOM6 fixed input -cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT - -# CICE fixed input -cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . - -# -# FIXME: need to copy in from just completed 1-d run, not baseline -# PREFIX and SUFFIX are known -# -# ICs: FV3 timestamped prefix -cp @[RTPWD]/${RESTART_INPUTDIR}/RESTART/${RESTART_PREFIX}* ./INPUT -RFILE="INPUT/${RESTART_PREFIX}" -for oldname in ${RFILE}*; do - lengthRFILE=${#RFILE} - newname=${oldname:$lengthRFILE} - mv $oldname INPUT/$newname -done - -# ICs: MOM6 timestamped suffix -cp @[RTPWD]/${RESTART_INPUTDIR}/RESTART/MOM.res${RESTART_SUFFIX}* ./INPUT -RFILE="INPUT/MOM.res${RESTART_SUFFIX}" -for oldname in ${RFILE}*; do - lengthRFILE=${#RFILE} - newname=${oldname:$lengthRFILE} - mv $oldname INPUT/"MOM.res"$newname -done - -# ICs: Mediator restart and pointer file -cp @[RTPWD]/${RESTART_INPUTDIR}/RESTART/ufs.s2s.cpl.r.${SYEAR}-${SMONTH}-${SDAY}-${SECS}.nc . -RFILE="ufs.s2s.cpl.r.${SYEAR}-${SMONTH}-${SDAY}-${SECS}.nc" -ls -1 ${RFILE}>rpointer.cpl - -# ICs: CICE restart and pointer file -cp @[RTPWD]/${RESTART_INPUTDIR}/RESTART/iced.${SYEAR}-${SMONTH}-${SDAY}-${SECS}.nc ./INPUT -RFILE="iced.${SYEAR}-${SMONTH}-${SDAY}-${SECS}.nc" -ls -1 "./INPUT/"${RFILE}>ice.restart_file - -# CCPP -if [[ ! $SUITE_NAME == '' ]]; then - cp ${PATHTR}/FV3/ccpp/suites/suite_@[SUITE_NAME].xml . -fi diff --git a/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_rt_run.IN b/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_rt_run.IN deleted file mode 100644 index 8faec3dfdb..0000000000 --- a/tests/fv3_conf/cpld_fv3_mom6_cice_bmark_rt_run.IN +++ /dev/null @@ -1,53 +0,0 @@ -mkdir INPUT RESTART history MOM6_OUTPUT - -if [[ $ATMRES == 'C96' ]]; then - FV3_DIR=FV3_input_data -else - FV3_DIR=FV3_input_data${ATMRES#C} -fi - -ICERES="${OCNRES:0:1}.${OCNRES:1}" - -BM_IC=BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR} -FV3_IC=${BM_IC}/gfs/@[ATMRES]/INPUT -MOM6_IC=${BM_IC}/mom6_da -CICE_IC=${BM_IC}/cpc - -# FV3 fixed input -cp @[RTPWD]/${FV3_DIR}/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_bm2/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . -if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/${FV3_DIR}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -elif [ $OZ_PHYS_OLD = .T. ]; then - cp @[RTPWD]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . -fi -cp @[RTPWD]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/${FV3_DIR}/*grb . -cp @[RTPWD]/${FV3_DIR}/@[FIELD_TABLE] ./field_table -cp @[RTPWD]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc -cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT - -# MOM6 fixed input -cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT - -# CICE fixed input -cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . - -# ICs -cp @[RTPWD]/${FV3_IC}/sfc_data*.nc ./INPUT -cp @[RTPWD]/${FV3_IC}/gfs_data*.nc ./INPUT -cp @[RTPWD]/${MOM6_IC}/MOM*.nc ./INPUT -# the BM ICs are still named cice5 and need to remain so until P5.0 is completed -cp @[RTPWD]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc - -# CCPP -if [[ ! $SUITE_NAME == '' ]]; then - cp ${PATHTR}/FV3/ccpp/suites/suite_@[SUITE_NAME].xml . -fi diff --git a/tests/fv3_conf/cpld_fv3_mom6_cice_ww3_bmark_rt_run.IN b/tests/fv3_conf/cpld_fv3_mom6_cice_ww3_bmark_rt_run.IN deleted file mode 100644 index f079f1692b..0000000000 --- a/tests/fv3_conf/cpld_fv3_mom6_cice_ww3_bmark_rt_run.IN +++ /dev/null @@ -1,57 +0,0 @@ -mkdir INPUT RESTART history MOM6_OUTPUT - -if [[ $ATMRES == 'C96' ]]; then - FV3_DIR=FV3_input_data -else - FV3_DIR=FV3_input_data${ATMRES#C} -fi - -ICERES="${OCNRES:0:1}.${OCNRES:1}" - -BM_IC=BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR} -FV3_IC=${BM_IC}/gfs/@[ATMRES]/INPUT -MOM6_IC=${BM_IC}/mom6_da -CICE_IC=${BM_IC}/cpc - -# FV3 fixed input -cp @[RTPWD]/${FV3_DIR}/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_bm2/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . -if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/${FV3_DIR}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -elif [ $OZ_PHYS_OLD = .T. ]; then - cp @[RTPWD]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . -fi -cp @[RTPWD]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/${FV3_DIR}/*grb . -cp @[RTPWD]/${FV3_DIR}/@[FIELD_TABLE] ./field_table -cp @[RTPWD]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc -cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT - -# MOM6 fixed input -cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT - -# CICE fixed input -cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . - -# WW3 fix/input -cp @[RTPWD]/WW3_input_data/mod_def.* . -cp @[RTPWD]/WW3_input_data/ww3_multi.inp . - -# ICs -cp @[RTPWD]/${FV3_IC}/sfc_data*.nc ./INPUT -cp @[RTPWD]/${FV3_IC}/gfs_data*.nc ./INPUT -cp @[RTPWD]/${MOM6_IC}/MOM*.nc ./INPUT -# the BM ICs are still named cice5 and need to remain so until P5.0 is completed -cp @[RTPWD]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc - -# CCPP -if [[ ! $SUITE_NAME == '' ]]; then - cp ${PATHTR}/FV3/ccpp/suites/suite_@[SUITE_NAME].xml . -fi From 5ed945954d284e1923530ee3f8bb819405ac69f1 Mon Sep 17 00:00:00 2001 From: "denise.worthen" Date: Wed, 21 Oct 2020 09:38:25 -0400 Subject: [PATCH 011/109] fix MOM_input templates and nems.configure for coupled model --- tests/parm/MOM_input_template_025 | 23 + ...ve_template_025 => MOM_input_template_050} | 129 ++- tests/parm/MOM_input_template_100 | 808 ++++++++++++++++++ .../nems.configure.medcmeps_atm_ocn_ice.IN | 6 +- ...nems.configure.medcmeps_atm_ocn_ice_wav.IN | 6 +- 5 files changed, 920 insertions(+), 52 deletions(-) rename tests/parm/{MOM_input_wave_template_025 => MOM_input_template_050} (92%) create mode 100644 tests/parm/MOM_input_template_100 diff --git a/tests/parm/MOM_input_template_025 b/tests/parm/MOM_input_template_025 index de9f09578f..f7ba839392 100644 --- a/tests/parm/MOM_input_template_025 +++ b/tests/parm/MOM_input_template_025 @@ -783,6 +783,29 @@ LT_ENHANCE = 3 ! [nondim] default = 0 ! 1 - Van Roekel et al. 2014/Li et al., 2016 ! 2 - Multiplied w/ adjusted La. ! 3 - Added w/ adjusted La. +USE_WAVES = MOM6_USE_WAVES ! [Boolean] default = False + ! If true, enables surface wave modules. +WAVE_METHOD = "SURFACE_BANDS" ! default = "EMPTY" + ! Choice of wave method, valid options include: + ! TEST_PROFILE - Prescribed from surface Stokes drift + ! and a decay wavelength. + ! SURFACE_BANDS - Computed from multiple surface values + ! and decay wavelengths. + ! DHH85 - Uses Donelan et al. 1985 empirical + ! wave spectrum with prescribed values. + ! LF17 - Infers Stokes drift profile from wind + ! speed following Li and Fox-Kemper 2017. +SURFBAND_SOURCE = "COUPLER" ! default = "EMPTY" + ! Choice of SURFACE_BANDS data mode, valid options include: + ! DATAOVERRIDE - Read from NetCDF using FMS DataOverride. + ! COUPLER - Look for variables from coupler pass + ! INPUT - Testing with fixed values. +STK_BAND_COUPLER = 3 ! default = 1 + ! STK_BAND_COUPLER is the number of Stokes drift bands in the coupler. This has + ! to be consistent with the number of Stokes drift bands in WW3, or the model + ! will fail. +SURFBAND_WAVENUMBERS = 0.04, 0.11, 0.3305 ! [rad/m] default = 0.12566 + ! Central wavenumbers for surface Stokes drift bands. LT_ENHANCE_COEF = 0.044 ! [nondim] default = 0.447 ! Coefficient for Langmuir enhancement if LT_ENHANCE > 1 LT_ENHANCE_EXP = -1.5 ! [nondim] default = -1.33 diff --git a/tests/parm/MOM_input_wave_template_025 b/tests/parm/MOM_input_template_050 similarity index 92% rename from tests/parm/MOM_input_wave_template_025 rename to tests/parm/MOM_input_template_050 index 00a0fbadbd..481dcb2454 100644 --- a/tests/parm/MOM_input_wave_template_025 +++ b/tests/parm/MOM_input_template_050 @@ -2,7 +2,7 @@ the Modular Ocean Model (MOM6), a numerical ocean model developed at NOAA-GFDL. Where appropriate, parameters use usually given in MKS units. - This particular file is for the example in OM4_025. + This particular file is for the example in OM4_05. This MOM_input file typically contains only the non-default values that are needed to reproduce this example. A full list of parameters for this example @@ -24,14 +24,14 @@ DT = DT_DYNAM_MOM6 ! [s] ! is actually used will be an integer fraction of the ! forcing time-step (DT_FORCING in ocean-only mode or the ! coupling timestep in coupled mode.) -DT_THERM = DT_THERM_MOM6 ! [s] default = 900.0 +DT_THERM = DT_THERM_MOM6 ! [s] default = 1800.0 ! The thermodynamic and tracer advection time step. ! Ideally DT_THERM should be an integer multiple of DT ! and less than the forcing or coupling time-step, unless ! THERMO_SPANS_COUPLING is true, in which case DT_THERM ! can be an integer multiple of the coupling timestep. By ! default DT_THERM is set to DT. -THERMO_SPANS_COUPLING = True ! [Boolean] default = False +THERMO_SPANS_COUPLING = MOM6_THERMO_SPAN ! [Boolean] default = False ! If true, the MOM will take thermodynamic and tracer ! timesteps that can be longer than the coupling timestep. ! The actual thermodynamic timestep that is used in this @@ -40,7 +40,7 @@ THERMO_SPANS_COUPLING = True ! [Boolean] default = False HFREEZE = 20.0 ! [m] default = -1.0 ! If HFREEZE > 0, melt potential will be computed. The actual depth ! over which melt potential is computed will be min(HFREEZE, OBLD) - ! where OBLD is the boundary layer depth. If HFREEZE <= 0 (default) + ! where OBLD is the boundary layer depth. If HFREEZE <= 0 (default) ! melt potential will not be computed. FRAZIL = True ! [Boolean] default = False ! If true, water freezes if it gets too cold, and the @@ -66,7 +66,7 @@ BAD_VAL_SSH_MAX = 50.0 ! [m] default = 20.0 BAD_VAL_SSS_MAX = 75.0 ! [PPT] default = 45.0 ! The value of SSS above which a bad value message is ! triggered, if CHECK_BAD_SURFACE_VALS is true. -BAD_VAL_SST_MAX = 65.0 ! [deg C] default = 45.0, PTripp: changed from 55.0 on 12/28/2017 +BAD_VAL_SST_MAX = 55.0 ! [deg C] default = 45.0 ! The value of SST above which a bad value message is ! triggered, if CHECK_BAD_SURFACE_VALS is true. BAD_VAL_SST_MIN = -3.0 ! [deg C] default = -2.1 @@ -77,6 +77,10 @@ WRITE_GEOM = 2 ! default = 1 ! If =1, write the geometry and vertical grid files only for ! a new simulation. If =2, always write the geometry and ! vertical grid files. Other values are invalid. +SAVE_INITIAL_CONDS = True ! [Boolean] default = False + ! If true, write the initial conditions to a file given by IC_OUTPUT_FILE. +IC_OUTPUT_FILE = "MOM_IC" ! default = "MOM_IC" + ! The file into which to write the initial conditions. ! === module MOM_domains === TRIPOLAR_N = True ! [Boolean] default = False @@ -135,6 +139,7 @@ TOPO_CONFIG = "file" ! ! DOME2D gravity current/overflow test case. ! Kelvin - flat but with rotated land mask. ! seamount - Gaussian bump for spontaneous motion test case. + ! dumbbell - Sloshing channel with reservoirs on both ends. ! shelfwave - exponential slope for shelfwave test case. ! supercritical - flat but with 8.95 degree land mask. ! Phillips - ACC-like idealized topography used in the Phillips config. @@ -142,8 +147,6 @@ TOPO_CONFIG = "file" ! ! USER - call a user modified routine. TOPO_FILE = "ocean_topog.nc" ! default = "topog.nc" ! The file from which the bathymetry is read. -TOPO_EDITS_FILE = "All_edits.nc" ! default = "" - ! The file from which to read a list of i,j,z topography overrides. MAXIMUM_DEPTH = 6500.0 ! [m] ! The maximum depth of the ocean. MINIMUM_DEPTH = 9.5 ! [m] default = 0.0 @@ -152,13 +155,12 @@ MINIMUM_DEPTH = 9.5 ! [m] default = 0.0 ! If MASKING_DEPTH is specified, then all depths shallower than ! MINIMUM_DEPTH but deeper than MASKING_DEPTH are rounded to MINIMUM_DEPTH. GRID_ROTATION_ANGLE_BUGS = False ! [Boolean] default = True - ! If true, use an older algorithm to calculate the sine and + ! If true, use an older algorithm to calculate the sine and ! cosines needed rotate between grid-oriented directions and ! true north and east. Differences arise at the tripolar fold USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = True - ! If true, use older code that incorrectly sets the longitude + ! If true, use older code that incorrectly sets the longitude ! in some points along the tripolar fold to be off by 360 degrees - ! === module MOM_open_boundary === ! Controls where open boundaries are located, what kind of boundary condition to impose, and what data to apply, if any. MASKING_DEPTH = 0.0 ! [m] default = -9999.0 @@ -322,7 +324,7 @@ Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False ! === module MOM_diag_mediator === !Jiande NUM_DIAG_COORDS = 2 ! default = 1 -NUM_DIAG_COORDS = 1 +NUM_DIAG_COORDS = 1 ! default = 1 ! The number of diagnostic vertical coordinates to use. ! For each coordinate, an entry in DIAG_COORDS must be provided. !Jiande DIAG_COORDS = "z Z ZSTAR", "rho2 RHO2 RHO" ! @@ -359,8 +361,17 @@ MEKE_GMCOEFF = 1.0 ! [nondim] default = -1.0 ! used or calculated. MEKE_BGSRC = 1.0E-13 ! [W kg-1] default = 0.0 ! A background energy source for MEKE. +MEKE_KHTH_FAC = 0.5 ! [nondim] default = 0.0 + ! A factor that maps MEKE%Kh to KhTh. +MEKE_KHTR_FAC = 0.5 ! [nondim] default = 0.0 + ! A factor that maps MEKE%Kh to KhTr. MEKE_KHMEKE_FAC = 1.0 ! [nondim] default = 0.0 ! A factor that maps MEKE%Kh to Kh for MEKE itself. +MEKE_VISCOSITY_COEFF_KU = 1.0 ! [nondim] default = 0.0 + ! If non-zero, is the scaling coefficient in the expression for + ! viscosity used to parameterize lateral momentum mixing by + ! unresolved eddies represented by MEKE. Can be negative to + ! represent backscatter from the unresolved eddies. MEKE_ALPHA_RHINES = 0.15 ! [nondim] default = 0.05 ! If positive, is a coefficient weighting the Rhines scale ! in the expression for mixing length used in MEKE-derived diffusiviity. @@ -383,6 +394,9 @@ RESOLN_SCALED_KHTH = True ! [Boolean] default = False ! If true, the interface depth diffusivity is scaled away ! when the first baroclinic deformation radius is well ! resolved. +KHTH_USE_EBT_STRUCT = True ! [Boolean] default = False + ! If true, uses the equivalent barotropic structure + ! as the vertical structure of thickness diffusivity. KHTR_SLOPE_CFF = 0.25 ! [nondim] default = 0.0 ! The nondimensional coefficient in the Visbeck formula ! for the epipycnal tracer diffusivity @@ -390,6 +404,11 @@ USE_STORED_SLOPES = True ! [Boolean] default = False ! If true, the isopycnal slopes are calculated once and ! stored for re-use. This uses more memory but avoids calling ! the equation of state more times than should be necessary. +KH_RES_FN_POWER = 100 ! [nondim] default = 2 + ! The power of dx/Ld in the Kh resolution function. Any + ! positive integer may be used, although even integers + ! are more efficient to calculate. Setting this greater + ! than 100 results in a step-function being used. INTERPOLATE_RES_FN = False ! [Boolean] default = True ! If true, interpolate the resolution function to the ! velocity points from the thickness points; otherwise @@ -476,12 +495,26 @@ BOUND_CORIOLIS = True ! [Boolean] default = False ! === module MOM_PressureForce_AFV === MASS_WEIGHT_IN_PRESSURE_GRADIENT = True ! [Boolean] default = False - ! If true, use mass weighting when interpolation T/S for - ! top/bottom integrals in AFV pressure gradient calculation. + ! If true, use mass weighting when interpolating T/S for + ! integrals near the bathymetry in AFV pressure gradient + ! calculations. ! === module MOM_hor_visc === LAPLACIAN = True ! [Boolean] default = False ! If true, use a Laplacian horizontal viscosity. +KH_VEL_SCALE = 0.01 ! [m s-1] default = 0.0 + ! The velocity scale which is multiplied by the grid + ! spacing to calculate the Laplacian viscosity. + ! The final viscosity is the largest of this scaled + ! viscosity, the Smagorinsky and Leith viscosities, and KH. +KH_SIN_LAT = 2000.0 ! [m2 s-1] default = 0.0 + ! The amplitude of a latidutinally-dependent background + ! viscosity of the form KH_SIN_LAT*(SIN(LAT)**KH_PWR_OF_SINE). +SMAGORINSKY_KH = True ! [Boolean] default = False + ! If true, use a Smagorinsky nonlinear eddy viscosity. +SMAG_LAP_CONST = 0.15 ! [nondim] default = 0.0 + ! The nondimensional Laplacian Smagorinsky constant, + ! often 0.15. AH_VEL_SCALE = 0.01 ! [m s-1] default = 0.0 ! The velocity scale which is multiplied by the cube of ! the grid spacing to calculate the biharmonic viscosity. @@ -558,6 +591,13 @@ KHTH_MAX_CFL = 0.1 ! [nondimensional] default = 0.8 ! marginally unstable value in a pure layered model, but ! much smaller numbers (e.g. 0.1) seem to work better for ! ALE-based models. +KHTH_USE_FGNV_STREAMFUNCTION = True ! [Boolean] default = False + ! If true, use the streamfunction formulation of + ! Ferrari et al., 2010, which effectively emphasizes + ! graver vertical modes by smoothing in the vertical. +FGNV_FILTER_SCALE = 0.1 ! [not defined] default = 1.0 + ! A coefficient scaling the vertical smoothing term in the + ! Ferrari et al., 2010, streamfunction formulation. ! === module MOM_mixed_layer_restrat === MIXEDLAYER_RESTRAT = True ! [Boolean] default = False @@ -574,7 +614,7 @@ FOX_KEMPER_ML_RESTRAT_COEF = 1.0 ! [nondim] default = 0.0 ! geostrophic kinetic energy or 1 plus the square of the ! grid spacing over the deformation radius, as detailed ! by Fox-Kemper et al. (2010) -MLE_FRONT_LENGTH = 500.0 ! [m] default = 0.0 +MLE_FRONT_LENGTH = 200.0 ! [m] default = 0.0 ! If non-zero, is the frontal-length scale used to calculate the ! upscaling of buoyancy gradients that is otherwise represented ! by the parameter FOX_KEMPER_ML_RESTRAT_COEF. If MLE_FRONT_LENGTH is @@ -590,16 +630,6 @@ MLE_MLD_DECAY_TIME = 2.592E+06 ! [s] default = 0.0 ! the MLD deepens below the current running-mean the running-mean ! is instantaneously set to the current MLD. -! === module MOM_diag_to_Z === -!Z_OUTPUT_GRID_FILE = "analysis_vgrid_lev35.v1.nc" ! default = "" -!Z_OUTPUT_GRID_FILE = "interpolate_zgrid_40L.nc" - ! The file that specifies the vertical grid for - ! depth-space diagnostics, or blank to disable - ! depth-space output. -!NK_ZSPACE (from file) = 35 ! [nondim] - ! The number of depth-space levels. This is determined - ! from the size of the variable zw in the output grid file. - ! === module MOM_diabatic_driver === ! The following parameters are used for diabatic processes. ENERGETICS_SFC_PBL = True ! [Boolean] default = False @@ -691,7 +721,7 @@ TKE_ITIDE_MAX = 0.1 ! [W m-2] default = 1000.0 READ_TIDEAMP = True ! [Boolean] default = False ! If true, read a file (given by TIDEAMP_FILE) containing ! the tidal amplitude with INT_TIDE_DISSIPATION. -TIDEAMP_FILE = "tidal_amplitude.v20140616.nc" ! default = "tideamp.nc" +TIDEAMP_FILE = "tidal_amplitude.nc" ! default = "tideamp.nc" ! The path to the file containing the spatially varying ! tidal amplitudes with INT_TIDE_DISSIPATION. H2_FILE = "ocean_topog.nc" ! @@ -773,7 +803,7 @@ EPBL_TRANSITION_SCALE = 0.01 ! [nondim] default = 0.1 ! A scale for the mixing length in the transition layer ! at the edge of the boundary layer as a fraction of the ! boundary layer thickness. The default is 0.1. -USE_LA_LI2016 = True ! [nondim] default = False +USE_LA_LI2016 = MOM6_REPRO_LA ! [nondim] default = False ! A logical to use the Li et al. 2016 (submitted) formula to ! determine the Langmuir number. LT_ENHANCE = 3 ! [nondim] default = 0 @@ -783,7 +813,7 @@ LT_ENHANCE = 3 ! [nondim] default = 0 ! 1 - Van Roekel et al. 2014/Li et al., 2016 ! 2 - Multiplied w/ adjusted La. ! 3 - Added w/ adjusted La. -USE_WAVES = True ! [Boolean] default = False +USE_WAVES = MOM6_USE_WAVES ! [Boolean] default = False ! If true, enables surface wave modules. WAVE_METHOD = "SURFACE_BANDS" ! default = "EMPTY" ! Choice of wave method, valid options include: @@ -830,10 +860,11 @@ VAR_PEN_SW = True ! [Boolean] default = False ! If true, use one of the CHL_A schemes specified by ! OPACITY_SCHEME to determine the e-folding depth of ! incoming short wave radiation. -CHL_FILE = CHLCLIM ! CHL_FILE is the file containing chl_a concentrations in +CHL_FILE = CHLCLIM ! CHL_FILE is the file containing chl_a concentrations in ! the variable CHL_A. It is used when VAR_PEN_SW and ! CHL_FROM_FILE are true. CHL_VARNAME = "chlor_a" ! default = "CHL_A" + ! Name of CHL_A variable in CHL_FILE. PEN_SW_NBANDS = 3 ! default = 1 ! The number of bands of penetrating shortwave radiation. @@ -845,29 +876,46 @@ TRACER_ADVECTION_SCHEME = "PPM:H3" ! default = "PLM" ! PPM - Piecewise Parabolic Method (Colella-Woodward) ! === module MOM_tracer_hor_diff === +KHTR = 50.0 ! [m2 s-1] default = 0.0 + ! The background along-isopycnal tracer diffusivity. CHECK_DIFFUSIVE_CFL = True ! [Boolean] default = False ! If true, use enough iterations the diffusion to ensure ! that the diffusive equivalent of the CFL limit is not ! violated. If false, always use 1 iteration. +MAX_TR_DIFFUSION_CFL = 2.0 ! [nondim] default = -1.0 + ! If positive, locally limit the along-isopycnal tracer + ! diffusivity to keep the diffusive CFL locally at or + ! below this value. The number of diffusive iterations + ! is often this value or the next greater integer. ! === module MOM_neutral_diffusion === ! This module implements neutral diffusion of tracers - +USE_NEUTRAL_DIFFUSION = True ! [Boolean] default = False + ! If true, enables the neutral diffusion module. ! === module ocean_model_init === OCEAN_SURFACE_STAGGER = "A" ! default = "C" ! A case-insensitive character string to indicate the ! staggering of the surface velocity field that is ! returned to the coupler. Valid values include ! 'A', 'B', or 'C'. +RESTART_CHECKSUMS_REQUIRED = False +! === module MOM_sum_output === +CALCULATE_APE = False ! [Boolean] default = True + ! If true, calculate the available potential energy of + ! the interfaces. Setting this to false reduces the + ! memory footprint of high-PE-count models dramatically. +MAXTRUNC = 100000 ! [truncations save_interval-1] default = 0 + ! The run will be stopped, and the day set to a very + ! large value if the velocity is truncated more than + ! MAXTRUNC times between energy saves. Set MAXTRUNC to 0 + ! to stop if there is any truncation of velocities. ENERGYSAVEDAYS = 1.00 ! [days] default = 1.0 ! The interval in units of TIMEUNIT between saves of the ! energies of the run and other globally summed diagnostics. - -! === module ocean_model_init === -ICE_SHELF = False ! [Boolean] default = False - ! If true, enables the ice shelf model. -ICEBERGS_APPLY_RIGID_BOUNDARY = False ! [Boolean] default = False - ! If true, allows icebergs to change boundary condition felt by ocean +ENERGYSAVEDAYS_GEOMETRIC = 0.25 ! [days] default = 0.0 + ! The starting interval in units of TIMEUNIT for the first call + ! to save the energies of the run and other globally summed diagnostics. + ! The interval increases by a factor of 2. after each call to write_energy. ! === module MOM_surface_forcing === MAX_P_SURF = 0.0 ! [Pa] default = -1.0 @@ -895,16 +943,5 @@ LIQUID_RUNOFF_FROM_DATA = MOM6_RIVER_RUNOFF ! [Boolean] default = False ! If true, allows liquid river runoff to be specified via ! the data_table using the component name 'OCN'. ! === module MOM_restart === -RESTART_CHECKSUMS_REQUIRED = False -! === module MOM_sum_output === -CALCULATE_APE = False ! [Boolean] default = True - ! If true, calculate the available potential energy of - ! the interfaces. Setting this to false reduces the - ! memory footprint of high-PE-count models dramatically. -MAXTRUNC = 100000 ! [truncations save_interval-1] default = 0 - ! The run will be stopped, and the day set to a very - ! large value if the velocity is truncated more than - ! MAXTRUNC times between energy saves. Set MAXTRUNC to 0 - ! to stop if there is any truncation of velocities. ! === module MOM_file_parser === diff --git a/tests/parm/MOM_input_template_100 b/tests/parm/MOM_input_template_100 new file mode 100644 index 0000000000..976b5d69bc --- /dev/null +++ b/tests/parm/MOM_input_template_100 @@ -0,0 +1,808 @@ +! This file was written by the model and records all non-layout or debugging parameters used at run-time. + +! === module MOM === + +! === module MOM_unit_scaling === +! Parameters for doing unit scaling of variables. +USE_REGRIDDING = True ! [Boolean] default = False + ! If True, use the ALE algorithm (regridding/remapping). If False, use the + ! layered isopycnal algorithm. +THICKNESSDIFFUSE = True ! [Boolean] default = False + ! If true, interface heights are diffused with a coefficient of KHTH. +THICKNESSDIFFUSE_FIRST = True ! [Boolean] default = False + ! If true, do thickness diffusion before dynamics. This is only used if + ! THICKNESSDIFFUSE is true. +DT = DT_DYNAM_MOM6 ! [s] + ! The (baroclinic) dynamics time step. The time-step that is actually used will + ! be an integer fraction of the forcing time-step (DT_FORCING in ocean-only mode + ! or the coupling timestep in coupled mode.) +DT_THERM = DT_THERM_MOM6 ! [s] default = 1800.0 + ! The thermodynamic and tracer advection time step. Ideally DT_THERM should be + ! an integer multiple of DT and less than the forcing or coupling time-step, + ! unless THERMO_SPANS_COUPLING is true, in which case DT_THERM can be an integer + ! multiple of the coupling timestep. By default DT_THERM is set to DT. +THERMO_SPANS_COUPLING = MOM6_THERMO_SPAN ! [Boolean] default = False + ! If true, the MOM will take thermodynamic and tracer timesteps that can be + ! longer than the coupling timestep. The actual thermodynamic timestep that is + ! used in this case is the largest integer multiple of the coupling timestep + ! that is less than or equal to DT_THERM. +HFREEZE = 20.0 ! [m] default = -1.0 + ! If HFREEZE > 0, melt potential will be computed. The actual depth + ! over which melt potential is computed will be min(HFREEZE, OBLD) + ! where OBLD is the boundary layer depth. If HFREEZE <= 0 (default) + ! melt potential will not be computed. +DTBT_RESET_PERIOD = -1.0 ! [s] default = 7200.0 + ! The period between recalculations of DTBT (if DTBT <= 0). If DTBT_RESET_PERIOD + ! is negative, DTBT is set based only on information available at + ! initialization. If 0, DTBT will be set every dynamics time step. The default + ! is set by DT_THERM. This is only used if SPLIT is true. +FRAZIL = True ! [Boolean] default = False + ! If true, water freezes if it gets too cold, and the accumulated heat deficit + ! is returned in the surface state. FRAZIL is only used if + ! ENABLE_THERMODYNAMICS is true. +BOUND_SALINITY = True ! [Boolean] default = False + ! If true, limit salinity to being positive. (The sea-ice model may ask for more + ! salt than is available and drive the salinity negative otherwise.) +MIN_SALINITY = 0.01 ! [PPT] default = 0.0 + ! The minimum value of salinity when BOUND_SALINITY=True. +C_P = 3925.0 ! [J kg-1 K-1] default = 3991.86795711963 + ! The heat capacity of sea water, approximated as a constant. This is only used + ! if ENABLE_THERMODYNAMICS is true. The default value is from the TEOS-10 + ! definition of conservative temperature. +USE_PSURF_IN_EOS = False ! [Boolean] default = True + ! If true, always include the surface pressure contributions in equation of + ! state calculations. +CHECK_BAD_SURFACE_VALS = True ! [Boolean] default = False + ! If true, check the surface state for ridiculous values. +BAD_VAL_SSH_MAX = 50.0 ! [m] default = 20.0 + ! The value of SSH above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +BAD_VAL_SSS_MAX = 75.0 ! [PPT] default = 45.0 + ! The value of SSS above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +BAD_VAL_SST_MAX = 55.0 ! [deg C] default = 45.0 + ! The value of SST above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +BAD_VAL_SST_MIN = -3.0 ! [deg C] default = -2.1 + ! The value of SST below which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +DEFAULT_2018_ANSWERS = True ! [Boolean] default = False + ! This sets the default value for the various _2018_ANSWERS parameters. +WRITE_GEOM = 2 ! default = 1 + ! If =0, never write the geometry and vertical grid files. If =1, write the + ! geometry and vertical grid files only for a new simulation. If =2, always + ! write the geometry and vertical grid files. Other values are invalid. + +! === module MOM_domains === +TRIPOLAR_N = True ! [Boolean] default = False + ! Use tripolar connectivity at the northern edge of the domain. With + ! TRIPOLAR_N, NIGLOBAL must be even. +NIGLOBAL = NX_GLB ! + ! The total number of thickness grid points in the x-direction in the physical + ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. +NJGLOBAL = NY_GLB ! + ! The total number of thickness grid points in the y-direction in the physical + ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. + +! === module MOM_hor_index === +! Sets the horizontal array index types. + +! === module MOM_fixed_initialization === +INPUTDIR = "INPUT" ! default = "." + ! The directory in which input files are found. + +! === module MOM_grid_init === +GRID_CONFIG = "mosaic" ! + ! A character string that determines the method for defining the horizontal + ! grid. Current options are: + ! mosaic - read the grid from a mosaic (supergrid) + ! file set by GRID_FILE. + ! cartesian - use a (flat) Cartesian grid. + ! spherical - use a simple spherical grid. + ! mercator - use a Mercator spherical grid. +GRID_FILE = "ocean_hgrid.nc" ! + ! Name of the file from which to read horizontal grid data. +GRID_ROTATION_ANGLE_BUGS = False ! [Boolean] default = True + ! If true, use an older algorithm to calculate the sine and + ! cosines needed rotate between grid-oriented directions and + ! true north and east. Differences arise at the tripolar fold +USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = False + ! If true, use older code that incorrectly sets the longitude in some points + ! along the tripolar fold to be off by 360 degrees. +TOPO_CONFIG = "file" ! + ! This specifies how bathymetry is specified: + ! file - read bathymetric information from the file + ! specified by (TOPO_FILE). + ! flat - flat bottom set to MAXIMUM_DEPTH. + ! bowl - an analytically specified bowl-shaped basin + ! ranging between MAXIMUM_DEPTH and MINIMUM_DEPTH. + ! spoon - a similar shape to 'bowl', but with an vertical + ! wall at the southern face. + ! halfpipe - a zonally uniform channel with a half-sine + ! profile in the meridional direction. + ! bbuilder - build topography from list of functions. + ! benchmark - use the benchmark test case topography. + ! Neverworld - use the Neverworld test case topography. + ! DOME - use a slope and channel configuration for the + ! DOME sill-overflow test case. + ! ISOMIP - use a slope and channel configuration for the + ! ISOMIP test case. + ! DOME2D - use a shelf and slope configuration for the + ! DOME2D gravity current/overflow test case. + ! Kelvin - flat but with rotated land mask. + ! seamount - Gaussian bump for spontaneous motion test case. + ! dumbbell - Sloshing channel with reservoirs on both ends. + ! shelfwave - exponential slope for shelfwave test case. + ! Phillips - ACC-like idealized topography used in the Phillips config. + ! dense - Denmark Strait-like dense water formation and overflow. + ! USER - call a user modified routine. +TOPO_EDITS_FILE = "topo_edits_011818.nc" ! default = "" + ! The file from which to read a list of i,j,z topography overrides. +MAXIMUM_DEPTH = 6500.0 ! [m] + ! The maximum depth of the ocean. +MINIMUM_DEPTH = 9.5 ! [m] default = 0.0 + ! If MASKING_DEPTH is unspecified, then anything shallower than MINIMUM_DEPTH is + ! assumed to be land and all fluxes are masked out. If MASKING_DEPTH is + ! specified, then all depths shallower than MINIMUM_DEPTH but deeper than + ! MASKING_DEPTH are rounded to MINIMUM_DEPTH. + +! === module MOM_open_boundary === +! Controls where open boundaries are located, what kind of boundary condition to impose, and what data to apply, +! if any. +MASKING_DEPTH = 0.0 ! [m] default = -9999.0 + ! The depth below which to mask points as land points, for which all fluxes are + ! zeroed out. MASKING_DEPTH is ignored if negative. +CHANNEL_CONFIG = "list" ! default = "none" + ! A parameter that determines which set of channels are + ! restricted to specific widths. Options are: + ! none - All channels have the grid width. + ! global_1deg - Sets 16 specific channels appropriate + ! for a 1-degree model, as used in CM2G. + ! list - Read the channel locations and widths from a + ! text file, like MOM_channel_list in the MOM_SIS + ! test case. + ! file - Read open face widths everywhere from a + ! NetCDF file on the model grid. +CHANNEL_LIST_FILE = "MOM_channels_SPEAR" ! default = "MOM_channel_list" + ! The file from which the list of narrowed channels is read. + +! === module MOM_verticalGrid === +! Parameters providing information about the vertical grid. +NK = 75 ! [nondim] + ! The number of model layers. + +! === module MOM_tracer_registry === + +! === module MOM_EOS === +TFREEZE_FORM = "MILLERO_78" ! default = "LINEAR" + ! TFREEZE_FORM determines which expression should be used for the freezing + ! point. Currently, the valid choices are "LINEAR", "MILLERO_78", "TEOS10" + +! === module MOM_restart === +PARALLEL_RESTARTFILES = True ! [Boolean] default = False + ! If true, each processor writes its own restart file, otherwise a single + ! restart file is generated + +! === module MOM_tracer_flow_control === +USE_IDEAL_AGE_TRACER = False ! [Boolean] default = False + ! If true, use the ideal_age_example tracer package. + +! === module ideal_age_example === + +! === module MOM_coord_initialization === +COORD_CONFIG = "file" ! default = "none" + ! This specifies how layers are to be defined: + ! ALE or none - used to avoid defining layers in ALE mode + ! file - read coordinate information from the file + ! specified by (COORD_FILE). + ! BFB - Custom coords for buoyancy-forced basin case + ! based on SST_S, T_BOT and DRHO_DT. + ! linear - linear based on interfaces not layers + ! layer_ref - linear based on layer densities + ! ts_ref - use reference temperature and salinity + ! ts_range - use range of temperature and salinity + ! (T_REF and S_REF) to determine surface density + ! and GINT calculate internal densities. + ! gprime - use reference density (RHO_0) for surface + ! density and GINT calculate internal densities. + ! ts_profile - use temperature and salinity profiles + ! (read from COORD_FILE) to set layer densities. + ! USER - call a user modified routine. +COORD_FILE = "layer_coord.nc" ! + ! The file from which the coordinate densities are read. +REMAP_UV_USING_OLD_ALG = True ! [Boolean] default = False + ! If true, uses the old remapping-via-a-delta-z method for remapping u and v. If + ! false, uses the new method that remaps between grids described by an old and + ! new thickness. +REGRIDDING_COORDINATE_MODE = "HYCOM1" ! default = "LAYER" + ! Coordinate mode for vertical regridding. Choose among the following + ! possibilities: LAYER - Isopycnal or stacked shallow water layers + ! ZSTAR, Z* - stretched geopotential z* + ! SIGMA_SHELF_ZSTAR - stretched geopotential z* ignoring shelf + ! SIGMA - terrain following coordinates + ! RHO - continuous isopycnal + ! HYCOM1 - HyCOM-like hybrid coordinate + ! SLIGHT - stretched coordinates above continuous isopycnal + ! ADAPTIVE - optimize for smooth neutral density surfaces +BOUNDARY_EXTRAPOLATION = True ! [Boolean] default = False + ! When defined, a proper high-order reconstruction scheme is used within + ! boundary cells rather than PCM. E.g., if PPM is used for remapping, a PPM + ! reconstruction will also be used within boundary cells. +ALE_COORDINATE_CONFIG = "HYBRID:hycom1_75_800m.nc,sigma2,FNC1:2,4000,4.5,.01" ! default = "UNIFORM" + ! Determines how to specify the coordinate resolution. Valid options are: + ! PARAM - use the vector-parameter ALE_RESOLUTION + ! UNIFORM[:N] - uniformly distributed + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,dz + ! or FILE:lev.nc,interfaces=zw + ! WOA09[:N] - the WOA09 vertical grid (approximately) + ! FNC1:string - FNC1:dz_min,H_total,power,precision + ! HYBRID:string - read from a file. The string specifies + ! the filename and two variable names, separated + ! by a comma or space, for sigma-2 and dz. e.g. + ! HYBRID:vgrid.nc,sigma2,dz +!ALE_RESOLUTION = 7*2.0, 2*2.01, 2.02, 2.03, 2.05, 2.08, 2.11, 2.15, 2.21, 2.2800000000000002, 2.37, 2.48, 2.61, 2.77, 2.95, 3.17, 3.4299999999999997, 3.74, 4.09, 4.49, 4.95, 5.48, 6.07, 6.74, 7.5, 8.34, 9.280000000000001, 10.33, 11.49, 12.77, 14.19, 15.74, 17.450000000000003, 19.31, 21.35, 23.56, 25.97, 28.580000000000002, 31.41, 34.47, 37.77, 41.32, 45.14, 49.25, 53.65, 58.370000000000005, 63.42, 68.81, 74.56, 80.68, 87.21000000000001, 94.14, 101.51, 109.33, 117.62, 126.4, 135.68, 145.5, 155.87, 166.81, 178.35, 190.51, 203.31, 216.78, 230.93, 245.8, 261.42, 277.83 ! [m] + ! The distribution of vertical resolution for the target + ! grid used for Eulerian-like coordinates. For example, + ! in z-coordinate mode, the parameter is a list of level + ! thicknesses (in m). In sigma-coordinate mode, the list + ! is of non-dimensional fractions of the water column. +!TARGET_DENSITIES = 1010.0, 1014.3034, 1017.8088, 1020.843, 1023.5566, 1025.813, 1027.0275, 1027.9114, 1028.6422, 1029.2795, 1029.852, 1030.3762, 1030.8626, 1031.3183, 1031.7486, 1032.1572, 1032.5471, 1032.9207, 1033.2798, 1033.6261, 1033.9608, 1034.2519, 1034.4817, 1034.6774, 1034.8508, 1035.0082, 1035.1533, 1035.2886, 1035.4159, 1035.5364, 1035.6511, 1035.7608, 1035.8661, 1035.9675, 1036.0645, 1036.1554, 1036.2411, 1036.3223, 1036.3998, 1036.4739, 1036.5451, 1036.6137, 1036.68, 1036.7441, 1036.8062, 1036.8526, 1036.8874, 1036.9164, 1036.9418, 1036.9647, 1036.9857, 1037.0052, 1037.0236, 1037.0409, 1037.0574, 1037.0738, 1037.0902, 1037.1066, 1037.123, 1037.1394, 1037.1558, 1037.1722, 1037.1887, 1037.206, 1037.2241, 1037.2435, 1037.2642, 1037.2866, 1037.3112, 1037.3389, 1037.3713, 1037.4118, 1037.475, 1037.6332, 1037.8104, 1038.0 ! [m] + ! HYBRID target densities for interfaces +MAXIMUM_INT_DEPTH_CONFIG = "FNC1:5,8000.0,1.0,.01" ! default = "NONE" + ! Determines how to specify the maximum interface depths. + ! Valid options are: + ! NONE - there are no maximum interface depths + ! PARAM - use the vector-parameter MAXIMUM_INTERFACE_DEPTHS + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,Z + ! FNC1:string - FNC1:dz_min,H_total,power,precision +!MAXIMUM_INT_DEPTHS = 0.0, 5.0, 12.75, 23.25, 36.49, 52.480000000000004, 71.22, 92.71000000000001, 116.94000000000001, 143.92000000000002, 173.65, 206.13, 241.36, 279.33000000000004, 320.05000000000007, 363.5200000000001, 409.7400000000001, 458.7000000000001, 510.4100000000001, 564.8700000000001, 622.0800000000002, 682.0300000000002, 744.7300000000002, 810.1800000000003, 878.3800000000003, 949.3300000000004, 1023.0200000000004, 1099.4600000000005, 1178.6500000000005, 1260.5900000000006, 1345.2700000000007, 1432.7000000000007, 1522.8800000000008, 1615.8100000000009, 1711.490000000001, 1809.910000000001, 1911.080000000001, 2015.0000000000011, 2121.670000000001, 2231.080000000001, 2343.2400000000007, 2458.1500000000005, 2575.8100000000004, 2696.2200000000003, 2819.3700000000003, 2945.2700000000004, 3073.9200000000005, 3205.3200000000006, 3339.4600000000005, 3476.3500000000004, 3615.9900000000002, 3758.38, 3903.52, 4051.4, 4202.03, 4355.41, 4511.54, 4670.41, 4832.03, 4996.4, 5163.5199999999995, 5333.379999999999, 5505.989999999999, 5681.3499999999985, 5859.459999999998, 6040.319999999998, 6223.919999999998, 6410.269999999999, 6599.369999999999, 6791.219999999999, 6985.8099999999995, 7183.15, 7383.24, 7586.08, 7791.67, 8000.0 + ! The list of maximum depths for each interface. +MAX_LAYER_THICKNESS_CONFIG = "FNC1:400,31000.0,0.1,.01" ! default = "NONE" + ! Determines how to specify the maximum layer thicknesses. + ! Valid options are: + ! NONE - there are no maximum layer thicknesses + ! PARAM - use the vector-parameter MAX_LAYER_THICKNESS + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,Z + ! FNC1:string - FNC1:dz_min,H_total,power,precision +!MAX_LAYER_THICKNESS = 400.0, 409.63, 410.32, 410.75, 411.07, 411.32, 411.52, 411.7, 411.86, 412.0, 412.13, 412.24, 412.35, 412.45, 412.54, 412.63, 412.71, 412.79, 412.86, 412.93, 413.0, 413.06, 413.12, 413.18, 413.24, 413.29, 413.34, 413.39, 413.44, 413.49, 413.54, 413.58, 413.62, 413.67, 413.71, 413.75, 413.78, 413.82, 413.86, 413.9, 413.93, 413.97, 414.0, 414.03, 414.06, 414.1, 414.13, 414.16, 414.19, 414.22, 414.24, 414.27, 414.3, 414.33, 414.35, 414.38, 414.41, 414.43, 414.46, 414.48, 414.51, 414.53, 414.55, 414.58, 414.6, 414.62, 414.65, 414.67, 414.69, 414.71, 414.73, 414.75, 414.77, 414.79, 414.83 ! [m] + ! The list of maximum thickness for each layer. +REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" + ! This sets the reconstruction scheme used for vertical remapping for all + ! variables. It can be one of the following schemes: PCM (1st-order + ! accurate) + ! PLM (2nd-order accurate) + ! PPM_H4 (3rd-order accurate) + ! PPM_IH4 (3rd-order accurate) + ! PQM_IH4IH3 (4th-order accurate) + ! PQM_IH6IH5 (5th-order accurate) + +! === module MOM_grid === +! Parameters providing information about the lateral grid. + +! === module MOM_state_initialization === +INIT_LAYERS_FROM_Z_FILE = True ! [Boolean] default = False + ! If true, initialize the layer thicknesses, temperatures, and salinities from a + ! Z-space file on a latitude-longitude grid. + +! === module MOM_initialize_layers_from_Z === +TEMP_SALT_Z_INIT_FILE = "MOM6_IC_TS.nc" + ! The name of the z-space input file used to initialize + ! temperatures (T) and salinities (S). If T and S are not + ! in the same file, TEMP_Z_INIT_FILE and SALT_Z_INIT_FILE + ! must be set. +Z_INIT_FILE_PTEMP_VAR = "temp" ! default = "ptemp" + ! The name of the potential temperature variable in + ! TEMP_Z_INIT_FILE. +Z_INIT_FILE_SALT_VAR = "salt" ! default = "salt" + ! The name of the salinity variable in + ! SALT_Z_INIT_FILE. +Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False + ! If True, then remap straight to model coordinate from file. + +! === module MOM_diag_mediator === +!Jiande NUM_DIAG_COORDS = 2 ! default = 1 +NUM_DIAG_COORDS = 1 + ! The number of diagnostic vertical coordinates to use. + ! For each coordinate, an entry in DIAG_COORDS must be provided. +!Jiande DIAG_COORDS = "z Z ZSTAR", "rho2 RHO2 RHO" ! +DIAG_COORDS = "z Z ZSTAR" + ! A list of string tuples associating diag_table modules to + ! a coordinate definition used for diagnostics. Each string + ! is of the form "MODULE_SUFFIX,PARAMETER_SUFFIX,COORDINATE_NAME". +DIAG_COORD_DEF_Z="FILE:interpolate_zgrid_40L.nc,interfaces=zw" +DIAG_MISVAL = -1e34 +!Jiande DIAG_COORD_DEF_RHO2 = "RFNC1:35,999.5,1028,1028.5,8.,1038.,0.0078125" ! default = "WOA09" + ! Determines how to specify the coordinate + ! resolution. Valid options are: + ! PARAM - use the vector-parameter DIAG_COORD_RES_RHO2 + ! UNIFORM[:N] - uniformly distributed + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,dz + ! or FILE:lev.nc,interfaces=zw + ! WOA09[:N] - the WOA09 vertical grid (approximately) + ! FNC1:string - FNC1:dz_min,H_total,power,precision + ! HYBRID:string - read from a file. The string specifies + ! the filename and two variable names, separated + ! by a comma or space, for sigma-2 and dz. e.g. + ! HYBRID:vgrid.nc,sigma2,dz + +! === module MOM_MEKE === +USE_MEKE = True ! [Boolean] default = False + ! If true, turns on the MEKE scheme which calculates a sub-grid mesoscale eddy + ! kinetic energy budget. +MEKE_GMCOEFF = 1.0 ! [nondim] default = -1.0 + ! The efficiency of the conversion of potential energy into MEKE by the + ! thickness mixing parameterization. If MEKE_GMCOEFF is negative, this + ! conversion is not used or calculated. +MEKE_BGSRC = 1.0E-13 ! [W kg-1] default = 0.0 + ! A background energy source for MEKE. +MEKE_KHTH_FAC = 0.8 ! [nondim] default = 0.0 + ! A factor that maps MEKE%Kh to KhTh. +MEKE_KHTR_FAC = 0.8 ! [nondim] default = 0.0 + ! A factor that maps MEKE%Kh to KhTr. +MEKE_ALPHA_RHINES = 0.05 ! [nondim] default = 0.0 + ! If positive, is a coefficient weighting the Rhines scale in the expression for + ! mixing length used in MEKE-derived diffusivity. +MEKE_ALPHA_EADY = 0.05 ! [nondim] default = 0.0 + ! If positive, is a coefficient weighting the Eady length scale in the + ! expression for mixing length used in MEKE-derived diffusivity. + +! === module MOM_lateral_mixing_coeffs === +USE_VARIABLE_MIXING = True ! [Boolean] default = False + ! If true, the variable mixing code will be called. This allows diagnostics to + ! be created even if the scheme is not used. If KHTR_SLOPE_CFF>0 or + ! KhTh_Slope_Cff>0, this is set to true regardless of what is in the parameter + ! file. +RESOLN_SCALED_KH = True ! [Boolean] default = False + ! If true, the Laplacian lateral viscosity is scaled away when the first + ! baroclinic deformation radius is well resolved. +RESOLN_SCALED_KHTH = True ! [Boolean] default = False + ! If true, the interface depth diffusivity is scaled away when the first + ! baroclinic deformation radius is well resolved. +KHTR_SLOPE_CFF = 0.25 ! [nondim] default = 0.0 + ! The nondimensional coefficient in the Visbeck formula for the epipycnal tracer + ! diffusivity +USE_STORED_SLOPES = True ! [Boolean] default = False + ! If true, the isopycnal slopes are calculated once and stored for re-use. This + ! uses more memory but avoids calling the equation of state more times than + ! should be necessary. +KH_RES_FN_POWER = 100 ! [nondim] default = 2 + ! The power of dx/Ld in the Kh resolution function. Any positive integer may be + ! used, although even integers are more efficient to calculate. Setting this + ! greater than 100 results in a step-function being used. +!JW VISC_RES_FN_POWER = 2 ! [nondim] default = 100 + ! The power of dx/Ld in the Kh resolution function. Any positive integer may be + ! used, although even integers are more efficient to calculate. Setting this + ! greater than 100 results in a step-function being used. This function affects + ! lateral viscosity, Kh, and not KhTh. + +! === module MOM_set_visc === +CHANNEL_DRAG = True ! [Boolean] default = False + ! If true, the bottom drag is exerted directly on each layer proportional to the + ! fraction of the bottom it overlies. +HBBL = 10.0 ! [m] + ! The thickness of a bottom boundary layer with a viscosity of KVBBL if + ! BOTTOMDRAGLAW is not defined, or the thickness over which near-bottom + ! velocities are averaged for the drag law if BOTTOMDRAGLAW is defined but + ! LINEAR_DRAG is not. +DRAG_BG_VEL = 0.1 ! [m s-1] default = 0.0 + ! DRAG_BG_VEL is either the assumed bottom velocity (with LINEAR_DRAG) or an + ! unresolved velocity that is combined with the resolved velocity to estimate + ! the velocity magnitude. DRAG_BG_VEL is only used when BOTTOMDRAGLAW is + ! defined. +BBL_USE_EOS = True ! [Boolean] default = False + ! If true, use the equation of state in determining the properties of the bottom + ! boundary layer. Otherwise use the layer target potential densities. +BBL_THICK_MIN = 0.1 ! [m] default = 0.0 + ! The minimum bottom boundary layer thickness that can be used with + ! BOTTOMDRAGLAW. This might be Kv/(cdrag*drag_bg_vel) to give Kv as the minimum + ! near-bottom viscosity. +KV = 1.0E-04 ! [m2 s-1] + ! The background kinematic viscosity in the interior. The molecular value, ~1e-6 + ! m2 s-1, may be used. +KV_BBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 + ! The minimum viscosities in the bottom boundary layer. +KV_TBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 + ! The minimum viscosities in the top boundary layer. + +! === module MOM_thickness_diffuse === +USE_GM_WORK_BUG = True ! [Boolean] default = False + ! If true, compute the top-layer work tendency on the u-grid with the incorrect + ! sign, for legacy reproducibility. + +! === module MOM_dynamics_split_RK2 === + +! === module MOM_continuity === + +! === module MOM_continuity_PPM === +ETA_TOLERANCE = 1.0E-06 ! [m] default = 3.75E-09 + ! The tolerance for the differences between the barotropic and baroclinic + ! estimates of the sea surface height due to the fluxes through each face. The + ! total tolerance for SSH is 4 times this value. The default is + ! 0.5*NK*ANGSTROM, and this should not be set less than about + ! 10^-15*MAXIMUM_DEPTH. +ETA_TOLERANCE_AUX = 0.001 ! [m] default = 1.0E-06 + ! The tolerance for free-surface height discrepancies between the barotropic + ! solution and the sum of the layer thicknesses when calculating the auxiliary + ! corrected velocities. By default, this is the same as ETA_TOLERANCE, but can + ! be made larger for efficiency. + +! === module MOM_CoriolisAdv === +CORIOLIS_SCHEME = "SADOURNY75_ENSTRO" ! default = "SADOURNY75_ENERGY" + ! CORIOLIS_SCHEME selects the discretization for the Coriolis terms. Valid + ! values are: + ! SADOURNY75_ENERGY - Sadourny, 1975; energy cons. + ! ARAKAWA_HSU90 - Arakawa & Hsu, 1990 + ! SADOURNY75_ENSTRO - Sadourny, 1975; enstrophy cons. + ! ARAKAWA_LAMB81 - Arakawa & Lamb, 1981; En. + Enst. + ! ARAKAWA_LAMB_BLEND - A blend of Arakawa & Lamb with + ! Arakawa & Hsu and Sadourny energy +BOUND_CORIOLIS = True ! [Boolean] default = False + ! If true, the Coriolis terms at u-points are bounded by the four estimates of + ! (f+rv)v from the four neighboring v-points, and similarly at v-points. This + ! option would have no effect on the SADOURNY Coriolis scheme if it were + ! possible to use centered difference thickness fluxes. + +! === module MOM_PressureForce === + +! === module MOM_PressureForce_AFV === +MASS_WEIGHT_IN_PRESSURE_GRADIENT = True ! [Boolean] default = False + ! If true, use mass weighting when interpolating T/S for integrals near the + ! bathymetry in AFV pressure gradient calculations. + +! === module MOM_hor_visc === +LAPLACIAN = True ! [Boolean] default = False + ! If true, use a Laplacian horizontal viscosity. +SMAGORINSKY_KH = True ! [Boolean] default = False + ! If true, use a Smagorinsky nonlinear eddy viscosity. +SMAG_LAP_CONST = 0.15 ! [nondim] default = 0.0 + ! The nondimensional Laplacian Smagorinsky constant, often 0.15. +AH_VEL_SCALE = 0.05 ! [m s-1] default = 0.0 + ! The velocity scale which is multiplied by the cube of the grid spacing to + ! calculate the biharmonic viscosity. The final viscosity is the largest of this + ! scaled viscosity, the Smagorinsky and Leith viscosities, and AH. +SMAGORINSKY_AH = True ! [Boolean] default = False + ! If true, use a biharmonic Smagorinsky nonlinear eddy viscosity. +SMAG_BI_CONST = 0.06 ! [nondim] default = 0.0 + ! The nondimensional biharmonic Smagorinsky constant, typically 0.015 - 0.06. +USE_KH_BG_2D = True ! [Boolean] default = False + ! If true, read a file containing 2-d background harmonic viscosities. The final + ! viscosity is the maximum of the other terms and this background value. + +! === module MOM_vert_friction === +HMIX_FIXED = 0.5 ! [m] + ! The prescribed depth over which the near-surface viscosity and diffusivity are + ! elevated when the bulk mixed layer is not used. +MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 + ! The maximum velocity allowed before the velocity components are truncated. + +! === module MOM_barotropic === +BOUND_BT_CORRECTION = True ! [Boolean] default = False + ! If true, the corrective pseudo mass-fluxes into the barotropic solver are + ! limited to values that require less than maxCFL_BT_cont to be accommodated. +BT_PROJECT_VELOCITY = True ! [Boolean] default = False + ! If true, step the barotropic velocity first and project out the velocity + ! tendency by 1+BEBT when calculating the transport. The default (false) is to + ! use a predictor continuity step to find the pressure field, and then to do a + ! corrector continuity step using a weighted average of the old and new + ! velocities, with weights of (1-BEBT) and BEBT. +BT_STRONG_DRAG = True ! [Boolean] default = False + ! If true, use a stronger estimate of the retarding effects of strong bottom + ! drag, by making it implicit with the barotropic time-step instead of implicit + ! with the baroclinic time-step and dividing by the number of barotropic steps. +BEBT = 0.2 ! [nondim] default = 0.1 + ! BEBT determines whether the barotropic time stepping uses the forward-backward + ! time-stepping scheme or a backward Euler scheme. BEBT is valid in the range + ! from 0 (for a forward-backward treatment of nonrotating gravity waves) to 1 + ! (for a backward Euler treatment). In practice, BEBT must be greater than about + ! 0.05. +DTBT = -0.9 ! [s or nondim] default = -0.98 + ! The barotropic time step, in s. DTBT is only used with the split explicit time + ! stepping. To set the time step automatically based the maximum stable value + ! use 0, or a negative value gives the fraction of the stable value. Setting + ! DTBT to 0 is the same as setting it to -0.98. The value of DTBT that will + ! actually be used is an integer fraction of DT, rounding down. + +! === module MOM_mixed_layer_restrat === +MIXEDLAYER_RESTRAT = True ! [Boolean] default = False + ! If true, a density-gradient dependent re-stratifying flow is imposed in the + ! mixed layer. Can be used in ALE mode without restriction but in layer mode can + ! only be used if BULKMIXEDLAYER is true. +FOX_KEMPER_ML_RESTRAT_COEF = 60.0 ! [nondim] default = 0.0 + ! A nondimensional coefficient that is proportional to the ratio of the + ! deformation radius to the dominant lengthscale of the submesoscale mixed layer + ! instabilities, times the minimum of the ratio of the mesoscale eddy kinetic + ! energy to the large-scale geostrophic kinetic energy or 1 plus the square of + ! the grid spacing over the deformation radius, as detailed by Fox-Kemper et al. + ! (2010) +MLE_USE_PBL_MLD = True ! [Boolean] default = False + ! If true, the MLE parameterization will use the mixed-layer depth provided by + ! the active PBL parameterization. If false, MLE will estimate a MLD based on a + ! density difference with the surface using the parameter MLE_DENSITY_DIFF. +MLE_MLD_DECAY_TIME = 2.592E+06 ! [s] default = 0.0 + ! The time-scale for a running-mean filter applied to the mixed-layer depth used + ! in the MLE restratification parameterization. When the MLD deepens below the + ! current running-mean the running-mean is instantaneously set to the current + ! MLD. + +! === module MOM_diabatic_driver === +! The following parameters are used for diabatic processes. +ENERGETICS_SFC_PBL = True ! [Boolean] default = False + ! If true, use an implied energetics planetary boundary layer scheme to + ! determine the diffusivity and viscosity in the surface boundary layer. +EPBL_IS_ADDITIVE = False ! [Boolean] default = True + ! If true, the diffusivity from ePBL is added to all other diffusivities. + ! Otherwise, the larger of kappa-shear and ePBL diffusivities are used. +KD_MIN_TR = 2.0E-06 ! [m2 s-1] default = 2.0E-06 + ! A minimal diffusivity that should always be applied to tracers, especially in + ! massless layers near the bottom. The default is 0.1*KD. + +! === module MOM_CVMix_KPP === +! This is the MOM wrapper to CVMix:KPP +! See http://cvmix.github.io/ + +! === module MOM_tidal_mixing === +! Vertical Tidal Mixing Parameterization +INT_TIDE_DISSIPATION = True ! [Boolean] default = False + ! If true, use an internal tidal dissipation scheme to drive diapycnal mixing, + ! along the lines of St. Laurent et al. (2002) and Simmons et al. (2004). +INT_TIDE_PROFILE = "POLZIN_09" ! default = "STLAURENT_02" + ! INT_TIDE_PROFILE selects the vertical profile of energy dissipation with + ! INT_TIDE_DISSIPATION. Valid values are: + ! STLAURENT_02 - Use the St. Laurent et al exponential + ! decay profile. + ! POLZIN_09 - Use the Polzin WKB-stretched algebraic + ! decay profile. +KAPPA_ITIDES = 6.28319E-04 ! [m-1] default = 6.283185307179586E-04 + ! A topographic wavenumber used with INT_TIDE_DISSIPATION. The default is 2pi/10 + ! km, as in St.Laurent et al. 2002. +KAPPA_H2_FACTOR = 0.84 ! [nondim] default = 1.0 + ! A scaling factor for the roughness amplitude with INT_TIDE_DISSIPATION. +TKE_ITIDE_MAX = 0.1 ! [W m-2] default = 1000.0 + ! The maximum internal tide energy source available to mix above the bottom + ! boundary layer with INT_TIDE_DISSIPATION. +READ_TIDEAMP = True ! [Boolean] default = False + ! If true, read a file (given by TIDEAMP_FILE) containing the tidal amplitude + ! with INT_TIDE_DISSIPATION. +TIDEAMP_FILE = "tidal_amplitude.nc" ! default = "tideamp.nc" + ! The path to the file containing the spatially varying tidal amplitudes with + ! INT_TIDE_DISSIPATION. +H2_FILE = "topog.nc" ! + ! The path to the file containing the sub-grid-scale topographic roughness + ! amplitude with INT_TIDE_DISSIPATION. + +! === module MOM_CVMix_conv === +! Parameterization of enhanced mixing due to convection via CVMix + +! === module MOM_set_diffusivity === +BBL_MIXING_AS_MAX = False ! [Boolean] default = True + ! If true, take the maximum of the diffusivity from the BBL mixing and the other + ! diffusivities. Otherwise, diffusivity from the BBL_mixing is simply added. +USE_LOTW_BBL_DIFFUSIVITY = True ! [Boolean] default = False + ! If true, uses a simple, imprecise but non-coordinate dependent, model of BBL + ! mixing diffusivity based on Law of the Wall. Otherwise, uses the original BBL + ! scheme. +SIMPLE_TKE_TO_KD = True ! [Boolean] default = False + ! If true, uses a simple estimate of Kd/TKE that will work for arbitrary + ! vertical coordinates. If false, calculates Kd/TKE and bounds based on exact + ! energetics for an isopycnal layer-formulation. + +! === module MOM_bkgnd_mixing === +! Adding static vertical background mixing coefficients +KD = 2.0E-05 ! [m2 s-1] default = 0.0 + ! The background diapycnal diffusivity of density in the interior. Zero or the + ! molecular value, ~1e-7 m2 s-1, may be used. +KD_MIN = 2.0E-06 ! [m2 s-1] default = 2.0E-07 + ! The minimum diapycnal diffusivity. +HENYEY_IGW_BACKGROUND = True ! [Boolean] default = False + ! If true, use a latitude-dependent scaling for the near surface background + ! diffusivity, as described in Harrison & Hallberg, JPO 2008. +KD_MAX = 0.1 ! [m2 s-1] default = -1.0 + ! The maximum permitted increment for the diapycnal diffusivity from TKE-based + ! parameterizations, or a negative value for no limit. + +! === module MOM_kappa_shear === +! Parameterization of shear-driven turbulence following Jackson, Hallberg and Legg, JPO 2008 +USE_JACKSON_PARAM = True ! [Boolean] default = False + ! If true, use the Jackson-Hallberg-Legg (JPO 2008) shear mixing + ! parameterization. +MAX_RINO_IT = 25 ! [nondim] default = 50 + ! The maximum number of iterations that may be used to estimate the Richardson + ! number driven mixing. +VERTEX_SHEAR = True ! [Boolean] default = False + ! If true, do the calculations of the shear-driven mixing + ! at the cell vertices (i.e., the vorticity points). +KD_TRUNC_KAPPA_SHEAR = 2.0E-07 ! [m2 s-1] default = 2.0E-07 + ! The value of shear-driven diffusivity that is considered negligible and is + ! rounded down to 0. The default is 1% of KD_KAPPA_SHEAR_0. +KAPPA_SHEAR_ITER_BUG = True ! [Boolean] default = False + ! If true, use an older, dimensionally inconsistent estimate of the derivative + ! of diffusivity with energy in the Newton's method iteration. The bug causes + ! undercorrections when dz > 1 m. +KAPPA_SHEAR_ALL_LAYER_TKE_BUG = True ! [Boolean] default = False + ! If true, report back the latest estimate of TKE instead of the time average + ! TKE when there is mass in all layers. Otherwise always report the time + ! averaged TKE, as is currently done when there are some massless layers. + +! === module MOM_CVMix_shear === +! Parameterization of shear-driven turbulence via CVMix (various options) + +! === module MOM_CVMix_ddiff === +! Parameterization of mixing due to double diffusion processes via CVMix + +! === module MOM_diabatic_aux === +! The following parameters are used for auxiliary diabatic processes. +PRESSURE_DEPENDENT_FRAZIL = false ! [Boolean] default = False + ! If true, use a pressure dependent freezing temperature when making frazil. The + ! default is false, which will be faster but is inappropriate with ice-shelf + ! cavities. +VAR_PEN_SW = True ! [Boolean] default = False + ! If true, use one of the CHL_A schemes specified by OPACITY_SCHEME to determine + ! the e-folding depth of incoming short wave radiation. +CHL_FILE = CHLCLIM + ! CHL_FILE is the file containing chl_a concentrations in the variable CHL_A. It + ! is used when VAR_PEN_SW and CHL_FROM_FILE are true. + +! === module MOM_energetic_PBL === +ML_OMEGA_FRAC = 0.001 ! [nondim] default = 0.0 + ! When setting the decay scale for turbulence, use this fraction of the absolute + ! rotation rate blended with the local value of f, as sqrt((1-of)*f^2 + + ! of*4*omega^2). +TKE_DECAY = 0.01 ! [nondim] default = 2.5 + ! TKE_DECAY relates the vertical rate of decay of the TKE available for + ! mechanical entrainment to the natural Ekman depth. +EPBL_MSTAR_SCHEME = "OM4" ! default = "CONSTANT" + ! EPBL_MSTAR_SCHEME selects the method for setting mstar. Valid values are: + ! CONSTANT - Use a fixed mstar given by MSTAR + ! OM4 - Use L_Ekman/L_Obukhov in the sabilizing limit, as in OM4 + ! REICHL_H18 - Use the scheme documented in Reichl & Hallberg, 2018. +MSTAR_CAP = 10.0 ! [nondim] default = -1.0 + ! If this value is positive, it sets the maximum value of mstar allowed in ePBL. + ! (This is not used if EPBL_MSTAR_SCHEME = CONSTANT). +MSTAR2_COEF1 = 0.29 ! [nondim] default = 0.3 + ! Coefficient in computing mstar when rotation and stabilizing effects are both + ! important (used if EPBL_MSTAR_SCHEME = OM4). +MSTAR2_COEF2 = 0.152 ! [nondim] default = 0.085 + ! Coefficient in computing mstar when only rotation limits the total mixing + ! (used if EPBL_MSTAR_SCHEME = OM4) +NSTAR = 0.06 ! [nondim] default = 0.2 + ! The portion of the buoyant potential energy imparted by surface fluxes that is + ! available to drive entrainment at the base of mixed layer when that energy is + ! positive. +MSTAR_CONV_ADJ = 0.667 ! [nondim] default = 0.0 + ! Coefficient used for reducing mstar during convection due to reduction of + ! stable density gradient. +USE_MLD_ITERATION = False ! [Boolean] default = True + ! A logical that specifies whether or not to use the distance to the bottom of + ! the actively turbulent boundary layer to help set the EPBL length scale. +EPBL_TRANSITION_SCALE = 0.01 ! [nondim] default = 0.1 + ! A scale for the mixing length in the transition layer at the edge of the + ! boundary layer as a fraction of the boundary layer thickness. +MIX_LEN_EXPONENT = 1.0 ! [nondim] default = 2.0 + ! The exponent applied to the ratio of the distance to the MLD and the MLD depth + ! which determines the shape of the mixing length. This is only used if + ! USE_MLD_ITERATION is True. +USE_LA_LI2016 = MOM6_REPRO_LA ! [nondim] default = False + ! A logical to use the Li et al. 2016 (submitted) formula to determine the + ! Langmuir number. +EPBL_LANGMUIR_SCHEME = "ADDITIVE" ! default = "NONE" + ! EPBL_LANGMUIR_SCHEME selects the method for including Langmuir turbulence. + ! Valid values are: + ! NONE - Do not do any extra mixing due to Langmuir turbulence + ! RESCALE - Use a multiplicative rescaling of mstar to account for Langmuir + ! turbulence + ! ADDITIVE - Add a Langmuir turblence contribution to mstar to other + ! contributions +USE_WAVES = MOM6_USE_WAVES ! [Boolean] default = False + ! If true, enables surface wave modules. +WAVE_METHOD = "SURFACE_BANDS" ! default = "EMPTY" + ! Choice of wave method, valid options include: + ! TEST_PROFILE - Prescribed from surface Stokes drift + ! and a decay wavelength. + ! SURFACE_BANDS - Computed from multiple surface values + ! and decay wavelengths. + ! DHH85 - Uses Donelan et al. 1985 empirical + ! wave spectrum with prescribed values. + ! LF17 - Infers Stokes drift profile from wind + ! speed following Li and Fox-Kemper 2017. +SURFBAND_SOURCE = "COUPLER" ! default = "EMPTY" + ! Choice of SURFACE_BANDS data mode, valid options include: + ! DATAOVERRIDE - Read from NetCDF using FMS DataOverride. + ! COUPLER - Look for variables from coupler pass + ! INPUT - Testing with fixed values. +STK_BAND_COUPLER = 3 ! default = 1 + ! STK_BAND_COUPLER is the number of Stokes drift bands in the coupler. This has + ! to be consistent with the number of Stokes drift bands in WW3, or the model + ! will fail. +SURFBAND_WAVENUMBERS = 0.04, 0.11, 0.3305 ! [rad/m] default = 0.12566 + ! Central wavenumbers for surface Stokes drift bands. +LT_ENHANCE_COEF = 0.044 ! [nondim] default = 0.447 + ! Coefficient for Langmuir enhancement of mstar +LT_ENHANCE_EXP = -1.5 ! [nondim] default = -1.33 + ! Exponent for Langmuir enhancementt of mstar +LT_MOD_LAC1 = 0.0 ! [nondim] default = -0.87 + ! Coefficient for modification of Langmuir number due to MLD approaching Ekman + ! depth. +LT_MOD_LAC4 = 0.0 ! [nondim] default = 0.95 + ! Coefficient for modification of Langmuir number due to ratio of Ekman to + ! stable Obukhov depth. +LT_MOD_LAC5 = 0.22 ! [nondim] default = 0.95 + ! Coefficient for modification of Langmuir number due to ratio of Ekman to + ! unstable Obukhov depth. + +! === module MOM_regularize_layers === + +! === module MOM_opacity === +PEN_SW_NBANDS = 3 ! default = 1 + ! The number of bands of penetrating shortwave radiation. + +! === module MOM_tracer_advect === +TRACER_ADVECTION_SCHEME = "PPM:H3" ! default = "PLM" + ! The horizontal transport scheme for tracers: + ! PLM - Piecewise Linear Method + ! PPM:H3 - Piecewise Parabolic Method (Huyhn 3rd order) + ! PPM - Piecewise Parabolic Method (Colella-Woodward) + +! === module MOM_tracer_hor_diff === +CHECK_DIFFUSIVE_CFL = True ! [Boolean] default = False + ! If true, use enough iterations the diffusion to ensure that the diffusive + ! equivalent of the CFL limit is not violated. If false, always use the greater + ! of 1 or MAX_TR_DIFFUSION_CFL iteration. + +! === module MOM_neutral_diffusion === +! This module implements neutral diffusion of tracers +USE_NEUTRAL_DIFFUSION = True ! [Boolean] default = False + ! If true, enables the neutral diffusion module. + +! === module MOM_lateral_boundary_diffusion === +! This module implements lateral diffusion of tracers near boundaries + +! === module MOM_sum_output === +CALCULATE_APE = False ! [Boolean] default = True + ! If true, calculate the available potential energy of the interfaces. Setting + ! this to false reduces the memory footprint of high-PE-count models + ! dramatically. +MAXTRUNC = 100000 ! [truncations save_interval-1] default = 0 + ! The run will be stopped, and the day set to a very large value if the velocity + ! is truncated more than MAXTRUNC times between energy saves. Set MAXTRUNC to 0 + ! to stop if there is any truncation of velocities. +ENERGYSAVEDAYS = 0.25 ! [days] default = 1.0 + ! The interval in units of TIMEUNIT between saves of the energies of the run and + ! other globally summed diagnostics. + +! === module ocean_model_init === +OCEAN_SURFACE_STAGGER = "A" ! default = "C" + ! A case-insensitive character string to indicate the + ! staggering of the surface velocity field that is + ! returned to the coupler. Valid values include + ! 'A', 'B', or 'C'. + +! === module MOM_surface_forcing === +MAX_P_SURF = 0.0 ! [Pa] default = -1.0 + ! The maximum surface pressure that can be exerted by the atmosphere and + ! floating sea-ice or ice shelves. This is needed because the FMS coupling + ! structure does not limit the water that can be frozen out of the ocean and the + ! ice-ocean heat fluxes are treated explicitly. No limit is applied if a + ! negative value is used. +WIND_STAGGER = "A" ! default = "C" + ! A case-insensitive character string to indicate the + ! staggering of the input wind stress field. Valid + ! values are 'A', 'B', or 'C'. +CD_TIDES = 0.0018 ! [nondim] default = 1.0E-04 + ! The drag coefficient that applies to the tides. +GUST_CONST = 0.02 ! [Pa] default = 0.0 + ! The background gustiness in the winds. +FIX_USTAR_GUSTLESS_BUG = False ! [Boolean] default = True + ! If true correct a bug in the time-averaging of the gustless wind friction + ! velocity + +! === module MOM_restart === + +! === module MOM_file_parser === diff --git a/tests/parm/nems.configure.medcmeps_atm_ocn_ice.IN b/tests/parm/nems.configure.medcmeps_atm_ocn_ice.IN index 2058ebedae..a8f12b010e 100644 --- a/tests/parm/nems.configure.medcmeps_atm_ocn_ice.IN +++ b/tests/parm/nems.configure.medcmeps_atm_ocn_ice.IN @@ -42,7 +42,7 @@ ICE_attributes:: ProfileMemory = false OverwriteSlice = true mesh_ice = @[MESHICE] - stop_n = @[FHMAX] + stop_n = @[FV3_RESTART_H] stop_option = nhours stop_ymd = -999 :: @@ -93,8 +93,8 @@ ALLCOMP_attributes:: ScalarFieldIdxGridNY = 2 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] - case_name = ufs.s2s - restart_n = @[RESTART_INTERVAL] + case_name = ./RESTART/ufs.cpld + restart_n = @[FV3_RESTART_H] restart_option = nhours restart_ymd = -999 dbug_flag = @[cap_dbug_flag] diff --git a/tests/parm/nems.configure.medcmeps_atm_ocn_ice_wav.IN b/tests/parm/nems.configure.medcmeps_atm_ocn_ice_wav.IN index 63eb5ebd5e..ec72e3653a 100644 --- a/tests/parm/nems.configure.medcmeps_atm_ocn_ice_wav.IN +++ b/tests/parm/nems.configure.medcmeps_atm_ocn_ice_wav.IN @@ -42,7 +42,7 @@ ICE_attributes:: ProfileMemory = false OverwriteSlice = true mesh_ice = @[MESHICE] - stop_n = @[FHMAX] + stop_n = @[FV3_RESTART_H] stop_option = nhours stop_ymd = -999 :: @@ -107,8 +107,8 @@ ALLCOMP_attributes:: ScalarFieldIdxGridNY = 2 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] - case_name = ufs.s2s - restart_n = @[RESTART_INTERVAL] + case_name = ./RESTART/ufs.cpld + restart_n = @[FV3_RESTART_H] restart_option = nhours restart_ymd = -999 dbug_flag = @[cap_dbug_flag] From c06e42301f5c427006ca8fb6cee6ec5d28182aa8 Mon Sep 17 00:00:00 2001 From: "denise.worthen" Date: Wed, 21 Oct 2020 12:15:39 -0400 Subject: [PATCH 012/109] additional small changes add RT_suffix for warm start dependencies add nsout as a variable in model_configure white space --- tests/edit_inputs.sh | 1 + tests/fv3_conf/cpld_control_run.IN | 14 +++++++------- tests/parm/model_configure.IN | 4 ++-- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/tests/edit_inputs.sh b/tests/edit_inputs.sh index 8086ab962c..0d5640e83e 100755 --- a/tests/edit_inputs.sh +++ b/tests/edit_inputs.sh @@ -2,6 +2,7 @@ set -eu function edit_ice_in { + jday=$(date -d "${SYEAR}-${SMONTH}-${SDAY} ${SHOUR}:00:00" +%j) istep0=$(( ((10#$jday-1)*86400 + 10#$SHOUR*3600) / DT_CICE )) diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index 4d8534fb17..edc13e6130 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -55,19 +55,19 @@ if [ $WARM_START = .F. ]; then # Restart else # Restart files - cp ../${DEP_RUN}/RESTART/coupler.res ./INPUT - cp ../${DEP_RUN}/RESTART/fv_*.nc ./INPUT - cp ../${DEP_RUN}/RESTART/sfc_data*.nc ./INPUT - cp ../${DEP_RUN}/RESTART/phy_data*.nc ./INPUT - cp ../${DEP_RUN}/RESTART/MOM*.nc ./INPUT + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/coupler.res ./INPUT + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/fv_*.nc ./INPUT + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/sfc_data*.nc ./INPUT + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/phy_data*.nc ./INPUT + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM*.nc ./INPUT # CMEPS restart and pointer files - cp ../${DEP_RUN}/RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc . + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/ufs.s2s.cpl.r.2016-10-05-00000.nc . RFILE="ufs.cpld.cpl.r.2016-10-03-43200.nc" ls -1 ${RFILE}>rpointer.cpl # CICE restart and pointer files - cp ../${DEP_RUN}/RESTART/iced.2016-10-03-43200.nc ./INPUT + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/iced.2016-10-05-00000.nc ./INPUT RFILE="iced.2016-10-03-43200.nc" ls -1 "./INPUT/"${RFILE}>ice.restart_file fi diff --git a/tests/parm/model_configure.IN b/tests/parm/model_configure.IN index 73122f7774..c43fba2a09 100644 --- a/tests/parm/model_configure.IN +++ b/tests/parm/model_configure.IN @@ -18,7 +18,7 @@ memuse_verbose: .false. atmos_nthreads: @[THRD] use_hyper_thread: .false. ncores_per_node: 24 -restart_interval: @[RESTART_INTERVAL] +restart_interval: @[FV3_RESTART_H] fhrot: @[FHROT] output_1st_tstep_rst: .false. atm_coupling_interval_sec: @[coupling_interval_fast_sec] @@ -42,4 +42,4 @@ jmo: @[JMO] nfhout: @[NFHOUT] nfhmax_hf: @[NFHMAX_HF] nfhout_hf: @[NFHOUT_HF] -nsout: -1 +nsout: @[NSOUT] From 4e0de1aef34b723d821cad581822ccdc00a0e49f Mon Sep 17 00:00:00 2001 From: "denise.worthen" Date: Wed, 21 Oct 2020 13:14:48 -0400 Subject: [PATCH 013/109] update rt.conf with correct test names --- tests/rt.conf | 33 ++++++++++++++++++++------------- 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/tests/rt.conf b/tests/rt.conf index 69a93d77e4..724c084bf3 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -170,23 +170,30 @@ RUN | fv3_ccpp_thompson_no_aero_debug RUN | fv3_ccpp_rrfs_v1beta_debug | standard | | fv3 | ####################################################################################################################################################################################### -# S2S tests +# CPLD tests ####################################################################################################################################################################################### COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_fv3_ccpp_mom6_cice_cmeps_restart | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux -RUN | cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads | standard | hera.intel orion.intel wcoss_dell_p3 | | -RUN | cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp | standard | hera.intel orion.intel wcoss_dell_p3 | | -RUN | cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_control | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_restart | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_12h +RUN | cpld_2threads | standard | hera.intel orion.intel wcoss_dell_p3 | | +RUN | cpld_decomp | standard | hera.intel orion.intel wcoss_dell_p3 | | +RUN | cpld_satmedmf | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_ca | standard | hera.intel orion.intel wcoss_dell_p3 | | + +# restart test at c96mx025 +RUN | cpld_control_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_control_mx025_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_restart_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_mx025_12h + +RUN | cpld_control_c192 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_control_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_controlfrac_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_bmark | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_bmark_wave | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_debug | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | From 8a3f59db810f65494a20980dd994d8c719a0d0a9 Mon Sep 17 00:00:00 2001 From: "denise.worthen" Date: Thu, 22 Oct 2020 10:47:17 -0400 Subject: [PATCH 014/109] Merges in changes from final S2S PR (194) Fixes CA test for coupled model Uses RESTART_N for the coupled model Removes CNTLMED from tests since weather RT does not use it links parm/fd_nems.yaml from CMEPS/mediator --- tests/default_vars.sh | 3 +- tests/fv3_conf/cpld_control_run.IN | 4 +- tests/parm/fd_nems.yaml | 757 +----------------- tests/parm/input.mom6_ccpp.nml.IN | 6 +- tests/parm/model_configure.IN | 4 +- .../nems.configure.medcmeps_atm_ocn_ice.IN | 4 +- ...nems.configure.medcmeps_atm_ocn_ice_wav.IN | 4 +- tests/rt.conf | 2 +- tests/tests/cpld_2threads | 1 - tests/tests/cpld_bmark | 1 - tests/tests/cpld_bmark_35d | 2 +- tests/tests/cpld_bmark_wave | 1 - tests/tests/cpld_bmark_wave_35d | 2 +- tests/tests/cpld_ca | 1 - tests/tests/cpld_control | 1 - tests/tests/cpld_control_12h | 3 +- tests/tests/cpld_control_c192 | 1 - tests/tests/cpld_control_c384 | 1 - tests/tests/cpld_control_mx025 | 1 - tests/tests/cpld_control_mx025_12h | 3 +- tests/tests/cpld_controlfrac_c384 | 1 - tests/tests/cpld_debug | 3 +- tests/tests/cpld_decomp | 1 - tests/tests/cpld_restart | 3 +- tests/tests/cpld_restart_mx025 | 3 +- tests/tests/cpld_satmedmf | 1 - 26 files changed, 21 insertions(+), 793 deletions(-) mode change 100644 => 120000 tests/parm/fd_nems.yaml diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 7055ea2d8b..0cd1388792 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -375,7 +375,7 @@ export wav_model="ww3" export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -export FV3_RESTART_H=${FHMAX} +export RESTART_N=${FHMAX} export CPLMODE='nems_orig' export cap_dbug_flag="0" export use_coldstart="false" @@ -447,6 +447,5 @@ export RT35D='' export_35d_run () { export CNTL_DIR="" -export CNTLMED_DIR="" export LIST_FILES="" } diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index edc13e6130..63c1c9a99c 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -62,12 +62,12 @@ else cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM*.nc ./INPUT # CMEPS restart and pointer files - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/ufs.s2s.cpl.r.2016-10-05-00000.nc . + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc . RFILE="ufs.cpld.cpl.r.2016-10-03-43200.nc" ls -1 ${RFILE}>rpointer.cpl # CICE restart and pointer files - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/iced.2016-10-05-00000.nc ./INPUT + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/iced.2016-10-03-43200.nc ./INPUT RFILE="iced.2016-10-03-43200.nc" ls -1 "./INPUT/"${RFILE}>ice.restart_file fi diff --git a/tests/parm/fd_nems.yaml b/tests/parm/fd_nems.yaml deleted file mode 100644 index 7b27d884c7..0000000000 --- a/tests/parm/fd_nems.yaml +++ /dev/null @@ -1,756 +0,0 @@ - field_dictionary: - version_number: 0.0.0 - institution: National ESPC, CSC & MCL Working Groups - source: automatically generated by the NUOPC Layer - description: Community-based dictionary for shared coupling fields - entries: - # - #----------------------------------- - # section: mediator calculation for atm/ocn flux calculation - #----------------------------------- - # - - standard_name: Faox_lat - alias: mean_laten_heat_flx_atm_into_ocn - canonical_units: W m-2 - description: mediator calculation - atm/ocn surface latent heat flux - # - - standard_name: Faox_lwup - alias: mean_up_lw_flx_ocn - canonical_units: W m-2 - description: mediator calculation - long wave radiation flux over the ocean - # - - standard_name: Faox_taux - alias: stress_on_air_ocn_zonal - canonical_units: N m-2 - description: mediator calculation - # - - standard_name: Faox_tauy - alias: stress_on_air_ocn_merid - canonical_units: N m-2 - description: mediator calculation - # - #----------------------------------- - # section: atmosphere export - #----------------------------------- - # - - standard_name: Faxa_bcph - canonical_units: kg m-2 s-1 - description: atmosphere export - # - - standard_name: Faxa_dstdry - canonical_units: kg m-2 s-1 - description: atmosphere export - # - - standard_name: Faxa_dstwet - canonical_units: kg m-2 s-1 - description: atmosphere export - # - #----------------------------------- - # section: atmosphere export - #----------------------------------- - # - - standard_name: Faxa_swdn - alias: mean_down_sw_flx - canonical_units: W m-2 - description: atmosphere export - mean downward SW heat flux - # - - standard_name: Faxa_lwdn - alias: mean_down_lw_flx - canonical_units: W m-2 - description: atmosphere export - mean downward LW heat flux - # - - standard_name: Faxa_rain - alias: mean_prec_rate - canonical_units: kg m-2 s-1 - description: atmosphere export - # - - standard_name: Faxa_snow - alias: mean_fprec_rate - canonical_units: kg m-2 s-1 - description: atmosphere export - # - - standard_name: Faxa_swnet - canonical_units: W m-2 - description: atmosphere export - # - - standard_name: Faxa_swndf - alias: mean_down_sw_ir_dif_flx - canonical_units: W m-2 - description: atmosphere export - mean surface downward nir diffuse flux - # - - standard_name: Faxa_swndr - alias: mean_down_sw_ir_dir_flx - canonical_units: W m-2 - description: atmosphere export - mean surface downward nir direct flux - # - - standard_name: Faxa_swvdf - alias: mean_down_sw_vis_dif_flx - canonical_units: W m-2 - description: atmosphere export - mean surface downward uv+vis diffuse flux - # - - standard_name: Faxa_swvdr - alias: mean_down_sw_vis_dir_flx - canonical_units: W m-2 - description: atmosphere export - mean surface downward uv+visvdirect flux - # - - standard_name: Sa_dens - alias: air_density_height_lowest - canonical_units: kg m-3 - description: atmosphere export- density at the lowest model layer - # - - standard_name: Sa_pbot - alias: inst_pres_height_lowest - canonical_units: Pa - description: atmosphere export - pressure at lowest model layer - # - - standard_name: Sa_pslv - alias: inst_pres_height_surface - canonical_units: Pa - description: atmosphere export - instantaneous pressure land and sea surface - # - - standard_name: Sa_ptem - canonical_units: K - description: atmosphere export - bottom layer potential temperature - # - - standard_name: Sa_shum - alias: inst_spec_humid_height_lowest - canonical_units: kg kg-1 - description: atmosphere export - bottom layer specific humidity - # - - standard_name: Sa_tbot - alias: inst_temp_height_lowest - canonical_units: K - description: atmosphere export - bottom layer temperature - # - - standard_name: Sa_u - alias: inst_zonal_wind_height_lowest - canonical_units: m s-1 - description: atmosphere export - bottom layer zonal wind - # - - standard_name: Sa_v - alias: inst_merid_wind_height_lowest - canonical_units: m s-1 - description: atmosphere export - bottom layer meridional wind - # - - standard_name: Sa_z - alias: inst_height_lowest - canonical_units: m - description: atmosphere export - bottom layer height - # - - standard_name: Faxa_taux - alias: mean_zonal_moment_flx_atm - canonical_units: N m-2 - description: atmosphere export- zonal component of momentum flux - # - - standard_name: Faxa_tauy - alias: mean_merid_moment_flx_atm - canonical_units: N m-2 - description: atmosphere export - meridional component of momentum flux - # - - standard_name: Faxa_lat - alias: mean_laten_heat_flx - canonical_units: W m-2 - description: atmosphere export - latent heat flux - # - - standard_name: Faxx_lwup - alias: mean_up_lw_flx - canonical_units: W m-2 - description: atmosphere import - merged ocn/ice flux - # - #----------------------------------- - # section: sea-ice export - #----------------------------------- - # - - standard_name: Faii_evap - alias: mean_evap_rate_atm_into_ice - canonical_units: kg m-2 s-1 - description: sea-ice export - # - - standard_name: Faii_lat - alias: mean_laten_heat_flx_atm_into_ice - canonical_units: W m-2 - description: sea-ice export to atm - atm/ice latent heat flux - # - - standard_name: Faii_sen - alias: mean_sensi_heat_flx_atm_into_ice - canonical_units: W m-2 - description: sea-ice export to atm - atm/ice sensible heat flux - # - - standard_name: Faii_lwup - alias: mean_up_lw_flx_ice - canonical_units: W m-2 - description: sea-ice export - outgoing logwave radiation - # - - standard_name: Faii_swnet - canonical_units: W m-2 - description: sea-ice export to atm - # - - standard_name: Faii_taux - alias: stress_on_air_ice_zonal - canonical_units: N m-2 - description: sea-ice export to atm - air ice zonal stress - # - - standard_name: Faii_tauy - alias: stress_on_air_ice_merid - canonical_units: N m-2 - description: sea-ice export - air ice meridional stress - # - - standard_name: Fioi_bcphi - canonical_units: kg m-2 s-1 - description: sea-ice export to ocean - hydrophilic black carbon flux to ocean - # - - standard_name: Fioi_bcpho - canonical_units: kg m-2 s-1 - description: sea-ice export to ocean - hydrophobic black carbon flux to ocean - # - - standard_name: Fioi_flxdst - canonical_units: kg m-2 s-1 - description: sea-ice export to ocean - dust aerosol flux to ocean - # - - standard_name: Fioi_melth - alias: net_heat_flx_to_ocn - canonical_units: W m-2 - description: sea-ice export to ocean - net heat flux to ocean - # - - standard_name: Fioi_meltw - alias: mean_fresh_water_to_ocean_rate - canonical_units: kg m-2 s-1 - description: sea-ice export to ocean - fresh water to ocean (h2o flux from melting) - # - - standard_name: Fioi_meltw_wiso - alias: mean_fresh_water_to_ocean_rate_wiso - canonical_units: kg m-2 s-1 - description: sea-ice export to ocean - fresh water to ocean (h2o flux from melting) for 16O, 18O, HDO - # - - standard_name: Fioi_salt - alias: mean_salt_rate - canonical_units: kg m-2 s-1 - description: sea-ice export to ocean - salt to ocean (salt flux from melting) - # - - standard_name: Fioi_swpen - alias: mean_sw_pen_to_ocn - canonical_units: W m-2 - description: sea-ice export to ocean - flux of shortwave through ice to ocean - # - - standard_name: Fioi_swpen_vdr - alias: mean_sw_pen_to_ocn_vis_dir_flx - canonical_units: W m-2 - description: sea-ice export to ocean - flux of vis dir shortwave through ice to ocean - # - - standard_name: Fioi_swpen_vdf - alias: mean_sw_pen_to_ocn_vis_dif_flx - canonical_units: W m-2 - description: sea-ice export to ocean - flux of vif dir shortwave through ice to ocean - # - - standard_name: Fioi_swpen_idr - alias: mean_sw_pen_to_ocn_ir_dir_flx - canonical_units: W m-2 - description: sea-ice export to ocean - flux of ir dir shortwave through ice to ocean - # - - standard_name: Fioi_swpen_idf - alias: mean_sw_pen_to_ocn_ir_dif_flx - canonical_units: W m-2 - description: sea-ice export to ocean - flux of ir dif shortwave through ice to ocean - # - - standard_name: Fioi_taux - alias: stress_on_ocn_ice_zonal - canonical_units: N m-2 - description: sea-ice export to ocean - ice ocean zonal stress - # - - standard_name: Fioi_tauy - alias: stress_on_ocn_ice_merid - canonical_units: N m-2 - description: sea-ice export to ocean - ice ocean meridional stress - # - - standard_name: Si_anidf - alias: inst_ice_ir_dif_albedo - canonical_units: 1 - description: sea-ice export to atm - # - - standard_name: Si_anidr - alias: inst_ice_ir_dir_albedo - canonical_units: 1 - description: sea-ice export to atm - # - - standard_name: Si_avsdf - alias: inst_ice_vis_dif_albedo - canonical_units: 1 - description: sea-ice export to atm - # - - standard_name: Si_avsdr - alias: inst_ice_vis_dir_albedo - canonical_units: 1 - description: sea-ice export to atm - # - - standard_name: Si_ifrac - alias: ice_fraction - canonical_units: 1 - description: sea-ice export to atm - ice fraction (varies with time) - # - - standard_name: Si_imask - alias: ice_mask - canonical_units: 1 - description: sea-ice export - ice mask - # - - standard_name: Si_qref - canonical_units: kg kg-1 - description: sea-ice export to atm - # - - standard_name: Si_t - alias: sea_ice_surface_temperature - canonical_units: K - description: sea-ice export - # - - standard_name: Si_tref - canonical_units: K - description: sea-ice export - # - - standard_name: Si_u10 - canonical_units: m - description: sea-ice export - # - - standard_name: Si_vice - alias: mean_ice_volume - canonical_units: m - description: sea-ice export - volume of ice per unit area - # - - standard_name: Si_snowh - canonical_units: m - description: sea-ice export - surface_snow_water_equivalent - # - - standard_name: Si_vsno - alias: mean_snow_volume - canonical_units: m - description: sea-ice export - volume of snow per unit area - # - #----------------------------------- - # section: ocean export to mediator - #----------------------------------- - # - - standard_name: Fioo_q - alias: freezing_melting_potential - canonical_units: W m-2 - description: ocean export - # - - standard_name: So_bldepth - alias: mixed_layer_depth - canonical_units: m - description: ocean export - # - - standard_name: So_dhdx - alias: sea_surface_slope_zonal - canonical_units: m m-1 - description: ocean export - # - - standard_name: So_dhdy - alias: sea_surface_slope_merid - canonical_units: m m-1 - description: ocean export - # - - standard_name: So_duu10n - canonical_units: m2 s-2 - description: ocean export - # - - standard_name: So_fswpen - canonical_units: 1 - description: ocean export - # - - standard_name: So_ofrac - canonical_units: 1 - description: ocean export - # - - standard_name: So_omask - alias: ocean_mask - canonical_units: 1 - description: ocean export - # - - standard_name: So_qref - canonical_units: kg kg-1 - description: ocean export - # - - standard_name: So_re - canonical_units: 1 - description: ocean export - # - - standard_name: So_s - alias: s_surf - canonical_units: g kg-1 - description: ocean export - # - - standard_name: So_ssq - canonical_units: kg kg-1 - description: ocean export - # - - standard_name: So_t - alias: sea_surface_temperature - canonical_units: K - description: ocean export - # - - standard_name: So_tref - canonical_units: K - description: ocean export - # - - standard_name: So_u - alias: ocn_current_zonal - canonical_units: m s-1 - description: ocean export - # - - standard_name: So_u10 - canonical_units: m - description: ocean export - # - - standard_name: So_ustar - canonical_units: m s-1 - description: ocean export - # - - standard_name: So_v - alias: ocn_current_merid - canonical_units: m s-1 - description: ocean export - # - #----------------------------------- - # section: ocean import - #----------------------------------- - # - - standard_name: mean_runoff_rate - canonical_units: kg m-2 s-1 - description: ocean import - total runoff to ocean - # - - standard_name: mean_runoff_heat_flux - canonical_units: kg m-2 s-1 - description: ocean import - heat content of runoff - # - - standard_name: mean_calving_rate - canonical_units: kg m-2 s-1 - description: ocean import - total calving to ocean - # - - standard_name: mean_calving_heat_flux - canonical_units: kg m-2 s-1 - description: ocean import - heat content of calving - # - - standard_name: Foxx_rofi - canonical_units: kg m-2 s-1 - description: ocean import - water flux due to runoff (frozen) - # - - standard_name: Foxx_rofl - alias: mean_runoff_rate - canonical_units: kg m-2 s-1 - description: ocean import - water flux due to runoff (liquid) - # - - standard_name: Foxx_swnet - alias: mean_net_sw_flx - canonical_units: W m-2 - description: ocean import - net shortwave radiation to ocean - # - - standard_name: Foxx_swnet_vdr - alias: mean_net_sw_vis_dir_flx - canonical_units: W m-2 - description: ocean import - net shortwave visible direct radiation to ocean - # - - standard_name: Foxx_swnet_vdf - alias: mean_net_sw_vis_dif_flx - canonical_units: W m-2 - description: ocean import - net shortwave visible diffuse radiation to ocean - # - - standard_name: Foxx_swnet_idr - alias: mean_net_sw_ir_dir_flx - canonical_units: W m-2 - description: ocean import - net shortwave ir direct radiation to ocean - # - - standard_name: Foxx_swnet_idf - alias: mean_net_sw_ir_dif_flx - canonical_units: W m-2 - description: ocean import - net shortwave ir diffuse radiation to ocean - # - - standard_name: Foxx_taux - alias: mean_zonal_moment_flx - canonical_units: N m-2 - description: ocean import - zonal surface stress to ocean - # - - standard_name: Foxx_tauy - alias: mean_merid_moment_flx - canonical_units: N m-2 - description: ocean import - meridional surface stress to ocean - # - #----------------------------------- - # mediator fields - #----------------------------------- - # - - standard_name: cpl_scalars - canonical_units: unitless - # - - standard_name: frac - canonical_units: 1 - # - - standard_name: mask - canonical_units: 1 - # - #----------------------------------- - # aliased fields for active and datm - #----------------------------------- - # - - standard_name: mean_net_lw_flx - canonical_units: W m-2 - - alias: Faxa_lwnet - standard_name : mean_net_lw_flx - description: atmosphere export - mean net longwave flux from atm - - alias: Foxx_lwnet - standard_name : mean_net_lw_flx - description: mediator calculation - atm/ocn net longwave flux - # - - standard_name: mean_sensi_heat_flx - canonical_units: W m-2 - - alias: Faxa_sen - standard_name : mean_sensi_heat_flx - description: atmosphere export - sensible heat flux - - alias: Faox_sen - standard_name : mean_sensi_heat_flx - description: mediator calculation - atm/ocn surface sensible heat flux - # - - standard_name: mean_evap_rate - canonical_units: kg m-2 s-1 - - alias: Faxa_evap - standard_name : mean_evap_rate - description: atmosphere export - latent heat flux conversion - - alias: Faox_evap - standard_name : mean_evap_rate - description: mediator calculation - atm/ocn specific humidity flux - # - #----------------------------------- - # section: atmosphere fields that need to be defined but are not used - #----------------------------------- - # - - standard_name: inst_temp_height2m - canonical_units: K - - standard_name: inst_spec_humid_height2m - canonical_units: K - - standard_name: inst_down_lw_flx - canonical_units: W m-2 - - standard_name: inst_net_lw_flx - canonical_units: W m-2 - - standard_name: inst_down_sw_flx - canonical_units: W m-2 - - standard_name: inst_net_sw_flx - canonical_units: W m-2 - - standard_name: inst_net_sw_ir_dir_flx - canonical_units: W m-2 - - standard_name: inst_net_sw_ir_dif_flx - canonical_units: W m-2 - - standard_name: inst_net_sw_vis_dir_flx - canonical_units: W m-2 - - standard_name: inst_net_sw_vis_dif_flx - canonical_units: W m-2 - - standard_name: inst_down_sw_ir_dif_flx - canonical_units: W m-2 - - standard_name: inst_down_sw_ir_dir_flx - canonical_units: W m-2 - - standard_name: inst_down_sw_vis_dif_flx - canonical_units: W m-2 - - standard_name: inst_down_sw_vis_dir_flx - canonical_units: W m-2 - - standard_name: inst_surface_height - canonical_units: m - - standard_name: inst_zonal_wind_height10m - canonical_units: m s-1 - - standard_name: inst_merid_wind_height10m - canonical_units: m s-1 - - standard_name: inst_zonal_moment_flx - canonical_units: N m-2 - - standard_name: inst_merid_moment_flx - canonical_units: N m-2 - - standard_name: inst_sensi_heat_flx - canonical_units: N m-2 - - standard_name: inst_laten_heat_flx - canonical_units: N m-2 - - standard_name: inst_tracer_mass_frac - canonical_units: 1 - - standard_name: inst_tracer_up_surface_flx - canonical_units: kg m-2 s-1 - - standard_name: inst_tracer_down_surface_flx - canonical_units: kg m-2 s-1 - - standard_name: inst_tracer_clmn_mass_dens - canonical_units: g m-2 - - standard_name: inst_tracer_anth_biom_flx - canonical_units: ug m-2 s-1 - description: atmosphere export - - standard_name: inst_pres_interface - canonical_units: Pa - - standard_name: inst_pres_levels - canonical_units: Pa - - standard_name: inst_geop_interface - canonical_units: tbd - - standard_name: inst_geop_levels - canonical_units: tbd - - standard_name: inst_temp_interface - canonical_units: K - - standard_name: inst_temp_levels - canonical_units: K - - standard_name: inst_zonal_wind_levels - canonical_units: m s-1 - - standard_name: inst_merid_wind_levels - canonical_units: m s-1 - - standard_name: inst_omega_levels - canonical_units: tbd - - standard_name: inst_tracer_mass_frac - canonical_units: 1 - - standard_name: inst_soil_moisture_content - canonical_units: tbd - - standard_name: soil_type - canonical_units: tbd - - standard_name: inst_pbl_height - canonical_units: tbd - - standard_name: surface_cell_area - canonical_units: tbd - - standard_name: inst_convective_rainfall_amount - canonical_units: tbd - - standard_name: inst_spec_humid_conv_tendency_levels - canonical_units: tbd - - standard_name: inst_exchange_coefficient_heat_levels - canonical_units: tbd - - standard_name: inst_friction_velocity - canonical_units: tbd - - standard_name: inst_rainfall_amount - canonical_units: tbd - - standard_name: inst_land_sea_mask - canonical_units: tbd - - standard_name: inst_temp_height_surface - canonical_units: tbd - - standard_name: inst_up_sensi_heat_flx - canonical_units: tbd - - standard_name: inst_lwe_snow_thickness - canonical_units: tbd - - standard_name: vegetation_type - canonical_units: tbd - - standard_name: inst_vegetation_area_frac - canonical_units: tbd - - standard_name: inst_surface_roughness - canonical_units: tbd - - standard_name: inst_zonal_moment_flx - canonical_units: N m-2 - - standard_name: inst_merid_moment_flx - canonical_units: N m-2 - - standard_name: inst_laten_heat_flx - canonical_units: W m-2 - - standard_name: inst_sensi_heat_flx - canonical_units: W m-2 - - standard_name: land_mask - canonical_units: 1 - # - #----------------------------------- - # WW3 import - #----------------------------------- - # - - standard_name: sea_surface_height_above_sea_level - canonical_units: m - description: ww3 import - # - - standard_name: sea_surface_salinity - alias: s_surf - canonical_units: g kg-1 - description: ww3 import - # - - standard_name: surface_eastward_sea_water_velocity - alias: ocn_current_zonal - canonical_units: m s-1 - description: ww3 import - # - - standard_name: surface_northward_sea_water_velocity - alias: ocn_current_merid - canonical_units: m s-1 - description: ww3 import - # - - standard_name: eastward_wind_at_10m_height - alias: inst_zonal_wind_height10m - canonical_units: m s-1 - description: ww3 import - # - - standard_name: northward_wind_at_10m_height - alias: inst_merid_wind_height10m - canonical_units: m s-1 - description: ww3 import - # - - standard_name: sea_ice_concentration - alias: ice_fraction - canonical_units: 1 - description: ww3 import - # - # - # WW3 export - # - - standard_name: wave_induced_charnock_parameter - canonical_units: 1 - description: ww3 export - # - - standard_name: wave_z0_roughness_length - canonical_units: 1 - description: ww3 export - # - - standard_name: northward_stokes_drift_current - canonical_units: m s-1 - description: ww3 export - # - - standard_name: eastward_stokes_drift_current - canonical_units: m s-1 - description: ww3 export - # - - standard_name: eastward_partitioned_stokes_drift_1 - canonical_units: m s-1 - description: ww3 export - # - - standard_name: eastward_partitioned_stokes_drift_2 - canonical_units: m s-1 - description: ww3 export - # - - standard_name: eastward_partitioned_stokes_drift_3 - canonical_units: m s-1 - description: ww3 export - # - - standard_name: northward_partitioned_stokes_drift_1 - canonical_units: m s-1 - description: ww3 export - # - - standard_name: northward_partitioned_stokes_drift_2 - canonical_units: m s-1 - description: ww3 export - # - - standard_name: northward_partitioned_stokes_drift_3 - canonical_units: m s-1 - description: ww3 export - # - - standard_name: eastward_wave_bottom_current - canonical_units: m s-1 - description: ww3 export - # - - standard_name: northward_wave_bottom_current - canonical_units: m s-1 - description: ww3 export - # - - standard_name: wave_bottom_current_radian_frequency - canonical_units: rad s-1 - description: ww3 export - # - - standard_name: eastward_wave_radiation_stress_gradient - canonical_units: Pa - description: ww3 export - # - - standard_name: northward_wave_radiation_stress_gradient - canonical_units: Pa - description: ww3 export - # - - standard_name: eastward_wave_radiation_stress - canonical_units: N m-1 - description: ww3 export - # - - standard_name: eastward_northward_wave_radiation_stress - canonical_units: N m-1 - description: ww3 export - # - - standard_name: wave_bottom_current_period - canonical_units: s - description: ww3 export - # - - standard_name: northward_wave_radiation_stress - canonical_units: Pa - description: ww3 export - # diff --git a/tests/parm/fd_nems.yaml b/tests/parm/fd_nems.yaml new file mode 120000 index 0000000000..e20eadc35c --- /dev/null +++ b/tests/parm/fd_nems.yaml @@ -0,0 +1 @@ +../../CMEPS-interface/CMEPS/mediator/fd_nems.yaml \ No newline at end of file diff --git a/tests/parm/input.mom6_ccpp.nml.IN b/tests/parm/input.mom6_ccpp.nml.IN index f6d8b5f39a..88c6ce1fb5 100644 --- a/tests/parm/input.mom6_ccpp.nml.IN +++ b/tests/parm/input.mom6_ccpp.nml.IN @@ -197,9 +197,9 @@ do_skeb = @[DO_SKEB] lndp_type = @[LNDP_TYPE] n_var_lndp = @[N_VAR_LNDP] - do_ca = .false. - ca_sgs = .false. - nca = 1 + do_ca = @[DO_CA] + ca_sgs = @[CA_SGS] + ca_global = @[CA_GLOBAL] ncells = 5 nlives = 30 nseed = 1000000 diff --git a/tests/parm/model_configure.IN b/tests/parm/model_configure.IN index c43fba2a09..73122f7774 100644 --- a/tests/parm/model_configure.IN +++ b/tests/parm/model_configure.IN @@ -18,7 +18,7 @@ memuse_verbose: .false. atmos_nthreads: @[THRD] use_hyper_thread: .false. ncores_per_node: 24 -restart_interval: @[FV3_RESTART_H] +restart_interval: @[RESTART_INTERVAL] fhrot: @[FHROT] output_1st_tstep_rst: .false. atm_coupling_interval_sec: @[coupling_interval_fast_sec] @@ -42,4 +42,4 @@ jmo: @[JMO] nfhout: @[NFHOUT] nfhmax_hf: @[NFHMAX_HF] nfhout_hf: @[NFHOUT_HF] -nsout: @[NSOUT] +nsout: -1 diff --git a/tests/parm/nems.configure.medcmeps_atm_ocn_ice.IN b/tests/parm/nems.configure.medcmeps_atm_ocn_ice.IN index a8f12b010e..4a49653e0a 100644 --- a/tests/parm/nems.configure.medcmeps_atm_ocn_ice.IN +++ b/tests/parm/nems.configure.medcmeps_atm_ocn_ice.IN @@ -42,7 +42,7 @@ ICE_attributes:: ProfileMemory = false OverwriteSlice = true mesh_ice = @[MESHICE] - stop_n = @[FV3_RESTART_H] + stop_n = @[RESTART_N] stop_option = nhours stop_ymd = -999 :: @@ -94,7 +94,7 @@ ALLCOMP_attributes:: ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] case_name = ./RESTART/ufs.cpld - restart_n = @[FV3_RESTART_H] + restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 dbug_flag = @[cap_dbug_flag] diff --git a/tests/parm/nems.configure.medcmeps_atm_ocn_ice_wav.IN b/tests/parm/nems.configure.medcmeps_atm_ocn_ice_wav.IN index ec72e3653a..dda3ae7f99 100644 --- a/tests/parm/nems.configure.medcmeps_atm_ocn_ice_wav.IN +++ b/tests/parm/nems.configure.medcmeps_atm_ocn_ice_wav.IN @@ -42,7 +42,7 @@ ICE_attributes:: ProfileMemory = false OverwriteSlice = true mesh_ice = @[MESHICE] - stop_n = @[FV3_RESTART_H] + stop_n = @[RESTART_N] stop_option = nhours stop_ymd = -999 :: @@ -108,7 +108,7 @@ ALLCOMP_attributes:: ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] case_name = ./RESTART/ufs.cpld - restart_n = @[FV3_RESTART_H] + restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 dbug_flag = @[cap_dbug_flag] diff --git a/tests/rt.conf b/tests/rt.conf index 724c084bf3..5d32e79482 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -180,7 +180,7 @@ RUN | cpld_control RUN | cpld_2threads | standard | hera.intel orion.intel wcoss_dell_p3 | | RUN | cpld_decomp | standard | hera.intel orion.intel wcoss_dell_p3 | | RUN | cpld_satmedmf | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_ca | standard | hera.intel orion.intel wcoss_dell_p3 | | +RUN | cpld_ca | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | # restart test at c96mx025 RUN | cpld_control_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | diff --git a/tests/tests/cpld_2threads b/tests/tests/cpld_2threads index ecf6449fcc..df52960127 100644 --- a/tests/tests/cpld_2threads +++ b/tests/tests/cpld_2threads @@ -5,7 +5,6 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - 2 threads" export CNTL_DIR="cpld_control" -export CNTLMED_DIR="cpld_control" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ diff --git a/tests/tests/cpld_bmark b/tests/tests/cpld_bmark index ce0f44f223..d564ed707a 100644 --- a/tests/tests/cpld_bmark +++ b/tests/tests/cpld_bmark @@ -4,7 +4,6 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test" export CNTL_DIR="cpld_bmark" -export CNTLMED_DIR="cpld_bmark" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ diff --git a/tests/tests/cpld_bmark_35d b/tests/tests/cpld_bmark_35d index aa5728c173..16f2b94a21 100644 --- a/tests/tests/cpld_bmark_35d +++ b/tests/tests/cpld_bmark_35d @@ -14,7 +14,7 @@ export SHOUR="00" export DAYS="35" export FHMAX="840" -export FV3_RESTART_H=${FHMAX} +export RESTART_N=${FHMAX} export WLCLK=480 export TASKS=$TASKS_cpl_bmrk diff --git a/tests/tests/cpld_bmark_wave b/tests/tests/cpld_bmark_wave index ce94276892..d22a289783 100644 --- a/tests/tests/cpld_bmark_wave +++ b/tests/tests/cpld_bmark_wave @@ -4,7 +4,6 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384 MX025 - Benchmark test with waves" export CNTL_DIR="cpld_bmark_wave" -export CNTLMED_DIR="cpld_bmark_wave" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ diff --git a/tests/tests/cpld_bmark_wave_35d b/tests/tests/cpld_bmark_wave_35d index 31903f8fab..019e21366d 100644 --- a/tests/tests/cpld_bmark_wave_35d +++ b/tests/tests/cpld_bmark_wave_35d @@ -14,7 +14,7 @@ export SHOUR="00" export DAYS="35" export FHMAX="840" -export FV3_RESTART_H=${FHMAX} +export RESTART_N=${FHMAX} export WLCLK=480 #export TASKS=$TASKS_cpl_wwav diff --git a/tests/tests/cpld_ca b/tests/tests/cpld_ca index da01ca660d..0dddd5c597 100644 --- a/tests/tests/cpld_ca +++ b/tests/tests/cpld_ca @@ -5,7 +5,6 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 CA" export CNTL_DIR="cpld_ca" -export CNTLMED_DIR="cpld_ca" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ diff --git a/tests/tests/cpld_control b/tests/tests/cpld_control index 67e57f141c..b3f2d70d10 100644 --- a/tests/tests/cpld_control +++ b/tests/tests/cpld_control @@ -5,7 +5,6 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100" export CNTL_DIR="cpld_control" -export CNTLMED_DIR="cpld_control" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ diff --git a/tests/tests/cpld_control_12h b/tests/tests/cpld_control_12h index 84f103f020..fb2f7037e9 100644 --- a/tests/tests/cpld_control_12h +++ b/tests/tests/cpld_control_12h @@ -5,7 +5,6 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 12h" export CNTL_DIR="cpld_control_12h" -export CNTLMED_DIR="cpld_control_12h" export LIST_FILES="phyf012.tile1.nc \ phyf012.tile2.nc \ @@ -60,6 +59,6 @@ export_cpl export DAYS="0.50" export FHMAX="12" -export FV3_RESTART_H=${FHMAX} +export RESTART_N=${FHMAX} export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_c192 b/tests/tests/cpld_control_c192 index 2b24334ee4..e7901a4563 100644 --- a/tests/tests/cpld_control_c192 +++ b/tests/tests/cpld_control_c192 @@ -4,7 +4,6 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050" export CNTL_DIR="cpld_control_c192" -export CNTLMED_DIR="cpld_control_c192" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ diff --git a/tests/tests/cpld_control_c384 b/tests/tests/cpld_control_c384 index 45203c9834..2f15cc6bec 100644 --- a/tests/tests/cpld_control_c384 +++ b/tests/tests/cpld_control_c384 @@ -4,7 +4,6 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025" export CNTL_DIR="cpld_control_c384" -export CNTLMED_DIR="cpld_control_c384" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ diff --git a/tests/tests/cpld_control_mx025 b/tests/tests/cpld_control_mx025 index c211e0bae3..f64eeb6b80 100644 --- a/tests/tests/cpld_control_mx025 +++ b/tests/tests/cpld_control_mx025 @@ -4,7 +4,6 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX025" export CNTL_DIR="cpld_control_mx025" -export CNTLMED_DIR="cpld_control_mx025" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ diff --git a/tests/tests/cpld_control_mx025_12h b/tests/tests/cpld_control_mx025_12h index c3a7a882cd..ac7b9068e8 100644 --- a/tests/tests/cpld_control_mx025_12h +++ b/tests/tests/cpld_control_mx025_12h @@ -4,7 +4,6 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX025 12h" export CNTL_DIR="cpld_control_mx025_12h" -export CNTLMED_DIR="cpld_control_mx025_12h" export LIST_FILES="phyf012.tile1.nc \ phyf012.tile2.nc \ @@ -62,7 +61,7 @@ export_cpl export DAYS="0.50" export FHMAX="12" -export FV3_RESTART_H=${FHMAX} +export RESTART_N=${FHMAX} # replicate current tests; explicitly set values for c96/mx025 export TASKS=$TASKS_cpl_c384 diff --git a/tests/tests/cpld_controlfrac_c384 b/tests/tests/cpld_controlfrac_c384 index 221001d621..5f82cb96e3 100644 --- a/tests/tests/cpld_controlfrac_c384 +++ b/tests/tests/cpld_controlfrac_c384 @@ -4,7 +4,6 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025, frac grid " export CNTL_DIR="cpld_controlfrac_c384" -export CNTLMED_DIR="cpld_controlfrac_c384" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ diff --git a/tests/tests/cpld_debug b/tests/tests/cpld_debug index c1df0a90af..ab0dd8c622 100644 --- a/tests/tests/cpld_debug +++ b/tests/tests/cpld_debug @@ -5,7 +5,6 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - debug" export CNTL_DIR="cpld_debug" -export CNTLMED_DIR="cpld_debug" export LIST_FILES="phyf006.tile1.nc \ phyf006.tile2.nc \ @@ -64,6 +63,6 @@ export NFHOUT_HF="1" # requires extra time export WLCLK=60 -export FV3_RESTART_H=${FHMAX} +export RESTART_N=${FHMAX} export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_decomp b/tests/tests/cpld_decomp index d62c432855..940157942e 100644 --- a/tests/tests/cpld_decomp +++ b/tests/tests/cpld_decomp @@ -5,7 +5,6 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - decomp" export CNTL_DIR="cpld_control" -export CNTLMED_DIR="cpld_control" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ diff --git a/tests/tests/cpld_restart b/tests/tests/cpld_restart index 9285467aa7..2df4bbbbb3 100644 --- a/tests/tests/cpld_restart +++ b/tests/tests/cpld_restart @@ -5,7 +5,6 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - 12h restart" export CNTL_DIR="cpld_control" -export CNTLMED_DIR="cpld_control" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ @@ -60,8 +59,8 @@ export_cpl export DAYS="0.50" export FHMAX="24" -export FV3_RESTART_H=12 export FHROT='12' +export RESTART_N=$((FHMAX-$FHROT)) # ATM warm start WARM_START='.T.' diff --git a/tests/tests/cpld_restart_mx025 b/tests/tests/cpld_restart_mx025 index a2e98357de..6b6df4b0c1 100644 --- a/tests/tests/cpld_restart_mx025 +++ b/tests/tests/cpld_restart_mx025 @@ -5,7 +5,6 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX025 - 12h restart" export CNTL_DIR="cpld_control_mx025" -export CNTLMED_DIR="cpld_control_mx025" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ @@ -63,8 +62,8 @@ export_cpl export DAYS="0.50" export FHMAX="24" -export FV3_RESTART_H=12 export FHROT='12' +export RESTART_N=$((FHMAX-$FHROT)) # replicate current tests; explicitly set values for c96/mx025 export TASKS=$TASKS_cpl_c384 diff --git a/tests/tests/cpld_satmedmf b/tests/tests/cpld_satmedmf index 3ab2387a8e..bf45bd1e17 100644 --- a/tests/tests/cpld_satmedmf +++ b/tests/tests/cpld_satmedmf @@ -5,7 +5,6 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - satmedmf" export CNTL_DIR="cpld_satmedmf" -export CNTLMED_DIR="cpld_satmedmf" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ From a2e58be39b37529d8a2d5a0ff34bbaf4f0a15aaa Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Thu, 22 Oct 2020 15:12:44 -0400 Subject: [PATCH 015/109] Add optional data atmoshpere component (#225) * add DATM submodule * point to aerorahul fork of DATM * update CMakeList.txt to build data atmosphere. Add compile test only since there are currently no regression tests for data atmosphere * update README.md * missed rsync from develop * Update README.md * update DATM submodule pointer and point to NOAA-EMC/NEMSdatm * create MOM6 solo executable for use in SOCA science * add compilation tests for s2s and datm for hera.gnu * commit wcoss_cray RT log, hera.intel RT log * rsync S2S baselines for intel only on hera and orion * add orion.intel RT log * add hera.gnu RT log * add wcoss_dell_p3 RT log --- .gitmodules | 4 + CMakeLists.txt | 43 +++++-- DATM | 1 + MOM6-interface/CMakeLists.txt | 39 ++++--- README.md | 18 ++- tests/RegressionTests_hera.gnu.log | 30 ++--- tests/RegressionTests_hera.intel.log | 144 ++++++++++++------------ tests/RegressionTests_orion.intel.log | 132 +++++++++++----------- tests/RegressionTests_wcoss_cray.log | 96 ++++++++-------- tests/RegressionTests_wcoss_dell_p3.log | 126 ++++++++++----------- tests/compile.sh | 4 + tests/rt.conf | 6 + tests/rt.sh | 4 +- tests/rt_gnu.conf | 12 ++ 14 files changed, 364 insertions(+), 295 deletions(-) create mode 160000 DATM diff --git a/.gitmodules b/.gitmodules index 82a9329eea..6e63f4576f 100644 --- a/.gitmodules +++ b/.gitmodules @@ -34,3 +34,7 @@ path = CICE-interface/CICE url = https://github.com/NOAA-EMC/CICE branch = emc/develop +[submodule "DATM"] + path = DATM + url = https://github.com/NOAA-EMC/NEMSdatm + branch = develop diff --git a/CMakeLists.txt b/CMakeLists.txt index c64931b49f..406e58155c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,6 +32,7 @@ set(QUAD_PRECISION ON CACHE BOOL "Enable QUAD_PRECISION (for certain grid metr set(REPRO OFF CACHE BOOL "Enable REPRO mode") set(WW3 OFF CACHE BOOL "Enable WW3") set(S2S OFF CACHE BOOL "Enable S2S") +set(DATM OFF CACHE BOOL "Enable Data Atmosphere") ############################################################################### ### Set CMAKE_BUILD_TYPE for DEBUG mode @@ -65,6 +66,7 @@ message("QUAD_PRECISION ... ${QUAD_PRECISION}") message("REPRO ............ ${REPRO}") message("WW3 .............. ${WW3}") message("S2S .............. ${S2S}") +message("DATM ............. ${DATM}") message("") get_filename_component (C_COMPILER_NAME ${CMAKE_C_COMPILER} NAME) @@ -118,6 +120,10 @@ endif() ############################################################################### ### Checks ############################################################################### +if(DATM AND NOT S2S) + message(FATAL_ERROR "DATM=ON and S2S=OFF are incompatible, ABORT!") +endif() + if(S2S AND 32BIT) message(FATAL_ERROR "S2S=ON and 32BIT=ON are incompatible, ABORT!") endif() @@ -161,12 +167,18 @@ target_include_directories(fms INTERFACE $ $) -target_link_libraries(ufs PUBLIC esmf - fv3atm) +target_link_libraries(ufs PUBLIC esmf) + +if(DATM) + target_link_libraries(ufs PUBLIC datatm) +else() + target_link_libraries(ufs PUBLIC fv3atm) +endif() if(S2S) list(APPEND _ufs_defs_private FRONT_MOM6=mom_cap_mod @@ -289,6 +313,9 @@ endif() target_compile_definitions(ufs_model PRIVATE "${_ufs_model_defs_private}") +if(DATM) + target_link_libraries(ufs_model PRIVATE ufs w3nco::w3nco_d) +endif() target_link_libraries(ufs_model PRIVATE ufs esmf NetCDF::NetCDF_Fortran diff --git a/DATM b/DATM new file mode 160000 index 0000000000..84e9a1fb91 --- /dev/null +++ b/DATM @@ -0,0 +1 @@ +Subproject commit 84e9a1fb91ee83d602d56f633ae18fe7eb26c273 diff --git a/MOM6-interface/CMakeLists.txt b/MOM6-interface/CMakeLists.txt index 833bb87242..bc7e2a6d71 100644 --- a/MOM6-interface/CMakeLists.txt +++ b/MOM6-interface/CMakeLists.txt @@ -64,28 +64,31 @@ target_link_libraries(mom6 PUBLIC fms # target_link_libraries(mom6 PRIVATE OpenMP::OpenMP_Fortran) #endif() -### Create standalone MOM6 executable [bug in our fork prevents this compilation] -#add_executable(mom6solo ${mom6_solo_src_files}) -#add_dependencies(mom6solo mom6_obj) -#set_target_properties(mom6solo PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod_solo) -#target_include_directories(mom6solo PRIVATE $) -#target_include_directories(mom6solo PRIVATE $) -#target_include_directories(mom6solo PRIVATE $ -# $) -#target_link_libraries(mom6solo PRIVATE mom6_obj -# fms -# NetCDF::NetCDF_Fortran) -# OpenMP is disabled in MOM6 -#if(OpenMP_Fortran_FOUND) -# target_link_libraries(mom6solo PRIVATE OpenMP::OpenMP_Fortran) -#endif() +### Create standalone MOM6 executable +if(MOM6SOLO) + message("Building MOM6 standalone executable") + add_executable(mom6solo ${mom6_solo_src_files}) + add_dependencies(mom6solo mom6_obj) + set_target_properties(mom6solo PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod_solo) + target_include_directories(mom6solo PRIVATE $) + target_include_directories(mom6solo PRIVATE $) + target_include_directories(mom6solo PRIVATE $ + $) + target_link_libraries(mom6solo PRIVATE mom6_obj + fms + NetCDF::NetCDF_Fortran) + # OpenMP is disabled in MOM6 + #if(OpenMP_Fortran_FOUND) + # target_link_libraries(mom6solo PRIVATE OpenMP::OpenMP_Fortran) + #endif() +endif() ############################################################################### ### Install ############################################################################### install( - TARGETS mom6 #mom6solo + TARGETS mom6 EXPORT mom6-config RUNTIME DESTINATION bin LIBRARY DESTINATION lib @@ -96,3 +99,7 @@ install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PR install(EXPORT mom6-config DESTINATION lib/cmake) + +if(MOM6SOLO) + install(TARGETS mom6solo RUNTIME DESTINATION bin) +endif() diff --git a/README.md b/README.md index e59bf02c0e..20453c6eaa 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,11 @@ # ufs-weather-model -This is the UFS weather model code. +This is the UFS weather model source code. # Where to find information -Start at the [ufs-weather-model wiki](https://github.com/ufs-community/ufs-weather-model/wiki) which has quick start instructions. +Start at the [wiki](https://github.com/ufs-community/ufs-weather-model/wiki) which has quick start instructions. [User's reference guide](http://ufs-weather-model.readthedocs.io/) is hosted on read the docs. @@ -19,15 +19,23 @@ The top level directory structure groups source code and input files as follow: | ```LICENSE.md``` | A copy of the GNU Lesser General Public License, Version 3. | | ```README.md``` | This file with basic pointers to more information. | | ```FMS/``` | Contains Flexible Modeling System source code. | -| ```NEMS/``` | Contains NOAA Environmental Modeling System source code and nems compset runi scripts. | +| ```NEMS/``` | Contains NOAA Environmental Modeling System source code and nems compset run scripts. | | ```CMEPS-interface/``` | Contains CMEPS mediator | | ```FV3/``` | Contains FV3 atmosphere model component including FV3 dynamical core, dynamics to physics driver, physics and IO. | +| ```DATM/``` | Contains Data Atmosphere model component | | ```WW3/``` | Contains community wave modeling framework WW3. | | ```MOM6-interface/``` | Contains MOM6 ocean model component | | ```CICE-interface/``` | Contains CICE sea-ice model component including CICE6 and Icepack | -| ```stochastic physics/``` | Contains the stochastic physics source code. | +| ```stochastic_physics/``` | Contains the stochastic physics source code. | | ```cmake/``` | Contains compile option files on various platforms. | -| ```modulefiles/``` | Contains module files on various platforms.| +| ```modulefiles/``` | Contains module files on various platforms. | +| ```tests/``` | Regression and unit testing framework scripts. | +| ```build.sh``` | Script to build the model executable. (also used by `tests/`) | + +E.g. use of `build.sh` to build the coupled model with `FV3_GFS_v15p2` as the CCPP suite. +``` +$> CMAKE_FLAGS="-DS2S=ON" CCPP_SUITES="FV3_GFS_v15p2" ./build.sh +``` # Disclaimer diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index c6a73e601f..21a8f8ba21 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Tue Oct 20 02:27:45 UTC 2020 +Thu Oct 22 11:11:52 EDT 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/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-20201019/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/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-20201019/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/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 @@ -187,7 +187,7 @@ Test 003 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -255,7 +255,7 @@ Test 004 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gsd_prod Checking test 005 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -347,7 +347,7 @@ Test 005 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_thompson_prod Checking test 006 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -415,7 +415,7 @@ Test 006 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_thompson_no_aero_prod Checking test 007 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -483,7 +483,7 @@ Test 007 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_rrfs_v1beta_prod Checking test 008 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -575,13 +575,13 @@ Test 008 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_control_debug_prod Checking test 009 fv3_ccpp_control_debug results .... Test 009 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gfs_v15p2_debug_prod Checking test 010 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -649,7 +649,7 @@ Test 010 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gfs_v16beta_debug_prod Checking test 011 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -717,7 +717,7 @@ Test 011 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_multigases_prod Checking test 012 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -791,5 +791,5 @@ Test 012 fv3_ccpp_multigases PASS REGRESSION TEST WAS SUCCESSFUL -Tue Oct 20 03:01:57 UTC 2020 -Elapsed time: 00h:34m:14s. Have a nice day! +Thu Oct 22 11:34:54 EDT 2020 +Elapsed time: 00h:23m:06s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index b60d5e6434..c55b328c71 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Tue Oct 20 01:51:21 UTC 2020 +Thu Oct 22 09:26:22 EDT 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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-20201019/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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-20201019/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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-20201019/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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-20201019/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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-20201019/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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-20201019/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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-20201019/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,7 +787,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -855,7 +855,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmprad_prod Checking test 016 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -952,7 +952,7 @@ Test 016 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1001,7 +1001,7 @@ Test 017 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1050,7 +1050,7 @@ Test 018 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,7 +1124,7 @@ Test 019 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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 @@ -1192,7 +1192,7 @@ Test 020 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1248,7 +1248,7 @@ Test 021 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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 @@ -1315,7 +1315,7 @@ Test 022 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1326,7 +1326,7 @@ Test 023 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1335,7 +1335,7 @@ Test 024 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1346,7 +1346,7 @@ Test 025 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_regional_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1357,19 +1357,19 @@ Test 026 fv3_ccpp_regional_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_stretched_nest_debug_prod Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1417,7 +1417,7 @@ Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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 @@ -1465,7 +1465,7 @@ Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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 @@ -1513,7 +1513,7 @@ Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_hwrfsas_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 032 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,7 +1561,7 @@ Test 032 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1609,7 +1609,7 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,7 +1657,7 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,7 +1705,7 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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 @@ -1753,7 +1753,7 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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 @@ -1805,7 +1805,7 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1859,7 +1859,7 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1951,7 +1951,7 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2019,7 +2019,7 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2087,7 +2087,7 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2155,7 +2155,7 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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 @@ -2223,7 +2223,7 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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 @@ -2315,7 +2315,7 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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 @@ -2383,7 +2383,7 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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 @@ -2451,7 +2451,7 @@ Test 046 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfsv16_csawmg_prod Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2499,7 +2499,7 @@ Test 047 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfsv16_csawmgt_prod Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2547,7 +2547,7 @@ Test 048 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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 @@ -2595,7 +2595,7 @@ Test 049 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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 @@ -2663,7 +2663,7 @@ Test 050 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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 @@ -2731,7 +2731,7 @@ Test 051 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/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 @@ -2799,7 +2799,7 @@ Test 052 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gsd_debug_prod Checking test 053 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2867,7 +2867,7 @@ Test 053 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gsd_diag3d_debug_prod Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2935,7 +2935,7 @@ Test 054 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_thompson_debug_prod Checking test 055 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3003,7 +3003,7 @@ Test 055 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_thompson_no_aero_debug_prod Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3071,7 +3071,7 @@ Test 056 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3139,7 +3139,7 @@ Test 057 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1stepcold_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod Checking test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3194,7 +3194,7 @@ Test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod Checking test 059 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3249,7 +3249,7 @@ Test 059 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod Checking test 060 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux results .... Comparing phyf072.tile1.nc .........OK Comparing phyf072.tile2.nc .........OK @@ -3304,7 +3304,7 @@ Test 060 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod Checking test 061 cpld_fv3_ccpp_mom6_cice_cmeps_restart results .... Comparing phyf072.tile1.nc .........OK Comparing phyf072.tile2.nc .........OK @@ -3359,7 +3359,7 @@ Test 061 cpld_fv3_ccpp_mom6_cice_cmeps_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod Checking test 062 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3414,7 +3414,7 @@ Test 062 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod Checking test 063 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3469,7 +3469,7 @@ Test 063 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_warm_satmedmf_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod Checking test 064 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3524,7 +3524,7 @@ Test 064 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp384_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod Checking test 065 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3579,7 +3579,7 @@ Test 065 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp384_cmeps_frac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod Checking test 066 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3634,7 +3634,7 @@ Test 066 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_bmrt_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod Checking test 067 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3726,7 +3726,7 @@ Test 067 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_bmwav_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod Checking test 068 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3784,7 +3784,7 @@ Test 068 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_6h_warm_debug_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod Checking test 069 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3840,5 +3840,5 @@ Test 069 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Oct 20 04:17:59 UTC 2020 -Elapsed time: 02h:26m:39s. Have a nice day! +Thu Oct 22 10:36:25 EDT 2020 +Elapsed time: 01h:10m:05s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 7dde0f4cf5..10d9ae72d9 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Mon Oct 19 18:53:17 CDT 2020 +Thu Oct 22 08:23:37 CDT 2020 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/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-20201019/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/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-20201019/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/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-20201019/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/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-20201019/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/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-20201019/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/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-20201019/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/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-20201019/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,7 +787,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -836,7 +836,7 @@ Test 014 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -934,7 +934,7 @@ Test 016 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1008,7 +1008,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/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 @@ -1076,7 +1076,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1132,7 +1132,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/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 @@ -1199,7 +1199,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1210,7 +1210,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1219,7 +1219,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1230,7 +1230,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_regional_c768_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_regional_c768_prod Checking test 024 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1241,19 +1241,19 @@ Test 024 fv3_ccpp_regional_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1301,7 +1301,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/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 @@ -1349,7 +1349,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/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 @@ -1397,7 +1397,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1445,7 +1445,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1493,7 +1493,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1541,7 +1541,7 @@ Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1593,7 +1593,7 @@ Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1647,7 +1647,7 @@ Test 034 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1739,7 +1739,7 @@ Test 035 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1807,7 +1807,7 @@ Test 036 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1875,7 +1875,7 @@ Test 037 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1967,7 +1967,7 @@ Test 038 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/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 @@ -2035,7 +2035,7 @@ Test 039 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfs_v16beta_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/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 @@ -2103,7 +2103,7 @@ Test 040 fv3_ccpp_gfs_v16beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2151,7 +2151,7 @@ Test 041 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2199,7 +2199,7 @@ Test 042 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2247,7 +2247,7 @@ Test 043 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2315,7 +2315,7 @@ Test 044 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfs_v15p2_debug_prod Checking test 045 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2383,7 +2383,7 @@ Test 045 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfs_v16beta_debug_prod Checking test 046 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2451,7 +2451,7 @@ Test 046 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2519,7 +2519,7 @@ Test 047 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2587,7 +2587,7 @@ Test 048 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2655,7 +2655,7 @@ Test 049 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2723,7 +2723,7 @@ Test 050 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2791,7 +2791,7 @@ Test 051 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1stepcold_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod Checking test 052 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2846,7 +2846,7 @@ Test 052 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod Checking test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2901,7 +2901,7 @@ Test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod Checking test 054 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux results .... Comparing phyf072.tile1.nc .........OK Comparing phyf072.tile2.nc .........OK @@ -2956,7 +2956,7 @@ Test 054 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod Checking test 055 cpld_fv3_ccpp_mom6_cice_cmeps_restart results .... Comparing phyf072.tile1.nc .........OK Comparing phyf072.tile2.nc .........OK @@ -3011,7 +3011,7 @@ Test 055 cpld_fv3_ccpp_mom6_cice_cmeps_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod Checking test 056 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3066,7 +3066,7 @@ Test 056 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod Checking test 057 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3121,7 +3121,7 @@ Test 057 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_warm_satmedmf_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod Checking test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3176,7 +3176,7 @@ Test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp384_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod Checking test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3231,7 +3231,7 @@ Test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp384_cmeps_frac_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod Checking test 060 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3286,7 +3286,7 @@ Test 060 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_bmrt_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod Checking test 061 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3378,7 +3378,7 @@ Test 061 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_bmwav_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod Checking test 062 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3436,7 +3436,7 @@ Test 062 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_6h_warm_debug_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod Checking test 063 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3492,5 +3492,5 @@ Test 063 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Oct 19 20:31:25 CDT 2020 -Elapsed time: 01h:38m:10s. Have a nice day! +Thu Oct 22 09:50:23 CDT 2020 +Elapsed time: 01h:26m:48s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 5250a45d33..da4ab186f7 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Mon Oct 19 20:51:37 UTC 2020 +Thu Oct 22 13:49:20 UTC 2020 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/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-20201019/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/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-20201019/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/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-20201019/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/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-20201019/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/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-20201019/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/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-20201019/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/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-20201019/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -841,7 +841,7 @@ Test 014 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -909,7 +909,7 @@ Test 015 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -965,7 +965,7 @@ Test 016 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1032,7 +1032,7 @@ Test 017 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1043,7 +1043,7 @@ Test 018 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1052,7 +1052,7 @@ Test 019 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1063,19 +1063,19 @@ Test 020 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_control_debug_prod Checking test 021 fv3_ccpp_control_debug results .... Test 021 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_stretched_nest_debug_prod Checking test 022 fv3_ccpp_stretched_nest_debug results .... Test 022 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmp_prod Checking test 023 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,7 +1123,7 @@ Test 023 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmprad_gwd_prod Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1171,7 +1171,7 @@ Test 024 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,7 +1219,7 @@ Test 025 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 026 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,7 +1267,7 @@ Test 026 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,7 +1315,7 @@ Test 027 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,7 +1363,7 @@ Test 028 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,7 +1411,7 @@ Test 029 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,7 +1459,7 @@ Test 030 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1511,7 +1511,7 @@ Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1565,7 +1565,7 @@ Test 032 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,7 +1657,7 @@ Test 033 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1725,7 +1725,7 @@ Test 034 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,7 +1793,7 @@ Test 035 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1885,7 +1885,7 @@ Test 036 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfsv16_csawmg_prod Checking test 037 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1933,7 +1933,7 @@ Test 037 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfsv16_csawmgt_prod Checking test 038 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1981,7 +1981,7 @@ Test 038 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gocart_clm_prod Checking test 039 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2029,7 +2029,7 @@ Test 039 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfs_v16beta_flake_prod Checking test 040 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2097,7 +2097,7 @@ Test 040 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2165,7 +2165,7 @@ Test 041 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2233,7 +2233,7 @@ Test 042 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2301,7 +2301,7 @@ Test 043 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2369,7 +2369,7 @@ Test 044 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2437,5 +2437,5 @@ Test 045 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Oct 19 22:29:29 UTC 2020 -Elapsed time: 01h:37m:53s. Have a nice day! +Thu Oct 22 14:30:47 UTC 2020 +Elapsed time: 00h:41m:28s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index b9a1851d66..934312ac41 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Mon Oct 19 23:21:16 UTC 2020 +Thu Oct 22 13:55:04 UTC 2020 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/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-20201019/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/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-20201019/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/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-20201019/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/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-20201019/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/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-20201019/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/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-20201019/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/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-20201019/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,7 +816,7 @@ Test 014 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -865,7 +865,7 @@ Test 015 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -939,7 +939,7 @@ Test 016 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1063,7 +1063,7 @@ Test 018 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,7 +1130,7 @@ Test 019 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1141,7 +1141,7 @@ Test 020 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1150,7 +1150,7 @@ Test 021 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1161,7 +1161,7 @@ Test 022 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_regional_c768_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_regional_c768_prod Checking test 023 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1172,19 +1172,19 @@ Test 023 fv3_ccpp_regional_c768 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1232,7 +1232,7 @@ Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1280,7 +1280,7 @@ Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,7 +1328,7 @@ Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 029 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,7 +1376,7 @@ Test 029 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1424,7 +1424,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1472,7 +1472,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1520,7 +1520,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/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 @@ -1568,7 +1568,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/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 @@ -1620,7 +1620,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1674,7 +1674,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1766,7 +1766,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1834,7 +1834,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/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 @@ -1902,7 +1902,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1994,7 +1994,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfsv16_csawmg_prod Checking test 040 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2042,7 +2042,7 @@ Test 040 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfsv16_csawmgt_prod Checking test 041 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2090,7 +2090,7 @@ Test 041 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gocart_clm_prod Checking test 042 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2138,7 +2138,7 @@ Test 042 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfs_v16beta_flake_prod Checking test 043 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,7 +2206,7 @@ Test 043 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gsd_debug_prod Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,7 +2274,7 @@ Test 044 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gsd_diag3d_debug_prod Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2342,7 +2342,7 @@ Test 045 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_thompson_debug_prod Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,7 +2410,7 @@ Test 046 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_thompson_no_aero_debug_prod Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2478,7 +2478,7 @@ Test 047 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2546,7 +2546,7 @@ Test 048 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_1stepcold_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod Checking test 049 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2601,7 +2601,7 @@ Test 049 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod Checking test 050 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2656,7 +2656,7 @@ Test 050 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod Checking test 051 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux results .... Comparing phyf072.tile1.nc .........OK Comparing phyf072.tile2.nc .........OK @@ -2711,7 +2711,7 @@ Test 051 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod Checking test 052 cpld_fv3_ccpp_mom6_cice_cmeps_restart results .... Comparing phyf072.tile1.nc .........OK Comparing phyf072.tile2.nc .........OK @@ -2766,7 +2766,7 @@ Test 052 cpld_fv3_ccpp_mom6_cice_cmeps_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod Checking test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2821,7 +2821,7 @@ Test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod Checking test 054 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2876,7 +2876,7 @@ Test 054 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_1d_warm_satmedmf_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod Checking test 055 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2931,7 +2931,7 @@ Test 055 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp384_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod Checking test 056 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2986,7 +2986,7 @@ Test 056 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp384_cmeps_frac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod Checking test 057 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3041,7 +3041,7 @@ Test 057 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_1d_bmrt_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod Checking test 058 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3133,7 +3133,7 @@ Test 058 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_1d_bmwav_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod Checking test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3191,7 +3191,7 @@ Test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_6h_warm_debug_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod Checking test 060 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3247,5 +3247,5 @@ Test 060 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Oct 20 02:21:19 UTC 2020 -Elapsed time: 03h:00m:08s. Have a nice day! +Thu Oct 22 15:52:17 UTC 2020 +Elapsed time: 01h:57m:17s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index ec01aeec3d..c5d0df470b 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -137,6 +137,10 @@ if [[ "${MAKE_OPT}" == *"S2S=Y"* ]]; then CMAKE_FLAGS="${CMAKE_FLAGS} -DS2S=Y" fi +if [[ "${MAKE_OPT}" == *"DATM=Y"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DDATM=Y" +fi + CMAKE_FLAGS=$(trim "${CMAKE_FLAGS}") if [ $clean_before = YES ] ; then diff --git a/tests/rt.conf b/tests/rt.conf index 69a93d77e4..3737becb0b 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -190,3 +190,9 @@ RUN | cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | RUN | cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | + +####################################################################################################################################################################################### +# Data Atmosphere tests +####################################################################################################################################################################################### + +COMPILE | DATM=Y S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 119cf98abf..90940de94a 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -420,8 +420,8 @@ if [[ $CREATE_BASELINE == true ]]; then rsync -a "${RTPWD}"/FV3_* "${NEW_BASELINE}"/ rsync -a "${RTPWD}"/WW3_* "${NEW_BASELINE}"/ - # S2S baselines are only (so far) available on these machines - if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = wcoss_dell_p3 ]]; then + # FIXME: S2S baselines are only available on these machines with Intel + if [[ $MACHINE_ID = hera.intel ]] || [[ $MACHINE_ID = orion.intel ]] || [[ $MACHINE_ID = wcoss_dell_p3 ]]; then rsync -a "${RTPWD}"/MOM6_* "${NEW_BASELINE}"/ rsync -a "${RTPWD}"/CICE_* "${NEW_BASELINE}"/ rsync -a "${RTPWD}"/CPL_* "${NEW_BASELINE}"/ diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index b4a7455b44..d09d00fe46 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -43,3 +43,15 @@ COMPILE | CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y #RUN | fv3_ccpp_gsd_debug | standard | | fv3 | #RUN | fv3_ccpp_thompson_debug | standard | | fv3 | #RUN | fv3_ccpp_thompson_no_aero_debug | standard | | fv3 | + +####################################################################################################################################################################################### +# S2S tests +####################################################################################################################################################################################### + +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | | fv3 | + +####################################################################################################################################################################################### +# Data Atmosphere tests +####################################################################################################################################################################################### + +COMPILE | DATM=Y S2S=Y | standard | | fv3 | From 238d19481848f85db1387ea42524e3661a849e0e Mon Sep 17 00:00:00 2001 From: "denise.worthen" Date: Fri, 23 Oct 2020 05:19:53 -0400 Subject: [PATCH 016/109] add wcoss_cray logs (from Minsuk) --- tests/RegressionTests_wcoss_cray.log | 96 ++++++++++++++-------------- 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index da4ab186f7..bb652ef0b1 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Thu Oct 22 13:49:20 UTC 2020 +Thu Oct 22 20:23:15 UTC 2020 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/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-20201019/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/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-20201019/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/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-20201019/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/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-20201019/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/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-20201019/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/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-20201019/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/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-20201019/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -841,7 +841,7 @@ Test 014 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -909,7 +909,7 @@ Test 015 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -965,7 +965,7 @@ Test 016 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1032,7 +1032,7 @@ Test 017 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1043,7 +1043,7 @@ Test 018 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1052,7 +1052,7 @@ Test 019 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1063,19 +1063,19 @@ Test 020 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_control_debug_prod Checking test 021 fv3_ccpp_control_debug results .... Test 021 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_stretched_nest_debug_prod Checking test 022 fv3_ccpp_stretched_nest_debug results .... Test 022 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfdlmp_prod Checking test 023 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,7 +1123,7 @@ Test 023 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfdlmprad_gwd_prod Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1171,7 +1171,7 @@ Test 024 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,7 +1219,7 @@ Test 025 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 026 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,7 +1267,7 @@ Test 026 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,7 +1315,7 @@ Test 027 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,7 +1363,7 @@ Test 028 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,7 +1411,7 @@ Test 029 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,7 +1459,7 @@ Test 030 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1511,7 +1511,7 @@ Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1565,7 +1565,7 @@ Test 032 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,7 +1657,7 @@ Test 033 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1725,7 +1725,7 @@ Test 034 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,7 +1793,7 @@ Test 035 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1885,7 +1885,7 @@ Test 036 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfsv16_csawmg_prod Checking test 037 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1933,7 +1933,7 @@ Test 037 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfsv16_csawmgt_prod Checking test 038 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1981,7 +1981,7 @@ Test 038 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gocart_clm_prod Checking test 039 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2029,7 +2029,7 @@ Test 039 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfs_v16beta_flake_prod Checking test 040 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2097,7 +2097,7 @@ Test 040 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2165,7 +2165,7 @@ Test 041 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2233,7 +2233,7 @@ Test 042 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2301,7 +2301,7 @@ Test 043 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2369,7 +2369,7 @@ Test 044 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2437,5 +2437,5 @@ Test 045 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Oct 22 14:30:47 UTC 2020 -Elapsed time: 00h:41m:28s. Have a nice day! +Thu Oct 22 21:42:27 UTC 2020 +Elapsed time: 01h:19m:13s. Have a nice day! From 4694a1df11bda9e75eaa48f89887ac69e2499293 Mon Sep 17 00:00:00 2001 From: "denise.worthen" Date: Fri, 23 Oct 2020 09:25:39 +0000 Subject: [PATCH 017/109] point to new baseline skip-ci --- tests/rt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rt.sh b/tests/rt.sh index 90940de94a..e99e8ecf06 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -400,7 +400,7 @@ if [[ $SINGLE_NAME != '' ]]; then fi if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = jet.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201019/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201022/${RT_COMPILER^^}} else RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201019} fi From a36faa7108086b3ae6e9de17d55790a6d65c0d10 Mon Sep 17 00:00:00 2001 From: "denise.worthen" Date: Fri, 23 Oct 2020 09:28:16 +0000 Subject: [PATCH 018/109] fix missed rtpwd setting skip-ci --- tests/rt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rt.sh b/tests/rt.sh index e99e8ecf06..8d27e1e2ae 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -402,7 +402,7 @@ fi if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = jet.* ]]; then RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201022/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201019} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201022} fi shift $((OPTIND-1)) From e5be00caa882e2afe440194188e2a92b2b50c721 Mon Sep 17 00:00:00 2001 From: "denise.worthen" Date: Fri, 23 Oct 2020 06:02:21 -0500 Subject: [PATCH 019/109] add orion logs --- tests/RegressionTests_orion.intel.log | 679 ++++++++++++++------------ 1 file changed, 365 insertions(+), 314 deletions(-) diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 10d9ae72d9..1f5cb30e71 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Oct 22 08:23:37 CDT 2020 +Fri Oct 23 04:34:51 CDT 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/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-20201019/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/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-20201019/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/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-20201019/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/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-20201019/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/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-20201019/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/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-20201019/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/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-20201019/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,8 +835,8 @@ Checking test 014 fv3_ccpp_gfdlmprad results .... Test 014 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Test 015 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,8 +933,8 @@ Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 016 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,8 +1007,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/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 @@ -1075,8 +1075,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,8 +1131,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/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 @@ -1198,8 +1198,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,8 +1209,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,8 +1218,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,8 +1229,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_regional_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_regional_c768_prod Checking test 024 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1240,20 +1240,20 @@ Checking test 024 fv3_ccpp_regional_c768 results .... Test 024 fv3_ccpp_regional_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1300,8 +1300,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/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 @@ -1348,8 +1348,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/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 @@ -1396,8 +1396,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1444,8 +1444,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1492,8 +1492,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1540,8 +1540,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1592,8 +1592,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1646,8 +1646,8 @@ Checking test 034 fv3_ccpp_cpt results .... Test 034 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,8 +1738,8 @@ Checking test 035 fv3_ccpp_gsd results .... Test 035 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1806,8 +1806,8 @@ Checking test 036 fv3_ccpp_thompson results .... Test 036 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1874,8 +1874,8 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1966,8 +1966,8 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/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 @@ -2034,8 +2034,8 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/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 @@ -2102,8 +2102,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Test 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2150,8 +2150,8 @@ Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Test 041 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2198,8 +2198,8 @@ Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Test 042 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2246,8 +2246,8 @@ Checking test 043 fv3_ccpp_gocart_clm results .... Test 043 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2314,8 +2314,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Test 044 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfs_v15p2_debug_prod Checking test 045 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2382,8 +2382,8 @@ Checking test 045 fv3_ccpp_gfs_v15p2_debug results .... Test 045 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfs_v16beta_debug_prod Checking test 046 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2450,8 +2450,8 @@ Checking test 046 fv3_ccpp_gfs_v16beta_debug results .... Test 046 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2518,8 +2518,8 @@ Checking test 047 fv3_ccpp_gsd_debug results .... Test 047 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2586,8 +2586,8 @@ Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Test 048 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2654,8 +2654,8 @@ Checking test 049 fv3_ccpp_thompson_debug results .... Test 049 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2722,8 +2722,8 @@ Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Test 050 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2790,21 +2790,21 @@ Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Test 051 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1stepcold_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod -Checking test 052 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux 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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_control_prod +Checking test 052 cpld_control results .... + 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 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 @@ -2838,28 +2838,25 @@ Checking test 052 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-05-00000.nc .........OK -Test 052 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 052 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod -Checking test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux 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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_2threads_prod +Checking test 053 cpld_2threads results .... + 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 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 @@ -2893,28 +2890,25 @@ Checking test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-05-00000.nc .........OK -Test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod -Checking test 054 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux results .... - Comparing phyf072.tile1.nc .........OK - Comparing phyf072.tile2.nc .........OK - Comparing phyf072.tile3.nc .........OK - Comparing phyf072.tile4.nc .........OK - Comparing phyf072.tile5.nc .........OK - Comparing phyf072.tile6.nc .........OK - Comparing dynf072.tile1.nc .........OK - Comparing dynf072.tile2.nc .........OK - Comparing dynf072.tile3.nc .........OK - Comparing dynf072.tile4.nc .........OK - Comparing dynf072.tile5.nc .........OK - Comparing dynf072.tile6.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 053 cpld_2threads PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_decomp_prod +Checking test 054 cpld_decomp results .... + 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 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 @@ -2948,28 +2942,25 @@ Checking test 054 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-06-00000.nc .........OK -Test 054 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod -Checking test 055 cpld_fv3_ccpp_mom6_cice_cmeps_restart results .... - Comparing phyf072.tile1.nc .........OK - Comparing phyf072.tile2.nc .........OK - Comparing phyf072.tile3.nc .........OK - Comparing phyf072.tile4.nc .........OK - Comparing phyf072.tile5.nc .........OK - Comparing phyf072.tile6.nc .........OK - Comparing dynf072.tile1.nc .........OK - Comparing dynf072.tile2.nc .........OK - Comparing dynf072.tile3.nc .........OK - Comparing dynf072.tile4.nc .........OK - Comparing dynf072.tile5.nc .........OK - Comparing dynf072.tile6.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 054 cpld_decomp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_satmedmf_prod +Checking test 055 cpld_satmedmf results .... + 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 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 @@ -3003,28 +2994,77 @@ Checking test 055 cpld_fv3_ccpp_mom6_cice_cmeps_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-06-00000.nc .........OK -Test 055 cpld_fv3_ccpp_mom6_cice_cmeps_restart PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 055 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod -Checking test 056 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads 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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_ca_prod +Checking test 056 cpld_ca results .... + 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 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 + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 056 cpld_ca PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_control_mx025_prod +Checking test 057 cpld_control_mx025 results .... + 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 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 @@ -3061,25 +3101,25 @@ Checking test 056 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK -Test 056 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 057 cpld_control_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod -Checking test 057 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp 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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_12h_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_control_mx025_12h_prod +Checking test 058 cpld_control_mx025_12h results .... + 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 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 @@ -3116,13 +3156,13 @@ Checking test 057 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK -Test 057 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp PASS + Comparing RESTART/iced.2016-10-03-43200.nc .........OK +Test 058 cpld_control_mx025_12h PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_warm_satmedmf_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod -Checking test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_restart_mx025_prod +Checking test 059 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3172,24 +3212,76 @@ Checking test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf PASS +Test 059 cpld_restart_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp384_cmeps_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod -Checking test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux 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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_control_c192_prod +Checking test 060 cpld_control_c192 results .... + 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 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 + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 060 cpld_control_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_control_c384_prod +Checking test 061 cpld_control_c384 results .... + 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 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 @@ -3226,25 +3318,25 @@ Checking test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK -Test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 061 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp384_cmeps_frac_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod -Checking test 060 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac 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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_controlfrac_c384_prod +Checking test 062 cpld_controlfrac_c384 results .... + 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 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 @@ -3281,13 +3373,13 @@ Checking test 060 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac results ... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK -Test 060 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 062 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_bmrt_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod -Checking test 061 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_bmark_prod +Checking test 063 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3332,54 +3424,17 @@ Checking test 061 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.120000.coupler.res .........OK - Comparing RESTART/20130401.120000.fv_core.res.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile6.nc .........OK 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/MOM.res.2013-04-01-12-00-00.nc .........OK - Comparing RESTART/MOM.res.2013-04-01-12-00-00_1.nc .........OK - Comparing RESTART/MOM.res.2013-04-01-12-00-00_2.nc .........OK - Comparing RESTART/MOM.res.2013-04-01-12-00-00_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK -Test 061 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt PASS +Test 063 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_bmwav_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod -Checking test 062 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_bmark_wave_prod +Checking test 064 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3432,12 +3487,12 @@ Checking test 062 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 062 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt PASS +Test 064 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_6h_warm_debug_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod -Checking test 063 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_debug_prod +Checking test 065 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -3483,14 +3538,10 @@ Checking test 063 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-03-21600.nc .........OK - Comparing ufs.s2s.cpl.r.2016-10-03-21600.nc .........OK -Test 063 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug PASS +Test 065 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Oct 22 09:50:23 CDT 2020 -Elapsed time: 01h:26m:48s. Have a nice day! +Fri Oct 23 05:40:42 CDT 2020 +Elapsed time: 01h:05m:54s. Have a nice day! From 3dcbb0c9da398c0650c9ca580fd1bdf310552df0 Mon Sep 17 00:00:00 2001 From: "denise.worthen" Date: Fri, 23 Oct 2020 11:04:45 +0000 Subject: [PATCH 020/109] add dell-p3 logs skip-ci --- tests/RegressionTests_wcoss_dell_p3.log | 667 +++++++++++++----------- 1 file changed, 359 insertions(+), 308 deletions(-) diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 934312ac41..834809d3d0 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Thu Oct 22 13:55:04 UTC 2020 +Fri Oct 23 09:29:36 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/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-20201019/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/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-20201019/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/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-20201019/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/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-20201019/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/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-20201019/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/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-20201019/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/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-20201019/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,8 +815,8 @@ Checking test 014 fv3_ccpp_gfdlmprad results .... Test 014 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -864,8 +864,8 @@ Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Test 015 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1062,8 +1062,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1129,8 +1129,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1140,8 +1140,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1149,8 +1149,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1160,8 +1160,8 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_regional_c768_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_regional_c768_prod Checking test 023 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1171,20 +1171,20 @@ Checking test 023 fv3_ccpp_regional_c768 results .... Test 023 fv3_ccpp_regional_c768 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1231,8 +1231,8 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,8 +1279,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1327,8 +1327,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmp_hwrfsas_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmp_hwrfsas_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 029 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,8 +1375,8 @@ Checking test 029 fv3_ccpp_gfdlmp_hwrfsas results .... Test 029 fv3_ccpp_gfdlmp_hwrfsas PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1423,8 +1423,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1471,8 +1471,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1519,8 +1519,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/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 @@ -1567,8 +1567,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/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 @@ -1619,8 +1619,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1673,8 +1673,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1765,8 +1765,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1833,8 +1833,8 @@ Checking test 037 fv3_ccpp_thompson results .... Test 037 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/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 @@ -1901,8 +1901,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1993,8 +1993,8 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfsv16_csawmg_prod Checking test 040 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2041,8 +2041,8 @@ Checking test 040 fv3_ccpp_gfsv16_csawmg results .... Test 040 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfsv16_csawmgt_prod Checking test 041 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2089,8 +2089,8 @@ Checking test 041 fv3_ccpp_gfsv16_csawmgt results .... Test 041 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gocart_clm_prod Checking test 042 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2137,8 +2137,8 @@ Checking test 042 fv3_ccpp_gocart_clm results .... Test 042 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfs_v16beta_flake_prod Checking test 043 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2205,8 +2205,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta_flake results .... Test 043 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gsd_debug_prod Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2273,8 +2273,8 @@ Checking test 044 fv3_ccpp_gsd_debug results .... Test 044 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gsd_diag3d_debug_prod Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2341,8 +2341,8 @@ Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Test 045 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_thompson_debug_prod Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2409,8 +2409,8 @@ Checking test 046 fv3_ccpp_thompson_debug results .... Test 046 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_thompson_no_aero_debug_prod Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2477,8 +2477,8 @@ Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Test 047 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2545,21 +2545,21 @@ Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Test 048 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_1stepcold_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod -Checking test 049 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux 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-20201022/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_control_prod +Checking test 049 cpld_control results .... + 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 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 @@ -2593,28 +2593,25 @@ Checking test 049 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-05-00000.nc .........OK -Test 049 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 049 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod -Checking test 050 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux 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-20201022/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_2threads_prod +Checking test 050 cpld_2threads results .... + 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 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 @@ -2648,28 +2645,25 @@ Checking test 050 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-05-00000.nc .........OK -Test 050 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod -Checking test 051 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux results .... - Comparing phyf072.tile1.nc .........OK - Comparing phyf072.tile2.nc .........OK - Comparing phyf072.tile3.nc .........OK - Comparing phyf072.tile4.nc .........OK - Comparing phyf072.tile5.nc .........OK - Comparing phyf072.tile6.nc .........OK - Comparing dynf072.tile1.nc .........OK - Comparing dynf072.tile2.nc .........OK - Comparing dynf072.tile3.nc .........OK - Comparing dynf072.tile4.nc .........OK - Comparing dynf072.tile5.nc .........OK - Comparing dynf072.tile6.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 050 cpld_2threads PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_decomp_prod +Checking test 051 cpld_decomp results .... + 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 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 @@ -2703,28 +2697,25 @@ Checking test 051 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-06-00000.nc .........OK -Test 051 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod -Checking test 052 cpld_fv3_ccpp_mom6_cice_cmeps_restart results .... - Comparing phyf072.tile1.nc .........OK - Comparing phyf072.tile2.nc .........OK - Comparing phyf072.tile3.nc .........OK - Comparing phyf072.tile4.nc .........OK - Comparing phyf072.tile5.nc .........OK - Comparing phyf072.tile6.nc .........OK - Comparing dynf072.tile1.nc .........OK - Comparing dynf072.tile2.nc .........OK - Comparing dynf072.tile3.nc .........OK - Comparing dynf072.tile4.nc .........OK - Comparing dynf072.tile5.nc .........OK - Comparing dynf072.tile6.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 051 cpld_decomp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_satmedmf_prod +Checking test 052 cpld_satmedmf results .... + 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 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 @@ -2758,28 +2749,77 @@ Checking test 052 cpld_fv3_ccpp_mom6_cice_cmeps_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-06-00000.nc .........OK -Test 052 cpld_fv3_ccpp_mom6_cice_cmeps_restart PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 052 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod -Checking test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads 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-20201022/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_ca_prod +Checking test 053 cpld_ca results .... + 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 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 + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 053 cpld_ca PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_control_mx025_prod +Checking test 054 cpld_control_mx025 results .... + 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 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 @@ -2816,25 +2856,25 @@ Checking test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK -Test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 054 cpld_control_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod -Checking test 054 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp 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-20201022/cpld_control_mx025_12h_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_control_mx025_12h_prod +Checking test 055 cpld_control_mx025_12h results .... + 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 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 @@ -2871,13 +2911,13 @@ Checking test 054 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK -Test 054 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp PASS + Comparing RESTART/iced.2016-10-03-43200.nc .........OK +Test 055 cpld_control_mx025_12h PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_1d_warm_satmedmf_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod -Checking test 055 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_restart_mx025_prod +Checking test 056 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2927,24 +2967,76 @@ Checking test 055 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 055 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf PASS +Test 056 cpld_restart_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp384_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod -Checking test 056 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux 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-20201022/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_control_c192_prod +Checking test 057 cpld_control_c192 results .... + 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 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 + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 057 cpld_control_c192 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_control_c384_prod +Checking test 058 cpld_control_c384 results .... + 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 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 @@ -2981,25 +3073,25 @@ Checking test 056 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK -Test 056 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 058 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp384_cmeps_frac_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod -Checking test 057 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac 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-20201022/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_controlfrac_c384_prod +Checking test 059 cpld_controlfrac_c384 results .... + 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 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 @@ -3036,13 +3128,13 @@ Checking test 057 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac results ... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK -Test 057 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 059 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_1d_bmrt_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod -Checking test 058 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_bmark_prod +Checking test 060 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3087,54 +3179,17 @@ Checking test 058 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.120000.coupler.res .........OK - Comparing RESTART/20130401.120000.fv_core.res.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile6.nc .........OK 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/MOM.res.2013-04-01-12-00-00.nc .........OK - Comparing RESTART/MOM.res.2013-04-01-12-00-00_1.nc .........OK - Comparing RESTART/MOM.res.2013-04-01-12-00-00_2.nc .........OK - Comparing RESTART/MOM.res.2013-04-01-12-00-00_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK -Test 058 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt PASS +Test 060 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_1d_bmwav_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod -Checking test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_bmark_wave_prod +Checking test 061 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3187,12 +3242,12 @@ Checking test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt PASS +Test 061 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_6h_warm_debug_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod -Checking test 060 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_debug_prod +Checking test 062 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -3238,14 +3293,10 @@ Checking test 060 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-03-21600.nc .........OK - Comparing ufs.s2s.cpl.r.2016-10-03-21600.nc .........OK -Test 060 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug PASS +Test 062 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Oct 22 15:52:17 UTC 2020 -Elapsed time: 01h:57m:17s. Have a nice day! +Fri Oct 23 11:00:08 UTC 2020 +Elapsed time: 01h:30m:36s. Have a nice day! From c8e2d31423ac7e00ab7c210189da87a6ad484ee1 Mon Sep 17 00:00:00 2001 From: "denise.worthen" Date: Fri, 23 Oct 2020 12:53:48 +0000 Subject: [PATCH 021/109] add hera logs --- tests/RegressionTests_hera.intel.log | 695 ++++++++++++++------------- 1 file changed, 373 insertions(+), 322 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index c55b328c71..a606937152 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Thu Oct 22 09:26:22 EDT 2020 +Fri Oct 23 12:03:48 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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-20201019/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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-20201019/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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-20201019/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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-20201019/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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-20201019/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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-20201019/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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-20201019/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -854,8 +854,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfdlmprad_prod Checking test 016 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -951,8 +951,8 @@ Checking test 016 fv3_ccpp_gfdlmprad results .... Test 016 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1000,8 +1000,8 @@ Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Test 017 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1049,8 +1049,8 @@ Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 018 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_multigases results .... Test 019 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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,8 +1191,8 @@ Checking test 020 fv3_ccpp_control_32bit results .... Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,8 +1247,8 @@ Checking test 021 fv3_ccpp_stretched results .... Test 021 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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,8 +1314,8 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1325,8 +1325,8 @@ Checking test 023 fv3_ccpp_regional_control results .... Test 023 fv3_ccpp_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1334,8 +1334,8 @@ Checking test 024 fv3_ccpp_regional_restart results .... Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1345,8 +1345,8 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_regional_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1356,20 +1356,20 @@ Checking test 026 fv3_ccpp_regional_c768 results .... Test 026 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_stretched_nest_debug_prod Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1416,8 +1416,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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 @@ -1464,8 +1464,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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 @@ -1512,8 +1512,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_hwrfsas_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmp_hwrfsas_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_hwrfsas_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 032 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1560,8 +1560,8 @@ Checking test 032 fv3_ccpp_gfdlmp_hwrfsas results .... Test 032 fv3_ccpp_gfdlmp_hwrfsas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1608,8 +1608,8 @@ Checking test 033 fv3_ccpp_csawmg results .... Test 033 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1656,8 +1656,8 @@ Checking test 034 fv3_ccpp_satmedmf results .... Test 034 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1704,8 +1704,8 @@ Checking test 035 fv3_ccpp_satmedmfq results .... Test 035 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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 @@ -1752,8 +1752,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-20201019/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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 @@ -1804,8 +1804,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-20201019/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1858,8 +1858,8 @@ Checking test 038 fv3_ccpp_cpt results .... Test 038 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1950,8 +1950,8 @@ Checking test 039 fv3_ccpp_gsd results .... Test 039 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2018,8 +2018,8 @@ Checking test 040 fv3_ccpp_rap results .... Test 040 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2086,8 +2086,8 @@ Checking test 041 fv3_ccpp_hrrr results .... Test 041 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2154,8 +2154,8 @@ Checking test 042 fv3_ccpp_thompson results .... Test 042 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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 @@ -2222,8 +2222,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-20201019/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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 @@ -2314,8 +2314,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-20201019/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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 @@ -2382,8 +2382,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-20201019/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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 @@ -2450,8 +2450,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-20201019/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfsv16_csawmg_prod Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2498,8 +2498,8 @@ Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Test 047 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfsv16_csawmgt_prod Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2546,8 +2546,8 @@ Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Test 048 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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 @@ -2594,8 +2594,8 @@ Checking test 049 fv3_ccpp_gocart_clm results .... Test 049 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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 @@ -2662,8 +2662,8 @@ Checking test 050 fv3_ccpp_gfs_v16beta_flake results .... Test 050 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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 @@ -2730,8 +2730,8 @@ Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... Test 051 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/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 @@ -2798,8 +2798,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_debug results .... Test 052 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gsd_debug_prod Checking test 053 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2866,8 +2866,8 @@ Checking test 053 fv3_ccpp_gsd_debug results .... Test 053 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gsd_diag3d_debug_prod Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2934,8 +2934,8 @@ Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Test 054 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_thompson_debug_prod Checking test 055 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3002,8 +3002,8 @@ Checking test 055 fv3_ccpp_thompson_debug results .... Test 055 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_thompson_no_aero_debug_prod Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3070,8 +3070,8 @@ Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Test 056 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3138,21 +3138,21 @@ Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Test 057 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1stepcold_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod -Checking test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux 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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_control_prod +Checking test 058 cpld_control results .... + 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 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 @@ -3186,28 +3186,25 @@ Checking test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-05-00000.nc .........OK -Test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 058 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod -Checking test 059 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux 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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_2threads_prod +Checking test 059 cpld_2threads results .... + 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 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 @@ -3241,28 +3238,25 @@ Checking test 059 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-05-00000.nc .........OK -Test 059 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 059 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod -Checking test 060 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux results .... - Comparing phyf072.tile1.nc .........OK - Comparing phyf072.tile2.nc .........OK - Comparing phyf072.tile3.nc .........OK - Comparing phyf072.tile4.nc .........OK - Comparing phyf072.tile5.nc .........OK - Comparing phyf072.tile6.nc .........OK - Comparing dynf072.tile1.nc .........OK - Comparing dynf072.tile2.nc .........OK - Comparing dynf072.tile3.nc .........OK - Comparing dynf072.tile4.nc .........OK - Comparing dynf072.tile5.nc .........OK - Comparing dynf072.tile6.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_decomp_prod +Checking test 060 cpld_decomp results .... + 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 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 @@ -3296,28 +3290,25 @@ Checking test 060 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-06-00000.nc .........OK -Test 060 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 060 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod -Checking test 061 cpld_fv3_ccpp_mom6_cice_cmeps_restart results .... - Comparing phyf072.tile1.nc .........OK - Comparing phyf072.tile2.nc .........OK - Comparing phyf072.tile3.nc .........OK - Comparing phyf072.tile4.nc .........OK - Comparing phyf072.tile5.nc .........OK - Comparing phyf072.tile6.nc .........OK - Comparing dynf072.tile1.nc .........OK - Comparing dynf072.tile2.nc .........OK - Comparing dynf072.tile3.nc .........OK - Comparing dynf072.tile4.nc .........OK - Comparing dynf072.tile5.nc .........OK - Comparing dynf072.tile6.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_satmedmf_prod +Checking test 061 cpld_satmedmf results .... + 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 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 @@ -3351,28 +3342,77 @@ Checking test 061 cpld_fv3_ccpp_mom6_cice_cmeps_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-06-00000.nc .........OK -Test 061 cpld_fv3_ccpp_mom6_cice_cmeps_restart PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 061 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod -Checking test 062 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads 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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_ca_prod +Checking test 062 cpld_ca results .... + 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 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 + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 062 cpld_ca PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_control_mx025_prod +Checking test 063 cpld_control_mx025 results .... + 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 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 @@ -3409,25 +3449,25 @@ Checking test 062 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK -Test 062 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 063 cpld_control_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod -Checking test 063 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp 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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_12h_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_control_mx025_12h_prod +Checking test 064 cpld_control_mx025_12h results .... + 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 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 @@ -3464,13 +3504,13 @@ Checking test 063 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK -Test 063 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp PASS + Comparing RESTART/iced.2016-10-03-43200.nc .........OK +Test 064 cpld_control_mx025_12h PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_warm_satmedmf_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod -Checking test 064 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_restart_mx025_prod +Checking test 065 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3520,24 +3560,76 @@ Checking test 064 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 064 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf PASS +Test 065 cpld_restart_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp384_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod -Checking test 065 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux 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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_control_c192_prod +Checking test 066 cpld_control_c192 results .... + 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 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 + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 066 cpld_control_c192 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_control_c384_prod +Checking test 067 cpld_control_c384 results .... + 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 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 @@ -3574,25 +3666,25 @@ Checking test 065 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK -Test 065 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 067 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp384_cmeps_frac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod -Checking test 066 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac 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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_controlfrac_c384_prod +Checking test 068 cpld_controlfrac_c384 results .... + 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 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 @@ -3629,13 +3721,13 @@ Checking test 066 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac results ... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK -Test 066 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK +Test 068 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_bmrt_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod -Checking test 067 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_bmark_prod +Checking test 069 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3680,54 +3772,17 @@ Checking test 067 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.120000.coupler.res .........OK - Comparing RESTART/20130401.120000.fv_core.res.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.120000.sfc_data.tile6.nc .........OK 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/MOM.res.2013-04-01-12-00-00.nc .........OK - Comparing RESTART/MOM.res.2013-04-01-12-00-00_1.nc .........OK - Comparing RESTART/MOM.res.2013-04-01-12-00-00_2.nc .........OK - Comparing RESTART/MOM.res.2013-04-01-12-00-00_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK -Test 067 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt PASS +Test 069 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_bmwav_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod -Checking test 068 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_bmark_wave_prod +Checking test 070 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3780,12 +3835,12 @@ Checking test 068 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 068 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt PASS +Test 070 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_6h_warm_debug_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod -Checking test 069 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_debug_prod +Checking test 071 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -3831,14 +3886,10 @@ Checking test 069 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-03-21600.nc .........OK - Comparing ufs.s2s.cpl.r.2016-10-03-21600.nc .........OK -Test 069 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug PASS +Test 071 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Oct 22 10:36:25 EDT 2020 -Elapsed time: 01h:10m:05s. Have a nice day! +Fri Oct 23 12:50:23 UTC 2020 +Elapsed time: 00h:46m:37s. Have a nice day! From c12980d2164f5d303e1a0a59a41f72112dded96e Mon Sep 17 00:00:00 2001 From: BinLi-NOAA Date: Fri, 30 Oct 2020 09:34:53 -0400 Subject: [PATCH 022/109] Add new tests for DATM-MOM6-CICE6 model (#256) * Added the following files for datm-mom6-cice6 tests: fv3_conf/cpld_datm_cfsr.IN fv3_conf/cpld_datm_gefs.IN parm/datm_configure.IN parm/datm_data_table.IN parm/input.mom6.nml.IN parm/nems.configure.datm.IN tests/datm_ocn_ice_mx025_cfsr tests/datm_ocn_ice_mx025_gefs tests/datm_ocn_ice_mx100_cfsr tests/datm_ocn_ice_mx100_gefs Revised default_vars.sh and run_test.sh. * Removed blank space in some coupled test files. * Revised scripts. * Revised test description. * Revised scripts and added log file from Hera. * Added log file from Orion. --- tests/RegressionTests_hera.intel.log | 190 ++++++++++++++++---------- tests/RegressionTests_orion.intel.log | 178 +++++++++++++++--------- tests/default_vars.sh | 101 +++++++++++++- tests/fv3_conf/cpld_datm_cfsr.IN | 26 ++++ tests/fv3_conf/cpld_datm_gefs.IN | 24 ++++ tests/parm/datm_configure.IN | 22 +++ tests/parm/datm_data_table.IN | 24 ++++ tests/parm/input.mom6.nml.IN | 15 ++ tests/parm/nems.configure.datm.IN | 106 ++++++++++++++ tests/rt.conf | 6 +- tests/run_test.sh | 15 +- tests/tests/cpld_ca | 2 +- tests/tests/cpld_control | 2 +- tests/tests/cpld_control_12h | 2 +- tests/tests/cpld_control_c192 | 2 +- tests/tests/cpld_debug | 2 +- tests/tests/cpld_decomp | 2 +- tests/tests/cpld_restart | 2 +- tests/tests/cpld_restart_mx025 | 2 +- tests/tests/cpld_satmedmf | 2 +- tests/tests/datm_control_cfsr | 18 +++ tests/tests/datm_control_gefs | 14 ++ tests/tests/datm_mx025_cfsr | 47 +++++++ tests/tests/datm_mx025_gefs | 43 ++++++ 24 files changed, 689 insertions(+), 158 deletions(-) create mode 100644 tests/fv3_conf/cpld_datm_cfsr.IN create mode 100644 tests/fv3_conf/cpld_datm_gefs.IN create mode 100644 tests/parm/datm_configure.IN create mode 100644 tests/parm/datm_data_table.IN create mode 100644 tests/parm/input.mom6.nml.IN create mode 100644 tests/parm/nems.configure.datm.IN create mode 100644 tests/tests/datm_control_cfsr create mode 100644 tests/tests/datm_control_gefs create mode 100644 tests/tests/datm_mx025_cfsr create mode 100644 tests/tests/datm_mx025_gefs diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index a606937152..4b78de71d2 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Fri Oct 23 12:03:48 UTC 2020 +Thu Oct 29 18:36:37 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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-20201022/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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-20201022/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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-20201022/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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-20201022/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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-20201022/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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-20201022/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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-20201022/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,7 +787,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -855,7 +855,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfdlmprad_prod Checking test 016 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -952,7 +952,7 @@ Test 016 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1001,7 +1001,7 @@ Test 017 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1050,7 +1050,7 @@ Test 018 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,7 +1124,7 @@ Test 019 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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 @@ -1192,7 +1192,7 @@ Test 020 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1248,7 +1248,7 @@ Test 021 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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 @@ -1315,7 +1315,7 @@ Test 022 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1326,7 +1326,7 @@ Test 023 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1335,7 +1335,7 @@ Test 024 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1346,7 +1346,7 @@ Test 025 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_regional_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1357,19 +1357,19 @@ Test 026 fv3_ccpp_regional_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_stretched_nest_debug_prod Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1417,7 +1417,7 @@ Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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 @@ -1465,7 +1465,7 @@ Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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 @@ -1513,7 +1513,7 @@ Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_hwrfsas_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 032 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,7 +1561,7 @@ Test 032 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1609,7 +1609,7 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,7 +1657,7 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,7 +1705,7 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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 @@ -1753,7 +1753,7 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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 @@ -1805,7 +1805,7 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1859,7 +1859,7 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1951,7 +1951,7 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2019,7 +2019,7 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2087,7 +2087,7 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2155,7 +2155,7 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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 @@ -2223,7 +2223,7 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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 @@ -2315,7 +2315,7 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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 @@ -2383,7 +2383,7 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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 @@ -2451,7 +2451,7 @@ Test 046 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfsv16_csawmg_prod Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2499,7 +2499,7 @@ Test 047 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfsv16_csawmgt_prod Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2547,7 +2547,7 @@ Test 048 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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 @@ -2595,7 +2595,7 @@ Test 049 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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 @@ -2663,7 +2663,7 @@ Test 050 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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 @@ -2731,7 +2731,7 @@ Test 051 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/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 @@ -2799,7 +2799,7 @@ Test 052 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gsd_debug_prod Checking test 053 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2867,7 +2867,7 @@ Test 053 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gsd_diag3d_debug_prod Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2935,7 +2935,7 @@ Test 054 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_thompson_debug_prod Checking test 055 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3003,7 +3003,7 @@ Test 055 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_thompson_no_aero_debug_prod Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3071,7 +3071,7 @@ Test 056 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3139,7 +3139,7 @@ Test 057 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_control_prod Checking test 058 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3191,7 +3191,7 @@ Test 058 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_2threads_prod Checking test 059 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3243,7 +3243,7 @@ Test 059 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_decomp_prod Checking test 060 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3295,7 +3295,7 @@ Test 060 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_satmedmf_prod Checking test 061 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3347,7 +3347,7 @@ Test 061 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_ca_prod Checking test 062 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3399,7 +3399,7 @@ Test 062 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_control_mx025_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_control_mx025_prod Checking test 063 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3454,7 +3454,7 @@ Test 063 cpld_control_mx025 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_control_mx025_12h_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_control_mx025_12h_prod Checking test 064 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3509,7 +3509,7 @@ Test 064 cpld_control_mx025_12h PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_restart_mx025_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_restart_mx025_prod Checking test 065 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3564,7 +3564,7 @@ Test 065 cpld_restart_mx025 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_control_c192_prod Checking test 066 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3616,7 +3616,7 @@ Test 066 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_control_c384_prod Checking test 067 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3671,7 +3671,7 @@ Test 067 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_controlfrac_c384_prod Checking test 068 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3726,7 +3726,7 @@ Test 068 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_bmark_prod Checking test 069 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3781,7 +3781,7 @@ Test 069 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_bmark_wave_prod Checking test 070 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3839,7 +3839,7 @@ Test 070 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_97284/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_debug_prod Checking test 071 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3890,6 +3890,48 @@ Checking test 071 cpld_debug results .... Test 071 cpld_debug PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/datm_control_cfsr_prod +Checking test 072 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 072 datm_control_cfsr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/datm_control_gefs_prod +Checking test 073 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 073 datm_control_gefs PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/datm_mx025_cfsr_prod +Checking test 074 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 074 datm_mx025_cfsr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/datm_mx025_gefs_prod +Checking test 075 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 075 datm_mx025_gefs PASS + + REGRESSION TEST WAS SUCCESSFUL -Fri Oct 23 12:50:23 UTC 2020 -Elapsed time: 00h:46m:37s. Have a nice day! +Thu Oct 29 19:23:07 UTC 2020 +Elapsed time: 00h:46m:32s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 1f5cb30e71..b1d7c7261f 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Fri Oct 23 04:34:51 CDT 2020 +Thu Oct 29 18:53:11 CDT 2020 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/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-20201022/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/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-20201022/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/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-20201022/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/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-20201022/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/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-20201022/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/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-20201022/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/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-20201022/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,7 +787,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -836,7 +836,7 @@ Test 014 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -934,7 +934,7 @@ Test 016 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1008,7 +1008,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/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 @@ -1076,7 +1076,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1132,7 +1132,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/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 @@ -1199,7 +1199,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1210,7 +1210,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1219,7 +1219,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1230,7 +1230,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_regional_c768_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_regional_c768_prod Checking test 024 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1241,19 +1241,19 @@ Test 024 fv3_ccpp_regional_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1301,7 +1301,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/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 @@ -1349,7 +1349,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/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 @@ -1397,7 +1397,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1445,7 +1445,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1493,7 +1493,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1541,7 +1541,7 @@ Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1593,7 +1593,7 @@ Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1647,7 +1647,7 @@ Test 034 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1739,7 +1739,7 @@ Test 035 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1807,7 +1807,7 @@ Test 036 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1875,7 +1875,7 @@ Test 037 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1967,7 +1967,7 @@ Test 038 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/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 @@ -2035,7 +2035,7 @@ Test 039 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfs_v16beta_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/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 @@ -2103,7 +2103,7 @@ Test 040 fv3_ccpp_gfs_v16beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2151,7 +2151,7 @@ Test 041 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2199,7 +2199,7 @@ Test 042 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2247,7 +2247,7 @@ Test 043 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2315,7 +2315,7 @@ Test 044 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfs_v15p2_debug_prod Checking test 045 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2383,7 +2383,7 @@ Test 045 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfs_v16beta_debug_prod Checking test 046 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2451,7 +2451,7 @@ Test 046 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2519,7 +2519,7 @@ Test 047 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2587,7 +2587,7 @@ Test 048 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2655,7 +2655,7 @@ Test 049 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2723,7 +2723,7 @@ Test 050 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2791,7 +2791,7 @@ Test 051 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_control_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_control_prod Checking test 052 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2843,7 +2843,7 @@ Test 052 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_2threads_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_2threads_prod Checking test 053 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2895,7 +2895,7 @@ Test 053 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_decomp_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_decomp_prod Checking test 054 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2947,7 +2947,7 @@ Test 054 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_satmedmf_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_satmedmf_prod Checking test 055 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2999,7 +2999,7 @@ Test 055 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_ca_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_ca_prod Checking test 056 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3051,7 +3051,7 @@ Test 056 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_control_mx025_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_control_mx025_prod Checking test 057 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3106,7 +3106,7 @@ Test 057 cpld_control_mx025 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_control_mx025_12h_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_control_mx025_12h_prod Checking test 058 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3161,7 +3161,7 @@ Test 058 cpld_control_mx025_12h PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_restart_mx025_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_restart_mx025_prod Checking test 059 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3216,7 +3216,7 @@ Test 059 cpld_restart_mx025 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_control_c192_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_control_c192_prod Checking test 060 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3268,7 +3268,7 @@ Test 060 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_control_c384_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_control_c384_prod Checking test 061 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3323,7 +3323,7 @@ Test 061 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_controlfrac_c384_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_controlfrac_c384_prod Checking test 062 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3378,7 +3378,7 @@ Test 062 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_bmark_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_bmark_prod Checking test 063 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3433,7 +3433,7 @@ Test 063 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_bmark_wave_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_bmark_wave_prod Checking test 064 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3491,7 +3491,7 @@ Test 064 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_22836/cpld_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_debug_prod Checking test 065 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3542,6 +3542,48 @@ Checking test 065 cpld_debug results .... Test 065 cpld_debug PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/datm_control_cfsr_prod +Checking test 066 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 066 datm_control_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/datm_control_gefs_prod +Checking test 067 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 067 datm_control_gefs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/datm_mx025_cfsr_prod +Checking test 068 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 068 datm_mx025_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/datm_mx025_gefs_prod +Checking test 069 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 069 datm_mx025_gefs PASS + + REGRESSION TEST WAS SUCCESSFUL -Fri Oct 23 05:40:42 CDT 2020 -Elapsed time: 01h:05m:54s. Have a nice day! +Thu Oct 29 19:58:24 CDT 2020 +Elapsed time: 01h:05m:14s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 0cd1388792..cdb478d9de 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -184,6 +184,9 @@ fi export_fv3 () { +export FV3=true +export S2S=false +export DATM=false export THRD=1 export WLCLK=$WLCLK_dflt export INPES=$INPES_dflt @@ -323,13 +326,14 @@ export IAU_DRYMASSFIXER=.false. # Regional export WRITE_RESTART_WITH_BCS=.false. -export S2S=false export coupling_interval_fast_sec=0 } export_cpl () { +export FV3=true export S2S=true +export DATM=false export DAYS="1" export FHMAX="24" @@ -449,3 +453,98 @@ export_35d_run () export CNTL_DIR="" export LIST_FILES="" } +export_datm () +{ +export FV3=false +export S2S=false +export DATM=true +export DAYS=1 +export FHMAX=24 +export WLCLK=30 +export THRD=1 +export FHROT='0' + +# atm/ocn/ice resolution +# GEFS +export DATM_SRC="GEFS" +export FILENAME_BASE='gefs.' +export IATM=1536 +export JATM=768 +export ATMRES='C96' +export OCNRES='100' +export ICERES='1.00' +export NX_GLB=360 +export NY_GLB=320 + +# nems.configure +export NEMS_CONFIGURE="nems.configure.datm.IN" +export med_model="nems" +export atm_model="datm" +export ocn_model="mom6" +export ice_model="cice6" +export atm_petlist_bounds="0 15" +export med_petlist_bounds="16 111" +export ocn_petlist_bounds="112 231" +export ice_petlist_bounds="232 255" +export TASKS=256 +export TPN=40 +export NPROC_ICE='24' + +export ENS_NUM=1 +export SYEAR='2011' +export SMONTH='10' +export SDAY='01' +export SHOUR='00' +export CDATE=${SYEAR}${SMONTH}${SDAY}${SHOUR} + +export NFHOUT=6 +export FDIAG=6 +export DT_ATMOS='900' +export DT_DYNAM_MOM6='1800' +export DT_THERM_MOM6='3600' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export RESTART_N=${FHMAX} +export CPLMODE='nems_orig_data' +export cap_dbug_flag="0" +export use_coldstart=".false." +export RUNTYPE='startup' + +export INPUT_NML=input.mom6.nml.IN +export MODEL_CONFIGURE=datm_configure.IN +export FIELD_TABLE="field_table" + +# MOM6 defaults; 1 degree +export MOM_INPUT=MOM_input_template_100 +export MOM6_RESTART_SETTING='n' +export MOM6_RIVER_RUNOFF='False' +export FRUNOFF="" +export CHLCLIM='"seawifs_1998-2006_smoothed_2X.nc"' +# this must be set False for restart repro +export MOM6_REPRO_LA='False' +# since CPL_SLOW is set to DT_THERM, this should be always be false +export MOM6_THERMO_SPAN='False' +# no WW3 +export MOM6_USE_WAVES='False' + +# CICE6 defaults; 1 degree +export DT_CICE=${DT_ATMOS} +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export RUNID='unknown' +# set large; restart frequency now controlled by restart_n in nems.configure +export DUMPFREQ='d' +export DUMPFREQ_N=1000 +export USE_RESTART_TIME='.false.' +export RESTART_EXT='.false' +# setting to true will allow Frazil FW and Salt to be +# included in fluxes sent to ocean +export FRAZIL_FWSALT='.true.' +# default to write CICE average history files +export CICE_HIST_AVG='.true.' +export BL_SUFFIX="" +} diff --git a/tests/fv3_conf/cpld_datm_cfsr.IN b/tests/fv3_conf/cpld_datm_cfsr.IN new file mode 100644 index 0000000000..9b0b6b3402 --- /dev/null +++ b/tests/fv3_conf/cpld_datm_cfsr.IN @@ -0,0 +1,26 @@ +mkdir INPUT DATM_INPUT RESTART history MOM6_OUTPUT + +export DATM=true +# FV3 fixed input +export IATM=1760 +export JATM=880 +cp @[RTPWD]/DATM/cfsr.SCRIP.nc DATM_INPUT +ln -s @[RTPWD]/DATM/CFSR/201110/* DATM_INPUT + +# MOM6 fixed input +cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT +cp @[RTPWD]/MOM6_FIX_DATM/@[OCNRES]/* ./INPUT + +# CICE fixed input +cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . +cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . +cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . + + +if [[ $OCNRES == '025' ]]; then + cp @[RTPWD]/MOM6_IC/@[OCNRES]/2011100100/MOM*.nc ./INPUT + cp @[RTPWD]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc +else + cp @[RTPWD]/MOM6_IC/@[OCNRES]/2011100100/MOM6_IC_TS*.nc ./INPUT/MOM6_IC_TS.nc + cp @[RTPWD]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc +fi diff --git a/tests/fv3_conf/cpld_datm_gefs.IN b/tests/fv3_conf/cpld_datm_gefs.IN new file mode 100644 index 0000000000..a1dc1ec762 --- /dev/null +++ b/tests/fv3_conf/cpld_datm_gefs.IN @@ -0,0 +1,24 @@ +mkdir INPUT DATM_INPUT RESTART history MOM6_OUTPUT + +export DATM=true +# FV3 fixed input +cp @[RTPWD]/DATM/gefs.SCRIP.nc DATM_INPUT +ln -s @[RTPWD]/DATM/GEFS/201110/* DATM_INPUT + +# MOM6 fixed input +cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT +cp @[RTPWD]/MOM6_FIX_DATM/@[OCNRES]/* ./INPUT + +# CICE fixed input +cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . +cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . +cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . + + +if [[ $OCNRES == '025' ]]; then + cp @[RTPWD]/MOM6_IC/@[OCNRES]/2011100100/MOM*.nc ./INPUT + cp @[RTPWD]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc +else + cp @[RTPWD]/MOM6_IC/@[OCNRES]/2011100100/MOM6_IC_TS*.nc ./INPUT/MOM6_IC_TS.nc + cp @[RTPWD]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc +fi diff --git a/tests/parm/datm_configure.IN b/tests/parm/datm_configure.IN new file mode 100644 index 0000000000..08b5f95ea4 --- /dev/null +++ b/tests/parm/datm_configure.IN @@ -0,0 +1,22 @@ +total_member: 1 +print_esmf: .false. +PE_MEMBER01: @[TASKS] +start_year: @[SYEAR] +start_month: @[SMONTH] +start_day: @[SDAY] +start_hour: @[SHOUR] +start_minute: 0 +start_second: 0 +nhours_fcst: @[FHMAX] +RUN_CONTINUE: .false. +ENS_SPS: .false. + +dt_atmos: @[DT_ATMOS] +atm_coupling_interval_sec: @[coupling_interval_fast_sec] + +iatm: @[IATM] +jatm: @[JATM] + +cdate0: @[CDATE] +nfhout: @[NFHOUT] +filename_base: @[FILENAME_BASE] diff --git a/tests/parm/datm_data_table.IN b/tests/parm/datm_data_table.IN new file mode 100644 index 0000000000..1495adc516 --- /dev/null +++ b/tests/parm/datm_data_table.IN @@ -0,0 +1,24 @@ +# this file will be read as a nems config file to set +# fields which might not be available with all forcing +# sources + mean_zonal_moment_flx_atm .true. + mean_merid_moment_flx_atm .true. + inst_height_lowest .true. + inst_temp_height_lowest .true. +inst_spec_humid_height_lowest .true. +inst_zonal_wind_height_lowest .true. +inst_merid_wind_height_lowest .true. + inst_pres_height_lowest .true. + mean_down_sw_flx .true. + mean_down_lw_flx .true. + mean_up_lw_flx .true. + mean_net_lw_flx .false. + mean_sensi_heat_flx .true. + mean_laten_heat_flx .true. + mean_down_sw_vis_dir_flx .true. + mean_down_sw_vis_dif_flx .true. + mean_down_sw_ir_dir_flx .true. + mean_down_sw_ir_dif_flx .true. + inst_pres_height_surface .true. + mean_prec_rate .true. + mean_fprec_rate .true. diff --git a/tests/parm/input.mom6.nml.IN b/tests/parm/input.mom6.nml.IN new file mode 100644 index 0000000000..5ee25905ac --- /dev/null +++ b/tests/parm/input.mom6.nml.IN @@ -0,0 +1,15 @@ +&fms_nml + clock_grain='ROUTINE' + clock_flags='NONE' + domains_stack_size = 5000000 + stack_size =0 +/ + &MOM_input_nml + output_directory = 'MOM6_OUTPUT/', + input_filename = '@[MOM6_RESTART_SETTING]' + restart_input_dir = 'INPUT/', + restart_output_dir = 'RESTART/', + parameter_filename = 'INPUT/MOM_input', + 'INPUT/MOM_override' / + + diff --git a/tests/parm/nems.configure.datm.IN b/tests/parm/nems.configure.datm.IN new file mode 100644 index 0000000000..737404901c --- /dev/null +++ b/tests/parm/nems.configure.datm.IN @@ -0,0 +1,106 @@ +############################################# +#### NEMS Run-Time Configuration File ##### +############################################# + +# EARTH # +EARTH_component_list: MED ATM OCN ICE +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + DebugFlag = 0 +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESHICE] + stop_n = @[RESTART_N] + stop_option = nhours + stop_ymd = -999 +:: + +# CMEPS concurrent warm run sequence + +runSeq:: +@@[coupling_interval_slow_sec] + MED med_phases_prep_ocn_accum_avg + MED -> OCN :remapMethod=redist + OCN + @@[coupling_interval_fast_sec] + MED med_phases_prep_ice + MED -> ICE :remapMethod=redist + ATM + ICE + ATM -> MED :remapMethod=redist + ICE -> MED :remapMethod=redist + MED med_fraction_set + MED med_phases_prep_ocn_map + MED med_phases_aofluxes_run + MED med_phases_prep_ocn_merge + MED med_phases_prep_ocn_accum_fast + @ + OCN -> MED :remapMethod=redist + MED med_phases_restart_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: + mediator_read_restart = @[use_coldstart] +:: +MED_attributes:: + ATM_model = datm + ICE_model = cice6 + OCN_model = mom + history_n = 0 + history_option = nhours + history_ymd = -999 + coupling_mode = nems_orig_data +:: +ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + case_name = RESTART/DATM_@[DATM_SRC] + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + use_coldstart = @[use_coldstart] + coldair_outbreak_mod = .false. + flds_wiso = .false. + flux_convergence = 0.0 + flux_max_iteration = 1 +:: diff --git a/tests/rt.conf b/tests/rt.conf index 27c76d5930..9b5a9122e5 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -202,4 +202,8 @@ RUN | cpld_debug # Data Atmosphere tests ####################################################################################################################################################################################### -COMPILE | DATM=Y S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +COMPILE | DATM=Y S2S=Y | standard | hera.intel orion.intel | fv3 | +RUN | datm_control_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | datm_control_gefs | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | datm_mx025_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | datm_mx025_gefs | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | diff --git a/tests/run_test.sh b/tests/run_test.sh index addc400242..f26377efb8 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -79,10 +79,12 @@ cp ${PATHRT}/modules.fv3_${COMPILE_NR} modules.fv3 # Get the shell file that loads the "module" command and purges modules: cp ${PATHRT}/../NEMS/src/conf/module-setup.sh.inc module-setup.sh -cp ${PATHRT}/parm/post_itag itag -cp ${PATHRT}/parm/postxconfig-NT.txt postxconfig-NT.txt -cp ${PATHRT}/parm/postxconfig-NT_FH00.txt postxconfig-NT_FH00.txt -cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +if [[ $FV3 = 'true' ]]; then + cp ${PATHRT}/parm/post_itag itag + cp ${PATHRT}/parm/postxconfig-NT.txt postxconfig-NT.txt + cp ${PATHRT}/parm/postxconfig-NT_FH00.txt postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +fi SRCD="${PATHTR}" RUND="${RUNDIR}" @@ -102,7 +104,7 @@ fi # Set up the run directory source ./fv3_run -if [[ $S2S = 'true' ]]; then +if [[ $DATM = 'true' ]] || [[ $S2S = 'true' ]]; then edit_ice_in < ${PATHRT}/parm/ice_in_template > ice_in edit_mom_input < ${PATHRT}/parm/${MOM_INPUT:-MOM_input_template_$OCNRES} > INPUT/MOM_input edit_diag_table < ${PATHRT}/parm/diag_table_template > diag_table @@ -112,6 +114,9 @@ if [[ $S2S = 'true' ]]; then cp ${PATHRT}/parm/pio_in pio_in cp ${PATHRT}/parm/med_modelio.nml med_modelio.nml fi +if [[ $DATM = 'true' ]]; then + cp ${PATHRT}/parm/datm_data_table.IN datm_data_table +fi if [[ $SCHEDULER = 'pbs' ]]; then NODES=$(( TASKS / TPN )) diff --git a/tests/tests/cpld_ca b/tests/tests/cpld_ca index 0dddd5c597..99720548d0 100644 --- a/tests/tests/cpld_ca +++ b/tests/tests/cpld_ca @@ -51,7 +51,7 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-04-00000.nc " + RESTART/iced.2016-10-04-00000.nc" #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 diff --git a/tests/tests/cpld_control b/tests/tests/cpld_control index b3f2d70d10..c4efec6909 100644 --- a/tests/tests/cpld_control +++ b/tests/tests/cpld_control @@ -51,7 +51,7 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-04-00000.nc " + RESTART/iced.2016-10-04-00000.nc" #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 diff --git a/tests/tests/cpld_control_12h b/tests/tests/cpld_control_12h index fb2f7037e9..fcb32f561b 100644 --- a/tests/tests/cpld_control_12h +++ b/tests/tests/cpld_control_12h @@ -51,7 +51,7 @@ export LIST_FILES="phyf012.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-03-43200.nc " + RESTART/iced.2016-10-03-43200.nc" #RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc" export_fv3 diff --git a/tests/tests/cpld_control_c192 b/tests/tests/cpld_control_c192 index e7901a4563..68015d4701 100644 --- a/tests/tests/cpld_control_c192 +++ b/tests/tests/cpld_control_c192 @@ -50,7 +50,7 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-04-00000.nc " + RESTART/iced.2016-10-04-00000.nc" #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 diff --git a/tests/tests/cpld_debug b/tests/tests/cpld_debug index ab0dd8c622..106193231d 100644 --- a/tests/tests/cpld_debug +++ b/tests/tests/cpld_debug @@ -51,7 +51,7 @@ export LIST_FILES="phyf006.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-03-21600.nc " + RESTART/iced.2016-10-03-21600.nc" #RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc" export_fv3 diff --git a/tests/tests/cpld_decomp b/tests/tests/cpld_decomp index 940157942e..992deda62d 100644 --- a/tests/tests/cpld_decomp +++ b/tests/tests/cpld_decomp @@ -51,7 +51,7 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-04-00000.nc " + RESTART/iced.2016-10-04-00000.nc" #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 diff --git a/tests/tests/cpld_restart b/tests/tests/cpld_restart index 2df4bbbbb3..733c5a1253 100644 --- a/tests/tests/cpld_restart +++ b/tests/tests/cpld_restart @@ -51,7 +51,7 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-04-00000.nc " + RESTART/iced.2016-10-04-00000.nc" #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 diff --git a/tests/tests/cpld_restart_mx025 b/tests/tests/cpld_restart_mx025 index 6b6df4b0c1..f9bbada8d9 100644 --- a/tests/tests/cpld_restart_mx025 +++ b/tests/tests/cpld_restart_mx025 @@ -54,7 +54,7 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-04-00000.nc " + RESTART/iced.2016-10-04-00000.nc" #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 diff --git a/tests/tests/cpld_satmedmf b/tests/tests/cpld_satmedmf index bf45bd1e17..76c2a4e603 100644 --- a/tests/tests/cpld_satmedmf +++ b/tests/tests/cpld_satmedmf @@ -51,7 +51,7 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-04-00000.nc " + RESTART/iced.2016-10-04-00000.nc" #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 diff --git a/tests/tests/datm_control_cfsr b/tests/tests/datm_control_cfsr new file mode 100644 index 0000000000..8cec449e7b --- /dev/null +++ b/tests/tests/datm_control_cfsr @@ -0,0 +1,18 @@ +# +# DATM_MOM6_CICE_CMEPS_COLD_CFSR test +# + +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_CFSR - 1 step cold start" + +export CNTL_DIR="datm_control_cfsr" + +export LIST_FILES="RESTART/MOM.res.nc \ + RESTART/iced.2011-10-02-00000.nc \ + RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" + +export_datm +export DATM_SRC="CFSR" +export FILENAME_BASE='cfsr.' +export IATM=1760 +export JATM=880 +export FV3_RUN=cpld_datm_cfsr.IN diff --git a/tests/tests/datm_control_gefs b/tests/tests/datm_control_gefs new file mode 100644 index 0000000000..3ddb614eac --- /dev/null +++ b/tests/tests/datm_control_gefs @@ -0,0 +1,14 @@ +# +# DATM_MOM6_CICE_CMEPS_COLD_GEFS test +# + +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_GEFS - 1 step cold start" + +export CNTL_DIR="datm_control_gefs" + +export LIST_FILES="RESTART/MOM.res.nc \ + RESTART/iced.2011-10-02-00000.nc \ + RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc" + +export_datm +export FV3_RUN=cpld_datm_gefs.IN diff --git a/tests/tests/datm_mx025_cfsr b/tests/tests/datm_mx025_cfsr new file mode 100644 index 0000000000..8f7273d2f4 --- /dev/null +++ b/tests/tests/datm_mx025_cfsr @@ -0,0 +1,47 @@ +# +# DATM_MOM6_CICE_CMEPS_1_STEP_COLD_CFSR test +# + +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_CFSR - 1-step cold start" + +export CNTL_DIR="datm_mx025_cfsr" + +export LIST_FILES="RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2011-10-02-00000.nc \ + RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" + +export_datm +export WLCLK=40 +export DATM_SRC="CFSR" +export FILENAME_BASE='cfsr.' +export IATM=1760 +export JATM=880 + +export atm_petlist_bounds="0 39" +export med_petlist_bounds="0 39" +export ocn_petlist_bounds="40 159" +export ice_petlist_bounds="160 207" +export TASKS=208 +export TPN=40 +export NPROC_ICE='48' + +# atm/ocn/ice resolution +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM='"seawifs-clim-1997-2010.1440x1080.v20180328.nc"' +export MOM6_RIVER_RUNOFF='True' +export FRUNOFF="runoff.daitren.clim.1440x1080.v20180328.nc" +export MOM6_RESTART_SETTING='r' + +export FV3_RUN=cpld_datm_cfsr.IN diff --git a/tests/tests/datm_mx025_gefs b/tests/tests/datm_mx025_gefs new file mode 100644 index 0000000000..a4489f5129 --- /dev/null +++ b/tests/tests/datm_mx025_gefs @@ -0,0 +1,43 @@ +# +# DATM_MOM6_CICE_CMEPS_1_STEP_COLD_GEFS test +# + +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_GEFS - 1-step cold start" + +export CNTL_DIR="datm_mx025_gefs" + +export LIST_FILES="RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2011-10-02-00000.nc \ + RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc" + +export_datm +export WLCLK=40 + +export atm_petlist_bounds="0 39" +export med_petlist_bounds="0 39" +export ocn_petlist_bounds="40 159" +export ice_petlist_bounds="160 207" +export TASKS=208 +export TPN=40 +export NPROC_ICE='48' + +# atm/ocn/ice resolution +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM='"seawifs-clim-1997-2010.1440x1080.v20180328.nc"' +export MOM6_RIVER_RUNOFF='True' +export FRUNOFF="runoff.daitren.clim.1440x1080.v20180328.nc" +export MOM6_RESTART_SETTING='r' + +export FV3_RUN=cpld_datm_gefs.IN From 08d06b6a35a09d9af5a57c412035641ed9ff4187 Mon Sep 17 00:00:00 2001 From: Jun Wang <37633869+junwang-noaa@users.noreply.github.com> Date: Mon, 2 Nov 2020 20:35:47 -0500 Subject: [PATCH 023/109] Add parallel netcdf capability for regional grids (#206) * update FV3 and NEMS with regional parellel netcdf and output restart/forecast time at non-integer forecast time * add fv3_ccpp_regional_quilt_netcdf_parallel test * comment out fv3_ccpp_regional_quilt_netcdf_parallel as it needs nccmp (in PR#261) * update to nems develop branch * update orion log files * update cray and hera RT log files; skip-ci * update dell log files * point fv3 and nems back to develop branch Co-authored-by: Jun Wang --- FV3 | 2 +- NEMS | 2 +- tests/RegressionTests_hera.gnu.log | 54 ++--- tests/RegressionTests_hera.intel.log | 156 +++++++-------- tests/RegressionTests_orion.intel.log | 144 +++++++------- tests/RegressionTests_wcoss_cray.log | 186 +++++++++--------- tests/RegressionTests_wcoss_dell_p3.log | 130 ++++++------ tests/rt.conf | 9 +- .../fv3_ccpp_regional_quilt_netcdf_parallel | 34 ++++ 9 files changed, 376 insertions(+), 341 deletions(-) create mode 100644 tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel diff --git a/FV3 b/FV3 index b955f81015..6e2421cd26 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit b955f81015b2de589d886e7052feb68485f79466 +Subproject commit 6e2421cd26c2a875f712a8625c9413de3b251df0 diff --git a/NEMS b/NEMS index 9d05172b71..251d70c3a4 160000 --- a/NEMS +++ b/NEMS @@ -1 +1 @@ -Subproject commit 9d05172b711f4ab5d6f978dbe575bd67a681b55a +Subproject commit 251d70c3a4f79cc88010468d7f517e95045a6e79 diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 21a8f8ba21..4b5fa67a72 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Thu Oct 22 11:11:52 EDT 2020 +Mon Nov 2 15:38:33 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/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-20201019/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/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-20201019/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/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 @@ -186,8 +186,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-20201019/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_gsd_prod Checking test 005 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -346,8 +346,8 @@ Checking test 005 fv3_ccpp_gsd results .... Test 005 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_thompson_prod Checking test 006 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -414,8 +414,8 @@ Checking test 006 fv3_ccpp_thompson results .... Test 006 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_thompson_no_aero_prod Checking test 007 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_thompson_no_aero results .... Test 007 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_rrfs_v1beta_prod Checking test 008 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -574,14 +574,14 @@ Checking test 008 fv3_ccpp_rrfs_v1beta results .... Test 008 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_control_debug_prod Checking test 009 fv3_ccpp_control_debug results .... Test 009 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_gfs_v15p2_debug_prod Checking test 010 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -648,8 +648,8 @@ Checking test 010 fv3_ccpp_gfs_v15p2_debug results .... Test 010 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_gfs_v16beta_debug_prod Checking test 011 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -716,8 +716,8 @@ Checking test 011 fv3_ccpp_gfs_v16beta_debug results .... Test 011 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_multigases_prod Checking test 012 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -791,5 +791,5 @@ Test 012 fv3_ccpp_multigases PASS REGRESSION TEST WAS SUCCESSFUL -Thu Oct 22 11:34:54 EDT 2020 -Elapsed time: 00h:23m:06s. Have a nice day! +Mon Nov 2 16:13:11 UTC 2020 +Elapsed time: 00h:34m:40s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 4b78de71d2..a1e8b92667 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Thu Oct 29 18:36:37 UTC 2020 +Mon Nov 2 13:23:25 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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-20201022/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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-20201022/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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-20201022/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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-20201022/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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-20201022/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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-20201022/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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-20201022/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,7 +787,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -855,7 +855,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfdlmprad_prod Checking test 016 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -952,7 +952,7 @@ Test 016 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1001,7 +1001,7 @@ Test 017 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1050,7 +1050,7 @@ Test 018 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,7 +1124,7 @@ Test 019 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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 @@ -1192,7 +1192,7 @@ Test 020 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1248,7 +1248,7 @@ Test 021 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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 @@ -1315,7 +1315,7 @@ Test 022 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1326,7 +1326,7 @@ Test 023 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1335,7 +1335,7 @@ Test 024 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1346,7 +1346,7 @@ Test 025 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_regional_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1357,19 +1357,19 @@ Test 026 fv3_ccpp_regional_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_stretched_nest_debug_prod Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1417,7 +1417,7 @@ Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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 @@ -1465,7 +1465,7 @@ Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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 @@ -1513,7 +1513,7 @@ Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_hwrfsas_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 032 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,7 +1561,7 @@ Test 032 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1609,7 +1609,7 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,7 +1657,7 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,7 +1705,7 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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 @@ -1753,7 +1753,7 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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 @@ -1805,7 +1805,7 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1859,7 +1859,7 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1951,7 +1951,7 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2019,7 +2019,7 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2087,7 +2087,7 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2155,7 +2155,7 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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 @@ -2223,7 +2223,7 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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 @@ -2315,7 +2315,7 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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 @@ -2383,7 +2383,7 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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 @@ -2451,7 +2451,7 @@ Test 046 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfsv16_csawmg_prod Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2499,7 +2499,7 @@ Test 047 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfsv16_csawmgt_prod Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2547,7 +2547,7 @@ Test 048 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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 @@ -2595,7 +2595,7 @@ Test 049 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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 @@ -2663,7 +2663,7 @@ Test 050 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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 @@ -2731,7 +2731,7 @@ Test 051 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/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 @@ -2799,7 +2799,7 @@ Test 052 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gsd_debug_prod Checking test 053 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2867,7 +2867,7 @@ Test 053 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gsd_diag3d_debug_prod Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2935,7 +2935,7 @@ Test 054 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_thompson_debug_prod Checking test 055 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3003,7 +3003,7 @@ Test 055 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_thompson_no_aero_debug_prod Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3071,7 +3071,7 @@ Test 056 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3139,7 +3139,7 @@ Test 057 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_control_prod Checking test 058 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3191,7 +3191,7 @@ Test 058 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_2threads_prod Checking test 059 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3243,7 +3243,7 @@ Test 059 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_decomp_prod Checking test 060 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3295,7 +3295,7 @@ Test 060 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_satmedmf_prod Checking test 061 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3347,7 +3347,7 @@ Test 061 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_ca_prod Checking test 062 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3399,7 +3399,7 @@ Test 062 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_control_mx025_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_control_mx025_prod Checking test 063 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3454,7 +3454,7 @@ Test 063 cpld_control_mx025 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_control_mx025_12h_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_control_mx025_12h_prod Checking test 064 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3509,7 +3509,7 @@ Test 064 cpld_control_mx025_12h PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_restart_mx025_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_restart_mx025_prod Checking test 065 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3564,7 +3564,7 @@ Test 065 cpld_restart_mx025 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_control_c192_prod Checking test 066 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3616,7 +3616,7 @@ Test 066 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_control_c384_prod Checking test 067 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3671,7 +3671,7 @@ Test 067 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_controlfrac_c384_prod Checking test 068 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3726,7 +3726,7 @@ Test 068 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_bmark_prod Checking test 069 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3781,7 +3781,7 @@ Test 069 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_bmark_wave_prod Checking test 070 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3839,7 +3839,7 @@ Test 070 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_debug_prod Checking test 071 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3891,7 +3891,7 @@ Test 071 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/datm_control_cfsr_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/datm_control_cfsr_prod Checking test 072 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3900,7 +3900,7 @@ Test 072 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/datm_control_gefs_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/datm_control_gefs_prod Checking test 073 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3909,7 +3909,7 @@ Test 073 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/datm_mx025_cfsr_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/datm_mx025_cfsr_prod Checking test 074 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3921,7 +3921,7 @@ Test 074 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_90100/datm_mx025_gefs_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/datm_mx025_gefs_prod Checking test 075 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3933,5 +3933,5 @@ Test 075 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Thu Oct 29 19:23:07 UTC 2020 -Elapsed time: 00h:46m:32s. Have a nice day! +Mon Nov 2 14:12:22 UTC 2020 +Elapsed time: 00h:48m:58s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index b1d7c7261f..0d8b68c2cf 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Oct 29 18:53:11 CDT 2020 +Mon Nov 2 07:44:38 CST 2020 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/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-20201022/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/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-20201022/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/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-20201022/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/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-20201022/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/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-20201022/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/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-20201022/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/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-20201022/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,7 +787,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -836,7 +836,7 @@ Test 014 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -934,7 +934,7 @@ Test 016 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1008,7 +1008,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/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 @@ -1076,7 +1076,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1132,7 +1132,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/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 @@ -1199,7 +1199,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1210,7 +1210,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1219,7 +1219,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1230,7 +1230,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_regional_c768_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_regional_c768_prod Checking test 024 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1241,19 +1241,19 @@ Test 024 fv3_ccpp_regional_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1301,7 +1301,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/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 @@ -1349,7 +1349,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/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 @@ -1397,7 +1397,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1445,7 +1445,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1493,7 +1493,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1541,7 +1541,7 @@ Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1593,7 +1593,7 @@ Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1647,7 +1647,7 @@ Test 034 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1739,7 +1739,7 @@ Test 035 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1807,7 +1807,7 @@ Test 036 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1875,7 +1875,7 @@ Test 037 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1967,7 +1967,7 @@ Test 038 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/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 @@ -2035,7 +2035,7 @@ Test 039 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfs_v16beta_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/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 @@ -2103,7 +2103,7 @@ Test 040 fv3_ccpp_gfs_v16beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2151,7 +2151,7 @@ Test 041 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2199,7 +2199,7 @@ Test 042 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2247,7 +2247,7 @@ Test 043 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2315,7 +2315,7 @@ Test 044 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfs_v15p2_debug_prod Checking test 045 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2383,7 +2383,7 @@ Test 045 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfs_v16beta_debug_prod Checking test 046 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2451,7 +2451,7 @@ Test 046 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2519,7 +2519,7 @@ Test 047 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2587,7 +2587,7 @@ Test 048 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2655,7 +2655,7 @@ Test 049 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2723,7 +2723,7 @@ Test 050 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2791,7 +2791,7 @@ Test 051 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_control_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_control_prod Checking test 052 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2843,7 +2843,7 @@ Test 052 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_2threads_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_2threads_prod Checking test 053 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2895,7 +2895,7 @@ Test 053 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_decomp_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_decomp_prod Checking test 054 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2947,7 +2947,7 @@ Test 054 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_satmedmf_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_satmedmf_prod Checking test 055 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2999,7 +2999,7 @@ Test 055 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_ca_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_ca_prod Checking test 056 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3051,7 +3051,7 @@ Test 056 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_control_mx025_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_control_mx025_prod Checking test 057 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3106,7 +3106,7 @@ Test 057 cpld_control_mx025 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_control_mx025_12h_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_control_mx025_12h_prod Checking test 058 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3161,7 +3161,7 @@ Test 058 cpld_control_mx025_12h PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_restart_mx025_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_restart_mx025_prod Checking test 059 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3216,7 +3216,7 @@ Test 059 cpld_restart_mx025 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_control_c192_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_control_c192_prod Checking test 060 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3268,7 +3268,7 @@ Test 060 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_control_c384_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_control_c384_prod Checking test 061 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3323,7 +3323,7 @@ Test 061 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_controlfrac_c384_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_controlfrac_c384_prod Checking test 062 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3378,7 +3378,7 @@ Test 062 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_bmark_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_bmark_prod Checking test 063 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3433,7 +3433,7 @@ Test 063 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_bmark_wave_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_bmark_wave_prod Checking test 064 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3491,7 +3491,7 @@ Test 064 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/cpld_debug_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_debug_prod Checking test 065 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3543,7 +3543,7 @@ Test 065 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/datm_control_cfsr_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/datm_control_cfsr_prod Checking test 066 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3552,7 +3552,7 @@ Test 066 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/datm_control_gefs_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/datm_control_gefs_prod Checking test 067 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3561,7 +3561,7 @@ Test 067 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/datm_mx025_cfsr_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/datm_mx025_cfsr_prod Checking test 068 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3573,7 +3573,7 @@ Test 068 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_44061/datm_mx025_gefs_prod +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/datm_mx025_gefs_prod Checking test 069 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3585,5 +3585,5 @@ Test 069 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Thu Oct 29 19:58:24 CDT 2020 -Elapsed time: 01h:05m:14s. Have a nice day! +Mon Nov 2 08:56:24 CST 2020 +Elapsed time: 01h:11m:47s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index bb652ef0b1..7cd6ecc3a9 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Thu Oct 22 20:23:15 UTC 2020 +Mon Nov 2 14:05:12 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/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-20201019/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/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-20201019/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/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-20201019/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/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-20201019/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/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-20201019/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/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-20201019/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/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-20201019/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -840,8 +840,8 @@ Checking test 014 fv3_ccpp_multigases results .... Test 014 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -908,8 +908,8 @@ Checking test 015 fv3_ccpp_control_32bit results .... Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -964,8 +964,8 @@ Checking test 016 fv3_ccpp_stretched results .... Test 016 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1031,8 +1031,8 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1042,8 +1042,8 @@ Checking test 018 fv3_ccpp_regional_control results .... Test 018 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1051,8 +1051,8 @@ Checking test 019 fv3_ccpp_regional_restart results .... Test 019 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1062,20 +1062,20 @@ Checking test 020 fv3_ccpp_regional_quilt results .... Test 020 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_control_debug_prod Checking test 021 fv3_ccpp_control_debug results .... Test 021 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_stretched_nest_debug_prod Checking test 022 fv3_ccpp_stretched_nest_debug results .... Test 022 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfdlmp_prod Checking test 023 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1122,8 +1122,8 @@ Checking test 023 fv3_ccpp_gfdlmp results .... Test 023 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfdlmprad_gwd_prod Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1170,8 +1170,8 @@ Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Test 024 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1218,8 +1218,8 @@ Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Test 025 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfdlmp_hwrfsas_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmp_hwrfsas_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 026 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 026 fv3_ccpp_gfdlmp_hwrfsas results .... Test 026 fv3_ccpp_gfdlmp_hwrfsas PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1314,8 +1314,8 @@ Checking test 027 fv3_ccpp_csawmg results .... Test 027 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1362,8 +1362,8 @@ Checking test 028 fv3_ccpp_satmedmf results .... Test 028 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1410,8 +1410,8 @@ Checking test 029 fv3_ccpp_satmedmfq results .... Test 029 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1458,8 +1458,8 @@ Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Test 030 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1510,8 +1510,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1564,8 +1564,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1656,8 +1656,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1724,8 +1724,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1792,8 +1792,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1884,8 +1884,8 @@ Checking test 036 fv3_ccpp_rrfs_v1beta results .... Test 036 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfsv16_csawmg_prod Checking test 037 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1932,8 +1932,8 @@ Checking test 037 fv3_ccpp_gfsv16_csawmg results .... Test 037 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfsv16_csawmgt_prod Checking test 038 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1980,8 +1980,8 @@ Checking test 038 fv3_ccpp_gfsv16_csawmgt results .... Test 038 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gocart_clm_prod Checking test 039 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2028,8 +2028,8 @@ Checking test 039 fv3_ccpp_gocart_clm results .... Test 039 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfs_v16beta_flake_prod Checking test 040 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2096,8 +2096,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta_flake results .... Test 040 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2164,8 +2164,8 @@ Checking test 041 fv3_ccpp_gsd_debug results .... Test 041 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2232,8 +2232,8 @@ Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Test 042 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2300,8 +2300,8 @@ Checking test 043 fv3_ccpp_thompson_debug results .... Test 043 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2368,8 +2368,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Test 044 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_47828/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2437,5 +2437,5 @@ Test 045 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Oct 22 21:42:27 UTC 2020 -Elapsed time: 01h:19m:13s. Have a nice day! +Mon Nov 2 14:35:07 UTC 2020 +Elapsed time: 00h:29m:56s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 834809d3d0..5a3cea0380 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Fri Oct 23 09:29:36 UTC 2020 +Mon Nov 2 16:02:43 UTC 2020 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/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-20201022/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/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-20201022/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/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-20201022/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/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-20201022/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/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-20201022/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/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-20201022/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/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-20201022/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,7 +816,7 @@ Test 014 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -865,7 +865,7 @@ Test 015 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -939,7 +939,7 @@ Test 016 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1063,7 +1063,7 @@ Test 018 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,7 +1130,7 @@ Test 019 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1141,7 +1141,7 @@ Test 020 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1150,7 +1150,7 @@ Test 021 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1161,7 +1161,7 @@ Test 022 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_regional_c768_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_regional_c768_prod Checking test 023 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1172,19 +1172,19 @@ Test 023 fv3_ccpp_regional_c768 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1232,7 +1232,7 @@ Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1280,7 +1280,7 @@ Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,7 +1328,7 @@ Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 029 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,7 +1376,7 @@ Test 029 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1424,7 +1424,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1472,7 +1472,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1520,7 +1520,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/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 @@ -1568,7 +1568,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/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 @@ -1620,7 +1620,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1674,7 +1674,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1766,7 +1766,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1834,7 +1834,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/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 @@ -1902,7 +1902,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1994,7 +1994,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfsv16_csawmg_prod Checking test 040 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2042,7 +2042,7 @@ Test 040 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfsv16_csawmgt_prod Checking test 041 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2090,7 +2090,7 @@ Test 041 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gocart_clm_prod Checking test 042 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2138,7 +2138,7 @@ Test 042 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfs_v16beta_flake_prod Checking test 043 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,7 +2206,7 @@ Test 043 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gsd_debug_prod Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,7 +2274,7 @@ Test 044 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gsd_diag3d_debug_prod Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2342,7 +2342,7 @@ Test 045 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_thompson_debug_prod Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,7 +2410,7 @@ Test 046 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_thompson_no_aero_debug_prod Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2478,7 +2478,7 @@ Test 047 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2546,7 +2546,7 @@ Test 048 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_control_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_control_prod Checking test 049 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2598,7 +2598,7 @@ Test 049 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_2threads_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_2threads_prod Checking test 050 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2650,7 +2650,7 @@ Test 050 cpld_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_decomp_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_decomp_prod Checking test 051 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2702,7 +2702,7 @@ Test 051 cpld_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_satmedmf_prod Checking test 052 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2754,7 +2754,7 @@ Test 052 cpld_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_ca_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_ca_prod Checking test 053 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2806,7 +2806,7 @@ Test 053 cpld_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_control_mx025_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_control_mx025_prod Checking test 054 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2861,7 +2861,7 @@ Test 054 cpld_control_mx025 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_control_mx025_12h_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_control_mx025_12h_prod Checking test 055 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -2916,7 +2916,7 @@ Test 055 cpld_control_mx025_12h PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_restart_mx025_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_restart_mx025_prod Checking test 056 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2971,7 +2971,7 @@ Test 056 cpld_restart_mx025 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_control_c192_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_control_c192_prod Checking test 057 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3023,7 +3023,7 @@ Test 057 cpld_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_control_c384_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_control_c384_prod Checking test 058 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3078,7 +3078,7 @@ Test 058 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_controlfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_controlfrac_c384_prod Checking test 059 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3133,7 +3133,7 @@ Test 059 cpld_controlfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_bmark_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_bmark_prod Checking test 060 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3188,7 +3188,7 @@ Test 060 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_bmark_wave_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_bmark_wave_prod Checking test 061 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3246,7 +3246,7 @@ Test 061 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1913/cpld_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_debug_prod Checking test 062 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3298,5 +3298,5 @@ Test 062 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Oct 23 11:00:08 UTC 2020 -Elapsed time: 01h:30m:36s. Have a nice day! +Mon Nov 2 17:48:31 UTC 2020 +Elapsed time: 01h:45m:52s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index 9b5a9122e5..e79c88a218 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -61,6 +61,7 @@ COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regiona 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 | @@ -203,7 +204,7 @@ RUN | cpld_debug ####################################################################################################################################################################################### COMPILE | DATM=Y S2S=Y | standard | hera.intel orion.intel | fv3 | -RUN | datm_control_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | datm_control_gefs | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | datm_mx025_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | datm_mx025_gefs | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | datm_control_cfsr | standard | hera.intel orion.intel | fv3 | +RUN | datm_control_gefs | standard | hera.intel orion.intel | fv3 | +RUN | datm_mx025_cfsr | standard | hera.intel orion.intel | fv3 | +RUN | datm_mx025_gefs | standard | hera.intel orion.intel | fv3 | diff --git a/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel b/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel new file mode 100644 index 0000000000..126305f6ee --- /dev/null +++ b/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel @@ -0,0 +1,34 @@ +############################################################################### +# +# FV3 CCPP regional quilt test with parallel netcdf +# +############################################################################### + +export TEST_DESCR="Compare FV3 CCPP regional quilt results with parallel netcdf with previous trunk version" + +export CNTL_DIR=fv3_regional_quilt_netcdf_parallel + +export LIST_FILES=" atmos_4xdaily.nc \ + dynf000.nc \ + dynf024.nc \ + phyf000.nc \ + phyf024.nc " + +export_fv3 + +export TASKS=28 + +export FV3_RUN=ccpp_regional_run.IN + +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. +export H2O_PHYS=.T. + + +export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_regional.nml.IN + +export FDIAG=3 +export INPES=6 +export JNPES=4 From 942979752642c5f8a8058ed3bc7a541a851c95a9 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Thu, 5 Nov 2020 14:32:22 -0700 Subject: [PATCH 024/109] Add/update HWRF physics (#223) This PR adds missing HWRF physics parameterizations and updates the Ferrier-Aligo microphysics: - WRFv4 Noah LSM - GFDL surface layer - Unified HEDMF PBL - icloud=4 option in RRTMG In addition, this PR: - cleans up old/unused/unnecessary HWRF regression tests - adds the missing `effr_in=.true.` for all Thompson MP based runs (there is now a guard in fv3atm's `GFS_typedefs.F90` to prevent running Thompson MP with `effr_in=.false.` - shortens the runtime for the `fv3_ccpp_rrfs_v1beta` run from 48h to 24h - in ccpp-physics: update `tsfc` correctly when there is ice on open water grid points (fixes https://github.com/NCAR/ccpp-physics/issues/515) - set `OMP_STACKSIZE` in orion and wcoss_dell_p3 job submission scripts to avoid errors with threaded tests Co-authored-by: Bin Liu Co-authored-by: Jili Dong Co-authored-by: Zhan Zhang Co-authored-by: Grant Firl Co-authored-by: Man.Zhang Co-authored-by: Dom Heinzeller --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 266 +++++-- tests/RegressionTests_cheyenne.intel.log | 514 ++++++++----- tests/RegressionTests_hera.gnu.log | 266 +++++-- tests/RegressionTests_hera.intel.log | 721 ++++++++++-------- tests/RegressionTests_orion.intel.log | 578 ++++++++------ tests/RegressionTests_wcoss_cray.log | 502 +++++++----- tests/RegressionTests_wcoss_dell_p3.log | 626 ++++++++------- tests/default_vars.sh | 6 + tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN | 85 +++ tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN | 47 ++ tests/fv3_conf/ccpp_regional_FA_run.IN | 22 - tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 | 1 + tests/fv3_conf/fv3_slurm.IN_orion | 2 +- tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN | 289 +++++++ .../ccpp_esg_HAFS_v0_hwrf-model_configure.IN | 49 ++ tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN | 303 ++++++++ tests/parm/ccpp_gsd_sar_v1.nml.IN | 1 + tests/parm/ccpp_regional_c768_FA.nml.IN | 306 -------- tests/rt.conf | 64 +- tests/rt.sh | 5 +- tests/rt_gnu.conf | 14 +- ...p_gfdlmp_hwrfsas => fv3_ccpp_HAFS_v0_hwrf} | 76 +- tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug | 113 +++ tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson | 112 +++ .../fv3_ccpp_HAFS_v0_hwrf_thompson_debug | 115 +++ .../tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson | 66 ++ .../fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | 66 ++ tests/tests/fv3_ccpp_lndp | 2 - .../fv3_ccpp_regional_c768_FA_update_moist | 26 - tests/tests/fv3_ccpp_rrfs_v1beta | 26 +- tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel | 2 - tests/utest.bld | 1 - 33 files changed, 3521 insertions(+), 1753 deletions(-) create mode 100644 tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN create mode 100644 tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN delete mode 100644 tests/fv3_conf/ccpp_regional_FA_run.IN create mode 100644 tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN create mode 100644 tests/parm/ccpp_esg_HAFS_v0_hwrf-model_configure.IN create mode 100644 tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN delete mode 100644 tests/parm/ccpp_regional_c768_FA.nml.IN rename tests/tests/{fv3_ccpp_gfdlmp_hwrfsas => fv3_ccpp_HAFS_v0_hwrf} (56%) create mode 100644 tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug create mode 100644 tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson create mode 100644 tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug create mode 100644 tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson create mode 100644 tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug delete mode 100644 tests/tests/fv3_ccpp_regional_c768_FA_update_moist diff --git a/FV3 b/FV3 index 6e2421cd26..5530a85cb2 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 6e2421cd26c2a875f712a8625c9413de3b251df0 +Subproject commit 5530a85cb22179178615db80e6304c31e02fd6ca diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index e55414ba89..458955f8d2 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Wed Oct 7 16:12:13 MDT 2020 +Thu Nov 5 05:46:38 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/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-20200929/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/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-20200929/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/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 @@ -186,8 +186,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-20200929/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_gsd_prod Checking test 005 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -346,8 +346,8 @@ Checking test 005 fv3_ccpp_gsd results .... Test 005 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_thompson_prod Checking test 006 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -414,8 +414,8 @@ Checking test 006 fv3_ccpp_thompson results .... Test 006 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_thompson_no_aero_prod Checking test 007 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_thompson_no_aero results .... Test 007 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_rrfs_v1beta_prod Checking test 008 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -503,18 +503,6 @@ Checking test 008 fv3_ccpp_rrfs_v1beta results .... Comparing phyf024.tile4.nc .........OK Comparing phyf024.tile5.nc .........OK Comparing phyf024.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 dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK @@ -527,18 +515,6 @@ Checking test 008 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.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 ............SKIP for gnu compilers Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -574,15 +550,101 @@ Checking test 008 fv3_ccpp_rrfs_v1beta results .... Test 008 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_control_debug_prod -Checking test 009 fv3_ccpp_control_debug results .... -Test 009 fv3_ccpp_control_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 009 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 + 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 ............SKIP for gnu compilers + 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 009 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 010 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 010 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_control_debug_prod +Checking test 011 fv3_ccpp_control_debug results .... +Test 011 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 010 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 012 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -645,12 +707,12 @@ Checking test 010 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 010 fv3_ccpp_gfs_v15p2_debug PASS +Test 012 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 011 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 013 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -713,12 +775,12 @@ Checking test 011 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 011 fv3_ccpp_gfs_v16beta_debug PASS +Test 013 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_18854/fv3_ccpp_multigases_prod -Checking test 012 fv3_ccpp_multigases results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_multigases_prod +Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -787,9 +849,95 @@ Checking test 012 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 012 fv3_ccpp_multigases PASS +Test 014 fv3_ccpp_multigases PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 015 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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + 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 015 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 016 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 016 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Oct 7 16:28:37 MDT 2020 -Elapsed time: 00h:16m:25s. Have a nice day! +Thu Nov 5 06:01:43 MST 2020 +Elapsed time: 00h:15m:05s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 67e6d6674f..e92fc4119a 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Wed Oct 7 16:12:04 MDT 2020 +Thu Nov 5 05:59:04 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/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-20200929/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/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-20200929/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/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-20200929/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/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-20200929/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/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-20200929/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/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-20200929/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/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-20200929/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ 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-20200929/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -908,8 +908,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -976,8 +976,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1032,8 +1032,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1119,8 +1119,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1130,20 +1130,20 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_control_debug_prod Checking test 022 fv3_ccpp_control_debug results .... Test 022 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_stretched_nest_debug_prod Checking test 023 fv3_ccpp_stretched_nest_debug results .... Test 023 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfdlmp_prod Checking test 024 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1190,8 +1190,8 @@ Checking test 024 fv3_ccpp_gfdlmp results .... Test 024 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfdlmprad_gwd_prod Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1238,8 +1238,8 @@ Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Test 025 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1286,57 +1286,9 @@ Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Test 026 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_hwrfsas_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfdlmp_hwrfsas_prod -Checking test 027 fv3_ccpp_gfdlmp_hwrfsas 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 027 fv3_ccpp_gfdlmp_hwrfsas PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_csawmg_prod -Checking test 028 fv3_ccpp_csawmg results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_csawmg_prod +Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1379,12 +1331,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 027 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_satmedmf_prod -Checking test 029 fv3_ccpp_satmedmf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_satmedmf_prod +Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1427,12 +1379,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 028 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_satmedmfq_prod -Checking test 030 fv3_ccpp_satmedmfq results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_satmedmfq_prod +Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1475,12 +1427,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 029 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfdlmp_32bit_prod -Checking test 031 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfdlmp_32bit_prod +Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1523,12 +1475,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 030 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1575,12 +1527,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 031 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_cpt_prod -Checking test 033 fv3_ccpp_cpt results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_cpt_prod +Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1629,12 +1581,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 032 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gsd_prod -Checking test 034 fv3_ccpp_gsd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gsd_prod +Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1721,12 +1673,12 @@ 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 033 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_thompson_prod -Checking test 035 fv3_ccpp_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_thompson_prod +Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1789,12 +1741,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 034 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_thompson_no_aero_prod -Checking test 036 fv3_ccpp_thompson_no_aero results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_thompson_no_aero_prod +Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1857,12 +1809,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 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_rrfs_v1beta_prod -Checking test 037 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_rrfs_v1beta_prod +Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1881,18 +1833,6 @@ Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing phyf024.tile4.nc .........OK Comparing phyf024.tile5.nc .........OK Comparing phyf024.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 dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK @@ -1905,18 +1845,6 @@ Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.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 @@ -1949,12 +1877,12 @@ 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 036 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfs_v15p2_prod -Checking test 038 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfs_v15p2_prod +Checking test 037 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2017,12 +1945,12 @@ Checking test 038 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 038 fv3_ccpp_gfs_v15p2 PASS +Test 037 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfs_v16beta_prod -Checking test 039 fv3_ccpp_gfs_v16beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfs_v16beta_prod +Checking test 038 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2085,12 +2013,12 @@ Checking test 039 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 039 fv3_ccpp_gfs_v16beta PASS +Test 038 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gocart_clm_prod -Checking test 040 fv3_ccpp_gocart_clm results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gocart_clm_prod +Checking test 039 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2133,12 +2061,80 @@ Checking test 040 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 040 fv3_ccpp_gocart_clm PASS +Test 039 fv3_ccpp_gocart_clm PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 040 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 + 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 040 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 041 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 @@ -2201,12 +2197,30 @@ Checking test 041 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 041 fv3_ccpp_gfs_v16beta_flake PASS +Test 041 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 042 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 042 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 042 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 043 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2269,12 +2283,12 @@ Checking test 042 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 042 fv3_ccpp_gfs_v16beta_debug PASS +Test 043 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gsd_debug_prod -Checking test 043 fv3_ccpp_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gsd_debug_prod +Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2337,12 +2351,12 @@ Checking test 043 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 043 fv3_ccpp_gsd_debug PASS +Test 044 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 044 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2405,12 +2419,12 @@ Checking test 044 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 044 fv3_ccpp_gsd_diag3d_debug PASS +Test 045 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_thompson_debug_prod -Checking test 045 fv3_ccpp_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_thompson_debug_prod +Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2473,12 +2487,12 @@ Checking test 045 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 045 fv3_ccpp_thompson_debug PASS +Test 046 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 046 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 047 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 @@ -2541,12 +2555,12 @@ Checking test 046 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 046 fv3_ccpp_thompson_no_aero_debug PASS +Test 047 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20200929/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33185/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 047 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2609,9 +2623,95 @@ Checking test 047 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 047 fv3_ccpp_rrfs_v1beta_debug PASS +Test 048 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 049 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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Oct 7 16:43:56 MDT 2020 -Elapsed time: 00h:31m:53s. Have a nice day! +Thu Nov 5 06:29:41 MST 2020 +Elapsed time: 00h:30m:37s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 4b5fa67a72..a80ed9100a 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Mon Nov 2 15:38:33 UTC 2020 +Tue Nov 3 21:08:23 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/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-20201022/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/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-20201022/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/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 @@ -186,8 +186,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-20201022/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_gsd_prod Checking test 005 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -346,8 +346,8 @@ Checking test 005 fv3_ccpp_gsd results .... Test 005 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_thompson_prod Checking test 006 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -414,8 +414,8 @@ Checking test 006 fv3_ccpp_thompson results .... Test 006 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_thompson_no_aero_prod Checking test 007 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_thompson_no_aero results .... Test 007 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_rrfs_v1beta_prod Checking test 008 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -503,18 +503,6 @@ Checking test 008 fv3_ccpp_rrfs_v1beta results .... Comparing phyf024.tile4.nc .........OK Comparing phyf024.tile5.nc .........OK Comparing phyf024.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 dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK @@ -527,18 +515,6 @@ Checking test 008 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.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 ............SKIP for gnu compilers Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -574,15 +550,101 @@ Checking test 008 fv3_ccpp_rrfs_v1beta results .... Test 008 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_control_debug_prod -Checking test 009 fv3_ccpp_control_debug results .... -Test 009 fv3_ccpp_control_debug PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 009 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 + 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 ............SKIP for gnu compilers + 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 009 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 010 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 010 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_control_debug_prod +Checking test 011 fv3_ccpp_control_debug results .... +Test 011 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 010 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 012 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -645,12 +707,12 @@ Checking test 010 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 010 fv3_ccpp_gfs_v15p2_debug PASS +Test 012 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 011 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 013 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -713,12 +775,12 @@ Checking test 011 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 011 fv3_ccpp_gfs_v16beta_debug PASS +Test 013 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_9201/fv3_ccpp_multigases_prod -Checking test 012 fv3_ccpp_multigases results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_multigases_prod +Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -787,9 +849,95 @@ Checking test 012 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 012 fv3_ccpp_multigases PASS +Test 014 fv3_ccpp_multigases PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 015 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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + 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 015 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 016 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 016 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Nov 2 16:13:11 UTC 2020 -Elapsed time: 00h:34m:40s. Have a nice day! +Tue Nov 3 21:40:18 UTC 2020 +Elapsed time: 00h:32m:01s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index a1e8b92667..1b80120d29 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Mon Nov 2 13:23:25 UTC 2020 +Tue Nov 3 21:08:08 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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-20201022/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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-20201022/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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-20201022/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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-20201022/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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-20201022/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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-20201022/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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-20201022/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -854,8 +854,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gfdlmprad_prod Checking test 016 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -951,9 +951,9 @@ Checking test 016 fv3_ccpp_gfdlmprad results .... Test 016 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_166618/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 001 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1000,8 +1000,8 @@ Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Test 017 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1049,8 +1049,8 @@ Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 018 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_multigases results .... Test 019 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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,8 +1191,8 @@ Checking test 020 fv3_ccpp_control_32bit results .... Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,8 +1247,8 @@ Checking test 021 fv3_ccpp_stretched results .... Test 021 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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,8 +1314,8 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1325,8 +1325,8 @@ Checking test 023 fv3_ccpp_regional_control results .... Test 023 fv3_ccpp_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1334,8 +1334,8 @@ Checking test 024 fv3_ccpp_regional_restart results .... Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1345,8 +1345,8 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_regional_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1356,20 +1356,20 @@ Checking test 026 fv3_ccpp_regional_c768 results .... Test 026 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_stretched_nest_debug_prod Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1416,8 +1416,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -1464,8 +1464,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -1512,57 +1512,9 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_hwrfsas_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfdlmp_hwrfsas_prod -Checking test 032 fv3_ccpp_gfdlmp_hwrfsas 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 032 fv3_ccpp_gfdlmp_hwrfsas PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_csawmg_prod -Checking test 033 fv3_ccpp_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -1605,12 +1557,12 @@ Checking test 033 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 033 fv3_ccpp_csawmg PASS +Test 032 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_satmedmf_prod -Checking test 034 fv3_ccpp_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -1653,12 +1605,12 @@ Checking test 034 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 034 fv3_ccpp_satmedmf PASS +Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_satmedmfq_prod -Checking test 035 fv3_ccpp_satmedmfq results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -1701,12 +1653,12 @@ Checking test 035 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 035 fv3_ccpp_satmedmfq PASS +Test 034 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfdlmp_32bit_prod -Checking test 036 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -1749,12 +1701,12 @@ Checking test 036 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 036 fv3_ccpp_gfdlmp_32bit PASS +Test 035 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -1801,12 +1753,12 @@ Checking test 037 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 037 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_cpt_prod -Checking test 038 fv3_ccpp_cpt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -1855,12 +1807,12 @@ Checking test 038 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 038 fv3_ccpp_cpt PASS +Test 037 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gsd_prod -Checking test 039 fv3_ccpp_gsd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -1947,12 +1899,12 @@ Checking test 039 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 039 fv3_ccpp_gsd PASS +Test 038 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_rap_prod -Checking test 040 fv3_ccpp_rap results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -2015,12 +1967,12 @@ Checking test 040 fv3_ccpp_rap 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_rap PASS +Test 039 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_hrrr_prod -Checking test 041 fv3_ccpp_hrrr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -2083,12 +2035,12 @@ Checking test 041 fv3_ccpp_hrrr 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_hrrr PASS +Test 040 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_thompson_prod -Checking test 042 fv3_ccpp_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -2151,12 +2103,12 @@ Checking test 042 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 042 fv3_ccpp_thompson PASS +Test 041 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_thompson_no_aero_prod -Checking test 043 fv3_ccpp_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -2219,12 +2171,12 @@ Checking test 043 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 043 fv3_ccpp_thompson_no_aero PASS +Test 042 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_rrfs_v1beta_prod -Checking test 044 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -2243,18 +2195,6 @@ Checking test 044 fv3_ccpp_rrfs_v1beta results .... Comparing phyf024.tile4.nc .........OK Comparing phyf024.tile5.nc .........OK Comparing phyf024.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 dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK @@ -2267,18 +2207,6 @@ Checking test 044 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.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 @@ -2311,12 +2239,12 @@ Checking test 044 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 044 fv3_ccpp_rrfs_v1beta PASS +Test 043 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfs_v15p2_prod -Checking test 045 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -2379,12 +2307,12 @@ Checking test 045 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 045 fv3_ccpp_gfs_v15p2 PASS +Test 044 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfs_v16beta_prod -Checking test 046 fv3_ccpp_gfs_v16beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -2447,12 +2375,12 @@ Checking test 046 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 046 fv3_ccpp_gfs_v16beta PASS +Test 045 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfsv16_csawmg_prod -Checking test 047 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2495,12 +2423,12 @@ Checking test 047 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 047 fv3_ccpp_gfsv16_csawmg PASS +Test 046 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2543,12 +2471,12 @@ Checking test 048 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 048 fv3_ccpp_gfsv16_csawmgt PASS +Test 047 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gocart_clm_prod -Checking test 049 fv3_ccpp_gocart_clm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -2591,12 +2519,12 @@ Checking test 049 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 049 fv3_ccpp_gocart_clm PASS +Test 048 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 050 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -2659,12 +2587,98 @@ Checking test 050 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 050 fv3_ccpp_gfs_v16beta_flake PASS +Test 049 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 + 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 050 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 + Comparing dynf000.nc .........OK + Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK + 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 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -2727,12 +2741,12 @@ Checking test 051 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 051 fv3_ccpp_gfs_v15p2_debug PASS +Test 052 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 052 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/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 @@ -2795,12 +2809,12 @@ Checking test 052 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 052 fv3_ccpp_gfs_v16beta_debug PASS +Test 053 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gsd_debug_prod -Checking test 053 fv3_ccpp_gsd_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gsd_debug_prod +Checking test 054 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2863,12 +2877,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 054 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 055 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2931,12 +2945,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 055 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_thompson_debug_prod -Checking test 055 fv3_ccpp_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_thompson_debug_prod +Checking test 056 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2999,12 +3013,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 056 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 057 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 @@ -3067,12 +3081,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 057 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 058 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3135,12 +3149,98 @@ 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 058 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 059 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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 059 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_control_prod -Checking test 058 cpld_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 060 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 060 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_control_prod +Checking test 061 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3187,12 +3287,12 @@ Checking test 058 cpld_control results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 058 cpld_control PASS +Test 061 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_2threads_prod -Checking test 059 cpld_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_2threads_prod +Checking test 062 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3239,12 +3339,12 @@ Checking test 059 cpld_2threads results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 059 cpld_2threads PASS +Test 062 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_decomp_prod -Checking test 060 cpld_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_decomp_prod +Checking test 063 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3291,12 +3391,12 @@ Checking test 060 cpld_decomp results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 060 cpld_decomp PASS +Test 063 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_satmedmf_prod -Checking test 061 cpld_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_satmedmf_prod +Checking test 064 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3343,12 +3443,12 @@ Checking test 061 cpld_satmedmf results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 061 cpld_satmedmf PASS +Test 064 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_ca_prod -Checking test 062 cpld_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_ca_prod +Checking test 065 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3395,12 +3495,12 @@ Checking test 062 cpld_ca results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 062 cpld_ca PASS +Test 065 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_control_mx025_prod -Checking test 063 cpld_control_mx025 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_control_mx025_prod +Checking test 066 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3450,12 +3550,12 @@ Checking test 063 cpld_control_mx025 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 063 cpld_control_mx025 PASS +Test 066 cpld_control_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_control_mx025_12h_prod -Checking test 064 cpld_control_mx025_12h results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_mx025_12h_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_control_mx025_12h_prod +Checking test 067 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -3505,12 +3605,12 @@ Checking test 064 cpld_control_mx025_12h results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-03-43200.nc .........OK -Test 064 cpld_control_mx025_12h PASS +Test 067 cpld_control_mx025_12h PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_restart_mx025_prod -Checking test 065 cpld_restart_mx025 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_restart_mx025_prod +Checking test 068 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3560,12 +3660,12 @@ Checking test 065 cpld_restart_mx025 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 065 cpld_restart_mx025 PASS +Test 068 cpld_restart_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_control_c192_prod -Checking test 066 cpld_control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_control_c192_prod +Checking test 069 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3612,12 +3712,12 @@ Checking test 066 cpld_control_c192 results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 066 cpld_control_c192 PASS +Test 069 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_control_c384_prod -Checking test 067 cpld_control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_control_c384_prod +Checking test 070 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3667,12 +3767,12 @@ Checking test 067 cpld_control_c384 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 067 cpld_control_c384 PASS +Test 070 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_controlfrac_c384_prod -Checking test 068 cpld_controlfrac_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_controlfrac_c384_prod +Checking test 071 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3722,12 +3822,12 @@ Checking test 068 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 068 cpld_controlfrac_c384 PASS +Test 071 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_bmark_prod -Checking test 069 cpld_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_bmark_prod +Checking test 072 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3777,12 +3877,12 @@ Checking test 069 cpld_bmark results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 069 cpld_bmark PASS +Test 072 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_bmark_wave_prod -Checking test 070 cpld_bmark_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_bmark_wave_prod +Checking test 073 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3835,12 +3935,12 @@ Checking test 070 cpld_bmark_wave results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 070 cpld_bmark_wave PASS +Test 073 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/cpld_debug_prod -Checking test 071 cpld_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_debug_prod +Checking test 074 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -3887,51 +3987,50 @@ Checking test 071 cpld_debug results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK -Test 071 cpld_debug PASS +Test 074 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/datm_control_cfsr_prod -Checking test 072 datm_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/datm_control_cfsr_prod +Checking test 075 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 072 datm_control_cfsr PASS +Test 075 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/datm_control_gefs_prod -Checking test 073 datm_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/datm_control_gefs_prod +Checking test 076 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 073 datm_control_gefs PASS +Test 076 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/datm_mx025_cfsr_prod -Checking test 074 datm_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/datm_mx025_cfsr_prod +Checking test 077 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 074 datm_mx025_cfsr PASS +Test 077 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_94627/datm_mx025_gefs_prod -Checking test 075 datm_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/datm_mx025_gefs_prod +Checking test 078 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 075 datm_mx025_gefs PASS - +Test 078 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Mon Nov 2 14:12:22 UTC 2020 -Elapsed time: 00h:48m:58s. Have a nice day! +Tue Nov 3 22:43:15 UTC 2020 +Elapsed time: 00h:22m:05s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 0d8b68c2cf..ca8649c13a 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Mon Nov 2 07:44:38 CST 2020 +Thu Nov 5 05:10:58 CST 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/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-20201022/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/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-20201022/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/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-20201022/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/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-20201022/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/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-20201022/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/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-20201022/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/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-20201022/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,8 +835,8 @@ Checking test 014 fv3_ccpp_gfdlmprad results .... Test 014 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Test 015 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,8 +933,8 @@ Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 016 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,8 +1007,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/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 @@ -1075,8 +1075,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,8 +1131,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/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 @@ -1198,8 +1198,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,8 +1209,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,8 +1218,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,8 +1229,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_regional_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_regional_c768_prod Checking test 024 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1240,20 +1240,20 @@ Checking test 024 fv3_ccpp_regional_c768 results .... Test 024 fv3_ccpp_regional_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1300,8 +1300,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/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 @@ -1348,8 +1348,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/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 @@ -1396,8 +1396,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1444,8 +1444,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1492,8 +1492,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1540,8 +1540,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1592,8 +1592,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1646,8 +1646,8 @@ Checking test 034 fv3_ccpp_cpt results .... Test 034 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,8 +1738,8 @@ Checking test 035 fv3_ccpp_gsd results .... Test 035 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1806,8 +1806,8 @@ Checking test 036 fv3_ccpp_thompson results .... Test 036 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1874,8 +1874,8 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1895,18 +1895,6 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing phyf024.tile4.nc .........OK Comparing phyf024.tile5.nc .........OK Comparing phyf024.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 dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK @@ -1919,18 +1907,6 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.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 @@ -1966,8 +1942,8 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/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 @@ -2034,8 +2010,8 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/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 @@ -2102,8 +2078,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Test 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2150,8 +2126,8 @@ Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Test 041 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2198,8 +2174,8 @@ Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Test 042 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2246,8 +2222,8 @@ Checking test 043 fv3_ccpp_gocart_clm results .... Test 043 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2314,9 +2290,95 @@ Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Test 044 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 045 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 045 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 + 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 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK + 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 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 047 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2379,12 +2441,12 @@ Checking test 045 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 045 fv3_ccpp_gfs_v15p2_debug PASS +Test 047 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 046 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2447,12 +2509,12 @@ Checking test 046 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 046 fv3_ccpp_gfs_v16beta_debug PASS +Test 048 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gsd_debug_prod -Checking test 047 fv3_ccpp_gsd_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gsd_debug_prod +Checking test 049 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2515,12 +2577,12 @@ Checking test 047 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 047 fv3_ccpp_gsd_debug PASS +Test 049 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 050 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2583,12 +2645,12 @@ Checking test 048 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 048 fv3_ccpp_gsd_diag3d_debug PASS +Test 050 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_thompson_debug_prod -Checking test 049 fv3_ccpp_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_thompson_debug_prod +Checking test 051 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2651,12 +2713,12 @@ Checking test 049 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 049 fv3_ccpp_thompson_debug PASS +Test 051 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 052 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 @@ -2719,12 +2781,12 @@ Checking test 050 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 050 fv3_ccpp_thompson_no_aero_debug PASS +Test 052 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 053 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2787,12 +2849,98 @@ Checking test 051 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 051 fv3_ccpp_rrfs_v1beta_debug PASS +Test 053 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 054 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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 054 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_control_prod -Checking test 052 cpld_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_control_prod +Checking test 056 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2839,12 +2987,12 @@ Checking test 052 cpld_control results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 052 cpld_control PASS +Test 056 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_2threads_prod -Checking test 053 cpld_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_2threads_prod +Checking test 057 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2891,12 +3039,12 @@ Checking test 053 cpld_2threads results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 053 cpld_2threads PASS +Test 057 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_decomp_prod -Checking test 054 cpld_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_decomp_prod +Checking test 058 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2943,12 +3091,12 @@ Checking test 054 cpld_decomp results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 054 cpld_decomp PASS +Test 058 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_satmedmf_prod -Checking test 055 cpld_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_satmedmf_prod +Checking test 059 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2995,12 +3143,12 @@ Checking test 055 cpld_satmedmf results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 055 cpld_satmedmf PASS +Test 059 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_ca_prod -Checking test 056 cpld_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_ca_prod +Checking test 060 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3047,12 +3195,12 @@ Checking test 056 cpld_ca results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 056 cpld_ca PASS +Test 060 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_control_mx025_prod -Checking test 057 cpld_control_mx025 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_control_mx025_prod +Checking test 061 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3102,12 +3250,12 @@ Checking test 057 cpld_control_mx025 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 057 cpld_control_mx025 PASS +Test 061 cpld_control_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_control_mx025_12h_prod -Checking test 058 cpld_control_mx025_12h results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_mx025_12h_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_control_mx025_12h_prod +Checking test 062 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -3157,12 +3305,12 @@ Checking test 058 cpld_control_mx025_12h results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-03-43200.nc .........OK -Test 058 cpld_control_mx025_12h PASS +Test 062 cpld_control_mx025_12h PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_restart_mx025_prod -Checking test 059 cpld_restart_mx025 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_restart_mx025_prod +Checking test 063 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3212,12 +3360,12 @@ Checking test 059 cpld_restart_mx025 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 059 cpld_restart_mx025 PASS +Test 063 cpld_restart_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_control_c192_prod -Checking test 060 cpld_control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_control_c192_prod +Checking test 064 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3264,12 +3412,12 @@ Checking test 060 cpld_control_c192 results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 060 cpld_control_c192 PASS +Test 064 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_control_c384_prod -Checking test 061 cpld_control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_control_c384_prod +Checking test 065 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3319,12 +3467,12 @@ Checking test 061 cpld_control_c384 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 061 cpld_control_c384 PASS +Test 065 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_controlfrac_c384_prod -Checking test 062 cpld_controlfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_controlfrac_c384_prod +Checking test 066 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3374,12 +3522,12 @@ Checking test 062 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 062 cpld_controlfrac_c384 PASS +Test 066 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_bmark_prod -Checking test 063 cpld_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_bmark_prod +Checking test 067 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3429,12 +3577,12 @@ Checking test 063 cpld_bmark results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 063 cpld_bmark PASS +Test 067 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_bmark_wave_prod -Checking test 064 cpld_bmark_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_bmark_wave_prod +Checking test 068 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3487,12 +3635,12 @@ Checking test 064 cpld_bmark_wave results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 064 cpld_bmark_wave PASS +Test 068 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/cpld_debug_prod -Checking test 065 cpld_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_debug_prod +Checking test 069 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -3539,51 +3687,51 @@ Checking test 065 cpld_debug results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK -Test 065 cpld_debug PASS +Test 069 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/datm_control_cfsr_prod -Checking test 066 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/datm_control_cfsr_prod +Checking test 070 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 066 datm_control_cfsr PASS +Test 070 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/datm_control_gefs_prod -Checking test 067 datm_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/datm_control_gefs_prod +Checking test 071 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 067 datm_control_gefs PASS +Test 071 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/datm_mx025_cfsr_prod -Checking test 068 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/datm_mx025_cfsr_prod +Checking test 072 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 068 datm_mx025_cfsr PASS +Test 072 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_413503/datm_mx025_gefs_prod -Checking test 069 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/datm_mx025_gefs_prod +Checking test 073 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 069 datm_mx025_gefs PASS +Test 073 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Mon Nov 2 08:56:24 CST 2020 -Elapsed time: 01h:11m:47s. Have a nice day! +Thu Nov 5 06:06:03 CST 2020 +Elapsed time: 00h:55m:06s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 7cd6ecc3a9..76d4cead9e 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Mon Nov 2 14:05:12 UTC 2020 +Wed Nov 4 13:03:05 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/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-20201022/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/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-20201022/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/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-20201022/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/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-20201022/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/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-20201022/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/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-20201022/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/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-20201022/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -840,8 +840,8 @@ Checking test 014 fv3_ccpp_multigases results .... Test 014 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -908,8 +908,8 @@ Checking test 015 fv3_ccpp_control_32bit results .... Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -964,8 +964,8 @@ Checking test 016 fv3_ccpp_stretched results .... Test 016 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1031,8 +1031,8 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1042,8 +1042,8 @@ Checking test 018 fv3_ccpp_regional_control results .... Test 018 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1051,8 +1051,8 @@ Checking test 019 fv3_ccpp_regional_restart results .... Test 019 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1062,20 +1062,20 @@ Checking test 020 fv3_ccpp_regional_quilt results .... Test 020 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_control_debug_prod Checking test 021 fv3_ccpp_control_debug results .... Test 021 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_stretched_nest_debug_prod Checking test 022 fv3_ccpp_stretched_nest_debug results .... Test 022 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gfdlmp_prod Checking test 023 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1122,8 +1122,8 @@ Checking test 023 fv3_ccpp_gfdlmp results .... Test 023 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gfdlmprad_gwd_prod Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1170,8 +1170,8 @@ Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Test 024 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1218,57 +1218,9 @@ Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Test 025 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfdlmp_hwrfsas_prod -Checking test 026 fv3_ccpp_gfdlmp_hwrfsas 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 026 fv3_ccpp_gfdlmp_hwrfsas PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_csawmg_prod -Checking test 027 fv3_ccpp_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_csawmg_prod +Checking test 026 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1311,12 +1263,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 026 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_satmedmf_prod -Checking test 028 fv3_ccpp_satmedmf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_satmedmf_prod +Checking test 027 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1359,12 +1311,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 027 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_satmedmfq_prod -Checking test 029 fv3_ccpp_satmedmfq results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_satmedmfq_prod +Checking test 028 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1407,12 +1359,12 @@ 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 028 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfdlmp_32bit_prod -Checking test 030 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gfdlmp_32bit_prod +Checking test 029 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1455,12 +1407,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 029 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 030 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1507,12 +1459,12 @@ Checking test 031 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 031 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 030 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_cpt_prod -Checking test 032 fv3_ccpp_cpt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_cpt_prod +Checking test 031 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1561,12 +1513,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 031 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gsd_prod -Checking test 033 fv3_ccpp_gsd results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gsd_prod +Checking test 032 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1653,12 +1605,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 032 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_thompson_prod -Checking test 034 fv3_ccpp_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_thompson_prod +Checking test 033 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1721,12 +1673,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 033 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_thompson_no_aero_prod -Checking test 035 fv3_ccpp_thompson_no_aero results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_thompson_no_aero_prod +Checking test 034 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1789,12 +1741,12 @@ 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 034 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_rrfs_v1beta_prod -Checking test 036 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_rrfs_v1beta_prod +Checking test 035 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1813,18 +1765,6 @@ Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing phyf024.tile4.nc .........OK Comparing phyf024.tile5.nc .........OK Comparing phyf024.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 dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK @@ -1837,18 +1777,6 @@ Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.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 @@ -1881,12 +1809,12 @@ Checking test 036 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 036 fv3_ccpp_rrfs_v1beta PASS +Test 035 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfsv16_csawmg_prod -Checking test 037 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gfsv16_csawmg_prod +Checking test 036 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1929,12 +1857,12 @@ Checking test 037 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 037 fv3_ccpp_gfsv16_csawmg PASS +Test 036 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 038 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 037 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1977,12 +1905,12 @@ Checking test 038 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 038 fv3_ccpp_gfsv16_csawmgt PASS +Test 037 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gocart_clm_prod -Checking test 039 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gocart_clm_prod +Checking test 038 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2025,12 +1953,80 @@ Checking test 039 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 039 fv3_ccpp_gocart_clm PASS +Test 038 fv3_ccpp_gocart_clm PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 039 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 + 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 039 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 040 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 040 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 @@ -2093,12 +2089,30 @@ Checking test 040 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 040 fv3_ccpp_gfs_v16beta_flake PASS +Test 040 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 041 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 041 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gsd_debug_prod -Checking test 041 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gsd_debug_prod +Checking test 042 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2161,12 +2175,12 @@ Checking test 041 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 041 fv3_ccpp_gsd_debug PASS +Test 042 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 043 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2229,12 +2243,12 @@ Checking test 042 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 042 fv3_ccpp_gsd_diag3d_debug PASS +Test 043 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_thompson_debug_prod -Checking test 043 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_thompson_debug_prod +Checking test 044 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2297,12 +2311,12 @@ Checking test 043 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 043 fv3_ccpp_thompson_debug PASS +Test 044 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 045 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 @@ -2365,12 +2379,12 @@ Checking test 044 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 044 fv3_ccpp_thompson_no_aero_debug PASS +Test 045 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28250/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 046 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2433,9 +2447,95 @@ Checking test 045 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 045 fv3_ccpp_rrfs_v1beta_debug PASS +Test 046 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 047 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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK + 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_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Nov 2 14:35:07 UTC 2020 -Elapsed time: 00h:29m:56s. Have a nice day! +Wed Nov 4 13:37:39 UTC 2020 +Elapsed time: 00h:34m:35s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 5a3cea0380..e391443050 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Mon Nov 2 16:02:43 UTC 2020 +Thu Nov 5 13:18:49 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/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-20201022/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/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-20201022/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/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-20201022/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/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-20201022/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/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-20201022/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/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-20201022/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/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-20201022/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,8 +815,8 @@ Checking test 014 fv3_ccpp_gfdlmprad results .... Test 014 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -864,8 +864,8 @@ Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Test 015 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1062,8 +1062,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1129,8 +1129,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1140,8 +1140,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1149,8 +1149,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1160,8 +1160,8 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_regional_c768_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_regional_c768_prod Checking test 023 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1171,20 +1171,20 @@ Checking test 023 fv3_ccpp_regional_c768 results .... Test 023 fv3_ccpp_regional_c768 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1231,8 +1231,8 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,8 +1279,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1327,57 +1327,9 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfdlmp_hwrfsas_prod -Checking test 029 fv3_ccpp_gfdlmp_hwrfsas 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 029 fv3_ccpp_gfdlmp_hwrfsas PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_csawmg_prod -Checking test 030 fv3_ccpp_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_csawmg_prod +Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1420,12 +1372,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 029 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_satmedmf_prod -Checking test 031 fv3_ccpp_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_satmedmf_prod +Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1468,12 +1420,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 030 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_satmedmfq_prod -Checking test 032 fv3_ccpp_satmedmfq results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_satmedmfq_prod +Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1516,12 +1468,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 031 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/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-20201103/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfdlmp_32bit_prod +Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1564,12 +1516,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 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/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-20201103/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1616,12 +1568,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 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_cpt_prod -Checking test 035 fv3_ccpp_cpt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_cpt_prod +Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1670,12 +1622,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 034 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gsd_prod -Checking test 036 fv3_ccpp_gsd results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gsd_prod +Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1762,12 +1714,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 035 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_thompson_prod -Checking test 037 fv3_ccpp_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_thompson_prod +Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1830,12 +1782,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 036 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/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-20201103/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_thompson_no_aero_prod +Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1898,12 +1850,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 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/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-20201103/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_rrfs_v1beta_prod +Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1922,18 +1874,6 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing phyf024.tile4.nc .........OK Comparing phyf024.tile5.nc .........OK Comparing phyf024.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 dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK @@ -1946,18 +1886,6 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.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 @@ -1990,12 +1918,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 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfsv16_csawmg_prod -Checking test 040 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfsv16_csawmg_prod +Checking test 039 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2038,12 +1966,12 @@ Checking test 040 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 040 fv3_ccpp_gfsv16_csawmg PASS +Test 039 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 041 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 040 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2086,12 +2014,12 @@ Checking test 041 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 041 fv3_ccpp_gfsv16_csawmgt PASS +Test 040 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gocart_clm_prod -Checking test 042 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gocart_clm_prod +Checking test 041 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2134,12 +2062,80 @@ Checking test 042 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 042 fv3_ccpp_gocart_clm PASS +Test 041 fv3_ccpp_gocart_clm PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 042 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 + 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_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 043 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 043 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 @@ -2202,12 +2198,30 @@ Checking test 043 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 043 fv3_ccpp_gfs_v16beta_flake PASS +Test 043 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gsd_debug_prod -Checking test 044 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gsd_debug_prod +Checking test 045 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2270,12 +2284,12 @@ Checking test 044 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 044 fv3_ccpp_gsd_debug PASS +Test 045 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 046 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2338,12 +2352,12 @@ Checking test 045 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 045 fv3_ccpp_gsd_diag3d_debug PASS +Test 046 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_thompson_debug_prod -Checking test 046 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_thompson_debug_prod +Checking test 047 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2406,12 +2420,12 @@ Checking test 046 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 046 fv3_ccpp_thompson_debug PASS +Test 047 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 048 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 @@ -2474,12 +2488,12 @@ Checking test 047 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 047 fv3_ccpp_thompson_no_aero_debug PASS +Test 048 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 049 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2542,12 +2556,98 @@ Checking test 048 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 048 fv3_ccpp_rrfs_v1beta_debug PASS +Test 049 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 050 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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 050 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK + 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_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_control_prod -Checking test 049 cpld_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_control_prod +Checking test 052 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2594,12 +2694,12 @@ Checking test 049 cpld_control results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 049 cpld_control PASS +Test 052 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_2threads_prod -Checking test 050 cpld_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_2threads_prod +Checking test 053 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2646,12 +2746,12 @@ Checking test 050 cpld_2threads results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 050 cpld_2threads PASS +Test 053 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_decomp_prod -Checking test 051 cpld_decomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_decomp_prod +Checking test 054 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2698,12 +2798,12 @@ Checking test 051 cpld_decomp results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 051 cpld_decomp PASS +Test 054 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_satmedmf_prod -Checking test 052 cpld_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_satmedmf_prod +Checking test 055 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2750,12 +2850,12 @@ Checking test 052 cpld_satmedmf results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 052 cpld_satmedmf PASS +Test 055 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_ca_prod -Checking test 053 cpld_ca results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_ca_prod +Checking test 056 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2802,12 +2902,12 @@ Checking test 053 cpld_ca results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 053 cpld_ca PASS +Test 056 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_control_mx025_prod -Checking test 054 cpld_control_mx025 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_control_mx025_prod +Checking test 057 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2857,12 +2957,12 @@ Checking test 054 cpld_control_mx025 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 054 cpld_control_mx025 PASS +Test 057 cpld_control_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_control_mx025_12h_prod -Checking test 055 cpld_control_mx025_12h results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_control_mx025_12h_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_control_mx025_12h_prod +Checking test 058 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -2912,12 +3012,12 @@ Checking test 055 cpld_control_mx025_12h results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-03-43200.nc .........OK -Test 055 cpld_control_mx025_12h PASS +Test 058 cpld_control_mx025_12h PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_restart_mx025_prod -Checking test 056 cpld_restart_mx025 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_restart_mx025_prod +Checking test 059 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2967,12 +3067,12 @@ Checking test 056 cpld_restart_mx025 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 056 cpld_restart_mx025 PASS +Test 059 cpld_restart_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_control_c192_prod -Checking test 057 cpld_control_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_control_c192_prod +Checking test 060 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3019,12 +3119,12 @@ Checking test 057 cpld_control_c192 results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 057 cpld_control_c192 PASS +Test 060 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_control_c384_prod -Checking test 058 cpld_control_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_control_c384_prod +Checking test 061 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3074,12 +3174,12 @@ Checking test 058 cpld_control_c384 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 058 cpld_control_c384 PASS +Test 061 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_controlfrac_c384_prod -Checking test 059 cpld_controlfrac_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_controlfrac_c384_prod +Checking test 062 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3129,12 +3229,12 @@ Checking test 059 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 059 cpld_controlfrac_c384 PASS +Test 062 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_bmark_prod -Checking test 060 cpld_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_bmark_prod +Checking test 063 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3184,12 +3284,12 @@ Checking test 060 cpld_bmark results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 060 cpld_bmark PASS +Test 063 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_bmark_wave_prod -Checking test 061 cpld_bmark_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_bmark_wave_prod +Checking test 064 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3242,12 +3342,12 @@ Checking test 061 cpld_bmark_wave results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 061 cpld_bmark_wave PASS +Test 064 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201022/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_134374/cpld_debug_prod -Checking test 062 cpld_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_debug_prod +Checking test 065 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -3294,9 +3394,9 @@ Checking test 062 cpld_debug results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK -Test 062 cpld_debug PASS +Test 065 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Nov 2 17:48:31 UTC 2020 -Elapsed time: 01h:45m:52s. Have a nice day! +Thu Nov 5 14:54:10 UTC 2020 +Elapsed time: 01h:35m:28s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index cdb478d9de..c4653be558 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -221,9 +221,13 @@ export NA_INIT=1 # Radiation export DO_RRTMGP=.F. +export ICLOUD=0 +export IOVR_LW=1 +export IOVR_SW=1 # Microphysics export IMP_PHYSICS=11 +export NWAT=6 # GFDL MP export DNATS=1 export DO_SAT_ADJ=.T. @@ -248,6 +252,8 @@ export SHINHONG=.F. export DO_YSU=.F. export DO_MYNNEDMF=.F. export DO_MYJPBL=.F. +export HURR_PBL=.F. +export MONINQ_FAC=1.0 # Shallow/deep convection export IMFSHALCNV=2 diff --git a/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN b/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN new file mode 100644 index 0000000000..bc211e8107 --- /dev/null +++ b/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN @@ -0,0 +1,85 @@ +rm -fr INPUT RESTART +mkdir INPUT RESTART + +if [ $IMP_PHYSICS = 8 ]; then + if [ $WARM_START = .F. ]; then + cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/* INPUT/ + else + cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/grid_spec*.nc INPUT/ + cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/C96_grid*.nc INPUT/ + cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/oro_data*.nc INPUT/ + cp ../fv3_ccpp_gsd_coldstart${RT_SUFFIX}/RESTART/* INPUT/ + fi +elif [ $IMP_PHYSICS = 15 ]; then + if [ $WARM_START = .F. ]; then + cp -r @[RTPWD]/FV3_input_data/INPUT/* INPUT/ + else + cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT/ + fi +else + echo "ERROR, no input data configured for IMP_PHYSICS=${IMP_PHYSICS}" + exit 1 +fi + +cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . +cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[RTPWD]/FV3_input_data/*grb . +cp @[RTPWD]/FV3_input_data/*_table . +cp @[RTPWD]/FV3_input_data/*configure . + +# Copy landuse/soil/vegetation parameter tables for HWRF Noah LSM +cp @[RTPWD]/FV3_input_data_hafs/GENPARM.TBL . +cp @[RTPWD]/FV3_input_data_hafs/SOILPARM.TBL . +cp @[RTPWD]/FV3_input_data_hafs/VEGPARM.TBL . + +# Copy diag table, depending on microphysics choice +if [ $IMP_PHYSICS = 8 ]; then + cp @[RTPWD]/FV3_input_data_gsd/diag_table_gsd_noah diag_table +elif [ $IMP_PHYSICS = 15 ]; then + if [ $IOVR_LW = 4 ] && [ $IOVR_SW = 4 ]; then + cp @[RTPWD]/FV3_input_data_hafs/diag_table_FA_HWRF diag_table + else + cp @[RTPWD]/FV3_input_data_hafs/diag_table_FA diag_table + fi +else + echo "ERROR, no diag table configured for IMP_PHYSICS=${IMP_PHYSICS}" + exit 1 +fi + +# Copy field table, depending on microphysics choice and whether MYNN/SATMEDMF is used +if [ $IMP_PHYSICS = 8 ]; then + if [ $LTAEROSOL = .T. ]; then + if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then + cp @[RTPWD]/FV3_input_data_gsd/field_table_gsd field_table + else + cp @[RTPWD]/FV3_input_data_gsd/field_table_gf_thompson field_table + fi + else + if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then + echo "ERROR, no field table configured for Thompson MP without aerosols but with MYNN or SATMEDMF (need TKE)" + exit 1 + else + cp @[RTPWD]/FV3_input_data_gsd/field_table_thompson_noaero field_table + fi + fi +elif [ $IMP_PHYSICS = 15 ]; then + # Copy field table for Ferrier-Aligo MP + cp @[RTPWD]/FV3_input_data_hafs/field_table_FA_nwat4 field_table +else + echo "ERROR, no field table configured for IMP_PHYSICS=${IMP_PHYSICS}" + exit 1 +fi + +# Thompson or F-A MP lookup tables +if [ $IMP_PHYSICS = 8 ]; then + cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qs.dat . + cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qg.dat . + cp @[RTPWD]/FV3_input_data_gsd/freezeH2O.dat . + cp @[RTPWD]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . +elif [ $IMP_PHYSICS = 15 ]; then + cp @[RTPWD]/FV3_input_data/DETAMPNEW_DATA* . +fi diff --git a/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN b/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN new file mode 100644 index 0000000000..eab1e886a1 --- /dev/null +++ b/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN @@ -0,0 +1,47 @@ +rm -fr INPUT RESTART +mkdir INPUT RESTART + +if [ $WARM_START = .F. ]; then + rsync -av @[RTPWD]/FV3_input_data_regional_esg/ ./ +else + echo "ERROR, warmstart runs not configured for regional HAFs runs on ESG grid" + exit 1 +fi + +# Copy diag table, depending on microphysics choice +if [ $IMP_PHYSICS = 8 ]; then + ln -sf diag_table.thompson diag_table +elif [ $IMP_PHYSICS = 15 ]; then + if [ $IOVR_LW = 4 ] && [ $IOVR_SW = 4 ]; then + cp @[RTPWD]/FV3_input_data_hafs/diag_table_FA_HWRF diag_table + else + cp @[RTPWD]/FV3_input_data_hafs/diag_table_FA diag_table + fi +else + echo "ERROR, no diag table configured for IMP_PHYSICS=${IMP_PHYSICS}" + exit 1 +fi + +# Copy field table, depending on microphysics choice and whether MYNN/SATMEDMF is used +if [ $IMP_PHYSICS = 8 ]; then + if [ $LTAEROSOL = .T. ]; then + if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then + cp @[RTPWD]/FV3_input_data_gsd/field_table_gsd field_table + else + cp @[RTPWD]/FV3_input_data_gsd/field_table_gf_thompson field_table + fi + else + if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then + echo "ERROR, no field table configured for Thompson MP without aerosols but with MYNN or SATMEDMF (need TKE)" + exit 1 + else + cp @[RTPWD]/FV3_input_data_gsd/field_table_thompson_noaero field_table + fi + fi +elif [ $IMP_PHYSICS = 15 ]; then + # Copy field table for Ferrier-Aligo MP + cp @[RTPWD]/FV3_input_data_hafs/field_table_FA_nwat4 field_table +else + echo "ERROR, no field table configured for IMP_PHYSICS=${IMP_PHYSICS}" + exit 1 +fi diff --git a/tests/fv3_conf/ccpp_regional_FA_run.IN b/tests/fv3_conf/ccpp_regional_FA_run.IN deleted file mode 100644 index 4cb751a4b3..0000000000 --- a/tests/fv3_conf/ccpp_regional_FA_run.IN +++ /dev/null @@ -1,22 +0,0 @@ -rsync -arv @[RTPWD]/FV3_regional_input_data/. . -rsync -arv @[RTPWD]/@[INPUT_DIR]/model_configure . - -rm -rf INPUT RESTART -mkdir INPUT RESTART - -rsync -arv @[RTPWD]/@[INPUT_DIR]/INPUT/. INPUT/. - -if [ $WARM_START = .T. ]; then - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.coupler.res INPUT/coupler.res - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_core.res.nc INPUT/fv_core.res.nc - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_core.res.tile1.nc INPUT/fv_core.res.tile1.nc - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_srf_wnd.res.tile1.nc INPUT/fv_srf_wnd.res.tile1.nc - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_tracer.res.tile1.nc INPUT/fv_tracer.res.tile1.nc - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.phy_data.nc INPUT/phy_data.nc - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.sfc_data.nc INPUT/sfc_data.nc -fi -cp @[RTPWD]/FV3_input_data/DETAMPNEW_DATA* . -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data_hafs/diag_table_FA diag_table -cp @[RTPWD]/FV3_input_data_hafs/field_table_FA_nwat4 field_table diff --git a/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 b/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 index ba757f9a5c..0079469187 100644 --- a/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 +++ b/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 @@ -22,6 +22,7 @@ set -x echo "Model started: " `date` export OMP_NUM_THREADS=@[THRD] +export OMP_STACKSIZE=512M export I_MPI_DEBUG=4 mpirun -l -n @[TASKS] ./fv3.exe diff --git a/tests/fv3_conf/fv3_slurm.IN_orion b/tests/fv3_conf/fv3_slurm.IN_orion index 400069fd31..d1c142f513 100644 --- a/tests/fv3_conf/fv3_slurm.IN_orion +++ b/tests/fv3_conf/fv3_slurm.IN_orion @@ -26,7 +26,7 @@ ulimit -s unlimited echo "Model started: " `date` #export MPI_TYPE_DEPTH=20 -#export OMP_STACKSIZE=512M +export OMP_STACKSIZE=512M export KMP_AFFINITY=scatter export OMP_NUM_THREADS=@[THRD] #export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 diff --git a/tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN b/tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN new file mode 100644 index 0000000000..ca3566258c --- /dev/null +++ b/tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN @@ -0,0 +1,289 @@ +&amip_interp_nml + interp_oi_sst = .true. + use_ncep_sst = .true. + use_ncep_ice = .false. + no_anom_sst = .false. + data_set = 'reynolds_oi' + date_out_of_range = 'climo' +/ + +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + fdiag = 1 + fhmax = 384 + fhout = 3 + fhmaxhf = 120 + fhouthf = 1 + ccpp_suite = '@[CCPP_SUITE]' +/ + +&diag_manager_nml + prepend_date = .false. +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = 3000000 + print_memory_usage = .false. +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&fv_core_nml + layout = 3,8 + io_layout = 1,1 + npx = 97 + npy = 97 + ntiles = 6 + npz = 64 + grid_type = -1 + make_nh = .false. + fv_debug = .false. + range_warn = .false. + reset_eta = .false. + n_sponge = 10 + nudge_qv = .true. + nudge_dz = .false. + tau = 10. + rf_cutoff = 7.5e2 + d2_bg_k1 = 0.15 + d2_bg_k2 = 0.02 + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .false. + phys_hydrostatic = .false. + use_hydro_pressure = .false. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 6 + nwat = @[NWAT] + na_init = 0 + d_ext = 0. + dnats = 0 + fv_sg_adj = 450 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.12 + vtdm4 = 0.02 + delt_max = 0.002 + ke_bg = 0. + do_vort_damp = .true. + external_ic = .true. + external_eta = .true. + gfs_phil = .false. + nggps_ic = .true. + mountain = .false. + ncep_ic = .false. + d_con = 1. + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 + adjust_dry_mass = .false. + consv_te = 1. + do_sat_adj = .false. + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = 6 + warm_start = .false. + no_dycore = .false. + z_tracer = .true. + agrid_vel_rst = .true. + read_increment = .false. + res_latlon_dynamics = "" +/ + +&external_ic_nml + filtered_terrain = .true. + levp = 65 + gfs_dwinds = .true. + checker_tr = .false. + nt_checker = 0 +/ + +&gfs_physics_nml + fhzero = 3. + ldiag3d = .false. + fhcyc = 0 + nst_anl = .true. + use_ufo = .true. + pre_rad = .false. + ncld = 5 + imp_physics = @[IMP_PHYSICS] + spec_adv = .true. ! HWRF F-A + RHGRD = 0.98 ! HWRF F-A + ltaerosol = @[LTAEROSOL] ! HWRF Thompson + effr_in = @[EFFR_IN] ! HWRF Thompson + icloud = 3 ! HWRF RRTMG + iovr_lw = 4 ! HWRF RRTMG + iovr_sw = 4 ! HWRF RRTMG + hwrf_samfdeep = .true. ! HWRF SASdeep + hwrf_samfshal = .true. ! HWRF SASshal + asolfac_deep = 0.89 ! HWRF SASdeep; GFS SAS:0.958 + asolfac_shal = 0.89 ! HWRF SASdeep; GFS SAS:0.958 + hurr_pbl = .T. ! HWRF moninedmf + moninq_fac = -1.0 ! HWRF moninedmf + lradar = @[LRADAR] + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = 1 + iems = 1 + IAER = 111 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. !true ->no gwdc + shal_cnv = .true. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = @[HYBEDMF] + satmedmf = @[SATMEDMF] + lheatstrg = @[LHEATSTRG] + cnvcld = .true. + imfshalcnv = 2 + imfdeepcnv = 2 + cdmbgwd = 3.5, 0.25 ! NCEP default + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsm = @[LSM] !HWRF set to 4 + sfc_z0_type = @[SFC_Z0_TYPE] !HWRF set to 4 + iopt_dveg = 2 + iopt_crs = 1 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_alb = 2 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 1 + debug = .false. + oz_phys = .F. + oz_phys_2015 = .T. + h2o_phys = .true. + nstf_name = 2,1,0,0,0 + cplflx = .F. + iau_delthrs = 6 + iaufhrs = 30 + iau_inc_files = @[IAU_INC_FILES] + do_sppt = @[DO_SPPT] + do_shum = @[DO_SHUM] + do_skeb = @[DO_SKEB] + lndp_type = @[LNDP_TYPE] + n_var_lndp = @[N_VAR_LNDP] +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&namsfc + FNGLAC = 'global_glacier.2x2.grb' + FNMXIC = 'global_maxice.2x2.grb' + FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' + FNSNOC = 'global_snoclim.1.875.grb' + FNZORC = 'igbp' + FNALBC = 'global_snowfree_albedo.bosu.t126.384.190.rg.grb' + FNALBC2 = 'global_albedo4.1x1.grb' + FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' + FNTG3C = 'global_tg3clim.2.6x1.5.grb' + FNVEGC = 'global_vegfrac.0.144.decpercent.grb' + FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' + FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' + FNSMCC = 'global_soilmgldas.t126.384.190.grb' + FNMSKH = 'seaice_newland.grb' + FNTSFA = '' + FNACNA = '' + FNSNOA = '' + FNVMNC = 'global_shdmin.0.144x0.144.grb' + FNVMXC = 'global_shdmax.0.144x0.144.grb' + FNSLPC = 'global_slope.1x1.grb' + FNABSC = 'global_mxsnoalb.uariz.t126.384.190.rg.grb' + LDEBUG = .false. + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + LANDICE = .true. + FTSFS = 90 + FAISL = 99999 + FAISS = 99999 + FSNOL = 99999 + FSNOS = 99999 + FSICL = 99999 + FSICS = 99999 + FTSFL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 +/ + +&nam_stochy + ntrunc = 766 + lon_s = 1536 + lat_s = 768 + skeb = 0.3 + iseed_skeb = 2019102712451 + iseed_shum = 2019102712452 + iseed_sppt = 2019102712453 + skeb_tau = 21600. + skeb_lscale = 500000. + skebnorm = 0 + skeb_npass = 30 + skeb_vdof = 5 + shum = 0.005 + shum_tau = 21600. + shum_lscale = 500000. + sppt = 0.5 + sppt_tau = 21600. + sppt_lscale = 500000. + sppt_logit = .true. + sppt_sfclimit = .true. + use_zmtnblck = .true. +/ + +&nam_sfcperts +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = 0 + launch_level = 25 +/ + diff --git a/tests/parm/ccpp_esg_HAFS_v0_hwrf-model_configure.IN b/tests/parm/ccpp_esg_HAFS_v0_hwrf-model_configure.IN new file mode 100644 index 0000000000..847710fa01 --- /dev/null +++ b/tests/parm/ccpp_esg_HAFS_v0_hwrf-model_configure.IN @@ -0,0 +1,49 @@ +total_member: 1 +PE_MEMBER01: 80 +start_year: 2020 +start_month: 08 +start_day: 10 +start_hour: 00 +start_minute: 0 +start_second: 0 +nhours_fcst: @[FHMAX] +RUN_CONTINUE: .false. +ENS_SPS: .false. + +dt_atmos: @[DT_ATMOS] +cpl: .false. +calendar: 'julian' +memuse_verbose: .false. +atmos_nthreads: @[THRD] +use_hyper_thread: .false. +ncores_per_node: 24 +restart_interval: 0 +output_1st_tstep_rst: .false. + +quilting: .true. +write_groups: 1 +write_tasks_per_group: 40 +num_files: 2 +filename_base: 'dyn''phy' +output_file: 'netcdf' +write_nemsioflip: .false. +write_fsyncflag: .false. + +output_grid: 'lambert_conformal' +cen_lon: -97.5 +cen_lat: 38.5 +stdlat1: 38.5 +stdlat2: 38.5 +nx: 1726 +ny: 974 +lon1: -122.21414225 +lat1: 22.41403305 +dx: 3000.0 +dy: 3000.0 + +nfhout: 3 +nfhmax_hf: 12 +nfhout_hf: 1 +nsout: -1 + +print_esmf: .false. diff --git a/tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN b/tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN new file mode 100644 index 0000000000..1d92ac0df7 --- /dev/null +++ b/tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN @@ -0,0 +1,303 @@ +&amip_interp_nml + interp_oi_sst = .true. + use_ncep_sst = .true. + use_ncep_ice = .false. + no_anom_sst = .false. + data_set = 'reynolds_oi' + date_out_of_range = 'climo' +/ + +&atmos_model_nml + blocksize = 10 + chksum_debug = .false. + dycore_only = .false. + fdiag = 1 + fhmax = 384 + fhout = 3 + fhmaxhf = 120 + fhouthf = 1 + ccpp_suite = '@[CCPP_SUITE]' +/ + +&diag_manager_nml + prepend_date = .false. +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = 3000000 + print_memory_usage = .false. +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&fv_core_nml + layout = 20, 2 + io_layout = 1, 1 + npx = 201 + npy = 111 + ntiles = 1 + npz = 64 + make_nh = .true. + fv_debug = .false. + range_warn = .true. + reset_eta = .false. + n_sponge = 24 + nudge_qv = .false. + rf_cutoff = 2000.0 + d2_bg_k1 = 0.2 + d2_bg_k2 = 0.04 + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .false. + phys_hydrostatic = .false. + use_hydro_pressure = .false. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 4 + n_split = 5 + nwat = @[NWAT] + na_init = 1 + d_ext = 0.0 + dnats = 0 + fv_sg_adj = 300 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.12 + vtdm4 = 0.02 + delt_max = 0.002 + ke_bg = 0. + do_vort_damp = .true. + external_ic = .true. + external_eta = .true. + gfs_phil = .false. + nggps_ic = .true. + mountain = .false. + ncep_ic = .false. + d_con = 1. + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 + adjust_dry_mass = .false. + consv_te = 0. + do_sat_adj = .false. + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = 6 + warm_start = .false. + no_dycore = .false. + z_tracer = .true. + read_increment = .false. + res_latlon_dynamics = 'fv3_increment.nc' + regional = .true. + do_schmidt = .true. + regional_bcs_from_gsi = .false. + stretch_fac = 0.999 + target_lat = 38.5 + target_lon = -97.5 + tau = 5.0 + write_restart_with_bcs = .false. + nrows_blend = 10 + bc_update_interval = 6 + nord_zs_filter = 4 + n_zs_filter = 0 + full_zs_filter = .false. +/ + +&external_ic_nml + filtered_terrain = .true. + levp = 65 + gfs_dwinds = .true. + checker_tr = .false. + nt_checker = 0 +/ + +&gfs_physics_nml + fhzero = 3. + ldiag3d = .false. + fhcyc = 0 + nst_anl = .true. + use_ufo = .true. + pre_rad = .false. + ncld = 5 + imp_physics = @[IMP_PHYSICS] + spec_adv = .true. ! HWRF F-A + RHGRD = 0.98 ! HWRF F-A + ltaerosol = @[LTAEROSOL] ! HWRF Thompson + effr_in = @[EFFR_IN] ! HWRF Thompson + icloud = 3 ! HWRF RRTMG + iovr_lw = 4 ! HWRF RRTMG + iovr_sw = 4 ! HWRF RRTMG + hwrf_samfdeep = .true. ! HWRF SASdeep + hwrf_samfshal = .true. ! HWRF SASshal + asolfac_deep = 0.89 ! HWRF SASdeep; GFS SAS:0.958 + asolfac_shal = 0.89 ! HWRF SASdeep; GFS SAS:0.958 + hurr_pbl = .T. ! HWRF moninedmf + moninq_fac = -1.0 ! HWRF moninedmf + lradar = @[LRADAR] + pdfcld = .false. + fhswr = 1200. + fhlwr = 1200. + ialb = 1 + iems = 1 + iaer = 111 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. !true ->no gwdc + shal_cnv = .true. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = @[HYBEDMF] + satmedmf = @[SATMEDMF] + lheatstrg = @[LHEATSTRG] + cnvcld = .true. + imfshalcnv = 2 + imfdeepcnv = 2 + cdmbgwd = 3.5, 1.0 + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsm = @[LSM] !HWRF set to 4 + sfc_z0_type = @[SFC_Z0_TYPE] !HWRF set to 4 + iopt_dveg = 2 + iopt_crs = 1 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_alb = 2 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 1 + debug = .false. + oz_phys = .F. + oz_phys_2015 = .T. + h2o_phys = .true. + nstf_name = 2, 1, 1, 0, 5 + cplflx = .F. + do_sppt = @[DO_SPPT] + do_shum = @[DO_SHUM] + do_skeb = @[DO_SKEB] + lndp_type = @[LNDP_TYPE] + n_var_lndp = @[N_VAR_LNDP] +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&namsfc + fabsl = 99999 + faisl = 99999 + faiss = 99999 + fnabsc = 'C401.maximum_snow_albedo.tile7.nc' + fnacna = '' + fnaisc = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' + fnalbc = 'C401.snowfree_albedo.tile7.nc' + fnalbc2 = 'C401.facsf.tile7.nc' + fnglac = 'global_glacier.2x2.grb' + fnmskh = 'seaice_newland.grb' + fnmxic = 'global_maxice.2x2.grb' + fnslpc = 'C401.slope_type.tile7.nc' + fnsmcc = 'global_soilmgldas.t126.384.190.grb' + fnsnoa = '' + fnsnoc = 'global_snoclim.1.875.grb' + fnsotc = 'C401.soil_type.tile7.nc' + fntg3c = 'C401.substrate_temperature.tile7.nc' + fntsfa = '' + fntsfc = 'RTGSST.1982.2012.monthly.clim.grb' + fnvegc = 'C401.vegetation_greenness.tile7.nc' + fnvetc = 'C401.vegetation_type.tile7.nc' + fnvmnc = 'C401.vegetation_greenness.tile7.nc' + fnvmxc = 'C401.vegetation_greenness.tile7.nc' + fnzorc = 'igbp' + fsicl = 99999 + fsics = 99999 + fslpl = 99999 + fsmcl = 99999, 99999, 99999 + fsnol = 99999 + fsnos = 99999 + fsotl = 99999 + ftsfl = 99999 + ftsfs = 90 + fvetl = 99999 + fvmnl = 99999 + fvmxl = 99999 + ldebug = .true. +/ + +&nam_stochy + ntrunc = 766 + lon_s = 1536 + lat_s = 768 + skeb = 0.3 + iseed_skeb = 2019102712451 + iseed_shum = 2019102712452 + iseed_sppt = 2019102712453 + skeb_tau = 21600. + skeb_lscale = 500000. + skebnorm = 0 + skeb_npass = 30 + skeb_vdof = 5 + shum = 0.005 + shum_tau = 21600. + shum_lscale = 500000. + sppt = 0.5 + sppt_tau = 21600. + sppt_lscale = 500000. + sppt_logit = .true. + sppt_sfclimit = .true. + use_zmtnblck = .true. +/ + +&nam_sfcperts +/ + +&surf_map_nml + cd2 = -1 + cd4 = 0.12 + max_slope = 0.4 + n_del2_strong = 0 + n_del2_weak = 2 + n_del4 = 1 + peak_fac = 1.0 + zero_ocean = .false. +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = 0 + launch_level = 25 +/ + diff --git a/tests/parm/ccpp_gsd_sar_v1.nml.IN b/tests/parm/ccpp_gsd_sar_v1.nml.IN index 4a32777539..2f640c6dda 100644 --- a/tests/parm/ccpp_gsd_sar_v1.nml.IN +++ b/tests/parm/ccpp_gsd_sar_v1.nml.IN @@ -150,6 +150,7 @@ ttendlim = 0.005 ltaerosol = .T. lradar = .T. + effr_in = .T. pdfcld = .false. fhswr = 3600. fhlwr = 3600. diff --git a/tests/parm/ccpp_regional_c768_FA.nml.IN b/tests/parm/ccpp_regional_c768_FA.nml.IN deleted file mode 100644 index bdda8af137..0000000000 --- a/tests/parm/ccpp_regional_c768_FA.nml.IN +++ /dev/null @@ -1,306 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - - &atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = 1 - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .F. -/ - - &fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - - &fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - - &fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - - &fv_core_nml - layout = 24,20 - io_layout = 1,1 - npx = 1729 - npy = 1441 - ntiles = 1, - npz = 64 - !grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .T. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .T. - tau = 5. - rf_cutoff = 20.e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.04 - kord_tm = -11 - kord_mt = 11 - kord_wz = 11 - kord_tr = 11 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 4 - n_split = 5 - nwat = 4 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 1 - fv_sg_adj = 300 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.008 - ke_bg = 0. - do_vort_damp = .T. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1.0 - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 0. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - - do_schmidt = .true. - target_lat = 35.5 - target_lon = -97.5 - stretch_fac = 1.5 -!! nord_zs_filter = 4 - n_zs_filter = 0 - regional = .true. - bc_update_interval = 6 -/ - - &external_ic_nml - filtered_terrain = .true. - levp = 65 - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - - &gfs_physics_nml - fhzero = 3. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 15 - spec_adv = .true. - RHGRD = 0.98 - lradar = @[LRADAR] - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .false. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .false. - trans_trac = .true. - cnvcld = .false. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5, 0.25 ! NCEP default - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - oz_phys = @[OZ_PHYS_OLD] - oz_phys_2015 = @[OZ_PHYS_NEW] - nstf_name = 1,1,1,0,5 - cplflx = .F. - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] -/ - - &interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp" - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ - - &gfdl_cloud_microphysics_nml - sedi_transport = .false. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 180. - tau_v2l = 90. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 90. -/ - -&nam_stochy -/ - -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/rt.conf b/tests/rt.conf index e79c88a218..7a4c086a69 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -76,12 +76,6 @@ COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp RUN | fv3_ccpp_gfdlmp | standard | | fv3 | RUN | fv3_ccpp_gfdlmprad_gwd | standard | | fv3 | RUN | fv3_ccpp_gfdlmprad_noahmp | standard | | fv3 | -RUN | fv3_ccpp_gfdlmp_hwrfsas | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfdlmp_hwrfsas | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfdlmp_hwrfsas | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfdlmp_hwrfsas | standard | gaea.intel | fv3 | -RUN | fv3_ccpp_gfdlmp_hwrfsas | standard | jet.intel | fv3 | -RUN | fv3_ccpp_gfdlmp_hwrfsas | standard | cheyenne.intel | fv3 | COMPILE | CCPP=Y 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 | @@ -142,6 +136,11 @@ COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v RUN | fv3_ccpp_gocart_clm | standard | | fv3 | RUN | fv3_ccpp_gfs_v16beta_flake | standard | | fv3 | +COMPILE | CCPP=Y 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 | + ####################################################################################################################################################################################### # CCPP DEBUG tests # ####################################################################################################################################################################################### @@ -170,41 +169,46 @@ RUN | fv3_ccpp_thompson_debug RUN | fv3_ccpp_thompson_no_aero_debug | standard | | fv3 | RUN | fv3_ccpp_rrfs_v1beta_debug | standard | | fv3 | +COMPILE | CCPP=Y 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 | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_control | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_control_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_restart | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_12h -RUN | cpld_2threads | standard | hera.intel orion.intel wcoss_dell_p3 | | -RUN | cpld_decomp | standard | hera.intel orion.intel wcoss_dell_p3 | | -RUN | cpld_satmedmf | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_ca | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_control | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_restart | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_12h +RUN | cpld_2threads | standard | hera.intel orion.intel wcoss_dell_p3 | | +RUN | cpld_decomp | standard | hera.intel orion.intel wcoss_dell_p3 | | +RUN | cpld_satmedmf | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_ca | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | # restart test at c96mx025 -RUN | cpld_control_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_control_mx025_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_restart_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_mx025_12h +RUN | cpld_control_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_control_mx025_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_restart_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_mx025_12h -RUN | cpld_control_c192 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_control_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_controlfrac_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_bmark | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_control_c192 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_control_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_controlfrac_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_bmark | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_bmark_wave | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_bmark_wave | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_debug | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_debug | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | ####################################################################################################################################################################################### # Data Atmosphere tests ####################################################################################################################################################################################### -COMPILE | DATM=Y S2S=Y | standard | hera.intel orion.intel | fv3 | -RUN | datm_control_cfsr | standard | hera.intel orion.intel | fv3 | -RUN | datm_control_gefs | standard | hera.intel orion.intel | fv3 | -RUN | datm_mx025_cfsr | standard | hera.intel orion.intel | fv3 | -RUN | datm_mx025_gefs | standard | hera.intel orion.intel | fv3 | +COMPILE | DATM=Y S2S=Y | standard | hera.intel orion.intel | fv3 | +RUN | datm_control_cfsr | standard | hera.intel orion.intel | fv3 | +RUN | datm_control_gefs | standard | hera.intel orion.intel | fv3 | +RUN | datm_mx025_cfsr | standard | hera.intel orion.intel | fv3 | +RUN | datm_mx025_gefs | standard | hera.intel orion.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 8d27e1e2ae..2650c3ef28 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -400,9 +400,9 @@ if [[ $SINGLE_NAME != '' ]]; then fi if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = jet.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201022/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201103/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201022} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201103} fi shift $((OPTIND-1)) @@ -419,6 +419,7 @@ if [[ $CREATE_BASELINE == true ]]; then rsync -a "${RTPWD}"/FV3_* "${NEW_BASELINE}"/ rsync -a "${RTPWD}"/WW3_* "${NEW_BASELINE}"/ + rsync -a "${RTPWD}"/DATM* "${NEW_BASELINE}"/ # FIXME: S2S baselines are only available on these machines with Intel if [[ $MACHINE_ID = hera.intel ]] || [[ $MACHINE_ID = orion.intel ]] || [[ $MACHINE_ID = wcoss_dell_p3 ]]; then diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index d09d00fe46..6b9821b4fa 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -20,6 +20,11 @@ RUN | fv3_ccpp_thompson RUN | fv3_ccpp_thompson_no_aero | standard | | fv3 | RUN | fv3_ccpp_rrfs_v1beta | standard | | fv3 | +COMPILE | CCPP=Y 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 | + ####################################################################################################################################################################################### # CCPP DEBUG tests # ####################################################################################################################################################################################### @@ -44,14 +49,19 @@ COMPILE | CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y #RUN | fv3_ccpp_thompson_debug | standard | | fv3 | #RUN | fv3_ccpp_thompson_no_aero_debug | standard | | fv3 | +COMPILE | CCPP=Y 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 | + ####################################################################################################################################################################################### # S2S tests ####################################################################################################################################################################################### -COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.gnu | fv3 | ####################################################################################################################################################################################### # Data Atmosphere tests ####################################################################################################################################################################################### -COMPILE | DATM=Y S2S=Y | standard | | fv3 | +COMPILE | DATM=Y S2S=Y | standard | hera.gnu | fv3 | diff --git a/tests/tests/fv3_ccpp_gfdlmp_hwrfsas b/tests/tests/fv3_ccpp_HAFS_v0_hwrf similarity index 56% rename from tests/tests/fv3_ccpp_gfdlmp_hwrfsas rename to tests/tests/fv3_ccpp_HAFS_v0_hwrf index d9ab5802d1..ffe2d277ba 100644 --- a/tests/tests/fv3_ccpp_gfdlmp_hwrfsas +++ b/tests/tests/fv3_ccpp_HAFS_v0_hwrf @@ -1,12 +1,12 @@ ############################################################################### # -# FV3 CCPP GFDL-MP using HWRF SAS (deep and shallow) test +# FV3 CCPP HAFS v0 HWRF compiled with 32-bit dynamics test # ############################################################################### -export TEST_DESCR="Compare FV3 CCPP GFDL-MP HWRF SAS results with previous trunk version" +export TEST_DESCR="Compare HAFS 32bit CCPP HWRF suite results with previous trunk version" -export CNTL_DIR=fv3_gfdlmp_hwrfsas +export CNTL_DIR=HAFS_v0_HWRF export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ @@ -14,10 +14,30 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile4.nc \ atmos_4xdaily.tile5.nc \ atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -53,18 +73,38 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 +export NODES=$(expr $TASKS / $TPN + 1) -DT_ATMOS="1200" -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. +DT_ATMOS="600" -export HWRF_SAMFDEEP=.T. -export HWRF_SAMFSHAL=.T. - -export FV3_RUN=ccpp_gfdlmp_run.IN -export CCPP_SUITE=FV3_GFS_2017_gfdlmp +export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN +export CCPP_SUITE=HAFS_v0_hwrf export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_gfdlmp.nml.IN +export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN + +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. + +#F-A microphysics +export IMP_PHYSICS=15 +export LRADAR=.T. +export NWAT=4 + +#hurricane options for hybrid EDMF +export HURR_PBL=.T. +export MONINQFAC=-1.0 +#HWRF options for RRTMG +export ICLOUD=3 +export IOVR_LW=4 +export IOVR_SW=4 + +#HWRF NOAH LSM +export LSM=4 + +#HWRF GFDL surface layer +export SFC_Z0_TYPE=4 + +#HWRF options for SAS +export HWRF_SAMFDEEP=.T. +export HWRF_SAMFSHAL=.T. diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug new file mode 100644 index 0000000000..339705c9af --- /dev/null +++ b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug @@ -0,0 +1,113 @@ +############################################################################### +# +# FV3 CCPP HAFS v0 HWRF compiled with 32-bit dynamics test +# +############################################################################### + +export TEST_DESCR="Compare HAFS 32bit CCPP HWRF suite results with previous trunk version" + +export CNTL_DIR=HAFS_v0_HWRF + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf003.tile1.nc \ + phyf003.tile2.nc \ + phyf003.tile3.nc \ + phyf003.tile4.nc \ + phyf003.tile5.nc \ + phyf003.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf003.tile1.nc \ + dynf003.tile2.nc \ + dynf003.tile3.nc \ + dynf003.tile4.nc \ + dynf003.tile5.nc \ + dynf003.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 +export NODES=$(expr $TASKS / $TPN + 1) + +export FHMAX=3 +export FDIAG=3 + +DT_ATMOS="600" + +export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN +export CCPP_SUITE=HAFS_v0_hwrf +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN + +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. + +#F-A microphysics +export IMP_PHYSICS=15 +export LRADAR=.T. +export NWAT=4 + +#hurricane options for hybrid EDMF +export HURR_PBL=.T. +export MONINQFAC=-1.0 + +#HWRF options for RRTMG +export ICLOUD=3 +export IOVR_LW=4 +export IOVR_SW=4 + +#HWRF NOAH LSM +export LSM=4 + +#HWRF GFDL surface layer +export SFC_Z0_TYPE=4 + +#HWRF options for SAS +export HWRF_SAMFDEEP=.T. +export HWRF_SAMFSHAL=.T. diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson new file mode 100644 index 0000000000..671f8f159b --- /dev/null +++ b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson @@ -0,0 +1,112 @@ +############################################################################### +# +# FV3 CCPP HAFS v0 HWRF with Thompson MP, compiled with 32-bit dynamics test +# +############################################################################### + +export TEST_DESCR="Compare HAFS 32bit CCPP HWRF suite results with previous trunk version" + +export CNTL_DIR=HAFS_v0_HWRF_thompson + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 +export NODES=$(expr $TASKS / $TPN + 1) + +DT_ATMOS="600" + +export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN +export CCPP_SUITE=HAFS_v0_hwrf_thompson +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN + +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. + +# Thompson microphysics +export IMP_PHYSICS=8 +export LRADAR=.T. +export LTAEROSOL=.F. +export NWAT=6 +export EFFR_IN=.T. + +#hurricane options for hybrid EDMF +export HURR_PBL=.T. +export MONINQFAC=-1.0 + +#HWRF options for RRTMG +export ICLOUD=3 +export IOVR_LW=4 +export IOVR_SW=4 + +#HWRF NOAH LSM +export LSM=4 + +#HWRF GFDL surface layer +export SFC_Z0_TYPE=4 + +#HWRF options for SAS +export HWRF_SAMFDEEP=.T. +export HWRF_SAMFSHAL=.T. diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug new file mode 100644 index 0000000000..bd2541f251 --- /dev/null +++ b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug @@ -0,0 +1,115 @@ +########################################################################################### +# +# FV3 CCPP HAFS v0 HWRF with Thompson MP, compiled with 32-bit dynamics in DEBUG mode test +# +########################################################################################### + +export TEST_DESCR="Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version" + +export CNTL_DIR=HAFS_v0_HWRF_thompson_debug + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf003.tile1.nc \ + phyf003.tile2.nc \ + phyf003.tile3.nc \ + phyf003.tile4.nc \ + phyf003.tile5.nc \ + phyf003.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf003.tile1.nc \ + dynf003.tile2.nc \ + dynf003.tile3.nc \ + dynf003.tile4.nc \ + dynf003.tile5.nc \ + dynf003.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 +export NODES=$(expr $TASKS / $TPN + 1) + +export FHMAX=3 +export FDIAG=3 + +DT_ATMOS="600" + +export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN +export CCPP_SUITE=HAFS_v0_hwrf_thompson +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN + +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. + +# Thompson microphysics +export IMP_PHYSICS=8 +export LRADAR=.T. +export LTAEROSOL=.F. +export NWAT=6 +export EFFR_IN=.T. + +#hurricane options for hybrid EDMF +export HURR_PBL=.T. +export MONINQFAC=-1.0 + +#HWRF options for RRTMG +export ICLOUD=3 +export IOVR_LW=4 +export IOVR_SW=4 + +#HWRF NOAH LSM +export LSM=4 + +#HWRF GFDL surface layer +export SFC_Z0_TYPE=4 + +#HWRF options for SAS +export HWRF_SAMFDEEP=.T. +export HWRF_SAMFSHAL=.T. diff --git a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson b/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson new file mode 100644 index 0000000000..270eb38a87 --- /dev/null +++ b/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson @@ -0,0 +1,66 @@ +########################################################################################### +# +# FV3 CCPP HAFS v0 HWRF with Thompson MP, compiled with 32-bit dynamics in DEBUG mode test +# +########################################################################################### + +export TEST_DESCR="Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version" + +export CNTL_DIR=ESG_HAFS_v0_HWRF_thompson + +export LIST_FILES="atmos_4xdaily.nc \ + phyf000.nc \ + phyf012.nc \ + dynf000.nc \ + dynf012.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/sfc_data.nc \ + RESTART/phy_data.nc" + +export_fv3 +export TASKS=80 +export NODES=$(expr $TASKS / $TPN + 1) + +export FHMAX=12 +export FDIAG=3 + +DT_ATMOS="300" + +export FV3_RUN=ccpp_esg_HAFS_v0_hwrf_run.IN +export CCPP_SUITE=HAFS_v0_hwrf_thompson +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_esg_HAFS_v0_hwrf.nml.IN +export MODEL_CONFIGURE=ccpp_esg_HAFS_v0_hwrf-model_configure.IN + +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. + +# Thompson microphysics +export IMP_PHYSICS=8 +export LRADAR=.T. +export LTAEROSOL=.T. +export NWAT=6 +export EFFR_IN=.T. + +#hurricane options for hybrid EDMF +export HURR_PBL=.T. +export MONINQFAC=-1.0 + +#HWRF options for RRTMG +export ICLOUD=3 +export IOVR_LW=4 +export IOVR_SW=4 + +#HWRF NOAH LSM +export LSM=4 + +#HWRF GFDL surface layer +export SFC_Z0_TYPE=4 + +#HWRF options for SAS +export HWRF_SAMFDEEP=.T. +export HWRF_SAMFSHAL=.T. diff --git a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug b/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug new file mode 100644 index 0000000000..314956485f --- /dev/null +++ b/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug @@ -0,0 +1,66 @@ +########################################################################################### +# +# FV3 CCPP HAFS v0 HWRF with Thompson MP, compiled with 32-bit dynamics in DEBUG mode test +# +########################################################################################### + +export TEST_DESCR="Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version" + +export CNTL_DIR=ESG_HAFS_v0_HWRF_thompson_debug + +export LIST_FILES="atmos_4xdaily.nc \ + phyf000.nc \ + phyf001.nc \ + dynf000.nc \ + dynf001.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/sfc_data.nc \ + RESTART/phy_data.nc" + +export_fv3 +export TASKS=80 +export NODES=$(expr $TASKS / $TPN + 1) + +export FHMAX=1 +export FDIAG=1 + +DT_ATMOS="300" + +export FV3_RUN=ccpp_esg_HAFS_v0_hwrf_run.IN +export CCPP_SUITE=HAFS_v0_hwrf_thompson +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_esg_HAFS_v0_hwrf.nml.IN +export MODEL_CONFIGURE=ccpp_esg_HAFS_v0_hwrf-model_configure.IN + +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. + +# Thompson microphysics +export IMP_PHYSICS=8 +export LRADAR=.T. +export LTAEROSOL=.T. +export NWAT=6 +export EFFR_IN=.T. + +#hurricane options for hybrid EDMF +export HURR_PBL=.T. +export MONINQFAC=-1.0 + +#HWRF options for RRTMG +export ICLOUD=3 +export IOVR_LW=4 +export IOVR_SW=4 + +#HWRF NOAH LSM +export LSM=4 + +#HWRF GFDL surface layer +export SFC_Z0_TYPE=4 + +#HWRF options for SAS +export HWRF_SAMFDEEP=.T. +export HWRF_SAMFSHAL=.T. diff --git a/tests/tests/fv3_ccpp_lndp b/tests/tests/fv3_ccpp_lndp index afe8b49b7a..fa06bff90e 100644 --- a/tests/tests/fv3_ccpp_lndp +++ b/tests/tests/fv3_ccpp_lndp @@ -82,5 +82,3 @@ export INPUT_NML=ccpp_lndp.nml.IN export LNDP_TYPE=2 export N_VAR_LNDP=2 - -RUN_SCRIPT=rt_fv3.sh diff --git a/tests/tests/fv3_ccpp_regional_c768_FA_update_moist b/tests/tests/fv3_ccpp_regional_c768_FA_update_moist deleted file mode 100644 index f780401cf0..0000000000 --- a/tests/tests/fv3_ccpp_regional_c768_FA_update_moist +++ /dev/null @@ -1,26 +0,0 @@ -############################################################################### -# -# FV3 CCPP regional c768 test with Ferrier-Aligo MP scheme -# -############################################################################### - -export TEST_DESCR="Compare FV3 CCPP regional c768 with Ferrier-Aligo MP scheme results with previous trunk version" - -export CNTL_DIR=fv3_regional_c768 - -export LIST_FILES=" atmos_4xdaily.nc \ - fv3_history2d.nc \ - fv3_history.nc " - -export_fv3 - -export TASKS=480 -export WLCLK=30 - -export FV3_RUN=ccpp_regional_FA_run.IN - -export CCPP_SUITE=FV3_HAFS_ferhires_update_moist -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_regional_c768_FA.nml.IN -export LRADAR=.T. -export WRITE_DOPOST=.true. diff --git a/tests/tests/fv3_ccpp_rrfs_v1beta b/tests/tests/fv3_ccpp_rrfs_v1beta index 7e622c0859..7788f74aa0 100644 --- a/tests/tests/fv3_ccpp_rrfs_v1beta +++ b/tests/tests/fv3_ccpp_rrfs_v1beta @@ -26,18 +26,6 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ phyf024.tile4.nc \ phyf024.tile5.nc \ phyf024.tile6.nc \ - phyf027.tile1.nc \ - phyf027.tile2.nc \ - phyf027.tile3.nc \ - phyf027.tile4.nc \ - phyf027.tile5.nc \ - phyf027.tile6.nc \ - phyf048.tile1.nc \ - phyf048.tile2.nc \ - phyf048.tile3.nc \ - phyf048.tile4.nc \ - phyf048.tile5.nc \ - phyf048.tile6.nc \ dynf000.tile1.nc \ dynf000.tile2.nc \ dynf000.tile3.nc \ @@ -50,18 +38,6 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ dynf024.tile4.nc \ dynf024.tile5.nc \ dynf024.tile6.nc \ - dynf027.tile1.nc \ - dynf027.tile2.nc \ - dynf027.tile3.nc \ - dynf027.tile4.nc \ - dynf027.tile5.nc \ - dynf027.tile6.nc \ - dynf048.tile1.nc \ - dynf048.tile2.nc \ - dynf048.tile3.nc \ - dynf048.tile4.nc \ - dynf048.tile5.nc \ - dynf048.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -97,7 +73,7 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 -export FHMAX=48 +export FHMAX=24 export FDIAG=3 export DT_ATMOS="600" diff --git a/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel b/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel index 17d05052d7..07a722f1ca 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel +++ b/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel @@ -64,5 +64,3 @@ export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN - -RUN_SCRIPT=rt_fv3.sh diff --git a/tests/utest.bld b/tests/utest.bld index 3d92bc71c2..94f05cbad3 100644 --- a/tests/utest.bld +++ b/tests/utest.bld @@ -13,7 +13,6 @@ fv3_ccpp_multigases | CCPP=Y SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_ fv3_ccpp_gfdlmp | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp fv3_ccpp_gfdlmprad_gwd | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp fv3_ccpp_gfdlmprad_noahmp | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_noahmp -fv3_ccpp_gfdlmp_hwrfsas | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp fv3_ccpp_csawmg | CCPP=Y SUITES=FV3_GFS_2017_csawmg fv3_ccpp_satmedmf | CCPP=Y SUITES=FV3_GFS_2017_satmedmf fv3_ccpp_satmedmfq | CCPP=Y SUITES=FV3_GFS_2017_satmedmfq From 4e8ef6a879ceefb719cc9cebd8ac9c2208a58b16 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Mon, 9 Nov 2020 08:29:36 -0500 Subject: [PATCH 025/109] update cmeps, fix debug compile, rename nems.configure files for coupled model (#254) * Implements a bugfix for the mapping of ifrac for both nems_orig and nems_frac in CMEPS: issue (#17)[https://github.com/NOAA-EMC/CMEPS/issues/17] * Adds field-packing for performance improvements in CMEPS: issue (#23)[https://github.com/NOAA-EMC/CMEPS/issues/23] * Uses module file fv3_debug when DEBUG=Y is specified and fv3_debug is available * Shortens the nems.configure file name used with the coupled model --- CMEPS-interface/CMEPS | 2 +- CMEPS-interface/CMakeLists.txt | 3 +- tests/RegressionTests_hera.intel.log | 321 +++++++++--------- tests/RegressionTests_orion.intel.log | 298 ++++++++-------- tests/RegressionTests_wcoss_cray.log | 198 +++++------ tests/RegressionTests_wcoss_dell_p3.log | 266 +++++++-------- tests/compile.sh | 6 +- tests/default_vars.sh | 6 +- tests/edit_inputs.sh | 4 +- tests/fv3_conf/cpld_bmark_run.IN | 3 +- tests/fv3_conf/cpld_control_run.IN | 2 +- ..._atm_ocn_ice.IN => nems.configure.cpld.IN} | 0 ...ice_wav.IN => nems.configure.cpld_wave.IN} | 0 tests/rt.sh | 4 +- tests/tests/cpld_bmark | 2 +- tests/tests/cpld_bmark_wave | 2 +- tests/tests/cpld_bmark_wave_35d | 2 +- 17 files changed, 562 insertions(+), 557 deletions(-) rename tests/parm/{nems.configure.medcmeps_atm_ocn_ice.IN => nems.configure.cpld.IN} (100%) rename tests/parm/{nems.configure.medcmeps_atm_ocn_ice_wav.IN => nems.configure.cpld_wave.IN} (100%) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 4d50adf2c6..efb8d35303 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 4d50adf2c63749241afbc028cbe245881b087585 +Subproject commit efb8d353030c0c62ddf99051195f981841101cac diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index e20108ba8a..7fa97094df 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -55,7 +55,8 @@ list(APPEND _mediator_files CMEPS/mediator/med_utils_mod.F90 CMEPS/mediator/med_fraction_mod.F90 CMEPS/mediator/med_phases_aofluxes_mod.F90 - CMEPS/mediator/med_io_mod.F90) + CMEPS/mediator/med_io_mod.F90 + CMEPS/mediator/med_diag_mod.F90) list(APPEND _mediator_defs ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR} ESMF_VERSION_MINOR=${ESMF_VERSION_MINOR} diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 1b80120d29..56393368a6 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Tue Nov 3 21:08:08 UTC 2020 +Sat Nov 7 12:33:43 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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-20201103/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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-20201103/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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-20201103/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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-20201103/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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-20201103/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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-20201103/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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-20201103/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -854,8 +854,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gfdlmprad_prod Checking test 016 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -951,9 +951,9 @@ Checking test 016 fv3_ccpp_gfdlmprad results .... Test 016 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_166618/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 001 fv3_ccpp_gfdlmprad_atmwav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1000,8 +1000,8 @@ Checking test 001 fv3_ccpp_gfdlmprad_atmwav results .... Test 017 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1049,8 +1049,8 @@ Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 018 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_multigases results .... Test 019 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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,8 +1191,8 @@ Checking test 020 fv3_ccpp_control_32bit results .... Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,8 +1247,8 @@ Checking test 021 fv3_ccpp_stretched results .... Test 021 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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,8 +1314,8 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1325,8 +1325,8 @@ Checking test 023 fv3_ccpp_regional_control results .... Test 023 fv3_ccpp_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1334,8 +1334,8 @@ Checking test 024 fv3_ccpp_regional_restart results .... Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1345,8 +1345,8 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_regional_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_regional_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1356,20 +1356,20 @@ Checking test 026 fv3_ccpp_regional_c768 results .... Test 026 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_stretched_nest_debug_prod Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1416,8 +1416,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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 @@ -1464,8 +1464,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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 @@ -1512,8 +1512,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1560,8 +1560,8 @@ Checking test 032 fv3_ccpp_csawmg results .... Test 032 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1608,8 +1608,8 @@ Checking test 033 fv3_ccpp_satmedmf results .... Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_satmedmfq_prod Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1656,8 +1656,8 @@ Checking test 034 fv3_ccpp_satmedmfq results .... Test 034 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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 @@ -1704,8 +1704,8 @@ Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Test 035 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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 @@ -1756,8 +1756,8 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_cpt_prod Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1810,8 +1810,8 @@ Checking test 037 fv3_ccpp_cpt results .... Test 037 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gsd_prod Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1902,8 +1902,8 @@ Checking test 038 fv3_ccpp_gsd results .... Test 038 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_rap_prod Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1970,8 +1970,8 @@ Checking test 039 fv3_ccpp_rap results .... Test 039 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_hrrr_prod Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2038,8 +2038,8 @@ Checking test 040 fv3_ccpp_hrrr results .... Test 040 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_thompson_prod Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2106,8 +2106,8 @@ Checking test 041 fv3_ccpp_thompson results .... Test 041 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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 @@ -2174,8 +2174,8 @@ Checking test 042 fv3_ccpp_thompson_no_aero results .... Test 042 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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 @@ -2242,8 +2242,8 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... Test 043 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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 @@ -2310,8 +2310,8 @@ Checking test 044 fv3_ccpp_gfs_v15p2 results .... Test 044 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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 @@ -2378,8 +2378,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta results .... Test 045 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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 @@ -2426,8 +2426,8 @@ Checking test 046 fv3_ccpp_gfsv16_csawmg results .... Test 046 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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 @@ -2474,8 +2474,8 @@ Checking test 047 fv3_ccpp_gfsv16_csawmgt results .... Test 047 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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 @@ -2522,8 +2522,8 @@ Checking test 048 fv3_ccpp_gocart_clm results .... Test 048 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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 @@ -2590,8 +2590,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_flake results .... Test 049 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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 @@ -2658,8 +2658,8 @@ Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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 @@ -2676,8 +2676,8 @@ Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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 @@ -2744,8 +2744,8 @@ Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... Test 052 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/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 @@ -2812,8 +2812,8 @@ Checking test 053 fv3_ccpp_gfs_v16beta_debug results .... Test 053 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gsd_debug_prod Checking test 054 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2880,8 +2880,8 @@ Checking test 054 fv3_ccpp_gsd_debug results .... Test 054 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gsd_diag3d_debug_prod Checking test 055 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2948,8 +2948,8 @@ Checking test 055 fv3_ccpp_gsd_diag3d_debug results .... Test 055 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_thompson_debug_prod Checking test 056 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3016,8 +3016,8 @@ Checking test 056 fv3_ccpp_thompson_debug results .... Test 056 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_thompson_no_aero_debug_prod Checking test 057 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3084,8 +3084,8 @@ Checking test 057 fv3_ccpp_thompson_no_aero_debug results .... Test 057 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 058 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3152,8 +3152,8 @@ Checking test 058 fv3_ccpp_rrfs_v1beta_debug results .... Test 058 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 059 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3220,8 +3220,8 @@ Checking test 059 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 059 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 060 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3238,8 +3238,8 @@ Checking test 060 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 060 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_control_prod Checking test 061 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3290,8 +3290,8 @@ Checking test 061 cpld_control results .... Test 061 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_2threads_prod Checking test 062 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3342,8 +3342,8 @@ Checking test 062 cpld_2threads results .... Test 062 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_decomp_prod Checking test 063 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3394,8 +3394,8 @@ Checking test 063 cpld_decomp results .... Test 063 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_satmedmf_prod Checking test 064 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3446,8 +3446,8 @@ Checking test 064 cpld_satmedmf results .... Test 064 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_ca_prod Checking test 065 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3498,8 +3498,8 @@ Checking test 065 cpld_ca results .... Test 065 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_control_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_control_mx025_prod Checking test 066 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3553,8 +3553,8 @@ Checking test 066 cpld_control_mx025 results .... Test 066 cpld_control_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_control_mx025_12h_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_mx025_12h_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_control_mx025_12h_prod Checking test 067 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3608,8 +3608,8 @@ Checking test 067 cpld_control_mx025_12h results .... Test 067 cpld_control_mx025_12h PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_restart_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_restart_mx025_prod Checking test 068 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3663,8 +3663,8 @@ Checking test 068 cpld_restart_mx025 results .... Test 068 cpld_restart_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_control_c192_prod Checking test 069 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3715,8 +3715,8 @@ Checking test 069 cpld_control_c192 results .... Test 069 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_control_c384_prod Checking test 070 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3770,8 +3770,8 @@ Checking test 070 cpld_control_c384 results .... Test 070 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_controlfrac_c384_prod Checking test 071 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3825,8 +3825,8 @@ Checking test 071 cpld_controlfrac_c384 results .... Test 071 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_bmark_prod Checking test 072 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3880,8 +3880,8 @@ Checking test 072 cpld_bmark results .... Test 072 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_bmark_wave_prod Checking test 073 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3938,8 +3938,8 @@ Checking test 073 cpld_bmark_wave results .... Test 073 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/cpld_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_debug_prod Checking test 074 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3990,8 +3990,8 @@ Checking test 074 cpld_debug results .... Test 074 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/datm_control_cfsr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/datm_control_cfsr_prod Checking test 075 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3999,8 +3999,8 @@ Checking test 075 datm_control_cfsr results .... Test 075 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/datm_control_gefs_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/datm_control_gefs_prod Checking test 076 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4008,8 +4008,8 @@ Checking test 076 datm_control_gefs results .... Test 076 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/datm_mx025_cfsr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/datm_mx025_cfsr_prod Checking test 077 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4020,8 +4020,8 @@ Checking test 077 datm_mx025_cfsr results .... Test 077 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_25881/datm_mx025_gefs_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/datm_mx025_gefs_prod Checking test 078 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4031,6 +4031,7 @@ Checking test 078 datm_mx025_gefs results .... Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK Test 078 datm_mx025_gefs PASS + REGRESSION TEST WAS SUCCESSFUL -Tue Nov 3 22:43:15 UTC 2020 -Elapsed time: 00h:22m:05s. Have a nice day! +Sat Nov 7 14:01:06 UTC 2020 +Elapsed time: 01h:27m:29s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index ca8649c13a..5000682cfe 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Nov 5 05:10:58 CST 2020 +Fri Nov 6 11:01:00 CST 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/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-20201103/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/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-20201103/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/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-20201103/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/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-20201103/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/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-20201103/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/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-20201103/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/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-20201103/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,8 +835,8 @@ Checking test 014 fv3_ccpp_gfdlmprad results .... Test 014 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Test 015 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,8 +933,8 @@ Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 016 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,8 +1007,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/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 @@ -1075,8 +1075,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,8 +1131,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/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 @@ -1198,8 +1198,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,8 +1209,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,8 +1218,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,8 +1229,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_regional_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_regional_c768_prod Checking test 024 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1240,20 +1240,20 @@ Checking test 024 fv3_ccpp_regional_c768 results .... Test 024 fv3_ccpp_regional_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1300,8 +1300,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/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 @@ -1348,8 +1348,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/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 @@ -1396,8 +1396,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1444,8 +1444,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1492,8 +1492,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1540,8 +1540,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1592,8 +1592,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1646,8 +1646,8 @@ Checking test 034 fv3_ccpp_cpt results .... Test 034 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,8 +1738,8 @@ Checking test 035 fv3_ccpp_gsd results .... Test 035 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1806,8 +1806,8 @@ Checking test 036 fv3_ccpp_thompson results .... Test 036 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1874,8 +1874,8 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1942,8 +1942,8 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/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 @@ -2010,8 +2010,8 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/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 @@ -2078,8 +2078,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Test 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2126,8 +2126,8 @@ Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Test 041 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2174,8 +2174,8 @@ Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Test 042 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2222,8 +2222,8 @@ Checking test 043 fv3_ccpp_gocart_clm results .... Test 043 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2290,8 +2290,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Test 044 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2358,8 +2358,8 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2376,8 +2376,8 @@ Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfs_v15p2_debug_prod Checking test 047 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2444,8 +2444,8 @@ Checking test 047 fv3_ccpp_gfs_v15p2_debug results .... Test 047 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfs_v16beta_debug_prod Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2512,8 +2512,8 @@ Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... Test 048 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gsd_debug_prod Checking test 049 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2580,8 +2580,8 @@ Checking test 049 fv3_ccpp_gsd_debug results .... Test 049 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gsd_diag3d_debug_prod Checking test 050 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2648,8 +2648,8 @@ Checking test 050 fv3_ccpp_gsd_diag3d_debug results .... Test 050 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_thompson_debug_prod Checking test 051 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2716,8 +2716,8 @@ Checking test 051 fv3_ccpp_thompson_debug results .... Test 051 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_thompson_no_aero_debug_prod Checking test 052 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2784,8 +2784,8 @@ Checking test 052 fv3_ccpp_thompson_no_aero_debug results .... Test 052 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 053 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2852,8 +2852,8 @@ Checking test 053 fv3_ccpp_rrfs_v1beta_debug results .... Test 053 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2920,8 +2920,8 @@ Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2938,8 +2938,8 @@ Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_control_prod Checking test 056 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2990,8 +2990,8 @@ Checking test 056 cpld_control results .... Test 056 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_2threads_prod Checking test 057 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3042,8 +3042,8 @@ Checking test 057 cpld_2threads results .... Test 057 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_decomp_prod Checking test 058 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3094,8 +3094,8 @@ Checking test 058 cpld_decomp results .... Test 058 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_satmedmf_prod Checking test 059 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3146,8 +3146,8 @@ Checking test 059 cpld_satmedmf results .... Test 059 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_ca_prod Checking test 060 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3198,8 +3198,8 @@ Checking test 060 cpld_ca results .... Test 060 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_control_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_control_mx025_prod Checking test 061 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3253,8 +3253,8 @@ Checking test 061 cpld_control_mx025 results .... Test 061 cpld_control_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_control_mx025_12h_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_mx025_12h_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_control_mx025_12h_prod Checking test 062 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3308,8 +3308,8 @@ Checking test 062 cpld_control_mx025_12h results .... Test 062 cpld_control_mx025_12h PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_restart_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_restart_mx025_prod Checking test 063 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3363,8 +3363,8 @@ Checking test 063 cpld_restart_mx025 results .... Test 063 cpld_restart_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_control_c192_prod Checking test 064 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3415,8 +3415,8 @@ Checking test 064 cpld_control_c192 results .... Test 064 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_control_c384_prod Checking test 065 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3470,8 +3470,8 @@ Checking test 065 cpld_control_c384 results .... Test 065 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_controlfrac_c384_prod Checking test 066 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3525,8 +3525,8 @@ Checking test 066 cpld_controlfrac_c384 results .... Test 066 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_bmark_prod Checking test 067 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3580,8 +3580,8 @@ Checking test 067 cpld_bmark results .... Test 067 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_bmark_wave_prod Checking test 068 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3638,8 +3638,8 @@ Checking test 068 cpld_bmark_wave results .... Test 068 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/cpld_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_debug_prod Checking test 069 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3690,8 +3690,8 @@ Checking test 069 cpld_debug results .... Test 069 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/datm_control_cfsr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/datm_control_cfsr_prod Checking test 070 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3699,8 +3699,8 @@ Checking test 070 datm_control_cfsr results .... Test 070 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/datm_control_gefs_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/datm_control_gefs_prod Checking test 071 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3708,8 +3708,8 @@ Checking test 071 datm_control_gefs results .... Test 071 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/datm_mx025_cfsr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/datm_mx025_cfsr_prod Checking test 072 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3720,8 +3720,8 @@ Checking test 072 datm_mx025_cfsr results .... Test 072 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_322568/datm_mx025_gefs_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/datm_mx025_gefs_prod Checking test 073 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3733,5 +3733,5 @@ Test 073 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 5 06:06:03 CST 2020 -Elapsed time: 00h:55m:06s. Have a nice day! +Fri Nov 6 11:54:46 CST 2020 +Elapsed time: 00h:53m:48s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 76d4cead9e..eda5ea99ba 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Wed Nov 4 13:03:05 UTC 2020 +Fri Nov 6 17:12:05 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/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-20201103/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/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-20201103/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/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-20201103/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/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-20201103/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/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-20201103/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/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-20201103/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/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-20201103/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -840,8 +840,8 @@ Checking test 014 fv3_ccpp_multigases results .... Test 014 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -908,8 +908,8 @@ Checking test 015 fv3_ccpp_control_32bit results .... Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -964,8 +964,8 @@ Checking test 016 fv3_ccpp_stretched results .... Test 016 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1031,8 +1031,8 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1042,8 +1042,8 @@ Checking test 018 fv3_ccpp_regional_control results .... Test 018 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1051,8 +1051,8 @@ Checking test 019 fv3_ccpp_regional_restart results .... Test 019 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1062,20 +1062,20 @@ Checking test 020 fv3_ccpp_regional_quilt results .... Test 020 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_control_debug_prod Checking test 021 fv3_ccpp_control_debug results .... Test 021 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_stretched_nest_debug_prod Checking test 022 fv3_ccpp_stretched_nest_debug results .... Test 022 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gfdlmp_prod Checking test 023 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1122,8 +1122,8 @@ Checking test 023 fv3_ccpp_gfdlmp results .... Test 023 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gfdlmprad_gwd_prod Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1170,8 +1170,8 @@ Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Test 024 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1218,8 +1218,8 @@ Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Test 025 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_csawmg_prod Checking test 026 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 026 fv3_ccpp_csawmg results .... Test 026 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_satmedmf_prod Checking test 027 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1314,8 +1314,8 @@ Checking test 027 fv3_ccpp_satmedmf results .... Test 027 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_satmedmfq_prod Checking test 028 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1362,8 +1362,8 @@ Checking test 028 fv3_ccpp_satmedmfq results .... Test 028 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gfdlmp_32bit_prod Checking test 029 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1410,8 +1410,8 @@ Checking test 029 fv3_ccpp_gfdlmp_32bit results .... Test 029 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 030 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1462,8 +1462,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_32bit_post results .... Test 030 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_cpt_prod Checking test 031 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1516,8 +1516,8 @@ Checking test 031 fv3_ccpp_cpt results .... Test 031 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gsd_prod Checking test 032 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1608,8 +1608,8 @@ Checking test 032 fv3_ccpp_gsd results .... Test 032 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_thompson_prod Checking test 033 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1676,8 +1676,8 @@ Checking test 033 fv3_ccpp_thompson results .... Test 033 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_thompson_no_aero_prod Checking test 034 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1744,8 +1744,8 @@ Checking test 034 fv3_ccpp_thompson_no_aero results .... Test 034 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_rrfs_v1beta_prod Checking test 035 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1812,8 +1812,8 @@ Checking test 035 fv3_ccpp_rrfs_v1beta results .... Test 035 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gfsv16_csawmg_prod Checking test 036 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1860,8 +1860,8 @@ Checking test 036 fv3_ccpp_gfsv16_csawmg results .... Test 036 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gfsv16_csawmgt_prod Checking test 037 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1908,8 +1908,8 @@ Checking test 037 fv3_ccpp_gfsv16_csawmgt results .... Test 037 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gocart_clm_prod Checking test 038 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1956,8 +1956,8 @@ Checking test 038 fv3_ccpp_gocart_clm results .... Test 038 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gfs_v16beta_flake_prod Checking test 039 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2024,8 +2024,8 @@ Checking test 039 fv3_ccpp_gfs_v16beta_flake results .... Test 039 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 040 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2092,8 +2092,8 @@ Checking test 040 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 040 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 041 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2110,8 +2110,8 @@ Checking test 041 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 041 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gsd_debug_prod Checking test 042 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2178,8 +2178,8 @@ Checking test 042 fv3_ccpp_gsd_debug results .... Test 042 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gsd_diag3d_debug_prod Checking test 043 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2246,8 +2246,8 @@ Checking test 043 fv3_ccpp_gsd_diag3d_debug results .... Test 043 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_thompson_debug_prod Checking test 044 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2314,8 +2314,8 @@ Checking test 044 fv3_ccpp_thompson_debug results .... Test 044 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_thompson_no_aero_debug_prod Checking test 045 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2382,8 +2382,8 @@ Checking test 045 fv3_ccpp_thompson_no_aero_debug results .... Test 045 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 046 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2450,8 +2450,8 @@ Checking test 046 fv3_ccpp_rrfs_v1beta_debug results .... Test 046 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2518,8 +2518,8 @@ Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_47130/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2537,5 +2537,5 @@ Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Nov 4 13:37:39 UTC 2020 -Elapsed time: 00h:34m:35s. Have a nice day! +Fri Nov 6 17:46:41 UTC 2020 +Elapsed time: 00h:34m:37s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index e391443050..ab4695f95a 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Thu Nov 5 13:18:49 UTC 2020 +Sat Nov 7 12:44:50 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/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-20201103/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/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-20201103/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/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-20201103/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/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-20201103/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/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-20201103/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/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-20201103/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/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-20201103/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,8 +815,8 @@ Checking test 014 fv3_ccpp_gfdlmprad results .... Test 014 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -864,8 +864,8 @@ Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Test 015 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1062,8 +1062,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1129,8 +1129,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1140,8 +1140,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1149,8 +1149,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1160,8 +1160,8 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_regional_c768_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_regional_c768_prod Checking test 023 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1171,20 +1171,20 @@ Checking test 023 fv3_ccpp_regional_c768 results .... Test 023 fv3_ccpp_regional_c768 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1231,8 +1231,8 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,8 +1279,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1327,8 +1327,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,8 +1375,8 @@ Checking test 029 fv3_ccpp_csawmg results .... Test 029 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1423,8 +1423,8 @@ Checking test 030 fv3_ccpp_satmedmf results .... Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1471,8 +1471,8 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1519,8 +1519,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1571,8 +1571,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1625,8 +1625,8 @@ Checking test 034 fv3_ccpp_cpt results .... Test 034 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1717,8 +1717,8 @@ Checking test 035 fv3_ccpp_gsd results .... Test 035 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1785,8 +1785,8 @@ Checking test 036 fv3_ccpp_thompson results .... Test 036 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1853,8 +1853,8 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1921,8 +1921,8 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfsv16_csawmg_prod Checking test 039 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1969,8 +1969,8 @@ Checking test 039 fv3_ccpp_gfsv16_csawmg results .... Test 039 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfsv16_csawmgt_prod Checking test 040 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2017,8 +2017,8 @@ Checking test 040 fv3_ccpp_gfsv16_csawmgt results .... Test 040 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gocart_clm_prod Checking test 041 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2065,8 +2065,8 @@ Checking test 041 fv3_ccpp_gocart_clm results .... Test 041 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfs_v16beta_flake_prod Checking test 042 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2133,8 +2133,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_flake results .... Test 042 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 043 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2201,8 +2201,8 @@ Checking test 043 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 043 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2219,8 +2219,8 @@ Checking test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gsd_debug_prod Checking test 045 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2287,8 +2287,8 @@ Checking test 045 fv3_ccpp_gsd_debug results .... Test 045 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gsd_diag3d_debug_prod Checking test 046 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2355,8 +2355,8 @@ Checking test 046 fv3_ccpp_gsd_diag3d_debug results .... Test 046 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_thompson_debug_prod Checking test 047 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2423,8 +2423,8 @@ Checking test 047 fv3_ccpp_thompson_debug results .... Test 047 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_thompson_no_aero_debug_prod Checking test 048 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2491,8 +2491,8 @@ Checking test 048 fv3_ccpp_thompson_no_aero_debug results .... Test 048 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 049 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2559,8 +2559,8 @@ Checking test 049 fv3_ccpp_rrfs_v1beta_debug results .... Test 049 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2627,8 +2627,8 @@ Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2645,8 +2645,8 @@ Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_control_prod Checking test 052 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2697,8 +2697,8 @@ Checking test 052 cpld_control results .... Test 052 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_2threads_prod Checking test 053 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2749,8 +2749,8 @@ Checking test 053 cpld_2threads results .... Test 053 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_decomp_prod Checking test 054 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2801,8 +2801,8 @@ Checking test 054 cpld_decomp results .... Test 054 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_satmedmf_prod Checking test 055 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2853,8 +2853,8 @@ Checking test 055 cpld_satmedmf results .... Test 055 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_ca_prod Checking test 056 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2905,8 +2905,8 @@ Checking test 056 cpld_ca results .... Test 056 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_control_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_control_mx025_prod Checking test 057 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2960,8 +2960,8 @@ Checking test 057 cpld_control_mx025 results .... Test 057 cpld_control_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_control_mx025_12h_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_control_mx025_12h_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_control_mx025_12h_prod Checking test 058 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3015,8 +3015,8 @@ Checking test 058 cpld_control_mx025_12h results .... Test 058 cpld_control_mx025_12h PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_restart_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_restart_mx025_prod Checking test 059 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3070,8 +3070,8 @@ Checking test 059 cpld_restart_mx025 results .... Test 059 cpld_restart_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_control_c192_prod Checking test 060 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3122,8 +3122,8 @@ Checking test 060 cpld_control_c192 results .... Test 060 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_control_c384_prod Checking test 061 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3177,8 +3177,8 @@ Checking test 061 cpld_control_c384 results .... Test 061 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_controlfrac_c384_prod Checking test 062 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3232,8 +3232,8 @@ Checking test 062 cpld_controlfrac_c384 results .... Test 062 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_bmark_prod Checking test 063 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3287,8 +3287,8 @@ Checking test 063 cpld_bmark results .... Test 063 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_bmark_wave_prod Checking test 064 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3345,8 +3345,8 @@ Checking test 064 cpld_bmark_wave results .... Test 064 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_57913/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_debug_prod Checking test 065 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3398,5 +3398,5 @@ Test 065 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 5 14:54:10 UTC 2020 -Elapsed time: 01h:35m:28s. Have a nice day! +Sat Nov 7 16:36:14 UTC 2020 +Elapsed time: 03h:51m:27s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index c5d0df470b..4300685133 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -57,7 +57,11 @@ if [[ $MACHINE_ID == macosx.* ]] || [[ $MACHINE_ID == linux.* ]]; then source $PATHTR/modulefiles/${MACHINE_ID}/fv3 else module use $PATHTR/modulefiles/${MACHINE_ID} - module load fv3 + modulefile="fv3" + if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then + [[ -f $PATHTR/modulefiles/${MACHINE_ID}/fv3_debug ]] && modulefile="fv3_debug" + fi + module load $modulefile module list fi set -x diff --git a/tests/default_vars.sh b/tests/default_vars.sh index c4653be558..0d12ee1d1c 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -375,7 +375,7 @@ export CPL_SLOW=${DT_THERM_MOM6} export CPL_FAST=${DT_ATMOS} # nems.configure defaults -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice.IN" +export NEMS_CONFIGURE="nems.configure.cpld.IN" export med_model="nems" export atm_model="fv3" export ocn_model="mom6" @@ -428,9 +428,9 @@ export MOM6_RESTART_SETTING='n' export MOM6_RIVER_RUNOFF='False' export FRUNOFF="" export CHLCLIM="seawifs_1998-2006_smoothed_2X.nc" -# this must be set False for restart repro +# this must be set False for restart repro export MOM6_REPRO_LA='False' -# since CPL_SLOW is set to DT_THERM, this should be always be false +# since CPL_SLOW is set to DT_THERM, this should be always be false export MOM6_THERMO_SPAN='False' # no WW3 export MOM6_USE_WAVES='False' diff --git a/tests/edit_inputs.sh b/tests/edit_inputs.sh index 0d5640e83e..0b0a9527fc 100755 --- a/tests/edit_inputs.sh +++ b/tests/edit_inputs.sh @@ -41,11 +41,11 @@ function edit_mom_input { -e "s/MOM6_USE_WAVES/$MOM6_USE_WAVES/g" \ -e "s/NX_GLB/$NX_GLB/g" \ -e "s/NY_GLB/$NY_GLB/g" \ - -e "s/CHLCLIM/$CHLCLIM/g" + -e "s/CHLCLIM/$CHLCLIM/g" } function edit_data_table { - sed -e "s/FRUNOFF/$FRUNOFF/g" + sed -e "s/FRUNOFF/$FRUNOFF/g" } function edit_diag_table { diff --git a/tests/fv3_conf/cpld_bmark_run.IN b/tests/fv3_conf/cpld_bmark_run.IN index ad159842e6..b144f54c28 100644 --- a/tests/fv3_conf/cpld_bmark_run.IN +++ b/tests/fv3_conf/cpld_bmark_run.IN @@ -1,4 +1,4 @@ -mkdir INPUT RESTART history MOM6_OUTPUT +mkdir INPUT RESTART history MOM6_OUTPUT if [[ $ATMRES == 'C96' ]]; then FV3_DIR=FV3_input_data @@ -58,4 +58,3 @@ cp @[RTPWD]/${FV3_IC}/gfs_data*.nc ./INPUT cp @[RTPWD]/${MOM6_IC}/MOM*.nc ./INPUT # the BM ICs are still named cice5 and need to remain so until P5.0 is completed cp @[RTPWD]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc - diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index 63c1c9a99c..ee49c1dacf 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -1,4 +1,4 @@ -mkdir INPUT RESTART history MOM6_OUTPUT +mkdir INPUT RESTART history MOM6_OUTPUT if [[ $ATMRES == 'C96' ]]; then FV3_DIR=FV3_input_data diff --git a/tests/parm/nems.configure.medcmeps_atm_ocn_ice.IN b/tests/parm/nems.configure.cpld.IN similarity index 100% rename from tests/parm/nems.configure.medcmeps_atm_ocn_ice.IN rename to tests/parm/nems.configure.cpld.IN diff --git a/tests/parm/nems.configure.medcmeps_atm_ocn_ice_wav.IN b/tests/parm/nems.configure.cpld_wave.IN similarity index 100% rename from tests/parm/nems.configure.medcmeps_atm_ocn_ice_wav.IN rename to tests/parm/nems.configure.cpld_wave.IN diff --git a/tests/rt.sh b/tests/rt.sh index 2650c3ef28..a9aa9aba55 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -400,9 +400,9 @@ if [[ $SINGLE_NAME != '' ]]; then fi if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = jet.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201103/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201106/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201103} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201106} fi shift $((OPTIND-1)) diff --git a/tests/tests/cpld_bmark b/tests/tests/cpld_bmark index d564ed707a..d8d774c2cf 100644 --- a/tests/tests/cpld_bmark +++ b/tests/tests/cpld_bmark @@ -53,7 +53,7 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2013-04-02-00000.nc" + RESTART/iced.2013-04-02-00000.nc" #RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc" export_fv3 diff --git a/tests/tests/cpld_bmark_wave b/tests/tests/cpld_bmark_wave index d22a289783..bb10f32bd5 100644 --- a/tests/tests/cpld_bmark_wave +++ b/tests/tests/cpld_bmark_wave @@ -104,7 +104,7 @@ export CPL_SLOW=${DT_THERM_MOM6} export CPL_FAST=${DT_ATMOS} # nems.configure -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice_wav.IN" +export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} diff --git a/tests/tests/cpld_bmark_wave_35d b/tests/tests/cpld_bmark_wave_35d index 019e21366d..3179e6bef5 100644 --- a/tests/tests/cpld_bmark_wave_35d +++ b/tests/tests/cpld_bmark_wave_35d @@ -65,7 +65,7 @@ export CPL_SLOW=${DT_THERM_MOM6} export CPL_FAST=${DT_ATMOS} # nems.configure -export NEMS_CONFIGURE="nems.configure.medcmeps_atm_ocn_ice_wav.IN" +export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} From 2e25df5fe952d27355ed58963148f46b82565469 Mon Sep 17 00:00:00 2001 From: dustinswales Date: Fri, 13 Nov 2020 12:09:33 -0700 Subject: [PATCH 026/109] Changes to regression test files for recent changes to RRTMG and RRTMGP. (#262) * Changes to regression test files for recent changes to RRTMG and RRTMGP. * Removed redundant importing of kind_phys in physics * add units to index_for_diagnostic_printout metadata * Replace iovr_{lw,sw} with iovr for HWRF regression tests * Bugfix in GP sampling routines. * Increase number of nodes for test fv3_ccpp_gocart_clm on Cheyenne Co-authored-by: Dom Heinzeller --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 390 ++++++++-- tests/RegressionTests_cheyenne.intel.log | 526 ++++++++++--- tests/RegressionTests_hera.gnu.log | 390 ++++++++-- tests/RegressionTests_hera.intel.log | 722 ++++++++++++------ tests/RegressionTests_orion.intel.log | 702 +++++++++++------ tests/RegressionTests_wcoss_cray.log | 198 ++--- tests/RegressionTests_wcoss_dell_p3.log | 266 +++---- tests/default_vars.sh | 3 +- tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN | 2 +- tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN | 2 +- tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN | 3 +- tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN | 3 +- tests/parm/ccpp_v16beta_c96.nml.IN | 3 +- tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN | 3 +- tests/parm/ccpp_v16beta_flake_c96.nml.IN | 3 +- tests/parm/input.benchmark.nml.IN | 3 +- tests/parm/input.benchmark_ccpp.nml.IN | 3 +- tests/parm/v16beta_c96.nml.IN | 3 +- tests/rt.conf | 24 +- tests/rt.sh | 4 +- tests/rt_gnu.conf | 8 +- tests/tests/fv3_ccpp_HAFS_v0_hwrf | 3 +- tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug | 3 +- tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson | 3 +- .../fv3_ccpp_HAFS_v0_hwrf_thompson_debug | 3 +- .../tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson | 3 +- .../fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | 3 +- tests/tests/fv3_ccpp_gocart_clm | 5 + 29 files changed, 2318 insertions(+), 968 deletions(-) diff --git a/FV3 b/FV3 index 5530a85cb2..3bd96653e4 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 5530a85cb22179178615db80e6304c31e02fd6ca +Subproject commit 3bd96653e45e7f1d14d47bcd07135adf091a0210 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 458955f8d2..bb38e78148 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Thu Nov 5 05:46:38 MST 2020 +Thu Nov 12 14:23:55 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/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-20201103/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/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-20201103/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/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 @@ -186,8 +186,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-20201103/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,9 +254,145 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_gsd_prod -Checking test 005 fv3_ccpp_gsd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 005 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 ............SKIP for gnu compilers + 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 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 006 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 ............SKIP for gnu compilers + 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 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gsd_prod +Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -343,12 +479,12 @@ Checking test 005 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 005 fv3_ccpp_gsd PASS +Test 007 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_thompson_prod -Checking test 006 fv3_ccpp_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_thompson_prod +Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -411,12 +547,12 @@ Checking test 006 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 006 fv3_ccpp_thompson PASS +Test 008 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_thompson_no_aero_prod -Checking test 007 fv3_ccpp_thompson_no_aero results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_thompson_no_aero_prod +Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -479,12 +615,12 @@ Checking test 007 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 007 fv3_ccpp_thompson_no_aero PASS +Test 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_rrfs_v1beta_prod -Checking test 008 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_rrfs_v1beta_prod +Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -547,12 +683,12 @@ Checking test 008 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 008 fv3_ccpp_rrfs_v1beta PASS +Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 009 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 011 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 @@ -615,12 +751,12 @@ Checking test 009 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 009 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 010 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -633,18 +769,154 @@ Checking test 010 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 010 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_control_debug_prod -Checking test 011 fv3_ccpp_control_debug results .... -Test 011 fv3_ccpp_control_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_control_debug_prod +Checking test 013 fv3_ccpp_control_debug results .... +Test 013 fv3_ccpp_control_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 014 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 ............SKIP for gnu compilers + 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_gfs_v15p2_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 015 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 ............SKIP for gnu compilers + 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_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 012 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 016 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 @@ -707,12 +979,12 @@ Checking test 012 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 012 fv3_ccpp_gfs_v15p2_debug PASS +Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 013 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 017 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 @@ -775,12 +1047,12 @@ Checking test 013 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 013 fv3_ccpp_gfs_v16beta_debug PASS +Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_multigases_prod -Checking test 014 fv3_ccpp_multigases results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_multigases_prod +Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -849,12 +1121,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 018 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 015 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 019 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 @@ -917,12 +1189,12 @@ Checking test 015 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 015 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27161/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 016 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -935,9 +1207,9 @@ Checking test 016 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 016 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 5 06:01:43 MST 2020 -Elapsed time: 00h:15m:05s. Have a nice day! +Thu Nov 12 14:41:06 MST 2020 +Elapsed time: 00h:17m:11s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index e92fc4119a..1ab39e8ec1 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Thu Nov 5 05:59:04 MST 2020 +Thu Nov 12 15:56:16 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/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-20201103/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/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-20201103/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/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-20201103/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/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-20201103/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/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-20201103/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/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-20201103/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/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-20201103/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ 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-20201103/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -908,8 +908,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -976,8 +976,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1032,8 +1032,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1119,8 +1119,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1130,20 +1130,20 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_control_debug_prod Checking test 022 fv3_ccpp_control_debug results .... Test 022 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_stretched_nest_debug_prod Checking test 023 fv3_ccpp_stretched_nest_debug results .... Test 023 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfdlmp_prod Checking test 024 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1190,8 +1190,8 @@ Checking test 024 fv3_ccpp_gfdlmp results .... Test 024 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfdlmprad_gwd_prod Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1238,8 +1238,8 @@ Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Test 025 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1286,8 +1286,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Test 026 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1334,8 +1334,8 @@ Checking test 027 fv3_ccpp_csawmg results .... Test 027 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1382,8 +1382,8 @@ Checking test 028 fv3_ccpp_satmedmf results .... Test 028 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1430,8 +1430,8 @@ Checking test 029 fv3_ccpp_satmedmfq results .... Test 029 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1478,8 +1478,8 @@ Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Test 030 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,8 +1530,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1584,8 +1584,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1676,8 +1676,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1744,8 +1744,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1812,8 +1812,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1880,8 +1880,8 @@ Checking test 036 fv3_ccpp_rrfs_v1beta results .... Test 036 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfs_v15p2_prod Checking test 037 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1948,8 +1948,8 @@ Checking test 037 fv3_ccpp_gfs_v15p2 results .... Test 037 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfs_v16beta_prod Checking test 038 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2016,9 +2016,145 @@ Checking test 038 fv3_ccpp_gfs_v16beta results .... Test 038 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gocart_clm_prod -Checking test 039 fv3_ccpp_gocart_clm results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 039 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 039 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 040 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 040 fv3_ccpp_gfs_v16beta_RRTMGP PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gocart_clm_prod +Checking test 041 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2061,12 +2197,12 @@ Checking test 039 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 039 fv3_ccpp_gocart_clm PASS +Test 041 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 040 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 042 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2129,12 +2265,12 @@ Checking test 040 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 040 fv3_ccpp_gfs_v16beta_flake PASS +Test 042 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 041 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 043 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 @@ -2197,12 +2333,12 @@ Checking test 041 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 041 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 043 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 042 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2215,12 +2351,148 @@ Checking test 042 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 042 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 045 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 045 fv3_ccpp_gfs_v16beta_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 046 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 046 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 043 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 047 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 @@ -2283,12 +2555,12 @@ Checking test 043 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 043 fv3_ccpp_gfs_v16beta_debug PASS +Test 047 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gsd_debug_prod -Checking test 044 fv3_ccpp_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gsd_debug_prod +Checking test 048 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2351,12 +2623,12 @@ Checking test 044 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 044 fv3_ccpp_gsd_debug PASS +Test 048 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 049 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2419,12 +2691,12 @@ Checking test 045 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 045 fv3_ccpp_gsd_diag3d_debug PASS +Test 049 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_thompson_debug_prod -Checking test 046 fv3_ccpp_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_thompson_debug_prod +Checking test 050 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2487,12 +2759,12 @@ Checking test 046 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 046 fv3_ccpp_thompson_debug PASS +Test 050 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 051 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 @@ -2555,12 +2827,12 @@ Checking test 047 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 047 fv3_ccpp_thompson_no_aero_debug PASS +Test 051 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 052 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2623,12 +2895,12 @@ Checking test 048 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 048 fv3_ccpp_rrfs_v1beta_debug PASS +Test 052 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 053 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 @@ -2691,12 +2963,12 @@ Checking test 049 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 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201103/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_7291/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -2709,9 +2981,9 @@ Checking test 050 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 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 5 06:29:41 MST 2020 -Elapsed time: 00h:30m:37s. Have a nice day! +Thu Nov 12 16:27:53 MST 2020 +Elapsed time: 00h:31m:37s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index a80ed9100a..d8607d03dd 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Tue Nov 3 21:08:23 UTC 2020 +Fri Nov 13 02:52:01 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/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-20201103/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/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-20201103/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/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 @@ -186,8 +186,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-20201103/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,9 +254,145 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_gsd_prod -Checking test 005 fv3_ccpp_gsd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 005 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 ............SKIP for gnu compilers + 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 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 006 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 ............SKIP for gnu compilers + 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 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gsd_prod +Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -343,12 +479,12 @@ Checking test 005 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 005 fv3_ccpp_gsd PASS +Test 007 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_thompson_prod -Checking test 006 fv3_ccpp_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_thompson_prod +Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -411,12 +547,12 @@ Checking test 006 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 006 fv3_ccpp_thompson PASS +Test 008 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_thompson_no_aero_prod -Checking test 007 fv3_ccpp_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_thompson_no_aero_prod +Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -479,12 +615,12 @@ Checking test 007 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 007 fv3_ccpp_thompson_no_aero PASS +Test 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_rrfs_v1beta_prod -Checking test 008 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_rrfs_v1beta_prod +Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -547,12 +683,12 @@ Checking test 008 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 008 fv3_ccpp_rrfs_v1beta PASS +Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 009 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 011 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 @@ -615,12 +751,12 @@ Checking test 009 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 009 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 010 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -633,18 +769,154 @@ Checking test 010 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 010 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_control_debug_prod -Checking test 011 fv3_ccpp_control_debug results .... -Test 011 fv3_ccpp_control_debug PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_control_debug_prod +Checking test 013 fv3_ccpp_control_debug results .... +Test 013 fv3_ccpp_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 014 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 ............SKIP for gnu compilers + 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_gfs_v15p2_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 015 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 ............SKIP for gnu compilers + 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_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 012 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 016 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 @@ -707,12 +979,12 @@ Checking test 012 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 012 fv3_ccpp_gfs_v15p2_debug PASS +Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 013 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 017 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 @@ -775,12 +1047,12 @@ Checking test 013 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 013 fv3_ccpp_gfs_v16beta_debug PASS +Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_multigases_prod -Checking test 014 fv3_ccpp_multigases results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_multigases_prod +Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -849,12 +1121,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 018 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 015 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 019 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 @@ -917,12 +1189,12 @@ Checking test 015 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 015 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201103/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_230149/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 016 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -935,9 +1207,9 @@ Checking test 016 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 016 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Nov 3 21:40:18 UTC 2020 -Elapsed time: 00h:32m:01s. Have a nice day! +Fri Nov 13 03:24:00 UTC 2020 +Elapsed time: 00h:32m:00s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 56393368a6..ab4ef816b7 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Sat Nov 7 12:33:43 UTC 2020 +Fri Nov 13 05:02:55 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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-20201106/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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-20201106/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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-20201106/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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-20201106/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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-20201106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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-20201106/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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-20201106/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -854,8 +854,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfdlmprad_prod Checking test 016 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -951,8 +951,8 @@ Checking test 016 fv3_ccpp_gfdlmprad results .... Test 016 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1000,8 +1000,8 @@ Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Test 017 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1049,8 +1049,8 @@ Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 018 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_multigases results .... Test 019 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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,8 +1191,8 @@ Checking test 020 fv3_ccpp_control_32bit results .... Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,8 +1247,8 @@ Checking test 021 fv3_ccpp_stretched results .... Test 021 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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,8 +1314,8 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1325,8 +1325,8 @@ Checking test 023 fv3_ccpp_regional_control results .... Test 023 fv3_ccpp_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1334,8 +1334,8 @@ Checking test 024 fv3_ccpp_regional_restart results .... Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1345,8 +1345,8 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_regional_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1356,20 +1356,20 @@ Checking test 026 fv3_ccpp_regional_c768 results .... Test 026 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_stretched_nest_debug_prod Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1416,8 +1416,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -1464,8 +1464,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -1512,8 +1512,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1560,8 +1560,8 @@ Checking test 032 fv3_ccpp_csawmg results .... Test 032 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1608,8 +1608,8 @@ Checking test 033 fv3_ccpp_satmedmf results .... Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_satmedmfq_prod Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1656,8 +1656,8 @@ Checking test 034 fv3_ccpp_satmedmfq results .... Test 034 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -1704,8 +1704,8 @@ Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Test 035 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -1756,8 +1756,8 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_cpt_prod Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1810,8 +1810,8 @@ Checking test 037 fv3_ccpp_cpt results .... Test 037 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gsd_prod Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1902,8 +1902,8 @@ Checking test 038 fv3_ccpp_gsd results .... Test 038 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_rap_prod Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1970,8 +1970,8 @@ Checking test 039 fv3_ccpp_rap results .... Test 039 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_hrrr_prod Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2038,8 +2038,8 @@ Checking test 040 fv3_ccpp_hrrr results .... Test 040 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_thompson_prod Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2106,8 +2106,8 @@ Checking test 041 fv3_ccpp_thompson results .... Test 041 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -2174,8 +2174,8 @@ Checking test 042 fv3_ccpp_thompson_no_aero results .... Test 042 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -2242,8 +2242,8 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... Test 043 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -2310,8 +2310,8 @@ Checking test 044 fv3_ccpp_gfs_v15p2 results .... Test 044 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -2378,9 +2378,145 @@ Checking test 045 fv3_ccpp_gfs_v16beta results .... Test 045 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gfsv16_csawmg_prod -Checking test 046 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -2423,12 +2559,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 048 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 047 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -2471,12 +2607,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 049 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gocart_clm_prod -Checking test 048 fv3_ccpp_gocart_clm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -2519,12 +2655,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 050 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 049 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -2587,12 +2723,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 051 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -2655,12 +2791,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 052 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -2673,12 +2809,148 @@ 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 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -2741,12 +3013,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 056 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 053 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -2809,12 +3081,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 057 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gsd_debug_prod -Checking test 054 fv3_ccpp_gsd_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -2877,12 +3149,12 @@ Checking test 054 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 054 fv3_ccpp_gsd_debug PASS +Test 058 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 055 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -2945,12 +3217,12 @@ Checking test 055 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 055 fv3_ccpp_gsd_diag3d_debug PASS +Test 059 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_thompson_debug_prod -Checking test 056 fv3_ccpp_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -3013,12 +3285,12 @@ Checking test 056 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 056 fv3_ccpp_thompson_debug PASS +Test 060 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 057 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -3081,12 +3353,12 @@ Checking test 057 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 057 fv3_ccpp_thompson_no_aero_debug PASS +Test 061 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 058 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -3149,12 +3421,12 @@ Checking test 058 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 058 fv3_ccpp_rrfs_v1beta_debug PASS +Test 062 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 059 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -3217,12 +3489,12 @@ Checking test 059 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 059 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 060 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/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 @@ -3235,12 +3507,12 @@ Checking test 060 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 060 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_control_prod -Checking test 061 cpld_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_control_prod +Checking test 065 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3287,12 +3559,12 @@ Checking test 061 cpld_control results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 061 cpld_control PASS +Test 065 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_2threads_prod -Checking test 062 cpld_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_2threads_prod +Checking test 066 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3339,12 +3611,12 @@ Checking test 062 cpld_2threads results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 062 cpld_2threads PASS +Test 066 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_decomp_prod -Checking test 063 cpld_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_decomp_prod +Checking test 067 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3391,12 +3663,12 @@ Checking test 063 cpld_decomp results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 063 cpld_decomp PASS +Test 067 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_satmedmf_prod -Checking test 064 cpld_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_satmedmf_prod +Checking test 068 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3443,12 +3715,12 @@ Checking test 064 cpld_satmedmf results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 064 cpld_satmedmf PASS +Test 068 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_ca_prod -Checking test 065 cpld_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_ca_prod +Checking test 069 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3495,12 +3767,12 @@ Checking test 065 cpld_ca results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 065 cpld_ca PASS +Test 069 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_control_mx025_prod -Checking test 066 cpld_control_mx025 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_control_mx025_prod +Checking test 070 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3550,12 +3822,12 @@ Checking test 066 cpld_control_mx025 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 066 cpld_control_mx025 PASS +Test 070 cpld_control_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_control_mx025_12h_prod -Checking test 067 cpld_control_mx025_12h results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_mx025_12h_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_control_mx025_12h_prod +Checking test 071 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -3605,12 +3877,12 @@ Checking test 067 cpld_control_mx025_12h results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-03-43200.nc .........OK -Test 067 cpld_control_mx025_12h PASS +Test 071 cpld_control_mx025_12h PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_restart_mx025_prod -Checking test 068 cpld_restart_mx025 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_restart_mx025_prod +Checking test 072 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3660,12 +3932,12 @@ Checking test 068 cpld_restart_mx025 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 068 cpld_restart_mx025 PASS +Test 072 cpld_restart_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_control_c192_prod -Checking test 069 cpld_control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_control_c192_prod +Checking test 073 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3712,12 +3984,12 @@ Checking test 069 cpld_control_c192 results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 069 cpld_control_c192 PASS +Test 073 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_control_c384_prod -Checking test 070 cpld_control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_control_c384_prod +Checking test 074 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3767,12 +4039,12 @@ Checking test 070 cpld_control_c384 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 070 cpld_control_c384 PASS +Test 074 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_controlfrac_c384_prod -Checking test 071 cpld_controlfrac_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_controlfrac_c384_prod +Checking test 075 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3822,12 +4094,12 @@ Checking test 071 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 071 cpld_controlfrac_c384 PASS +Test 075 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_bmark_prod -Checking test 072 cpld_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_bmark_prod +Checking test 076 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3877,12 +4149,12 @@ Checking test 072 cpld_bmark results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 072 cpld_bmark PASS +Test 076 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_bmark_wave_prod -Checking test 073 cpld_bmark_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_bmark_wave_prod +Checking test 077 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3935,12 +4207,12 @@ Checking test 073 cpld_bmark_wave results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 073 cpld_bmark_wave PASS +Test 077 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/cpld_debug_prod -Checking test 074 cpld_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_debug_prod +Checking test 078 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -3987,51 +4259,51 @@ Checking test 074 cpld_debug results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK -Test 074 cpld_debug PASS +Test 078 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/datm_control_cfsr_prod -Checking test 075 datm_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/datm_control_cfsr_prod +Checking test 079 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 075 datm_control_cfsr PASS +Test 079 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/datm_control_gefs_prod -Checking test 076 datm_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/datm_control_gefs_prod +Checking test 080 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 076 datm_control_gefs PASS +Test 080 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/datm_mx025_cfsr_prod -Checking test 077 datm_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/datm_mx025_cfsr_prod +Checking test 081 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 077 datm_mx025_cfsr PASS +Test 081 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_140399/datm_mx025_gefs_prod -Checking test 078 datm_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/datm_mx025_gefs_prod +Checking test 082 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 078 datm_mx025_gefs PASS +Test 082 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Sat Nov 7 14:01:06 UTC 2020 -Elapsed time: 01h:27m:29s. Have a nice day! +Fri Nov 13 07:36:04 UTC 2020 +Elapsed time: 02h:33m:11s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 5000682cfe..a8467afcbe 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Fri Nov 6 11:01:00 CST 2020 +Thu Nov 12 16:45:13 CST 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/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-20201106/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/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-20201106/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/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-20201106/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/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-20201106/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/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-20201106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/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-20201106/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/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-20201106/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,8 +835,8 @@ Checking test 014 fv3_ccpp_gfdlmprad results .... Test 014 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Test 015 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,8 +933,8 @@ Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 016 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,8 +1007,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/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 @@ -1075,8 +1075,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,8 +1131,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/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 @@ -1198,8 +1198,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,8 +1209,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,8 +1218,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,8 +1229,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_regional_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_regional_c768_prod Checking test 024 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1240,20 +1240,20 @@ Checking test 024 fv3_ccpp_regional_c768 results .... Test 024 fv3_ccpp_regional_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1300,8 +1300,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/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 @@ -1348,8 +1348,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/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 @@ -1396,8 +1396,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1444,8 +1444,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1492,8 +1492,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1540,8 +1540,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1592,8 +1592,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1646,8 +1646,8 @@ Checking test 034 fv3_ccpp_cpt results .... Test 034 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,8 +1738,8 @@ Checking test 035 fv3_ccpp_gsd results .... Test 035 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1806,8 +1806,8 @@ Checking test 036 fv3_ccpp_thompson results .... Test 036 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1874,8 +1874,8 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1942,8 +1942,8 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/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 @@ -2010,8 +2010,8 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/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 @@ -2078,9 +2078,145 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Test 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfsv16_csawmg_prod -Checking test 041 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 041 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 041 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 042 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 042 fv3_ccpp_gfs_v16beta_RRTMGP PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfsv16_csawmg_prod +Checking test 043 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2123,12 +2259,12 @@ Checking test 041 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 041 fv3_ccpp_gfsv16_csawmg PASS +Test 043 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 044 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2171,12 +2307,12 @@ Checking test 042 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 042 fv3_ccpp_gfsv16_csawmgt PASS +Test 044 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gocart_clm_prod -Checking test 043 fv3_ccpp_gocart_clm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gocart_clm_prod +Checking test 045 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2219,12 +2355,12 @@ Checking test 043 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 043 fv3_ccpp_gocart_clm PASS +Test 045 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2287,12 +2423,12 @@ Checking test 044 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 044 fv3_ccpp_gfs_v16beta_flake PASS +Test 046 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 047 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 @@ -2355,12 +2491,12 @@ Checking test 045 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 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2373,12 +2509,148 @@ Checking test 046 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 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 049 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 049 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 050 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 050 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 047 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 051 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 @@ -2441,12 +2713,12 @@ Checking test 047 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 047 fv3_ccpp_gfs_v15p2_debug PASS +Test 051 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 052 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 @@ -2509,12 +2781,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 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gsd_debug_prod -Checking test 049 fv3_ccpp_gsd_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gsd_debug_prod +Checking test 053 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2577,12 +2849,12 @@ Checking test 049 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 049 fv3_ccpp_gsd_debug PASS +Test 053 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 050 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2645,12 +2917,12 @@ Checking test 050 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 050 fv3_ccpp_gsd_diag3d_debug PASS +Test 054 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_thompson_debug_prod -Checking test 051 fv3_ccpp_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_thompson_debug_prod +Checking test 055 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2713,12 +2985,12 @@ Checking test 051 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 051 fv3_ccpp_thompson_debug PASS +Test 055 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 052 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 056 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 @@ -2781,12 +3053,12 @@ Checking test 052 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 052 fv3_ccpp_thompson_no_aero_debug PASS +Test 056 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 053 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2849,12 +3121,12 @@ Checking test 053 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 053 fv3_ccpp_rrfs_v1beta_debug PASS +Test 057 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 058 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 @@ -2917,12 +3189,12 @@ Checking test 054 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 054 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -2935,12 +3207,12 @@ Checking test 055 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 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_control_prod -Checking test 056 cpld_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_control_prod +Checking test 060 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2987,12 +3259,12 @@ Checking test 056 cpld_control results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 056 cpld_control PASS +Test 060 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_2threads_prod -Checking test 057 cpld_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_2threads_prod +Checking test 061 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3039,12 +3311,12 @@ Checking test 057 cpld_2threads results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 057 cpld_2threads PASS +Test 061 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_decomp_prod -Checking test 058 cpld_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_decomp_prod +Checking test 062 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3091,12 +3363,12 @@ Checking test 058 cpld_decomp results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 058 cpld_decomp PASS +Test 062 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_satmedmf_prod -Checking test 059 cpld_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_satmedmf_prod +Checking test 063 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3143,12 +3415,12 @@ Checking test 059 cpld_satmedmf results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 059 cpld_satmedmf PASS +Test 063 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_ca_prod -Checking test 060 cpld_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_ca_prod +Checking test 064 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3195,12 +3467,12 @@ Checking test 060 cpld_ca results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 060 cpld_ca PASS +Test 064 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_control_mx025_prod -Checking test 061 cpld_control_mx025 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_control_mx025_prod +Checking test 065 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3250,12 +3522,12 @@ Checking test 061 cpld_control_mx025 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 061 cpld_control_mx025 PASS +Test 065 cpld_control_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_control_mx025_12h_prod -Checking test 062 cpld_control_mx025_12h results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_mx025_12h_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_control_mx025_12h_prod +Checking test 066 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -3305,12 +3577,12 @@ Checking test 062 cpld_control_mx025_12h results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-03-43200.nc .........OK -Test 062 cpld_control_mx025_12h PASS +Test 066 cpld_control_mx025_12h PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_restart_mx025_prod -Checking test 063 cpld_restart_mx025 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_restart_mx025_prod +Checking test 067 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3360,12 +3632,12 @@ Checking test 063 cpld_restart_mx025 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 063 cpld_restart_mx025 PASS +Test 067 cpld_restart_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_control_c192_prod -Checking test 064 cpld_control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_control_c192_prod +Checking test 068 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3412,12 +3684,12 @@ Checking test 064 cpld_control_c192 results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 064 cpld_control_c192 PASS +Test 068 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_control_c384_prod -Checking test 065 cpld_control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_control_c384_prod +Checking test 069 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3467,12 +3739,12 @@ Checking test 065 cpld_control_c384 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 065 cpld_control_c384 PASS +Test 069 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_controlfrac_c384_prod -Checking test 066 cpld_controlfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_controlfrac_c384_prod +Checking test 070 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3522,12 +3794,12 @@ Checking test 066 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 066 cpld_controlfrac_c384 PASS +Test 070 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_bmark_prod -Checking test 067 cpld_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_bmark_prod +Checking test 071 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3577,12 +3849,12 @@ Checking test 067 cpld_bmark results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 067 cpld_bmark PASS +Test 071 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_bmark_wave_prod -Checking test 068 cpld_bmark_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_bmark_wave_prod +Checking test 072 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3635,12 +3907,12 @@ Checking test 068 cpld_bmark_wave results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 068 cpld_bmark_wave PASS +Test 072 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/cpld_debug_prod -Checking test 069 cpld_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_debug_prod +Checking test 073 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -3687,51 +3959,51 @@ Checking test 069 cpld_debug results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK -Test 069 cpld_debug PASS +Test 073 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/datm_control_cfsr_prod -Checking test 070 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/datm_control_cfsr_prod +Checking test 074 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 070 datm_control_cfsr PASS +Test 074 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/datm_control_gefs_prod -Checking test 071 datm_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/datm_control_gefs_prod +Checking test 075 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 071 datm_control_gefs PASS +Test 075 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/datm_mx025_cfsr_prod -Checking test 072 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/datm_mx025_cfsr_prod +Checking test 076 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 072 datm_mx025_cfsr PASS +Test 076 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_349965/datm_mx025_gefs_prod -Checking test 073 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/datm_mx025_gefs_prod +Checking test 077 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 073 datm_mx025_gefs PASS +Test 077 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 6 11:54:46 CST 2020 -Elapsed time: 00h:53m:48s. Have a nice day! +Thu Nov 12 17:48:19 CST 2020 +Elapsed time: 01h:03m:08s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index eda5ea99ba..e9b418b238 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Fri Nov 6 17:12:05 UTC 2020 +Thu Nov 12 21:01:25 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/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-20201106/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/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-20201106/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/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-20201106/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/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-20201106/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/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-20201106/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/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-20201106/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/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-20201106/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -840,8 +840,8 @@ Checking test 014 fv3_ccpp_multigases results .... Test 014 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -908,8 +908,8 @@ Checking test 015 fv3_ccpp_control_32bit results .... Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -964,8 +964,8 @@ Checking test 016 fv3_ccpp_stretched results .... Test 016 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1031,8 +1031,8 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1042,8 +1042,8 @@ Checking test 018 fv3_ccpp_regional_control results .... Test 018 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1051,8 +1051,8 @@ Checking test 019 fv3_ccpp_regional_restart results .... Test 019 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1062,20 +1062,20 @@ Checking test 020 fv3_ccpp_regional_quilt results .... Test 020 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_control_debug_prod Checking test 021 fv3_ccpp_control_debug results .... Test 021 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_stretched_nest_debug_prod Checking test 022 fv3_ccpp_stretched_nest_debug results .... Test 022 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gfdlmp_prod Checking test 023 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1122,8 +1122,8 @@ Checking test 023 fv3_ccpp_gfdlmp results .... Test 023 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gfdlmprad_gwd_prod Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1170,8 +1170,8 @@ Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Test 024 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1218,8 +1218,8 @@ Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Test 025 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_csawmg_prod Checking test 026 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 026 fv3_ccpp_csawmg results .... Test 026 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_satmedmf_prod Checking test 027 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1314,8 +1314,8 @@ Checking test 027 fv3_ccpp_satmedmf results .... Test 027 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_satmedmfq_prod Checking test 028 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1362,8 +1362,8 @@ Checking test 028 fv3_ccpp_satmedmfq results .... Test 028 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gfdlmp_32bit_prod Checking test 029 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1410,8 +1410,8 @@ Checking test 029 fv3_ccpp_gfdlmp_32bit results .... Test 029 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 030 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1462,8 +1462,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_32bit_post results .... Test 030 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_cpt_prod Checking test 031 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1516,8 +1516,8 @@ Checking test 031 fv3_ccpp_cpt results .... Test 031 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gsd_prod Checking test 032 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1608,8 +1608,8 @@ Checking test 032 fv3_ccpp_gsd results .... Test 032 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_thompson_prod Checking test 033 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1676,8 +1676,8 @@ Checking test 033 fv3_ccpp_thompson results .... Test 033 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_thompson_no_aero_prod Checking test 034 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1744,8 +1744,8 @@ Checking test 034 fv3_ccpp_thompson_no_aero results .... Test 034 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_rrfs_v1beta_prod Checking test 035 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1812,8 +1812,8 @@ Checking test 035 fv3_ccpp_rrfs_v1beta results .... Test 035 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gfsv16_csawmg_prod Checking test 036 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1860,8 +1860,8 @@ Checking test 036 fv3_ccpp_gfsv16_csawmg results .... Test 036 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gfsv16_csawmgt_prod Checking test 037 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1908,8 +1908,8 @@ Checking test 037 fv3_ccpp_gfsv16_csawmgt results .... Test 037 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gocart_clm_prod Checking test 038 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1956,8 +1956,8 @@ Checking test 038 fv3_ccpp_gocart_clm results .... Test 038 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gfs_v16beta_flake_prod Checking test 039 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2024,8 +2024,8 @@ Checking test 039 fv3_ccpp_gfs_v16beta_flake results .... Test 039 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 040 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2092,8 +2092,8 @@ Checking test 040 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 040 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 041 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2110,8 +2110,8 @@ Checking test 041 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 041 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gsd_debug_prod Checking test 042 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2178,8 +2178,8 @@ Checking test 042 fv3_ccpp_gsd_debug results .... Test 042 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gsd_diag3d_debug_prod Checking test 043 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2246,8 +2246,8 @@ Checking test 043 fv3_ccpp_gsd_diag3d_debug results .... Test 043 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_thompson_debug_prod Checking test 044 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2314,8 +2314,8 @@ Checking test 044 fv3_ccpp_thompson_debug results .... Test 044 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_thompson_no_aero_debug_prod Checking test 045 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2382,8 +2382,8 @@ Checking test 045 fv3_ccpp_thompson_no_aero_debug results .... Test 045 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 046 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2450,8 +2450,8 @@ Checking test 046 fv3_ccpp_rrfs_v1beta_debug results .... Test 046 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2518,8 +2518,8 @@ Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_9428/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2537,5 +2537,5 @@ Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 6 17:46:41 UTC 2020 -Elapsed time: 00h:34m:37s. Have a nice day! +Thu Nov 12 21:49:46 UTC 2020 +Elapsed time: 00h:48m:23s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index ab4695f95a..02db44a539 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Sat Nov 7 12:44:50 UTC 2020 +Thu Nov 12 21:25:12 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/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-20201106/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/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-20201106/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/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-20201106/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/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-20201106/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/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-20201106/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/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-20201106/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/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-20201106/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,8 +815,8 @@ Checking test 014 fv3_ccpp_gfdlmprad results .... Test 014 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -864,8 +864,8 @@ Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Test 015 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1062,8 +1062,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1129,8 +1129,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1140,8 +1140,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1149,8 +1149,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1160,8 +1160,8 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_regional_c768_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_regional_c768_prod Checking test 023 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1171,20 +1171,20 @@ Checking test 023 fv3_ccpp_regional_c768 results .... Test 023 fv3_ccpp_regional_c768 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1231,8 +1231,8 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,8 +1279,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1327,8 +1327,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,8 +1375,8 @@ Checking test 029 fv3_ccpp_csawmg results .... Test 029 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1423,8 +1423,8 @@ Checking test 030 fv3_ccpp_satmedmf results .... Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1471,8 +1471,8 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1519,8 +1519,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1571,8 +1571,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1625,8 +1625,8 @@ Checking test 034 fv3_ccpp_cpt results .... Test 034 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1717,8 +1717,8 @@ Checking test 035 fv3_ccpp_gsd results .... Test 035 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1785,8 +1785,8 @@ Checking test 036 fv3_ccpp_thompson results .... Test 036 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1853,8 +1853,8 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1921,8 +1921,8 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfsv16_csawmg_prod Checking test 039 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1969,8 +1969,8 @@ Checking test 039 fv3_ccpp_gfsv16_csawmg results .... Test 039 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfsv16_csawmgt_prod Checking test 040 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2017,8 +2017,8 @@ Checking test 040 fv3_ccpp_gfsv16_csawmgt results .... Test 040 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gocart_clm_prod Checking test 041 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2065,8 +2065,8 @@ Checking test 041 fv3_ccpp_gocart_clm results .... Test 041 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfs_v16beta_flake_prod Checking test 042 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2133,8 +2133,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_flake results .... Test 042 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 043 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2201,8 +2201,8 @@ Checking test 043 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 043 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2219,8 +2219,8 @@ Checking test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gsd_debug_prod Checking test 045 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2287,8 +2287,8 @@ Checking test 045 fv3_ccpp_gsd_debug results .... Test 045 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gsd_diag3d_debug_prod Checking test 046 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2355,8 +2355,8 @@ Checking test 046 fv3_ccpp_gsd_diag3d_debug results .... Test 046 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_thompson_debug_prod Checking test 047 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2423,8 +2423,8 @@ Checking test 047 fv3_ccpp_thompson_debug results .... Test 047 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_thompson_no_aero_debug_prod Checking test 048 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2491,8 +2491,8 @@ Checking test 048 fv3_ccpp_thompson_no_aero_debug results .... Test 048 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 049 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2559,8 +2559,8 @@ Checking test 049 fv3_ccpp_rrfs_v1beta_debug results .... Test 049 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2627,8 +2627,8 @@ Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2645,8 +2645,8 @@ Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_control_prod Checking test 052 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2697,8 +2697,8 @@ Checking test 052 cpld_control results .... Test 052 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_2threads_prod Checking test 053 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2749,8 +2749,8 @@ Checking test 053 cpld_2threads results .... Test 053 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_decomp_prod Checking test 054 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2801,8 +2801,8 @@ Checking test 054 cpld_decomp results .... Test 054 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_satmedmf_prod Checking test 055 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2853,8 +2853,8 @@ Checking test 055 cpld_satmedmf results .... Test 055 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_ca_prod Checking test 056 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2905,8 +2905,8 @@ Checking test 056 cpld_ca results .... Test 056 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_control_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_control_mx025_prod Checking test 057 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2960,8 +2960,8 @@ Checking test 057 cpld_control_mx025 results .... Test 057 cpld_control_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_control_mx025_12h_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_control_mx025_12h_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_control_mx025_12h_prod Checking test 058 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3015,8 +3015,8 @@ Checking test 058 cpld_control_mx025_12h results .... Test 058 cpld_control_mx025_12h PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_restart_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_restart_mx025_prod Checking test 059 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3070,8 +3070,8 @@ Checking test 059 cpld_restart_mx025 results .... Test 059 cpld_restart_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_control_c192_prod Checking test 060 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3122,8 +3122,8 @@ Checking test 060 cpld_control_c192 results .... Test 060 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_control_c384_prod Checking test 061 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3177,8 +3177,8 @@ Checking test 061 cpld_control_c384 results .... Test 061 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_controlfrac_c384_prod Checking test 062 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3232,8 +3232,8 @@ Checking test 062 cpld_controlfrac_c384 results .... Test 062 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_bmark_prod Checking test 063 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3287,8 +3287,8 @@ Checking test 063 cpld_bmark results .... Test 063 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_bmark_wave_prod Checking test 064 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3345,8 +3345,8 @@ Checking test 064 cpld_bmark_wave results .... Test 064 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201106/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_194140/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_debug_prod Checking test 065 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3398,5 +3398,5 @@ Test 065 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sat Nov 7 16:36:14 UTC 2020 -Elapsed time: 03h:51m:27s. Have a nice day! +Thu Nov 12 23:59:16 UTC 2020 +Elapsed time: 02h:34m:09s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 0d12ee1d1c..cc2342367e 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -222,8 +222,7 @@ export NA_INIT=1 # Radiation export DO_RRTMGP=.F. export ICLOUD=0 -export IOVR_LW=1 -export IOVR_SW=1 +export IOVR=1 # Microphysics export IMP_PHYSICS=11 diff --git a/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN b/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN index bc211e8107..757a73c218 100644 --- a/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN +++ b/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN @@ -40,7 +40,7 @@ cp @[RTPWD]/FV3_input_data_hafs/VEGPARM.TBL . if [ $IMP_PHYSICS = 8 ]; then cp @[RTPWD]/FV3_input_data_gsd/diag_table_gsd_noah diag_table elif [ $IMP_PHYSICS = 15 ]; then - if [ $IOVR_LW = 4 ] && [ $IOVR_SW = 4 ]; then + if [ $IOVR = 4 ]; then cp @[RTPWD]/FV3_input_data_hafs/diag_table_FA_HWRF diag_table else cp @[RTPWD]/FV3_input_data_hafs/diag_table_FA diag_table diff --git a/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN b/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN index eab1e886a1..0ca83a23c9 100644 --- a/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN +++ b/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN @@ -12,7 +12,7 @@ fi if [ $IMP_PHYSICS = 8 ]; then ln -sf diag_table.thompson diag_table elif [ $IMP_PHYSICS = 15 ]; then - if [ $IOVR_LW = 4 ] && [ $IOVR_SW = 4 ]; then + if [ $IOVR = 4 ]; then cp @[RTPWD]/FV3_input_data_hafs/diag_table_FA_HWRF diag_table else cp @[RTPWD]/FV3_input_data_hafs/diag_table_FA diag_table diff --git a/tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN b/tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN index ca3566258c..cca4a292d8 100644 --- a/tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN +++ b/tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN @@ -132,8 +132,7 @@ ltaerosol = @[LTAEROSOL] ! HWRF Thompson effr_in = @[EFFR_IN] ! HWRF Thompson icloud = 3 ! HWRF RRTMG - iovr_lw = 4 ! HWRF RRTMG - iovr_sw = 4 ! HWRF RRTMG + iovr = 4 ! HWRF RRTMG hwrf_samfdeep = .true. ! HWRF SASdeep hwrf_samfshal = .true. ! HWRF SASshal asolfac_deep = 0.89 ! HWRF SASdeep; GFS SAS:0.958 diff --git a/tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN b/tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN index 1d92ac0df7..998ee93401 100644 --- a/tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN +++ b/tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN @@ -141,8 +141,7 @@ ltaerosol = @[LTAEROSOL] ! HWRF Thompson effr_in = @[EFFR_IN] ! HWRF Thompson icloud = 3 ! HWRF RRTMG - iovr_lw = 4 ! HWRF RRTMG - iovr_sw = 4 ! HWRF RRTMG + iovr = 4 ! HWRF RRTMG hwrf_samfdeep = .true. ! HWRF SASdeep hwrf_samfshal = .true. ! HWRF SASshal asolfac_deep = 0.89 ! HWRF SASdeep; GFS SAS:0.958 diff --git a/tests/parm/ccpp_v16beta_c96.nml.IN b/tests/parm/ccpp_v16beta_c96.nml.IN index ff04e352ea..2d43566b99 100644 --- a/tests/parm/ccpp_v16beta_c96.nml.IN +++ b/tests/parm/ccpp_v16beta_c96.nml.IN @@ -135,8 +135,7 @@ deflate_level=1 iems = 1 iaer = 5111 icliq_sw = 2 - iovr_lw = 3 - iovr_sw = 3 + iovr = 3 ico2 = 2 isubc_sw = 2 isubc_lw = 2 diff --git a/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN b/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN index a8fbe7fffa..3dc87afba3 100644 --- a/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN +++ b/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN @@ -135,8 +135,7 @@ deflate_level=1 iems = 1 iaer = 5111 icliq_sw = 2 - iovr_lw = 3 - iovr_sw = 3 + iovr = 3 ico2 = 2 isubc_sw = 2 isubc_lw = 2 diff --git a/tests/parm/ccpp_v16beta_flake_c96.nml.IN b/tests/parm/ccpp_v16beta_flake_c96.nml.IN index e82e448e4e..b7681eece7 100644 --- a/tests/parm/ccpp_v16beta_flake_c96.nml.IN +++ b/tests/parm/ccpp_v16beta_flake_c96.nml.IN @@ -135,8 +135,7 @@ deflate_level=1 iems = 1 iaer = 5111 icliq_sw = 2 - iovr_lw = 3 - iovr_sw = 3 + iovr = 3 ico2 = 2 isubc_sw = 2 isubc_lw = 2 diff --git a/tests/parm/input.benchmark.nml.IN b/tests/parm/input.benchmark.nml.IN index 35f91985b5..4ccd06337b 100644 --- a/tests/parm/input.benchmark.nml.IN +++ b/tests/parm/input.benchmark.nml.IN @@ -151,8 +151,7 @@ iems = 1 iaer = 111 icliq_sw = 1 - iovr_lw = 1 - iovr_sw = 1 + iovr = 1 ico2 = 2 isubc_sw = 2 isubc_lw = 2 diff --git a/tests/parm/input.benchmark_ccpp.nml.IN b/tests/parm/input.benchmark_ccpp.nml.IN index 07ea5dd084..5507810b77 100644 --- a/tests/parm/input.benchmark_ccpp.nml.IN +++ b/tests/parm/input.benchmark_ccpp.nml.IN @@ -154,8 +154,7 @@ iems = 1 iaer = 111 icliq_sw = 1 - iovr_lw = 1 - iovr_sw = 1 + iovr = 1 ico2 = 2 isubc_sw = 2 isubc_lw = 2 diff --git a/tests/parm/v16beta_c96.nml.IN b/tests/parm/v16beta_c96.nml.IN index 940de0196c..3462ffc509 100644 --- a/tests/parm/v16beta_c96.nml.IN +++ b/tests/parm/v16beta_c96.nml.IN @@ -134,8 +134,7 @@ deflate_level=1 iems = 1 iaer = 5111 icliq_sw = 2 - iovr_lw = 3 - iovr_sw = 3 + iovr = 3 ico2 = 2 isubc_sw = 2 isubc_lw = 2 diff --git a/tests/rt.conf b/tests/rt.conf index 7a4c086a69..aadef86148 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -114,12 +114,12 @@ RUN | fv3_ccpp_gfs_v15p2 RUN | fv3_ccpp_gfs_v16beta | standard | hera.intel | fv3 | RUN | fv3_ccpp_gfs_v16beta | standard | orion.intel | fv3 | RUN | fv3_ccpp_gfs_v16beta | standard | cheyenne.intel | fv3 | -#RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | hera.intel | fv3 | -#RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | orion.intel | fv3 | -#RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | cheyenne.intel | fv3 | -#RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | hera.intel | fv3 | -#RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | orion.intel | fv3 | -#RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | cheyenne.intel | fv3 | COMPILE | CCPP=Y SUITES=FV3_GFS_v16_csawmg | standard | | fv3 | # fv3_ccpp_gfsv16_csawmg and fv3_ccpp_gfsv16_csawmgt crash with a "bus error" on cheyenne.intel, turn off @@ -155,12 +155,12 @@ RUN | fv3_ccpp_gfs_v15p2_debug RUN | fv3_ccpp_gfs_v16beta_debug | standard | hera.intel | fv3 | RUN | fv3_ccpp_gfs_v16beta_debug | standard | orion.intel | fv3 | RUN | fv3_ccpp_gfs_v16beta_debug | standard | cheyenne.intel | fv3 | -#RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | hera.intel | fv3 | -#RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | orion.intel | fv3 | -#RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | cheyenne.intel | fv3 | -#RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | hera.intel | fv3 | -#RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | orion.intel | fv3 | -#RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | cheyenne.intel | fv3 | COMPILE | CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | standard | | fv3 | RUN | fv3_ccpp_gsd_debug | standard | | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index a9aa9aba55..ecd4d59876 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -400,9 +400,9 @@ if [[ $SINGLE_NAME != '' ]]; then fi if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = jet.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201106/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201110/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201106} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201110} fi shift $((OPTIND-1)) diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 6b9821b4fa..0787803fc2 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -10,8 +10,8 @@ COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v16beta_flake,FV3_ RUN | fv3_ccpp_gfs_v15p2 | standard | | fv3 | RUN | fv3_ccpp_gfs_v16beta | 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_RRTMGP | standard | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | | fv3 | COMPILE | CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y | standard | | fv3 | @@ -36,8 +36,8 @@ RUN | fv3_ccpp_control_debug COMPILE | CCPP=Y 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 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | | fv3 | COMPILE | CCPP=Y SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | standard | | fv3 | RUN | fv3_ccpp_multigases | standard | | fv3 | diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf b/tests/tests/fv3_ccpp_HAFS_v0_hwrf index ffe2d277ba..f5f98bf782 100644 --- a/tests/tests/fv3_ccpp_HAFS_v0_hwrf +++ b/tests/tests/fv3_ccpp_HAFS_v0_hwrf @@ -96,8 +96,7 @@ export MONINQFAC=-1.0 #HWRF options for RRTMG export ICLOUD=3 -export IOVR_LW=4 -export IOVR_SW=4 +export IOVR=4 #HWRF NOAH LSM export LSM=4 diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug index 339705c9af..07bb1e7332 100644 --- a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug +++ b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug @@ -99,8 +99,7 @@ export MONINQFAC=-1.0 #HWRF options for RRTMG export ICLOUD=3 -export IOVR_LW=4 -export IOVR_SW=4 +export IOVR=4 #HWRF NOAH LSM export LSM=4 diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson index 671f8f159b..de913c0c93 100644 --- a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson +++ b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson @@ -98,8 +98,7 @@ export MONINQFAC=-1.0 #HWRF options for RRTMG export ICLOUD=3 -export IOVR_LW=4 -export IOVR_SW=4 +export IOVR=4 #HWRF NOAH LSM export LSM=4 diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug index bd2541f251..72ea02ed14 100644 --- a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug +++ b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug @@ -101,8 +101,7 @@ export MONINQFAC=-1.0 #HWRF options for RRTMG export ICLOUD=3 -export IOVR_LW=4 -export IOVR_SW=4 +export IOVR=4 #HWRF NOAH LSM export LSM=4 diff --git a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson b/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson index 270eb38a87..0ddd652f0c 100644 --- a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson +++ b/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson @@ -52,8 +52,7 @@ export MONINQFAC=-1.0 #HWRF options for RRTMG export ICLOUD=3 -export IOVR_LW=4 -export IOVR_SW=4 +export IOVR=4 #HWRF NOAH LSM export LSM=4 diff --git a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug b/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug index 314956485f..8e00080af9 100644 --- a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug +++ b/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug @@ -52,8 +52,7 @@ export MONINQFAC=-1.0 #HWRF options for RRTMG export ICLOUD=3 -export IOVR_LW=4 -export IOVR_SW=4 +export IOVR=4 #HWRF NOAH LSM export LSM=4 diff --git a/tests/tests/fv3_ccpp_gocart_clm b/tests/tests/fv3_ccpp_gocart_clm index 632695b844..85a88e8ffa 100644 --- a/tests/tests/fv3_ccpp_gocart_clm +++ b/tests/tests/fv3_ccpp_gocart_clm @@ -68,3 +68,8 @@ export CCPP_SUITE=FV3_GFS_2017_gfdlmp export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp.gocart.nml.IN +# Increase the number of nodes on Cheyenne to avoid out of memory errors +if [[ $MACHINE_ID = cheyenne.* ]]; then + # Use 30 instead of 36 tasks per node + export TPN=30 +fi From b771e5be7e35eaea5ee7f762d644afccab019ed3 Mon Sep 17 00:00:00 2001 From: Jun Wang <37633869+junwang-noaa@users.noreply.github.com> Date: Tue, 17 Nov 2020 16:52:48 -0500 Subject: [PATCH 027/109] Bring GFS.v16 features back to develop branch (#274) * bring GFS.v16 code changes back to develop branch * update upp lib in hera module * use test hpc stack lib * update upp lib in fv3 for cmake * update post control files * update upp lib in hpcstack on hera, orion and dell and in nceplibs on cray * add change in fv3 dycore #35 * remove duplicate read_data in fms_mod in external_ic.F90 Co-authored-by: Jun Wang Co-authored-by: Dom Heinzeller --- CMakeLists.txt | 2 +- FV3 | 2 +- modulefiles/cheyenne.gnu/fv3 | 77 +-- modulefiles/cheyenne.intel/fv3 | 77 +-- modulefiles/hera.gnu/fv3 | 10 +- modulefiles/hera.intel/fv3 | 6 +- modulefiles/hera.intel/fv3_debug | 6 +- modulefiles/orion.intel/fv3 | 6 +- modulefiles/orion.intel/fv3_debug | 6 +- modulefiles/wcoss_cray/fv3 | 3 +- modulefiles/wcoss_dell_p3/fv3 | 6 +- modulefiles/wcoss_dell_p3/fv3_debug | 6 +- tests/RegressionTests_cheyenne.gnu.log | 86 +-- tests/RegressionTests_cheyenne.intel.log | 222 +++---- tests/RegressionTests_hera.gnu.log | 86 +-- tests/RegressionTests_hera.intel.log | 334 +++++----- tests/RegressionTests_orion.intel.log | 316 ++++----- tests/RegressionTests_wcoss_cray.log | 198 +++--- tests/RegressionTests_wcoss_dell_p3.log | 266 ++++---- tests/parm/params_grib2_tbl_new | 6 + tests/parm/postxconfig-NT.txt | 798 ++++++++++++++++------- tests/parm/postxconfig-NT_FH00.txt | 520 +++++++++++---- tests/rt.sh | 4 +- 23 files changed, 1806 insertions(+), 1237 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 406e58155c..a00e1472cf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -103,7 +103,7 @@ find_package(sp REQUIRED) find_package(w3emc REQUIRED) find_package(w3nco REQUIRED) if(INLINE_POST) - find_package(nceppost REQUIRED) + find_package(upp REQUIRED) endif() # See https://github.com/NOAA-EMC/NCEPLIBS-nemsio/pull/22 diff --git a/FV3 b/FV3 index 3bd96653e4..4fdf7c6f1d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 3bd96653e45e7f1d14d47bcd07135adf091a0210 +Subproject commit 4fdf7c6f1dfbb57ad46c33d4469356a45daca7eb diff --git a/modulefiles/cheyenne.gnu/fv3 b/modulefiles/cheyenne.gnu/fv3 index 588ceaefa9..8e537f777f 100644 --- a/modulefiles/cheyenne.gnu/fv3 +++ b/modulefiles/cheyenne.gnu/fv3 @@ -1,60 +1,45 @@ -#%Module###################################################################### -## -## NEMS FV3 Prerequisites: Cheyenne/GNU +#%Module proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running FV3 under NEMS on Cheyenne/GNU" + puts stderr "\tcit - loads modules required for building and running UFS Model on Cheyenne/GNU" } -module-whatis "loads NEMS FV3 prerequisites for Cheyenne/GNU" +module-whatis "loads UFS Model prerequisites for Cheyenne/GNU" -# NOTE: the "module purge" and loading of the module command are -# handled by the module-setup.sh (or .csh) script. +module load cmake/3.16.4 +setenv CMAKE_C_COMPILER mpicc +setenv CMAKE_CXX_COMPILER mpicxx +setenv CMAKE_Fortran_COMPILER mpif90 +setenv CMAKE_Platform cheyenne.gnu -## -## load programming environment -## this typically includes compiler, MPI and job scheduler -## +# load programming environment module load ncarenv/1.3 module load gnu/9.1.0 -module load mpt/2.19 +module load mpt/2.22 module load ncarcompilers/0.5.0 +module unload netcdf + +module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-nco-20201113/modulefiles/stack +module load hpc/1.0.0-beta1 +module load hpc-gnu/9.1.0 +module load hpc-mpt/2.22 -## -## use pre-compiled PNG, NetCDF, ESMF and NCEP libraries for above compiler / MPI combination -## -module use -a /glade/p/ral/jntp/GMTB/tools/ufs-stack-20200909/gnu-9.1.0/mpt-2.19/modules +module load jasper/2.0.22 +module load zlib/1.2.11 +module load png/1.6.35 -module load libpng/1.6.35 +module load hdf5/1.10.6 module load netcdf/4.7.4 -module load esmf/8.1.0bs27 +module load pio/2.5.1 +module load esmf/8_1_0_beta_snapshot_27 -module load bacio/2.4.0 +module load bacio/2.4.1 module load crtm/2.3.0 -module load g2/3.4.0 -module load g2tmpl/1.9.0 -module load ip/3.3.0 -module load nceppost/dceca26 -module load nemsio/2.5.1 -module load sp/2.3.0 -module load w3emc/2.7.0 -module load w3nco/2.4.0 - -module load gfsio/1.4.0 -module load sfcio/1.4.0 -module load sigio/2.3.0 - -## -## SIONlib library -## -module use -a /glade/p/ral/jntp/GMTB/tools/modulefiles/gnu-9.1.0/mpt-2.19 -module load SIONlib/1.7.4 - -## -## load cmake -## -module load cmake/3.16.4 -setenv CMAKE_C_COMPILER mpicc -setenv CMAKE_CXX_COMPILER mpicxx -setenv CMAKE_Fortran_COMPILER mpif90 -setenv CMAKE_Platform cheyenne.gnu +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/modulefiles/cheyenne.intel/fv3 b/modulefiles/cheyenne.intel/fv3 index 71b7ce44f1..0f93963426 100644 --- a/modulefiles/cheyenne.intel/fv3 +++ b/modulefiles/cheyenne.intel/fv3 @@ -1,60 +1,45 @@ -#%Module###################################################################### -## -## NEMS FV3 Prerequisites: Cheyenne/Intel +#%Module proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running FV3 under NEMS on Cheyenne/Intel" + puts stderr "\tcit - loads modules required for building and running UFS Model on Cheyenne/Intel" } -module-whatis "loads NEMS FV3 prerequisites for Cheyenne/Intel" +module-whatis "loads UFS Model prerequisites for Cheyenne/Intel" -# NOTE: the "module purge" and loading of the module command are -# handled by the module-setup.sh (or .csh) script. +module load cmake/3.16.4 +setenv CMAKE_C_COMPILER mpicc +setenv CMAKE_CXX_COMPILER mpicxx +setenv CMAKE_Fortran_COMPILER mpif90 +setenv CMAKE_Platform cheyenne.intel -## -## load programming environment -## this typically includes compiler, MPI and job scheduler -## +# load programming environment module load ncarenv/1.3 module load intel/19.1.1 -module load mpt/2.19 +module load mpt/2.22 module load ncarcompilers/0.5.0 +module unload netcdf + +module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-nco-20201113/modulefiles/stack +module load hpc/1.0.0-beta1 +module load hpc-intel/19.1.1 +module load hpc-mpt/2.22 -## -## use pre-compiled PNG, NetCDF, ESMF and NCEP libraries for above compiler / MPI combination -## -module use -a /glade/p/ral/jntp/GMTB/tools/ufs-stack-20200909/intel-19.1.1/mpt-2.19/modules +module load jasper/2.0.22 +module load zlib/1.2.11 +module load png/1.6.35 -module load libpng/1.6.35 +module load hdf5/1.10.6 module load netcdf/4.7.4 -module load esmf/8.1.0bs27 +module load pio/2.5.1 +module load esmf/8_1_0_beta_snapshot_27 -module load bacio/2.4.0 +module load bacio/2.4.1 module load crtm/2.3.0 -module load g2/3.4.0 -module load g2tmpl/1.9.0 -module load ip/3.3.0 -module load nceppost/dceca26 -module load nemsio/2.5.1 -module load sp/2.3.0 -module load w3emc/2.7.0 -module load w3nco/2.4.0 - -module load gfsio/1.4.0 -module load sfcio/1.4.0 -module load sigio/2.3.0 - -## -## SIONlib library -## -module use -a /glade/p/ral/jntp/GMTB/tools/modulefiles/intel-19.1.1/mpt-2.19 -module load SIONlib/1.7.4 - -## -## load cmake -## -module load cmake/3.16.4 -setenv CMAKE_C_COMPILER mpicc -setenv CMAKE_CXX_COMPILER mpicxx -setenv CMAKE_Fortran_COMPILER mpif90 -setenv CMAKE_Platform cheyenne.intel +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/modulefiles/hera.gnu/fv3 b/modulefiles/hera.gnu/fv3 index 3cea5e910c..ec83aac5b6 100644 --- a/modulefiles/hera.gnu/fv3 +++ b/modulefiles/hera.gnu/fv3 @@ -15,13 +15,13 @@ setenv CMAKE_CXX_COMPILER mpicxx setenv CMAKE_Fortran_COMPILER mpif90 setenv CMAKE_Platform hera.gnu -module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/v1.0.0-beta1/modulefiles/stack - +module use /scratch2/NCEPDEV/nwprod/hpc-stack/test/modulefiles/stack module load hpc/1.0.0-beta1 module load hpc-gnu/9.2.0 -module load hpc-mpich/3.3.2 +module load hpc-mpich/3.3.2 +module load mpich/3.3.2 -module load jasper/2.0.15 +module load jasper/2.0.22 module load zlib/1.2.11 module load png/1.6.35 @@ -35,8 +35,8 @@ 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 nceppost/dceca26 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/modulefiles/hera.intel/fv3 b/modulefiles/hera.intel/fv3 index efc66b74ee..5f72ffe067 100644 --- a/modulefiles/hera.intel/fv3 +++ b/modulefiles/hera.intel/fv3 @@ -15,13 +15,13 @@ setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform hera.intel -module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/v1.0.0-beta1/modulefiles/stack +module use /scratch2/NCEPDEV/nwprod/hpc-stack/test/modulefiles/stack module load hpc/1.0.0-beta1 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 -module load jasper/2.0.15 +module load jasper/2.0.22 module load zlib/1.2.11 module load png/1.6.35 @@ -35,8 +35,8 @@ 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 nceppost/dceca26 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/modulefiles/hera.intel/fv3_debug b/modulefiles/hera.intel/fv3_debug index f099c10474..e6d2ddbd3f 100644 --- a/modulefiles/hera.intel/fv3_debug +++ b/modulefiles/hera.intel/fv3_debug @@ -15,13 +15,13 @@ setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform hera.intel -module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/v1.0.0-beta1/modulefiles/stack +module use /scratch2/NCEPDEV/nwprod/hpc-stack/test/modulefiles/stack module load hpc/1.0.0-beta1 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 -module load jasper/2.0.15 +module load jasper/2.0.22 module load zlib/1.2.11 module load png/1.6.35 @@ -35,8 +35,8 @@ 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 nceppost/dceca26 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/modulefiles/orion.intel/fv3 b/modulefiles/orion.intel/fv3 index 47245c13b0..2ea5d565cf 100644 --- a/modulefiles/orion.intel/fv3 +++ b/modulefiles/orion.intel/fv3 @@ -14,13 +14,13 @@ setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform orion.intel -module use /apps/contrib/NCEP/libs/hpc-stack/v1.0.0-beta1/modulefiles/stack +module use /apps/contrib/NCEP/test/hpc-stack-nco/modulefiles/stack module load hpc/1.0.0-beta1 module load hpc-intel/2018.4 module load hpc-impi/2018.4 -module load jasper/2.0.15 +module load jasper/2.0.22 module load zlib/1.2.11 module load png/1.6.35 @@ -34,8 +34,8 @@ 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 nceppost/dceca26 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/modulefiles/orion.intel/fv3_debug b/modulefiles/orion.intel/fv3_debug index b651ca8af7..a95f7b2cf8 100644 --- a/modulefiles/orion.intel/fv3_debug +++ b/modulefiles/orion.intel/fv3_debug @@ -14,13 +14,13 @@ setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform orion.intel -module use /apps/contrib/NCEP/libs/hpc-stack/v1.0.0-beta1/modulefiles/stack +module use /apps/contrib/NCEP/test/hpc-stack-nco/modulefiles/stack module load hpc/1.0.0-beta1 module load hpc-intel/2018.4 module load hpc-impi/2018.4 -module load jasper/2.0.15 +module load jasper/2.0.22 module load zlib/1.2.11 module load png/1.6.35 @@ -34,8 +34,8 @@ 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 nceppost/dceca26 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/modulefiles/wcoss_cray/fv3 b/modulefiles/wcoss_cray/fv3 index 593178e8f1..fcc74636d9 100644 --- a/modulefiles/wcoss_cray/fv3 +++ b/modulefiles/wcoss_cray/fv3 @@ -44,7 +44,6 @@ module load crtm/2.3.0 module load g2/3.4.0 module load g2tmpl/1.9.0 module load ip/3.3.0 -module load nceppost/dceca26 module load nemsio/2.5.1 module load sp/2.3.0 module load w3emc/2.7.0 @@ -54,6 +53,8 @@ module load gfsio/1.4.0 module load sfcio/1.4.0 module load sigio/2.3.0 +module use /usrx/local/nceplibs/NCEPLIBS/cmake/install/NCEPLIBS_UFS/modules +module load upp/10.0.0 ## WCOSS Cray execution prereqs: module load rca diff --git a/modulefiles/wcoss_dell_p3/fv3 b/modulefiles/wcoss_dell_p3/fv3 index cf0f0ef05d..777e3e23d8 100644 --- a/modulefiles/wcoss_dell_p3/fv3 +++ b/modulefiles/wcoss_dell_p3/fv3 @@ -18,13 +18,13 @@ setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform wcoss_dell_p3 -module use /usrx/local/nceplibs/dev/hpc-stack/libs/hpc-stack/v1.0.0-beta1/modulefiles/stack +module use /usrx/local/nceplibs/dev/hpc-stack/test/hpc-stack/modulefiles/stack module load hpc/1.0.0-beta1 module load hpc-ips/18.0.1.163 module load hpc-impi/18.0.1 -module load jasper/2.0.15 +module load jasper/2.0.22 module load zlib/1.2.11 module load png/1.6.35 @@ -38,8 +38,8 @@ 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 nceppost/dceca26 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/modulefiles/wcoss_dell_p3/fv3_debug b/modulefiles/wcoss_dell_p3/fv3_debug index bc0010d580..3a19a9349d 100644 --- a/modulefiles/wcoss_dell_p3/fv3_debug +++ b/modulefiles/wcoss_dell_p3/fv3_debug @@ -18,13 +18,13 @@ setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform wcoss_dell_p3 -module use /usrx/local/nceplibs/dev/hpc-stack/libs/hpc-stack/v1.0.0-beta1/modulefiles/stack +module use /usrx/local/nceplibs/dev/hpc-stack/test/hpc-stack/modulefiles/stack module load hpc/1.0.0-beta1 module load hpc-ips/18.0.1.163 module load hpc-impi/18.0.1 -module load jasper/2.0.15 +module load jasper/2.0.22 module load zlib/1.2.11 module load png/1.6.35 @@ -38,8 +38,8 @@ 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 nceppost/dceca26 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/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index bb38e78148..37592c10e5 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Thu Nov 12 14:23:55 MST 2020 +Sun Nov 15 20:15:30 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/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-20201110/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/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-20201110/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/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 @@ -186,8 +186,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-20201110/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -322,8 +322,8 @@ Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_gsd results .... Test 007 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -550,8 +550,8 @@ Checking test 008 fv3_ccpp_thompson results .... Test 008 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -618,8 +618,8 @@ Checking test 009 fv3_ccpp_thompson_no_aero results .... Test 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -686,8 +686,8 @@ Checking test 010 fv3_ccpp_rrfs_v1beta results .... Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -754,8 +754,8 @@ Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -772,14 +772,14 @@ Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... Test 013 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -846,8 +846,8 @@ Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Test 014 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -914,8 +914,8 @@ Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Test 015 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,8 +982,8 @@ Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1050,8 +1050,8 @@ Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,8 +1124,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1192,8 +1192,8 @@ Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_24274/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1211,5 +1211,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 12 14:41:06 MST 2020 -Elapsed time: 00h:17m:11s. Have a nice day! +Sun Nov 15 20:31:40 MST 2020 +Elapsed time: 00h:16m:10s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 1ab39e8ec1..9c594c2e40 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Thu Nov 12 15:56:16 MST 2020 +Mon Nov 16 05:25:49 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/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-20201110/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/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-20201110/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/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-20201110/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/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-20201110/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/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-20201110/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/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-20201110/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/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-20201110/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ 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-20201110/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -908,8 +908,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -976,8 +976,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1032,8 +1032,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1119,8 +1119,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1130,20 +1130,20 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_control_debug_prod Checking test 022 fv3_ccpp_control_debug results .... Test 022 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_stretched_nest_debug_prod Checking test 023 fv3_ccpp_stretched_nest_debug results .... Test 023 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfdlmp_prod Checking test 024 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1190,8 +1190,8 @@ Checking test 024 fv3_ccpp_gfdlmp results .... Test 024 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfdlmprad_gwd_prod Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1238,8 +1238,8 @@ Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Test 025 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1286,8 +1286,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Test 026 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1334,8 +1334,8 @@ Checking test 027 fv3_ccpp_csawmg results .... Test 027 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1382,8 +1382,8 @@ Checking test 028 fv3_ccpp_satmedmf results .... Test 028 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1430,8 +1430,8 @@ Checking test 029 fv3_ccpp_satmedmfq results .... Test 029 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1478,8 +1478,8 @@ Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Test 030 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,8 +1530,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1584,8 +1584,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1676,8 +1676,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1744,8 +1744,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1812,8 +1812,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1880,8 +1880,8 @@ Checking test 036 fv3_ccpp_rrfs_v1beta results .... Test 036 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfs_v15p2_prod Checking test 037 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1948,8 +1948,8 @@ Checking test 037 fv3_ccpp_gfs_v15p2 results .... Test 037 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfs_v16beta_prod Checking test 038 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2016,8 +2016,8 @@ Checking test 038 fv3_ccpp_gfs_v16beta results .... Test 038 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 039 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2084,8 +2084,8 @@ Checking test 039 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 039 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 040 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2152,8 +2152,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 040 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gocart_clm_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gocart_clm_prod Checking test 041 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2200,8 +2200,8 @@ Checking test 041 fv3_ccpp_gocart_clm results .... Test 041 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfs_v16beta_flake_prod Checking test 042 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2268,8 +2268,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_flake results .... Test 042 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 043 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2336,8 +2336,8 @@ Checking test 043 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 043 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2354,8 +2354,8 @@ Checking test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfs_v16beta_debug_prod Checking test 045 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2422,8 +2422,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_debug results .... Test 045 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2490,8 +2490,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 046 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2558,8 +2558,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 047 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gsd_debug_prod Checking test 048 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2626,8 +2626,8 @@ Checking test 048 fv3_ccpp_gsd_debug results .... Test 048 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gsd_diag3d_debug_prod Checking test 049 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2694,8 +2694,8 @@ Checking test 049 fv3_ccpp_gsd_diag3d_debug results .... Test 049 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_thompson_debug_prod Checking test 050 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2762,8 +2762,8 @@ Checking test 050 fv3_ccpp_thompson_debug results .... Test 050 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_thompson_no_aero_debug_prod Checking test 051 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2830,8 +2830,8 @@ Checking test 051 fv3_ccpp_thompson_no_aero_debug results .... Test 051 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 052 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2898,8 +2898,8 @@ Checking test 052 fv3_ccpp_rrfs_v1beta_debug results .... Test 052 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2966,8 +2966,8 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201110/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14590/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2985,5 +2985,5 @@ Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 12 16:27:53 MST 2020 -Elapsed time: 00h:31m:37s. Have a nice day! +Mon Nov 16 05:57:21 MST 2020 +Elapsed time: 00h:31m:32s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index d8607d03dd..8920c3d26a 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Fri Nov 13 02:52:01 UTC 2020 +Mon Nov 16 16:56:33 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/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-20201110/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/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-20201110/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/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 @@ -186,8 +186,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-20201110/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -322,8 +322,8 @@ Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gsd_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_gsd results .... Test 007 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_thompson_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -550,8 +550,8 @@ Checking test 008 fv3_ccpp_thompson results .... Test 008 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -618,8 +618,8 @@ Checking test 009 fv3_ccpp_thompson_no_aero results .... Test 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -686,8 +686,8 @@ Checking test 010 fv3_ccpp_rrfs_v1beta results .... Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -754,8 +754,8 @@ Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -772,14 +772,14 @@ Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... Test 013 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -846,8 +846,8 @@ Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Test 014 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -914,8 +914,8 @@ Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Test 015 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,8 +982,8 @@ Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1050,8 +1050,8 @@ Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_multigases_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,8 +1124,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1192,8 +1192,8 @@ Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_286240/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1211,5 +1211,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 13 03:24:00 UTC 2020 -Elapsed time: 00h:32m:00s. Have a nice day! +Mon Nov 16 21:33:02 UTC 2020 +Elapsed time: 04h:36m:31s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index ab4ef816b7..769bd638ab 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Fri Nov 13 05:02:55 UTC 2020 +Mon Nov 16 20:20:26 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_control_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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-20201110/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_decomp_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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-20201110/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_2threads_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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-20201110/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_restart_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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-20201110/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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-20201110/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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-20201110/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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-20201110/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_stochy_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_iau_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_ca_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_lndp_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -854,8 +854,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfdlmprad_prod Checking test 016 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -951,8 +951,8 @@ Checking test 016 fv3_ccpp_gfdlmprad results .... Test 016 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1000,8 +1000,8 @@ Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Test 017 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1049,8 +1049,8 @@ Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 018 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_multigases_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_multigases results .... Test 019 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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,8 +1191,8 @@ Checking test 020 fv3_ccpp_control_32bit results .... Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_stretched_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,8 +1247,8 @@ Checking test 021 fv3_ccpp_stretched results .... Test 021 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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,8 +1314,8 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1325,8 +1325,8 @@ Checking test 023 fv3_ccpp_regional_control results .... Test 023 fv3_ccpp_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1334,8 +1334,8 @@ Checking test 024 fv3_ccpp_regional_restart results .... Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1345,8 +1345,8 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_regional_c768_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_regional_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1356,20 +1356,20 @@ Checking test 026 fv3_ccpp_regional_c768 results .... Test 026 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_stretched_nest_debug_prod Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1416,8 +1416,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -1464,8 +1464,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -1512,8 +1512,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1560,8 +1560,8 @@ Checking test 032 fv3_ccpp_csawmg results .... Test 032 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1608,8 +1608,8 @@ Checking test 033 fv3_ccpp_satmedmf results .... Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_satmedmfq_prod Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1656,8 +1656,8 @@ Checking test 034 fv3_ccpp_satmedmfq results .... Test 034 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -1704,8 +1704,8 @@ Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Test 035 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -1756,8 +1756,8 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_cpt_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_cpt_prod Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1810,8 +1810,8 @@ Checking test 037 fv3_ccpp_cpt results .... Test 037 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gsd_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gsd_prod Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1902,8 +1902,8 @@ Checking test 038 fv3_ccpp_gsd results .... Test 038 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_rap_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_rap_prod Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1970,8 +1970,8 @@ Checking test 039 fv3_ccpp_rap results .... Test 039 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_hrrr_prod Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2038,8 +2038,8 @@ Checking test 040 fv3_ccpp_hrrr results .... Test 040 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_thompson_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_thompson_prod Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2106,8 +2106,8 @@ Checking test 041 fv3_ccpp_thompson results .... Test 041 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -2174,8 +2174,8 @@ Checking test 042 fv3_ccpp_thompson_no_aero results .... Test 042 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -2242,8 +2242,8 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... Test 043 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -2310,8 +2310,8 @@ Checking test 044 fv3_ccpp_gfs_v15p2 results .... Test 044 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -2378,8 +2378,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta results .... Test 045 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -2446,8 +2446,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -2514,8 +2514,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -2562,8 +2562,8 @@ Checking test 048 fv3_ccpp_gfsv16_csawmg results .... Test 048 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -2610,8 +2610,8 @@ Checking test 049 fv3_ccpp_gfsv16_csawmgt results .... Test 049 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -2658,8 +2658,8 @@ Checking test 050 fv3_ccpp_gocart_clm results .... Test 050 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -2726,8 +2726,8 @@ Checking test 051 fv3_ccpp_gfs_v16beta_flake results .... Test 051 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -2794,8 +2794,8 @@ Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -2812,8 +2812,8 @@ Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -2880,8 +2880,8 @@ Checking test 054 fv3_ccpp_gfs_v15p2_debug results .... Test 054 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -2948,8 +2948,8 @@ Checking test 055 fv3_ccpp_gfs_v16beta_debug results .... Test 055 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -3016,8 +3016,8 @@ Checking test 056 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 056 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -3084,8 +3084,8 @@ Checking test 057 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 057 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -3152,8 +3152,8 @@ Checking test 058 fv3_ccpp_gsd_debug results .... Test 058 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -3220,8 +3220,8 @@ Checking test 059 fv3_ccpp_gsd_diag3d_debug results .... Test 059 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -3288,8 +3288,8 @@ Checking test 060 fv3_ccpp_thompson_debug results .... Test 060 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -3356,8 +3356,8 @@ Checking test 061 fv3_ccpp_thompson_no_aero_debug results .... Test 061 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -3424,8 +3424,8 @@ Checking test 062 fv3_ccpp_rrfs_v1beta_debug results .... Test 062 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -3492,8 +3492,8 @@ Checking test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/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 @@ -3510,8 +3510,8 @@ Checking test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_control_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_control_prod Checking test 065 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3562,8 +3562,8 @@ Checking test 065 cpld_control results .... Test 065 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_2threads_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_2threads_prod Checking test 066 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3614,8 +3614,8 @@ Checking test 066 cpld_2threads results .... Test 066 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_decomp_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_decomp_prod Checking test 067 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3666,8 +3666,8 @@ Checking test 067 cpld_decomp results .... Test 067 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_satmedmf_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_satmedmf_prod Checking test 068 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3718,8 +3718,8 @@ Checking test 068 cpld_satmedmf results .... Test 068 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_ca_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_ca_prod Checking test 069 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3770,8 +3770,8 @@ Checking test 069 cpld_ca results .... Test 069 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_control_mx025_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_control_mx025_prod Checking test 070 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3825,8 +3825,8 @@ Checking test 070 cpld_control_mx025 results .... Test 070 cpld_control_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_control_mx025_12h_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_control_mx025_12h_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_control_mx025_12h_prod Checking test 071 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3880,8 +3880,8 @@ Checking test 071 cpld_control_mx025_12h results .... Test 071 cpld_control_mx025_12h PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_restart_mx025_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_restart_mx025_prod Checking test 072 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3935,8 +3935,8 @@ Checking test 072 cpld_restart_mx025 results .... Test 072 cpld_restart_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_control_c192_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_control_c192_prod Checking test 073 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3987,8 +3987,8 @@ Checking test 073 cpld_control_c192 results .... Test 073 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_control_c384_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_control_c384_prod Checking test 074 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4042,8 +4042,8 @@ Checking test 074 cpld_control_c384 results .... Test 074 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_controlfrac_c384_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_controlfrac_c384_prod Checking test 075 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4097,8 +4097,8 @@ Checking test 075 cpld_controlfrac_c384 results .... Test 075 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_bmark_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_bmark_prod Checking test 076 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4152,8 +4152,8 @@ Checking test 076 cpld_bmark results .... Test 076 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_bmark_wave_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_bmark_wave_prod Checking test 077 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4210,8 +4210,8 @@ Checking test 077 cpld_bmark_wave results .... Test 077 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/cpld_debug_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_debug_prod Checking test 078 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4262,8 +4262,8 @@ Checking test 078 cpld_debug results .... Test 078 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/datm_control_cfsr_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/datm_control_cfsr_prod Checking test 079 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4271,8 +4271,8 @@ Checking test 079 datm_control_cfsr results .... Test 079 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/datm_control_gefs_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/datm_control_gefs_prod Checking test 080 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4280,8 +4280,8 @@ Checking test 080 datm_control_gefs results .... Test 080 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/datm_mx025_cfsr_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/datm_mx025_cfsr_prod Checking test 081 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4292,8 +4292,8 @@ Checking test 081 datm_mx025_cfsr results .... Test 081 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_242618/datm_mx025_gefs_prod +baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/datm_mx025_gefs_prod Checking test 082 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4305,5 +4305,5 @@ Test 082 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 13 07:36:04 UTC 2020 -Elapsed time: 02h:33m:11s. Have a nice day! +Mon Nov 16 22:49:56 UTC 2020 +Elapsed time: 02h:29m:32s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index a8467afcbe..e2492dd11a 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Nov 12 16:45:13 CST 2020 +Sun Nov 15 21:26:39 CST 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/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-20201110/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/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-20201110/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/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-20201110/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/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-20201110/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/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-20201110/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/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-20201110/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/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-20201110/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,8 +786,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,8 +835,8 @@ Checking test 014 fv3_ccpp_gfdlmprad results .... Test 014 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Test 015 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,8 +933,8 @@ Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 016 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,8 +1007,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/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 @@ -1075,8 +1075,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,8 +1131,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/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 @@ -1198,8 +1198,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,8 +1209,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,8 +1218,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,8 +1229,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_regional_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_regional_c768_prod Checking test 024 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1240,20 +1240,20 @@ Checking test 024 fv3_ccpp_regional_c768 results .... Test 024 fv3_ccpp_regional_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1300,8 +1300,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/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 @@ -1348,8 +1348,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/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 @@ -1396,8 +1396,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1444,8 +1444,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1492,8 +1492,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1540,8 +1540,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1589,11 +1589,11 @@ 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 033 fv3_ccpp_gfdlmprad_32bit_post FAIL -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1646,8 +1646,8 @@ Checking test 034 fv3_ccpp_cpt results .... Test 034 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,8 +1738,8 @@ Checking test 035 fv3_ccpp_gsd results .... Test 035 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1806,8 +1806,8 @@ Checking test 036 fv3_ccpp_thompson results .... Test 036 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1874,8 +1874,8 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1942,8 +1942,8 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/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 @@ -2010,8 +2010,8 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/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 @@ -2078,8 +2078,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Test 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2146,8 +2146,8 @@ Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 041 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 042 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2214,8 +2214,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 042 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfsv16_csawmg_prod Checking test 043 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2262,8 +2262,8 @@ Checking test 043 fv3_ccpp_gfsv16_csawmg results .... Test 043 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfsv16_csawmgt_prod Checking test 044 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2310,8 +2310,8 @@ Checking test 044 fv3_ccpp_gfsv16_csawmgt results .... Test 044 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gocart_clm_prod Checking test 045 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2358,8 +2358,8 @@ Checking test 045 fv3_ccpp_gocart_clm results .... Test 045 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfs_v16beta_flake_prod Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2426,8 +2426,8 @@ Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... Test 046 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2494,8 +2494,8 @@ Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2512,8 +2512,8 @@ Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfs_v15p2_debug_prod Checking test 049 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2580,8 +2580,8 @@ Checking test 049 fv3_ccpp_gfs_v15p2_debug results .... Test 049 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfs_v16beta_debug_prod Checking test 050 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2648,8 +2648,8 @@ Checking test 050 fv3_ccpp_gfs_v16beta_debug results .... Test 050 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 051 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2716,8 +2716,8 @@ Checking test 051 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 051 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2784,8 +2784,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gsd_debug_prod Checking test 053 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2852,8 +2852,8 @@ Checking test 053 fv3_ccpp_gsd_debug results .... Test 053 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gsd_diag3d_debug_prod Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2920,8 +2920,8 @@ Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Test 054 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_thompson_debug_prod Checking test 055 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2988,8 +2988,8 @@ Checking test 055 fv3_ccpp_thompson_debug results .... Test 055 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_thompson_no_aero_debug_prod Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3056,8 +3056,8 @@ Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Test 056 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3124,8 +3124,8 @@ Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Test 057 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3192,8 +3192,8 @@ Checking test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3210,8 +3210,8 @@ Checking test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_control_prod Checking test 060 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3262,8 +3262,8 @@ Checking test 060 cpld_control results .... Test 060 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_2threads_prod Checking test 061 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3314,8 +3314,8 @@ Checking test 061 cpld_2threads results .... Test 061 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_decomp_prod Checking test 062 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3366,8 +3366,8 @@ Checking test 062 cpld_decomp results .... Test 062 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_satmedmf_prod Checking test 063 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3418,8 +3418,8 @@ Checking test 063 cpld_satmedmf results .... Test 063 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_ca_prod Checking test 064 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3470,8 +3470,8 @@ Checking test 064 cpld_ca results .... Test 064 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_control_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_control_mx025_prod Checking test 065 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3525,8 +3525,8 @@ Checking test 065 cpld_control_mx025 results .... Test 065 cpld_control_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_control_mx025_12h_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_control_mx025_12h_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_control_mx025_12h_prod Checking test 066 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3580,8 +3580,8 @@ Checking test 066 cpld_control_mx025_12h results .... Test 066 cpld_control_mx025_12h PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_restart_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_restart_mx025_prod Checking test 067 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3635,8 +3635,8 @@ Checking test 067 cpld_restart_mx025 results .... Test 067 cpld_restart_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_control_c192_prod Checking test 068 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3687,8 +3687,8 @@ Checking test 068 cpld_control_c192 results .... Test 068 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_control_c384_prod Checking test 069 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3742,8 +3742,8 @@ Checking test 069 cpld_control_c384 results .... Test 069 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_controlfrac_c384_prod Checking test 070 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3797,8 +3797,8 @@ Checking test 070 cpld_controlfrac_c384 results .... Test 070 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_bmark_prod Checking test 071 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3852,8 +3852,8 @@ Checking test 071 cpld_bmark results .... Test 071 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_bmark_wave_prod Checking test 072 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3910,8 +3910,8 @@ Checking test 072 cpld_bmark_wave results .... Test 072 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/cpld_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_debug_prod Checking test 073 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3962,8 +3962,8 @@ Checking test 073 cpld_debug results .... Test 073 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/datm_control_cfsr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/datm_control_cfsr_prod Checking test 074 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3971,8 +3971,8 @@ Checking test 074 datm_control_cfsr results .... Test 074 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/datm_control_gefs_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/datm_control_gefs_prod Checking test 075 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3980,8 +3980,8 @@ Checking test 075 datm_control_gefs results .... Test 075 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/datm_mx025_cfsr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/datm_mx025_cfsr_prod Checking test 076 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3992,8 +3992,8 @@ Checking test 076 datm_mx025_cfsr results .... Test 076 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_102330/datm_mx025_gefs_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/datm_mx025_gefs_prod Checking test 077 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4005,5 +4005,5 @@ Test 077 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 12 17:48:19 CST 2020 -Elapsed time: 01h:03m:08s. Have a nice day! +Mon Nov 16 16:05:34 CST 2020 +Elapsed time: 18h:38m:43s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index e9b418b238..9ccb344cf1 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Thu Nov 12 21:01:25 UTC 2020 +Sun Nov 15 21:22:45 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/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-20201110/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/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-20201110/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/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-20201110/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/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-20201110/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/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-20201110/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/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-20201110/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/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-20201110/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -840,8 +840,8 @@ Checking test 014 fv3_ccpp_multigases results .... Test 014 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -908,8 +908,8 @@ Checking test 015 fv3_ccpp_control_32bit results .... Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -964,8 +964,8 @@ Checking test 016 fv3_ccpp_stretched results .... Test 016 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1031,8 +1031,8 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1042,8 +1042,8 @@ Checking test 018 fv3_ccpp_regional_control results .... Test 018 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1051,8 +1051,8 @@ Checking test 019 fv3_ccpp_regional_restart results .... Test 019 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1062,20 +1062,20 @@ Checking test 020 fv3_ccpp_regional_quilt results .... Test 020 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_control_debug_prod Checking test 021 fv3_ccpp_control_debug results .... Test 021 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_stretched_nest_debug_prod Checking test 022 fv3_ccpp_stretched_nest_debug results .... Test 022 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gfdlmp_prod Checking test 023 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1122,8 +1122,8 @@ Checking test 023 fv3_ccpp_gfdlmp results .... Test 023 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gfdlmprad_gwd_prod Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1170,8 +1170,8 @@ Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Test 024 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1218,8 +1218,8 @@ Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Test 025 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_csawmg_prod Checking test 026 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 026 fv3_ccpp_csawmg results .... Test 026 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_satmedmf_prod Checking test 027 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1314,8 +1314,8 @@ Checking test 027 fv3_ccpp_satmedmf results .... Test 027 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_satmedmfq_prod Checking test 028 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1362,8 +1362,8 @@ Checking test 028 fv3_ccpp_satmedmfq results .... Test 028 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gfdlmp_32bit_prod Checking test 029 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1410,8 +1410,8 @@ Checking test 029 fv3_ccpp_gfdlmp_32bit results .... Test 029 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 030 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1462,8 +1462,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_32bit_post results .... Test 030 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_cpt_prod Checking test 031 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1516,8 +1516,8 @@ Checking test 031 fv3_ccpp_cpt results .... Test 031 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gsd_prod Checking test 032 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1608,8 +1608,8 @@ Checking test 032 fv3_ccpp_gsd results .... Test 032 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_thompson_prod Checking test 033 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1676,8 +1676,8 @@ Checking test 033 fv3_ccpp_thompson results .... Test 033 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_thompson_no_aero_prod Checking test 034 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1744,8 +1744,8 @@ Checking test 034 fv3_ccpp_thompson_no_aero results .... Test 034 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_rrfs_v1beta_prod Checking test 035 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1812,8 +1812,8 @@ Checking test 035 fv3_ccpp_rrfs_v1beta results .... Test 035 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gfsv16_csawmg_prod Checking test 036 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1860,8 +1860,8 @@ Checking test 036 fv3_ccpp_gfsv16_csawmg results .... Test 036 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gfsv16_csawmgt_prod Checking test 037 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1908,8 +1908,8 @@ Checking test 037 fv3_ccpp_gfsv16_csawmgt results .... Test 037 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gocart_clm_prod Checking test 038 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1956,8 +1956,8 @@ Checking test 038 fv3_ccpp_gocart_clm results .... Test 038 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gfs_v16beta_flake_prod Checking test 039 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2024,8 +2024,8 @@ Checking test 039 fv3_ccpp_gfs_v16beta_flake results .... Test 039 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 040 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2092,8 +2092,8 @@ Checking test 040 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 040 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 041 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2110,8 +2110,8 @@ Checking test 041 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 041 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gsd_debug_prod Checking test 042 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2178,8 +2178,8 @@ Checking test 042 fv3_ccpp_gsd_debug results .... Test 042 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gsd_diag3d_debug_prod Checking test 043 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2246,8 +2246,8 @@ Checking test 043 fv3_ccpp_gsd_diag3d_debug results .... Test 043 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_thompson_debug_prod Checking test 044 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2314,8 +2314,8 @@ Checking test 044 fv3_ccpp_thompson_debug results .... Test 044 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_thompson_no_aero_debug_prod Checking test 045 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2382,8 +2382,8 @@ Checking test 045 fv3_ccpp_thompson_no_aero_debug results .... Test 045 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 046 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2450,8 +2450,8 @@ Checking test 046 fv3_ccpp_rrfs_v1beta_debug results .... Test 046 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2518,8 +2518,8 @@ Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_10341/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2537,5 +2537,5 @@ Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 12 21:49:46 UTC 2020 -Elapsed time: 00h:48m:23s. Have a nice day! +Sun Nov 15 22:05:12 UTC 2020 +Elapsed time: 00h:42m:29s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 02db44a539..2efeb38d94 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Thu Nov 12 21:25:12 UTC 2020 +Sun Nov 15 20:27:31 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/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-20201110/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/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-20201110/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/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-20201110/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/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-20201110/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/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-20201110/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/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-20201110/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/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-20201110/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -534,8 +534,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -582,8 +582,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -650,8 +650,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -718,8 +718,8 @@ Checking test 012 fv3_ccpp_iau results .... Test 012 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,8 +815,8 @@ Checking test 014 fv3_ccpp_gfdlmprad results .... Test 014 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -864,8 +864,8 @@ Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Test 015 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1062,8 +1062,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1129,8 +1129,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1140,8 +1140,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1149,8 +1149,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1160,8 +1160,8 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_regional_c768_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_regional_c768_prod Checking test 023 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1171,20 +1171,20 @@ Checking test 023 fv3_ccpp_regional_c768 results .... Test 023 fv3_ccpp_regional_c768 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1231,8 +1231,8 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,8 +1279,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1327,8 +1327,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,8 +1375,8 @@ Checking test 029 fv3_ccpp_csawmg results .... Test 029 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1423,8 +1423,8 @@ Checking test 030 fv3_ccpp_satmedmf results .... Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1471,8 +1471,8 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1519,8 +1519,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1571,8 +1571,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1625,8 +1625,8 @@ Checking test 034 fv3_ccpp_cpt results .... Test 034 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1717,8 +1717,8 @@ Checking test 035 fv3_ccpp_gsd results .... Test 035 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1785,8 +1785,8 @@ Checking test 036 fv3_ccpp_thompson results .... Test 036 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1853,8 +1853,8 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1921,8 +1921,8 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfsv16_csawmg_prod Checking test 039 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1969,8 +1969,8 @@ Checking test 039 fv3_ccpp_gfsv16_csawmg results .... Test 039 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfsv16_csawmgt_prod Checking test 040 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2017,8 +2017,8 @@ Checking test 040 fv3_ccpp_gfsv16_csawmgt results .... Test 040 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gocart_clm_prod Checking test 041 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2065,8 +2065,8 @@ Checking test 041 fv3_ccpp_gocart_clm results .... Test 041 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfs_v16beta_flake_prod Checking test 042 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2133,8 +2133,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_flake results .... Test 042 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 043 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2201,8 +2201,8 @@ Checking test 043 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 043 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2219,8 +2219,8 @@ Checking test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gsd_debug_prod Checking test 045 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2287,8 +2287,8 @@ Checking test 045 fv3_ccpp_gsd_debug results .... Test 045 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gsd_diag3d_debug_prod Checking test 046 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2355,8 +2355,8 @@ Checking test 046 fv3_ccpp_gsd_diag3d_debug results .... Test 046 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_thompson_debug_prod Checking test 047 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2423,8 +2423,8 @@ Checking test 047 fv3_ccpp_thompson_debug results .... Test 047 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_thompson_no_aero_debug_prod Checking test 048 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2491,8 +2491,8 @@ Checking test 048 fv3_ccpp_thompson_no_aero_debug results .... Test 048 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 049 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2559,8 +2559,8 @@ Checking test 049 fv3_ccpp_rrfs_v1beta_debug results .... Test 049 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2627,8 +2627,8 @@ Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2645,8 +2645,8 @@ Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_control_prod Checking test 052 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2697,8 +2697,8 @@ Checking test 052 cpld_control results .... Test 052 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_2threads_prod Checking test 053 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2749,8 +2749,8 @@ Checking test 053 cpld_2threads results .... Test 053 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_decomp_prod Checking test 054 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2801,8 +2801,8 @@ Checking test 054 cpld_decomp results .... Test 054 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_satmedmf_prod Checking test 055 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2853,8 +2853,8 @@ Checking test 055 cpld_satmedmf results .... Test 055 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_ca_prod Checking test 056 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2905,8 +2905,8 @@ Checking test 056 cpld_ca results .... Test 056 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_control_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_control_mx025_prod Checking test 057 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2960,8 +2960,8 @@ Checking test 057 cpld_control_mx025 results .... Test 057 cpld_control_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_control_mx025_12h_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_control_mx025_12h_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_control_mx025_12h_prod Checking test 058 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3015,8 +3015,8 @@ Checking test 058 cpld_control_mx025_12h results .... Test 058 cpld_control_mx025_12h PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_restart_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_restart_mx025_prod Checking test 059 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3070,8 +3070,8 @@ Checking test 059 cpld_restart_mx025 results .... Test 059 cpld_restart_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_control_c192_prod Checking test 060 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3122,8 +3122,8 @@ Checking test 060 cpld_control_c192 results .... Test 060 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_control_c384_prod Checking test 061 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3177,8 +3177,8 @@ Checking test 061 cpld_control_c384 results .... Test 061 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_controlfrac_c384_prod Checking test 062 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3232,8 +3232,8 @@ Checking test 062 cpld_controlfrac_c384 results .... Test 062 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_bmark_prod Checking test 063 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3287,8 +3287,8 @@ Checking test 063 cpld_bmark results .... Test 063 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_bmark_wave_prod Checking test 064 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3345,8 +3345,8 @@ Checking test 064 cpld_bmark_wave results .... Test 064 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201110/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_148154/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_debug_prod Checking test 065 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3398,5 +3398,5 @@ Test 065 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 12 23:59:16 UTC 2020 -Elapsed time: 02h:34m:09s. Have a nice day! +Sun Nov 15 21:59:44 UTC 2020 +Elapsed time: 01h:32m:16s. Have a nice day! diff --git a/tests/parm/params_grib2_tbl_new b/tests/parm/params_grib2_tbl_new index 81b86e105d..e84973b74e 100755 --- a/tests/parm/params_grib2_tbl_new +++ b/tests/parm/params_grib2_tbl_new @@ -519,6 +519,7 @@ 0 1 27 0 MAXRH 0 2 220 1 MAXUVV 0 2 222 1 MAXUW + 0 1 245 1 MAXVIG 0 2 223 1 MAXVW 10 0 24 0 MAXWH 0 6 4 0 MCDC @@ -554,6 +555,7 @@ 0 20 16 0 MSSRDRYA 0 20 17 0 MSSRWETA 10 0 20 0 MSSW + 0 11 1 0 MSTAV 2 0 11 0 MSTAV 2 0 194 1 MSTAV 2 0 7 0 MTERH @@ -699,6 +701,7 @@ 0 1 220 1 QMIN 2 0 215 1 QREC 0 1 218 1 QZ0 + 0 16 201 1 RADARVIL 2 3 202 1 RADT 3 1 8 0 RAZA 2 0 21 0 RCQ @@ -1125,6 +1128,8 @@ 0 2 208 1 VDFUA 0 2 209 1 VDFVA 0 2 204 1 VEDH + 2 0 232 1 VEGMAX + 2 0 231 1 VEGMIN 2 0 210 1 VEGT 2 0 4 0 VEG 4 1 1 0 VEL1 @@ -1242,3 +1247,4 @@ 4 8 0 0 XRAYRAD 4 6 2 0 XSHRT 10 2 10 0 ZVCICEP + 0 0 0 1 diff --git a/tests/parm/postxconfig-NT.txt b/tests/parm/postxconfig-NT.txt index 674289202b..e804503013 100644 --- a/tests/parm/postxconfig-NT.txt +++ b/tests/parm/postxconfig-NT.txt @@ -1,6 +1,6 @@ 2 -105 -187 +104 +196 GFSPRS 0 ncep_nco @@ -84,7 +84,7 @@ isobaric_sfc 0 0.0 1 -3.0 +4.0 0 0 0 @@ -121,7 +121,7 @@ isobaric_sfc 0 0.0 1 -4.0 +7.0 0 0 0 @@ -250,8 +250,8 @@ DZDT isobaric_sfc 0 ? -45 -1. 2. 4. 7. 10. 20. 40. 70. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -287,8 +287,8 @@ VVEL isobaric_sfc 0 ? -45 -1. 2. 4. 7. 10. 20. 40. 70. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -361,8 +361,8 @@ NCEP isobaric_sfc 0 ? -32 -1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 20000. 25000. 30000. 35000. 40000. 50000. 70000. 85000. 100000. +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -417,7 +417,7 @@ isobaric_sfc 0 0.0 1 -4.0 +6.0 0 0 0 @@ -491,7 +491,7 @@ isobaric_sfc 0 0.0 1 -3.0 +6.0 0 0 0 @@ -528,7 +528,7 @@ isobaric_sfc 0 0.0 1 -3.0 +6.0 0 0 0 @@ -565,7 +565,7 @@ isobaric_sfc 0 0.0 1 -3.0 +6.0 0 0 0 @@ -651,7 +651,7 @@ PRES_ON_MEAN_SEA_LVL ? 1 tmpl4_0 -PRES +PRMSL ? ? mean_sea_lvl @@ -750,7 +750,7 @@ spec_hgt_lvl_above_grnd 0 0.0 1 -4.0 +7.0 0 0 0 @@ -1157,7 +1157,7 @@ surface 0 0.0 1 -1.0 +3.0 0 0 0 @@ -1194,7 +1194,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -1305,7 +1305,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -1749,7 +1749,7 @@ entire_atmos_single_lyr 0 0.0 1 -3.0 +6.0 0 0 0 @@ -2415,7 +2415,7 @@ surface 0 0.0 1 -4.0 +6.0 0 0 0 @@ -2452,7 +2452,7 @@ surface 0 0.0 1 -4.0 +6.0 0 0 0 @@ -2464,7 +2464,7 @@ AVE_TCDC_ON_LOW_CLOUD_LYR ? 1 tmpl4_8 -TCDC +LCDC ? AVE low_cloud_lyr @@ -2489,7 +2489,7 @@ low_cloud_lyr 0 0.0 1 -3.0 +4.0 0 0 0 @@ -2501,7 +2501,7 @@ AVE_TCDC_ON_MID_CLOUD_LYR ? 1 tmpl4_8 -TCDC +MCDC ? AVE mid_cloud_lyr @@ -2526,7 +2526,7 @@ mid_cloud_lyr 0 0.0 1 -3.0 +4.0 0 0 0 @@ -2538,7 +2538,7 @@ AVE_TCDC_ON_HIGH_CLOUD_LYR ? 1 tmpl4_8 -TCDC +HCDC ? AVE high_cloud_lyr @@ -2563,7 +2563,7 @@ high_cloud_lyr 0 0.0 1 -3.0 +4.0 0 0 0 @@ -2600,7 +2600,7 @@ entire_atmos 0 0.0 1 -3.0 +4.0 0 0 0 @@ -2674,7 +2674,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -2711,7 +2711,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -2748,7 +2748,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -2785,7 +2785,7 @@ surface 0 0.0 1 -3.0 +4.0 0 0 0 @@ -2822,7 +2822,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -2859,7 +2859,7 @@ surface 0 0.0 1 -3.0 +4.0 0 0 0 @@ -2896,7 +2896,7 @@ top_of_atmos 0 0.0 1 -3.0 +6.0 0 0 0 @@ -2933,7 +2933,7 @@ top_of_atmos 0 0.0 1 -3.0 +4.0 0 0 0 @@ -2970,7 +2970,7 @@ top_of_atmos 0 0.0 1 -3.0 +4.0 0 0 0 @@ -3007,7 +3007,7 @@ surface 0 0.0 1 -4.0 +6.0 0 0 0 @@ -3303,7 +3303,7 @@ surface 0 0.0 1 -3.0 +4.0 0 0 0 @@ -3451,7 +3451,7 @@ tropopause 0 0.0 1 -3.0 +4.0 0 0 0 @@ -3599,7 +3599,7 @@ spec_alt_above_mean_sea_lvl 0 0.0 1 -3.0 +4.0 0 0 0 @@ -3710,7 +3710,7 @@ spec_hgt_lvl_above_grnd 0 0.0 1 -3.0 +4.0 0 0 0 @@ -3858,7 +3858,7 @@ spec_hgt_lvl_above_grnd 0 0.0 1 -4.0 +7.0 0 0 0 @@ -3932,7 +3932,7 @@ RH 0 0.0 1 -2.0 +3.0 0 0 0 @@ -4006,7 +4006,7 @@ hghst_trop_frz_lvl 0 0.0 1 -2.0 +3.0 0 0 0 @@ -4043,7 +4043,7 @@ spec_pres_above_grnd 0 0.0 1 -3.0 +4.0 0 0 0 @@ -4080,7 +4080,7 @@ spec_pres_above_grnd 0 0.0 1 -3.0 +4.0 0 0 0 @@ -4117,7 +4117,7 @@ spec_pres_above_grnd 0 0.0 1 -5.0 +7.0 0 0 0 @@ -4154,7 +4154,7 @@ spec_pres_above_grnd 0 0.0 1 -2.0 +3.0 0 0 0 @@ -4191,7 +4191,7 @@ spec_pres_above_grnd 0 0.0 1 -3.0 +6.0 0 0 0 @@ -4302,7 +4302,7 @@ sigma_lvl 0 0.0 1 -2.0 +3.0 0 0 0 @@ -4339,7 +4339,7 @@ sigma_lvl 0 0.0 1 -2.0 +3.0 0 0 0 @@ -4376,7 +4376,7 @@ sigma_lvl 0 0.0 1 -2.0 +3.0 0 0 0 @@ -4413,7 +4413,7 @@ sigma_lvl 0 0.0 1 -2.0 +3.0 0 0 0 @@ -4820,7 +4820,7 @@ max_wind 0 0.0 1 -3.0 +4.0 0 0 0 @@ -5190,7 +5190,7 @@ low_cloud_top_lvl 0 0.0 1 -3.0 +4.0 0 0 0 @@ -5227,7 +5227,7 @@ mid_cloud_top_lvl 0 0.0 1 -3.0 +4.0 0 0 0 @@ -5264,7 +5264,7 @@ high_cloud_top_lvl 0 0.0 1 -3.0 +4.0 0 0 0 @@ -5301,7 +5301,7 @@ convective_cloud_lyr 0 0.0 1 -2.0 +4.0 0 0 0 @@ -5338,7 +5338,7 @@ entire_atmos_single_lyr 0 0.0 1 -3.0 +6.0 0 0 0 @@ -5375,7 +5375,7 @@ entire_atmos_single_lyr 0 0.0 1 -2.0 +3.0 0 0 0 @@ -5523,7 +5523,7 @@ isobaric_sfc 0 0.0 1 -3.0 +4.0 0 0 0 @@ -5634,7 +5634,7 @@ isentropic_lvl 0 0.0 1 -3.0 +4.0 0 0 0 @@ -5967,7 +5967,7 @@ bound_lyr_cloud_lyr 0 0.0 1 -3.0 +4.0 0 0 0 @@ -6004,7 +6004,7 @@ entire_atmos_single_lyr 0 0.0 1 -4.0 +6.0 0 0 0 @@ -6559,7 +6559,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -6596,7 +6596,7 @@ surface 0 0.0 1 -4.0 +6.0 0 0 0 @@ -6633,7 +6633,7 @@ hybrid_lvl 0 0.0 1 -3.0 +6.0 0 0 0 @@ -6670,7 +6670,7 @@ hybrid_lvl 0 0.0 1 -3.0 +6.0 0 0 0 @@ -6707,7 +6707,7 @@ hybrid_lvl 0 0.0 1 -3.0 +6.0 0 0 0 @@ -6744,7 +6744,7 @@ hybrid_lvl 0 0.0 1 -3.0 +6.0 0 0 0 @@ -6781,7 +6781,7 @@ hybrid_lvl 0 0.0 1 -3.0 +6.0 0 0 0 @@ -6936,35 +6936,19 @@ surface ? ? ? -GFSFLX -0 -ncep_nco -v2003 -local_tab_yes1 -fcst -oper -fcst -fcst -hour -nws_ncep -gfs_avn -complex_packing_spatial_diff -2nd_ord_sptdiff -fltng_pnt -lossless -106 -TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +260 +HGT_ON_CLOUD_CEILING ? 1 tmpl4_0 -TMP +HGT ? ? -spec_hgt_lvl_above_grnd +cloud_ceilng +0 +? 0 ? -1 -2. ? 0 ? @@ -6982,26 +6966,26 @@ spec_hgt_lvl_above_grnd 0 0.0 1 -4.0 +6.0 0 0 0 ? ? ? -112 -SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +161 +INST_TCDC_ON_ENTIRE_ATMOS ? 1 tmpl4_0 -SPFH +TCDC ? ? -spec_hgt_lvl_above_grnd +entire_atmos +0 +? 0 ? -1 -2. ? 0 ? @@ -7026,19 +7010,19 @@ spec_hgt_lvl_above_grnd ? ? ? -64 -UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +37 +LCDC_ON_LOW_CLOUD_LYR ? 1 tmpl4_0 -UGRD +LCDC ? ? -spec_hgt_lvl_above_grnd +low_cloud_lyr +0 +? 0 ? -1 -10. ? 0 ? @@ -7063,19 +7047,19 @@ spec_hgt_lvl_above_grnd ? ? ? -65 -VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +38 +MCDC_ON_MID_CLOUD_LYR ? 1 tmpl4_0 -VGRD +MCDC ? ? -spec_hgt_lvl_above_grnd +mid_cloud_lyr +0 +? 0 ? -1 -10. ? 0 ? @@ -7100,15 +7084,15 @@ spec_hgt_lvl_above_grnd ? ? ? -24 -PRES_ON_SURFACE +39 +HCDC_ON_HIGH_CLOUD_LYR ? 1 tmpl4_0 -PRES +HCDC ? ? -surface +high_cloud_lyr 0 ? 0 @@ -7130,26 +7114,26 @@ surface 0 0.0 1 -6.0 +4.0 0 0 0 ? ? ? -25 -HGT_ON_SURFACE +253 +REFD_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 tmpl4_0 -HGT -? -? -surface -0 +REFD +NCEP ? +spec_hgt_lvl_above_grnd 0 ? +2 +4000. 1000. ? 0 ? @@ -7167,26 +7151,26 @@ surface 0 0.0 1 -6.0 +4.0 0 0 0 ? ? ? -26 -TMP_ON_SURFACE +250 +REFD_ON_HYBRID_LVL ? 1 tmpl4_0 -TMP -? -? -surface -0 +REFD +NCEP ? +hybrid_lvl 0 ? +2 +1. 2. ? 0 ? @@ -7211,24 +7195,24 @@ surface ? ? ? -116 -TSOIL_ON_DEPTH_BEL_LAND_SFC +582 +MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -TSOIL +CAPE ? ? -depth_bel_land_sfc -4 -2 2 2 2 -4 -0. 10. 40. 100. -depth_bel_land_sfc -4 -2 2 2 2 -4 -10. 40. 100. 200. +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. ? ? 0 @@ -7248,32 +7232,381 @@ depth_bel_land_sfc ? ? ? -117 -SOILW_ON_DEPTH_BEL_LAND_SFC +583 +MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -SOILW -NCEP -? -depth_bel_land_sfc -4 -2 2 2 2 -4 -0. 10. 40. 100. -depth_bel_land_sfc -4 -2 2 2 2 -4 -10. 40. 100. 200. +CIN ? ? +spec_pres_above_grnd 0 -0.0 -0 -0.0 ? -0 +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +GFSFLX +0 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +gfs_avn +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +116 +TSOIL_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +4 +2 2 2 2 +4 +0. 10. 40. 100. +depth_bel_land_sfc +4 +2 2 2 2 +4 +10. 40. 100. 200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +117 +SOILW_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILW +NCEP +? +depth_bel_land_sfc +4 +2 2 2 2 +4 +0. 10. 40. 100. +depth_bel_land_sfc +4 +2 2 2 2 +4 +10. 40. 100. 200. +? +? +0 +0.0 +0 +0.0 +? +0 0.0 0 0.0 @@ -7352,7 +7685,7 @@ surface 0 0.0 1 -1.0 +3.0 0 0 0 @@ -7389,7 +7722,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -7537,7 +7870,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -7618,43 +7951,6 @@ surface ? ? yes -572 -GFS_LFTX_ON_SURFACE -? -1 -tmpl4_0 -LFTX -NCEP -? -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -3.0 -0 -0 -0 -? -? -? 80 PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR ? @@ -7685,7 +7981,7 @@ entire_atmos_single_lyr 0 0.0 1 -3.0 +6.0 0 0 0 @@ -7722,7 +8018,7 @@ surface 0 0.0 1 -4.0 +6.0 0 0 0 @@ -7759,7 +8055,7 @@ surface 0 0.0 1 -4.0 +6.0 0 0 0 @@ -7771,7 +8067,7 @@ AVE_TCDC_ON_LOW_CLOUD_LYR ? 1 tmpl4_8 -TCDC +LCDC ? AVE low_cloud_lyr @@ -7796,7 +8092,7 @@ low_cloud_lyr 0 0.0 1 -3.0 +4.0 0 0 0 @@ -7808,7 +8104,7 @@ AVE_TCDC_ON_MID_CLOUD_LYR ? 1 tmpl4_8 -TCDC +MCDC ? AVE mid_cloud_lyr @@ -7833,7 +8129,7 @@ mid_cloud_lyr 0 0.0 1 -3.0 +4.0 0 0 0 @@ -7845,7 +8141,7 @@ AVE_TCDC_ON_HIGH_CLOUD_LYR ? 1 tmpl4_8 -TCDC +HCDC ? AVE high_cloud_lyr @@ -7870,7 +8166,7 @@ high_cloud_lyr 0 0.0 1 -3.0 +4.0 0 0 0 @@ -7907,7 +8203,7 @@ entire_atmos 0 0.0 1 -3.0 +4.0 0 0 0 @@ -7944,7 +8240,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -7981,7 +8277,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -8018,7 +8314,7 @@ top_of_atmos 0 0.0 1 -3.0 +6.0 0 0 0 @@ -8055,7 +8351,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -8092,7 +8388,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -8129,7 +8425,7 @@ surface 0 0.0 1 -3.0 +4.0 0 0 0 @@ -8166,7 +8462,7 @@ surface 0 0.0 1 -3.0 +4.0 0 0 0 @@ -8203,7 +8499,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -8240,7 +8536,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -8277,7 +8573,7 @@ surface 0 0.0 1 -3.0 +4.0 0 0 0 @@ -8314,7 +8610,7 @@ surface 0 0.0 1 -3.0 +4.0 0 0 0 @@ -8351,7 +8647,7 @@ top_of_atmos 0 0.0 1 -3.0 +6.0 0 0 0 @@ -8388,7 +8684,7 @@ top_of_atmos 0 0.0 1 -3.0 +4.0 0 0 0 @@ -8425,7 +8721,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -8462,7 +8758,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -8499,7 +8795,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -8536,7 +8832,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -8573,7 +8869,7 @@ top_of_atmos 0 0.0 1 -3.0 +4.0 0 0 0 @@ -8610,7 +8906,7 @@ top_of_atmos 0 0.0 1 -3.0 +6.0 0 0 0 @@ -8647,7 +8943,7 @@ surface 0 0.0 1 -3.0 +4.0 0 0 0 @@ -8684,7 +8980,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -8721,7 +9017,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -8758,7 +9054,7 @@ surface 0 0.0 1 -3.0 +4.0 0 0 0 @@ -8795,7 +9091,7 @@ surface 0 0.0 1 -4.0 +6.0 0 0 0 @@ -9239,7 +9535,7 @@ surface 0 0.0 1 -4.0 +6.0 0 0 0 @@ -9461,7 +9757,7 @@ surface 0 0.0 1 -3.0 +4.0 0 0 0 @@ -9868,7 +10164,7 @@ low_cloud_top_lvl 0 0.0 1 -3.0 +4.0 0 0 0 @@ -9905,7 +10201,7 @@ mid_cloud_top_lvl 0 0.0 1 -3.0 +4.0 0 0 0 @@ -9942,7 +10238,7 @@ high_cloud_top_lvl 0 0.0 1 -3.0 +4.0 0 0 0 @@ -9979,7 +10275,7 @@ convective_cloud_lyr 0 0.0 1 -2.0 +4.0 0 0 0 @@ -10016,7 +10312,7 @@ bound_lyr_cloud_lyr 0 0.0 1 -3.0 +4.0 0 0 0 @@ -10608,7 +10904,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -10645,7 +10941,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -10682,7 +10978,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -10719,7 +11015,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 diff --git a/tests/parm/postxconfig-NT_FH00.txt b/tests/parm/postxconfig-NT_FH00.txt index 48e076c290..50295aab1a 100644 --- a/tests/parm/postxconfig-NT_FH00.txt +++ b/tests/parm/postxconfig-NT_FH00.txt @@ -1,6 +1,6 @@ 2 -46 -140 +45 +149 GFSPRS 0 ncep_nco @@ -28,8 +28,8 @@ HGT isobaric_sfc 0 ? -50 -40. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -65,8 +65,8 @@ TMP isobaric_sfc 0 ? -50 -40. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -84,7 +84,7 @@ isobaric_sfc 0 0.0 1 -3.0 +4.0 0 0 0 @@ -102,8 +102,8 @@ SPFH isobaric_sfc 0 ? -47 -100. 200. 300. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -121,7 +121,7 @@ isobaric_sfc 0 0.0 1 -4.0 +7.0 0 0 0 @@ -139,8 +139,8 @@ RH isobaric_sfc 0 ? -47 -100. 200. 300. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -176,8 +176,8 @@ UGRD isobaric_sfc 0 ? -47 -100. 200. 300. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -213,8 +213,8 @@ VGRD isobaric_sfc 0 ? -47 -100. 200. 300. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -250,8 +250,8 @@ DZDT isobaric_sfc 0 ? -37 -10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -287,8 +287,8 @@ VVEL isobaric_sfc 0 ? -37 -10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -324,8 +324,8 @@ ABSV isobaric_sfc 0 ? -50 -40. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -361,8 +361,8 @@ NCEP isobaric_sfc 0 ? -25 -40. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 20000. 25000. 30000. 35000. 40000. 50000. 70000. 85000. 100000. +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. ? 0 ? @@ -417,7 +417,7 @@ isobaric_sfc 0 0.0 1 -4.0 +6.0 0 0 0 @@ -491,7 +491,7 @@ isobaric_sfc 0 0.0 1 -3.0 +6.0 0 0 0 @@ -528,7 +528,7 @@ isobaric_sfc 0 0.0 1 -3.0 +6.0 0 0 0 @@ -565,7 +565,7 @@ isobaric_sfc 0 0.0 1 -3.0 +6.0 0 0 0 @@ -651,7 +651,7 @@ PRES_ON_MEAN_SEA_LVL ? 1 tmpl4_0 -PRES +PRMSL ? ? mean_sea_lvl @@ -750,7 +750,7 @@ spec_hgt_lvl_above_grnd 0 0.0 1 -4.0 +7.0 0 0 0 @@ -1157,7 +1157,7 @@ surface 0 0.0 1 -1.0 +3.0 0 0 0 @@ -1194,7 +1194,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -1305,7 +1305,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -1749,7 +1749,7 @@ entire_atmos_single_lyr 0 0.0 1 -3.0 +6.0 0 0 0 @@ -2082,7 +2082,7 @@ top_of_atmos 0 0.0 1 -3.0 +4.0 0 0 0 @@ -2119,7 +2119,7 @@ surface 0 0.0 1 -4.0 +6.0 0 0 0 @@ -2230,7 +2230,7 @@ surface 0 0.0 1 -3.0 +4.0 0 0 0 @@ -2341,7 +2341,7 @@ tropopause 0 0.0 1 -3.0 +4.0 0 0 0 @@ -2489,7 +2489,7 @@ spec_alt_above_mean_sea_lvl 0 0.0 1 -3.0 +4.0 0 0 0 @@ -2600,7 +2600,7 @@ spec_hgt_lvl_above_grnd 0 0.0 1 -3.0 +4.0 0 0 0 @@ -2748,7 +2748,7 @@ spec_hgt_lvl_above_grnd 0 0.0 1 -4.0 +7.0 0 0 0 @@ -2822,7 +2822,7 @@ RH 0 0.0 1 -2.0 +3.0 0 0 0 @@ -2896,7 +2896,7 @@ hghst_trop_frz_lvl 0 0.0 1 -2.0 +3.0 0 0 0 @@ -2933,7 +2933,7 @@ spec_pres_above_grnd 0 0.0 1 -3.0 +4.0 0 0 0 @@ -2970,7 +2970,7 @@ spec_pres_above_grnd 0 0.0 1 -3.0 +4.0 0 0 0 @@ -3007,7 +3007,7 @@ spec_pres_above_grnd 0 0.0 1 -5.0 +7.0 0 0 0 @@ -3044,7 +3044,7 @@ spec_pres_above_grnd 0 0.0 1 -2.0 +3.0 0 0 0 @@ -3081,7 +3081,7 @@ spec_pres_above_grnd 0 0.0 1 -3.0 +6.0 0 0 0 @@ -3192,7 +3192,7 @@ sigma_lvl 0 0.0 1 -2.0 +3.0 0 0 0 @@ -3229,7 +3229,7 @@ sigma_lvl 0 0.0 1 -2.0 +3.0 0 0 0 @@ -3266,7 +3266,7 @@ sigma_lvl 0 0.0 1 -2.0 +3.0 0 0 0 @@ -3303,7 +3303,7 @@ sigma_lvl 0 0.0 1 -2.0 +3.0 0 0 0 @@ -3710,7 +3710,7 @@ max_wind 0 0.0 1 -3.0 +4.0 0 0 0 @@ -3821,7 +3821,7 @@ entire_atmos_single_lyr 0 0.0 1 -2.0 +3.0 0 0 0 @@ -3969,7 +3969,7 @@ isobaric_sfc 0 0.0 1 -3.0 +4.0 0 0 0 @@ -4080,7 +4080,7 @@ isentropic_lvl 0 0.0 1 -3.0 +4.0 0 0 0 @@ -4820,7 +4820,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -4857,7 +4857,7 @@ surface 0 0.0 1 -4.0 +6.0 0 0 0 @@ -4894,7 +4894,7 @@ hybrid_lvl 0 0.0 1 -3.0 +6.0 0 0 0 @@ -4931,7 +4931,7 @@ hybrid_lvl 0 0.0 1 -3.0 +6.0 0 0 0 @@ -4968,7 +4968,7 @@ hybrid_lvl 0 0.0 1 -3.0 +6.0 0 0 0 @@ -5005,7 +5005,7 @@ hybrid_lvl 0 0.0 1 -3.0 +6.0 0 0 0 @@ -5042,7 +5042,7 @@ hybrid_lvl 0 0.0 1 -3.0 +6.0 0 0 0 @@ -5197,6 +5197,339 @@ surface ? ? ? +260 +HGT_ON_CLOUD_CEILING +? +1 +tmpl4_0 +HGT +? +? +cloud_ceilng +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +37 +LCDC_ON_LOW_CLOUD_LYR +? +1 +tmpl4_0 +LCDC +? +? +low_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +38 +MCDC_ON_MID_CLOUD_LYR +? +1 +tmpl4_0 +MCDC +? +? +mid_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +39 +HCDC_ON_HIGH_CLOUD_LYR +? +1 +tmpl4_0 +HCDC +? +? +high_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +253 +REFD_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +REFD +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +2 +4000. 1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +250 +REFD_ON_HYBRID_LVL +? +1 +tmpl4_0 +REFD +NCEP +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +582 +MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +583 +MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? GFSFLX 0 ncep_nco @@ -5280,7 +5613,7 @@ spec_hgt_lvl_above_grnd 0 0.0 1 -4.0 +7.0 0 0 0 @@ -5613,7 +5946,7 @@ surface 0 0.0 1 -1.0 +3.0 0 0 0 @@ -5650,7 +5983,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -5761,7 +6094,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -5842,43 +6175,6 @@ surface ? ? yes -572 -GFS_LFTX_ON_SURFACE -? -1 -tmpl4_0 -LFTX -NCEP -? -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -3.0 -0 -0 -0 -? -? -? 80 PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR ? @@ -5909,7 +6205,7 @@ entire_atmos_single_lyr 0 0.0 1 -3.0 +6.0 0 0 0 @@ -5946,7 +6242,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -5983,7 +6279,7 @@ surface 0 0.0 1 -3.0 +4.0 0 0 0 @@ -6020,7 +6316,7 @@ surface 0 0.0 1 -3.0 +6.0 0 0 0 @@ -6057,7 +6353,7 @@ surface 0 0.0 1 -3.0 +4.0 0 0 0 @@ -6094,7 +6390,7 @@ surface 0 0.0 1 -4.0 +6.0 0 0 0 @@ -6538,7 +6834,7 @@ surface 0 0.0 1 -3.0 +4.0 0 0 0 @@ -6612,7 +6908,7 @@ convective_cloud_lyr 0 0.0 1 -2.0 +4.0 0 0 0 diff --git a/tests/rt.sh b/tests/rt.sh index ecd4d59876..524ea63e17 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -400,9 +400,9 @@ if [[ $SINGLE_NAME != '' ]]; then fi if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = jet.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201110/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201112/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201110} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201112} fi shift $((OPTIND-1)) From 248b609b7a3ba8e0ef05085218a0e3c0cd2b739c Mon Sep 17 00:00:00 2001 From: Minsuk Ji <57227195+MinsukJi-NOAA@users.noreply.github.com> Date: Thu, 19 Nov 2020 12:56:23 -0500 Subject: [PATCH 028/109] rt update (#261) * If ufs.cpld.cpl.r.* files do not reproduce, try nccmp * Modify/add to run cpld 35d bmark tests * Fix nccmp implementation. Fix a bug for 35d tests * Use env var NCCMP * Add hera.intel to rt_35 and rt_wave_35d * Use which to find nccmp path. Apply nccmp to all files that fail cmp. Fix a bug in fv3_ccpp_wrtGauss_netcdf_parallel * Change compare method from nccmp to compare_ncfile.py * Netcdf compare changes on Hera; skip-ci * Netcdf compare changes on WCOSS Dell P3; skip-ci * Modify comopare_ncfile.py * Netcdf compare changes on wcoss cray * Implement Dusan's ecflow fix #273 * Move miniconda3 to emc.nemspara on Hera and Orion. Minor change in default_vars.sh --- modulefiles/wcoss_cray/fv3 | 2 +- modulefiles/wcoss_dell_p3/fv3 | 3 +- modulefiles/wcoss_dell_p3/fv3_debug | 3 +- tests/RegressionTests_hera.gnu.log | 110 ++- tests/RegressionTests_hera.intel.log | 745 ++++++++++-------- tests/RegressionTests_orion.intel.log | 705 ++++++++++------- tests/RegressionTests_wcoss_cray.log | 459 ++++++----- tests/RegressionTests_wcoss_dell_p3.log | 609 ++++++++------ tests/compare_ncfile.py | 15 + tests/default_vars.sh | 2 +- tests/fv3_conf/compile_bsub.IN_wcoss_cray | 5 + tests/fv3_conf/fv3_bsub.IN_wcoss_cray | 1 - tests/rt.conf | 4 +- tests/rt.sh | 88 +-- tests/rt_35d.conf | 19 + tests/rt_utils.sh | 17 +- tests/tests/cpld_2threads | 4 +- tests/tests/cpld_bmark | 4 +- tests/tests/cpld_bmark_wave | 4 +- tests/tests/cpld_ca | 4 +- tests/tests/cpld_control | 4 +- tests/tests/cpld_control_12h | 4 +- tests/tests/cpld_control_c192 | 4 +- tests/tests/cpld_control_c384 | 4 +- tests/tests/cpld_control_mx025 | 4 +- tests/tests/cpld_control_mx025_12h | 4 +- tests/tests/cpld_controlfrac_c384 | 4 +- tests/tests/cpld_debug | 4 +- tests/tests/cpld_decomp | 4 +- tests/tests/cpld_restart | 4 +- tests/tests/cpld_restart_mx025 | 4 +- tests/tests/cpld_satmedmf | 4 +- tests/tests/fv3_ccpp_control_debug | 27 +- tests/tests/fv3_ccpp_stretched_nest_debug | 18 +- tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel | 2 +- tests/utest | 1 - 36 files changed, 1717 insertions(+), 1182 deletions(-) create mode 100755 tests/compare_ncfile.py create mode 100644 tests/rt_35d.conf diff --git a/modulefiles/wcoss_cray/fv3 b/modulefiles/wcoss_cray/fv3 index fcc74636d9..63761cf9aa 100644 --- a/modulefiles/wcoss_cray/fv3 +++ b/modulefiles/wcoss_cray/fv3 @@ -21,7 +21,7 @@ module load intel/18.1.163 module rm NetCDF-intel-sandybridge/4.2 module load xt-lsfhpc/9.1.3 module load craype-haswell -module load python/2.7.14 +module load python/3.6.3 module load cmake/3.16.2 module load gcc/5.3.0 # diff --git a/modulefiles/wcoss_dell_p3/fv3 b/modulefiles/wcoss_dell_p3/fv3 index 777e3e23d8..376ba6fc3b 100644 --- a/modulefiles/wcoss_dell_p3/fv3 +++ b/modulefiles/wcoss_dell_p3/fv3 @@ -9,8 +9,7 @@ module-whatis "loads UFS Model prerequisites on Venus and Mars" module load ips/18.0.1.163 module load impi/18.0.1 module load lsf/10.1 -# module load python/3.6.3 -module load python/2.7.14 +module load python/3.6.3 module load cmake/3.16.2 setenv CMAKE_C_COMPILER mpiicc diff --git a/modulefiles/wcoss_dell_p3/fv3_debug b/modulefiles/wcoss_dell_p3/fv3_debug index 3a19a9349d..56a5e102f0 100644 --- a/modulefiles/wcoss_dell_p3/fv3_debug +++ b/modulefiles/wcoss_dell_p3/fv3_debug @@ -9,8 +9,7 @@ module-whatis "loads UFS Model prerequisites on Venus and Mars" module load ips/18.0.1.163 module load impi/18.0.1 module load lsf/10.1 -# module load python/3.6.3 -module load python/2.7.14 +module load python/3.6.3 module load cmake/3.16.2 setenv CMAKE_C_COMPILER mpiicc diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 8920c3d26a..9de1a6d8ec 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Mon Nov 16 16:56:33 UTC 2020 +Thu Nov 19 04:12:58 UTC 2020 Start Regression test -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/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/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/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/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/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 @@ -186,8 +186,8 @@ Checking test 003 fv3_ccpp_gfs_v16beta results .... Test 003 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -322,8 +322,8 @@ Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_gsd results .... Test 007 fv3_ccpp_gsd PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -550,8 +550,8 @@ Checking test 008 fv3_ccpp_thompson results .... Test 008 fv3_ccpp_thompson PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -618,8 +618,8 @@ Checking test 009 fv3_ccpp_thompson_no_aero results .... Test 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -686,8 +686,8 @@ Checking test 010 fv3_ccpp_rrfs_v1beta results .... Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -754,8 +754,8 @@ Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -772,14 +772,38 @@ Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... + 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 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 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 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 Test 013 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -846,8 +870,8 @@ Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Test 014 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -914,8 +938,8 @@ Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Test 015 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,8 +1006,8 @@ Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1050,8 +1074,8 @@ Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,8 +1148,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1192,8 +1216,8 @@ Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_200835/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1211,5 +1235,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Nov 16 21:33:02 UTC 2020 -Elapsed time: 04h:36m:31s. Have a nice day! +Thu Nov 19 05:00:02 UTC 2020 +Elapsed time: 00h:47m:04s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 769bd638ab..918d6e840e 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Mon Nov 16 20:20:26 UTC 2020 +Thu Nov 19 03:20:26 UTC 2020 Start Regression test -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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,9 +438,57 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 + 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.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.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 + 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 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -483,12 +531,12 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS +Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -531,12 +579,12 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGauss_nemsio PASS +Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -579,12 +627,12 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS +Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_stochy_prod -Checking test 011 fv3_ccpp_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -647,12 +695,12 @@ Checking test 011 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_stochy PASS +Test 012 fv3_ccpp_stochy PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_iau_prod -Checking test 012 fv3_ccpp_iau results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_iau_prod +Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -715,12 +763,12 @@ Checking test 012 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 012 fv3_ccpp_iau PASS +Test 013 fv3_ccpp_iau PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_ca_prod +Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -783,12 +831,12 @@ Checking test 013 fv3_ccpp_ca 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_ca PASS +Test 014 fv3_ccpp_ca PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_lndp_prod +Checking test 015 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -851,12 +899,12 @@ Checking test 014 fv3_ccpp_lndp 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_lndp PASS +Test 015 fv3_ccpp_lndp PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_lheatstrg_prod -Checking test 015 fv3_ccpp_lheatstrg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -899,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 = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfdlmprad_prod -Checking test 016 fv3_ccpp_gfdlmprad results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -948,12 +996,12 @@ Checking test 016 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 016 fv3_ccpp_gfdlmprad PASS +Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -997,12 +1045,12 @@ Checking test 017 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 017 fv3_ccpp_gfdlmprad_atmwav PASS +Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -1046,12 +1094,12 @@ Checking test 018 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 018 fv3_ccpp_wrtGauss_nemsio_c768 PASS +Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_multigases_prod -Checking test 019 fv3_ccpp_multigases results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -1120,12 +1168,12 @@ Checking test 019 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 019 fv3_ccpp_multigases PASS +Test 020 fv3_ccpp_multigases PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_control_32bit_prod -Checking test 020 fv3_ccpp_control_32bit results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -1188,12 +1236,12 @@ Checking test 020 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 020 fv3_ccpp_control_32bit PASS +Test 021 fv3_ccpp_control_32bit PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_stretched_prod -Checking test 021 fv3_ccpp_stretched results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -1244,12 +1292,12 @@ Checking test 021 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 021 fv3_ccpp_stretched PASS +Test 022 fv3_ccpp_stretched PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_stretched_nest_prod -Checking test 022 fv3_ccpp_stretched_nest results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -1311,66 +1359,115 @@ Checking test 022 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 022 fv3_ccpp_stretched_nest PASS +Test 023 fv3_ccpp_stretched_nest PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_regional_control_prod -Checking test 023 fv3_ccpp_regional_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 023 fv3_ccpp_regional_control PASS +Test 024 fv3_ccpp_regional_control PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_regional_restart_prod -Checking test 024 fv3_ccpp_regional_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 024 fv3_ccpp_regional_restart PASS +Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_regional_quilt_prod -Checking test 025 fv3_ccpp_regional_quilt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 025 fv3_ccpp_regional_quilt PASS +Test 026 fv3_ccpp_regional_quilt PASS + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 ............ALT CHECK......OK +Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_regional_c768_prod -Checking test 026 fv3_ccpp_regional_c768 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_regional_c768_prod +Checking test 028 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf003.nc .........OK Comparing phyf000.nc .........OK Comparing phyf003.nc .........OK -Test 026 fv3_ccpp_regional_c768 PASS +Test 028 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_control_debug_prod -Checking test 027 fv3_ccpp_control_debug results .... -Test 027 fv3_ccpp_control_debug PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_control_debug_prod +Checking test 029 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 029 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_stretched_nest_debug_prod -Checking test 028 fv3_ccpp_stretched_nest_debug results .... -Test 028 fv3_ccpp_stretched_nest_debug PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_stretched_nest_debug_prod +Checking test 030 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 030 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfdlmp_prod -Checking test 029 fv3_ccpp_gfdlmp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfdlmp_prod +Checking test 031 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1413,12 +1510,12 @@ Checking test 029 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 029 fv3_ccpp_gfdlmp PASS +Test 031 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1461,12 +1558,12 @@ Checking test 030 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 030 fv3_ccpp_gfdlmprad_gwd PASS +Test 032 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1509,12 +1606,12 @@ Checking test 031 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 031 fv3_ccpp_gfdlmprad_noahmp PASS +Test 033 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_csawmg_prod -Checking test 032 fv3_ccpp_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_csawmg_prod +Checking test 034 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1557,12 +1654,12 @@ Checking test 032 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 032 fv3_ccpp_csawmg PASS +Test 034 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_satmedmf_prod -Checking test 033 fv3_ccpp_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_satmedmf_prod +Checking test 035 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1605,12 +1702,12 @@ Checking test 033 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 033 fv3_ccpp_satmedmf PASS +Test 035 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_satmedmfq_prod -Checking test 034 fv3_ccpp_satmedmfq results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_satmedmfq_prod +Checking test 036 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1653,12 +1750,12 @@ Checking test 034 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 034 fv3_ccpp_satmedmfq PASS +Test 036 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfdlmp_32bit_prod -Checking test 035 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfdlmp_32bit_prod +Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1701,12 +1798,12 @@ Checking test 035 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 035 fv3_ccpp_gfdlmp_32bit PASS +Test 037 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1753,12 +1850,12 @@ Checking test 036 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 036 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 038 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_cpt_prod -Checking test 037 fv3_ccpp_cpt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_cpt_prod +Checking test 039 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1807,12 +1904,12 @@ Checking test 037 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 037 fv3_ccpp_cpt PASS +Test 039 fv3_ccpp_cpt PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gsd_prod -Checking test 038 fv3_ccpp_gsd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gsd_prod +Checking test 040 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1899,12 +1996,12 @@ Checking test 038 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 038 fv3_ccpp_gsd PASS +Test 040 fv3_ccpp_gsd PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_rap_prod -Checking test 039 fv3_ccpp_rap results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_rap_prod +Checking test 041 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1967,12 +2064,12 @@ Checking test 039 fv3_ccpp_rap 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_rap PASS +Test 041 fv3_ccpp_rap PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_hrrr_prod -Checking test 040 fv3_ccpp_hrrr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_hrrr_prod +Checking test 042 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2035,12 +2132,12 @@ Checking test 040 fv3_ccpp_hrrr 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_hrrr PASS +Test 042 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_thompson_prod -Checking test 041 fv3_ccpp_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_thompson_prod +Checking test 043 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2103,12 +2200,12 @@ Checking test 041 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 041 fv3_ccpp_thompson PASS +Test 043 fv3_ccpp_thompson PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_thompson_no_aero_prod -Checking test 042 fv3_ccpp_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_thompson_no_aero_prod +Checking test 044 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2171,12 +2268,12 @@ Checking test 042 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 042 fv3_ccpp_thompson_no_aero PASS +Test 044 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_rrfs_v1beta_prod -Checking test 043 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_rrfs_v1beta_prod +Checking test 045 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2239,12 +2336,12 @@ Checking test 043 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 043 fv3_ccpp_rrfs_v1beta PASS +Test 045 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfs_v15p2_prod -Checking test 044 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfs_v15p2_prod +Checking test 046 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2307,12 +2404,12 @@ Checking test 044 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 044 fv3_ccpp_gfs_v15p2 PASS +Test 046 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfs_v16beta_prod -Checking test 045 fv3_ccpp_gfs_v16beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfs_v16beta_prod +Checking test 047 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2375,12 +2472,12 @@ Checking test 045 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 045 fv3_ccpp_gfs_v16beta PASS +Test 047 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -2443,12 +2540,12 @@ Checking test 046 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 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -2511,12 +2608,12 @@ Checking test 047 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 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 049 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfsv16_csawmg_prod -Checking test 048 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -2559,12 +2656,12 @@ Checking test 048 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 048 fv3_ccpp_gfsv16_csawmg PASS +Test 050 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 049 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -2607,12 +2704,12 @@ Checking test 049 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 049 fv3_ccpp_gfsv16_csawmgt PASS +Test 051 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gocart_clm_prod -Checking test 050 fv3_ccpp_gocart_clm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -2655,12 +2752,12 @@ Checking test 050 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 050 fv3_ccpp_gocart_clm PASS +Test 052 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 051 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -2723,12 +2820,12 @@ Checking test 051 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 051 fv3_ccpp_gfs_v16beta_flake PASS +Test 053 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -2791,12 +2888,12 @@ Checking test 052 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 052 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -2809,12 +2906,12 @@ Checking test 053 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 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 054 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -2877,12 +2974,12 @@ Checking test 054 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 054 fv3_ccpp_gfs_v15p2_debug PASS +Test 056 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 055 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -2945,12 +3042,12 @@ Checking test 055 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 055 fv3_ccpp_gfs_v16beta_debug PASS +Test 057 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 056 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -3013,12 +3110,12 @@ Checking test 056 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 056 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 057 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -3081,12 +3178,12 @@ Checking test 057 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 057 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gsd_debug_prod -Checking test 058 fv3_ccpp_gsd_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -3149,12 +3246,12 @@ Checking test 058 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 058 fv3_ccpp_gsd_debug PASS +Test 060 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 059 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -3217,12 +3314,12 @@ Checking test 059 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 059 fv3_ccpp_gsd_diag3d_debug PASS +Test 061 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_thompson_debug_prod -Checking test 060 fv3_ccpp_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -3285,12 +3382,12 @@ Checking test 060 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 060 fv3_ccpp_thompson_debug PASS +Test 062 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 061 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -3353,12 +3450,12 @@ Checking test 061 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 061 fv3_ccpp_thompson_no_aero_debug PASS +Test 063 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 062 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -3421,12 +3518,12 @@ Checking test 062 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 062 fv3_ccpp_rrfs_v1beta_debug PASS +Test 064 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -3489,12 +3586,12 @@ Checking test 063 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 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -3507,12 +3604,12 @@ Checking test 064 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 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_control_prod -Checking test 065 cpld_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_control_prod +Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3559,12 +3656,13 @@ Checking test 065 cpld_control results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 065 cpld_control PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 067 cpld_control PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_2threads_prod -Checking test 066 cpld_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_2threads_prod +Checking test 068 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3611,12 +3709,13 @@ Checking test 066 cpld_2threads results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 066 cpld_2threads PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 068 cpld_2threads PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_decomp_prod -Checking test 067 cpld_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_decomp_prod +Checking test 069 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3663,12 +3762,13 @@ Checking test 067 cpld_decomp results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 067 cpld_decomp PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 069 cpld_decomp PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_satmedmf_prod -Checking test 068 cpld_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_satmedmf_prod +Checking test 070 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3715,12 +3815,13 @@ Checking test 068 cpld_satmedmf results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 068 cpld_satmedmf PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 070 cpld_satmedmf PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_ca_prod -Checking test 069 cpld_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_ca_prod +Checking test 071 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3767,12 +3868,13 @@ Checking test 069 cpld_ca results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 069 cpld_ca PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 071 cpld_ca PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_control_mx025_prod -Checking test 070 cpld_control_mx025 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_control_mx025_prod +Checking test 072 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3822,12 +3924,13 @@ Checking test 070 cpld_control_mx025 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 070 cpld_control_mx025 PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 072 cpld_control_mx025 PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_control_mx025_12h_prod -Checking test 071 cpld_control_mx025_12h results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_12h_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_control_mx025_12h_prod +Checking test 073 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -3877,12 +3980,13 @@ Checking test 071 cpld_control_mx025_12h results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-03-43200.nc .........OK -Test 071 cpld_control_mx025_12h PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK +Test 073 cpld_control_mx025_12h PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_restart_mx025_prod -Checking test 072 cpld_restart_mx025 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_restart_mx025_prod +Checking test 074 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3932,12 +4036,13 @@ Checking test 072 cpld_restart_mx025 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 072 cpld_restart_mx025 PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 074 cpld_restart_mx025 PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_control_c192_prod -Checking test 073 cpld_control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_control_c192_prod +Checking test 075 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3984,12 +4089,13 @@ Checking test 073 cpld_control_c192 results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 073 cpld_control_c192 PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 075 cpld_control_c192 PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_control_c384_prod -Checking test 074 cpld_control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_control_c384_prod +Checking test 076 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4039,12 +4145,13 @@ Checking test 074 cpld_control_c384 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 074 cpld_control_c384 PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 076 cpld_control_c384 PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_controlfrac_c384_prod -Checking test 075 cpld_controlfrac_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/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 @@ -4094,12 +4201,13 @@ Checking test 075 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 075 cpld_controlfrac_c384 PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 077 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_bmark_prod -Checking test 076 cpld_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_bmark_prod +Checking test 078 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4149,12 +4257,13 @@ Checking test 076 cpld_bmark results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 076 cpld_bmark PASS + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 078 cpld_bmark PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_bmark_wave_prod -Checking test 077 cpld_bmark_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_bmark_wave_prod +Checking test 079 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4207,12 +4316,13 @@ Checking test 077 cpld_bmark_wave results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 077 cpld_bmark_wave PASS + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 079 cpld_bmark_wave PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/cpld_debug_prod -Checking test 078 cpld_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_debug_prod +Checking test 080 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4259,51 +4369,52 @@ Checking test 078 cpld_debug results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK -Test 078 cpld_debug PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 080 cpld_debug PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/datm_control_cfsr_prod -Checking test 079 datm_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/datm_control_cfsr_prod +Checking test 081 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 079 datm_control_cfsr PASS +Test 081 datm_control_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/datm_control_gefs_prod -Checking test 080 datm_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/datm_control_gefs_prod +Checking test 082 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 080 datm_control_gefs PASS +Test 082 datm_control_gefs PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/datm_mx025_cfsr_prod -Checking test 081 datm_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/datm_mx025_cfsr_prod +Checking test 083 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 081 datm_mx025_cfsr PASS +Test 083 datm_mx025_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/Dom.Heinzeller/FV3_RT/TMP_PR274_BASELINE_INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_133614/datm_mx025_gefs_prod -Checking test 082 datm_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/datm_mx025_gefs_prod +Checking test 084 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 082 datm_mx025_gefs PASS +Test 084 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Mon Nov 16 22:49:56 UTC 2020 -Elapsed time: 02h:29m:32s. Have a nice day! +Thu Nov 19 04:11:22 UTC 2020 +Elapsed time: 00h:50m:57s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index e2492dd11a..3d86a582f7 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Sun Nov 15 21:26:39 CST 2020 +Wed Nov 18 17:20:27 CST 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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-20201112/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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-20201112/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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-20201112/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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-20201112/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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-20201112/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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-20201112/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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,9 +438,57 @@ 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-20201112/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 + 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.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.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 + 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 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -483,12 +531,12 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS +Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -531,12 +579,12 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGauss_nemsio PASS +Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -579,12 +627,12 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS +Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_stochy_prod -Checking test 011 fv3_ccpp_stochy results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -647,12 +695,12 @@ Checking test 011 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_stochy PASS +Test 012 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_iau_prod -Checking test 012 fv3_ccpp_iau results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_iau_prod +Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -715,12 +763,12 @@ Checking test 012 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 012 fv3_ccpp_iau PASS +Test 013 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_ca_prod +Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -783,12 +831,12 @@ Checking test 013 fv3_ccpp_ca 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_ca PASS +Test 014 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfdlmprad_prod -Checking test 014 fv3_ccpp_gfdlmprad results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfdlmprad_prod +Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -832,12 +880,12 @@ Checking test 014 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 014 fv3_ccpp_gfdlmprad PASS +Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -881,12 +929,12 @@ Checking test 015 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 015 fv3_ccpp_gfdlmprad_atmwav PASS +Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_wrtGauss_nemsio_c768_prod +Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -930,12 +978,12 @@ Checking test 016 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 016 fv3_ccpp_wrtGauss_nemsio_c768 PASS +Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_multigases_prod -Checking test 017 fv3_ccpp_multigases results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_multigases_prod +Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1004,12 +1052,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 018 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_control_32bit_prod -Checking test 018 fv3_ccpp_control_32bit results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_control_32bit_prod +Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1072,12 +1120,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 019 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_stretched_prod -Checking test 019 fv3_ccpp_stretched results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_stretched_prod +Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1128,12 +1176,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 020 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_stretched_nest_prod -Checking test 020 fv3_ccpp_stretched_nest results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_stretched_nest_prod +Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1195,66 +1243,115 @@ 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 021 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_regional_control_prod -Checking test 021 fv3_ccpp_regional_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_regional_control_prod +Checking test 022 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 022 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_regional_restart_prod -Checking test 022 fv3_ccpp_regional_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_regional_restart_prod +Checking test 023 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 023 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_regional_quilt_prod -Checking test 023 fv3_ccpp_regional_quilt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_regional_quilt_prod +Checking test 024 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 024 fv3_ccpp_regional_quilt PASS + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 025 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 ............ALT CHECK......OK +Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_regional_c768_prod -Checking test 024 fv3_ccpp_regional_c768 results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_regional_c768_prod +Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf003.nc .........OK Comparing phyf000.nc .........OK Comparing phyf003.nc .........OK -Test 024 fv3_ccpp_regional_c768 PASS +Test 026 fv3_ccpp_regional_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_control_debug_prod -Checking test 025 fv3_ccpp_control_debug results .... -Test 025 fv3_ccpp_control_debug PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.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 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 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 +Test 027 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_stretched_nest_debug_prod -Checking test 026 fv3_ccpp_stretched_nest_debug results .... -Test 026 fv3_ccpp_stretched_nest_debug PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfdlmp_prod -Checking test 027 fv3_ccpp_gfdlmp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -1297,12 +1394,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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -1345,12 +1442,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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -1393,12 +1490,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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_csawmg_prod -Checking test 030 fv3_ccpp_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -1441,12 +1538,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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_satmedmf_prod -Checking test 031 fv3_ccpp_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -1489,12 +1586,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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfdlmp_32bit_prod -Checking test 032 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfdlmp_32bit_prod +Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1537,12 +1634,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 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1589,12 +1686,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 FAIL +Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_cpt_prod -Checking test 034 fv3_ccpp_cpt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_cpt_prod +Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1643,12 +1740,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 036 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gsd_prod -Checking test 035 fv3_ccpp_gsd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gsd_prod +Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1735,12 +1832,12 @@ 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 037 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_thompson_prod -Checking test 036 fv3_ccpp_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_thompson_prod +Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1803,12 +1900,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 038 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_thompson_no_aero_prod -Checking test 037 fv3_ccpp_thompson_no_aero results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_thompson_no_aero_prod +Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1871,12 +1968,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 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_rrfs_v1beta_prod -Checking test 038 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_rrfs_v1beta_prod +Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1939,12 +2036,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 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfs_v15p2_prod -Checking test 039 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfs_v15p2_prod +Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2007,12 +2104,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 041 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfs_v16beta_prod -Checking test 040 fv3_ccpp_gfs_v16beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfs_v16beta_prod +Checking test 042 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2075,12 +2172,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 042 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -2143,12 +2240,12 @@ Checking test 041 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 041 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 042 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -2211,12 +2308,12 @@ Checking test 042 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 042 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfsv16_csawmg_prod -Checking test 043 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -2259,12 +2356,12 @@ Checking test 043 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 043 fv3_ccpp_gfsv16_csawmg PASS +Test 045 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 044 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -2307,12 +2404,12 @@ Checking test 044 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 044 fv3_ccpp_gfsv16_csawmgt PASS +Test 046 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gocart_clm_prod -Checking test 045 fv3_ccpp_gocart_clm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -2355,12 +2452,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 047 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -2423,12 +2520,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 048 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -2491,12 +2588,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 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -2509,12 +2606,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 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 049 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -2577,12 +2674,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 051 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 050 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -2645,12 +2742,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 052 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 051 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -2713,12 +2810,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 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -2781,12 +2878,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 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gsd_debug_prod -Checking test 053 fv3_ccpp_gsd_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -2849,12 +2946,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 055 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -2917,12 +3014,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 056 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_thompson_debug_prod -Checking test 055 fv3_ccpp_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -2985,12 +3082,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 057 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -3053,12 +3150,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 058 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -3121,12 +3218,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 059 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -3189,12 +3286,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 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/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 @@ -3207,12 +3304,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 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_control_prod -Checking test 060 cpld_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_control_prod +Checking test 062 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3259,12 +3356,13 @@ Checking test 060 cpld_control results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 060 cpld_control PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 062 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_2threads_prod -Checking test 061 cpld_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_2threads_prod +Checking test 063 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3311,12 +3409,13 @@ Checking test 061 cpld_2threads results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 061 cpld_2threads PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 063 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_decomp_prod -Checking test 062 cpld_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_decomp_prod +Checking test 064 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3363,12 +3462,13 @@ Checking test 062 cpld_decomp results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 062 cpld_decomp PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 064 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_satmedmf_prod -Checking test 063 cpld_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_satmedmf_prod +Checking test 065 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3415,12 +3515,13 @@ Checking test 063 cpld_satmedmf results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 063 cpld_satmedmf PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 065 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_ca_prod -Checking test 064 cpld_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_ca_prod +Checking test 066 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3467,12 +3568,13 @@ Checking test 064 cpld_ca results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 064 cpld_ca PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 066 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_control_mx025_prod -Checking test 065 cpld_control_mx025 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_control_mx025_prod +Checking test 067 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3522,12 +3624,13 @@ Checking test 065 cpld_control_mx025 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 065 cpld_control_mx025 PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 067 cpld_control_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_control_mx025_12h_prod -Checking test 066 cpld_control_mx025_12h results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_12h_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_control_mx025_12h_prod +Checking test 068 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -3577,12 +3680,13 @@ Checking test 066 cpld_control_mx025_12h results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-03-43200.nc .........OK -Test 066 cpld_control_mx025_12h PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK +Test 068 cpld_control_mx025_12h PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_restart_mx025_prod -Checking test 067 cpld_restart_mx025 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_restart_mx025_prod +Checking test 069 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3632,12 +3736,13 @@ Checking test 067 cpld_restart_mx025 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 067 cpld_restart_mx025 PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 069 cpld_restart_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_control_c192_prod -Checking test 068 cpld_control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_control_c192_prod +Checking test 070 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3684,12 +3789,13 @@ Checking test 068 cpld_control_c192 results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 068 cpld_control_c192 PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 070 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_control_c384_prod -Checking test 069 cpld_control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_control_c384_prod +Checking test 071 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3739,12 +3845,13 @@ Checking test 069 cpld_control_c384 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 069 cpld_control_c384 PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 071 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_controlfrac_c384_prod -Checking test 070 cpld_controlfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_controlfrac_c384_prod +Checking test 072 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3794,12 +3901,13 @@ Checking test 070 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 070 cpld_controlfrac_c384 PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 072 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_bmark_prod -Checking test 071 cpld_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_bmark_prod +Checking test 073 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3849,12 +3957,13 @@ Checking test 071 cpld_bmark results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 071 cpld_bmark PASS + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 073 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_bmark_wave_prod -Checking test 072 cpld_bmark_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_bmark_wave_prod +Checking test 074 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3907,12 +4016,13 @@ Checking test 072 cpld_bmark_wave results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 072 cpld_bmark_wave PASS + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 074 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/cpld_debug_prod -Checking test 073 cpld_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_debug_prod +Checking test 075 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -3959,51 +4069,52 @@ Checking test 073 cpld_debug results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK -Test 073 cpld_debug PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 075 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/datm_control_cfsr_prod -Checking test 074 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/datm_control_cfsr_prod +Checking test 076 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 074 datm_control_cfsr PASS +Test 076 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/datm_control_gefs_prod -Checking test 075 datm_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/datm_control_gefs_prod +Checking test 077 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 075 datm_control_gefs PASS +Test 077 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/datm_mx025_cfsr_prod -Checking test 076 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/datm_mx025_cfsr_prod +Checking test 078 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 076 datm_mx025_cfsr PASS +Test 078 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_48854/datm_mx025_gefs_prod -Checking test 077 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/datm_mx025_gefs_prod +Checking test 079 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 077 datm_mx025_gefs PASS +Test 079 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Mon Nov 16 16:05:34 CST 2020 -Elapsed time: 18h:38m:43s. Have a nice day! +Wed Nov 18 18:25:30 CST 2020 +Elapsed time: 01h:05m:03s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 9ccb344cf1..a547cfd587 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Sun Nov 15 21:22:45 UTC 2020 +Thu Nov 19 15:12:05 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/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-20201112/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/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-20201112/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/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-20201112/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/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-20201112/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/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-20201112/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/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-20201112/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/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,9 +438,9 @@ 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-20201112/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -483,12 +483,60 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS +Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/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 + 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.nc .........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 + 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 009 fv3_ccpp_wrtGlatlon_netcdf PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -531,12 +579,12 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGauss_nemsio PASS +Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -579,12 +627,12 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS +Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_stochy_prod -Checking test 011 fv3_ccpp_stochy results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -647,12 +695,12 @@ Checking test 011 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_stochy PASS +Test 012 fv3_ccpp_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_iau_prod -Checking test 012 fv3_ccpp_iau results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_iau_prod +Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -715,12 +763,12 @@ Checking test 012 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 012 fv3_ccpp_iau PASS +Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_lheatstrg_prod -Checking test 013 fv3_ccpp_lheatstrg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_lheatstrg_prod +Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -763,12 +811,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 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_multigases_prod -Checking test 014 fv3_ccpp_multigases results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_multigases_prod +Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -837,12 +885,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 015 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_control_32bit_prod -Checking test 015 fv3_ccpp_control_32bit results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_control_32bit_prod +Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -905,12 +953,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 016 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_stretched_prod -Checking test 016 fv3_ccpp_stretched results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_stretched_prod +Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -961,12 +1009,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 017 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_stretched_nest_prod -Checking test 017 fv3_ccpp_stretched_nest results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_stretched_nest_prod +Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1028,55 +1076,104 @@ 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 018 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_regional_control_prod -Checking test 018 fv3_ccpp_regional_control results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_regional_control_prod +Checking test 019 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 019 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_regional_restart_prod -Checking test 019 fv3_ccpp_regional_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_regional_restart_prod +Checking test 020 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 020 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_regional_quilt_prod -Checking test 020 fv3_ccpp_regional_quilt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_regional_quilt_prod +Checking test 021 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 021 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_control_debug_prod -Checking test 021 fv3_ccpp_control_debug results .... -Test 021 fv3_ccpp_control_debug PASS +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 022 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 + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_control_debug_prod +Checking test 023 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 023 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_stretched_nest_debug_prod -Checking test 022 fv3_ccpp_stretched_nest_debug results .... -Test 022 fv3_ccpp_stretched_nest_debug PASS +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_stretched_nest_debug_prod +Checking test 024 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + 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 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gfdlmp_prod -Checking test 023 fv3_ccpp_gfdlmp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gfdlmp_prod +Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1119,12 +1216,12 @@ Checking test 023 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 023 fv3_ccpp_gfdlmp PASS +Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1167,12 +1264,12 @@ Checking test 024 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 024 fv3_ccpp_gfdlmprad_gwd PASS +Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1215,12 +1312,12 @@ Checking test 025 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 025 fv3_ccpp_gfdlmprad_noahmp PASS +Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_csawmg_prod -Checking test 026 fv3_ccpp_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_csawmg_prod +Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1263,12 +1360,12 @@ Checking test 026 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 026 fv3_ccpp_csawmg PASS +Test 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_satmedmf_prod -Checking test 027 fv3_ccpp_satmedmf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_satmedmf_prod +Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1311,12 +1408,12 @@ Checking test 027 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 027 fv3_ccpp_satmedmf PASS +Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_satmedmfq_prod -Checking test 028 fv3_ccpp_satmedmfq results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_satmedmfq_prod +Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1359,12 +1456,12 @@ Checking test 028 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 028 fv3_ccpp_satmedmfq PASS +Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gfdlmp_32bit_prod -Checking test 029 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gfdlmp_32bit_prod +Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1407,12 +1504,12 @@ Checking test 029 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 029 fv3_ccpp_gfdlmp_32bit PASS +Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 030 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1459,12 +1556,12 @@ Checking test 030 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 030 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_cpt_prod -Checking test 031 fv3_ccpp_cpt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_cpt_prod +Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1513,12 +1610,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 033 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gsd_prod -Checking test 032 fv3_ccpp_gsd results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gsd_prod +Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1605,12 +1702,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 034 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_thompson_prod -Checking test 033 fv3_ccpp_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_thompson_prod +Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1673,12 +1770,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 035 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_thompson_no_aero_prod -Checking test 034 fv3_ccpp_thompson_no_aero results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_thompson_no_aero_prod +Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1741,12 +1838,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 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_rrfs_v1beta_prod -Checking test 035 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_rrfs_v1beta_prod +Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1809,12 +1906,12 @@ 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 037 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gfsv16_csawmg_prod -Checking test 036 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gfsv16_csawmg_prod +Checking test 038 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1857,12 +1954,12 @@ Checking test 036 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 036 fv3_ccpp_gfsv16_csawmg PASS +Test 038 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 037 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 039 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1905,12 +2002,12 @@ Checking test 037 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 037 fv3_ccpp_gfsv16_csawmgt PASS +Test 039 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gocart_clm_prod -Checking test 038 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gocart_clm_prod +Checking test 040 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1953,12 +2050,12 @@ Checking test 038 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 038 fv3_ccpp_gocart_clm PASS +Test 040 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 039 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2021,12 +2118,12 @@ Checking test 039 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 039 fv3_ccpp_gfs_v16beta_flake PASS +Test 041 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 040 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 042 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 @@ -2089,12 +2186,12 @@ Checking test 040 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 040 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 042 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 041 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2107,12 +2204,12 @@ Checking test 041 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 041 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gsd_debug_prod -Checking test 042 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gsd_debug_prod +Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2175,12 +2272,12 @@ Checking test 042 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 042 fv3_ccpp_gsd_debug PASS +Test 044 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 043 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2243,12 +2340,12 @@ Checking test 043 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 043 fv3_ccpp_gsd_diag3d_debug PASS +Test 045 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_thompson_debug_prod -Checking test 044 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_thompson_debug_prod +Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2311,12 +2408,12 @@ Checking test 044 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 044 fv3_ccpp_thompson_debug PASS +Test 046 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 045 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 047 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 @@ -2379,12 +2476,12 @@ Checking test 045 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 045 fv3_ccpp_thompson_no_aero_debug PASS +Test 047 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 046 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2447,12 +2544,12 @@ Checking test 046 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 046 fv3_ccpp_rrfs_v1beta_debug PASS +Test 048 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 049 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 @@ -2515,12 +2612,12 @@ Checking test 047 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 047 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_4480/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -2533,9 +2630,9 @@ Checking test 048 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 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sun Nov 15 22:05:12 UTC 2020 -Elapsed time: 00h:42m:29s. Have a nice day! +Thu Nov 19 15:47:16 UTC 2020 +Elapsed time: 00h:35m:11s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 2efeb38d94..9e87c20938 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Sun Nov 15 20:27:31 UTC 2020 +Thu Nov 19 02:00:52 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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-20201112/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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-20201112/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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-20201112/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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-20201112/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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-20201112/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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-20201112/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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,9 +438,57 @@ 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-20201112/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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 + 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.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc ............ALT CHECK......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 + 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 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -483,12 +531,12 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS +Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -531,12 +579,12 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGauss_nemsio PASS +Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -579,12 +627,12 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS +Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_stochy_prod -Checking test 011 fv3_ccpp_stochy results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -647,12 +695,12 @@ Checking test 011 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_stochy PASS +Test 012 fv3_ccpp_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_iau_prod -Checking test 012 fv3_ccpp_iau results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_iau_prod +Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -715,12 +763,12 @@ Checking test 012 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 012 fv3_ccpp_iau PASS +Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_lheatstrg_prod -Checking test 013 fv3_ccpp_lheatstrg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_lheatstrg_prod +Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -763,12 +811,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 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfdlmprad_prod -Checking test 014 fv3_ccpp_gfdlmprad results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfdlmprad_prod +Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -812,12 +860,12 @@ Checking test 014 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 014 fv3_ccpp_gfdlmprad PASS +Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -861,12 +909,12 @@ Checking test 015 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 015 fv3_ccpp_gfdlmprad_atmwav PASS +Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_multigases_prod -Checking test 016 fv3_ccpp_multigases results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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 @@ -935,12 +983,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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_control_32bit_prod -Checking test 017 fv3_ccpp_control_32bit results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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 @@ -1003,12 +1051,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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_stretched_prod -Checking test 018 fv3_ccpp_stretched results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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 @@ -1059,12 +1107,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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_stretched_nest_prod -Checking test 019 fv3_ccpp_stretched_nest results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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 @@ -1126,66 +1174,115 @@ 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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_regional_control_prod -Checking test 020 fv3_ccpp_regional_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_regional_restart_prod -Checking test 021 fv3_ccpp_regional_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_regional_quilt_prod -Checking test 022 fv3_ccpp_regional_quilt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/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 ............ALT CHECK......OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK +Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_regional_c768_prod -Checking test 023 fv3_ccpp_regional_c768 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_regional_c768_prod +Checking test 025 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf003.nc .........OK Comparing phyf000.nc .........OK Comparing phyf003.nc .........OK -Test 023 fv3_ccpp_regional_c768 PASS +Test 025 fv3_ccpp_regional_c768 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_control_debug_prod -Checking test 024 fv3_ccpp_control_debug results .... -Test 024 fv3_ccpp_control_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_control_debug_prod +Checking test 026 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 026 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_stretched_nest_debug_prod -Checking test 025 fv3_ccpp_stretched_nest_debug results .... -Test 025 fv3_ccpp_stretched_nest_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_stretched_nest_debug_prod +Checking test 027 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + 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 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfdlmp_prod -Checking test 026 fv3_ccpp_gfdlmp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfdlmp_prod +Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1228,12 +1325,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 028 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1276,12 +1373,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 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1324,12 +1421,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 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_csawmg_prod -Checking test 029 fv3_ccpp_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_csawmg_prod +Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1372,12 +1469,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 031 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_satmedmf_prod -Checking test 030 fv3_ccpp_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_satmedmf_prod +Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1420,12 +1517,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 032 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_satmedmfq_prod -Checking test 031 fv3_ccpp_satmedmfq results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_satmedmfq_prod +Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1468,12 +1565,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 033 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfdlmp_32bit_prod -Checking test 032 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfdlmp_32bit_prod +Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1516,12 +1613,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 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1568,12 +1665,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 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_cpt_prod -Checking test 034 fv3_ccpp_cpt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_cpt_prod +Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1622,12 +1719,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 036 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gsd_prod -Checking test 035 fv3_ccpp_gsd results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gsd_prod +Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1714,12 +1811,12 @@ 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 037 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_thompson_prod -Checking test 036 fv3_ccpp_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_thompson_prod +Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1782,12 +1879,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 038 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_thompson_no_aero_prod -Checking test 037 fv3_ccpp_thompson_no_aero results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_thompson_no_aero_prod +Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1850,12 +1947,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 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_rrfs_v1beta_prod -Checking test 038 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_rrfs_v1beta_prod +Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1918,12 +2015,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 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfsv16_csawmg_prod -Checking test 039 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfsv16_csawmg_prod +Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1966,12 +2063,12 @@ Checking test 039 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 039 fv3_ccpp_gfsv16_csawmg PASS +Test 041 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 040 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2014,12 +2111,12 @@ Checking test 040 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 040 fv3_ccpp_gfsv16_csawmgt PASS +Test 042 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gocart_clm_prod -Checking test 041 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gocart_clm_prod +Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2062,12 +2159,12 @@ Checking test 041 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 041 fv3_ccpp_gocart_clm PASS +Test 043 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 042 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2130,12 +2227,12 @@ Checking test 042 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 042 fv3_ccpp_gfs_v16beta_flake PASS +Test 044 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 043 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 045 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 @@ -2198,12 +2295,12 @@ Checking test 043 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 043 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2216,12 +2313,12 @@ Checking test 044 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 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gsd_debug_prod -Checking test 045 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gsd_debug_prod +Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2284,12 +2381,12 @@ Checking test 045 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 045 fv3_ccpp_gsd_debug PASS +Test 047 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 046 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2352,12 +2449,12 @@ Checking test 046 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 046 fv3_ccpp_gsd_diag3d_debug PASS +Test 048 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_thompson_debug_prod -Checking test 047 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_thompson_debug_prod +Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2420,12 +2517,12 @@ Checking test 047 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 047 fv3_ccpp_thompson_debug PASS +Test 049 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 048 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 050 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 @@ -2488,12 +2585,12 @@ Checking test 048 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 048 fv3_ccpp_thompson_no_aero_debug PASS +Test 050 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 049 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2556,12 +2653,12 @@ Checking test 049 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 049 fv3_ccpp_rrfs_v1beta_debug PASS +Test 051 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 052 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 @@ -2624,12 +2721,12 @@ Checking test 050 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 050 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -2642,12 +2739,12 @@ Checking test 051 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 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_control_prod -Checking test 052 cpld_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_control_prod +Checking test 054 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2694,12 +2791,13 @@ Checking test 052 cpld_control results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 052 cpld_control PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 054 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_2threads_prod -Checking test 053 cpld_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_2threads_prod +Checking test 055 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2746,12 +2844,13 @@ Checking test 053 cpld_2threads results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 053 cpld_2threads PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 055 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_decomp_prod -Checking test 054 cpld_decomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_decomp_prod +Checking test 056 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2798,12 +2897,13 @@ Checking test 054 cpld_decomp results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 054 cpld_decomp PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 056 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_satmedmf_prod -Checking test 055 cpld_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_satmedmf_prod +Checking test 057 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2850,12 +2950,13 @@ Checking test 055 cpld_satmedmf results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 055 cpld_satmedmf PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 057 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_ca_prod -Checking test 056 cpld_ca results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_ca_prod +Checking test 058 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2902,12 +3003,13 @@ Checking test 056 cpld_ca results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 056 cpld_ca PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 058 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_control_mx025_prod -Checking test 057 cpld_control_mx025 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_control_mx025_prod +Checking test 059 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2957,12 +3059,13 @@ Checking test 057 cpld_control_mx025 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 057 cpld_control_mx025 PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 059 cpld_control_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_control_mx025_12h_prod -Checking test 058 cpld_control_mx025_12h results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_mx025_12h_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_control_mx025_12h_prod +Checking test 060 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -3012,12 +3115,13 @@ Checking test 058 cpld_control_mx025_12h results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-03-43200.nc .........OK -Test 058 cpld_control_mx025_12h PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK +Test 060 cpld_control_mx025_12h PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_restart_mx025_prod -Checking test 059 cpld_restart_mx025 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_restart_mx025_prod +Checking test 061 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3067,12 +3171,13 @@ Checking test 059 cpld_restart_mx025 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 059 cpld_restart_mx025 PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 061 cpld_restart_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_control_c192_prod -Checking test 060 cpld_control_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_control_c192_prod +Checking test 062 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3119,12 +3224,13 @@ Checking test 060 cpld_control_c192 results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 060 cpld_control_c192 PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 062 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_control_c384_prod -Checking test 061 cpld_control_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_control_c384_prod +Checking test 063 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3174,12 +3280,13 @@ Checking test 061 cpld_control_c384 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 061 cpld_control_c384 PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 063 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_controlfrac_c384_prod -Checking test 062 cpld_controlfrac_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_controlfrac_c384_prod +Checking test 064 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3229,12 +3336,13 @@ Checking test 062 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK -Test 062 cpld_controlfrac_c384 PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 064 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_bmark_prod -Checking test 063 cpld_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_bmark_prod +Checking test 065 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3284,12 +3392,13 @@ Checking test 063 cpld_bmark results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 063 cpld_bmark PASS + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 065 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_bmark_wave_prod -Checking test 064 cpld_bmark_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_bmark_wave_prod +Checking test 066 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3342,12 +3451,13 @@ Checking test 064 cpld_bmark_wave results .... Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK -Test 064 cpld_bmark_wave PASS + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 066 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201112/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_43226/cpld_debug_prod -Checking test 065 cpld_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_debug_prod +Checking test 067 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -3394,9 +3504,10 @@ Checking test 065 cpld_debug results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK -Test 065 cpld_debug PASS + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 067 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sun Nov 15 21:59:44 UTC 2020 -Elapsed time: 01h:32m:16s. Have a nice day! +Thu Nov 19 04:23:16 UTC 2020 +Elapsed time: 02h:22m:27s. Have a nice day! diff --git a/tests/compare_ncfile.py b/tests/compare_ncfile.py new file mode 100755 index 0000000000..764d5e3288 --- /dev/null +++ b/tests/compare_ncfile.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python +import sys +import numpy as np +from netCDF4 import Dataset + +with Dataset(sys.argv[1]) as nc1, Dataset(sys.argv[2]) as nc2: + if nc1.variables.keys()!=nc2.variables.keys(): + print("Variables are different") + sys.exit(1) + + for varname in nc1.variables.keys(): + diff = nc2[varname][:]-nc1[varname][:] + if (np.abs(diff)).max() != 0: + print(varname,"is different") + sys.exit(1) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index cc2342367e..f7c7a9f0c7 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -176,7 +176,7 @@ else fi # Longer default walltime for GNU -if [[ $RT_COMPILER = gnu ]]; then +if [[ ${RT_COMPILER:-} = gnu ]]; then WLCLK_dflt=30 else WLCLK_dflt=15 diff --git a/tests/fv3_conf/compile_bsub.IN_wcoss_cray b/tests/fv3_conf/compile_bsub.IN_wcoss_cray index ceef8aae67..6b7ae0bbec 100644 --- a/tests/fv3_conf/compile_bsub.IN_wcoss_cray +++ b/tests/fv3_conf/compile_bsub.IN_wcoss_cray @@ -11,6 +11,11 @@ set -eux +set +x +module load alps +module list +set -x + echo "Compile started: " `date` aprun -n 1 -j 1 -N 1 -d 24 @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] diff --git a/tests/fv3_conf/fv3_bsub.IN_wcoss_cray b/tests/fv3_conf/fv3_bsub.IN_wcoss_cray index d06915d0f9..81359cca4f 100644 --- a/tests/fv3_conf/fv3_bsub.IN_wcoss_cray +++ b/tests/fv3_conf/fv3_bsub.IN_wcoss_cray @@ -15,7 +15,6 @@ set +x source ./module-setup.sh module use $( pwd -P ) module load modules.fv3 -module load alps/5.2.3-2.0502.9295.14.14.ari module list set -x diff --git a/tests/rt.conf b/tests/rt.conf index aadef86148..ce718dbf17 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -11,7 +11,7 @@ RUN | fv3_ccpp_restart 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_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 | @@ -61,7 +61,7 @@ COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regiona 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_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 | diff --git a/tests/rt.sh b/tests/rt.sh index 524ea63e17..99f2222025 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -56,6 +56,19 @@ rt_single() { fi } +rt_35d() { + local sy=$(echo ${DATE_35D} | cut -c 1-4) + local sm=$(echo ${DATE_35D} | cut -c 5-6) + local new_test_name="tests/${TEST_NAME}_${DATE_35D}" + rm -f $new_test_name + cp tests/$TEST_NAME $new_test_name + + sed -i -e "s/\(export SYEAR\)/\1=\"$sy\"/" $new_test_name + sed -i -e "s/\(export SMONTH\)/\1=\"$sm\"/" $new_test_name + + TEST_NAME=${new_test_name#tests/} +} + rt_trap() { [[ ${ROCOTO:-false} == true ]] && rocoto_kill [[ ${ECFLOW:-false} == true ]] && ecflow_kill @@ -97,15 +110,12 @@ export RT_COMPILER=${RT_COMPILER:-intel} source detect_machine.sh source rt_utils.sh +source $PATHTR/NEMS/src/conf/module-setup.sh.inc + if [[ $MACHINE_ID = wcoss_cray ]]; then - source $PATHTR/NEMS/src/conf/module-setup.sh.inc module load xt-lsfhpc - - module use $PATHTR/modulefiles/${MACHINE_ID} - module load fv3 - - module load python/2.7.14 + module load python/3.6.3 module use /usrx/local/emc_rocoto/modulefiles module load rocoto/1.3.0rc2 @@ -114,8 +124,9 @@ if [[ $MACHINE_ID = wcoss_cray ]]; then ROCOTOCOMPLETE=$(which rocotocomplete) ROCOTO_SCHEDULER=lsfcray - module load ecflow/intel/4.7.1 - ECFLOW_START=${ECF_ROOT}/intel/bin/ecflow_start.sh + module use /gpfs/hps/nco/ops/nwtest/modulefiles + module load ecflow/intel/4.17.0.1 + ECFLOW_START=${ECF_ROOT}/bin/ecflow_start.sh ECF_PORT=$(grep $USER /usrx/local/sys/ecflow/assigned_ports.txt | awk '{print $2}') DISKNM=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT @@ -136,13 +147,8 @@ if [[ $MACHINE_ID = wcoss_cray ]]; then elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then - source $PATHTR/NEMS/src/conf/module-setup.sh.inc module load lsf/10.1 - - module use $PATHTR/modulefiles/${MACHINE_ID} - module load fv3 - - module load python/2.7.14 + module load python/3.6.3 module use /usrx/local/dev/emc_rocoto/modulefiles module load ruby/2.5.1 rocoto/1.3.0rc2 @@ -152,8 +158,8 @@ elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then ROCOTO_SCHEDULER=lsf module load ips/18.0.1.163 - module load ecflow/4.7.1 - ECFLOW_START=${ECF_ROOT}/intel/bin/ecflow_start.sh + module load ecflow/4.17.0 + ECFLOW_START=${ECF_ROOT}/bin/ecflow_start.sh ECF_PORT=$(grep $USER /usrx/local/sys/ecflow/assigned_ports.txt | awk '{print $2}') DISKNM=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT @@ -169,8 +175,6 @@ elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then elif [[ $MACHINE_ID = gaea.* ]]; then - source $PATHTR/NEMS/src/conf/module-setup.sh.inc - # export PATH=/gpfs/hps/nco/ops/ecf/ecfdir/ecflow.v4.1.0.intel/bin:$PATH export PYTHONPATH= ECFLOW_START= @@ -192,20 +196,15 @@ elif [[ $MACHINE_ID = gaea.* ]]; then elif [[ $MACHINE_ID = hera.* ]]; then - source $PATHTR/NEMS/src/conf/module-setup.sh.inc - - module use $PATHTR/modulefiles/${MACHINE_ID} - module load fv3 - module load rocoto ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) ROCOTO_SCHEDULER=slurm - export PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:$PATH - export PYTHONPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/lib/python2.7/site-packages - ECFLOW_START=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin/ecflow_start.sh + export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH + export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages + ECFLOW_START=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=batch @@ -224,20 +223,17 @@ elif [[ $MACHINE_ID = hera.* ]]; then elif [[ $MACHINE_ID = orion.* ]]; then - source $PATHTR/NEMS/src/conf/module-setup.sh.inc - - module use $PATHTR/modulefiles/${MACHINE_ID} - module load fv3 module load gcc/8.3.0 module load contrib rocoto/1.3.1 ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) - export PATH=/work/noaa/fv3-cam/djovic/ecflow/bin:$PATH - export PYTHONPATH=/work/noaa/fv3-cam/djovic/ecflow/lib/python2.7/site-packages - ECFLOW_START=/work/noaa/fv3-cam/djovic/ecflow/bin/ecflow_start.sh + export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH + export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages + ECFLOW_START=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) + QUEUE=batch COMPILE_QUEUE=batch # ACCNR= # detected in detect_machine.sh @@ -253,11 +249,6 @@ elif [[ $MACHINE_ID = orion.* ]]; then elif [[ $MACHINE_ID = jet.* ]]; then - source $PATHTR/NEMS/src/conf/module-setup.sh.inc - - module use $PATHTR/modulefiles/${MACHINE_ID} - module load fv3 - module load rocoto/1.3.2 ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) @@ -268,6 +259,7 @@ elif [[ $MACHINE_ID = jet.* ]]; then export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/lib/python2.7/site-packages ECFLOW_START=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) + QUEUE=batch COMPILE_QUEUE=batch ACCNR=hfv3gfs @@ -283,13 +275,12 @@ elif [[ $MACHINE_ID = jet.* ]]; then elif [[ $MACHINE_ID = cheyenne.* ]]; then - source $PATHTR/NEMS/src/conf/module-setup.sh.inc - module load python/2.7.16 export PATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/bin:$PATH export PYTHONPATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/lib/python2.7/site-packages ECFLOW_START=/glade/p/ral/jntp/tools/ecFlow-5.3.1/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) + QUEUE=regular COMPILE_QUEUE=regular PARTITION= @@ -303,8 +294,6 @@ elif [[ $MACHINE_ID = cheyenne.* ]]; then elif [[ $MACHINE_ID = stampede.* ]]; then - source $PATHTR/NEMS/src/conf/module-setup.sh.inc - export PYTHONPATH= ECFLOW_START= QUEUE=skx-dev @@ -340,6 +329,7 @@ ROCOTO=false ECFLOW=false KEEP_RUNDIR=false SINGLE_NAME='' +TEST_35D=false TESTS_FILE='rt.conf' @@ -399,10 +389,14 @@ if [[ $SINGLE_NAME != '' ]]; then rt_single fi +if [[ $TESTS_FILE =~ '35d' ]]; then + TEST_35D=true +fi + if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = jet.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201112/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201118/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201112} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201118} fi shift $((OPTIND-1)) @@ -636,11 +630,16 @@ EOF MACHINES=$( echo $line | cut -d'|' -f4) 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/ *$//') + [[ -e "tests/$TEST_NAME" ]] || die "run test file tests/$TEST_NAME does not exist" [[ $SET_ID != ' ' && $SET != *${SET_ID}* ]] && continue [[ $MACHINES != ' ' && $MACHINES != *${MACHINE_ID}* ]] && continue [[ $CREATE_BASELINE == true && $CB != *fv3* ]] && continue + # 35 day tests + [[ $TEST_35D == true ]] && rt_35d + # skip all *_appbuild runs if rocoto or ecFlow is used. FIXME if [[ ${ROCOTO} == true && ${ECFLOW} == true ]]; then if [[ ${TEST_NAME} == *_appbuild ]]; then @@ -748,6 +747,7 @@ else rm -f fv3_*.x fv3_*.exe modules.fv3_* [[ ${KEEP_RUNDIR} == false ]] && rm -rf ${RUNDIR_ROOT} [[ ${ROCOTO} == true ]] && rm -f ${ROCOTO_XML} ${ROCOTO_DB} *_lock.db + [[ ${TEST_35D} == true ]] && rm -f tests/cpld_bmark*_20* fi date >> ${REGRESSIONTEST_LOG} diff --git a/tests/rt_35d.conf b/tests/rt_35d.conf new file mode 100644 index 0000000000..2e9ab03950 --- /dev/null +++ b/tests/rt_35d.conf @@ -0,0 +1,19 @@ +COMPILE | CCPP=Y 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 | CCPP=Y 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_utils.sh b/tests/rt_utils.sh index 921933de5d..7a14e40f49 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -270,8 +270,16 @@ check_results() { d=$( cmp ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i | wc -l ) if [[ $d -ne 0 ]] ; then - echo ".......NOT OK" >> ${REGRESSIONTEST_LOG} - echo ".......NOT OK" + if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss_dell_p3 || ${MACHINE_ID} =~ wcoss_cray ]]; then + printf ".......ALT CHECK.." >> ${REGRESSIONTEST_LOG} + printf ".......ALT CHECK.." + d=$( ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i 2>/dev/null | wc -l ) + fi + fi + + if [[ $d -ne 0 ]]; then + echo "....NOT OK" >> ${REGRESSIONTEST_LOG} + echo "....NOT OK" test_status='FAIL' else echo "....OK" >> ${REGRESSIONTEST_LOG} @@ -360,16 +368,17 @@ rocoto_create_compile_task() { NATIVE="" BUILD_CORES=8 + BUILD_WALLTIME="00:30:00" if [[ ${MACHINE_ID} == wcoss_dell_p3 ]]; then BUILD_CORES=1 NATIVE="8G -R 'affinity[core(1)]'" + BUILD_WALLTIME="01:00:00" fi if [[ ${MACHINE_ID} == wcoss_cray ]]; then BUILD_CORES=24 rocoto_cmd="aprun -n 1 -j 1 -N 1 -d $BUILD_CORES $rocoto_cmd" - NATIVE="" + NATIVE=" PATHTR&PATHTR;" fi - BUILD_WALLTIME="00:30:00" if [[ ${MACHINE_ID} == jet ]]; then BUILD_WALLTIME="01:00:00" fi diff --git a/tests/tests/cpld_2threads b/tests/tests/cpld_2threads index df52960127..4aa61ab4a6 100644 --- a/tests/tests/cpld_2threads +++ b/tests/tests/cpld_2threads @@ -51,8 +51,8 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-04-00000.nc" - #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl diff --git a/tests/tests/cpld_bmark b/tests/tests/cpld_bmark index d8d774c2cf..1f6586ef04 100644 --- a/tests/tests/cpld_bmark +++ b/tests/tests/cpld_bmark @@ -53,8 +53,8 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2013-04-02-00000.nc" - #RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc" + RESTART/iced.2013-04-02-00000.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc" export_fv3 export_cpl diff --git a/tests/tests/cpld_bmark_wave b/tests/tests/cpld_bmark_wave index bb10f32bd5..8dd049fea8 100644 --- a/tests/tests/cpld_bmark_wave +++ b/tests/tests/cpld_bmark_wave @@ -56,8 +56,8 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2013-04-02-00000.nc" - #RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc" + RESTART/iced.2013-04-02-00000.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc" export_fv3 export_cpl diff --git a/tests/tests/cpld_ca b/tests/tests/cpld_ca index 99720548d0..d83a8ecd37 100644 --- a/tests/tests/cpld_ca +++ b/tests/tests/cpld_ca @@ -51,8 +51,8 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-04-00000.nc" - #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl diff --git a/tests/tests/cpld_control b/tests/tests/cpld_control index c4efec6909..529b6e8ffc 100644 --- a/tests/tests/cpld_control +++ b/tests/tests/cpld_control @@ -51,8 +51,8 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-04-00000.nc" - #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl diff --git a/tests/tests/cpld_control_12h b/tests/tests/cpld_control_12h index fcb32f561b..4e367dbcfc 100644 --- a/tests/tests/cpld_control_12h +++ b/tests/tests/cpld_control_12h @@ -51,8 +51,8 @@ export LIST_FILES="phyf012.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-03-43200.nc" - #RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc" + RESTART/iced.2016-10-03-43200.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc" export_fv3 export_cpl diff --git a/tests/tests/cpld_control_c192 b/tests/tests/cpld_control_c192 index 68015d4701..95751a6191 100644 --- a/tests/tests/cpld_control_c192 +++ b/tests/tests/cpld_control_c192 @@ -50,8 +50,8 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-04-00000.nc" - #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl diff --git a/tests/tests/cpld_control_c384 b/tests/tests/cpld_control_c384 index 2f15cc6bec..94e2333f32 100644 --- a/tests/tests/cpld_control_c384 +++ b/tests/tests/cpld_control_c384 @@ -53,8 +53,8 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-04-00000.nc" - #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl diff --git a/tests/tests/cpld_control_mx025 b/tests/tests/cpld_control_mx025 index f64eeb6b80..2212c0a6b8 100644 --- a/tests/tests/cpld_control_mx025 +++ b/tests/tests/cpld_control_mx025 @@ -53,8 +53,8 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-04-00000.nc" - #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl diff --git a/tests/tests/cpld_control_mx025_12h b/tests/tests/cpld_control_mx025_12h index ac7b9068e8..490b360f25 100644 --- a/tests/tests/cpld_control_mx025_12h +++ b/tests/tests/cpld_control_mx025_12h @@ -53,8 +53,8 @@ export LIST_FILES="phyf012.tile1.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-03-43200.nc" - #RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc" + RESTART/iced.2016-10-03-43200.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc" export_fv3 export_cpl diff --git a/tests/tests/cpld_controlfrac_c384 b/tests/tests/cpld_controlfrac_c384 index 5f82cb96e3..4df558d65c 100644 --- a/tests/tests/cpld_controlfrac_c384 +++ b/tests/tests/cpld_controlfrac_c384 @@ -53,8 +53,8 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-04-00000.nc" - #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl diff --git a/tests/tests/cpld_debug b/tests/tests/cpld_debug index 106193231d..f7da5104b6 100644 --- a/tests/tests/cpld_debug +++ b/tests/tests/cpld_debug @@ -51,8 +51,8 @@ export LIST_FILES="phyf006.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-03-21600.nc" - #RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc" + RESTART/iced.2016-10-03-21600.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc" export_fv3 export_cpl diff --git a/tests/tests/cpld_decomp b/tests/tests/cpld_decomp index 992deda62d..b09b51cda8 100644 --- a/tests/tests/cpld_decomp +++ b/tests/tests/cpld_decomp @@ -51,8 +51,8 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-04-00000.nc" - #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl diff --git a/tests/tests/cpld_restart b/tests/tests/cpld_restart index 733c5a1253..9bd6f8d86e 100644 --- a/tests/tests/cpld_restart +++ b/tests/tests/cpld_restart @@ -51,8 +51,8 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-04-00000.nc" - #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl diff --git a/tests/tests/cpld_restart_mx025 b/tests/tests/cpld_restart_mx025 index f9bbada8d9..997ded5e0e 100644 --- a/tests/tests/cpld_restart_mx025 +++ b/tests/tests/cpld_restart_mx025 @@ -54,8 +54,8 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-04-00000.nc" - #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl diff --git a/tests/tests/cpld_satmedmf b/tests/tests/cpld_satmedmf index 76c2a4e603..ec0bdd0f80 100644 --- a/tests/tests/cpld_satmedmf +++ b/tests/tests/cpld_satmedmf @@ -51,8 +51,8 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-04-00000.nc" - #RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl diff --git a/tests/tests/fv3_ccpp_control_debug b/tests/tests/fv3_ccpp_control_debug index 91b3b8678d..0c3bfb6f05 100644 --- a/tests/tests/fv3_ccpp_control_debug +++ b/tests/tests/fv3_ccpp_control_debug @@ -6,9 +6,32 @@ export TEST_DESCR="Compare FV3 CCPP control results with previous trunk version" -export CNTL_DIR=fv3_control +export CNTL_DIR=fv3_control_debug -export LIST_FILES="" +export LIST_FILES="phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + phyf006.tile1.nc \ + phyf006.tile2.nc \ + phyf006.tile3.nc \ + phyf006.tile4.nc \ + phyf006.tile5.nc \ + phyf006.tile6.nc \ + dynf006.tile1.nc \ + dynf006.tile2.nc \ + dynf006.tile3.nc \ + dynf006.tile4.nc \ + dynf006.tile5.nc \ + dynf006.tile6.nc" export_fv3 diff --git a/tests/tests/fv3_ccpp_stretched_nest_debug b/tests/tests/fv3_ccpp_stretched_nest_debug index 6bb07ce6fa..f23abe1623 100644 --- a/tests/tests/fv3_ccpp_stretched_nest_debug +++ b/tests/tests/fv3_ccpp_stretched_nest_debug @@ -6,8 +6,22 @@ export TEST_DESCR="Compare FV3 CCPP control results with previous trunk version" -export CNTL_DIR=fv3_stretched_nest -export LIST_FILES= +export CNTL_DIR=fv3_stretched_nest_debug + +export LIST_FILES="fv3_history2d.nest02.tile7.nc \ + fv3_history2d.tile1.nc \ + fv3_history2d.tile2.nc \ + fv3_history2d.tile3.nc \ + fv3_history2d.tile4.nc \ + fv3_history2d.tile5.nc \ + fv3_history2d.tile6.nc \ + fv3_history.nest02.tile7.nc \ + fv3_history.tile1.nc \ + fv3_history.tile2.nc \ + fv3_history.tile3.nc \ + fv3_history.tile4.nc \ + fv3_history.tile5.nc \ + fv3_history.tile6.nc" export_fv3 diff --git a/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel b/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel index 07a722f1ca..83353fa45d 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel +++ b/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel @@ -6,7 +6,7 @@ export TEST_DESCR="Compare FV3 CCPP Gaussian grid netcdf output results with previous trunk version" -export CNTL_DIR=fv3_wrtGauss_netcdf +export CNTL_DIR=fv3_wrtGauss_netcdf_parallel export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ diff --git a/tests/utest b/tests/utest index 0279cb9538..230ca8c9f9 100755 --- a/tests/utest +++ b/tests/utest @@ -447,7 +447,6 @@ elif [[ $MACHINE_ID = orion.* ]]; then DISKNM=/work/noaa/nems/emc.nemspara/RT STMP=$dprefix/stmp PTMP=$dprefix/stmp - SCHEDULER=slurm cp fv3_conf/fv3_slurm.IN_orion fv3_conf/fv3_slurm.IN cp fv3_conf/compile_slurm.IN_orion fv3_conf/compile_slurm.IN From bfce1df1c03c3aef87c177cd0b04579d0ce5f430 Mon Sep 17 00:00:00 2001 From: "Chan-Hoo.Jeon-NOAA" <60152248+chan-hoo@users.noreply.github.com> Date: Mon, 23 Nov 2020 14:59:09 -0500 Subject: [PATCH 029/109] Fix to allow quilting with non-factors for layout (#250) * sync fv3 feature branch * Regression test passed on Hera and Orion, WCOSS_dell, WCOSS_cray, Hera_gnu * Update for FV3 to point to the develop branch --- FV3 | 2 +- tests/RegressionTests_hera.gnu.log | 46 +++---- tests/RegressionTests_hera.intel.log | 174 ++++++++++++------------ tests/RegressionTests_orion.intel.log | 164 +++++++++++----------- tests/RegressionTests_wcoss_cray.log | 106 +++++++-------- tests/RegressionTests_wcoss_dell_p3.log | 142 +++++++++---------- 6 files changed, 317 insertions(+), 317 deletions(-) diff --git a/FV3 b/FV3 index 4fdf7c6f1d..b6957d83af 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 4fdf7c6f1dfbb57ad46c33d4469356a45daca7eb +Subproject commit b6957d83afb18d683fe56ea718fc14caa6d197f6 diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 9de1a6d8ec..39f44392c1 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Thu Nov 19 04:12:58 UTC 2020 +Mon Nov 23 16:55:21 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/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-20201118/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/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-20201118/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/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 @@ -187,7 +187,7 @@ Test 003 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -255,7 +255,7 @@ Test 004 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -323,7 +323,7 @@ Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -391,7 +391,7 @@ Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -483,7 +483,7 @@ Test 007 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -551,7 +551,7 @@ Test 008 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -619,7 +619,7 @@ Test 009 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -687,7 +687,7 @@ Test 010 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -755,7 +755,7 @@ Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -773,7 +773,7 @@ Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -803,7 +803,7 @@ Test 013 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -871,7 +871,7 @@ Test 014 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -939,7 +939,7 @@ Test 015 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1075,7 +1075,7 @@ Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1149,7 +1149,7 @@ Test 018 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1217,7 +1217,7 @@ Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_190073/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1235,5 +1235,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 19 05:00:02 UTC 2020 -Elapsed time: 00h:47m:04s. Have a nice day! +Mon Nov 23 18:45:49 UTC 2020 +Elapsed time: 01h:50m:29s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 918d6e840e..a2bc008668 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Thu Nov 19 03:20:26 UTC 2020 +Fri Nov 20 15:29:57 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_lndp_prod Checking test 015 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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-20201118/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_regional_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_regional_c768_prod Checking test 028 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1416,7 +1416,7 @@ Test 028 fv3_ccpp_regional_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_control_debug_prod Checking test 029 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1446,7 +1446,7 @@ Test 029 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_stretched_nest_debug_prod Checking test 030 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1466,7 +1466,7 @@ Test 030 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfdlmp_prod Checking test 031 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1514,7 +1514,7 @@ Test 031 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfdlmprad_gwd_prod Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1562,7 +1562,7 @@ Test 032 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1610,7 +1610,7 @@ Test 033 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_csawmg_prod Checking test 034 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1658,7 +1658,7 @@ Test 034 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_satmedmf_prod Checking test 035 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1706,7 +1706,7 @@ Test 035 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_satmedmfq_prod Checking test 036 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1754,7 +1754,7 @@ Test 036 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfdlmp_32bit_prod Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1802,7 +1802,7 @@ Test 037 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1854,7 +1854,7 @@ Test 038 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_cpt_prod Checking test 039 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1908,7 +1908,7 @@ Test 039 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gsd_prod Checking test 040 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2000,7 +2000,7 @@ Test 040 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_rap_prod Checking test 041 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2068,7 +2068,7 @@ Test 041 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_hrrr_prod Checking test 042 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2136,7 +2136,7 @@ Test 042 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_thompson_prod Checking test 043 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2204,7 +2204,7 @@ Test 043 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_thompson_no_aero_prod Checking test 044 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2272,7 +2272,7 @@ Test 044 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_rrfs_v1beta_prod Checking test 045 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2340,7 +2340,7 @@ Test 045 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfs_v15p2_prod Checking test 046 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2408,7 +2408,7 @@ Test 046 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfs_v16beta_prod Checking test 047 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2476,7 +2476,7 @@ Test 047 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -2544,7 +2544,7 @@ Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -2612,7 +2612,7 @@ Test 049 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -2660,7 +2660,7 @@ Test 050 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -2708,7 +2708,7 @@ Test 051 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -2756,7 +2756,7 @@ Test 052 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -2824,7 +2824,7 @@ Test 053 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -2892,7 +2892,7 @@ Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -2910,7 +2910,7 @@ Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -2978,7 +2978,7 @@ Test 056 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -3046,7 +3046,7 @@ Test 057 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -3114,7 +3114,7 @@ Test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -3182,7 +3182,7 @@ Test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -3250,7 +3250,7 @@ Test 060 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -3318,7 +3318,7 @@ Test 061 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -3386,7 +3386,7 @@ Test 062 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -3454,7 +3454,7 @@ Test 063 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -3522,7 +3522,7 @@ Test 064 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -3590,7 +3590,7 @@ Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/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 @@ -3608,7 +3608,7 @@ Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_control_prod Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3661,7 +3661,7 @@ Test 067 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_2threads_prod Checking test 068 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3714,7 +3714,7 @@ Test 068 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_decomp_prod Checking test 069 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3767,7 +3767,7 @@ Test 069 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_satmedmf_prod Checking test 070 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3820,7 +3820,7 @@ Test 070 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_ca_prod Checking test 071 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3873,7 +3873,7 @@ Test 071 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_control_mx025_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_control_mx025_prod Checking test 072 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3929,7 +3929,7 @@ Test 072 cpld_control_mx025 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_control_mx025_12h_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_control_mx025_12h_prod Checking test 073 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3985,7 +3985,7 @@ Test 073 cpld_control_mx025_12h PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_restart_mx025_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_restart_mx025_prod Checking test 074 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4041,7 +4041,7 @@ Test 074 cpld_restart_mx025 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_control_c192_prod Checking test 075 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4094,7 +4094,7 @@ Test 075 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_control_c384_prod Checking test 076 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4150,7 +4150,7 @@ Test 076 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_controlfrac_c384_prod Checking test 077 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4206,7 +4206,7 @@ Test 077 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_bmark_prod Checking test 078 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4262,7 +4262,7 @@ Test 078 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_bmark_wave_prod Checking test 079 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4321,7 +4321,7 @@ Test 079 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_debug_prod Checking test 080 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4374,7 +4374,7 @@ Test 080 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/datm_control_cfsr_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/datm_control_cfsr_prod Checking test 081 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4383,7 +4383,7 @@ Test 081 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/datm_control_gefs_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/datm_control_gefs_prod Checking test 082 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4392,7 +4392,7 @@ Test 082 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/datm_mx025_cfsr_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/datm_mx025_cfsr_prod Checking test 083 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4404,7 +4404,7 @@ Test 083 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_107089/datm_mx025_gefs_prod +working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/datm_mx025_gefs_prod Checking test 084 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4416,5 +4416,5 @@ Test 084 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 19 04:11:22 UTC 2020 -Elapsed time: 00h:50m:57s. Have a nice day! +Fri Nov 20 16:41:16 UTC 2020 +Elapsed time: 01h:11m:19s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 3d86a582f7..ad75dbc5f9 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Wed Nov 18 17:20:27 CST 2020 +Fri Nov 20 08:47:33 CST 2020 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_control_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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-20201118/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_decomp_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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-20201118/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_2threads_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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-20201118/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_restart_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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-20201118/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_read_inc_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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-20201118/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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-20201118/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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-20201118/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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-20201118/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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-20201118/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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-20201118/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_stochy_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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-20201118/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_iau_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_ca_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,7 +884,7 @@ Test 015 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_multigases_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1056,7 +1056,7 @@ Test 018 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,7 +1124,7 @@ Test 019 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_stretched_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1180,7 +1180,7 @@ Test 020 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,7 +1247,7 @@ Test 021 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_regional_control_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1258,7 +1258,7 @@ Test 022 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1267,7 +1267,7 @@ Test 023 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1278,7 +1278,7 @@ Test 024 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1289,7 +1289,7 @@ Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_regional_c768_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1300,7 +1300,7 @@ Test 026 fv3_ccpp_regional_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_control_debug_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1330,7 +1330,7 @@ Test 027 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -1350,7 +1350,7 @@ Test 028 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1398,7 +1398,7 @@ Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -1446,7 +1446,7 @@ Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -1494,7 +1494,7 @@ Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_csawmg_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1542,7 +1542,7 @@ Test 032 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1590,7 +1590,7 @@ Test 033 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1638,7 +1638,7 @@ Test 034 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1690,7 +1690,7 @@ Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_cpt_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1744,7 +1744,7 @@ Test 036 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gsd_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1836,7 +1836,7 @@ Test 037 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_thompson_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1904,7 +1904,7 @@ Test 038 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1972,7 +1972,7 @@ Test 039 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2040,7 +2040,7 @@ Test 040 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfs_v15p2_prod Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2108,7 +2108,7 @@ Test 041 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfs_v16beta_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfs_v16beta_prod Checking test 042 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2176,7 +2176,7 @@ Test 042 fv3_ccpp_gfs_v16beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -2244,7 +2244,7 @@ Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -2312,7 +2312,7 @@ Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -2360,7 +2360,7 @@ Test 045 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -2408,7 +2408,7 @@ Test 046 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -2456,7 +2456,7 @@ Test 047 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -2524,7 +2524,7 @@ Test 048 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -2592,7 +2592,7 @@ Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -2610,7 +2610,7 @@ Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -2678,7 +2678,7 @@ Test 051 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -2746,7 +2746,7 @@ Test 052 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -2814,7 +2814,7 @@ Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -2882,7 +2882,7 @@ Test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -2950,7 +2950,7 @@ Test 055 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -3018,7 +3018,7 @@ Test 056 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -3086,7 +3086,7 @@ Test 057 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -3154,7 +3154,7 @@ Test 058 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -3222,7 +3222,7 @@ Test 059 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -3290,7 +3290,7 @@ Test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/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 @@ -3308,7 +3308,7 @@ Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_control_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_control_prod Checking test 062 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3361,7 +3361,7 @@ Test 062 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_2threads_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_2threads_prod Checking test 063 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3414,7 +3414,7 @@ Test 063 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_decomp_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_decomp_prod Checking test 064 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3467,7 +3467,7 @@ Test 064 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_satmedmf_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_satmedmf_prod Checking test 065 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3520,7 +3520,7 @@ Test 065 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_ca_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_ca_prod Checking test 066 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3573,7 +3573,7 @@ Test 066 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_control_mx025_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_control_mx025_prod Checking test 067 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3629,7 +3629,7 @@ Test 067 cpld_control_mx025 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_control_mx025_12h_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_control_mx025_12h_prod Checking test 068 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3685,7 +3685,7 @@ Test 068 cpld_control_mx025_12h PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_restart_mx025_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_restart_mx025_prod Checking test 069 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3741,7 +3741,7 @@ Test 069 cpld_restart_mx025 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_control_c192_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_control_c192_prod Checking test 070 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3794,7 +3794,7 @@ Test 070 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_control_c384_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_control_c384_prod Checking test 071 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3850,7 +3850,7 @@ Test 071 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_controlfrac_c384_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_controlfrac_c384_prod Checking test 072 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3906,7 +3906,7 @@ Test 072 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_bmark_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_bmark_prod Checking test 073 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3962,7 +3962,7 @@ Test 073 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_bmark_wave_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_bmark_wave_prod Checking test 074 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4021,7 +4021,7 @@ Test 074 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/cpld_debug_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_debug_prod Checking test 075 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4074,7 +4074,7 @@ Test 075 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/datm_control_cfsr_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/datm_control_cfsr_prod Checking test 076 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4083,7 +4083,7 @@ Test 076 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/datm_control_gefs_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/datm_control_gefs_prod Checking test 077 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4092,7 +4092,7 @@ Test 077 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/datm_mx025_cfsr_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/datm_mx025_cfsr_prod Checking test 078 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4104,7 +4104,7 @@ Test 078 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_135724/datm_mx025_gefs_prod +working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/datm_mx025_gefs_prod Checking test 079 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4116,5 +4116,5 @@ Test 079 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Wed Nov 18 18:25:30 CST 2020 -Elapsed time: 01h:05m:03s. Have a nice day! +Fri Nov 20 09:42:33 CST 2020 +Elapsed time: 00h:55m:00s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index a547cfd587..53e223b1cc 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Thu Nov 19 15:12:05 UTC 2020 +Sun Nov 22 19:47:30 UTC 2020 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/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-20201118/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/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-20201118/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/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-20201118/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/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-20201118/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/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-20201118/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/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-20201118/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/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-20201118/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/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-20201118/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/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-20201118/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/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-20201118/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/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-20201118/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/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-20201118/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,7 +815,7 @@ Test 014 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -889,7 +889,7 @@ Test 015 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -957,7 +957,7 @@ Test 016 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1013,7 +1013,7 @@ Test 017 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,7 +1080,7 @@ Test 018 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1091,7 +1091,7 @@ Test 019 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1100,7 +1100,7 @@ Test 020 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1111,7 +1111,7 @@ Test 021 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1122,7 +1122,7 @@ Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1152,7 +1152,7 @@ Test 023 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1172,7 +1172,7 @@ Test 024 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1220,7 +1220,7 @@ Test 025 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1268,7 +1268,7 @@ Test 026 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1316,7 +1316,7 @@ Test 027 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1364,7 +1364,7 @@ Test 028 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1412,7 +1412,7 @@ Test 029 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1460,7 +1460,7 @@ Test 030 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1508,7 +1508,7 @@ Test 031 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1560,7 +1560,7 @@ Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1614,7 +1614,7 @@ Test 033 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1706,7 +1706,7 @@ Test 034 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 035 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 036 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_rrfs_v1beta_prod Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 037 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gfsv16_csawmg_prod Checking test 038 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1958,7 +1958,7 @@ Test 038 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gfsv16_csawmgt_prod Checking test 039 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2006,7 +2006,7 @@ Test 039 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gocart_clm_prod Checking test 040 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2054,7 +2054,7 @@ Test 040 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gfs_v16beta_flake_prod Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2122,7 +2122,7 @@ Test 041 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2190,7 +2190,7 @@ Test 042 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2208,7 +2208,7 @@ Test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gsd_debug_prod Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2276,7 +2276,7 @@ Test 044 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gsd_diag3d_debug_prod Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2344,7 +2344,7 @@ Test 045 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_thompson_debug_prod Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2412,7 +2412,7 @@ Test 046 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_thompson_no_aero_debug_prod Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2480,7 +2480,7 @@ Test 047 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2548,7 +2548,7 @@ Test 048 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2616,7 +2616,7 @@ Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_32291/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2634,5 +2634,5 @@ Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 19 15:47:16 UTC 2020 -Elapsed time: 00h:35m:11s. Have a nice day! +Sun Nov 22 20:23:05 UTC 2020 +Elapsed time: 00h:35m:37s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 9e87c20938..c33953c96c 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Thu Nov 19 02:00:52 UTC 2020 +Fri Nov 20 17:04:04 UTC 2020 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/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-20201118/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/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-20201118/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/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-20201118/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/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-20201118/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/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-20201118/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/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-20201118/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/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-20201118/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/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 @@ -449,7 +449,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.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-20201118/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/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-20201118/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/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-20201118/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/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-20201118/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/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-20201118/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,7 +815,7 @@ Test 014 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -864,7 +864,7 @@ Test 015 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -913,7 +913,7 @@ Test 016 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -987,7 +987,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/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 @@ -1055,7 +1055,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1111,7 +1111,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/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 @@ -1178,7 +1178,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1189,7 +1189,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1198,7 +1198,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1209,7 +1209,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/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 ............ALT CHECK......OK @@ -1220,7 +1220,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_regional_c768_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_regional_c768_prod Checking test 025 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1231,7 +1231,7 @@ Test 025 fv3_ccpp_regional_c768 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_control_debug_prod Checking test 026 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1261,7 +1261,7 @@ Test 026 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_stretched_nest_debug_prod Checking test 027 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1281,7 +1281,7 @@ Test 027 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,7 +1329,7 @@ Test 028 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1377,7 +1377,7 @@ Test 029 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1425,7 +1425,7 @@ Test 030 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1473,7 +1473,7 @@ Test 031 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1521,7 +1521,7 @@ Test 032 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1569,7 +1569,7 @@ Test 033 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1617,7 +1617,7 @@ Test 034 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1669,7 +1669,7 @@ Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1723,7 +1723,7 @@ Test 036 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1815,7 +1815,7 @@ Test 037 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1883,7 +1883,7 @@ Test 038 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1951,7 +1951,7 @@ Test 039 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2019,7 +2019,7 @@ Test 040 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2067,7 +2067,7 @@ Test 041 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2115,7 +2115,7 @@ Test 042 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2163,7 +2163,7 @@ Test 043 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2231,7 +2231,7 @@ Test 044 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2299,7 +2299,7 @@ Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2317,7 +2317,7 @@ Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2385,7 +2385,7 @@ Test 047 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2453,7 +2453,7 @@ Test 048 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2521,7 +2521,7 @@ Test 049 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2589,7 +2589,7 @@ Test 050 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2657,7 +2657,7 @@ Test 051 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2725,7 +2725,7 @@ Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2743,7 +2743,7 @@ Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_control_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_control_prod Checking test 054 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2796,7 +2796,7 @@ Test 054 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_2threads_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_2threads_prod Checking test 055 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2849,7 +2849,7 @@ Test 055 cpld_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_decomp_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_decomp_prod Checking test 056 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2902,7 +2902,7 @@ Test 056 cpld_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_satmedmf_prod Checking test 057 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2955,7 +2955,7 @@ Test 057 cpld_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_ca_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_ca_prod Checking test 058 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3008,7 +3008,7 @@ Test 058 cpld_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_control_mx025_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_control_mx025_prod Checking test 059 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3064,7 +3064,7 @@ Test 059 cpld_control_mx025 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_control_mx025_12h_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_control_mx025_12h_prod Checking test 060 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3120,7 +3120,7 @@ Test 060 cpld_control_mx025_12h PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_restart_mx025_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_restart_mx025_prod Checking test 061 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3176,7 +3176,7 @@ Test 061 cpld_restart_mx025 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_control_c192_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_control_c192_prod Checking test 062 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3229,7 +3229,7 @@ Test 062 cpld_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_control_c384_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_control_c384_prod Checking test 063 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3285,7 +3285,7 @@ Test 063 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_controlfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_controlfrac_c384_prod Checking test 064 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3341,7 +3341,7 @@ Test 064 cpld_controlfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_bmark_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_bmark_prod Checking test 065 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3397,7 +3397,7 @@ Test 065 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_bmark_wave_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_bmark_wave_prod Checking test 066 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3456,7 +3456,7 @@ Test 066 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_107411/cpld_debug_prod +working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_debug_prod Checking test 067 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3509,5 +3509,5 @@ Test 067 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 19 04:23:16 UTC 2020 -Elapsed time: 02h:22m:27s. Have a nice day! +Fri Nov 20 22:48:37 UTC 2020 +Elapsed time: 05h:44m:34s. Have a nice day! From fe5a9434270640efabde66b7a7bc8a97cb8d3f82 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 25 Nov 2020 11:14:35 -0700 Subject: [PATCH 030/109] Update develop from gsd/develop 2020/11/20: Unified gravity wave drag, updates to other GSL physics (#297) - add unified gravity wave drag (called unified ugwp) that combines the UGWP v1 with the GSL drag suite - replace high-resolution SAR (standalone regional) regression test with 25km SAR regression test - update submodule pointer for fv3atm for the changes described in the associated PRs listed below - add `rt_ccpp_dev.conf` that contains the developmental CCPP tests used by GSL and DTC (so that folks are aware of what is tested and how by DTC and GSL, in addition to what is in `rt.conf` and `rt_gnu.conf`) - turn on calls to `gcycle`/`sfcsub` for RUC LSM - regression test configuration scripts for MYNN surface layer - add `fv3_debug` modules for cheyenne.intel and cheyenne.gnu (per request from @DeniseWorthen) - bugfix in `rt.sh` to copy two missing input directories `fv3_regional_quilt_netcdf_parallel` and `fv3_stretched_nest_debug` when creating new baselines using `rt.sh -c` - enable regression testing on Gaea with Intel using the current hpc-stack-nco installation, can now use ecflow - update of CI tests and small bugfix when comparing results using `tests/compare_ncfile.py` from @MinsukJi-NOAA (see https://github.com/ufs-community/ufs-weather-model/pull/299 for details) - note, the update to `tests/compare_ncfile.py` had to be reverted Co-authored-by: DomHeinzeller <58610420+DomHeinzeller@users.noreply.github.com> Co-authored-by: samuel.trahan Co-authored-by: hannah barnes Co-authored-by: Michael Toy Co-authored-by: Samuel Trahan (NOAA contractor) <39415369+SamuelTrahanNOAA@users.noreply.github.com> Co-authored-by: MinsukJi-NOAA --- .github/workflows/main.yml | 2 +- .github/workflows/manage.yml | 8 +- FV3 | 2 +- cmake/configure_cheyenne.intel.cmake | 3 +- cmake/configure_gaea.intel.cmake | 3 +- modulefiles/cheyenne.gnu/fv3_debug | 45 + modulefiles/cheyenne.intel/fv3_debug | 45 + modulefiles/gaea.intel/fv3 | 71 +- modulefiles/linux.gnu/fv3 | 6 +- tests/RegressionTests_cheyenne.gnu.log | 110 +- tests/RegressionTests_cheyenne.intel.log | 507 +- tests/RegressionTests_gaea.intel.log | 5054 +++-------------- tests/RegressionTests_gaea.log | 1401 ----- tests/RegressionTests_hera.gnu.log | 86 +- tests/RegressionTests_hera.intel.log | 344 +- tests/RegressionTests_orion.intel.log | 322 +- tests/RegressionTests_wcoss_cray.log | 206 +- tests/RegressionTests_wcoss_dell_p3.log | 282 +- tests/ci/Dockerfile | 11 +- tests/ci/ci.sh | 2 +- tests/compile.sh | 11 +- tests/default_vars.sh | 7 + tests/fv3_conf/ccpp_gsd_run.IN | 2 +- tests/fv3_conf/ccpp_gsd_sar_25km_run.IN | 25 - tests/fv3_conf/compile_slurm.IN_gaea | 18 + tests/fv3_conf/fv3_msub.IN_gaea | 32 - tests/fv3_conf/fv3_slurm.IN_gaea | 1 + tests/parm/ccpp_gsd.nml.IN | 7 + tests/parm/ccpp_gsd_sar-model_configure.IN | 28 +- tests/parm/ccpp_gsd_sar.nml.IN | 529 +- .../parm/ccpp_gsd_sar_25km-model_configure.IN | 48 - tests/parm/ccpp_gsd_sar_25km.nml.IN | 307 - tests/parm/ccpp_gsd_sar_v1.nml.IN | 305 - tests/rt.sh | 55 +- tests/rt_ccpp_dev.conf | 55 + tests/rt_utils.sh | 2 +- tests/tests/fv3_ccpp_gsd | 1 - tests/tests/fv3_ccpp_gsd_coldstart | 1 - tests/tests/fv3_ccpp_gsd_debug | 1 - tests/tests/fv3_ccpp_gsd_diag3d_debug | 1 - tests/tests/fv3_ccpp_gsd_drag_suite | 9 +- .../fv3_ccpp_gsd_drag_suite_unified_ugwp | 107 + tests/tests/fv3_ccpp_gsd_mynnsfc | 127 + tests/tests/fv3_ccpp_gsd_mynnsfc_debug | 102 + tests/tests/fv3_ccpp_gsd_noah | 1 - tests/tests/fv3_ccpp_gsd_noah_mynnsfc | 125 + tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug | 100 + tests/tests/fv3_ccpp_gsd_sar | 9 +- ..._sar_25km_debug => fv3_ccpp_gsd_sar_debug} | 11 +- tests/tests/fv3_ccpp_gsd_unified_ugwp | 131 + tests/tests/fv3_ccpp_gsd_warmstart | 1 - tests/tests/fv3_ccpp_hrrr | 9 +- tests/tests/fv3_ccpp_rap | 9 +- tests/tests/fv3_ccpp_rrfs_v1beta | 8 +- tests/tests/fv3_ccpp_rrfs_v1beta_debug | 8 +- tests/utest | 6 +- 56 files changed, 2976 insertions(+), 7733 deletions(-) create mode 100644 modulefiles/cheyenne.gnu/fv3_debug create mode 100644 modulefiles/cheyenne.intel/fv3_debug delete mode 100644 tests/RegressionTests_gaea.log delete mode 100644 tests/fv3_conf/ccpp_gsd_sar_25km_run.IN create mode 100644 tests/fv3_conf/compile_slurm.IN_gaea delete mode 100644 tests/fv3_conf/fv3_msub.IN_gaea delete mode 100644 tests/parm/ccpp_gsd_sar_25km-model_configure.IN delete mode 100644 tests/parm/ccpp_gsd_sar_25km.nml.IN delete mode 100644 tests/parm/ccpp_gsd_sar_v1.nml.IN create mode 100644 tests/rt_ccpp_dev.conf create mode 100644 tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp create mode 100644 tests/tests/fv3_ccpp_gsd_mynnsfc create mode 100644 tests/tests/fv3_ccpp_gsd_mynnsfc_debug create mode 100644 tests/tests/fv3_ccpp_gsd_noah_mynnsfc create mode 100644 tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug rename tests/tests/{fv3_ccpp_gsd_sar_25km_debug => fv3_ccpp_gsd_sar_debug} (76%) create mode 100644 tests/tests/fv3_ccpp_gsd_unified_ugwp diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5301085819..4afd19b6e6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -68,7 +68,7 @@ jobs: - name: Free up disk space run: | sudo docker rmi $(sudo docker image ls | grep -E -m1 '' | awk '{ print $3 }') - sudo docker rmi $(sudo docker image ls | awk '/ci-test-base/ { print $3 }') + sudo docker rmi $(sudo docker image ls | awk '/ubuntu-hpc/ { print $3 }') - name: Prepare artifacts run: | diff --git a/.github/workflows/manage.yml b/.github/workflows/manage.yml index 9f12a8f372..c933b36e64 100644 --- a/.github/workflows/manage.yml +++ b/.github/workflows/manage.yml @@ -22,15 +22,15 @@ jobs: tr_id=$(cat ${GITHUB_EVENT_PATH} | ./json_helper.py get_trigger_id) tr_br=$(cat ${GITHUB_EVENT_PATH} | ./json_helper.py get_trigger_br) check=$(cat ${GITHUB_EVENT_PATH} | ./json_helper.py check_skip) - echo "::set-env name=TRIGGER_ID::${tr_id}" - echo "::set-env name=TRIGGER_BR::${tr_br}" + echo "TRIGGER_ID=${tr_id}" >> $GITHUB_ENV + echo "TRIGGER_BR=${tr_br}" >> $GITHUB_ENV echo "skip-ci: ${check}" if [[ $check == yes ]]; then echo "skip-ci is requested" - echo '::set-env name=CURR_JOB::cancelled' + echo "CURR_JOB=cancelled" >> $GITHUB_ENV curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -H "Accept: application/vnd.github.v3+json" ${repo}/$tr_id/cancel else - echo '::set-env name=CURR_JOB::running' + echo "CURR_JOB=running" >> $GITHUB_ENV fi - name: Cancel redundant jobs diff --git a/FV3 b/FV3 index b6957d83af..fd668c454a 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit b6957d83afb18d683fe56ea718fc14caa6d197f6 +Subproject commit fd668c454a9e64ed07e200f24d7c24e7dfb26472 diff --git a/cmake/configure_cheyenne.intel.cmake b/cmake/configure_cheyenne.intel.cmake index 16b88539a1..c8a689be6c 100644 --- a/cmake/configure_cheyenne.intel.cmake +++ b/cmake/configure_cheyenne.intel.cmake @@ -1,2 +1,3 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) +set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) diff --git a/cmake/configure_gaea.intel.cmake b/cmake/configure_gaea.intel.cmake index 16b88539a1..c8a689be6c 100644 --- a/cmake/configure_gaea.intel.cmake +++ b/cmake/configure_gaea.intel.cmake @@ -1,2 +1,3 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) +set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) diff --git a/modulefiles/cheyenne.gnu/fv3_debug b/modulefiles/cheyenne.gnu/fv3_debug new file mode 100644 index 0000000000..ce689a6dc6 --- /dev/null +++ b/modulefiles/cheyenne.gnu/fv3_debug @@ -0,0 +1,45 @@ +#%Module + +proc ModulesHelp {} { + puts stderr "\tcit - loads modules required for building and running UFS Model on Cheyenne/GNU" +} + +module-whatis "loads UFS Model prerequisites for Cheyenne/GNU" + +module load cmake/3.16.4 +setenv CMAKE_C_COMPILER mpicc +setenv CMAKE_CXX_COMPILER mpicxx +setenv CMAKE_Fortran_COMPILER mpif90 +setenv CMAKE_Platform cheyenne.gnu + +# load programming environment +module load ncarenv/1.3 +module load gnu/9.1.0 +module load mpt/2.22 +module load ncarcompilers/0.5.0 +module unload netcdf + +module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-nco-20201113/modulefiles/stack +module load hpc/1.0.0-beta1 +module load hpc-gnu/9.1.0 +module load hpc-mpt/2.22 + +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-debug + +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/modulefiles/cheyenne.intel/fv3_debug b/modulefiles/cheyenne.intel/fv3_debug new file mode 100644 index 0000000000..e3830bab69 --- /dev/null +++ b/modulefiles/cheyenne.intel/fv3_debug @@ -0,0 +1,45 @@ +#%Module + +proc ModulesHelp {} { + puts stderr "\tcit - loads modules required for building and running UFS Model on Cheyenne/Intel" +} + +module-whatis "loads UFS Model prerequisites for Cheyenne/Intel" + +module load cmake/3.16.4 +setenv CMAKE_C_COMPILER mpicc +setenv CMAKE_CXX_COMPILER mpicxx +setenv CMAKE_Fortran_COMPILER mpif90 +setenv CMAKE_Platform cheyenne.intel + +# load programming environment +module load ncarenv/1.3 +module load intel/19.1.1 +module load mpt/2.22 +module load ncarcompilers/0.5.0 +module unload netcdf + +module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-nco-20201113/modulefiles/stack +module load hpc/1.0.0-beta1 +module load hpc-intel/19.1.1 +module load hpc-mpt/2.22 + +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-debug + +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/modulefiles/gaea.intel/fv3 b/modulefiles/gaea.intel/fv3 index 37edd23192..7725904836 100644 --- a/modulefiles/gaea.intel/fv3 +++ b/modulefiles/gaea.intel/fv3 @@ -1,59 +1,50 @@ -#%Module###################################################################### -## -## NEMS FV3 Prerequisites: Gaea/Intel +#%Module proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running FV3 under NEMS on Gaea/Intel" + puts stderr "\tcit - loads modules required for building and running UFS Model on Gaea/Intel" } -module-whatis "loads NEMS FV3 prerequisites for Gaea/Intel" +module-whatis "loads UFS Model prerequisites for Gaea/Intel" -# NOTE: the "module purge" and loading of the module command are -# handled by the module-setup.sh (or .csh) script. - -## -## load programming environment -## this typically includes compiler, MPI and job scheduler -## module load PrgEnv-intel/6.0.5 module rm intel module rm cray-mpich module rm netcdf module load intel/18.0.6.288 module load cray-mpich/7.7.11 +module load cray-python/3.7.3.2 + +module load cmake/3.17.0 +setenv CMAKE_C_COMPILER cc +setenv CMAKE_CXX_COMPILER CC +setenv CMAKE_Fortran_COMPILER ftn +setenv CMAKE_Platform gaea.intel + +module use /lustre/f2/pdata/esrl/gsd/ufs/hpc-stack-nco-20201116/modulefiles/stack -## -## use pre-compiled PNG, NetCDF, ESMF and NCEP libraries for above compiler / MPI combination -## -module use -a /lustre/f2/pdata/esrl/gsd/ufs/ufs-stack-20200909/intel-18.0.6.288/cray-mpich-7.7.11/modules +module load hpc/1.0.0-beta1 +module load hpc-intel/18.0.6.288 +module load hpc-cray-mpich/7.7.11 -module load libpng/1.6.35 +module load jasper/2.0.15 +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 esmf/8.1.0bs27 +module load pio/2.5.1 +module load esmf/8_1_0_beta_snapshot_27 -module load bacio/2.4.0 +module load bacio/2.4.1 module load crtm/2.3.0 -module load g2/3.4.0 -module load g2tmpl/1.9.0 -module load ip/3.3.0 -module load nceppost/dceca26 -module load nemsio/2.5.1 -module load sp/2.3.0 -module load w3emc/2.7.0 -module load w3nco/2.4.0 - -module load gfsio/1.4.0 -module load sfcio/1.4.0 -module load sigio/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 # Needed at runtime: module load alps - -## -## load cmake -## -module load cmake/3.17.0 -setenv CMAKE_C_COMPILER cc -setenv CMAKE_CXX_COMPILER CC -setenv CMAKE_Fortran_COMPILER ftn -setenv CMAKE_Platform gaea.intel diff --git a/modulefiles/linux.gnu/fv3 b/modulefiles/linux.gnu/fv3 index d29365a290..c93e096e2c 100755 --- a/modulefiles/linux.gnu/fv3 +++ b/modulefiles/linux.gnu/fv3 @@ -26,7 +26,7 @@ export CMAKE_Fortran_COMPILER=${FC} ## ## use own NetCDF library ## -export NETCDF=${NETCDF:-/usr/local} +export NETCDF=${NETCDF:-/home/builder/opt} ## ## use SIONlib library if installed and environment variable is set @@ -41,10 +41,10 @@ fi ## ## use pre-compiled EMSF library for above compiler / MPI combination ## -export ESMFMKFILE=${ESMFMKFILE:-/usr/local/lib/esmf.mk} +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:-/usr/local/NCEPlibs} +export NCEPLIBS_DIR=${NCEPLIBS_DIR:-/home/builder/opt} export CMAKE_PREFIX_PATH=${NCEPLIBS_DIR} diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 37592c10e5..56259ffe56 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Sun Nov 15 20:15:30 MST 2020 +Tue Nov 24 09:54:19 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/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-20201112/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/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-20201112/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/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 @@ -186,8 +186,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-20201112/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -322,8 +322,8 @@ Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_gsd results .... Test 007 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -550,8 +550,8 @@ Checking test 008 fv3_ccpp_thompson results .... Test 008 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -618,8 +618,8 @@ Checking test 009 fv3_ccpp_thompson_no_aero results .... Test 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -686,8 +686,8 @@ Checking test 010 fv3_ccpp_rrfs_v1beta results .... Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -754,8 +754,8 @@ Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -772,14 +772,38 @@ Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... + 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 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 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 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 Test 013 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -846,8 +870,8 @@ Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Test 014 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -914,8 +938,8 @@ Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Test 015 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,8 +1006,8 @@ Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1050,8 +1074,8 @@ Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,8 +1148,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1192,8 +1216,8 @@ Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27804/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1211,5 +1235,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sun Nov 15 20:31:40 MST 2020 -Elapsed time: 00h:16m:10s. Have a nice day! +Tue Nov 24 10:11:29 MST 2020 +Elapsed time: 00h:17m:10s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 9c594c2e40..4a64920a53 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Mon Nov 16 05:25:49 MST 2020 +Tue Nov 24 13:00:04 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/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-20201112/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/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-20201112/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/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-20201112/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/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-20201112/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/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-20201112/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/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-20201112/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/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,9 +438,57 @@ 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-20201112/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/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 + 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.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.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 + 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 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -483,12 +531,12 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS +Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -531,12 +579,12 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGauss_nemsio PASS +Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -579,12 +627,12 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS +Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_stochy_prod -Checking test 011 fv3_ccpp_stochy results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -647,12 +695,12 @@ Checking test 011 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_stochy PASS +Test 012 fv3_ccpp_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_iau_prod -Checking test 012 fv3_ccpp_iau results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_iau_prod +Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -715,12 +763,12 @@ Checking test 012 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 012 fv3_ccpp_iau PASS +Test 013 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_ca_prod +Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -783,12 +831,12 @@ Checking test 013 fv3_ccpp_ca 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_ca PASS +Test 014 fv3_ccpp_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_lheatstrg_prod -Checking test 014 fv3_ccpp_lheatstrg results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_lheatstrg_prod +Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -831,12 +879,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 015 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_multigases_prod -Checking test 015 fv3_ccpp_multigases results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_multigases_prod +Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -905,12 +953,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 016 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_control_32bit_prod -Checking test 016 fv3_ccpp_control_32bit results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_control_32bit_prod +Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -973,12 +1021,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 017 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_stretched_prod -Checking test 017 fv3_ccpp_stretched results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_stretched_prod +Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1029,12 +1077,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 018 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_stretched_nest_prod -Checking test 018 fv3_ccpp_stretched_nest results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_stretched_nest_prod +Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1096,55 +1144,104 @@ 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 019 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_regional_control_prod -Checking test 019 fv3_ccpp_regional_control results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_regional_control_prod +Checking test 020 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 020 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_regional_restart_prod -Checking test 020 fv3_ccpp_regional_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_regional_restart_prod +Checking test 021 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 021 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_regional_quilt_prod -Checking test 021 fv3_ccpp_regional_quilt results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_regional_quilt_prod +Checking test 022 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 022 fv3_ccpp_regional_quilt PASS + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 023 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 +Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_control_debug_prod -Checking test 022 fv3_ccpp_control_debug results .... -Test 022 fv3_ccpp_control_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_control_debug_prod +Checking test 024 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 024 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_stretched_nest_debug_prod -Checking test 023 fv3_ccpp_stretched_nest_debug results .... -Test 023 fv3_ccpp_stretched_nest_debug PASS + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_stretched_nest_debug_prod +Checking test 025 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + 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 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfdlmp_prod -Checking test 024 fv3_ccpp_gfdlmp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfdlmp_prod +Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1187,12 +1284,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 026 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1235,12 +1332,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 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1283,12 +1380,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 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_csawmg_prod -Checking test 027 fv3_ccpp_csawmg results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_csawmg_prod +Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1331,12 +1428,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 029 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_satmedmf_prod -Checking test 028 fv3_ccpp_satmedmf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_satmedmf_prod +Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1379,12 +1476,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 030 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_satmedmfq_prod -Checking test 029 fv3_ccpp_satmedmfq results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_satmedmfq_prod +Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1427,12 +1524,12 @@ 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 031 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfdlmp_32bit_prod -Checking test 030 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfdlmp_32bit_prod +Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1475,12 +1572,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 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1527,12 +1624,12 @@ Checking test 031 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 031 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_cpt_prod -Checking test 032 fv3_ccpp_cpt results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_cpt_prod +Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1581,12 +1678,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 034 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gsd_prod -Checking test 033 fv3_ccpp_gsd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gsd_prod +Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1673,12 +1770,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 035 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_thompson_prod -Checking test 034 fv3_ccpp_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_thompson_prod +Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1741,12 +1838,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 036 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_thompson_no_aero_prod -Checking test 035 fv3_ccpp_thompson_no_aero results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_thompson_no_aero_prod +Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1809,12 +1906,12 @@ 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 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_rrfs_v1beta_prod -Checking test 036 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_rrfs_v1beta_prod +Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1877,12 +1974,12 @@ Checking test 036 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 036 fv3_ccpp_rrfs_v1beta PASS +Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfs_v15p2_prod -Checking test 037 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/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 @@ -1945,12 +2042,12 @@ Checking test 037 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 037 fv3_ccpp_gfs_v15p2 PASS +Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfs_v16beta_prod -Checking test 038 fv3_ccpp_gfs_v16beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/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 @@ -2013,12 +2110,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 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 039 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2081,12 +2178,12 @@ Checking test 039 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 039 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 041 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 040 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 042 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2149,12 +2246,12 @@ Checking test 040 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 040 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 042 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gocart_clm_prod -Checking test 041 fv3_ccpp_gocart_clm results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gocart_clm_prod +Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2197,12 +2294,12 @@ Checking test 041 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 041 fv3_ccpp_gocart_clm PASS +Test 043 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 042 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2265,12 +2362,12 @@ Checking test 042 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 042 fv3_ccpp_gfs_v16beta_flake PASS +Test 044 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 043 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 045 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 @@ -2333,12 +2430,12 @@ Checking test 043 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 043 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2351,12 +2448,12 @@ Checking test 044 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 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 045 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 047 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2419,12 +2516,12 @@ Checking test 045 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 045 fv3_ccpp_gfs_v16beta_debug PASS +Test 047 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 048 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 @@ -2487,12 +2584,12 @@ Checking test 046 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 046 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 049 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 @@ -2555,12 +2652,12 @@ Checking test 047 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 047 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gsd_debug_prod -Checking test 048 fv3_ccpp_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gsd_debug_prod +Checking test 050 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2623,12 +2720,12 @@ Checking test 048 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 048 fv3_ccpp_gsd_debug PASS +Test 050 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 049 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2691,12 +2788,12 @@ Checking test 049 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 049 fv3_ccpp_gsd_diag3d_debug PASS +Test 051 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_thompson_debug_prod -Checking test 050 fv3_ccpp_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_thompson_debug_prod +Checking test 052 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2759,12 +2856,12 @@ Checking test 050 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 050 fv3_ccpp_thompson_debug PASS +Test 052 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 051 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 053 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 @@ -2827,12 +2924,12 @@ Checking test 051 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 051 fv3_ccpp_thompson_no_aero_debug PASS +Test 053 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 052 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2895,12 +2992,12 @@ Checking test 052 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 052 fv3_ccpp_rrfs_v1beta_debug PASS +Test 054 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 055 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 @@ -2963,12 +3060,12 @@ Checking test 053 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 053 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201112/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29432/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -2981,9 +3078,9 @@ Checking test 054 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 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Nov 16 05:57:21 MST 2020 -Elapsed time: 00h:31m:32s. Have a nice day! +Tue Nov 24 13:35:40 MST 2020 +Elapsed time: 00h:35m:36s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 18b5a44ee4..70dce041ef 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,10 +1,10 @@ -Sun Dec 29 10:07:24 EST 2019 +Tue Nov 24 10:14:28 EST 2020 Start Regression test -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_control -Checking test 001 fv3_control results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_control_prod +Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -67,12 +67,12 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 001 fv3_control PASS +Test 001 fv3_ccpp_control PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_decomp -Checking test 002 fv3_decomp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/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 @@ -135,12 +135,12 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_decomp PASS +Test 002 fv3_ccpp_decomp PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_2threads -Checking test 003 fv3_2threads results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_2threads_prod +Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -203,12 +203,12 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_2threads PASS +Test 003 fv3_ccpp_2threads PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_restart -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_restart -Checking test 004 fv3_restart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_restart_prod +Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -271,12 +271,12 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_restart PASS +Test 004 fv3_ccpp_restart PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_read_inc -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_read_inc -Checking test 005 fv3_read_inc results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -339,70 +339,22 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_read_inc PASS +Test 005 fv3_ccpp_read_inc PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfdlmp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_gfdlmp -Checking test 006 fv3_gfdlmp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/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 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 006 fv3_gfdlmp PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfdlmprad_gwd -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_gfdlmprad_gwd -Checking test 007 fv3_gfdlmprad_gwd 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.nc .........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 Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -423,102 +375,34 @@ Checking test 007 fv3_gfdlmprad_gwd 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 007 fv3_gfdlmprad_gwd PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfdlmprad_noahmp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_gfdlmprad_noahmp -Checking test 008 fv3_gfdlmprad_noahmp 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 008 fv3_gfdlmprad_noahmp PASS +Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_thompson -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_thompson -Checking test 009 fv3_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/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 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 phyf000.nc .........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 Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -539,92 +423,24 @@ Checking test 009 fv3_thompson 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 009 fv3_thompson PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_wsm6 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_wsm6 -Checking test 010 fv3_wsm6 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 010 fv3_wsm6 PASS +Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_wrtGauss_netcdf_esmf -Checking test 011 fv3_wrtGauss_netcdf_esmf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -667,12 +483,12 @@ Checking test 011 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_wrtGauss_netcdf_esmf PASS +Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_wrtGauss_netcdf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_wrtGauss_netcdf -Checking test 012 fv3_wrtGauss_netcdf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -715,12 +531,12 @@ Checking test 012 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_wrtGauss_netcdf PASS +Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_wrtGauss_nemsio -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_wrtGauss_nemsio -Checking test 013 fv3_wrtGauss_nemsio results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -763,12 +579,12 @@ Checking test 013 fv3_wrtGauss_nemsio 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_wrtGauss_nemsio PASS +Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_wrtGauss_nemsio_c192 -Checking test 014 fv3_wrtGauss_nemsio_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -811,12 +627,12 @@ Checking test 014 fv3_wrtGauss_nemsio_c192 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_wrtGauss_nemsio_c192 PASS +Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_stochy -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_stochy -Checking test 015 fv3_stochy results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -879,42 +695,22 @@ Checking test 015 fv3_stochy 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_stochy PASS +Test 012 fv3_ccpp_stochy PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_iau -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_iau -Checking test 016 fv3_iau results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_lheatstrg_prod +Checking test 013 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 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 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 @@ -947,22 +743,42 @@ Checking test 016 fv3_iau 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_iau PASS +Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_csawmgshoc -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_csawmgshoc -Checking test 017 fv3_csawmgshoc results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_multigases_prod +Checking test 014 fv3_ccpp_multigases 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 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 @@ -995,3531 +811,18 @@ Checking test 017 fv3_csawmgshoc 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_csawmgshoc PASS + 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 014 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_csawmg -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_csawmg -Checking test 018 fv3_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 018 fv3_csawmg PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_rasmgshoc -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_rasmgshoc -Checking test 019 fv3_rasmgshoc 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 019 fv3_rasmgshoc PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_csawmg3shoc127 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_csawmg3shoc127 -Checking test 020 fv3_csawmg3shoc127 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 020 fv3_csawmg3shoc127 PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_satmedmf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_satmedmf -Checking test 021 fv3_satmedmf 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 021 fv3_satmedmf PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_lheatstrg -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_lheatstrg -Checking test 022 fv3_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 022 fv3_lheatstrg PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_appbuild -Checking test 023 fv3_appbuild 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 023 fv3_appbuild PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control_32bit -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_control_32bit -Checking test 024 fv3_control_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.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 024 fv3_control_32bit PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_stretched -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_stretched -Checking test 025 fv3_stretched 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 fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 025 fv3_stretched PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_stretched_nest -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_stretched_nest -Checking test 026 fv3_stretched_nest 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.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 026 fv3_stretched_nest PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_regional_control -Checking test 027 fv3_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 027 fv3_regional_control PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_regional_restart -Checking test 028 fv3_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 028 fv3_regional_restart PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_regional_quilt -Checking test 029 fv3_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 029 fv3_regional_quilt PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_regional_c768 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_regional_c768 -Checking test 030 fv3_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 030 fv3_regional_c768 PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_control_repro -Checking test 031 fv3_control 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 031 fv3_control PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_decomp_repro -Checking test 032 fv3_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 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 032 fv3_decomp PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_2threads_repro -Checking test 033 fv3_2threads 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 033 fv3_2threads PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_restart_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_restart_repro -Checking test 034 fv3_restart 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 034 fv3_restart PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_read_inc_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_read_inc_repro -Checking test 035 fv3_read_inc 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 035 fv3_read_inc PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_wrtGauss_netcdf_esmf_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_wrtGauss_netcdf_esmf_repro -Checking test 036 fv3_wrtGauss_netcdf_esmf 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.nc .........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 - 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 036 fv3_wrtGauss_netcdf_esmf PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_wrtGauss_netcdf_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_wrtGauss_netcdf_repro -Checking test 037 fv3_wrtGauss_netcdf 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.nc .........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 - 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_wrtGauss_netcdf PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_wrtGauss_nemsio_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_wrtGauss_nemsio_repro -Checking test 038 fv3_wrtGauss_nemsio 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 038 fv3_wrtGauss_nemsio PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_wrtGauss_nemsio_c192_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_wrtGauss_nemsio_c192_repro -Checking test 039 fv3_wrtGauss_nemsio_c192 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 039 fv3_wrtGauss_nemsio_c192 PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_stochy_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_stochy_repro -Checking test 040 fv3_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/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_stochy PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_iau_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_iau_repro -Checking test 041 fv3_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 041 fv3_iau PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfdlmp_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_gfdlmp_repro -Checking test 042 fv3_gfdlmp 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 042 fv3_gfdlmp PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfdlmprad_gwd_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_gfdlmprad_gwd_repro -Checking test 043 fv3_gfdlmprad_gwd 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 043 fv3_gfdlmprad_gwd PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfdlmprad_noahmp_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_gfdlmprad_noahmp_repro -Checking test 044 fv3_gfdlmprad_noahmp 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 044 fv3_gfdlmprad_noahmp PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_csawmgshoc_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_csawmgshoc_repro -Checking test 045 fv3_csawmgshoc 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_csawmgshoc PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_csawmg3shoc127_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_csawmg3shoc127_repro -Checking test 046 fv3_csawmg3shoc127 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_csawmg3shoc127 PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_csawmg_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_csawmg_repro -Checking test 047 fv3_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 047 fv3_csawmg PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_satmedmf_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_satmedmf_repro -Checking test 048 fv3_satmedmf 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_satmedmf PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_appbuild_repro -Checking test 049 fv3_appbuild 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 049 fv3_appbuild PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control_32bit_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_control_32bit_repro -Checking test 050 fv3_control_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.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 050 fv3_control_32bit PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_stretched_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_stretched_repro -Checking test 051 fv3_stretched 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 fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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_stretched PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_stretched_nest_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_stretched_nest_repro -Checking test 052 fv3_stretched_nest 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.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 052 fv3_stretched_nest PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_regional_control_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_regional_control_repro -Checking test 053 fv3_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 053 fv3_regional_control PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_regional_restart_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_regional_restart_repro -Checking test 054 fv3_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 054 fv3_regional_restart PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_regional_quilt_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_regional_quilt_repro -Checking test 055 fv3_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 055 fv3_regional_quilt PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_regional_c768_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_regional_c768_repro -Checking test 056 fv3_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 056 fv3_regional_c768 PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfdlmp_32bit_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_gfdlmp_32bit_repro -Checking test 057 fv3_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 057 fv3_gfdlmp_32bit PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfs_v15_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_gfs_v15_repro -Checking test 058 fv3_gfs_v15 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 058 fv3_gfs_v15 PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfs_v15plus_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_gfs_v15plus_repro -Checking test 059 fv3_gfs_v15plus 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 059 fv3_gfs_v15plus PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_cpt_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_cpt_repro -Checking test 060 fv3_cpt 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 - 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 060 fv3_cpt PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_control_repro -Checking test 061 fv3_ccpp_control 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 061 fv3_ccpp_control PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_decomp_repro -Checking test 062 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 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 062 fv3_ccpp_decomp PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_2threads_repro -Checking test 063 fv3_ccpp_2threads 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 063 fv3_ccpp_2threads PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_restart_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_restart_repro -Checking test 064 fv3_ccpp_restart 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 064 fv3_ccpp_restart PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_read_inc_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_read_inc_repro -Checking test 065 fv3_ccpp_read_inc 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 065 fv3_ccpp_read_inc PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_wrtGauss_netcdf_esmf_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_wrtGauss_netcdf_esmf_repro -Checking test 066 fv3_ccpp_wrtGauss_netcdf_esmf 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.nc .........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 - 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 066 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_wrtGauss_netcdf_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_wrtGauss_netcdf_repro -Checking test 067 fv3_ccpp_wrtGauss_netcdf 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.nc .........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 - 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 067 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_wrtGauss_nemsio_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_wrtGauss_nemsio_repro -Checking test 068 fv3_ccpp_wrtGauss_nemsio 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 068 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_wrtGauss_nemsio_c192_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_wrtGauss_nemsio_c192_repro -Checking test 069 fv3_ccpp_wrtGauss_nemsio_c192 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 069 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_stochy_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_stochy_repro -Checking test 070 fv3_ccpp_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/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 070 fv3_ccpp_stochy PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_iau_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_iau_repro -Checking test 071 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 071 fv3_ccpp_iau PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_appbuild_repro -Checking test 072 fv3_ccpp_appbuild 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 072 fv3_ccpp_appbuild PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control_32bit_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_control_32bit_repro -Checking test 073 fv3_ccpp_control_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.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 073 fv3_ccpp_control_32bit PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_stretched_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_stretched_repro -Checking test 074 fv3_ccpp_stretched 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 fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 074 fv3_ccpp_stretched PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_stretched_nest_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_stretched_nest_repro -Checking test 075 fv3_ccpp_stretched_nest 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.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 075 fv3_ccpp_stretched_nest PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_regional_control_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_regional_control_repro -Checking test 076 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 076 fv3_ccpp_regional_control PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_regional_restart_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_regional_restart_repro -Checking test 077 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 077 fv3_ccpp_regional_restart PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_regional_quilt_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_regional_quilt_repro -Checking test 078 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 078 fv3_ccpp_regional_quilt PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_regional_c768_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_regional_c768_repro -Checking test 079 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 079 fv3_ccpp_regional_c768 PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfdlmp_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_gfdlmp_repro -Checking test 080 fv3_ccpp_gfdlmp 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 080 fv3_ccpp_gfdlmp PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfdlmprad_gwd_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_gfdlmprad_gwd_repro -Checking test 081 fv3_ccpp_gfdlmprad_gwd 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 081 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfdlmprad_noahmp_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_gfdlmprad_noahmp_repro -Checking test 082 fv3_ccpp_gfdlmprad_noahmp 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 082 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_csawmg_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_csawmg_repro -Checking test 083 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 083 fv3_ccpp_csawmg PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_satmedmf_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_satmedmf_repro -Checking test 084 fv3_ccpp_satmedmf 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 084 fv3_ccpp_satmedmf PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfdlmp_32bit_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_gfdlmp_32bit_repro -Checking test 085 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 085 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfs_v15_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_gfs_v15_repro -Checking test 086 fv3_ccpp_gfs_v15 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 086 fv3_ccpp_gfs_v15 PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfs_v15plus_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_gfs_v15plus_repro -Checking test 087 fv3_ccpp_gfs_v15plus 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 087 fv3_ccpp_gfs_v15plus PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_cpt_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_cpt_repro -Checking test 088 fv3_ccpp_cpt 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 - 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 088 fv3_ccpp_cpt PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gsd_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_gsd_repro -Checking test 089 fv3_ccpp_gsd results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_control_32bit_prod +Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4538,42 +841,18 @@ Checking test 089 fv3_ccpp_gsd results .... Comparing phyf024.tile4.nc .........OK Comparing phyf024.tile5.nc .........OK Comparing phyf024.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 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 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 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 @@ -4606,42 +885,30 @@ Checking test 089 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 089 fv3_ccpp_gsd PASS +Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_control_prod -Checking test 090 fv3_ccpp_control results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_stretched_prod +Checking test 016 fv3_ccpp_stretched 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 fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -4674,110 +941,192 @@ Checking test 090 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 090 fv3_ccpp_control PASS +Test 016 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_decomp_prod -Checking test 091 fv3_ccpp_decomp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_stretched_nest_prod +Checking test 017 fv3_ccpp_stretched_nest 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 atmos_4xdaily.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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 091 fv3_ccpp_decomp PASS + Comparing RESTART/sfc_data.nest02.tile7.nc .........OK +Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_2threads_prod -Checking test 092 fv3_ccpp_2threads 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 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_regional_control_prod +Checking test 018 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 + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_regional_restart_prod +Checking test 019 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 + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_regional_quilt_prod +Checking test 020 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 + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 021 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 021 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_regional_c768_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_regional_c768_prod +Checking test 022 fv3_ccpp_regional_c768 results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf003.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf003.nc .........OK +Test 022 fv3_ccpp_regional_c768 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_control_debug_prod +Checking test 023 fv3_ccpp_control_debug results .... 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 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 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 +Test 023 fv3_ccpp_control_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_stretched_nest_debug_prod +Checking test 024 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + 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 + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gfdlmp_prod +Checking test 025 fv3_ccpp_gfdlmp 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 @@ -4798,54 +1147,34 @@ Checking test 092 fv3_ccpp_2threads 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/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 092 fv3_ccpp_2threads PASS + 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 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_restart_prod -Checking test 093 fv3_ccpp_restart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 026 fv3_ccpp_gfdlmprad_gwd 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 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 @@ -4866,54 +1195,34 @@ Checking test 093 fv3_ccpp_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/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 093 fv3_ccpp_restart PASS + 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 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_read_inc_prod -Checking test 094 fv3_ccpp_read_inc results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 027 fv3_ccpp_gfdlmprad_noahmp 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 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 @@ -4929,39 +1238,39 @@ Checking test 094 fv3_ccpp_read_inc results .... 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/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 -Test 094 fv3_ccpp_read_inc PASS + 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 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 095 fv3_ccpp_wrtGauss_netcdf_esmf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_csawmg_prod +Checking test 028 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.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.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 @@ -4994,22 +1303,22 @@ Checking test 095 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 095 fv3_ccpp_wrtGauss_netcdf_esmf PASS +Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 096 fv3_ccpp_wrtGauss_netcdf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_satmedmf_prod +Checking test 029 fv3_ccpp_satmedmf 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.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.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 @@ -5042,12 +1351,12 @@ Checking test 096 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 096 fv3_ccpp_wrtGauss_netcdf PASS +Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 097 fv3_ccpp_wrtGauss_nemsio results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_satmedmfq_prod +Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5090,12 +1399,12 @@ Checking test 097 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 097 fv3_ccpp_wrtGauss_nemsio PASS +Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 098 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gfdlmp_32bit_prod +Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5126,54 +1435,34 @@ Checking test 098 fv3_ccpp_wrtGauss_nemsio_c192 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/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 098 fv3_ccpp_wrtGauss_nemsio_c192 PASS + 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 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_stochy_prod -Checking test 099 fv3_ccpp_stochy results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_cpt_prod +Checking test 032 fv3_ccpp_cpt 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 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 @@ -5206,12 +1495,18 @@ Checking test 099 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 099 fv3_ccpp_stochy PASS + 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 032 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_appbuild_prod -Checking test 100 fv3_ccpp_appbuild results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gsd_prod +Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5230,6 +1525,18 @@ Checking test 100 fv3_ccpp_appbuild results .... Comparing phyf024.tile4.nc .........OK Comparing phyf024.tile5.nc .........OK Comparing phyf024.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 dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK @@ -5242,6 +1549,18 @@ Checking test 100 fv3_ccpp_appbuild results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.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 @@ -5274,12 +1593,12 @@ Checking test 100 fv3_ccpp_appbuild results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 100 fv3_ccpp_appbuild PASS +Test 033 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_control_32bit_prod -Checking test 101 fv3_ccpp_control_32bit results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_thompson_prod +Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5342,195 +1661,110 @@ Checking test 101 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 101 fv3_ccpp_control_32bit PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_stretched_prod -Checking test 102 fv3_ccpp_stretched 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 fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 102 fv3_ccpp_stretched PASS +Test 034 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_stretched_nest_prod -Checking test 103 fv3_ccpp_stretched_nest results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_thompson_no_aero_prod +Checking test 035 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 atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.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.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 103 fv3_ccpp_stretched_nest PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_regional_control_prod -Checking test 104 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 104 fv3_ccpp_regional_control PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_regional_restart_prod -Checking test 105 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 105 fv3_ccpp_regional_restart PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_regional_quilt_prod -Checking test 106 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 106 fv3_ccpp_regional_quilt PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_regional_c768_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_regional_c768_prod -Checking test 107 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 107 fv3_ccpp_regional_c768 PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_control_debug_prod -Checking test 108 fv3_ccpp_control_debug results .... -Test 108 fv3_ccpp_control_debug PASS +Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_stretched_nest_debug_prod -Checking test 109 fv3_ccpp_stretched_nest_debug results .... -Test 109 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_gfdlmp_prod -Checking test 110 fv3_ccpp_gfdlmp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_rrfs_v1beta_prod +Checking test 036 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.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 @@ -5551,24 +1785,24 @@ Checking test 110 fv3_ccpp_gfdlmp 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 110 fv3_ccpp_gfdlmp 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 036 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 111 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gocart_clm_prod +Checking test 037 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5611,22 +1845,42 @@ Checking test 111 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 111 fv3_ccpp_gfdlmprad_gwd PASS +Test 037 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 112 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gfs_v16beta_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 038 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.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 @@ -5659,22 +1913,42 @@ Checking test 112 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 112 fv3_ccpp_gfdlmprad_noahmp PASS +Test 038 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_csawmg_prod -Checking test 113 fv3_ccpp_csawmg results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 039 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 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 @@ -5695,34 +1969,72 @@ Checking test 113 fv3_ccpp_csawmg 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/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 113 fv3_ccpp_csawmg PASS + 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 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_satmedmf_prod -Checking test 114 fv3_ccpp_satmedmf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gsd_debug_prod +Checking test 041 fv3_ccpp_gsd_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.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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5755,22 +2067,42 @@ Checking test 114 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 114 fv3_ccpp_satmedmf PASS +Test 041 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_gfdlmp_32bit_prod -Checking test 115 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 042 fv3_ccpp_gsd_diag3d_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.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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5791,24 +2123,24 @@ Checking test 115 fv3_ccpp_gfdlmp_32bit 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 115 fv3_ccpp_gfdlmp_32bit 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_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfs_v15_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_gfs_v15_prod -Checking test 116 fv3_ccpp_gfs_v15 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_thompson_debug_prod +Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5821,24 +2153,24 @@ Checking test 116 fv3_ccpp_gfs_v15 results .... 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 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 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 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 @@ -5859,24 +2191,24 @@ Checking test 116 fv3_ccpp_gfs_v15 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 116 fv3_ccpp_gfs_v15 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_thompson_debug PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gfs_v15plus_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_gfs_v15plus_prod -Checking test 117 fv3_ccpp_gfs_v15plus results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 044 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 @@ -5889,24 +2221,24 @@ Checking test 117 fv3_ccpp_gfs_v15plus results .... 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 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 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 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 @@ -5927,34 +2259,54 @@ Checking test 117 fv3_ccpp_gfs_v15plus 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 117 fv3_ccpp_gfs_v15plus 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 044 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_cpt_prod -Checking test 118 fv3_ccpp_cpt results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 045 fv3_ccpp_rrfs_v1beta_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.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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5987,18 +2339,12 @@ Checking test 118 fv3_ccpp_cpt results .... 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 118 fv3_ccpp_cpt PASS +Test 045 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL18_INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_4552/fv3_ccpp_gsd_prod -Checking test 119 fv3_ccpp_gsd results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 046 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 @@ -6011,48 +2357,24 @@ Checking test 119 fv3_ccpp_gsd results .... 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 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -6073,21 +2395,39 @@ Checking test 119 fv3_ccpp_gsd 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/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 119 fv3_ccpp_gsd PASS + 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_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK + 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_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sun Dec 29 23:35:12 EST 2019 -Elapsed time: 13h:27m:49s. Have a nice day! +Tue Nov 24 10:48:26 EST 2020 +Elapsed time: 00h:33m:59s. Have a nice day! diff --git a/tests/RegressionTests_gaea.log b/tests/RegressionTests_gaea.log deleted file mode 100644 index 56a032d45e..0000000000 --- a/tests/RegressionTests_gaea.log +++ /dev/null @@ -1,1401 +0,0 @@ -Mon Jun 18 09:34:09 EDT 2018 -Start Regression test - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_control -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_control -Checking test 01 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 01 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_control -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_decomp -Checking test 02 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 02 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_control -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_2threads -Checking test 03 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 03 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_restart -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_restart -Checking test 04 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 04 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_read_inc -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_read_inc -Checking test 05 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 05 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_gfdlmp -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_gfdlmp -Checking test 06 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 06 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_thompson -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_thompson -Checking test 07 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 07 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_wsm6 -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_wsm6 -Checking test 08 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 08 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_wrtGauss_netcdf -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_wrtGauss_netcdf_esmf -Checking test 09 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.nc .........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 - 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 09 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_wrtGauss_netcdf -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_wrtGauss_netcdf -Checking test 10 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.nc .........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 - 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 10 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_wrtGauss_nemsio -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_wrtGauss_nemsio -Checking test 11 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 11 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_wrtGauss_nemsio_c192 -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_wrtGauss_nemsio_c192 -Checking test 12 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 12 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_stochy -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_stochy -Checking test 13 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 13 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_iau -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_iau -Checking test 14 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 14 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_csawmgshoc -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_csawmgshoc -Checking test 15 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 - 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 15 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_csawmg -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_csawmg -Checking test 16 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 - 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 16 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_rasmgshoc -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_rasmgshoc -Checking test 17 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 - 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 17 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_csawmg3shoc127 -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_csawmg3shoc127 -Checking test 18 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 - 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 18 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_satmedmf -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_satmedmf -Checking test 19 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 19 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_control -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_appbuild -Checking test 20 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 20 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_control_32bit -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_control_32bit -Checking test 21 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 21 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_stretched -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_stretched -Checking test 22 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 nggps2d.tile1.nc .........OK - Comparing nggps2d.tile2.nc .........OK - Comparing nggps2d.tile3.nc .........OK - Comparing nggps2d.tile4.nc .........OK - Comparing nggps2d.tile5.nc .........OK - Comparing nggps2d.tile6.nc .........OK - Comparing nggps3d_4xdaily.tile1.nc .........OK - Comparing nggps3d_4xdaily.tile2.nc .........OK - Comparing nggps3d_4xdaily.tile3.nc .........OK - Comparing nggps3d_4xdaily.tile4.nc .........OK - Comparing nggps3d_4xdaily.tile5.nc .........OK - Comparing nggps3d_4xdaily.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 22 PASS - - -baseline dir = /lustre/f1/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/trunk-20180605/fv3_stretched_nest -working dir = /lustre/f1//Rusty.Benson/FV3_RT/rt_3929/fv3_stretched_nest -Checking test 23 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.nest02.tile7.nc .........OK - Comparing nggps2d.tile1.nc .........OK - Comparing nggps2d.tile2.nc .........OK - Comparing nggps2d.tile3.nc .........OK - Comparing nggps2d.tile4.nc .........OK - Comparing nggps2d.tile5.nc .........OK - Comparing nggps2d.tile6.nc .........OK - Comparing nggps2d.nest02.tile7.nc .........OK - Comparing nggps3d_4xdaily.tile1.nc .........OK - Comparing nggps3d_4xdaily.tile2.nc .........OK - Comparing nggps3d_4xdaily.tile3.nc .........OK - Comparing nggps3d_4xdaily.tile4.nc .........OK - Comparing nggps3d_4xdaily.tile5.nc .........OK - Comparing nggps3d_4xdaily.tile6.nc .........OK - Comparing nggps3d_4xdaily.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 23 PASS - - -REGRESSION TEST WAS SUCCESSFUL -Mon Jun 18 12:38:01 EDT 2018 diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 39f44392c1..122983979e 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Mon Nov 23 16:55:21 UTC 2020 +Tue Nov 24 03:42:18 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/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-20201118/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/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-20201118/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/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 @@ -186,8 +186,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-20201118/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -322,8 +322,8 @@ Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_gsd results .... Test 007 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -550,8 +550,8 @@ Checking test 008 fv3_ccpp_thompson results .... Test 008 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -618,8 +618,8 @@ Checking test 009 fv3_ccpp_thompson_no_aero results .... Test 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -686,8 +686,8 @@ Checking test 010 fv3_ccpp_rrfs_v1beta results .... Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -754,8 +754,8 @@ Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -772,8 +772,8 @@ Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -802,8 +802,8 @@ Checking test 013 fv3_ccpp_control_debug results .... Test 013 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -870,8 +870,8 @@ Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Test 014 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Test 015 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1074,8 +1074,8 @@ Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1216,8 +1216,8 @@ Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_101916/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1235,5 +1235,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Nov 23 18:45:49 UTC 2020 -Elapsed time: 01h:50m:29s. Have a nice day! +Tue Nov 24 04:04:14 UTC 2020 +Elapsed time: 00h:21m:56s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index a2bc008668..5f5aefecc6 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Fri Nov 20 15:29:57 UTC 2020 +Tue Nov 24 15:12:32 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 ............ALT CHECK......OK + Comparing phyf000.nc .........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-20201118/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_lndp_prod Checking test 015 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_lndp results .... Test 015 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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-20201118/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_regional_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_regional_c768_prod Checking test 028 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1415,8 +1415,8 @@ Checking test 028 fv3_ccpp_regional_c768 results .... Test 028 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_control_debug_prod Checking test 029 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1445,8 +1445,8 @@ Checking test 029 fv3_ccpp_control_debug results .... Test 029 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_stretched_nest_debug_prod Checking test 030 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1465,8 +1465,8 @@ Checking test 030 fv3_ccpp_stretched_nest_debug results .... Test 030 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmp_prod Checking test 031 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1513,8 +1513,8 @@ Checking test 031 fv3_ccpp_gfdlmp results .... Test 031 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmprad_gwd_prod Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,8 +1561,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Test 032 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1609,8 +1609,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Test 033 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_csawmg_prod Checking test 034 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,8 +1657,8 @@ Checking test 034 fv3_ccpp_csawmg results .... Test 034 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_satmedmf_prod Checking test 035 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 035 fv3_ccpp_satmedmf results .... Test 035 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_satmedmfq_prod Checking test 036 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1753,8 +1753,8 @@ Checking test 036 fv3_ccpp_satmedmfq results .... Test 036 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmp_32bit_prod Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1801,8 +1801,8 @@ Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Test 037 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1853,8 +1853,8 @@ Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Test 038 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_cpt_prod Checking test 039 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1907,8 +1907,8 @@ Checking test 039 fv3_ccpp_cpt results .... Test 039 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gsd_prod Checking test 040 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1999,8 +1999,8 @@ Checking test 040 fv3_ccpp_gsd results .... Test 040 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_rap_prod Checking test 041 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2067,8 +2067,8 @@ Checking test 041 fv3_ccpp_rap results .... Test 041 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_hrrr_prod Checking test 042 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2135,8 +2135,8 @@ Checking test 042 fv3_ccpp_hrrr results .... Test 042 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_thompson_prod Checking test 043 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2203,8 +2203,8 @@ Checking test 043 fv3_ccpp_thompson results .... Test 043 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_thompson_no_aero_prod Checking test 044 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2271,8 +2271,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero results .... Test 044 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_rrfs_v1beta_prod Checking test 045 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2339,8 +2339,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta results .... Test 045 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v15p2_prod Checking test 046 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2407,8 +2407,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2 results .... Test 046 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v16beta_prod Checking test 047 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2475,8 +2475,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta results .... Test 047 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -2543,8 +2543,8 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -2611,8 +2611,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 049 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -2659,8 +2659,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmg results .... Test 050 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -2707,8 +2707,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... Test 051 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -2755,8 +2755,8 @@ Checking test 052 fv3_ccpp_gocart_clm results .... Test 052 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -2823,8 +2823,8 @@ Checking test 053 fv3_ccpp_gfs_v16beta_flake results .... Test 053 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -2891,8 +2891,8 @@ Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -2909,8 +2909,8 @@ Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -2977,8 +2977,8 @@ Checking test 056 fv3_ccpp_gfs_v15p2_debug results .... Test 056 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -3045,8 +3045,8 @@ Checking test 057 fv3_ccpp_gfs_v16beta_debug results .... Test 057 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -3113,8 +3113,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -3181,8 +3181,8 @@ Checking test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -3249,8 +3249,8 @@ Checking test 060 fv3_ccpp_gsd_debug results .... Test 060 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -3317,8 +3317,8 @@ Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... Test 061 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -3385,8 +3385,8 @@ Checking test 062 fv3_ccpp_thompson_debug results .... Test 062 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -3453,8 +3453,8 @@ Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... Test 063 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -3521,8 +3521,8 @@ Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... Test 064 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -3589,8 +3589,8 @@ Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/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 @@ -3607,8 +3607,8 @@ Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_control_prod Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3660,8 +3660,8 @@ Checking test 067 cpld_control results .... Test 067 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_2threads_prod Checking test 068 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3713,8 +3713,8 @@ Checking test 068 cpld_2threads results .... Test 068 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_decomp_prod Checking test 069 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3766,8 +3766,8 @@ Checking test 069 cpld_decomp results .... Test 069 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_satmedmf_prod Checking test 070 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3819,8 +3819,8 @@ Checking test 070 cpld_satmedmf results .... Test 070 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_ca_prod Checking test 071 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3872,8 +3872,8 @@ Checking test 071 cpld_ca results .... Test 071 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_control_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_control_mx025_prod Checking test 072 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3928,8 +3928,8 @@ Checking test 072 cpld_control_mx025 results .... Test 072 cpld_control_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_control_mx025_12h_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_12h_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_control_mx025_12h_prod Checking test 073 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3984,8 +3984,8 @@ Checking test 073 cpld_control_mx025_12h results .... Test 073 cpld_control_mx025_12h PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_restart_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_restart_mx025_prod Checking test 074 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4040,8 +4040,8 @@ Checking test 074 cpld_restart_mx025 results .... Test 074 cpld_restart_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_control_c192_prod Checking test 075 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4093,8 +4093,8 @@ Checking test 075 cpld_control_c192 results .... Test 075 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_control_c384_prod Checking test 076 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4149,8 +4149,8 @@ Checking test 076 cpld_control_c384 results .... Test 076 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_controlfrac_c384_prod Checking test 077 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4205,8 +4205,8 @@ Checking test 077 cpld_controlfrac_c384 results .... Test 077 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_bmark_prod Checking test 078 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4261,8 +4261,8 @@ Checking test 078 cpld_bmark results .... Test 078 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_bmark_wave_prod Checking test 079 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4320,8 +4320,8 @@ Checking test 079 cpld_bmark_wave results .... Test 079 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/cpld_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_debug_prod Checking test 080 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4373,8 +4373,8 @@ Checking test 080 cpld_debug results .... Test 080 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/datm_control_cfsr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/datm_control_cfsr_prod Checking test 081 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4382,8 +4382,8 @@ Checking test 081 datm_control_cfsr results .... Test 081 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/datm_control_gefs_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/datm_control_gefs_prod Checking test 082 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4391,8 +4391,8 @@ Checking test 082 datm_control_gefs results .... Test 082 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/datm_mx025_cfsr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/datm_mx025_cfsr_prod Checking test 083 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4403,8 +4403,8 @@ Checking test 083 datm_mx025_cfsr results .... Test 083 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Chan-hoo.Jeon/FV3_RT/rt_79660/datm_mx025_gefs_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/datm_mx025_gefs_prod Checking test 084 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4416,5 +4416,5 @@ Test 084 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 20 16:41:16 UTC 2020 -Elapsed time: 01h:11m:19s. Have a nice day! +Tue Nov 24 16:16:27 UTC 2020 +Elapsed time: 01h:03m:56s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index ad75dbc5f9..912f040220 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Fri Nov 20 08:47:33 CST 2020 +Tue Nov 24 09:15:18 CST 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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-20201118/INTEL/fv3_control_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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-20201118/INTEL/fv3_control_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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-20201118/INTEL/fv3_restart_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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-20201118/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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-20201118/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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-20201118/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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-20201118/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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-20201118/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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-20201118/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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-20201118/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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-20201118/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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-20201118/INTEL/fv3_iau_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_ca_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,8 +883,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1055,8 +1055,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_control_32bit results .... Test 019 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1179,8 +1179,8 @@ Checking test 020 fv3_ccpp_stretched results .... Test 020 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 021 fv3_ccpp_stretched_nest results .... Test 021 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1257,8 +1257,8 @@ Checking test 022 fv3_ccpp_regional_control results .... Test 022 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 023 fv3_ccpp_regional_restart results .... Test 023 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1277,8 +1277,8 @@ Checking test 024 fv3_ccpp_regional_quilt results .... Test 024 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1288,8 +1288,8 @@ Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_regional_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1299,8 +1299,8 @@ Checking test 026 fv3_ccpp_regional_c768 results .... Test 026 fv3_ccpp_regional_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1329,8 +1329,8 @@ Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -1349,8 +1349,8 @@ Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1397,8 +1397,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -1445,8 +1445,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -1493,8 +1493,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1541,8 +1541,8 @@ Checking test 032 fv3_ccpp_csawmg results .... Test 032 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1589,8 +1589,8 @@ Checking test 033 fv3_ccpp_satmedmf results .... Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1637,8 +1637,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1689,8 +1689,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1743,8 +1743,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1835,8 +1835,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,8 +1903,8 @@ Checking test 038 fv3_ccpp_thompson results .... Test 038 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1971,8 +1971,8 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2039,8 +2039,8 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v15p2_prod Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,8 +2107,8 @@ Checking test 041 fv3_ccpp_gfs_v15p2 results .... Test 041 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v16beta_prod Checking test 042 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2175,8 +2175,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta results .... Test 042 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -2243,8 +2243,8 @@ Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -2311,8 +2311,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -2359,8 +2359,8 @@ Checking test 045 fv3_ccpp_gfsv16_csawmg results .... Test 045 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -2407,8 +2407,8 @@ Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... Test 046 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -2455,8 +2455,8 @@ Checking test 047 fv3_ccpp_gocart_clm results .... Test 047 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -2523,8 +2523,8 @@ Checking test 048 fv3_ccpp_gfs_v16beta_flake results .... Test 048 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -2591,8 +2591,8 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -2609,8 +2609,8 @@ Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -2677,8 +2677,8 @@ Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... Test 051 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -2745,8 +2745,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_debug results .... Test 052 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -2813,8 +2813,8 @@ Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -2881,8 +2881,8 @@ Checking test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -2949,8 +2949,8 @@ Checking test 055 fv3_ccpp_gsd_debug results .... Test 055 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -3017,8 +3017,8 @@ Checking test 056 fv3_ccpp_gsd_diag3d_debug results .... Test 056 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -3085,8 +3085,8 @@ Checking test 057 fv3_ccpp_thompson_debug results .... Test 057 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -3153,8 +3153,8 @@ Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... Test 058 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -3221,8 +3221,8 @@ Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... Test 059 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -3289,8 +3289,8 @@ Checking test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/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 @@ -3307,8 +3307,8 @@ Checking test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_control_prod Checking test 062 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3360,8 +3360,8 @@ Checking test 062 cpld_control results .... Test 062 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_2threads_prod Checking test 063 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3413,8 +3413,8 @@ Checking test 063 cpld_2threads results .... Test 063 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_decomp_prod Checking test 064 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3466,8 +3466,8 @@ Checking test 064 cpld_decomp results .... Test 064 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_satmedmf_prod Checking test 065 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3519,8 +3519,8 @@ Checking test 065 cpld_satmedmf results .... Test 065 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_ca_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_ca_prod Checking test 066 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3572,8 +3572,8 @@ Checking test 066 cpld_ca results .... Test 066 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_control_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_control_mx025_prod Checking test 067 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3628,8 +3628,8 @@ Checking test 067 cpld_control_mx025 results .... Test 067 cpld_control_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_control_mx025_12h_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_12h_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_control_mx025_12h_prod Checking test 068 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3684,8 +3684,8 @@ Checking test 068 cpld_control_mx025_12h results .... Test 068 cpld_control_mx025_12h PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_restart_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_restart_mx025_prod Checking test 069 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3740,8 +3740,8 @@ Checking test 069 cpld_restart_mx025 results .... Test 069 cpld_restart_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_control_c192_prod Checking test 070 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3793,8 +3793,8 @@ Checking test 070 cpld_control_c192 results .... Test 070 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_control_c384_prod Checking test 071 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3849,8 +3849,8 @@ Checking test 071 cpld_control_c384 results .... Test 071 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_controlfrac_c384_prod Checking test 072 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3905,8 +3905,8 @@ Checking test 072 cpld_controlfrac_c384 results .... Test 072 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_bmark_prod Checking test 073 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3961,8 +3961,8 @@ Checking test 073 cpld_bmark results .... Test 073 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_bmark_wave_prod Checking test 074 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4020,8 +4020,8 @@ Checking test 074 cpld_bmark_wave results .... Test 074 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/cpld_debug_ccpp -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/cpld_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_debug_prod Checking test 075 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4073,8 +4073,8 @@ Checking test 075 cpld_debug results .... Test 075 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_control_cfsr -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/datm_control_cfsr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/datm_control_cfsr_prod Checking test 076 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4082,8 +4082,8 @@ Checking test 076 datm_control_cfsr results .... Test 076 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_control_gefs -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/datm_control_gefs_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/datm_control_gefs_prod Checking test 077 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4091,8 +4091,8 @@ Checking test 077 datm_control_gefs results .... Test 077 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_mx025_cfsr -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/datm_mx025_cfsr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/datm_mx025_cfsr_prod Checking test 078 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4103,8 +4103,8 @@ Checking test 078 datm_mx025_cfsr results .... Test 078 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/datm_mx025_gefs -working dir = /work/noaa/fv3-cam/chjeon/stmp/chjeon/FV3_RT/rt_224996/datm_mx025_gefs_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/datm_mx025_gefs_prod Checking test 079 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4116,5 +4116,5 @@ Test 079 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 20 09:42:33 CST 2020 -Elapsed time: 00h:55m:00s. Have a nice day! +Tue Nov 24 10:11:14 CST 2020 +Elapsed time: 00h:55m:56s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 53e223b1cc..d891e3cb2e 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Sun Nov 22 19:47:30 UTC 2020 +Tue Nov 24 15:29:05 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/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-20201118/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/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-20201118/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/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-20201118/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/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-20201118/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/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-20201118/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/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-20201118/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/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-20201118/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/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-20201118/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/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-20201118/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/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-20201118/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/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-20201118/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,8 +1012,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,8 +1079,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1090,8 +1090,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1121,8 +1121,8 @@ Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1151,8 +1151,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1171,8 +1171,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,8 +1267,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,8 +1363,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,8 +1411,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,8 +1459,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,8 +1507,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,8 +1559,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,8 +1613,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 035 fv3_ccpp_thompson results .... Test 035 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Test 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_rrfs_v1beta_prod Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_rrfs_v1beta results .... Test 037 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfsv16_csawmg_prod Checking test 038 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1957,8 +1957,8 @@ Checking test 038 fv3_ccpp_gfsv16_csawmg results .... Test 038 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfsv16_csawmgt_prod Checking test 039 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2005,8 +2005,8 @@ Checking test 039 fv3_ccpp_gfsv16_csawmgt results .... Test 039 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gocart_clm_prod Checking test 040 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2053,8 +2053,8 @@ Checking test 040 fv3_ccpp_gocart_clm results .... Test 040 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfs_v16beta_flake_prod Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2121,8 +2121,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... Test 041 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2189,8 +2189,8 @@ Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 042 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2207,8 +2207,8 @@ Checking test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gsd_debug_prod Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2275,8 +2275,8 @@ Checking test 044 fv3_ccpp_gsd_debug results .... Test 044 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gsd_diag3d_debug_prod Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2343,8 +2343,8 @@ Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Test 045 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_thompson_debug_prod Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2411,8 +2411,8 @@ Checking test 046 fv3_ccpp_thompson_debug results .... Test 046 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_thompson_no_aero_debug_prod Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2479,8 +2479,8 @@ Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Test 047 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2547,8 +2547,8 @@ Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Test 048 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2615,8 +2615,8 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_28085/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2634,5 +2634,5 @@ Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sun Nov 22 20:23:05 UTC 2020 -Elapsed time: 00h:35m:37s. Have a nice day! +Tue Nov 24 16:00:44 UTC 2020 +Elapsed time: 00h:31m:39s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index c33953c96c..6ab1e6652b 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Fri Nov 20 17:04:04 UTC 2020 +Tue Nov 24 15:26:00 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/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-20201118/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/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-20201118/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/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-20201118/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/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-20201118/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/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-20201118/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/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-20201118/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/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-20201118/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/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,10 +447,10 @@ 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 .........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 @@ -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-20201118/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/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-20201118/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/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-20201118/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/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-20201118/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -863,8 +863,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -912,8 +912,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -986,8 +986,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/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 @@ -1054,8 +1054,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/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 @@ -1177,8 +1177,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1188,8 +1188,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1197,8 +1197,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1208,19 +1208,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/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 ............ALT CHECK......OK - Comparing dynf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_regional_c768_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_regional_c768_prod Checking test 025 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1230,8 +1230,8 @@ Checking test 025 fv3_ccpp_regional_c768 results .... Test 025 fv3_ccpp_regional_c768 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_control_debug_prod Checking test 026 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1260,8 +1260,8 @@ Checking test 026 fv3_ccpp_control_debug results .... Test 026 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_stretched_nest_debug_prod Checking test 027 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1280,8 +1280,8 @@ Checking test 027 fv3_ccpp_stretched_nest_debug results .... Test 027 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,8 +1328,8 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,8 +1376,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1424,8 +1424,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1472,8 +1472,8 @@ Checking test 031 fv3_ccpp_csawmg results .... Test 031 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1520,8 +1520,8 @@ Checking test 032 fv3_ccpp_satmedmf results .... Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1568,8 +1568,8 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1616,8 +1616,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1668,8 +1668,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,8 +1722,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1814,8 +1814,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1882,8 +1882,8 @@ Checking test 038 fv3_ccpp_thompson results .... Test 038 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1950,8 +1950,8 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2018,8 +2018,8 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2066,8 +2066,8 @@ Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Test 041 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2114,8 +2114,8 @@ Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Test 042 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2162,8 +2162,8 @@ Checking test 043 fv3_ccpp_gocart_clm results .... Test 043 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2230,8 +2230,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Test 044 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2298,8 +2298,8 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2316,8 +2316,8 @@ Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2384,8 +2384,8 @@ Checking test 047 fv3_ccpp_gsd_debug results .... Test 047 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2452,8 +2452,8 @@ Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Test 048 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2520,8 +2520,8 @@ Checking test 049 fv3_ccpp_thompson_debug results .... Test 049 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2588,8 +2588,8 @@ Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Test 050 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2656,8 +2656,8 @@ Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Test 051 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2724,8 +2724,8 @@ Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2742,8 +2742,8 @@ Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_control_prod Checking test 054 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2795,8 +2795,8 @@ Checking test 054 cpld_control results .... Test 054 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_2threads_prod Checking test 055 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2848,8 +2848,8 @@ Checking test 055 cpld_2threads results .... Test 055 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_decomp_prod Checking test 056 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2901,8 +2901,8 @@ Checking test 056 cpld_decomp results .... Test 056 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_satmedmf_prod Checking test 057 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2954,8 +2954,8 @@ Checking test 057 cpld_satmedmf results .... Test 057 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_ca_prod Checking test 058 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3007,8 +3007,8 @@ Checking test 058 cpld_ca results .... Test 058 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_control_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_control_mx025_prod Checking test 059 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3063,8 +3063,8 @@ Checking test 059 cpld_control_mx025 results .... Test 059 cpld_control_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_control_mx025_12h_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_mx025_12h_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_control_mx025_12h_prod Checking test 060 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3119,8 +3119,8 @@ Checking test 060 cpld_control_mx025_12h results .... Test 060 cpld_control_mx025_12h PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_restart_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_restart_mx025_prod Checking test 061 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3175,8 +3175,8 @@ Checking test 061 cpld_restart_mx025 results .... Test 061 cpld_restart_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_control_c192_prod Checking test 062 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3228,8 +3228,8 @@ Checking test 062 cpld_control_c192 results .... Test 062 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_control_c384_prod Checking test 063 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3284,8 +3284,8 @@ Checking test 063 cpld_control_c384 results .... Test 063 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_controlfrac_c384_prod Checking test 064 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3340,8 +3340,8 @@ Checking test 064 cpld_controlfrac_c384 results .... Test 064 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_bmark_prod Checking test 065 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3396,8 +3396,8 @@ Checking test 065 cpld_bmark results .... Test 065 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_bmark_wave_prod Checking test 066 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3455,8 +3455,8 @@ Checking test 066 cpld_bmark_wave results .... Test 066 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Chan-Hoo.Jeon/FV3_RT/rt_186944/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_debug_prod Checking test 067 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3509,5 +3509,5 @@ Test 067 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 20 22:48:37 UTC 2020 -Elapsed time: 05h:44m:34s. Have a nice day! +Tue Nov 24 22:18:24 UTC 2020 +Elapsed time: 06h:52m:25s. Have a nice day! diff --git a/tests/ci/Dockerfile b/tests/ci/Dockerfile index bb28d78247..3a8bd8ebf0 100644 --- a/tests/ci/Dockerfile +++ b/tests/ci/Dockerfile @@ -1,11 +1,10 @@ -From minsukjinoaa/ci-test-base:ubuntu20.04-v3.5 -#From minsukjinoaa/ci-test-base:centos7-v3.5 +From noaaemc/ubuntu-hpc:v1 -ENV HOME=/home/tester -COPY --chown=tester:tester . $HOME/ufs-weather-model +ENV HOME=/home/builder +COPY --chown=builder:builder . $HOME/ufs-weather-model -USER tester -ENV USER=tester +USER builder +ENV USER=builder ARG test_name ARG build_case ENV test_name=$test_name diff --git a/tests/ci/ci.sh b/tests/ci/ci.sh index d332078e5f..f37cbde0f8 100755 --- a/tests/ci/ci.sh +++ b/tests/ci/ci.sh @@ -75,7 +75,7 @@ if [ $BUILD = "true" ]; then elif [ $RUN == "true" ]; then sudo docker run -d --rm -v DataVolume:/tmp minsukjinoaa/fv3-input-data:develop-20200713 - sudo docker run -d -e test_case=${TEST_CASE} -v DataVolume:/home/tester/data/NEMSfv3gfs/develop-20200713 --name my-container ${IMG_NAME} + sudo docker run -d -e test_case=${TEST_CASE} -v DataVolume:/home/builder/data/NEMSfv3gfs/develop-20201118 --name my-container ${IMG_NAME} echo 'cache,rss,shmem' >memory_stat sleep 3 diff --git a/tests/compile.sh b/tests/compile.sh index 4300685133..7399863255 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -56,6 +56,11 @@ set +x if [[ $MACHINE_ID == macosx.* ]] || [[ $MACHINE_ID == linux.* ]]; then source $PATHTR/modulefiles/${MACHINE_ID}/fv3 else + # Activate lua environment for gaea + if [[ $MACHINE_ID == gaea.* ]] ; then + source /lustre/f2/pdata/esrl/gsd/contrib/lua-5.1.4.9/init/init_lmod.sh + fi + # Load fv3 module module use $PATHTR/modulefiles/${MACHINE_ID} modulefile="fv3" if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then @@ -160,7 +165,11 @@ export CMAKE_FLAGS bash -x ${PATHTR}/build.sh mv ${BUILD_DIR}/ufs_model ${PATHTR}/tests/${BUILD_NAME}.exe -cp ${PATHTR}/modulefiles/${MACHINE_ID}/fv3 ${PATHTR}/tests/modules.${BUILD_NAME} +if [[ "${MAKE_OPT}" == "DEBUG=Y" ]]; then + cp ${PATHTR}/modulefiles/${MACHINE_ID}/fv3_debug ${PATHTR}/tests/modules.${BUILD_NAME} +else + cp ${PATHTR}/modulefiles/${MACHINE_ID}/fv3 ${PATHTR}/tests/modules.${BUILD_NAME} +fi if [ $clean_after = YES ] ; then rm -rf ${BUILD_DIR} diff --git a/tests/default_vars.sh b/tests/default_vars.sh index f7c7a9f0c7..1e7a4c4632 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -242,6 +242,13 @@ export LDIAG_UGWP=.F. export DO_UGWP=.F. export DO_TOFD=.F. export GWD_OPT=1 +export DO_UGWP_V0=.F. +export DO_UGWP_V0_OROG_ONLY=.F. +export DO_GSL_DRAG_LS_BL=.F. +export DO_GSL_DRAG_SS=.F. +export DO_GSL_DRAG_TOFD=.F. +export DO_UGWP_V1=.F. +export DO_UGWP_V1_OROG_ONLY=.F. # PBL export SATMEDMF=.F. diff --git a/tests/fv3_conf/ccpp_gsd_run.IN b/tests/fv3_conf/ccpp_gsd_run.IN index d3f3817e5b..c05a9202fc 100644 --- a/tests/fv3_conf/ccpp_gsd_run.IN +++ b/tests/fv3_conf/ccpp_gsd_run.IN @@ -66,6 +66,6 @@ if [ $IMP_PHYSICS = 8 ]; then cp @[RTPWD]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . fi -if [ $GWD_OPT = 3 ] || [ $GWD_OPT = 33 ]; then +if [ $GWD_OPT = 3 ] || [ $GWD_OPT = 33 ] || [ $GWD_OPT = 2 ] || [ $GWD_OPT = 22 ]; then cp @[RTPWD]/FV3_input_data_gsd/drag_suite/* INPUT/ fi diff --git a/tests/fv3_conf/ccpp_gsd_sar_25km_run.IN b/tests/fv3_conf/ccpp_gsd_sar_25km_run.IN deleted file mode 100644 index 931e8ff8a8..0000000000 --- a/tests/fv3_conf/ccpp_gsd_sar_25km_run.IN +++ /dev/null @@ -1,25 +0,0 @@ -rm -fr INPUT RESTART -mkdir INPUT RESTART -cp @[RTPWD]/FV3_input_data_sar_25km/INPUT/*.nc INPUT/ - -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . - -# Copy SAR diag and field table files -cp @[RTPWD]/FV3_input_data_sar_25km/diag_table_gsd_sar diag_table -cp @[RTPWD]/FV3_input_data_sar_25km/field_table_gsd_sar field_table - -cp @[RTPWD]/FV3_input_data/*configure . - -# Thompson MP lookup tables - copy standard and SIONlib tables of precomputed tables -cp @[RTPWD]/FV3_input_data_gsd/thompson_tables_precomp.sl . -cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qs.dat . -cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qg.dat . -cp @[RTPWD]/FV3_input_data_gsd/freezeH2O.dat . -cp @[RTPWD]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . diff --git a/tests/fv3_conf/compile_slurm.IN_gaea b/tests/fv3_conf/compile_slurm.IN_gaea new file mode 100644 index 0000000000..f5051b92a6 --- /dev/null +++ b/tests/fv3_conf/compile_slurm.IN_gaea @@ -0,0 +1,18 @@ +#!/bin/bash -l +#SBATCH -e err +#SBATCH -o out +#SBATCH --account=@[ACCNR] +#SBATCH --qos=@[QUEUE] +#SBATCH --clusters=@[PARTITION] +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=8 +#SBATCH --time=30 +#SBATCH --job-name="@[JBNME]" + +set -eux + +echo "Compile started: " `date` + +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] + +echo "Compile ended: " `date` diff --git a/tests/fv3_conf/fv3_msub.IN_gaea b/tests/fv3_conf/fv3_msub.IN_gaea deleted file mode 100644 index 653ba8e666..0000000000 --- a/tests/fv3_conf/fv3_msub.IN_gaea +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash -l -#PBS -S /bin/bash -#PBS -o out -#PBS -e err -#PBS -N @[JBNME] -#PBS -A @[ACCNR] -#PBS -q @[QUEUE] -#PBS -d . -#PBS -l partition=@[PARTITION] -#PBS -l size=@[NODES] -#PBS -l walltime=00:@[WLCLK]:00 - -set -ux - -set +x -source ./module-setup.sh -module use $( pwd -P ) -module load modules.fv3 -set -x -module list - -echo "Model started: " `date` - -export OMP_NUM_THREADS=@[THRD] -export OMP_STACKSIZE=1024M -export NC_BLKSZ=1M - -aprun -n @[TASKS] -d@[THRD] -j1 ./fv3.exe - -echo "Model ended: " `date` - -exit diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea index 5679b1be8d..ada92b658d 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea +++ b/tests/fv3_conf/fv3_slurm.IN_gaea @@ -12,6 +12,7 @@ set -ux set +x source ./module-setup.sh +source /lustre/f2/pdata/esrl/gsd/contrib/lua-5.1.4.9/init/init_lmod.sh module use $( pwd -P ) module load modules.fv3 set -x diff --git a/tests/parm/ccpp_gsd.nml.IN b/tests/parm/ccpp_gsd.nml.IN index b300fb42bc..92623f50a9 100644 --- a/tests/parm/ccpp_gsd.nml.IN +++ b/tests/parm/ccpp_gsd.nml.IN @@ -193,6 +193,13 @@ bl_mynn_edmf = 1 bl_mynn_edmf_mom = 1 gwd_opt = @[GWD_OPT] + do_ugwp_v0 = @[DO_UGWP_V0] + do_ugwp_v0_orog_only = @[DO_UGWP_V0_OROG_ONLY] + do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] + do_gsl_drag_ss = @[DO_GSL_DRAG_SS] + do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] + do_ugwp_v1 = @[DO_UGWP_V1] + do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] / &gfdl_cloud_microphysics_nml diff --git a/tests/parm/ccpp_gsd_sar-model_configure.IN b/tests/parm/ccpp_gsd_sar-model_configure.IN index 8b8737b003..088bb36527 100644 --- a/tests/parm/ccpp_gsd_sar-model_configure.IN +++ b/tests/parm/ccpp_gsd_sar-model_configure.IN @@ -1,15 +1,15 @@ total_member: 1 -PE_MEMBER01: 840 +PE_MEMBER01: 24 start_year: 2019 -start_month: 07 -start_day: 12 -start_hour: 12 +start_month: 05 +start_day: 20 +start_hour: 00 start_minute: 0 start_second: 0 -nhours_fcst: 3 +nhours_fcst: @[FHMAX] RUN_CONTINUE: .false. ENS_SPS: .false. -dt_atmos: 50 +dt_atmos: 300 cpl: .false. calendar: 'julian' memuse_verbose: .false. @@ -19,11 +19,11 @@ ncores_per_node: 24 debug_affinity: .true. restart_interval: 0 output_1st_tstep_rst: .false. + quilting: .true. print_esmf: .false. - write_groups: 1 -write_tasks_per_group: 24 +write_tasks_per_group: 4 num_files: 2 filename_base: 'dyn''phy' output_file: 'netcdf' @@ -35,12 +35,12 @@ cen_lon: -97.5 cen_lat: 38.5 stdlat1: 38.5 stdlat2: 38.5 -nx: 1738 -ny: 974 -lon1: -122.21414225 -lat1: 22.41403305 -dx: 3000.0 -dy: 3000.0 +nx: 191 +ny: 97 +lon1: -120.72962370 +lat1: 25.11648583 +dx: 25000.0 +dy: 25000.0 nfhout: 1 nfhmax_hf: 60 diff --git a/tests/parm/ccpp_gsd_sar.nml.IN b/tests/parm/ccpp_gsd_sar.nml.IN index 3a561bdaf1..39d40f8162 100644 --- a/tests/parm/ccpp_gsd_sar.nml.IN +++ b/tests/parm/ccpp_gsd_sar.nml.IN @@ -1,306 +1,307 @@ &amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', + interp_oi_sst = .true. + use_ncep_sst = .true. + use_ncep_ice = .false. + no_anom_sst = .false. + data_set = 'reynolds_oi', + date_out_of_range = 'climo', / &atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = 3 - ccpp_suite = 'FV3_GSD_SAR' + blocksize = 550 + chksum_debug = .false. + dycore_only = .false. + fdiag = 1 + ccpp_suite = 'FV3_GSD_SAR' / &diag_manager_nml - prepend_date = .F. + prepend_date = .F. / &fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, + checksum_required = .false. + max_files_r = 100, + max_files_w = 100, / &fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 2000200, - print_memory_usage = .false. + clock_grain = 'ROUTINE', + domains_stack_size = 3000000, + print_memory_usage = .false. / &fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' + grid_file = 'INPUT/grid_spec.nc' / - &fv_core_nml - layout = 34,24 - io_layout = 1,1 - npx = 1735 - npy = 1009 - ntiles = 1, - npz = 64 - !grid_type = -1 - make_nh = .T. - fv_debug = .T. - range_warn = .T. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .F. - tau = 5. - rf_cutoff = 20.e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.04 - kord_tm = -11 - kord_mt = 11 - kord_wz = 11 - kord_tr = 11 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 4 - n_split = 5 - nwat = 6 - na_init = 1 - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 300 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - ke_bg = 0. - do_vort_damp = .true. - external_ic = .T. - external_eta = .T. - gfs_phil = .false. - nggps_ic = .T. - mountain = .F. - ncep_ic = .F. - d_con = 1.0 - delt_max = 0.002 - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 0. - do_sat_adj = .F. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = .F. - no_dycore = .false. - z_tracer = .T. - read_increment = .F. - res_latlon_dynamics = "fv3_increment.nc" +&fv_core_nml + layout = 4,5 + io_layout = 1,1 + npx = 201 + npy = 111 + ntiles = 1, + npz = 64 + !grid_type = -1 + make_nh = .T. + fv_debug = .T. + range_warn = .T. + reset_eta = .F. + n_sponge = 24 + nudge_qv = .F. + tau = 5. + rf_cutoff = 20.e2 + d2_bg_k1 = 0.20 + d2_bg_k2 = 0.04 + kord_tm = -11 + kord_mt = 11 + kord_wz = 11 + kord_tr = 11 + hydrostatic = .F. + phys_hydrostatic = .F. + use_hydro_pressure = .F. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 4 + n_split = 5 + nwat = 6 + na_init = 1 + d_ext = 0.0 + dnats = 0 + fv_sg_adj = 300 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.12 + vtdm4 = 0.02 + ke_bg = 0. + do_vort_damp = .true. + external_ic = .T. + external_eta = .T. + gfs_phil = .false. + nggps_ic = .T. + mountain = .F. + ncep_ic = .F. + d_con = 1.0 + delt_max = 0.002 + hord_mt = 6 + hord_vt = 6 + hord_tm = 6 + hord_dp = -6 + hord_tr = 8 + adjust_dry_mass = .F. + consv_te = 0. + do_sat_adj = .F. + consv_am = .F. + fill = .T. + dwind_2d = .F. + print_freq = 6 + warm_start = .F. + no_dycore = .false. + z_tracer = .T. + read_increment = .F. + res_latlon_dynamics = "fv3_increment.nc" - do_schmidt = .true. - target_lat = 38.5 - target_lon = -97.5 - stretch_fac = 0.999 -!! nord_zs_filter = 4 - n_zs_filter = 0 - regional = .true. - bc_update_interval = 3 + do_schmidt = .true. + target_lat = 38.5 + target_lon = -97.5 + stretch_fac = 0.999 +! nord_zs_filter = 4 + n_zs_filter = 0 + regional = .true. + bc_update_interval = 6 - full_zs_filter = .F. !unreleased feature + full_zs_filter = .F. !unreleased feature - nord_zs_filter = 4 - n_zs_filter = 0 ! safety + nord_zs_filter = 4 + n_zs_filter = 0 ! safety / &surf_map_nml - zero_ocean = .F. - cd4 = 0.12 - cd2 = -1 - n_del2_strong = 0 - n_del2_weak = 2 - n_del4 = 1 - max_slope = 0.4 - peak_fac = 1. + zero_ocean = .F. + cd4 = 0.12 + cd2 = -1 + n_del2_strong = 0 + n_del2_weak = 2 + n_del4 = 1 + max_slope = 0.4 + peak_fac = 1. / &external_ic_nml - filtered_terrain = .true. - levp = 65 - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 + filtered_terrain = .true. + levp = 65 + gfs_dwinds = .true. + checker_tr = .F. + nt_checker = 0 / &gfs_physics_nml - fhzero = 6. - h2o_phys = .true. - ldiag3d = .false. - fhcyc = 0 - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 8 - ttendlim = 0.005 - ltaerosol = .T. - lradar = .T. - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - iaer = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .false. - shal_cnv = .false. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .F. - satmedmf = .false. - lheatstrg = .F. - do_mynnedmf = .T. - do_mynnsfclay = .false. - effr_in = .true. - random_clds = .false. - trans_trac = .true. - cnvcld = .false. - imfshalcnv = 0 - imfdeepcnv = 0 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - debug = .false. - oz_phys = .false. - oz_phys_2015 = .true. - nstf_name = 2,1,1,0,5 - cplflx = .F. - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = '' - do_sppt = .F. - do_shum = .F. - do_skeb = .F. + fhzero = 1. + h2o_phys = .true. + ldiag3d = .false. + fhcyc = @[FHCYC] + nst_anl = .true. + use_ufo = .true. + pre_rad = .false. + ncld = 5 + imp_physics = 8 +! ttendlim = 0.005 + ttendlim = 50.0 + ltaerosol = .T. + lradar = .T. + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = 1 + iems = 1 + iaer = 111 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .false. + shal_cnv = .false. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = .false. + satmedmf = .false. + lheatstrg = .F. + do_mynnedmf = .true. + do_mynnsfclay = .false. + effr_in = .true. + random_clds = .false. + trans_trac = .true. + cnvcld = .false. + imfshalcnv = 0 + imfdeepcnv = 0 + cdmbgwd = 3.5,0.25 + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + debug = .false. + oz_phys = .false. + oz_phys_2015 = .true. + nstf_name = 2,1,1,0,5 + cplflx = .F. + iau_delthrs = 6 + iaufhrs = 30 + iau_inc_files = '' + do_sppt = .F. + do_shum = .F. + do_skeb = .F. lndp_type = @[LNDP_TYPE] n_var_lndp = @[N_VAR_LNDP] - lsm = 3 - lsoil = 4 - lsoil_lsm = 9 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - icloud_bl = 1 - bl_mynn_tkeadvect = .true. - bl_mynn_edmf = 1 - bl_mynn_edmf_mom = 1 + lsm = 3 + lsoil = 9 + lsoil_lsm = 9 + iopt_dveg = 2 + iopt_crs = 1 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_alb = 2 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 1 + icloud_bl = 1 + bl_mynn_tkeadvect = .true. + bl_mynn_edmf = 1 + bl_mynn_edmf_mom = 1 +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = 0 + launch_level = 25 / &interpolator_nml - interp_method = 'conserve_great_circle' + interp_method = 'conserve_great_circle' / &namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ + FNGLAC = "global_glacier.2x2.grb", + FNMXIC = "global_maxice.2x2.grb", + FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", + FNSNOC = "global_snoclim.1.875.grb", + FNZORC = "igbp", + FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", + FNALBC2 = "global_albedo4.1x1.grb", + FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", + FNTG3C = "global_tg3clim.2.6x1.5.grb", + FNVEGC = "global_vegfrac.0.144.decpercent.grb", + FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", + FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", + FNSMCC = "global_soilmgldas.t126.384.190.grb", + FNMSKH = "seaice_newland.grb", + FNTSFA = "", + FNACNA = "", + FNSNOA = "", + FNVMNC = "global_shdmin.0.144x0.144.grb", + FNVMXC = "global_shdmax.0.144x0.144.grb", + FNSLPC = "global_slope.1x1.grb", + FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", + LDEBUG =.false., + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + FTSFS = 90 + FAISS = 99999 + FSNOL = 99999 + FSICL = 99999 + FTSFL = 99999, + FAISL = 99999, + FVETL = 99999, + FSOTL = 99999, + FvmnL = 99999, + FvmxL = 99999, + FSLPL = 99999, + FABSL = 99999, + FSNOS = 99999, + FSICS = 99999, + &nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, + lon_s=768, + lat_s=384, + ntrunc=382, + SKEBNORM=1, + SKEB_NPASS=30, + SKEB_VDOF=5, + SKEB=@[SKEB], + SKEB_TAU=2.16E4, + SKEB_LSCALE=1000.E3, + SHUM=@[SHUM], + SHUM_TAU=21600, + SHUM_LSCALE=500000, + SPPT=@[SPPT], + SPPT_TAU=21600, + SPPT_LSCALE=500000, + SPPT_LOGIT=.TRUE., + SPPT_SFCLIMIT=.TRUE., + ISEED_SHUM=1, + ISEED_SKEB=2, + ISEED_SPPT=3, / &nam_sfcperts - lndp_type = @[LNDP_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010, -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 + lndp_type = @[LNDP_TYPE] + LNDP_TAU=21600, + LNDP_LSCALE=500000, + ISEED_LNDP=2010, / diff --git a/tests/parm/ccpp_gsd_sar_25km-model_configure.IN b/tests/parm/ccpp_gsd_sar_25km-model_configure.IN deleted file mode 100644 index d2a512c56d..0000000000 --- a/tests/parm/ccpp_gsd_sar_25km-model_configure.IN +++ /dev/null @@ -1,48 +0,0 @@ -total_member: 1 -PE_MEMBER01: 24 -start_year: 2019 -start_month: 05 -start_day: 20 -start_hour: 00 -start_minute: 0 -start_second: 0 -nhours_fcst: 1 -RUN_CONTINUE: .false. -ENS_SPS: .false. -dt_atmos: 300 -cpl: .false. -calendar: 'julian' -memuse_verbose: .false. -atmos_nthreads: 2 -use_hyper_thread: .false. -ncores_per_node: 24 -debug_affinity: .true. -restart_interval: 0 -output_1st_tstep_rst: .false. - -quilting: .true. -print_esmf: .false. -write_groups: 1 -write_tasks_per_group: 4 -num_files: 2 -filename_base: 'dyn''phy' -output_file: 'netcdf' -write_nemsioflip: .false. -write_fsyncflag: .false. - -output_grid: 'lambert_conformal' -cen_lon: -97.5 -cen_lat: 38.5 -stdlat1: 38.5 -stdlat2: 38.5 -nx: 191 -ny: 97 -lon1: -120.72962370 -lat1: 25.11648583 -dx: 25000.0 -dy: 25000.0 - -nfhout: 1 -nfhmax_hf: 60 -nfhout_hf: 1 -nsout: -1 diff --git a/tests/parm/ccpp_gsd_sar_25km.nml.IN b/tests/parm/ccpp_gsd_sar_25km.nml.IN deleted file mode 100644 index 0d50b7d7c5..0000000000 --- a/tests/parm/ccpp_gsd_sar_25km.nml.IN +++ /dev/null @@ -1,307 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 550 - chksum_debug = .false. - dycore_only = .false. - fdiag = 1 - ccpp_suite = 'FV3_GSD_SAR' -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = 4,5 - io_layout = 1,1 - npx = 201 - npy = 111 - ntiles = 1, - npz = 64 - !grid_type = -1 - make_nh = .T. - fv_debug = .T. - range_warn = .T. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .F. - tau = 5. - rf_cutoff = 20.e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.04 - kord_tm = -11 - kord_mt = 11 - kord_wz = 11 - kord_tr = 11 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 4 - n_split = 5 - nwat = 6 - na_init = 1 - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 300 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - ke_bg = 0. - do_vort_damp = .true. - external_ic = .T. - external_eta = .T. - gfs_phil = .false. - nggps_ic = .T. - mountain = .F. - ncep_ic = .F. - d_con = 1.0 - delt_max = 0.002 - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = -6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 0. - do_sat_adj = .F. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = .F. - no_dycore = .false. - z_tracer = .T. - read_increment = .F. - res_latlon_dynamics = "fv3_increment.nc" - - do_schmidt = .true. - target_lat = 38.5 - target_lon = -97.5 - stretch_fac = 0.999 -! nord_zs_filter = 4 - n_zs_filter = 0 - regional = .true. - bc_update_interval = 6 - - full_zs_filter = .F. !unreleased feature - - nord_zs_filter = 4 - n_zs_filter = 0 ! safety -/ - -&surf_map_nml - zero_ocean = .F. - cd4 = 0.12 - cd2 = -1 - n_del2_strong = 0 - n_del2_weak = 2 - n_del4 = 1 - max_slope = 0.4 - peak_fac = 1. -/ - -&external_ic_nml - filtered_terrain = .true. - levp = 65 - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 1. - h2o_phys = .true. - ldiag3d = .false. - fhcyc = 0. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 8 -! ttendlim = 0.005 - ttendlim = 50.0 - ltaerosol = .T. - lradar = .T. - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - iaer = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .false. - shal_cnv = .false. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .false. - satmedmf = .false. - lheatstrg = .F. - do_mynnedmf = .true. - do_mynnsfclay = .false. - effr_in = .true. - random_clds = .false. - trans_trac = .true. - cnvcld = .false. - imfshalcnv = 0 - imfdeepcnv = 0 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - debug = .false. - oz_phys = .false. - oz_phys_2015 = .true. - nstf_name = 2,1,1,0,5 - cplflx = .F. - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = '' - do_sppt = .F. - do_shum = .F. - do_skeb = .F. - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] - lsm = 3 - lsoil = 9 - lsoil_lsm = 9 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - icloud_bl = 1 - bl_mynn_tkeadvect = .true. - bl_mynn_edmf = 1 - bl_mynn_edmf_mom = 1 -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, - -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010, -/ diff --git a/tests/parm/ccpp_gsd_sar_v1.nml.IN b/tests/parm/ccpp_gsd_sar_v1.nml.IN deleted file mode 100644 index 2f640c6dda..0000000000 --- a/tests/parm/ccpp_gsd_sar_v1.nml.IN +++ /dev/null @@ -1,305 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = 3 - ccpp_suite = 'FV3_GSD_SAR_v1' -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 2000200, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - - &fv_core_nml - layout = 34,24 - io_layout = 1,1 - npx = 1735 - npy = 1009 - ntiles = 1, - npz = 64 - !grid_type = -1 - make_nh = .T. - fv_debug = .T. - range_warn = .T. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .F. - tau = 5. - rf_cutoff = 20.e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.04 - kord_tm = -11 - kord_mt = 11 - kord_wz = 11 - kord_tr = 11 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 4 - n_split = 5 - nwat = 6 - na_init = 1 - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 300 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - ke_bg = 0. - do_vort_damp = .true. - external_ic = .T. - external_eta = .T. - gfs_phil = .false. - nggps_ic = .T. - mountain = .F. - ncep_ic = .F. - d_con = 1.0 - delt_max = 0.002 - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 0. - do_sat_adj = .F. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = .F. - no_dycore = .false. - z_tracer = .T. - read_increment = .F. - res_latlon_dynamics = "fv3_increment.nc" - - do_schmidt = .true. - target_lat = 38.5 - target_lon = -97.5 - stretch_fac = 0.999 -!! nord_zs_filter = 4 - n_zs_filter = 0 - regional = .true. - bc_update_interval = 3 - - full_zs_filter = .F. !unreleased feature - - nord_zs_filter = 4 - n_zs_filter = 0 ! safety -/ - -&surf_map_nml - zero_ocean = .F. - cd4 = 0.12 - cd2 = -1 - n_del2_strong = 0 - n_del2_weak = 2 - n_del4 = 1 - max_slope = 0.4 - peak_fac = 1. -/ - -&external_ic_nml - filtered_terrain = .true. - levp = 65 - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - h2o_phys = .true. - ldiag3d = .false. - fhcyc = 0 - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 8 - ttendlim = 0.005 - ltaerosol = .T. - lradar = .T. - effr_in = .T. - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - iaer = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .false. - shal_cnv = .false. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .F. - satmedmf = .false. - lheatstrg = .F. - do_mynnedmf = .T. - do_mynnsfclay = .false. - random_clds = .false. - trans_trac = .true. - cnvcld = .false. - imfshalcnv = -1 - imfdeepcnv = -1 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - debug = .false. - oz_phys = .false. - oz_phys_2015 = .true. - nstf_name = 2,1,1,0,5 - cplflx = .F. - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = '' - do_sppt = .F. - do_shum = .F. - do_skeb = .F. - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] - lsm = 1 - lsoil = 4 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - icloud_bl = 1 - bl_mynn_tkeadvect = .true. - bl_mynn_edmf = 1 - bl_mynn_edmf_mom = 1 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010 -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/rt.sh b/tests/rt.sh index 99f2222025..ad3e85deec 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -175,15 +175,16 @@ elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then elif [[ $MACHINE_ID = gaea.* ]]; then -# export PATH=/gpfs/hps/nco/ops/ecf/ecfdir/ecflow.v4.1.0.intel/bin:$PATH - export PYTHONPATH= - ECFLOW_START= - # DH* 20190717 temporary - #DISKNM=/lustre/f2/pdata/ncep_shared/emc.nemspara/RT + module load cray-python/3.7.3.2 + + export PATH=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/bin:$PATH + export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/lib/python3.7/site-packages + ECFLOW_START=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/bin/ecflow_start.sh + ECF_PORT=$(( $(id -u) + 1500 )) + DISKNM=/lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT - # *DH 20190717 - QUEUE=debug - COMPILE_QUEUE=debug + QUEUE=normal + COMPILE_QUEUE=normal # DO NOT SET AN ACCOUNT EVERYONE IS NOT A MEMBER OF # USE AN ENVIRONMENT VARIABLE TO SET ACCOUNT # ACCNR=cmp @@ -193,6 +194,7 @@ elif [[ $MACHINE_ID = gaea.* ]]; then SCHEDULER=slurm cp fv3_conf/fv3_slurm.IN_gaea fv3_conf/fv3_slurm.IN + cp fv3_conf/compile_slurm.IN_gaea fv3_conf/compile_slurm.IN elif [[ $MACHINE_ID = hera.* ]]; then @@ -394,9 +396,9 @@ if [[ $TESTS_FILE =~ '35d' ]]; then fi if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = jet.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201118/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201124/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201118} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201124} fi shift $((OPTIND-1)) @@ -416,7 +418,7 @@ if [[ $CREATE_BASELINE == true ]]; then rsync -a "${RTPWD}"/DATM* "${NEW_BASELINE}"/ # FIXME: S2S baselines are only available on these machines with Intel - if [[ $MACHINE_ID = hera.intel ]] || [[ $MACHINE_ID = orion.intel ]] || [[ $MACHINE_ID = wcoss_dell_p3 ]]; then + if [[ $MACHINE_ID = hera.intel ]] || [[ $MACHINE_ID = orion.intel ]] || [[ $MACHINE_ID = cheyenne.intel ]] || [[ $MACHINE_ID = gaea.intel ]] || [[ $MACHINE_ID = wcoss_dell_p3 ]]; then rsync -a "${RTPWD}"/MOM6_* "${NEW_BASELINE}"/ rsync -a "${RTPWD}"/CICE_* "${NEW_BASELINE}"/ rsync -a "${RTPWD}"/CPL_* "${NEW_BASELINE}"/ @@ -429,19 +431,22 @@ if [[ $CREATE_BASELINE == true ]]; then rsync -a "${RTPWD}"/fv3_regional_c768/input.nml "${NEW_BASELINE}"/fv3_regional_c768/ rsync -a "${RTPWD}"/fv3_regional_restart/input.nml "${NEW_BASELINE}"/fv3_regional_restart/ - rsync -a "${RTPWD}"/fv3_regional_control/model_configure "${NEW_BASELINE}"/fv3_regional_control/ - rsync -a "${RTPWD}"/fv3_regional_quilt/model_configure "${NEW_BASELINE}"/fv3_regional_quilt/ - rsync -a "${RTPWD}"/fv3_regional_c768/model_configure "${NEW_BASELINE}"/fv3_regional_c768/ - rsync -a "${RTPWD}"/fv3_regional_restart/model_configure "${NEW_BASELINE}"/fv3_regional_restart/ - - rsync -a "${RTPWD}"/fv3_regional_control/INPUT "${NEW_BASELINE}"/fv3_regional_control/ - rsync -a "${RTPWD}"/fv3_regional_control/RESTART "${NEW_BASELINE}"/fv3_regional_control/ - rsync -a "${RTPWD}"/fv3_regional_quilt/INPUT "${NEW_BASELINE}"/fv3_regional_quilt/ - rsync -a "${RTPWD}"/fv3_regional_c768/INPUT "${NEW_BASELINE}"/fv3_regional_c768/ - rsync -a "${RTPWD}"/fv3_regional_restart/INPUT "${NEW_BASELINE}"/fv3_regional_restart/ - rsync -a "${RTPWD}"/fv3_stretched/INPUT "${NEW_BASELINE}"/fv3_stretched/ - rsync -a "${RTPWD}"/fv3_stretched_nest/INPUT "${NEW_BASELINE}"/fv3_stretched_nest/ - rsync -a "${RTPWD}"/fv3_stretched_nest_quilt/INPUT "${NEW_BASELINE}"/fv3_stretched_nest_quilt/ + rsync -a "${RTPWD}"/fv3_regional_control/model_configure "${NEW_BASELINE}"/fv3_regional_control/ + rsync -a "${RTPWD}"/fv3_regional_quilt/model_configure "${NEW_BASELINE}"/fv3_regional_quilt/ + rsync -a "${RTPWD}"/fv3_regional_c768/model_configure "${NEW_BASELINE}"/fv3_regional_c768/ + rsync -a "${RTPWD}"/fv3_regional_restart/model_configure "${NEW_BASELINE}"/fv3_regional_restart/ + rsync -a "${RTPWD}"/fv3_regional_quilt_netcdf_parallel/model_configure "${NEW_BASELINE}"/fv3_regional_quilt_netcdf_parallel/ + + rsync -a "${RTPWD}"/fv3_regional_control/INPUT "${NEW_BASELINE}"/fv3_regional_control/ + rsync -a "${RTPWD}"/fv3_regional_control/RESTART "${NEW_BASELINE}"/fv3_regional_control/ + rsync -a "${RTPWD}"/fv3_regional_quilt/INPUT "${NEW_BASELINE}"/fv3_regional_quilt/ + rsync -a "${RTPWD}"/fv3_regional_c768/INPUT "${NEW_BASELINE}"/fv3_regional_c768/ + rsync -a "${RTPWD}"/fv3_regional_restart/INPUT "${NEW_BASELINE}"/fv3_regional_restart/ + rsync -a "${RTPWD}"/fv3_stretched/INPUT "${NEW_BASELINE}"/fv3_stretched/ + rsync -a "${RTPWD}"/fv3_stretched_nest/INPUT "${NEW_BASELINE}"/fv3_stretched_nest/ + rsync -a "${RTPWD}"/fv3_stretched_nest_quilt/INPUT "${NEW_BASELINE}"/fv3_stretched_nest_quilt/ + rsync -a "${RTPWD}"/fv3_stretched_nest_debug/INPUT "${NEW_BASELINE}"/fv3_stretched_nest_debug/ + rsync -a "${RTPWD}"/fv3_regional_quilt_netcdf_parallel/INPUT "${NEW_BASELINE}"/fv3_regional_quilt_netcdf_parallel/ fi COMPILE_LOG=${PATHRT}/Compile_$MACHINE_ID.log @@ -547,6 +552,8 @@ EOF QUEUE=batch elif [[ $MACHINE_ID = jet.* ]]; then QUEUE=batch + elif [[ $MACHINE_ID = gaea.* ]]; then + QUEUE=normal elif [[ $MACHINE_ID = cheyenne.* ]]; then QUEUE=regular else diff --git a/tests/rt_ccpp_dev.conf b/tests/rt_ccpp_dev.conf new file mode 100644 index 0000000000..89c9eadb34 --- /dev/null +++ b/tests/rt_ccpp_dev.conf @@ -0,0 +1,55 @@ +################################################################################################################################################################################# +# CCPP REPRO tests # +################################################################################################################################################################################# + +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah | standard | | 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 | + +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | standard | | fv3 | + +RUN | fv3_ccpp_gsd_mynnsfc | standard | | fv3 | +RUN | fv3_ccpp_gsd_noah_mynnsfc | standard | | fv3 | + +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_v15_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | standard | | 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 | + +COMPILE | CCPP=Y 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 without suite argument for CAPS physics +COMPILE | CCPP=Y REPRO=Y | standard | | fv3 | +# Run tests +RUN | fv3_ccpp_shinhong | standard | | fv3 | +RUN | fv3_ccpp_ysu | standard | | fv3 | +RUN | fv3_ccpp_ntiedtke | standard | | fv3 | + +################################################################################################################################################################################# +# CCPP DEBUG tests # +################################################################################################################################################################################# + +COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc,FV3_GFS_v15_thompson | standard | | 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 | + +COMPILE | 32BIT=Y CCPP=Y DEBUG=Y SUITES=FV3_GSD_SAR,FV3_RAP,FV3_HRRR | standard | | fv3 | +# Run tests +RUN | fv3_ccpp_gsd_sar_debug | standard | | fv3 | diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 7a14e40f49..4e49f37615 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -270,7 +270,7 @@ check_results() { d=$( cmp ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i | wc -l ) if [[ $d -ne 0 ]] ; then - if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss_dell_p3 || ${MACHINE_ID} =~ wcoss_cray ]]; then + if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss_dell_p3 || ${MACHINE_ID} =~ wcoss_cray || ${MACHINE_ID} =~ cheyenne ]]; then printf ".......ALT CHECK.." >> ${REGRESSIONTEST_LOG} printf ".......ALT CHECK.." d=$( ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i 2>/dev/null | wc -l ) diff --git a/tests/tests/fv3_ccpp_gsd b/tests/tests/fv3_ccpp_gsd index a5a4a827a4..442117df57 100644 --- a/tests/tests/fv3_ccpp_gsd +++ b/tests/tests/fv3_ccpp_gsd @@ -116,7 +116,6 @@ export HYBEDMF=.F. export DO_MYNNEDMF=.T. export IMFSHALCNV=3 export IMFDEEPCNV=3 -export FHCYC=0 export LSM=3 export LSOIL_LSM=9 diff --git a/tests/tests/fv3_ccpp_gsd_coldstart b/tests/tests/fv3_ccpp_gsd_coldstart index b4585a74a0..e43553acb8 100644 --- a/tests/tests/fv3_ccpp_gsd_coldstart +++ b/tests/tests/fv3_ccpp_gsd_coldstart @@ -54,7 +54,6 @@ export HYBEDMF=.F. export DO_MYNNEDMF=.T. export IMFSHALCNV=3 export IMFDEEPCNV=3 -export FHCYC=0 export LSM=3 export LSOIL_LSM=9 diff --git a/tests/tests/fv3_ccpp_gsd_debug b/tests/tests/fv3_ccpp_gsd_debug index 4364a71348..2e2d073d4d 100644 --- a/tests/tests/fv3_ccpp_gsd_debug +++ b/tests/tests/fv3_ccpp_gsd_debug @@ -92,7 +92,6 @@ export HYBEDMF=.F. export DO_MYNNEDMF=.T. export IMFSHALCNV=3 export IMFDEEPCNV=3 -export FHCYC=0 export LSM=3 export LSOIL_LSM=9 diff --git a/tests/tests/fv3_ccpp_gsd_diag3d_debug b/tests/tests/fv3_ccpp_gsd_diag3d_debug index 2e9066244c..2f46c151e6 100644 --- a/tests/tests/fv3_ccpp_gsd_diag3d_debug +++ b/tests/tests/fv3_ccpp_gsd_diag3d_debug @@ -96,7 +96,6 @@ export HYBEDMF=.F. export DO_MYNNEDMF=.T. export IMFSHALCNV=3 export IMFDEEPCNV=3 -export FHCYC=0 export LSM=3 export LSOIL_LSM=9 diff --git a/tests/tests/fv3_ccpp_gsd_drag_suite b/tests/tests/fv3_ccpp_gsd_drag_suite index 1358c6d05c..0091c90558 100644 --- a/tests/tests/fv3_ccpp_gsd_drag_suite +++ b/tests/tests/fv3_ccpp_gsd_drag_suite @@ -92,11 +92,16 @@ export HYBEDMF=.F. export DO_MYNNEDMF=.T. export IMFSHALCNV=3 export IMFDEEPCNV=3 -export FHCYC=0 export LSM=3 export LSOIL_LSM=9 export GWD_OPT=3 - +export DO_UGWP_V0=.F. +export DO_UGWP_V0_OROG_ONLY=.F. +export DO_GSL_DRAG_LS_BL=.T. +export DO_GSL_DRAG_SS=.T. +export DO_GSL_DRAG_TOFD=.T. +export DO_UGWP_V1=.F. +export DO_UGWP_V1_OROG_ONLY=.F. export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp b/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp new file mode 100644 index 0000000000..44ddf4fcfd --- /dev/null +++ b/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp @@ -0,0 +1,107 @@ +############################################################################### +# +# FV3 CCPP GSD (GF CU + Thompson MP + MYNN PBL + RUC LSM + GSD DRAG) test +# +############################################################################### + +export TEST_DESCR="Compare unified_ugwp FV3 CCPP GSD + DRAG results with previous trunk version" + +export CNTL_DIR=fv3_gsd_drag_suite + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + +export_fv3 + +export FHMAX=24 +export FDIAG=3 + +export DT_ATMOS="600" +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.F. +export LRADAR=.T. +export LTAEROSOL=.T. + +export FV3_RUN=ccpp_gsd_run.IN +export CCPP_SUITE=FV3_GSD_v0_unified_ugwp_suite +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_gsd.nml.IN + +export HYBEDMF=.F. +export DO_MYNNEDMF=.T. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LSM=3 +export LSOIL_LSM=9 +export GWD_OPT=2 +export DO_UGWP_V0=.F. +export DO_UGWP_V0_OROG_ONLY=.F. +export DO_GSL_DRAG_LS_BL=.T. +export DO_GSL_DRAG_SS=.T. +export DO_GSL_DRAG_TOFD=.T. +export DO_UGWP_V1=.F. +export DO_UGWP_V1_OROG_ONLY=.F. + +export WLCLK=30 + diff --git a/tests/tests/fv3_ccpp_gsd_mynnsfc b/tests/tests/fv3_ccpp_gsd_mynnsfc new file mode 100644 index 0000000000..8d39c21413 --- /dev/null +++ b/tests/tests/fv3_ccpp_gsd_mynnsfc @@ -0,0 +1,127 @@ +############################################################################### +# +# FV3 CCPP GSD (GF CU + Thompson MP + MYNN PBL + RUC LSM + MYNN SFC) full (0-48h) test +# +############################################################################### + +export TEST_DESCR="Compare FV3 CCPP GSD + MYNN SFC results with previous trunk version" + +export CNTL_DIR=fv3_gsd_mynnsfc + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + phyf027.tile1.nc \ + phyf027.tile2.nc \ + phyf027.tile3.nc \ + phyf027.tile4.nc \ + phyf027.tile5.nc \ + phyf027.tile6.nc \ + phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + dynf027.tile1.nc \ + dynf027.tile2.nc \ + dynf027.tile3.nc \ + dynf027.tile4.nc \ + dynf027.tile5.nc \ + dynf027.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + +export_fv3 +export NODES=$(expr $TASKS / $TPN + 1) + +export FHMAX=48 +export FDIAG=3 + +export DT_ATMOS="600" +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.F. +export LRADAR=.T. +export LTAEROSOL=.T. + +export FV3_RUN=ccpp_gsd_run.IN +export CCPP_SUITE=FV3_GSD_v0_mynnsfc +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_gsd.nml.IN + +export HYBEDMF=.F. +export DO_MYNNEDMF=.T. +export DO_MYNNSFCLAY=.T. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LSM=3 +export LSOIL_LSM=9 + +RUN_SCRIPT=rt_fv3.sh + +export WLCLK=30 + diff --git a/tests/tests/fv3_ccpp_gsd_mynnsfc_debug b/tests/tests/fv3_ccpp_gsd_mynnsfc_debug new file mode 100644 index 0000000000..a394908ad7 --- /dev/null +++ b/tests/tests/fv3_ccpp_gsd_mynnsfc_debug @@ -0,0 +1,102 @@ +########################################################################################## +# +# FV3 CCPP GSD (GF CU + Thompson MP + MYNN PBL + RUC LSM + MYNN SFC) 24h test in DEBUG mode +# +########################################################################################## + +export TEST_DESCR="Compare FV3 CCPP GSD + MYNN SFC DEBUG results with previous trunk version" + +export CNTL_DIR=fv3_gsd_mynnsfc_debug + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf003.tile1.nc \ + phyf003.tile2.nc \ + phyf003.tile3.nc \ + phyf003.tile4.nc \ + phyf003.tile5.nc \ + phyf003.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf003.tile1.nc \ + dynf003.tile2.nc \ + dynf003.tile3.nc \ + dynf003.tile4.nc \ + dynf003.tile5.nc \ + dynf003.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + +export_fv3 +export NODES=$(expr $TASKS / $TPN + 1) + +export FHMAX=3 +export FDIAG=3 + +export DT_ATMOS="600" +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.F. +export LRADAR=.T. +export LTAEROSOL=.T. + +export FV3_RUN=ccpp_gsd_run.IN +export CCPP_SUITE=FV3_GSD_v0_mynnsfc +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_gsd.nml.IN + +export HYBEDMF=.F. +export DO_MYNNEDMF=.T. +export DO_MYNNSFCLAY=.T. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LSM=3 +export LSOIL_LSM=9 + +RUN_SCRIPT=rt_fv3.sh + +export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_noah b/tests/tests/fv3_ccpp_gsd_noah index 8b24f634a2..ff9dce91e7 100644 --- a/tests/tests/fv3_ccpp_gsd_noah +++ b/tests/tests/fv3_ccpp_gsd_noah @@ -116,7 +116,6 @@ export HYBEDMF=.F. export DO_MYNNEDMF=.T. export IMFSHALCNV=3 export IMFDEEPCNV=3 -export FHCYC=0 export LSM=1 export LSOIL_LSM=4 diff --git a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc b/tests/tests/fv3_ccpp_gsd_noah_mynnsfc new file mode 100644 index 0000000000..513ada1dc9 --- /dev/null +++ b/tests/tests/fv3_ccpp_gsd_noah_mynnsfc @@ -0,0 +1,125 @@ +############################################################################### +# +# FV3 CCPP GSD (GF CU + Thompson MP + MYNN PBL + NOAH LSM + MYNN SFC) full (0-48h) test +# +############################################################################### + +export TEST_DESCR="Compare FV3 CCPP GSD + NOAH LSM + MYNN SFC results with previous trunk version" + +export CNTL_DIR=fv3_gsd_noah_mynnsfc + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + phyf027.tile1.nc \ + phyf027.tile2.nc \ + phyf027.tile3.nc \ + phyf027.tile4.nc \ + phyf027.tile5.nc \ + phyf027.tile6.nc \ + phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + dynf027.tile1.nc \ + dynf027.tile2.nc \ + dynf027.tile3.nc \ + dynf027.tile4.nc \ + dynf027.tile5.nc \ + dynf027.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + +export_fv3 +export NODES=$(expr $TASKS / $TPN + 1) + +export FHMAX=48 +export FDIAG=3 + +export DT_ATMOS="600" +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.F. +export LRADAR=.T. +export LTAEROSOL=.T. + +export FV3_RUN=ccpp_gsd_run.IN +export CCPP_SUITE=FV3_GSD_noah_mynnsfc +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_gsd.nml.IN + +export HYBEDMF=.F. +export DO_MYNNEDMF=.T. +export DO_MYNNSFCLAY=.T. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 + +RUN_SCRIPT=rt_fv3.sh + +export WLCLK=30 + diff --git a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug b/tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug new file mode 100644 index 0000000000..9aa27721d0 --- /dev/null +++ b/tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug @@ -0,0 +1,100 @@ +########################################################################################## +# +# FV3 CCPP GSD (GF CU + Thompson MP + MYNN PBL + NOAH LSM + MYNN SFC) 24h test in DEBUG mode +# +########################################################################################## + +export TEST_DESCR="Compare FV3 CCPP GSD + NOAH LSM + MYNN SFC DEBUG results with previous trunk version" + +export CNTL_DIR=fv3_gsd_noah_mynnsfc_debug + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf003.tile1.nc \ + phyf003.tile2.nc \ + phyf003.tile3.nc \ + phyf003.tile4.nc \ + phyf003.tile5.nc \ + phyf003.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf003.tile1.nc \ + dynf003.tile2.nc \ + dynf003.tile3.nc \ + dynf003.tile4.nc \ + dynf003.tile5.nc \ + dynf003.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + +export_fv3 +export NODES=$(expr $TASKS / $TPN + 1) + +export FHMAX=3 +export FDIAG=3 + +export DT_ATMOS="600" +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.F. +export LRADAR=.T. +export LTAEROSOL=.T. + +export FV3_RUN=ccpp_gsd_run.IN +export CCPP_SUITE=FV3_GSD_noah_mynnsfc +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_gsd.nml.IN + +export HYBEDMF=.F. +export DO_MYNNEDMF=.T. +export DO_MYNNSFCLAY=.T. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 + +RUN_SCRIPT=rt_fv3.sh + +export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_sar b/tests/tests/fv3_ccpp_gsd_sar index cd2ffa45f0..50118054cd 100644 --- a/tests/tests/fv3_ccpp_gsd_sar +++ b/tests/tests/fv3_ccpp_gsd_sar @@ -8,8 +8,7 @@ export TEST_DESCR="Compare FV3 CCPP GSD SAR results with previous trunk version" export CNTL_DIR=fv3_gsd_sar -export LIST_FILES="atmos_4xdaily.nc \ - dynf000.nc \ +export LIST_FILES="dynf000.nc \ dynf003.nc \ phyf000.nc \ phyf003.nc \ @@ -21,8 +20,11 @@ export LIST_FILES="atmos_4xdaily.nc \ RESTART/phy_data.nc \ RESTART/sfc_data.nc" +export FHMAX=3 +export FDIAG=1 + export_fv3 -export TASKS=840 +export TASKS=24 export MODEL_CONFIGURE=ccpp_gsd_sar-model_configure.IN export FV3_RUN=ccpp_gsd_sar_run.IN @@ -30,6 +32,5 @@ export CCPP_SUITE=FV3_GSD_SAR export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd_sar.nml.IN - export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_sar_25km_debug b/tests/tests/fv3_ccpp_gsd_sar_debug similarity index 76% rename from tests/tests/fv3_ccpp_gsd_sar_25km_debug rename to tests/tests/fv3_ccpp_gsd_sar_debug index ba3aa70ac1..5c42084042 100644 --- a/tests/tests/fv3_ccpp_gsd_sar_25km_debug +++ b/tests/tests/fv3_ccpp_gsd_sar_debug @@ -4,9 +4,9 @@ # ###################################################################################### -export TEST_DESCR="Compare FV3 CCPP GSD SAR results with previous trunk version" +export TEST_DESCR="Compare FV3 CCPP GSD SAR DEBUG results with previous trunk version" -export CNTL_DIR=fv3_gsd_sar_25km_debug +export CNTL_DIR=fv3_gsd_sar_debug export LIST_FILES="dynf000.nc \ dynf001.nc \ @@ -26,12 +26,11 @@ export FDIAG=1 export_fv3 export TASKS=24 -export MODEL_CONFIGURE=ccpp_gsd_sar_25km-model_configure.IN -export FV3_RUN=ccpp_gsd_sar_25km_run.IN +export MODEL_CONFIGURE=ccpp_gsd_sar-model_configure.IN +export FV3_RUN=ccpp_gsd_sar_run.IN export CCPP_SUITE=FV3_GSD_SAR export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_gsd_sar_25km.nml.IN - +export INPUT_NML=ccpp_gsd_sar.nml.IN export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_unified_ugwp b/tests/tests/fv3_ccpp_gsd_unified_ugwp new file mode 100644 index 0000000000..f9387b81d9 --- /dev/null +++ b/tests/tests/fv3_ccpp_gsd_unified_ugwp @@ -0,0 +1,131 @@ +############################################################################### +# +# FV3 CCPP GSD (GF CU + Thompson MP + MYNN PBL + RUC LSM) full (0-48h) test +# +############################################################################### + +export TEST_DESCR="Compare unified_ugwp FV3 CCPP GSD results with previous trunk version" + +export CNTL_DIR=fv3_gsd + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + phyf027.tile1.nc \ + phyf027.tile2.nc \ + phyf027.tile3.nc \ + phyf027.tile4.nc \ + phyf027.tile5.nc \ + phyf027.tile6.nc \ + phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + dynf027.tile1.nc \ + dynf027.tile2.nc \ + dynf027.tile3.nc \ + dynf027.tile4.nc \ + dynf027.tile5.nc \ + dynf027.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + +export_fv3 + +export FHMAX=48 +export FDIAG=3 + +export DT_ATMOS="600" +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.F. +export LRADAR=.T. +export LTAEROSOL=.T. + +export FV3_RUN=ccpp_gsd_run.IN +export CCPP_SUITE=FV3_GSD_v0_unified_ugwp_suite +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_gsd.nml.IN + +export HYBEDMF=.F. +export DO_MYNNEDMF=.T. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LSM=3 +export LSOIL_LSM=9 +export GWD_OPT=2 +export DO_UGWP_V0=.T. +export DO_UGWP_V0_OROG_ONLY=.F. +export DO_GSL_DRAG_LS_BL=.F. +export DO_GSL_DRAG_SS=.F. +export DO_GSL_DRAG_TOFD=.F. +export DO_UGWP_V1=.F. +export DO_UGWP_V1_OROG_ONLY=.F. + +export WLCLK=30 + diff --git a/tests/tests/fv3_ccpp_gsd_warmstart b/tests/tests/fv3_ccpp_gsd_warmstart index 0ac206224c..3904d145b9 100644 --- a/tests/tests/fv3_ccpp_gsd_warmstart +++ b/tests/tests/fv3_ccpp_gsd_warmstart @@ -94,7 +94,6 @@ export HYBEDMF=.F. export DO_MYNNEDMF=.T. export IMFSHALCNV=3 export IMFDEEPCNV=3 -export FHCYC=0 export LSM=3 export LSOIL_LSM=9 diff --git a/tests/tests/fv3_ccpp_hrrr b/tests/tests/fv3_ccpp_hrrr index a8c0e5f8b0..be2a1f9c2f 100644 --- a/tests/tests/fv3_ccpp_hrrr +++ b/tests/tests/fv3_ccpp_hrrr @@ -93,11 +93,16 @@ export DO_MYNNEDMF=.T. export DO_MYNNSFCLAY=.T. export IMFSHALCNV=-1 export IMFDEEPCNV=-1 -export FHCYC=0 export LSM=3 export LSOIL_LSM=9 export GWD_OPT=3 - +export DO_UGWP_V0=.F. +export DO_UGWP_V0_OROG_ONLY=.F. +export DO_GSL_DRAG_LS_BL=.T. +export DO_GSL_DRAG_SS=.T. +export DO_GSL_DRAG_TOFD=.T. +export DO_UGWP_V1=.F. +export DO_UGWP_V1_OROG_ONLY=.F. export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_rap b/tests/tests/fv3_ccpp_rap index a2055df6f0..f87f7034b2 100644 --- a/tests/tests/fv3_ccpp_rap +++ b/tests/tests/fv3_ccpp_rap @@ -93,11 +93,16 @@ export DO_MYNNEDMF=.T. export DO_MYNNSFCLAY=.T. export IMFSHALCNV=3 export IMFDEEPCNV=3 -export FHCYC=0 export LSM=3 export LSOIL_LSM=9 export GWD_OPT=3 - +export DO_UGWP_V0=.F. +export DO_UGWP_V0_OROG_ONLY=.F. +export DO_GSL_DRAG_LS_BL=.T. +export DO_GSL_DRAG_SS=.T. +export DO_GSL_DRAG_TOFD=.T. +export DO_UGWP_V1=.F. +export DO_UGWP_V1_OROG_ONLY=.F. export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_rrfs_v1beta b/tests/tests/fv3_ccpp_rrfs_v1beta index 7788f74aa0..793a4db849 100644 --- a/tests/tests/fv3_ccpp_rrfs_v1beta +++ b/tests/tests/fv3_ccpp_rrfs_v1beta @@ -92,10 +92,16 @@ export HYBEDMF=.F. export DO_MYNNEDMF=.T. export IMFSHALCNV=-1 export IMFDEEPCNV=-1 -export FHCYC=0 export LSM=2 export LSOIL_LSM=4 #export GWD_OPT=3 +#export DO_UGWP_V0=.F. +#export DO_UGWP_V0_OROG_ONLY=.F. +#export DO_GSL_DRAG_LS_BL=.T. +#export DO_GSL_DRAG_SS=.T. +#export DO_GSL_DRAG_TOFD=.T. +#export DO_UGWP_V1=.F. +#export DO_UGWP_V1_OROG_ONLY=.F. export DO_MYNNSFCLAY=.T. diff --git a/tests/tests/fv3_ccpp_rrfs_v1beta_debug b/tests/tests/fv3_ccpp_rrfs_v1beta_debug index 62cf333d02..04db6bef3d 100644 --- a/tests/tests/fv3_ccpp_rrfs_v1beta_debug +++ b/tests/tests/fv3_ccpp_rrfs_v1beta_debug @@ -92,10 +92,16 @@ export HYBEDMF=.F. export DO_MYNNEDMF=.T. export IMFSHALCNV=-1 export IMFDEEPCNV=-1 -export FHCYC=0 export LSM=2 export LSOIL_LSM=4 #export GWD_OPT=3 +#export DO_UGWP_V0=.F. +#export DO_UGWP_V0_OROG_ONLY=.F. +#export DO_GSL_DRAG_LS_BL=.T. +#export DO_GSL_DRAG_SS=.T. +#export DO_GSL_DRAG_TOFD=.T. +#export DO_UGWP_V1=.F. +#export DO_UGWP_V1_OROG_ONLY=.F. export DO_MYNNSFCLAY=.T. diff --git a/tests/utest b/tests/utest index 230ca8c9f9..fb0c4102b1 100755 --- a/tests/utest +++ b/tests/utest @@ -482,7 +482,7 @@ elif [[ $MACHINE_ID = linux.* ]]; then PARTITION= QUEUE= COMPILE_QUEUE= - dprefix=/home/tester + dprefix=/home/builder DISKNM=${dprefix}/data STMP=${dprefix}/stmp4 PTMP=${dprefix}/stmp2 @@ -711,9 +711,9 @@ fi mkdir -p ${STMP}/${USER} NEW_BASELINE=${STMP}/${USER}/FV3_UT/UNIT_TEST if [[ $MACHINE_ID == hera.* || $MACHINE_ID == orion.* ]]; then - baseline_location=$DISKNM/NEMSfv3gfs/develop-20200713/${RT_COMPILER^^} + baseline_location=$DISKNM/NEMSfv3gfs/develop-20201118/${RT_COMPILER^^} else - baseline_location=$DISKNM/NEMSfv3gfs/develop-20200713 + baseline_location=$DISKNM/NEMSfv3gfs/develop-20201118 fi RTPWD=$baseline_location From ff98902840a60651d84b40ea70a8e5380e541630 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 25 Nov 2020 13:33:34 -0700 Subject: [PATCH 031/109] Update .gitmodules and submodule pointer for fv3atm for gsl/develop branch --- .gitmodules | 4 ++-- FV3 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index 6e63f4576f..4fe3e5911d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,7 @@ [submodule "FV3"] path = FV3 - url = https://github.com/NOAA-EMC/fv3atm - branch = develop + url = https://github.com/NOAA-GSL/fv3atm + branch = gsl/develop [submodule "NEMS"] path = NEMS url = https://github.com/NOAA-EMC/NEMS diff --git a/FV3 b/FV3 index fd668c454a..478d3482fe 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit fd668c454a9e64ed07e200f24d7c24e7dfb26472 +Subproject commit 478d3482fef6ae7be0a2ebd6d7fdcb407a3f4209 From bbc37714a44f253c1b609b2380885a11e586a3de Mon Sep 17 00:00:00 2001 From: Phil Pegion <38869668+pjpegion@users.noreply.github.com> Date: Mon, 30 Nov 2020 11:25:58 -0700 Subject: [PATCH 032/109] Updates to stochastic_physics_wrapper (#280) Fix to stochastic_physics_wrapper to allow for random patterns to update at a longer time-step than model Co-authored-by: Dom Heinzeller --- FV3 | 2 +- stochastic_physics | 2 +- tests/RegressionTests_cheyenne.gnu.log | 86 +++--- tests/RegressionTests_cheyenne.intel.log | 248 ++++++++-------- tests/RegressionTests_gaea.intel.log | 194 ++++++------- tests/RegressionTests_hera.gnu.log | 86 +++--- tests/RegressionTests_hera.intel.log | 344 +++++++++++------------ tests/RegressionTests_orion.intel.log | 324 ++++++++++----------- tests/RegressionTests_wcoss_cray.log | 206 +++++++------- tests/RegressionTests_wcoss_dell_p3.log | 280 +++++++++--------- tests/parm/ccpp_control.nml.IN | 6 +- tests/rt.sh | 4 +- tests/rt_utils.sh | 2 +- 13 files changed, 892 insertions(+), 892 deletions(-) diff --git a/FV3 b/FV3 index fd668c454a..a898cca15f 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit fd668c454a9e64ed07e200f24d7c24e7dfb26472 +Subproject commit a898cca15f8c3bdcc2c6d30de1e4bbe1ed9da110 diff --git a/stochastic_physics b/stochastic_physics index 6eac8455ec..e4913c062b 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 6eac8455ece23fcadcb97c876346cd87c0f70e6f +Subproject commit e4913c062b520cf8d76d9c82f90636aee19cbddb diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 56259ffe56..0e566d9dc5 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Tue Nov 24 09:54:19 MST 2020 +Thu Nov 26 13:17:36 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/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-20201124/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/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-20201124/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/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 @@ -186,8 +186,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-20201124/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -322,8 +322,8 @@ Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_gsd results .... Test 007 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -550,8 +550,8 @@ Checking test 008 fv3_ccpp_thompson results .... Test 008 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -618,8 +618,8 @@ Checking test 009 fv3_ccpp_thompson_no_aero results .... Test 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -686,8 +686,8 @@ Checking test 010 fv3_ccpp_rrfs_v1beta results .... Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -754,8 +754,8 @@ Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -772,8 +772,8 @@ Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -802,8 +802,8 @@ Checking test 013 fv3_ccpp_control_debug results .... Test 013 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -870,8 +870,8 @@ Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Test 014 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Test 015 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1074,8 +1074,8 @@ Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1216,8 +1216,8 @@ Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1235,5 +1235,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Nov 24 10:11:29 MST 2020 -Elapsed time: 00h:17m:10s. Have a nice day! +Thu Nov 26 13:33:44 MST 2020 +Elapsed time: 00h:16m:09s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 4a64920a53..01cb2e80af 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Tue Nov 24 13:00:04 MST 2020 +Thu Nov 26 15:29:22 MST 2020 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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-20201124/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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-20201124/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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-20201124/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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-20201124/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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-20201124/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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-20201124/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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-20201124/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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,10 +447,10 @@ 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 phyf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc .........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-20201124/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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-20201124/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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-20201124/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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,75 +631,75 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_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 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 ............ALT CHECK......OK + Comparing phyf000.tile2.nc ............ALT CHECK......OK + Comparing phyf000.tile3.nc ............ALT CHECK......OK + Comparing phyf000.tile4.nc ............ALT CHECK......OK + Comparing phyf000.tile5.nc ............ALT CHECK......OK + Comparing phyf000.tile6.nc ............ALT CHECK......OK + Comparing phyf012.tile1.nc ............ALT CHECK......OK + Comparing phyf012.tile2.nc ............ALT CHECK......OK + Comparing phyf012.tile3.nc ............ALT CHECK......OK + Comparing phyf012.tile4.nc ............ALT CHECK......OK + Comparing phyf012.tile5.nc ............ALT CHECK......OK + Comparing phyf012.tile6.nc ............ALT CHECK......OK + Comparing dynf000.tile1.nc ............ALT CHECK......OK + Comparing dynf000.tile2.nc ............ALT CHECK......OK + Comparing dynf000.tile3.nc ............ALT CHECK......OK + Comparing dynf000.tile4.nc ............ALT CHECK......OK + Comparing dynf000.tile5.nc ............ALT CHECK......OK + Comparing dynf000.tile6.nc ............ALT CHECK......OK + Comparing dynf012.tile1.nc ............ALT CHECK......OK + Comparing dynf012.tile2.nc ............ALT CHECK......OK + Comparing dynf012.tile3.nc ............ALT CHECK......OK + Comparing dynf012.tile4.nc ............ALT CHECK......OK + Comparing dynf012.tile5.nc ............ALT CHECK......OK + Comparing dynf012.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 012 fv3_ccpp_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_iau_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,7 +883,7 @@ Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -957,7 +957,7 @@ Test 016 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1025,7 +1025,7 @@ Test 017 fv3_ccpp_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_stretched_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1081,7 +1081,7 @@ Test 018 fv3_ccpp_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,7 +1148,7 @@ Test 019 fv3_ccpp_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1159,7 +1159,7 @@ Test 020 fv3_ccpp_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1168,7 +1168,7 @@ Test 021 fv3_ccpp_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1179,18 +1179,18 @@ Test 022 fv3_ccpp_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 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 ............ALT CHECK......OK + Comparing phyf024.nc .........OK Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1220,7 +1220,7 @@ Test 024 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_stretched_nest_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1240,7 +1240,7 @@ Test 025 fv3_ccpp_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1288,7 +1288,7 @@ Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1336,7 +1336,7 @@ Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1384,7 +1384,7 @@ Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1432,7 +1432,7 @@ Test 029 fv3_ccpp_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1480,7 +1480,7 @@ Test 030 fv3_ccpp_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,7 +1528,7 @@ Test 031 fv3_ccpp_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1576,7 +1576,7 @@ Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,7 +1628,7 @@ Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_cpt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,7 +1682,7 @@ Test 034 fv3_ccpp_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 035 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 036 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 037 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,7 +1978,7 @@ Test 038 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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 @@ -2114,7 +2114,7 @@ Test 040 fv3_ccpp_gfs_v16beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2182,7 +2182,7 @@ Test 041 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 042 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2250,7 +2250,7 @@ Test 042 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gocart_clm_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2298,7 +2298,7 @@ Test 043 fv3_ccpp_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2366,7 +2366,7 @@ Test 044 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2434,7 +2434,7 @@ Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2452,7 +2452,7 @@ Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfs_v16beta_debug_prod Checking test 047 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2520,7 +2520,7 @@ Test 047 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2588,7 +2588,7 @@ Test 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2656,7 +2656,7 @@ Test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gsd_debug_prod Checking test 050 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2724,7 +2724,7 @@ Test 050 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gsd_diag3d_debug_prod Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2792,7 +2792,7 @@ Test 051 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_thompson_debug_prod Checking test 052 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2860,7 +2860,7 @@ Test 052 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_thompson_no_aero_debug_prod Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2928,7 +2928,7 @@ Test 053 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2996,7 +2996,7 @@ Test 054 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3064,7 +3064,7 @@ Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3082,5 +3082,5 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Nov 24 13:35:40 MST 2020 -Elapsed time: 00h:35m:36s. Have a nice day! +Thu Nov 26 16:01:08 MST 2020 +Elapsed time: 00h:31m:46s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 70dce041ef..a9346cbfdc 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Tue Nov 24 10:14:28 EST 2020 +Thu Nov 26 17:08:10 EST 2020 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/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-20201124/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/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-20201124/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/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-20201124/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/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-20201124/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/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-20201124/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/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-20201124/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/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-20201124/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/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-20201124/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/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-20201124/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/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-20201124/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/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-20201124/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/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 = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -746,8 +746,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -820,8 +820,8 @@ Checking test 014 fv3_ccpp_multigases results .... Test 014 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_control_32bit results .... Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,8 +944,8 @@ Checking test 016 fv3_ccpp_stretched results .... Test 016 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1011,8 +1011,8 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1022,8 +1022,8 @@ Checking test 018 fv3_ccpp_regional_control results .... Test 018 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1031,8 +1031,8 @@ Checking test 019 fv3_ccpp_regional_restart results .... Test 019 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1042,8 +1042,8 @@ Checking test 020 fv3_ccpp_regional_quilt results .... Test 020 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 021 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1053,8 +1053,8 @@ Checking test 021 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 021 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_regional_c768_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_regional_c768_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_regional_c768_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_regional_c768_prod Checking test 022 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1064,8 +1064,8 @@ Checking test 022 fv3_ccpp_regional_c768 results .... Test 022 fv3_ccpp_regional_c768 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1094,8 +1094,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1114,8 +1114,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1162,8 +1162,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1210,8 +1210,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1258,8 +1258,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1306,8 +1306,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1354,8 +1354,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,8 +1402,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1450,8 +1450,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_cpt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1504,8 +1504,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gsd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1596,8 +1596,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1664,8 +1664,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,8 +1732,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1800,8 +1800,8 @@ Checking test 036 fv3_ccpp_rrfs_v1beta results .... Test 036 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gocart_clm_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gocart_clm_prod Checking test 037 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1848,8 +1848,8 @@ Checking test 037 fv3_ccpp_gocart_clm results .... Test 037 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gfs_v16beta_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gfs_v16beta_flake_prod Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1916,8 +1916,8 @@ Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Test 038 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1984,8 +1984,8 @@ Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2002,8 +2002,8 @@ Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gsd_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2070,8 +2070,8 @@ Checking test 041 fv3_ccpp_gsd_debug results .... Test 041 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2138,8 +2138,8 @@ Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Test 042 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,8 +2206,8 @@ Checking test 043 fv3_ccpp_thompson_debug results .... Test 043 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,8 +2274,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Test 044 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2342,8 +2342,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Test 045 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,8 +2410,8 @@ Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2429,5 +2429,5 @@ Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Nov 24 10:48:26 EST 2020 -Elapsed time: 00h:33m:59s. Have a nice day! +Thu Nov 26 17:40:25 EST 2020 +Elapsed time: 00h:32m:16s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 122983979e..e968e49d3e 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Tue Nov 24 03:42:18 UTC 2020 +Fri Nov 27 20:33:41 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfdlmp_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/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-20201124/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/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-20201124/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/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 @@ -186,8 +186,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-20201124/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -322,8 +322,8 @@ Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gsd_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gsd_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_gsd results .... Test 007 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_thompson_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_thompson_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -550,8 +550,8 @@ Checking test 008 fv3_ccpp_thompson results .... Test 008 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -618,8 +618,8 @@ Checking test 009 fv3_ccpp_thompson_no_aero results .... Test 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -686,8 +686,8 @@ Checking test 010 fv3_ccpp_rrfs_v1beta results .... Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -754,8 +754,8 @@ Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -772,8 +772,8 @@ Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_control_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_control_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -802,8 +802,8 @@ Checking test 013 fv3_ccpp_control_debug results .... Test 013 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -870,8 +870,8 @@ Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Test 014 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Test 015 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1074,8 +1074,8 @@ Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_multigases_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_multigases_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1216,8 +1216,8 @@ Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1235,5 +1235,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Nov 24 04:04:14 UTC 2020 -Elapsed time: 00h:21m:56s. Have a nice day! +Fri Nov 27 22:03:42 UTC 2020 +Elapsed time: 01h:30m:02s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 5f5aefecc6..a6c7114c8e 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Tue Nov 24 15:12:32 UTC 2020 +Fri Nov 27 17:02:09 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_control_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_decomp_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_2threads_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_restart_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_restart_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_read_inc_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_read_inc_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 .........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 @@ -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-20201124/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_stochy_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_stochy_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_iau_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_iau_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_ca_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_ca_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_lndp_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_lndp_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_lndp_prod Checking test 015 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_lndp results .... Test 015 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_multigases_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_multigases_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_control_32bit_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_32bit_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_stretched_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_stretched_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_regional_control_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_control_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_regional_restart_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_restart_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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-20201124/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_regional_c768_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_c768_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_regional_c768_prod Checking test 028 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1415,8 +1415,8 @@ Checking test 028 fv3_ccpp_regional_c768 results .... Test 028 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_control_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_control_debug_prod Checking test 029 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1445,8 +1445,8 @@ Checking test 029 fv3_ccpp_control_debug results .... Test 029 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_stretched_nest_debug_prod Checking test 030 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1465,8 +1465,8 @@ Checking test 030 fv3_ccpp_stretched_nest_debug results .... Test 030 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfdlmp_prod Checking test 031 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1513,8 +1513,8 @@ Checking test 031 fv3_ccpp_gfdlmp results .... Test 031 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfdlmprad_gwd_prod Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,8 +1561,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Test 032 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1609,8 +1609,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Test 033 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_csawmg_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_csawmg_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_csawmg_prod Checking test 034 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,8 +1657,8 @@ Checking test 034 fv3_ccpp_csawmg results .... Test 034 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_satmedmf_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_satmedmf_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_satmedmf_prod Checking test 035 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 035 fv3_ccpp_satmedmf results .... Test 035 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_satmedmfq_prod Checking test 036 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1753,8 +1753,8 @@ Checking test 036 fv3_ccpp_satmedmfq results .... Test 036 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfdlmp_32bit_prod Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1801,8 +1801,8 @@ Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Test 037 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1853,8 +1853,8 @@ Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Test 038 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_cpt_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_cpt_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_cpt_prod Checking test 039 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1907,8 +1907,8 @@ Checking test 039 fv3_ccpp_cpt results .... Test 039 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gsd_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gsd_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gsd_prod Checking test 040 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1999,8 +1999,8 @@ Checking test 040 fv3_ccpp_gsd results .... Test 040 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_rap_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_rap_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_rap_prod Checking test 041 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2067,8 +2067,8 @@ Checking test 041 fv3_ccpp_rap results .... Test 041 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_hrrr_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_hrrr_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_hrrr_prod Checking test 042 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2135,8 +2135,8 @@ Checking test 042 fv3_ccpp_hrrr results .... Test 042 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_thompson_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_thompson_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_thompson_prod Checking test 043 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2203,8 +2203,8 @@ Checking test 043 fv3_ccpp_thompson results .... Test 043 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_thompson_no_aero_prod Checking test 044 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2271,8 +2271,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero results .... Test 044 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_rrfs_v1beta_prod Checking test 045 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2339,8 +2339,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta results .... Test 045 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfs_v15p2_prod Checking test 046 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2407,8 +2407,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2 results .... Test 046 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfs_v16beta_prod Checking test 047 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2475,8 +2475,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta results .... Test 047 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -2543,8 +2543,8 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -2611,8 +2611,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 049 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -2659,8 +2659,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmg results .... Test 050 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -2707,8 +2707,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... Test 051 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -2755,8 +2755,8 @@ Checking test 052 fv3_ccpp_gocart_clm results .... Test 052 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -2823,8 +2823,8 @@ Checking test 053 fv3_ccpp_gfs_v16beta_flake results .... Test 053 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -2891,8 +2891,8 @@ Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -2909,8 +2909,8 @@ Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -2977,8 +2977,8 @@ Checking test 056 fv3_ccpp_gfs_v15p2_debug results .... Test 056 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -3045,8 +3045,8 @@ Checking test 057 fv3_ccpp_gfs_v16beta_debug results .... Test 057 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -3113,8 +3113,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -3181,8 +3181,8 @@ Checking test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -3249,8 +3249,8 @@ Checking test 060 fv3_ccpp_gsd_debug results .... Test 060 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -3317,8 +3317,8 @@ Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... Test 061 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -3385,8 +3385,8 @@ Checking test 062 fv3_ccpp_thompson_debug results .... Test 062 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -3453,8 +3453,8 @@ Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... Test 063 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -3521,8 +3521,8 @@ Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... Test 064 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -3589,8 +3589,8 @@ Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/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 @@ -3607,8 +3607,8 @@ Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_control_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_control_prod Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3660,8 +3660,8 @@ Checking test 067 cpld_control results .... Test 067 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_2threads_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_2threads_prod Checking test 068 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3713,8 +3713,8 @@ Checking test 068 cpld_2threads results .... Test 068 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_decomp_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_decomp_prod Checking test 069 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3766,8 +3766,8 @@ Checking test 069 cpld_decomp results .... Test 069 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_satmedmf_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_satmedmf_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_satmedmf_prod Checking test 070 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3819,8 +3819,8 @@ Checking test 070 cpld_satmedmf results .... Test 070 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_ca_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_ca_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_ca_prod Checking test 071 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3872,8 +3872,8 @@ Checking test 071 cpld_ca results .... Test 071 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_control_mx025_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_mx025_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_control_mx025_prod Checking test 072 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3928,8 +3928,8 @@ Checking test 072 cpld_control_mx025 results .... Test 072 cpld_control_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_control_mx025_12h_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_mx025_12h_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_control_mx025_12h_prod Checking test 073 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3984,8 +3984,8 @@ Checking test 073 cpld_control_mx025_12h results .... Test 073 cpld_control_mx025_12h PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_restart_mx025_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_mx025_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_restart_mx025_prod Checking test 074 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4040,8 +4040,8 @@ Checking test 074 cpld_restart_mx025 results .... Test 074 cpld_restart_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_control_c192_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_c192_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_control_c192_prod Checking test 075 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4093,8 +4093,8 @@ Checking test 075 cpld_control_c192 results .... Test 075 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_control_c384_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_c384_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_control_c384_prod Checking test 076 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4149,8 +4149,8 @@ Checking test 076 cpld_control_c384 results .... Test 076 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_controlfrac_c384_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_controlfrac_c384_prod Checking test 077 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4205,8 +4205,8 @@ Checking test 077 cpld_controlfrac_c384 results .... Test 077 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_bmark_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_bmark_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_bmark_prod Checking test 078 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4261,8 +4261,8 @@ Checking test 078 cpld_bmark results .... Test 078 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_bmark_wave_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_bmark_wave_prod Checking test 079 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4320,8 +4320,8 @@ Checking test 079 cpld_bmark_wave results .... Test 079 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_debug_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_debug_ccpp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_debug_prod Checking test 080 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4373,8 +4373,8 @@ Checking test 080 cpld_debug results .... Test 080 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/datm_control_cfsr_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/datm_control_cfsr +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/datm_control_cfsr_prod Checking test 081 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4382,8 +4382,8 @@ Checking test 081 datm_control_cfsr results .... Test 081 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/datm_control_gefs_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/datm_control_gefs +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/datm_control_gefs_prod Checking test 082 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4391,8 +4391,8 @@ Checking test 082 datm_control_gefs results .... Test 082 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/datm_mx025_cfsr_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/datm_mx025_cfsr +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/datm_mx025_cfsr_prod Checking test 083 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4403,8 +4403,8 @@ Checking test 083 datm_mx025_cfsr results .... Test 083 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/datm_mx025_gefs_prod +baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/datm_mx025_gefs +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/datm_mx025_gefs_prod Checking test 084 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4416,5 +4416,5 @@ Test 084 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Tue Nov 24 16:16:27 UTC 2020 -Elapsed time: 01h:03m:56s. Have a nice day! +Fri Nov 27 18:56:03 UTC 2020 +Elapsed time: 01h:53m:55s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 912f040220..6d507d11cb 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Tue Nov 24 09:15:18 CST 2020 +Fri Nov 27 10:33:15 CST 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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-20201124/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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-20201124/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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-20201124/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_restart_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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-20201124/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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-20201124/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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-20201124/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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-20201124/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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-20201124/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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-20201124/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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-20201124/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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-20201124/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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-20201124/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_iau_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_ca_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,8 +883,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1055,8 +1055,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_control_32bit results .... Test 019 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1179,8 +1179,8 @@ Checking test 020 fv3_ccpp_stretched results .... Test 020 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 021 fv3_ccpp_stretched_nest results .... Test 021 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1257,8 +1257,8 @@ Checking test 022 fv3_ccpp_regional_control results .... Test 022 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 023 fv3_ccpp_regional_restart results .... Test 023 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1277,19 +1277,19 @@ Checking test 024 fv3_ccpp_regional_quilt results .... Test 024 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_regional_c768_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1299,8 +1299,8 @@ Checking test 026 fv3_ccpp_regional_c768 results .... Test 026 fv3_ccpp_regional_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1329,8 +1329,8 @@ Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -1349,8 +1349,8 @@ Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1397,8 +1397,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -1445,8 +1445,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -1493,8 +1493,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1541,8 +1541,8 @@ Checking test 032 fv3_ccpp_csawmg results .... Test 032 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1589,8 +1589,8 @@ Checking test 033 fv3_ccpp_satmedmf results .... Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1637,8 +1637,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1689,8 +1689,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1743,8 +1743,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1835,8 +1835,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,8 +1903,8 @@ Checking test 038 fv3_ccpp_thompson results .... Test 038 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1971,8 +1971,8 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2039,8 +2039,8 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfs_v15p2_prod Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,8 +2107,8 @@ Checking test 041 fv3_ccpp_gfs_v15p2 results .... Test 041 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfs_v16beta_prod Checking test 042 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2175,8 +2175,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta results .... Test 042 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -2243,8 +2243,8 @@ Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -2311,8 +2311,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -2359,8 +2359,8 @@ Checking test 045 fv3_ccpp_gfsv16_csawmg results .... Test 045 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -2407,8 +2407,8 @@ Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... Test 046 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -2455,8 +2455,8 @@ Checking test 047 fv3_ccpp_gocart_clm results .... Test 047 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -2523,8 +2523,8 @@ Checking test 048 fv3_ccpp_gfs_v16beta_flake results .... Test 048 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -2591,8 +2591,8 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -2609,8 +2609,8 @@ Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -2677,8 +2677,8 @@ Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... Test 051 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -2745,8 +2745,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_debug results .... Test 052 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -2813,8 +2813,8 @@ Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -2881,8 +2881,8 @@ Checking test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -2949,8 +2949,8 @@ Checking test 055 fv3_ccpp_gsd_debug results .... Test 055 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -3017,8 +3017,8 @@ Checking test 056 fv3_ccpp_gsd_diag3d_debug results .... Test 056 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -3085,8 +3085,8 @@ Checking test 057 fv3_ccpp_thompson_debug results .... Test 057 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -3153,8 +3153,8 @@ Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... Test 058 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -3221,8 +3221,8 @@ Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... Test 059 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -3289,8 +3289,8 @@ Checking test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/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 @@ -3307,8 +3307,8 @@ Checking test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_control_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_control_prod Checking test 062 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3360,8 +3360,8 @@ Checking test 062 cpld_control results .... Test 062 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_2threads_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_2threads_prod Checking test 063 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3413,8 +3413,8 @@ Checking test 063 cpld_2threads results .... Test 063 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_decomp_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_decomp_prod Checking test 064 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3466,8 +3466,8 @@ Checking test 064 cpld_decomp results .... Test 064 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_satmedmf_prod Checking test 065 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3519,8 +3519,8 @@ Checking test 065 cpld_satmedmf results .... Test 065 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_ca_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_ca_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_ca_prod Checking test 066 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3572,8 +3572,8 @@ Checking test 066 cpld_ca results .... Test 066 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_control_mx025_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_control_mx025_prod Checking test 067 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3628,8 +3628,8 @@ Checking test 067 cpld_control_mx025 results .... Test 067 cpld_control_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_control_mx025_12h_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_mx025_12h_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_control_mx025_12h_prod Checking test 068 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3684,8 +3684,8 @@ Checking test 068 cpld_control_mx025_12h results .... Test 068 cpld_control_mx025_12h PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_restart_mx025_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_restart_mx025_prod Checking test 069 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3740,8 +3740,8 @@ Checking test 069 cpld_restart_mx025 results .... Test 069 cpld_restart_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_control_c192_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_control_c192_prod Checking test 070 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3793,8 +3793,8 @@ Checking test 070 cpld_control_c192 results .... Test 070 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_control_c384_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_control_c384_prod Checking test 071 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3849,8 +3849,8 @@ Checking test 071 cpld_control_c384 results .... Test 071 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_controlfrac_c384_prod Checking test 072 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3905,8 +3905,8 @@ Checking test 072 cpld_controlfrac_c384 results .... Test 072 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_bmark_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_bmark_prod Checking test 073 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3961,8 +3961,8 @@ Checking test 073 cpld_bmark results .... Test 073 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_bmark_wave_prod Checking test 074 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4020,8 +4020,8 @@ Checking test 074 cpld_bmark_wave results .... Test 074 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_debug_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_debug_ccpp +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_debug_prod Checking test 075 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4073,8 +4073,8 @@ Checking test 075 cpld_debug results .... Test 075 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/datm_control_cfsr_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/datm_control_cfsr +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/datm_control_cfsr_prod Checking test 076 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4082,8 +4082,8 @@ Checking test 076 datm_control_cfsr results .... Test 076 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/datm_control_gefs_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/datm_control_gefs +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/datm_control_gefs_prod Checking test 077 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4091,8 +4091,8 @@ Checking test 077 datm_control_gefs results .... Test 077 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/datm_mx025_cfsr_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/datm_mx025_cfsr +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/datm_mx025_cfsr_prod Checking test 078 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4103,8 +4103,8 @@ Checking test 078 datm_mx025_cfsr results .... Test 078 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/datm_mx025_gefs_prod +baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/datm_mx025_gefs +working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/datm_mx025_gefs_prod Checking test 079 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4116,5 +4116,5 @@ Test 079 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Tue Nov 24 10:11:14 CST 2020 -Elapsed time: 00h:55m:56s. Have a nice day! +Fri Nov 27 22:02:20 CST 2020 +Elapsed time: 11h:29m:06s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index d891e3cb2e..62b3c19184 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Tue Nov 24 15:29:05 UTC 2020 +Fri Nov 27 14:43:50 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/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-20201124/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/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-20201124/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/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-20201124/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/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-20201124/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/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-20201124/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/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-20201124/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/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-20201124/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/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-20201124/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/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-20201124/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/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-20201124/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/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-20201124/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,8 +1012,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,8 +1079,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1090,8 +1090,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1121,8 +1121,8 @@ Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1151,8 +1151,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1171,8 +1171,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,8 +1267,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,8 +1363,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,8 +1411,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,8 +1459,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,8 +1507,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,8 +1559,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,8 +1613,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 035 fv3_ccpp_thompson results .... Test 035 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Test 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_rrfs_v1beta_prod Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_rrfs_v1beta results .... Test 037 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gfsv16_csawmg_prod Checking test 038 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1957,8 +1957,8 @@ Checking test 038 fv3_ccpp_gfsv16_csawmg results .... Test 038 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gfsv16_csawmgt_prod Checking test 039 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2005,8 +2005,8 @@ Checking test 039 fv3_ccpp_gfsv16_csawmgt results .... Test 039 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gocart_clm_prod Checking test 040 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2053,8 +2053,8 @@ Checking test 040 fv3_ccpp_gocart_clm results .... Test 040 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gfs_v16beta_flake_prod Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2121,8 +2121,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... Test 041 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2189,8 +2189,8 @@ Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 042 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2207,8 +2207,8 @@ Checking test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gsd_debug_prod Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2275,8 +2275,8 @@ Checking test 044 fv3_ccpp_gsd_debug results .... Test 044 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gsd_diag3d_debug_prod Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2343,8 +2343,8 @@ Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Test 045 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_thompson_debug_prod Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2411,8 +2411,8 @@ Checking test 046 fv3_ccpp_thompson_debug results .... Test 046 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_thompson_no_aero_debug_prod Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2479,8 +2479,8 @@ Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Test 047 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2547,8 +2547,8 @@ Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Test 048 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2615,8 +2615,8 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2634,5 +2634,5 @@ Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Nov 24 16:00:44 UTC 2020 -Elapsed time: 00h:31m:39s. Have a nice day! +Fri Nov 27 15:25:26 UTC 2020 +Elapsed time: 00h:41m:36s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 6ab1e6652b..de950c52b9 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Tue Nov 24 15:26:00 UTC 2020 +Fri Nov 27 19:08:29 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/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-20201124/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/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-20201124/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/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-20201124/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/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-20201124/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/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-20201124/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/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-20201124/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/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-20201124/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/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 ............ALT CHECK......OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.nc ............ALT CHECK......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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/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-20201124/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/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-20201124/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/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-20201124/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -863,8 +863,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -912,8 +912,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -986,8 +986,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/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 @@ -1054,8 +1054,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/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 @@ -1177,8 +1177,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1188,8 +1188,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1197,8 +1197,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1208,19 +1208,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/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 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_regional_c768_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_regional_c768_prod Checking test 025 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1230,8 +1230,8 @@ Checking test 025 fv3_ccpp_regional_c768 results .... Test 025 fv3_ccpp_regional_c768 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_control_debug_prod Checking test 026 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1260,8 +1260,8 @@ Checking test 026 fv3_ccpp_control_debug results .... Test 026 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_stretched_nest_debug_prod Checking test 027 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1280,8 +1280,8 @@ Checking test 027 fv3_ccpp_stretched_nest_debug results .... Test 027 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,8 +1328,8 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,8 +1376,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1424,8 +1424,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1472,8 +1472,8 @@ Checking test 031 fv3_ccpp_csawmg results .... Test 031 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1520,8 +1520,8 @@ Checking test 032 fv3_ccpp_satmedmf results .... Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1568,8 +1568,8 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1616,8 +1616,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1668,8 +1668,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,8 +1722,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1814,8 +1814,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1882,8 +1882,8 @@ Checking test 038 fv3_ccpp_thompson results .... Test 038 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1950,8 +1950,8 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2018,8 +2018,8 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2066,8 +2066,8 @@ Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Test 041 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2114,8 +2114,8 @@ Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Test 042 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2162,8 +2162,8 @@ Checking test 043 fv3_ccpp_gocart_clm results .... Test 043 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2230,8 +2230,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Test 044 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2298,8 +2298,8 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2316,8 +2316,8 @@ Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2384,8 +2384,8 @@ Checking test 047 fv3_ccpp_gsd_debug results .... Test 047 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2452,8 +2452,8 @@ Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Test 048 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2520,8 +2520,8 @@ Checking test 049 fv3_ccpp_thompson_debug results .... Test 049 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2588,8 +2588,8 @@ Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Test 050 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2656,8 +2656,8 @@ Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Test 051 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2724,8 +2724,8 @@ Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2742,8 +2742,8 @@ Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_control_prod Checking test 054 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2795,8 +2795,8 @@ Checking test 054 cpld_control results .... Test 054 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_2threads_prod Checking test 055 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2848,8 +2848,8 @@ Checking test 055 cpld_2threads results .... Test 055 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_decomp_prod Checking test 056 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2901,8 +2901,8 @@ Checking test 056 cpld_decomp results .... Test 056 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_satmedmf_prod Checking test 057 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2954,8 +2954,8 @@ Checking test 057 cpld_satmedmf results .... Test 057 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_ca_prod Checking test 058 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3007,8 +3007,8 @@ Checking test 058 cpld_ca results .... Test 058 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_control_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_control_mx025_prod Checking test 059 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3063,8 +3063,8 @@ Checking test 059 cpld_control_mx025 results .... Test 059 cpld_control_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_control_mx025_12h_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_control_mx025_12h_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_control_mx025_12h_prod Checking test 060 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3119,8 +3119,8 @@ Checking test 060 cpld_control_mx025_12h results .... Test 060 cpld_control_mx025_12h PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_restart_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_restart_mx025_prod Checking test 061 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3175,8 +3175,8 @@ Checking test 061 cpld_restart_mx025 results .... Test 061 cpld_restart_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_control_c192_prod Checking test 062 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3228,8 +3228,8 @@ Checking test 062 cpld_control_c192 results .... Test 062 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_control_c384_prod Checking test 063 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3284,8 +3284,8 @@ Checking test 063 cpld_control_c384 results .... Test 063 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_controlfrac_c384_prod Checking test 064 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3340,8 +3340,8 @@ Checking test 064 cpld_controlfrac_c384 results .... Test 064 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_bmark_prod Checking test 065 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3396,8 +3396,8 @@ Checking test 065 cpld_bmark results .... Test 065 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_bmark_wave_prod Checking test 066 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3455,8 +3455,8 @@ Checking test 066 cpld_bmark_wave results .... Test 066 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_debug_prod Checking test 067 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3509,5 +3509,5 @@ Test 067 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Nov 24 22:18:24 UTC 2020 -Elapsed time: 06h:52m:25s. Have a nice day! +Fri Nov 27 21:10:37 UTC 2020 +Elapsed time: 02h:02m:10s. Have a nice day! diff --git a/tests/parm/ccpp_control.nml.IN b/tests/parm/ccpp_control.nml.IN index 33e6e17738..02be1792c6 100644 --- a/tests/parm/ccpp_control.nml.IN +++ b/tests/parm/ccpp_control.nml.IN @@ -263,23 +263,23 @@ FSICS = 99999, / &nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, SKEBNORM=1, SKEB_NPASS=30, SKEB_VDOF=5, SKEB=@[SKEB], SKEB_TAU=2.16E4, SKEB_LSCALE=1000.E3, + SKEBINT=1800, SHUM=@[SHUM], SHUM_TAU=21600, SHUM_LSCALE=500000, + SHUMINT=3600, SPPT=@[SPPT], SPPT_TAU=21600, SPPT_LSCALE=500000, SPPT_LOGIT=.TRUE., SPPT_SFCLIMIT=.TRUE., + SPPTINT=1800, ISEED_SHUM=1, ISEED_SKEB=2, ISEED_SPPT=3, diff --git a/tests/rt.sh b/tests/rt.sh index ad3e85deec..5b10979d1a 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -396,9 +396,9 @@ if [[ $TESTS_FILE =~ '35d' ]]; then fi if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = jet.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201124/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201127/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201124} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201127} fi shift $((OPTIND-1)) diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 4e49f37615..57bfbc1b10 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -270,7 +270,7 @@ check_results() { d=$( cmp ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i | wc -l ) if [[ $d -ne 0 ]] ; then - if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss_dell_p3 || ${MACHINE_ID} =~ wcoss_cray || ${MACHINE_ID} =~ cheyenne ]]; then + if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss_dell_p3 || ${MACHINE_ID} =~ wcoss_cray || ${MACHINE_ID} =~ cheyenne || ${MACHINE_ID} =~ gaea ]]; then printf ".......ALT CHECK.." >> ${REGRESSIONTEST_LOG} printf ".......ALT CHECK.." d=$( ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i 2>/dev/null | wc -l ) From d4de9e6e0754475d40d4b68559232c5a23042289 Mon Sep 17 00:00:00 2001 From: DomHeinzeller <58610420+DomHeinzeller@users.noreply.github.com> Date: Tue, 1 Dec 2020 10:09:00 -0700 Subject: [PATCH 033/109] RUC ice for gsl/develop (replaces #47) (#49) Implementation of RUC LSM ice model in CCPP * Squash-merge climbfuji:rucice_gfsv16dzmin into gsl/develop * Add kice=9 to tests/tests/fv3_ccpp_rap and tests/tests/fv3_ccpp_hrrr * Change NEW_BASELINE directory for gsl/develop to avoid conflicts with development work on the authoritative branches * Add KICE=9 to tests/tests/fv3_ccpp_gsd_unified_ugwp and tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp * Revert change to .gitmodules and update submodule pointer for fv3atm Co-authored-by: Dom Heinzeller --- FV3 | 2 +- tests/default_vars.sh | 1 + tests/parm/ccpp_gsd.nml.IN | 1 + tests/parm/ccpp_gsd_sar.nml.IN | 1 + tests/rt.sh | 2 +- tests/tests/fv3_ccpp_gsd | 2 +- tests/tests/fv3_ccpp_gsd_coldstart | 2 +- tests/tests/fv3_ccpp_gsd_debug | 2 +- tests/tests/fv3_ccpp_gsd_diag3d_debug | 2 +- tests/tests/fv3_ccpp_gsd_drag_suite | 1 + tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp | 2 ++ tests/tests/fv3_ccpp_gsd_mynnsfc | 1 + tests/tests/fv3_ccpp_gsd_mynnsfc_debug | 1 + tests/tests/fv3_ccpp_gsd_unified_ugwp | 2 ++ tests/tests/fv3_ccpp_gsd_warmstart | 2 +- tests/tests/fv3_ccpp_hrrr | 2 ++ tests/tests/fv3_ccpp_rap | 2 ++ 17 files changed, 21 insertions(+), 7 deletions(-) diff --git a/FV3 b/FV3 index 478d3482fe..bd71c2afd1 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 478d3482fef6ae7be0a2ebd6d7fdcb407a3f4209 +Subproject commit bd71c2afd1195e9e25962ec94bdb5e41de349769 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 1e7a4c4632..19f4fc20de 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -275,6 +275,7 @@ export DO_MYNNSFCLAY=.F. export LSM=1 export LSOIL_LSM=4 export LANDICE=.T. +export KICE=2 # Ozone / stratospheric H2O export OZ_PHYS_OLD=.T. diff --git a/tests/parm/ccpp_gsd.nml.IN b/tests/parm/ccpp_gsd.nml.IN index 92623f50a9..67e880a656 100644 --- a/tests/parm/ccpp_gsd.nml.IN +++ b/tests/parm/ccpp_gsd.nml.IN @@ -176,6 +176,7 @@ n_var_lndp = @[N_VAR_LNDP] lsm = @[LSM] lsoil_lsm = @[LSOIL_LSM] + kice = @[KICE] iopt_dveg = 2 iopt_crs = 1 iopt_btr = 1 diff --git a/tests/parm/ccpp_gsd_sar.nml.IN b/tests/parm/ccpp_gsd_sar.nml.IN index 39d40f8162..ec5c0869f2 100644 --- a/tests/parm/ccpp_gsd_sar.nml.IN +++ b/tests/parm/ccpp_gsd_sar.nml.IN @@ -199,6 +199,7 @@ lsm = 3 lsoil = 9 lsoil_lsm = 9 + kice = 9 iopt_dveg = 2 iopt_crs = 1 iopt_btr = 1 diff --git a/tests/rt.sh b/tests/rt.sh index ad3e85deec..16d2665bdc 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -317,7 +317,7 @@ fi mkdir -p ${STMP}/${USER} # Different own baseline directories for different compilers on Theia/Cheyenne -NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST +NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST_GSL_DEVELOP if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]]; then NEW_BASELINE=${NEW_BASELINE}_${RT_COMPILER^^} fi diff --git a/tests/tests/fv3_ccpp_gsd b/tests/tests/fv3_ccpp_gsd index 442117df57..077446b405 100644 --- a/tests/tests/fv3_ccpp_gsd +++ b/tests/tests/fv3_ccpp_gsd @@ -118,7 +118,7 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 - +export KICE=9 export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_coldstart b/tests/tests/fv3_ccpp_gsd_coldstart index e43553acb8..d1343f0b9b 100644 --- a/tests/tests/fv3_ccpp_gsd_coldstart +++ b/tests/tests/fv3_ccpp_gsd_coldstart @@ -56,4 +56,4 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 - +export KICE=9 diff --git a/tests/tests/fv3_ccpp_gsd_debug b/tests/tests/fv3_ccpp_gsd_debug index 2e2d073d4d..e665bbf9e3 100644 --- a/tests/tests/fv3_ccpp_gsd_debug +++ b/tests/tests/fv3_ccpp_gsd_debug @@ -94,6 +94,6 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 - +export KICE=9 export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_diag3d_debug b/tests/tests/fv3_ccpp_gsd_diag3d_debug index 2f46c151e6..cade76ed3e 100644 --- a/tests/tests/fv3_ccpp_gsd_diag3d_debug +++ b/tests/tests/fv3_ccpp_gsd_diag3d_debug @@ -98,7 +98,7 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 - +export KICE=9 export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_drag_suite b/tests/tests/fv3_ccpp_gsd_drag_suite index 0091c90558..e7f7cdfc0a 100644 --- a/tests/tests/fv3_ccpp_gsd_drag_suite +++ b/tests/tests/fv3_ccpp_gsd_drag_suite @@ -94,6 +94,7 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 +export KICE=9 export GWD_OPT=3 export DO_UGWP_V0=.F. export DO_UGWP_V0_OROG_ONLY=.F. diff --git a/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp b/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp index 44ddf4fcfd..022cd47b69 100644 --- a/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp +++ b/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp @@ -94,6 +94,8 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 +export KICE=9 + export GWD_OPT=2 export DO_UGWP_V0=.F. export DO_UGWP_V0_OROG_ONLY=.F. diff --git a/tests/tests/fv3_ccpp_gsd_mynnsfc b/tests/tests/fv3_ccpp_gsd_mynnsfc index 8d39c21413..fae4d8512b 100644 --- a/tests/tests/fv3_ccpp_gsd_mynnsfc +++ b/tests/tests/fv3_ccpp_gsd_mynnsfc @@ -120,6 +120,7 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 +export KICE=9 RUN_SCRIPT=rt_fv3.sh diff --git a/tests/tests/fv3_ccpp_gsd_mynnsfc_debug b/tests/tests/fv3_ccpp_gsd_mynnsfc_debug index a394908ad7..21d9901715 100644 --- a/tests/tests/fv3_ccpp_gsd_mynnsfc_debug +++ b/tests/tests/fv3_ccpp_gsd_mynnsfc_debug @@ -96,6 +96,7 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 +export KICE=9 RUN_SCRIPT=rt_fv3.sh diff --git a/tests/tests/fv3_ccpp_gsd_unified_ugwp b/tests/tests/fv3_ccpp_gsd_unified_ugwp index f9387b81d9..1425c0c4aa 100644 --- a/tests/tests/fv3_ccpp_gsd_unified_ugwp +++ b/tests/tests/fv3_ccpp_gsd_unified_ugwp @@ -118,6 +118,8 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 +export KICE=9 + export GWD_OPT=2 export DO_UGWP_V0=.T. export DO_UGWP_V0_OROG_ONLY=.F. diff --git a/tests/tests/fv3_ccpp_gsd_warmstart b/tests/tests/fv3_ccpp_gsd_warmstart index 3904d145b9..0d9d28950d 100644 --- a/tests/tests/fv3_ccpp_gsd_warmstart +++ b/tests/tests/fv3_ccpp_gsd_warmstart @@ -96,4 +96,4 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 - +export KICE=9 diff --git a/tests/tests/fv3_ccpp_hrrr b/tests/tests/fv3_ccpp_hrrr index be2a1f9c2f..70c67c1afc 100644 --- a/tests/tests/fv3_ccpp_hrrr +++ b/tests/tests/fv3_ccpp_hrrr @@ -95,6 +95,8 @@ export IMFSHALCNV=-1 export IMFDEEPCNV=-1 export LSM=3 export LSOIL_LSM=9 +export KICE=9 + export GWD_OPT=3 export DO_UGWP_V0=.F. export DO_UGWP_V0_OROG_ONLY=.F. diff --git a/tests/tests/fv3_ccpp_rap b/tests/tests/fv3_ccpp_rap index f87f7034b2..d3b2ab7df5 100644 --- a/tests/tests/fv3_ccpp_rap +++ b/tests/tests/fv3_ccpp_rap @@ -95,6 +95,8 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 +export KICE=9 + export GWD_OPT=3 export DO_UGWP_V0=.F. export DO_UGWP_V0_OROG_ONLY=.F. From 63591b60481543267408513f1a6cb850279221c3 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 2 Dec 2020 12:12:38 -0700 Subject: [PATCH 034/109] Update for Jet, bug fixes in running with frac_grid=T and GFDL MP, and in restarting with frac_grid=T (#304) Update the modulefile for jet.intel to enable UPP v10.0.0. The hpc-stack v1.0.0 pre-release is used for this. Small changes are made to tests.rt.sh for jet.intel and gaea.intel (consistency with other platforms). The submodule pointer update for fv3atm addresses bugs in the ufs-weather-model with frac_grid=T and GFDL microphysics, and with restarting the model when frac_grid=T (from @shansun6 and @SMoorthi-emc). --- FV3 | 2 +- cmake/configure_jet.intel.cmake | 3 +- modulefiles/jet.intel/fv3 | 72 +- tests/RegressionTests_cheyenne.gnu.log | 86 +- tests/RegressionTests_cheyenne.intel.log | 2281 +--------- tests/RegressionTests_gaea.intel.log | 196 +- tests/RegressionTests_hera.gnu.log | 86 +- tests/RegressionTests_hera.intel.log | 344 +- tests/RegressionTests_jet.intel.log | 5112 +++------------------- tests/RegressionTests_orion.intel.log | 324 +- tests/RegressionTests_wcoss_cray.log | 206 +- tests/RegressionTests_wcoss_dell_p3.log | 282 +- tests/rt.conf | 8 +- tests/rt.sh | 10 +- tests/rt_utils.sh | 2 +- 15 files changed, 1718 insertions(+), 7296 deletions(-) diff --git a/FV3 b/FV3 index a898cca15f..d10e4506af 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit a898cca15f8c3bdcc2c6d30de1e4bbe1ed9da110 +Subproject commit d10e4506aff4a23c5cf981aaf7661fde49e62599 diff --git a/cmake/configure_jet.intel.cmake b/cmake/configure_jet.intel.cmake index 19baeb71ca..3b151ec3f0 100644 --- a/cmake/configure_jet.intel.cmake +++ b/cmake/configure_jet.intel.cmake @@ -1,3 +1,4 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) +set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) set(SIMDMULTIARCH ON CACHE BOOL "Enable multi-target SIMD instruction sets" FORCE) diff --git a/modulefiles/jet.intel/fv3 b/modulefiles/jet.intel/fv3 index 7fba88ede5..b56733b2c3 100644 --- a/modulefiles/jet.intel/fv3 +++ b/modulefiles/jet.intel/fv3 @@ -1,53 +1,43 @@ -#%Module###################################################################### -## -## nems prerequisites -## +#%Module proc ModulesHelp {} { - puts stderr "The prerequisites for compiling or running FV3 on Jet/Intel" + puts stderr "\tcit - loads modules required for building and running UFS Model on Jet/Intel" } -module purge +module-whatis "loads UFS Model prerequisites for Jet/Intel" -## -## load contrib environment -## load slurm utils (arbitrary.pl layout.pl) -## -module use -a /contrib/sutils/modulefiles +module use /contrib/sutils/modulefiles module load sutils -module load intel/18.0.5.274 -module load impi/2018.4.274 - -## -## use pre-compiled PNG, NetCDF, ESMF and NCEP libraries for above compiler / MPI combination -## -module use -a /lfs4/HFIP/hfv3gfs/software/ufs-stack-20200909/intel-18.0.5.274/impi-2018.4.274/modules - -module load libpng/1.6.35 -module load netcdf/4.7.4 -module load esmf/8.1.0bs27 - -module load bacio/2.4.0 -module load crtm/2.3.0 -module load g2/3.4.0 -module load g2tmpl/1.9.0 -module load ip/3.3.0 -module load nceppost/dceca26 -module load nemsio/2.5.1 -module load sp/2.3.0 -module load w3emc/2.7.0 -module load w3nco/2.4.0 - -module load gfsio/1.4.0 -module load sfcio/1.4.0 -module load sigio/2.3.0 - -## -## load cmake -## 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 + +# At this time (2020/11/30), this is the pre-release version 1.0.0 +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/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 0e566d9dc5..89a638ee92 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Thu Nov 26 13:17:36 MST 2020 +Tue Dec 1 13:12:56 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/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-20201127/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/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-20201127/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/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 @@ -186,8 +186,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-20201127/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -322,8 +322,8 @@ Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_gsd results .... Test 007 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -550,8 +550,8 @@ Checking test 008 fv3_ccpp_thompson results .... Test 008 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -618,8 +618,8 @@ Checking test 009 fv3_ccpp_thompson_no_aero results .... Test 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -686,8 +686,8 @@ Checking test 010 fv3_ccpp_rrfs_v1beta results .... Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -754,8 +754,8 @@ Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -772,8 +772,8 @@ Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -802,8 +802,8 @@ Checking test 013 fv3_ccpp_control_debug results .... Test 013 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -870,8 +870,8 @@ Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Test 014 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Test 015 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1074,8 +1074,8 @@ Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1216,8 +1216,8 @@ Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14276/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1235,5 +1235,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 26 13:33:44 MST 2020 -Elapsed time: 00h:16m:09s. Have a nice day! +Tue Dec 1 13:29:10 MST 2020 +Elapsed time: 00h:16m:14s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 01cb2e80af..9086a714e4 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,1635 +1,10 @@ -Thu Nov 26 15:29:22 MST 2020 +Tue Dec 1 13:25:17 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control 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 001 fv3_ccpp_control PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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 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 002 fv3_ccpp_decomp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads 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 003 fv3_ccpp_2threads PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart 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 004 fv3_ccpp_restart PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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 - 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 005 fv3_ccpp_read_inc PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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 - 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.nc .........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 - 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 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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 - 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.nc .........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 - 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 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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 - 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.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 - 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 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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 - 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.nc .........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 - 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 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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 - 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 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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 - 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 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - 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 ............ALT CHECK......OK - Comparing phyf000.tile2.nc ............ALT CHECK......OK - Comparing phyf000.tile3.nc ............ALT CHECK......OK - Comparing phyf000.tile4.nc ............ALT CHECK......OK - Comparing phyf000.tile5.nc ............ALT CHECK......OK - Comparing phyf000.tile6.nc ............ALT CHECK......OK - Comparing phyf012.tile1.nc ............ALT CHECK......OK - Comparing phyf012.tile2.nc ............ALT CHECK......OK - Comparing phyf012.tile3.nc ............ALT CHECK......OK - Comparing phyf012.tile4.nc ............ALT CHECK......OK - Comparing phyf012.tile5.nc ............ALT CHECK......OK - Comparing phyf012.tile6.nc ............ALT CHECK......OK - Comparing dynf000.tile1.nc ............ALT CHECK......OK - Comparing dynf000.tile2.nc ............ALT CHECK......OK - Comparing dynf000.tile3.nc ............ALT CHECK......OK - Comparing dynf000.tile4.nc ............ALT CHECK......OK - Comparing dynf000.tile5.nc ............ALT CHECK......OK - Comparing dynf000.tile6.nc ............ALT CHECK......OK - Comparing dynf012.tile1.nc ............ALT CHECK......OK - Comparing dynf012.tile2.nc ............ALT CHECK......OK - Comparing dynf012.tile3.nc ............ALT CHECK......OK - Comparing dynf012.tile4.nc ............ALT CHECK......OK - Comparing dynf012.tile5.nc ............ALT CHECK......OK - Comparing dynf012.tile6.nc ............ALT CHECK......OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.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 012 fv3_ccpp_stochy PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_iau_prod -Checking test 013 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 013 fv3_ccpp_iau PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_ca_prod -Checking test 014 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 014 fv3_ccpp_ca PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_lheatstrg_prod -Checking test 015 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 015 fv3_ccpp_lheatstrg PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_multigases_prod -Checking test 016 fv3_ccpp_multigases 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 - 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 016 fv3_ccpp_multigases PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_control_32bit_prod -Checking test 017 fv3_ccpp_control_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.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 017 fv3_ccpp_control_32bit PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_stretched_prod -Checking test 018 fv3_ccpp_stretched 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 fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 018 fv3_ccpp_stretched PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_stretched_nest_prod -Checking test 019 fv3_ccpp_stretched_nest 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.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 019 fv3_ccpp_stretched_nest PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_regional_control_prod -Checking test 020 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 - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_regional_restart_prod -Checking test 021 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 - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_regional_quilt_prod -Checking test 022 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 - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 023 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 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_control_debug_prod -Checking test 024 fv3_ccpp_control_debug results .... - 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 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 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 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 -Test 024 fv3_ccpp_control_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_stretched_nest_debug_prod -Checking test 025 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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - 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 - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfdlmp_prod -Checking test 026 fv3_ccpp_gfdlmp 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 026 fv3_ccpp_gfdlmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 027 fv3_ccpp_gfdlmprad_gwd 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 027 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 028 fv3_ccpp_gfdlmprad_noahmp 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 028 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_csawmg_prod -Checking test 029 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 029 fv3_ccpp_csawmg PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_satmedmf_prod -Checking test 030 fv3_ccpp_satmedmf 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 030 fv3_ccpp_satmedmf PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_satmedmfq_prod -Checking test 031 fv3_ccpp_satmedmfq 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 031 fv3_ccpp_satmedmfq PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfdlmp_32bit_prod -Checking test 032 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 032 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 033 fv3_ccpp_gfdlmprad_32bit_post 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 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 - 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_gfdlmprad_32bit_post PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_cpt_prod -Checking test 034 fv3_ccpp_cpt results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfdlmp_prod +Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1660,12 +35,6 @@ Checking test 034 fv3_ccpp_cpt 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/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 @@ -1678,12 +47,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 001 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gsd_prod -Checking test 035 fv3_ccpp_gsd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -1702,18 +71,6 @@ Checking test 035 fv3_ccpp_gsd results .... Comparing phyf024.tile4.nc .........OK Comparing phyf024.tile5.nc .........OK Comparing phyf024.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 dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK @@ -1726,18 +83,6 @@ Checking test 035 fv3_ccpp_gsd results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.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 @@ -1758,92 +103,24 @@ Checking test 035 fv3_ccpp_gsd 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/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 035 fv3_ccpp_gsd PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_thompson_prod -Checking test 036 fv3_ccpp_thompson 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 036 fv3_ccpp_thompson PASS +Test 002 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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-20201201/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -1894,92 +171,24 @@ Checking test 037 fv3_ccpp_thompson_no_aero 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/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_thompson_no_aero PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_rrfs_v1beta_prod -Checking test 038 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 038 fv3_ccpp_rrfs_v1beta PASS +Test 003 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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-20201201/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2042,12 +251,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 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/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-20201201/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2110,12 +319,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 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2178,12 +387,12 @@ Checking test 041 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 041 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 042 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gsd_prod +Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2202,6 +411,18 @@ Checking test 042 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing phyf024.tile4.nc .........OK Comparing phyf024.tile5.nc .........OK Comparing phyf024.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 dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK @@ -2214,6 +435,18 @@ Checking test 042 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.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 @@ -2234,72 +467,24 @@ Checking test 042 fv3_ccpp_gfs_v16beta_RRTMGP 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 042 fv3_ccpp_gfs_v16beta_RRTMGP PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gocart_clm_prod -Checking test 043 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 043 fv3_ccpp_gocart_clm 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 007 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_thompson_prod +Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2350,24 +535,24 @@ Checking test 044 fv3_ccpp_gfs_v16beta_flake 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 044 fv3_ccpp_gfs_v16beta_flake 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 008 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_thompson_no_aero_prod +Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2418,42 +603,24 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson 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 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK - 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 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 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 047 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_rrfs_v1beta_prod +Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2466,24 +633,24 @@ Checking test 047 fv3_ccpp_gfs_v16beta_debug results .... 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 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 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 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 @@ -2516,12 +683,12 @@ Checking test 047 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 047 fv3_ccpp_gfs_v16beta_debug PASS +Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 011 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 @@ -2534,24 +701,24 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... 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 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 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 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 @@ -2572,92 +739,72 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug 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/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_gfs_v15p2_RRTMGP_debug PASS + 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 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 049 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 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_control_debug_prod +Checking test 013 fv3_ccpp_control_debug results .... 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 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 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 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 013 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gsd_debug_prod -Checking test 050 fv3_ccpp_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2670,24 +817,24 @@ Checking test 050 fv3_ccpp_gsd_debug results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 @@ -2720,12 +867,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 014 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2738,24 +885,24 @@ Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 @@ -2788,12 +935,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 015 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_thompson_debug_prod -Checking test 052 fv3_ccpp_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 016 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 @@ -2856,12 +1003,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 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 017 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 @@ -2924,12 +1071,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 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_multigases_prod +Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2942,24 +1089,24 @@ Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 @@ -2992,12 +1139,18 @@ 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 + 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 018 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 019 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 @@ -3060,12 +1213,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 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64856/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3078,9 +1231,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 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 26 16:01:08 MST 2020 -Elapsed time: 00h:31m:46s. Have a nice day! +Tue Dec 1 13:45:34 MST 2020 +Elapsed time: 00h:20m:17s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index a9346cbfdc..cda24da500 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Thu Nov 26 17:08:10 EST 2020 +Tue Dec 1 16:29:49 EST 2020 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/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-20201127/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/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-20201127/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/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-20201127/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/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-20201127/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/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-20201127/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/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-20201127/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/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-20201127/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/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-20201127/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/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-20201127/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/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-20201127/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/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-20201127/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/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 = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -746,8 +746,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -820,8 +820,8 @@ Checking test 014 fv3_ccpp_multigases results .... Test 014 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_control_32bit results .... Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,8 +944,8 @@ Checking test 016 fv3_ccpp_stretched results .... Test 016 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1011,8 +1011,8 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1022,8 +1022,8 @@ Checking test 018 fv3_ccpp_regional_control results .... Test 018 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1031,8 +1031,8 @@ Checking test 019 fv3_ccpp_regional_restart results .... Test 019 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1042,19 +1042,19 @@ Checking test 020 fv3_ccpp_regional_quilt results .... Test 020 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 021 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 phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK Test 021 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_regional_c768_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_regional_c768_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_c768_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_regional_c768_prod Checking test 022 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1064,8 +1064,8 @@ Checking test 022 fv3_ccpp_regional_c768 results .... Test 022 fv3_ccpp_regional_c768 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1094,8 +1094,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1114,8 +1114,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1162,8 +1162,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1210,8 +1210,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1258,8 +1258,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1306,8 +1306,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1354,8 +1354,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,8 +1402,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1450,8 +1450,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_cpt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1504,8 +1504,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gsd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1596,8 +1596,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1664,8 +1664,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,8 +1732,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1800,8 +1800,8 @@ Checking test 036 fv3_ccpp_rrfs_v1beta results .... Test 036 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gocart_clm_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gocart_clm_prod Checking test 037 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1848,8 +1848,8 @@ Checking test 037 fv3_ccpp_gocart_clm results .... Test 037 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gfs_v16beta_flake_prod Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1916,8 +1916,8 @@ Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Test 038 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1984,8 +1984,8 @@ Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2002,8 +2002,8 @@ Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gsd_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2070,8 +2070,8 @@ Checking test 041 fv3_ccpp_gsd_debug results .... Test 041 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2138,8 +2138,8 @@ Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Test 042 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,8 +2206,8 @@ Checking test 043 fv3_ccpp_thompson_debug results .... Test 043 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,8 +2274,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Test 044 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2342,8 +2342,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Test 045 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,8 +2410,8 @@ Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201127/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28003/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2429,5 +2429,5 @@ Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Nov 26 17:40:25 EST 2020 -Elapsed time: 00h:32m:16s. Have a nice day! +Tue Dec 1 17:01:46 EST 2020 +Elapsed time: 00h:31m:59s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index e968e49d3e..da39839dcb 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Fri Nov 27 20:33:41 UTC 2020 +Wed Dec 2 07:25:23 UTC 2020 Start Regression test -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfdlmp_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/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 @@ -186,8 +186,8 @@ Checking test 003 fv3_ccpp_gfs_v16beta results .... Test 003 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -322,8 +322,8 @@ Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gsd_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_gsd results .... Test 007 fv3_ccpp_gsd PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_thompson_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -550,8 +550,8 @@ Checking test 008 fv3_ccpp_thompson results .... Test 008 fv3_ccpp_thompson PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -618,8 +618,8 @@ Checking test 009 fv3_ccpp_thompson_no_aero results .... Test 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -686,8 +686,8 @@ Checking test 010 fv3_ccpp_rrfs_v1beta results .... Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -754,8 +754,8 @@ Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -772,8 +772,8 @@ Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_control_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -802,8 +802,8 @@ Checking test 013 fv3_ccpp_control_debug results .... Test 013 fv3_ccpp_control_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -870,8 +870,8 @@ Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Test 014 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Test 015 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1074,8 +1074,8 @@ Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/fv3_multigases_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1216,8 +1216,8 @@ Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_204799/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1235,5 +1235,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 27 22:03:42 UTC 2020 -Elapsed time: 01h:30m:02s. Have a nice day! +Wed Dec 2 07:51:20 UTC 2020 +Elapsed time: 00h:25m:57s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index a6c7114c8e..a26dd525e7 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Fri Nov 27 17:02:09 UTC 2020 +Wed Dec 2 07:25:24 UTC 2020 Start Regression test -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_restart_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_read_inc_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........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 @@ -486,8 +486,8 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_stochy_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_iau_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_ca_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_lndp_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_lndp_prod Checking test 015 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_lndp results .... Test 015 fv3_ccpp_lndp PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_multigases_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_32bit_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_stretched_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_control_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_restart_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_c768_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_regional_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_regional_c768_prod Checking test 028 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1415,8 +1415,8 @@ Checking test 028 fv3_ccpp_regional_c768 results .... Test 028 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_control_debug_prod Checking test 029 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1445,8 +1445,8 @@ Checking test 029 fv3_ccpp_control_debug results .... Test 029 fv3_ccpp_control_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_stretched_nest_debug_prod Checking test 030 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1465,8 +1465,8 @@ Checking test 030 fv3_ccpp_stretched_nest_debug results .... Test 030 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfdlmp_prod Checking test 031 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1513,8 +1513,8 @@ Checking test 031 fv3_ccpp_gfdlmp results .... Test 031 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfdlmprad_gwd_prod Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,8 +1561,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Test 032 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1609,8 +1609,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Test 033 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_csawmg_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_csawmg_prod Checking test 034 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,8 +1657,8 @@ Checking test 034 fv3_ccpp_csawmg results .... Test 034 fv3_ccpp_csawmg PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_satmedmf_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_satmedmf_prod Checking test 035 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 035 fv3_ccpp_satmedmf results .... Test 035 fv3_ccpp_satmedmf PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_satmedmfq_prod Checking test 036 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1753,8 +1753,8 @@ Checking test 036 fv3_ccpp_satmedmfq results .... Test 036 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfdlmp_32bit_prod Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1801,8 +1801,8 @@ Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Test 037 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1853,8 +1853,8 @@ Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Test 038 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_cpt_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_cpt_prod Checking test 039 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1907,8 +1907,8 @@ Checking test 039 fv3_ccpp_cpt results .... Test 039 fv3_ccpp_cpt PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gsd_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gsd_prod Checking test 040 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1999,8 +1999,8 @@ Checking test 040 fv3_ccpp_gsd results .... Test 040 fv3_ccpp_gsd PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_rap_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_rap_prod Checking test 041 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2067,8 +2067,8 @@ Checking test 041 fv3_ccpp_rap results .... Test 041 fv3_ccpp_rap PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_hrrr_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_hrrr_prod Checking test 042 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2135,8 +2135,8 @@ Checking test 042 fv3_ccpp_hrrr results .... Test 042 fv3_ccpp_hrrr PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_thompson_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_thompson_prod Checking test 043 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2203,8 +2203,8 @@ Checking test 043 fv3_ccpp_thompson results .... Test 043 fv3_ccpp_thompson PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_thompson_no_aero_prod Checking test 044 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2271,8 +2271,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero results .... Test 044 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_rrfs_v1beta_prod Checking test 045 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2339,8 +2339,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta results .... Test 045 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfs_v15p2_prod Checking test 046 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2407,8 +2407,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2 results .... Test 046 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfs_v16beta_prod Checking test 047 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2475,8 +2475,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta results .... Test 047 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -2543,8 +2543,8 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -2611,8 +2611,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 049 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -2659,8 +2659,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmg results .... Test 050 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -2707,8 +2707,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... Test 051 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -2755,8 +2755,8 @@ Checking test 052 fv3_ccpp_gocart_clm results .... Test 052 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -2823,8 +2823,8 @@ Checking test 053 fv3_ccpp_gfs_v16beta_flake results .... Test 053 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -2891,8 +2891,8 @@ Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -2909,8 +2909,8 @@ Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -2977,8 +2977,8 @@ Checking test 056 fv3_ccpp_gfs_v15p2_debug results .... Test 056 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -3045,8 +3045,8 @@ Checking test 057 fv3_ccpp_gfs_v16beta_debug results .... Test 057 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -3113,8 +3113,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -3181,8 +3181,8 @@ Checking test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -3249,8 +3249,8 @@ Checking test 060 fv3_ccpp_gsd_debug results .... Test 060 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -3317,8 +3317,8 @@ Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... Test 061 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -3385,8 +3385,8 @@ Checking test 062 fv3_ccpp_thompson_debug results .... Test 062 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -3453,8 +3453,8 @@ Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... Test 063 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -3521,8 +3521,8 @@ Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... Test 064 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -3589,8 +3589,8 @@ Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/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 @@ -3607,8 +3607,8 @@ Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_control_prod Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3660,8 +3660,8 @@ Checking test 067 cpld_control results .... Test 067 cpld_control PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_2threads_prod Checking test 068 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3713,8 +3713,8 @@ Checking test 068 cpld_2threads results .... Test 068 cpld_2threads PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_decomp_prod Checking test 069 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3766,8 +3766,8 @@ Checking test 069 cpld_decomp results .... Test 069 cpld_decomp PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_satmedmf_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_satmedmf_prod Checking test 070 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3819,8 +3819,8 @@ Checking test 070 cpld_satmedmf results .... Test 070 cpld_satmedmf PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_ca_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_ca_prod Checking test 071 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3872,8 +3872,8 @@ Checking test 071 cpld_ca results .... Test 071 cpld_ca PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_mx025_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_control_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_control_mx025_prod Checking test 072 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3928,8 +3928,8 @@ Checking test 072 cpld_control_mx025 results .... Test 072 cpld_control_mx025 PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_control_mx025_12h_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_mx025_12h_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_control_mx025_12h_prod Checking test 073 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3984,8 +3984,8 @@ Checking test 073 cpld_control_mx025_12h results .... Test 073 cpld_control_mx025_12h PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_mx025_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_restart_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_restart_mx025_prod Checking test 074 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4040,8 +4040,8 @@ Checking test 074 cpld_restart_mx025 results .... Test 074 cpld_restart_mx025 PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_c192_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_control_c192_prod Checking test 075 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4093,8 +4093,8 @@ Checking test 075 cpld_control_c192 results .... Test 075 cpld_control_c192 PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_c384_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_control_c384_prod Checking test 076 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4149,8 +4149,8 @@ Checking test 076 cpld_control_c384 results .... Test 076 cpld_control_c384 PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_controlfrac_c384_prod Checking test 077 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4205,8 +4205,8 @@ Checking test 077 cpld_controlfrac_c384 results .... Test 077 cpld_controlfrac_c384 PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_bmark_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_bmark_prod Checking test 078 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4261,8 +4261,8 @@ Checking test 078 cpld_bmark results .... Test 078 cpld_bmark PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_bmark_wave_prod Checking test 079 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4320,8 +4320,8 @@ Checking test 079 cpld_bmark_wave results .... Test 079 cpld_bmark_wave PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_debug_ccpp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/cpld_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_debug_prod Checking test 080 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4373,8 +4373,8 @@ Checking test 080 cpld_debug results .... Test 080 cpld_debug PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/datm_control_cfsr -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/datm_control_cfsr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/datm_control_cfsr_prod Checking test 081 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4382,8 +4382,8 @@ Checking test 081 datm_control_cfsr results .... Test 081 datm_control_cfsr PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/datm_control_gefs -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/datm_control_gefs_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/datm_control_gefs_prod Checking test 082 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4391,8 +4391,8 @@ Checking test 082 datm_control_gefs results .... Test 082 datm_control_gefs PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/datm_mx025_cfsr -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/datm_mx025_cfsr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/datm_mx025_cfsr_prod Checking test 083 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4403,8 +4403,8 @@ Checking test 083 datm_mx025_cfsr results .... Test 083 datm_mx025_cfsr PASS -baseline dir = /scratch2/BMC/gsienkf/Philip.Pegion/RT/NEMSfv3gfs/develop-20201127/INTEL/datm_mx025_gefs -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_255193/datm_mx025_gefs_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/datm_mx025_gefs_prod Checking test 084 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4416,5 +4416,5 @@ Test 084 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 27 18:56:03 UTC 2020 -Elapsed time: 01h:53m:55s. Have a nice day! +Wed Dec 2 08:31:28 UTC 2020 +Elapsed time: 01h:06m:04s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 9de1479ab6..1b57b2dfdb 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,10 +1,10 @@ -Sat Dec 28 21:17:28 UTC 2019 +Tue Dec 1 22:54:52 GMT 2020 Start Regression test -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_control -Checking test 001 fv3_control results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_control_prod +Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -67,12 +67,12 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 001 fv3_control PASS +Test 001 fv3_ccpp_control PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_decomp -Checking test 002 fv3_decomp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/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 @@ -135,12 +135,12 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_decomp PASS +Test 002 fv3_ccpp_decomp PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_2threads -Checking test 003 fv3_2threads results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_2threads_prod +Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -203,12 +203,12 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_2threads PASS +Test 003 fv3_ccpp_2threads PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_restart -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_restart -Checking test 004 fv3_restart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_restart_prod +Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -271,12 +271,12 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_restart PASS +Test 004 fv3_ccpp_restart PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_read_inc -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_read_inc -Checking test 005 fv3_read_inc results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -339,70 +339,22 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_read_inc PASS +Test 005 fv3_ccpp_read_inc PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfdlmp -Checking test 006 fv3_gfdlmp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/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 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 006 fv3_gfdlmp PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmprad_gwd -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfdlmprad_gwd -Checking test 007 fv3_gfdlmprad_gwd 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.nc .........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 Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -423,102 +375,34 @@ Checking test 007 fv3_gfdlmprad_gwd 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 007 fv3_gfdlmprad_gwd PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmprad_noahmp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfdlmprad_noahmp -Checking test 008 fv3_gfdlmprad_noahmp 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 008 fv3_gfdlmprad_noahmp PASS +Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_thompson -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_thompson -Checking test 009 fv3_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/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 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 phyf000.nc .........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 Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -539,92 +423,24 @@ Checking test 009 fv3_thompson 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 009 fv3_thompson PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wsm6 -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wsm6 -Checking test 010 fv3_wsm6 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 010 fv3_wsm6 PASS +Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wrtGauss_netcdf_esmf -Checking test 011 fv3_wrtGauss_netcdf_esmf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -632,9 +448,9 @@ Checking test 011 fv3_wrtGauss_netcdf_esmf 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 .........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 @@ -667,12 +483,12 @@ Checking test 011 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_wrtGauss_netcdf_esmf PASS +Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_netcdf -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wrtGauss_netcdf -Checking test 012 fv3_wrtGauss_netcdf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -715,12 +531,12 @@ Checking test 012 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_wrtGauss_netcdf PASS +Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_nemsio -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wrtGauss_nemsio -Checking test 013 fv3_wrtGauss_nemsio results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -763,12 +579,12 @@ Checking test 013 fv3_wrtGauss_nemsio 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_wrtGauss_nemsio PASS +Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wrtGauss_nemsio_c192 -Checking test 014 fv3_wrtGauss_nemsio_c192 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -811,12 +627,12 @@ Checking test 014 fv3_wrtGauss_nemsio_c192 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_wrtGauss_nemsio_c192 PASS +Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stochy -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_stochy -Checking test 015 fv3_stochy results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -879,12 +695,12 @@ Checking test 015 fv3_stochy 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_stochy PASS +Test 012 fv3_ccpp_stochy PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_iau -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_iau -Checking test 016 fv3_iau results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_iau_prod +Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -947,12 +763,12 @@ Checking test 016 fv3_iau 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_iau PASS +Test 013 fv3_ccpp_iau PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_csawmgshoc -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_csawmgshoc -Checking test 017 fv3_csawmgshoc results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_lheatstrg_prod +Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -995,22 +811,42 @@ Checking test 017 fv3_csawmgshoc 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_csawmgshoc PASS +Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_csawmg -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_csawmg -Checking test 018 fv3_csawmg results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_multigases_prod +Checking test 015 fv3_ccpp_multigases 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 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 @@ -1043,22 +879,48 @@ Checking test 018 fv3_csawmg 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_csawmg PASS + 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 015 fv3_ccpp_multigases PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_rasmgshoc -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_rasmgshoc -Checking test 019 fv3_rasmgshoc results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_control_32bit_prod +Checking test 016 fv3_ccpp_control_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 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 @@ -1091,22 +953,30 @@ Checking test 019 fv3_rasmgshoc 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_rasmgshoc PASS +Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_csawmg3shoc127 -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_csawmg3shoc127 -Checking test 020 fv3_csawmg3shoc127 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_stretched_prod +Checking test 017 fv3_ccpp_stretched 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 fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1139,60 +1009,182 @@ Checking test 020 fv3_csawmg3shoc127 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_csawmg3shoc127 PASS +Test 017 fv3_ccpp_stretched PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_satmedmf -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_satmedmf -Checking test 021 fv3_satmedmf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_stretched_nest_prod +Checking test 018 fv3_ccpp_stretched_nest 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 atmos_4xdaily.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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 021 fv3_satmedmf PASS + Comparing RESTART/sfc_data.nest02.tile7.nc .........OK +Test 018 fv3_ccpp_stretched_nest PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_regional_control_prod +Checking test 019 fv3_ccpp_regional_control results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc ............ALT CHECK......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 + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_regional_restart_prod +Checking test 020 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 + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_regional_quilt_prod +Checking test 021 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 + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK +Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_c768_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_regional_c768_prod +Checking test 023 fv3_ccpp_regional_c768 results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf003.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf003.nc .........OK +Test 023 fv3_ccpp_regional_c768 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_control_debug_prod +Checking test 024 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 024 fv3_ccpp_control_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_stretched_nest_debug_prod +Checking test 025 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + 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 -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_lheatstrg -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_lheatstrg -Checking test 022 fv3_lheatstrg results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gfdlmp_prod +Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1223,54 +1215,34 @@ Checking test 022 fv3_lheatstrg 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/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 022 fv3_lheatstrg PASS + 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 026 fv3_ccpp_gfdlmp PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_appbuild -Checking test 023 fv3_appbuild results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 027 fv3_ccpp_gfdlmprad_gwd 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 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 @@ -1291,54 +1263,82 @@ Checking test 023 fv3_appbuild 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 027 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 028 fv3_ccpp_gfdlmprad_noahmp 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 -Test 023 fv3_appbuild PASS + 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 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_32bit -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_control_32bit -Checking test 024 fv3_control_32bit results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_csawmg_prod +Checking test 029 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.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 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 @@ -1371,30 +1371,22 @@ Checking test 024 fv3_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 024 fv3_control_32bit PASS +Test 029 fv3_ccpp_csawmg PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_stretched -Checking test 025 fv3_stretched results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_satmedmf_prod +Checking test 030 fv3_ccpp_satmedmf 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 fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 @@ -1427,3675 +1419,60 @@ Checking test 025 fv3_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 025 fv3_stretched PASS +Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched_nest -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_stretched_nest -Checking test 026 fv3_stretched_nest results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_satmedmfq_prod +Checking test 031 fv3_ccpp_satmedmfq 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.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.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.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 026 fv3_stretched_nest PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_control -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_regional_control -Checking test 027 fv3_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 027 fv3_regional_control PASS +Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_restart -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_regional_restart -Checking test 028 fv3_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 028 fv3_regional_restart PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_quilt -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_regional_quilt -Checking test 029 fv3_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 029 fv3_regional_quilt PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_c768 -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_regional_c768 -Checking test 030 fv3_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 030 fv3_regional_c768 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_control_repro -Checking test 031 fv3_control 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 031 fv3_control PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_decomp_repro -Checking test 032 fv3_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 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 032 fv3_decomp PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_2threads_repro -Checking test 033 fv3_2threads 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 033 fv3_2threads PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_restart_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_restart_repro -Checking test 034 fv3_restart 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 034 fv3_restart PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_read_inc_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_read_inc_repro -Checking test 035 fv3_read_inc 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 035 fv3_read_inc PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_netcdf_esmf_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wrtGauss_netcdf_esmf_repro -Checking test 036 fv3_wrtGauss_netcdf_esmf 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.nc .........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 - 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 036 fv3_wrtGauss_netcdf_esmf PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_netcdf_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wrtGauss_netcdf_repro -Checking test 037 fv3_wrtGauss_netcdf 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.nc .........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 - 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_wrtGauss_netcdf PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_nemsio_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wrtGauss_nemsio_repro -Checking test 038 fv3_wrtGauss_nemsio 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 038 fv3_wrtGauss_nemsio PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_nemsio_c192_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wrtGauss_nemsio_c192_repro -Checking test 039 fv3_wrtGauss_nemsio_c192 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 039 fv3_wrtGauss_nemsio_c192 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stochy_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_stochy_repro -Checking test 040 fv3_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/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_stochy PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_iau_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_iau_repro -Checking test 041 fv3_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 041 fv3_iau PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmp_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfdlmp_repro -Checking test 042 fv3_gfdlmp 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 042 fv3_gfdlmp PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmprad_gwd_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfdlmprad_gwd_repro -Checking test 043 fv3_gfdlmprad_gwd 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 043 fv3_gfdlmprad_gwd PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmprad_noahmp_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfdlmprad_noahmp_repro -Checking test 044 fv3_gfdlmprad_noahmp 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 044 fv3_gfdlmprad_noahmp PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_csawmgshoc_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_csawmgshoc_repro -Checking test 045 fv3_csawmgshoc 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_csawmgshoc PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_csawmg3shoc127_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_csawmg3shoc127_repro -Checking test 046 fv3_csawmg3shoc127 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_csawmg3shoc127 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_csawmg_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_csawmg_repro -Checking test 047 fv3_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 047 fv3_csawmg PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_satmedmf_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_satmedmf_repro -Checking test 048 fv3_satmedmf 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_satmedmf PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_appbuild_repro -Checking test 049 fv3_appbuild 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 049 fv3_appbuild PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_32bit_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_control_32bit_repro -Checking test 050 fv3_control_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.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 050 fv3_control_32bit PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_stretched_repro -Checking test 051 fv3_stretched 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 fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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_stretched PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched_nest_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_stretched_nest_repro -Checking test 052 fv3_stretched_nest 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.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 052 fv3_stretched_nest PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_regional_control_repro -Checking test 053 fv3_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 053 fv3_regional_control PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_restart_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_regional_restart_repro -Checking test 054 fv3_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 054 fv3_regional_restart PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_quilt_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_regional_quilt_repro -Checking test 055 fv3_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 055 fv3_regional_quilt PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_c768_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_regional_c768_repro -Checking test 056 fv3_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 056 fv3_regional_c768 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmp_32bit_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfdlmp_32bit_repro -Checking test 057 fv3_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 057 fv3_gfdlmp_32bit PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfs_v15_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfs_v15_repro -Checking test 058 fv3_gfs_v15 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 058 fv3_gfs_v15 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfs_v15plus_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfs_v15plus_repro -Checking test 059 fv3_gfs_v15plus 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 059 fv3_gfs_v15plus PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_cpt_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_cpt_repro -Checking test 060 fv3_cpt 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 - 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 060 fv3_cpt PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_control_repro -Checking test 061 fv3_ccpp_control 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 061 fv3_ccpp_control PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_decomp_repro -Checking test 062 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 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 062 fv3_ccpp_decomp PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_2threads_repro -Checking test 063 fv3_ccpp_2threads 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 063 fv3_ccpp_2threads PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_restart_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_restart_repro -Checking test 064 fv3_ccpp_restart 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 064 fv3_ccpp_restart PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_read_inc_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_read_inc_repro -Checking test 065 fv3_ccpp_read_inc 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 065 fv3_ccpp_read_inc PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_netcdf_esmf_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_wrtGauss_netcdf_esmf_repro -Checking test 066 fv3_ccpp_wrtGauss_netcdf_esmf 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.nc .........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 - 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 066 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_netcdf_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_wrtGauss_netcdf_repro -Checking test 067 fv3_ccpp_wrtGauss_netcdf 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.nc .........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 - 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 067 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_nemsio_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_wrtGauss_nemsio_repro -Checking test 068 fv3_ccpp_wrtGauss_nemsio 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 068 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_nemsio_c192_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_wrtGauss_nemsio_c192_repro -Checking test 069 fv3_ccpp_wrtGauss_nemsio_c192 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 069 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stochy_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_stochy_repro -Checking test 070 fv3_ccpp_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/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 070 fv3_ccpp_stochy PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_iau_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_iau_repro -Checking test 071 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 071 fv3_ccpp_iau PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_appbuild_repro -Checking test 072 fv3_ccpp_appbuild 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 072 fv3_ccpp_appbuild PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_32bit_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_control_32bit_repro -Checking test 073 fv3_ccpp_control_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.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 073 fv3_ccpp_control_32bit PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_stretched_repro -Checking test 074 fv3_ccpp_stretched 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 fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 074 fv3_ccpp_stretched PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched_nest_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_stretched_nest_repro -Checking test 075 fv3_ccpp_stretched_nest 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.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 075 fv3_ccpp_stretched_nest PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_regional_control_repro -Checking test 076 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 076 fv3_ccpp_regional_control PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_restart_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_regional_restart_repro -Checking test 077 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 077 fv3_ccpp_regional_restart PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_quilt_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_regional_quilt_repro -Checking test 078 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 078 fv3_ccpp_regional_quilt PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_c768_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_regional_c768_repro -Checking test 079 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 079 fv3_ccpp_regional_c768 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmp_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfdlmp_repro -Checking test 080 fv3_ccpp_gfdlmp 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 080 fv3_ccpp_gfdlmp PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmprad_gwd_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfdlmprad_gwd_repro -Checking test 081 fv3_ccpp_gfdlmprad_gwd 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 081 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmprad_noahmp_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfdlmprad_noahmp_repro -Checking test 082 fv3_ccpp_gfdlmprad_noahmp 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 082 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_csawmg_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_csawmg_repro -Checking test 083 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 083 fv3_ccpp_csawmg PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_satmedmf_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_satmedmf_repro -Checking test 084 fv3_ccpp_satmedmf 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 084 fv3_ccpp_satmedmf PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmp_32bit_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfdlmp_32bit_repro -Checking test 085 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 085 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfs_v15_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfs_v15_repro -Checking test 086 fv3_ccpp_gfs_v15 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 086 fv3_ccpp_gfs_v15 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfs_v15plus_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfs_v15plus_repro -Checking test 087 fv3_ccpp_gfs_v15plus 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 087 fv3_ccpp_gfs_v15plus PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_cpt_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_cpt_repro -Checking test 088 fv3_ccpp_cpt 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 - 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 088 fv3_ccpp_cpt PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gsd_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gsd_repro -Checking test 089 fv3_ccpp_gsd 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 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 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 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 089 fv3_ccpp_gsd PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_control_prod -Checking test 090 fv3_ccpp_control 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 090 fv3_ccpp_control PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_decomp_prod -Checking test 091 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 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 091 fv3_ccpp_decomp PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_2threads_prod -Checking test 092 fv3_ccpp_2threads 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 092 fv3_ccpp_2threads PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_restart_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_restart_prod -Checking test 093 fv3_ccpp_restart 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 093 fv3_ccpp_restart PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_read_inc_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_read_inc_prod -Checking test 094 fv3_ccpp_read_inc 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 094 fv3_ccpp_read_inc PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 095 fv3_ccpp_wrtGauss_netcdf_esmf 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.nc .........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 - 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 095 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 096 fv3_ccpp_wrtGauss_netcdf 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.nc .........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 - 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 096 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 097 fv3_ccpp_wrtGauss_nemsio 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 097 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 098 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gfdlmp_32bit_prod +Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5125,55 +1502,35 @@ Checking test 098 fv3_ccpp_wrtGauss_nemsio_c192 results .... 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/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 -Test 098 fv3_ccpp_wrtGauss_nemsio_c192 PASS + 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 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stochy_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_stochy_prod -Checking test 099 fv3_ccpp_stochy results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_cpt_prod +Checking test 033 fv3_ccpp_cpt 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 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 @@ -5206,18 +1563,36 @@ Checking test 099 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 099 fv3_ccpp_stochy PASS + 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_cpt PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_iau_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_iau_prod -Checking test 100 fv3_ccpp_iau results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gsd_prod +Checking test 034 fv3_ccpp_gsd 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 phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -5230,6 +1605,18 @@ Checking test 100 fv3_ccpp_iau results .... 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 dynf027.tile1.nc .........OK Comparing dynf027.tile2.nc .........OK Comparing dynf027.tile3.nc .........OK @@ -5274,12 +1661,12 @@ Checking test 100 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 100 fv3_ccpp_iau PASS +Test 034 fv3_ccpp_gsd PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_appbuild_prod -Checking test 101 fv3_ccpp_appbuild results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_thompson_prod +Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5342,12 +1729,12 @@ Checking test 101 fv3_ccpp_appbuild results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 101 fv3_ccpp_appbuild PASS +Test 035 fv3_ccpp_thompson PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_32bit_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_control_32bit_prod -Checking test 102 fv3_ccpp_control_32bit results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_thompson_no_aero_prod +Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5404,239 +1791,18 @@ Checking test 102 fv3_ccpp_control_32bit results .... 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 102 fv3_ccpp_control_32bit PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_stretched_prod -Checking test 103 fv3_ccpp_stretched 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 fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 103 fv3_ccpp_stretched PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched_nest_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_stretched_nest_prod -Checking test 104 fv3_ccpp_stretched_nest 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.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 104 fv3_ccpp_stretched_nest PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_control_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_regional_control_prod -Checking test 105 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 105 fv3_ccpp_regional_control PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_restart_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_regional_restart_prod -Checking test 106 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 106 fv3_ccpp_regional_restart PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_quilt_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_regional_quilt_prod -Checking test 107 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 107 fv3_ccpp_regional_quilt PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_c768_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_regional_c768_prod -Checking test 108 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 108 fv3_ccpp_regional_c768 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_control_debug_prod -Checking test 109 fv3_ccpp_control_debug results .... -Test 109 fv3_ccpp_control_debug PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched_nest_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_stretched_nest_debug_prod -Checking test 110 fv3_ccpp_stretched_nest_debug results .... -Test 110 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmp_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfdlmp_prod -Checking test 111 fv3_ccpp_gfdlmp 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 111 fv3_ccpp_gfdlmp 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 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 112 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gocart_clm_prod +Checking test 037 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5679,22 +1845,42 @@ Checking test 112 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 112 fv3_ccpp_gfdlmprad_gwd PASS +Test 037 fv3_ccpp_gocart_clm PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 113 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 038 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.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 @@ -5727,22 +1913,42 @@ Checking test 113 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 113 fv3_ccpp_gfdlmprad_noahmp PASS +Test 038 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_csawmg_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_csawmg_prod -Checking test 114 fv3_ccpp_csawmg results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 039 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 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 @@ -5763,34 +1969,72 @@ Checking test 114 fv3_ccpp_csawmg 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/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 114 fv3_ccpp_csawmg PASS + 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 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_satmedmf_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_satmedmf_prod -Checking test 115 fv3_ccpp_satmedmf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gsd_debug_prod +Checking test 041 fv3_ccpp_gsd_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.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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5823,22 +2067,42 @@ Checking test 115 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 115 fv3_ccpp_satmedmf PASS +Test 041 fv3_ccpp_gsd_debug PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfdlmp_32bit_prod -Checking test 116 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 042 fv3_ccpp_gsd_diag3d_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.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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5859,24 +2123,24 @@ Checking test 116 fv3_ccpp_gfdlmp_32bit 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 116 fv3_ccpp_gfdlmp_32bit 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_gsd_diag3d_debug PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfs_v15_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfs_v15_prod -Checking test 117 fv3_ccpp_gfs_v15 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_thompson_debug_prod +Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5889,24 +2153,24 @@ Checking test 117 fv3_ccpp_gfs_v15 results .... 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 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 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 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 @@ -5927,24 +2191,24 @@ Checking test 117 fv3_ccpp_gfs_v15 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 117 fv3_ccpp_gfs_v15 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_thompson_debug PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfs_v15plus_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfs_v15plus_prod -Checking test 118 fv3_ccpp_gfs_v15plus results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 044 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 @@ -5957,24 +2221,24 @@ Checking test 118 fv3_ccpp_gfs_v15plus results .... 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 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 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 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 @@ -5995,34 +2259,54 @@ Checking test 118 fv3_ccpp_gfs_v15plus 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 118 fv3_ccpp_gfs_v15plus 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 044 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_cpt_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_cpt_prod -Checking test 119 fv3_ccpp_cpt results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 045 fv3_ccpp_rrfs_v1beta_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.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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -6055,18 +2339,12 @@ Checking test 119 fv3_ccpp_cpt results .... 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 119 fv3_ccpp_cpt PASS +Test 045 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gsd_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gsd_prod -Checking test 120 fv3_ccpp_gsd results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 046 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 @@ -6079,48 +2357,24 @@ Checking test 120 fv3_ccpp_gsd results .... 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 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -6141,21 +2395,39 @@ Checking test 120 fv3_ccpp_gsd 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/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 120 fv3_ccpp_gsd PASS + 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_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK + 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_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 30 00:13:38 UTC 2019 -Elapsed time: 02h:56m:12s. Have a nice day! +Wed Dec 2 00:52:28 GMT 2020 +Elapsed time: 01h:57m:36s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 6d507d11cb..217cd5abf7 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Fri Nov 27 10:33:15 CST 2020 +Tue Dec 1 17:57:08 CST 2020 Start Regression test -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_restart_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_iau_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_ca_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,8 +883,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1055,8 +1055,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_control_32bit results .... Test 019 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1179,8 +1179,8 @@ Checking test 020 fv3_ccpp_stretched results .... Test 020 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 021 fv3_ccpp_stretched_nest results .... Test 021 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1257,8 +1257,8 @@ Checking test 022 fv3_ccpp_regional_control results .... Test 022 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 023 fv3_ccpp_regional_restart results .... Test 023 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1277,19 +1277,19 @@ Checking test 024 fv3_ccpp_regional_quilt results .... Test 024 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_regional_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1299,8 +1299,8 @@ Checking test 026 fv3_ccpp_regional_c768 results .... Test 026 fv3_ccpp_regional_c768 PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1329,8 +1329,8 @@ Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -1349,8 +1349,8 @@ Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1397,8 +1397,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -1445,8 +1445,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -1493,8 +1493,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1541,8 +1541,8 @@ Checking test 032 fv3_ccpp_csawmg results .... Test 032 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1589,8 +1589,8 @@ Checking test 033 fv3_ccpp_satmedmf results .... Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1637,8 +1637,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1689,8 +1689,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1743,8 +1743,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1835,8 +1835,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,8 +1903,8 @@ Checking test 038 fv3_ccpp_thompson results .... Test 038 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1971,8 +1971,8 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2039,8 +2039,8 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfs_v15p2_prod Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,8 +2107,8 @@ Checking test 041 fv3_ccpp_gfs_v15p2 results .... Test 041 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfs_v16beta_prod Checking test 042 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2175,8 +2175,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta results .... Test 042 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -2243,8 +2243,8 @@ Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -2311,8 +2311,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -2359,8 +2359,8 @@ Checking test 045 fv3_ccpp_gfsv16_csawmg results .... Test 045 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -2407,8 +2407,8 @@ Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... Test 046 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -2455,8 +2455,8 @@ Checking test 047 fv3_ccpp_gocart_clm results .... Test 047 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -2523,8 +2523,8 @@ Checking test 048 fv3_ccpp_gfs_v16beta_flake results .... Test 048 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -2591,8 +2591,8 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -2609,8 +2609,8 @@ Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -2677,8 +2677,8 @@ Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... Test 051 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -2745,8 +2745,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_debug results .... Test 052 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -2813,8 +2813,8 @@ Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -2881,8 +2881,8 @@ Checking test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -2949,8 +2949,8 @@ Checking test 055 fv3_ccpp_gsd_debug results .... Test 055 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -3017,8 +3017,8 @@ Checking test 056 fv3_ccpp_gsd_diag3d_debug results .... Test 056 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -3085,8 +3085,8 @@ Checking test 057 fv3_ccpp_thompson_debug results .... Test 057 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -3153,8 +3153,8 @@ Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... Test 058 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -3221,8 +3221,8 @@ Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... Test 059 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -3289,8 +3289,8 @@ Checking test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/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 @@ -3307,8 +3307,8 @@ Checking test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_control_prod Checking test 062 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3360,8 +3360,8 @@ Checking test 062 cpld_control results .... Test 062 cpld_control PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_2threads_prod Checking test 063 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3413,8 +3413,8 @@ Checking test 063 cpld_2threads results .... Test 063 cpld_2threads PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_decomp_prod Checking test 064 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3466,8 +3466,8 @@ Checking test 064 cpld_decomp results .... Test 064 cpld_decomp PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_satmedmf_prod Checking test 065 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3519,8 +3519,8 @@ Checking test 065 cpld_satmedmf results .... Test 065 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_ca_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_ca_prod Checking test 066 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3572,8 +3572,8 @@ Checking test 066 cpld_ca results .... Test 066 cpld_ca PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_control_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_control_mx025_prod Checking test 067 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3628,8 +3628,8 @@ Checking test 067 cpld_control_mx025 results .... Test 067 cpld_control_mx025 PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_control_mx025_12h_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_mx025_12h_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_control_mx025_12h_prod Checking test 068 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3684,8 +3684,8 @@ Checking test 068 cpld_control_mx025_12h results .... Test 068 cpld_control_mx025_12h PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_restart_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_restart_mx025_prod Checking test 069 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3740,8 +3740,8 @@ Checking test 069 cpld_restart_mx025 results .... Test 069 cpld_restart_mx025 PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_control_c192_prod Checking test 070 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3793,8 +3793,8 @@ Checking test 070 cpld_control_c192 results .... Test 070 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_control_c384_prod Checking test 071 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3849,8 +3849,8 @@ Checking test 071 cpld_control_c384 results .... Test 071 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_controlfrac_c384_prod Checking test 072 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3905,8 +3905,8 @@ Checking test 072 cpld_controlfrac_c384 results .... Test 072 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_bmark_prod Checking test 073 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3961,8 +3961,8 @@ Checking test 073 cpld_bmark results .... Test 073 cpld_bmark PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_bmark_wave_prod Checking test 074 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4020,8 +4020,8 @@ Checking test 074 cpld_bmark_wave results .... Test 074 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/cpld_debug_ccpp -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/cpld_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_debug_prod Checking test 075 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4073,8 +4073,8 @@ Checking test 075 cpld_debug results .... Test 075 cpld_debug PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/datm_control_cfsr -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/datm_control_cfsr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/datm_control_cfsr_prod Checking test 076 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4082,8 +4082,8 @@ Checking test 076 datm_control_cfsr results .... Test 076 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/datm_control_gefs -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/datm_control_gefs_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/datm_control_gefs_prod Checking test 077 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4091,8 +4091,8 @@ Checking test 077 datm_control_gefs results .... Test 077 datm_control_gefs PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/datm_mx025_cfsr -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/datm_mx025_cfsr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/datm_mx025_cfsr_prod Checking test 078 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4103,8 +4103,8 @@ Checking test 078 datm_mx025_cfsr results .... Test 078 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/ppegion/RT/NEMSfv3gfs/develop-20201127/INTEL/datm_mx025_gefs -working dir = /work/noaa/nems/ppegion/stmp/ppegion/FV3_RT/rt_4523/datm_mx025_gefs_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/datm_mx025_gefs_prod Checking test 079 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4116,5 +4116,5 @@ Test 079 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 27 22:02:20 CST 2020 -Elapsed time: 11h:29m:06s. Have a nice day! +Tue Dec 1 18:45:53 CST 2020 +Elapsed time: 00h:48m:46s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 62b3c19184..7a93679b75 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Fri Nov 27 14:43:50 UTC 2020 +Tue Dec 1 17:59:14 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/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-20201127/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/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-20201127/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/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-20201127/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/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-20201127/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/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-20201127/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/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-20201127/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/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-20201127/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/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-20201127/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/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-20201127/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/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-20201127/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/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-20201127/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,8 +1012,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,8 +1079,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1090,8 +1090,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1121,8 +1121,8 @@ Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1151,8 +1151,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1171,8 +1171,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,8 +1267,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,8 +1363,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,8 +1411,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,8 +1459,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,8 +1507,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,8 +1559,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,8 +1613,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 035 fv3_ccpp_thompson results .... Test 035 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Test 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_rrfs_v1beta_prod Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_rrfs_v1beta results .... Test 037 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gfsv16_csawmg_prod Checking test 038 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1957,8 +1957,8 @@ Checking test 038 fv3_ccpp_gfsv16_csawmg results .... Test 038 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gfsv16_csawmgt_prod Checking test 039 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2005,8 +2005,8 @@ Checking test 039 fv3_ccpp_gfsv16_csawmgt results .... Test 039 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gocart_clm_prod Checking test 040 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2053,8 +2053,8 @@ Checking test 040 fv3_ccpp_gocart_clm results .... Test 040 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gfs_v16beta_flake_prod Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2121,8 +2121,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... Test 041 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2189,8 +2189,8 @@ Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 042 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2207,8 +2207,8 @@ Checking test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gsd_debug_prod Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2275,8 +2275,8 @@ Checking test 044 fv3_ccpp_gsd_debug results .... Test 044 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gsd_diag3d_debug_prod Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2343,8 +2343,8 @@ Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Test 045 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_thompson_debug_prod Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2411,8 +2411,8 @@ Checking test 046 fv3_ccpp_thompson_debug results .... Test 046 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_thompson_no_aero_debug_prod Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2479,8 +2479,8 @@ Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Test 047 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2547,8 +2547,8 @@ Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Test 048 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2615,8 +2615,8 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_44109/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2634,5 +2634,5 @@ Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 27 15:25:26 UTC 2020 -Elapsed time: 00h:41m:36s. Have a nice day! +Tue Dec 1 18:37:01 UTC 2020 +Elapsed time: 00h:37m:48s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index de950c52b9..17dee00f9a 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Fri Nov 27 19:08:29 UTC 2020 +Tue Dec 1 18:51:08 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/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-20201127/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/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-20201127/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/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-20201127/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/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-20201127/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/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-20201127/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/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-20201127/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/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-20201127/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/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 @@ -449,8 +449,8 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc .........OK + Comparing dynf000.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 @@ -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-20201127/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/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-20201127/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/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-20201127/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/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-20201127/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -863,8 +863,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -912,8 +912,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -986,8 +986,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/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 @@ -1054,8 +1054,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/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 @@ -1177,8 +1177,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1188,8 +1188,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1197,8 +1197,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1208,19 +1208,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/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 dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_regional_c768_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_regional_c768_prod Checking test 025 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1230,8 +1230,8 @@ Checking test 025 fv3_ccpp_regional_c768 results .... Test 025 fv3_ccpp_regional_c768 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_control_debug_prod Checking test 026 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1260,8 +1260,8 @@ Checking test 026 fv3_ccpp_control_debug results .... Test 026 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_stretched_nest_debug_prod Checking test 027 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1280,8 +1280,8 @@ Checking test 027 fv3_ccpp_stretched_nest_debug results .... Test 027 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,8 +1328,8 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,8 +1376,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1424,8 +1424,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1472,8 +1472,8 @@ Checking test 031 fv3_ccpp_csawmg results .... Test 031 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1520,8 +1520,8 @@ Checking test 032 fv3_ccpp_satmedmf results .... Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1568,8 +1568,8 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1616,8 +1616,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1668,8 +1668,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,8 +1722,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1814,8 +1814,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1882,8 +1882,8 @@ Checking test 038 fv3_ccpp_thompson results .... Test 038 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1950,8 +1950,8 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2018,8 +2018,8 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2066,8 +2066,8 @@ Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Test 041 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2114,8 +2114,8 @@ Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Test 042 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2162,8 +2162,8 @@ Checking test 043 fv3_ccpp_gocart_clm results .... Test 043 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2230,8 +2230,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Test 044 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2298,8 +2298,8 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2316,8 +2316,8 @@ Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2384,8 +2384,8 @@ Checking test 047 fv3_ccpp_gsd_debug results .... Test 047 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2452,8 +2452,8 @@ Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Test 048 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2520,8 +2520,8 @@ Checking test 049 fv3_ccpp_thompson_debug results .... Test 049 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2588,8 +2588,8 @@ Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Test 050 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2656,8 +2656,8 @@ Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Test 051 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2724,8 +2724,8 @@ Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2742,8 +2742,8 @@ Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_control_prod Checking test 054 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2795,8 +2795,8 @@ Checking test 054 cpld_control results .... Test 054 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_2threads_prod Checking test 055 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2848,8 +2848,8 @@ Checking test 055 cpld_2threads results .... Test 055 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_decomp_prod Checking test 056 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2901,8 +2901,8 @@ Checking test 056 cpld_decomp results .... Test 056 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_satmedmf_prod Checking test 057 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2954,8 +2954,8 @@ Checking test 057 cpld_satmedmf results .... Test 057 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_ca_prod Checking test 058 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3007,8 +3007,8 @@ Checking test 058 cpld_ca results .... Test 058 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_control_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_control_mx025_prod Checking test 059 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3063,8 +3063,8 @@ Checking test 059 cpld_control_mx025 results .... Test 059 cpld_control_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_control_mx025_12h_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_control_mx025_12h_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_control_mx025_12h_prod Checking test 060 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3119,8 +3119,8 @@ Checking test 060 cpld_control_mx025_12h results .... Test 060 cpld_control_mx025_12h PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_restart_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_restart_mx025_prod Checking test 061 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3175,8 +3175,8 @@ Checking test 061 cpld_restart_mx025 results .... Test 061 cpld_restart_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_control_c192_prod Checking test 062 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3228,8 +3228,8 @@ Checking test 062 cpld_control_c192 results .... Test 062 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_control_c384_prod Checking test 063 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3284,8 +3284,8 @@ Checking test 063 cpld_control_c384 results .... Test 063 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_controlfrac_c384_prod Checking test 064 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3340,8 +3340,8 @@ Checking test 064 cpld_controlfrac_c384 results .... Test 064 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_bmark_prod Checking test 065 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3396,8 +3396,8 @@ Checking test 065 cpld_bmark results .... Test 065 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_bmark_wave_prod Checking test 066 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3455,8 +3455,8 @@ Checking test 066 cpld_bmark_wave results .... Test 066 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201127/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_71603/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_debug_prod Checking test 067 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3509,5 +3509,5 @@ Test 067 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 27 21:10:37 UTC 2020 -Elapsed time: 02h:02m:10s. Have a nice day! +Tue Dec 1 22:14:22 UTC 2020 +Elapsed time: 03h:23m:16s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index ce718dbf17..e1205cac3b 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -103,7 +103,13 @@ RUN | fv3_ccpp_rap RUN | fv3_ccpp_hrrr | standard | hera.intel | fv3 | RUN | fv3_ccpp_thompson | standard | | fv3 | RUN | fv3_ccpp_thompson_no_aero | standard | | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | | fv3 | +# This test crashes with NaNs on jet.intel +RUN | fv3_ccpp_rrfs_v1beta | standard | wcoss_cray | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | standard | hera.intel | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | standard | orion.intel | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | standard | gaea.intel | fv3 | COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | hera.intel | fv3 | COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | orion.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 5b10979d1a..3d0611a41e 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -318,7 +318,7 @@ mkdir -p ${STMP}/${USER} # Different own baseline directories for different compilers on Theia/Cheyenne NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST -if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]]; then +if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]]; then NEW_BASELINE=${NEW_BASELINE}_${RT_COMPILER^^} fi @@ -395,10 +395,10 @@ if [[ $TESTS_FILE =~ '35d' ]]; then TEST_35D=true fi -if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = jet.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201127/${RT_COMPILER^^}} +if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]]; then + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201201/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201127} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201201} fi shift $((OPTIND-1)) @@ -418,7 +418,7 @@ if [[ $CREATE_BASELINE == true ]]; then rsync -a "${RTPWD}"/DATM* "${NEW_BASELINE}"/ # FIXME: S2S baselines are only available on these machines with Intel - if [[ $MACHINE_ID = hera.intel ]] || [[ $MACHINE_ID = orion.intel ]] || [[ $MACHINE_ID = cheyenne.intel ]] || [[ $MACHINE_ID = gaea.intel ]] || [[ $MACHINE_ID = wcoss_dell_p3 ]]; then + if [[ $MACHINE_ID = hera.intel ]] || [[ $MACHINE_ID = orion.intel ]] || [[ $MACHINE_ID = cheyenne.intel ]] || [[ $MACHINE_ID = gaea.intel ]] || [[ $MACHINE_ID = jet.intel ]] || [[ $MACHINE_ID = wcoss_dell_p3 ]]; then rsync -a "${RTPWD}"/MOM6_* "${NEW_BASELINE}"/ rsync -a "${RTPWD}"/CICE_* "${NEW_BASELINE}"/ rsync -a "${RTPWD}"/CPL_* "${NEW_BASELINE}"/ diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 57bfbc1b10..acb1b8745b 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -270,7 +270,7 @@ check_results() { d=$( cmp ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i | wc -l ) if [[ $d -ne 0 ]] ; then - if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss_dell_p3 || ${MACHINE_ID} =~ wcoss_cray || ${MACHINE_ID} =~ cheyenne || ${MACHINE_ID} =~ gaea ]]; then + if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss_dell_p3 || ${MACHINE_ID} =~ wcoss_cray || ${MACHINE_ID} =~ cheyenne || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet ]]; then printf ".......ALT CHECK.." >> ${REGRESSIONTEST_LOG} printf ".......ALT CHECK.." d=$( ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i 2>/dev/null | wc -l ) From 125c4422ea29e19b4d127d1a734bffb4d02ca73e Mon Sep 17 00:00:00 2001 From: jiandewang Date: Fri, 4 Dec 2020 08:33:05 -0500 Subject: [PATCH 035/109] Feature/update mom6 and retain b4b results for 025x025 resolution (#290) * point MOM6 to new branch which corresponding to GFDL 20201022 commit * modify fms_files.cmake and mom6_files.cmake to reflect changes in MOM6 code as this version of MOM6 contains some file deletion, new files being added and renaming of files * manually set MOM6 parameters in order to retain origonal results for 0.25x0.25 resolution * update MOM6 to include Bugfix for mom6solo to be built * modify compile.sh to allow mom6solo compiling * modify MOM_input_template for all resolutions based on GFDL MOM6-example main branch update on 20201022 * change executable permissions for CMakeLists.txt * chmod 644 to 6 files Dom pointed out * chmod for CMakeLists.txt and tests/compile.sh * change baseline directpory to 20201202 in rt.sh --- MOM6-interface/MOM6 | 2 +- MOM6-interface/mom6_files.cmake | 19 +- fms_files.cmake | 1 + tests/RegressionTests_cheyenne.gnu.log | 86 +- tests/RegressionTests_cheyenne.intel.log | 2281 ++++++++++++++++++++-- tests/RegressionTests_gaea.intel.log | 196 +- tests/RegressionTests_hera.gnu.log | 86 +- tests/RegressionTests_hera.intel.log | 346 ++-- tests/RegressionTests_jet.intel.log | 198 +- tests/RegressionTests_orion.intel.log | 324 +-- tests/RegressionTests_wcoss_cray.log | 206 +- tests/RegressionTests_wcoss_dell_p3.log | 282 +-- tests/compile.sh | 4 + tests/parm/MOM_input_template_025 | 916 +++++---- tests/parm/MOM_input_template_050 | 934 +++++---- tests/parm/MOM_input_template_100 | 71 +- tests/rt.sh | 4 +- 17 files changed, 3886 insertions(+), 2070 deletions(-) diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 7a76a13900..18bf38869e 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 7a76a13900b68e06a6bc4ff8c53b98352bf8b741 +Subproject commit 18bf38869eb10b17c442e1384f613b194e07fb26 diff --git a/MOM6-interface/mom6_files.cmake b/MOM6-interface/mom6_files.cmake index 6500fda423..f36553641d 100644 --- a/MOM6-interface/mom6_files.cmake +++ b/MOM6-interface/mom6_files.cmake @@ -24,12 +24,13 @@ list(APPEND mom6_src_files MOM6/src/core/MOM_CoriolisAdv.F90 MOM6/src/core/MOM_PressureForce.F90 MOM6/src/core/MOM_PressureForce_Montgomery.F90 - MOM6/src/core/MOM_PressureForce_analytic_FV.F90 + MOM6/src/core/MOM_PressureForce_FV.F90 MOM6/src/core/MOM_barotropic.F90 MOM6/src/core/MOM_boundary_update.F90 MOM6/src/core/MOM_checksum_packages.F90 MOM6/src/core/MOM_continuity.F90 MOM6/src/core/MOM_continuity_PPM.F90 + MOM6/src/core/MOM_density_integrals.F90 MOM6/src/core/MOM_dynamics_split_RK2.F90 MOM6/src/core/MOM_dynamics_unsplit.F90 MOM6/src/core/MOM_dynamics_unsplit_RK2.F90 @@ -214,12 +215,13 @@ list(APPEND mom6_src_files MOM6/src/user/Kelvin_initialization.F90 MOM6/src/user/MOM_controlled_forcing.F90 MOM6/src/user/MOM_wave_interface.F90 - MOM6/src/user/Neverland_initialization.F90 + MOM6/src/user/Neverworld_initialization.F90 MOM6/src/user/Phillips_initialization.F90 MOM6/src/user/RGC_initialization.F90 MOM6/src/user/Rossby_front_2d_initialization.F90 MOM6/src/user/SCM_CVMix_tests.F90 MOM6/src/user/adjustment_initialization.F90 + MOM6/src/user/basin_builder.F90 MOM6/src/user/baroclinic_zone_initialization.F90 MOM6/src/user/benchmark_initialization.F90 MOM6/src/user/circle_obcs_initialization.F90 @@ -241,11 +243,15 @@ list(APPEND mom6_src_files MOM6/src/user/user_revise_forcing.F90 MOM6/src/ocean_data_assim/MOM_oda_driver.F90 - MOM6/src/ocean_data_assim/core/ocean_da_core.F90 - MOM6/src/ocean_data_assim/core/ocean_da_types.F90 - MOM6/src/ocean_data_assim/core/write_ocean_obs.F90 - MOM6/src/ocean_data_assim/geoKdTree/kdtree.f90 + MOM6/config_src/external/GFDL_ocean_BGC/FMS_coupler_util.F90 + MOM6/config_src/external/GFDL_ocean_BGC/generic_tracer.F90 + MOM6/config_src/external/GFDL_ocean_BGC/generic_tracer_utils.F90 + MOM6/config_src/external/ODA_hooks/kdtree.f90 + MOM6/config_src/external/ODA_hooks/ocean_da_core.F90 + MOM6/config_src/external/ODA_hooks/ocean_da_types.F90 + MOM6/config_src/external/ODA_hooks/write_ocean_obs.F90 + ) list(APPEND mom6_nuopc_src_files @@ -261,7 +267,6 @@ list(APPEND mom6_solo_src_files MOM6/config_src/solo_driver/MESO_surface_forcing.F90 MOM6/config_src/solo_driver/MOM_driver.F90 MOM6/config_src/solo_driver/MOM_surface_forcing.F90 - MOM6/config_src/solo_driver/Neverland_surface_forcing.F90 MOM6/config_src/solo_driver/atmos_ocean_fluxes.F90 MOM6/config_src/solo_driver/user_surface_forcing.F90 ) diff --git a/fms_files.cmake b/fms_files.cmake index 6756cd323d..fffd5a3b71 100644 --- a/fms_files.cmake +++ b/fms_files.cmake @@ -1,4 +1,5 @@ list(APPEND fms_src_files + FMS/affinity/fms_affinity.F90 FMS/amip_interp/amip_interp.F90 FMS/astronomy/astronomy.F90 FMS/axis_utils/axis_utils.F90 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 89a638ee92..dd163f0d5a 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Tue Dec 1 13:12:56 MST 2020 +Thu Dec 3 06:07:17 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/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-20201201/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/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-20201201/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/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 @@ -186,8 +186,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-20201201/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -322,8 +322,8 @@ Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_gsd results .... Test 007 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -550,8 +550,8 @@ Checking test 008 fv3_ccpp_thompson results .... Test 008 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -618,8 +618,8 @@ Checking test 009 fv3_ccpp_thompson_no_aero results .... Test 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -686,8 +686,8 @@ Checking test 010 fv3_ccpp_rrfs_v1beta results .... Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -754,8 +754,8 @@ Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -772,8 +772,8 @@ Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -802,8 +802,8 @@ Checking test 013 fv3_ccpp_control_debug results .... Test 013 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -870,8 +870,8 @@ Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Test 014 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Test 015 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1074,8 +1074,8 @@ Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1216,8 +1216,8 @@ Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_64895/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1235,5 +1235,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 1 13:29:10 MST 2020 -Elapsed time: 00h:16m:14s. Have a nice day! +Thu Dec 3 06:26:05 MST 2020 +Elapsed time: 00h:18m:48s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 9086a714e4..f969008f7c 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,10 +1,1635 @@ -Tue Dec 1 13:25:17 MST 2020 +Thu Dec 3 07:49:26 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfdlmp_prod -Checking test 001 fv3_ccpp_gfdlmp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_control_prod +Checking test 001 fv3_ccpp_control 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 001 fv3_ccpp_control PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/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 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 002 fv3_ccpp_decomp PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_2threads_prod +Checking test 003 fv3_ccpp_2threads 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 003 fv3_ccpp_2threads PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_restart_prod +Checking test 004 fv3_ccpp_restart 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 004 fv3_ccpp_restart PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/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 + 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 005 fv3_ccpp_read_inc PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/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 + 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.nc .........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 + 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 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/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 + 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.nc .........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 + 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 007 fv3_ccpp_wrtGauss_netcdf PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/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 + 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.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.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 + 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 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/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 + 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.nc .........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 + 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 009 fv3_ccpp_wrtGlatlon_netcdf PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/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 + 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 010 fv3_ccpp_wrtGauss_nemsio PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/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 + 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 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_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/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 012 fv3_ccpp_stochy PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_iau_prod +Checking test 013 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 013 fv3_ccpp_iau PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_ca_prod +Checking test 014 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 014 fv3_ccpp_ca PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_lheatstrg_prod +Checking test 015 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 015 fv3_ccpp_lheatstrg PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_multigases_prod +Checking test 016 fv3_ccpp_multigases 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 + 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 016 fv3_ccpp_multigases PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_control_32bit_prod +Checking test 017 fv3_ccpp_control_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.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 017 fv3_ccpp_control_32bit PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_stretched_prod +Checking test 018 fv3_ccpp_stretched 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 fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.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 018 fv3_ccpp_stretched PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_stretched_nest_prod +Checking test 019 fv3_ccpp_stretched_nest 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.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK +Test 019 fv3_ccpp_stretched_nest PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_regional_control_prod +Checking test 020 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 + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_regional_restart_prod +Checking test 021 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 + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_regional_quilt_prod +Checking test 022 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 + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 023 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 ............ALT CHECK......OK +Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_control_debug_prod +Checking test 024 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 024 fv3_ccpp_control_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_stretched_nest_debug_prod +Checking test 025 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + 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 + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfdlmp_prod +Checking test 026 fv3_ccpp_gfdlmp 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 026 fv3_ccpp_gfdlmp PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 027 fv3_ccpp_gfdlmprad_gwd 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 027 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 028 fv3_ccpp_gfdlmprad_noahmp 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 028 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_csawmg_prod +Checking test 029 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 029 fv3_ccpp_csawmg PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_satmedmf_prod +Checking test 030 fv3_ccpp_satmedmf 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 030 fv3_ccpp_satmedmf PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_satmedmfq_prod +Checking test 031 fv3_ccpp_satmedmfq 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 031 fv3_ccpp_satmedmfq PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfdlmp_32bit_prod +Checking test 032 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 032 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 033 fv3_ccpp_gfdlmprad_32bit_post 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 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 + 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_gfdlmprad_32bit_post PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_cpt_prod +Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -35,6 +1660,12 @@ Checking test 001 fv3_ccpp_gfdlmp 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/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 @@ -47,12 +1678,12 @@ Checking test 001 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 001 fv3_ccpp_gfdlmp PASS +Test 034 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfs_v15p2_prod -Checking test 002 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gsd_prod +Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -71,6 +1702,18 @@ Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing phyf024.tile4.nc .........OK Comparing phyf024.tile5.nc .........OK Comparing phyf024.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 dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK @@ -83,6 +1726,18 @@ Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.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 @@ -103,24 +1758,92 @@ Checking test 002 fv3_ccpp_gfs_v15p2 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/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 035 fv3_ccpp_gsd PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_thompson_prod +Checking test 036 fv3_ccpp_thompson 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 -Test 002 fv3_ccpp_gfs_v15p2 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 036 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfs_v16beta_prod -Checking test 003 fv3_ccpp_gfs_v16beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_thompson_no_aero_prod +Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -171,24 +1894,92 @@ Checking test 003 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/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_thompson_no_aero PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_rrfs_v1beta_prod +Checking test 038 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 -Test 003 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 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/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 @@ -251,12 +2042,12 @@ Checking test 004 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 004 fv3_ccpp_gfs_v16beta_flake PASS +Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/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 @@ -319,12 +2110,12 @@ Checking test 005 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 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -387,12 +2178,12 @@ Checking test 006 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 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 041 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gsd_prod -Checking test 007 fv3_ccpp_gsd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 042 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -411,18 +2202,6 @@ Checking test 007 fv3_ccpp_gsd results .... Comparing phyf024.tile4.nc .........OK Comparing phyf024.tile5.nc .........OK Comparing phyf024.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 dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK @@ -435,18 +2214,6 @@ Checking test 007 fv3_ccpp_gsd results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.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 @@ -467,24 +2234,72 @@ Checking test 007 fv3_ccpp_gsd 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/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 007 fv3_ccpp_gsd PASS + 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_RRTMGP PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gocart_clm_prod +Checking test 043 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 043 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_thompson_prod -Checking test 008 fv3_ccpp_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -535,24 +2350,24 @@ Checking test 008 fv3_ccpp_thompson 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/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 008 fv3_ccpp_thompson PASS + 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_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_thompson_no_aero_prod -Checking test 009 fv3_ccpp_thompson_no_aero results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 045 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 @@ -603,24 +2418,42 @@ Checking test 009 fv3_ccpp_thompson_no_aero 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/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 009 fv3_ccpp_thompson_no_aero PASS + 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_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK + 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 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_rrfs_v1beta_prod -Checking test 010 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 047 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -633,24 +2466,24 @@ Checking test 010 fv3_ccpp_rrfs_v1beta results .... 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 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 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 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 @@ -683,12 +2516,12 @@ Checking test 010 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 010 fv3_ccpp_rrfs_v1beta PASS +Test 047 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 048 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 @@ -701,24 +2534,24 @@ Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... 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 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 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 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 @@ -739,72 +2572,92 @@ Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson 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 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson 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 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_control_debug_prod -Checking test 013 fv3_ccpp_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 049 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 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 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 -Test 013 fv3_ccpp_control_debug PASS + 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_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gsd_debug_prod +Checking test 050 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -817,24 +2670,24 @@ Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -867,12 +2720,12 @@ Checking test 014 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 014 fv3_ccpp_gfs_v15p2_debug PASS +Test 050 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -885,24 +2738,24 @@ Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -935,12 +2788,12 @@ Checking test 015 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 015 fv3_ccpp_gfs_v16beta_debug PASS +Test 051 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_thompson_debug_prod +Checking test 052 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1003,12 +2856,12 @@ Checking test 016 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 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 052 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 053 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 @@ -1071,12 +2924,12 @@ Checking test 017 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 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 053 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_multigases_prod -Checking test 018 fv3_ccpp_multigases results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1089,24 +2942,24 @@ Checking test 018 fv3_ccpp_multigases results .... 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1139,18 +2992,12 @@ Checking test 018 fv3_ccpp_multigases results .... 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 018 fv3_ccpp_multigases PASS +Test 054 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 055 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 @@ -1213,12 +3060,12 @@ Checking test 019 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 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_762/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -1231,9 +3078,9 @@ Checking test 020 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 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 1 13:45:34 MST 2020 -Elapsed time: 00h:20m:17s. Have a nice day! +Thu Dec 3 08:43:25 MST 2020 +Elapsed time: 00h:53m:59s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index cda24da500..7cd0aa862c 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Tue Dec 1 16:29:49 EST 2020 +Thu Dec 3 08:08:08 EST 2020 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/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-20201201/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/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-20201201/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/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-20201201/INTEL/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/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-20201201/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/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-20201201/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/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-20201201/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/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-20201201/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/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-20201201/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/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-20201201/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/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-20201201/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/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-20201201/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/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 = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -746,8 +746,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -820,8 +820,8 @@ Checking test 014 fv3_ccpp_multigases results .... Test 014 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_control_32bit results .... Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,8 +944,8 @@ Checking test 016 fv3_ccpp_stretched results .... Test 016 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1011,8 +1011,8 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1022,8 +1022,8 @@ Checking test 018 fv3_ccpp_regional_control results .... Test 018 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1031,8 +1031,8 @@ Checking test 019 fv3_ccpp_regional_restart results .... Test 019 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1042,19 +1042,19 @@ Checking test 020 fv3_ccpp_regional_quilt results .... Test 020 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 021 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Test 021 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_c768_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_regional_c768_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_c768_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_regional_c768_prod Checking test 022 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1064,8 +1064,8 @@ Checking test 022 fv3_ccpp_regional_c768 results .... Test 022 fv3_ccpp_regional_c768 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1094,8 +1094,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1114,8 +1114,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1162,8 +1162,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1210,8 +1210,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1258,8 +1258,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1306,8 +1306,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1354,8 +1354,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,8 +1402,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1450,8 +1450,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_cpt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1504,8 +1504,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gsd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1596,8 +1596,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1664,8 +1664,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,8 +1732,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1800,8 +1800,8 @@ Checking test 036 fv3_ccpp_rrfs_v1beta results .... Test 036 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gocart_clm_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gocart_clm_prod Checking test 037 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1848,8 +1848,8 @@ Checking test 037 fv3_ccpp_gocart_clm results .... Test 037 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gfs_v16beta_flake_prod Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1916,8 +1916,8 @@ Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Test 038 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1984,8 +1984,8 @@ Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2002,8 +2002,8 @@ Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gsd_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2070,8 +2070,8 @@ Checking test 041 fv3_ccpp_gsd_debug results .... Test 041 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2138,8 +2138,8 @@ Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Test 042 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,8 +2206,8 @@ Checking test 043 fv3_ccpp_thompson_debug results .... Test 043 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,8 +2274,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Test 044 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2342,8 +2342,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Test 045 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,8 +2410,8 @@ Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_28034/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2429,5 +2429,5 @@ Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 1 17:01:46 EST 2020 -Elapsed time: 00h:31m:59s. Have a nice day! +Thu Dec 3 08:58:28 EST 2020 +Elapsed time: 00h:50m:21s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index da39839dcb..7c1ed1535a 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Wed Dec 2 07:25:23 UTC 2020 +Thu Dec 3 16:26:16 EST 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/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-20201201/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/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-20201201/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/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 @@ -186,8 +186,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-20201201/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -322,8 +322,8 @@ Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_gsd results .... Test 007 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -550,8 +550,8 @@ Checking test 008 fv3_ccpp_thompson results .... Test 008 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -618,8 +618,8 @@ Checking test 009 fv3_ccpp_thompson_no_aero results .... Test 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -686,8 +686,8 @@ Checking test 010 fv3_ccpp_rrfs_v1beta results .... Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -754,8 +754,8 @@ Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -772,8 +772,8 @@ Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -802,8 +802,8 @@ Checking test 013 fv3_ccpp_control_debug results .... Test 013 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -870,8 +870,8 @@ Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Test 014 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Test 015 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1074,8 +1074,8 @@ Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1216,8 +1216,8 @@ Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_303408/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1235,5 +1235,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Dec 2 07:51:20 UTC 2020 -Elapsed time: 00h:25m:57s. Have a nice day! +Thu Dec 3 20:46:27 EST 2020 +Elapsed time: 04h:20m:11s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index a26dd525e7..8c62c54410 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Wed Dec 2 07:25:24 UTC 2020 +Thu Dec 3 11:13:31 EST 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_lndp_prod Checking test 015 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_lndp results .... Test 015 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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-20201201/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1393,19 +1393,19 @@ 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-20201201/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 ............ALT CHECK......OK Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_regional_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_regional_c768_prod Checking test 028 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1415,8 +1415,8 @@ Checking test 028 fv3_ccpp_regional_c768 results .... Test 028 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_control_debug_prod Checking test 029 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1445,8 +1445,8 @@ Checking test 029 fv3_ccpp_control_debug results .... Test 029 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_stretched_nest_debug_prod Checking test 030 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1465,8 +1465,8 @@ Checking test 030 fv3_ccpp_stretched_nest_debug results .... Test 030 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfdlmp_prod Checking test 031 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1513,8 +1513,8 @@ Checking test 031 fv3_ccpp_gfdlmp results .... Test 031 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfdlmprad_gwd_prod Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,8 +1561,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Test 032 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1609,8 +1609,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Test 033 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_csawmg_prod Checking test 034 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,8 +1657,8 @@ Checking test 034 fv3_ccpp_csawmg results .... Test 034 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_satmedmf_prod Checking test 035 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 035 fv3_ccpp_satmedmf results .... Test 035 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_satmedmfq_prod Checking test 036 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1753,8 +1753,8 @@ Checking test 036 fv3_ccpp_satmedmfq results .... Test 036 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfdlmp_32bit_prod Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1801,8 +1801,8 @@ Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Test 037 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1853,8 +1853,8 @@ Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Test 038 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_cpt_prod Checking test 039 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1907,8 +1907,8 @@ Checking test 039 fv3_ccpp_cpt results .... Test 039 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gsd_prod Checking test 040 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1999,8 +1999,8 @@ Checking test 040 fv3_ccpp_gsd results .... Test 040 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_rap_prod Checking test 041 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2067,8 +2067,8 @@ Checking test 041 fv3_ccpp_rap results .... Test 041 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_hrrr_prod Checking test 042 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2135,8 +2135,8 @@ Checking test 042 fv3_ccpp_hrrr results .... Test 042 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_thompson_prod Checking test 043 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2203,8 +2203,8 @@ Checking test 043 fv3_ccpp_thompson results .... Test 043 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_thompson_no_aero_prod Checking test 044 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2271,8 +2271,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero results .... Test 044 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_rrfs_v1beta_prod Checking test 045 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2339,8 +2339,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta results .... Test 045 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfs_v15p2_prod Checking test 046 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2407,8 +2407,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2 results .... Test 046 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfs_v16beta_prod Checking test 047 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2475,8 +2475,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta results .... Test 047 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -2543,8 +2543,8 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -2611,8 +2611,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 049 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -2659,8 +2659,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmg results .... Test 050 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -2707,8 +2707,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... Test 051 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -2755,8 +2755,8 @@ Checking test 052 fv3_ccpp_gocart_clm results .... Test 052 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -2823,8 +2823,8 @@ Checking test 053 fv3_ccpp_gfs_v16beta_flake results .... Test 053 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -2891,8 +2891,8 @@ Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -2909,8 +2909,8 @@ Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -2977,8 +2977,8 @@ Checking test 056 fv3_ccpp_gfs_v15p2_debug results .... Test 056 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -3045,8 +3045,8 @@ Checking test 057 fv3_ccpp_gfs_v16beta_debug results .... Test 057 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -3113,8 +3113,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -3181,8 +3181,8 @@ Checking test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -3249,8 +3249,8 @@ Checking test 060 fv3_ccpp_gsd_debug results .... Test 060 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -3317,8 +3317,8 @@ Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... Test 061 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -3385,8 +3385,8 @@ Checking test 062 fv3_ccpp_thompson_debug results .... Test 062 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -3453,8 +3453,8 @@ Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... Test 063 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -3521,8 +3521,8 @@ Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... Test 064 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -3589,8 +3589,8 @@ Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/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 @@ -3607,8 +3607,8 @@ Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_control_prod Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3660,8 +3660,8 @@ Checking test 067 cpld_control results .... Test 067 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_2threads_prod Checking test 068 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3713,8 +3713,8 @@ Checking test 068 cpld_2threads results .... Test 068 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_decomp_prod Checking test 069 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3766,8 +3766,8 @@ Checking test 069 cpld_decomp results .... Test 069 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_satmedmf_prod Checking test 070 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3819,8 +3819,8 @@ Checking test 070 cpld_satmedmf results .... Test 070 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_ca_prod Checking test 071 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3872,8 +3872,8 @@ Checking test 071 cpld_ca results .... Test 071 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_control_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_control_mx025_prod Checking test 072 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3928,8 +3928,8 @@ Checking test 072 cpld_control_mx025 results .... Test 072 cpld_control_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_control_mx025_12h_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_mx025_12h_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_control_mx025_12h_prod Checking test 073 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3984,8 +3984,8 @@ Checking test 073 cpld_control_mx025_12h results .... Test 073 cpld_control_mx025_12h PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_restart_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_restart_mx025_prod Checking test 074 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4040,8 +4040,8 @@ Checking test 074 cpld_restart_mx025 results .... Test 074 cpld_restart_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_control_c192_prod Checking test 075 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4093,8 +4093,8 @@ Checking test 075 cpld_control_c192 results .... Test 075 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_control_c384_prod Checking test 076 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4149,8 +4149,8 @@ Checking test 076 cpld_control_c384 results .... Test 076 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_controlfrac_c384_prod Checking test 077 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4205,8 +4205,8 @@ Checking test 077 cpld_controlfrac_c384 results .... Test 077 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_bmark_prod Checking test 078 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4261,8 +4261,8 @@ Checking test 078 cpld_bmark results .... Test 078 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_bmark_wave_prod Checking test 079 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4320,8 +4320,8 @@ Checking test 079 cpld_bmark_wave results .... Test 079 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/cpld_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_debug_prod Checking test 080 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4373,8 +4373,8 @@ Checking test 080 cpld_debug results .... Test 080 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/datm_control_cfsr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/datm_control_cfsr_prod Checking test 081 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4382,8 +4382,8 @@ Checking test 081 datm_control_cfsr results .... Test 081 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/datm_control_gefs_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/datm_control_gefs_prod Checking test 082 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4391,8 +4391,8 @@ Checking test 082 datm_control_gefs results .... Test 082 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/datm_mx025_cfsr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/datm_mx025_cfsr_prod Checking test 083 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4403,8 +4403,8 @@ Checking test 083 datm_mx025_cfsr results .... Test 083 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_289894/datm_mx025_gefs_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/datm_mx025_gefs_prod Checking test 084 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4416,5 +4416,5 @@ Test 084 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Wed Dec 2 08:31:28 UTC 2020 -Elapsed time: 01h:06m:04s. Have a nice day! +Thu Dec 3 12:49:54 EST 2020 +Elapsed time: 01h:36m:24s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 1b57b2dfdb..8c7551df5c 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Tue Dec 1 22:54:52 GMT 2020 +Thu Dec 3 13:07:47 GMT 2020 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_decomp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_2threads_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/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-20201201/INTEL/fv3_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/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-20201201/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_read_inc_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/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-20201201/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/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-20201201/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/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-20201201/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/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-20201201/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/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-20201201/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/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-20201201/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_stochy_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_iau_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_lheatstrg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_multigases_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_control_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_stretched_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,8 +1012,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_stretched_nest_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,19 +1079,19 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_regional_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc ............ALT CHECK......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 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_regional_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_regional_quilt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1110,19 +1110,19 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_c768_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_regional_c768_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_c768_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_regional_c768_prod Checking test 023 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1132,8 +1132,8 @@ Checking test 023 fv3_ccpp_regional_c768 results .... Test 023 fv3_ccpp_regional_c768 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_control_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1162,8 +1162,8 @@ Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1182,8 +1182,8 @@ Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gfdlmp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1230,8 +1230,8 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1278,8 +1278,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1326,8 +1326,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_csawmg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1374,8 +1374,8 @@ Checking test 029 fv3_ccpp_csawmg results .... Test 029 fv3_ccpp_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_satmedmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1422,8 +1422,8 @@ Checking test 030 fv3_ccpp_satmedmf results .... Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_satmedmfq_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1470,8 +1470,8 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1518,8 +1518,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_cpt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1572,8 +1572,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gsd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1664,8 +1664,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,8 +1732,8 @@ Checking test 035 fv3_ccpp_thompson results .... Test 035 fv3_ccpp_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1800,8 +1800,8 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Test 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gocart_clm_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gocart_clm_prod Checking test 037 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1848,8 +1848,8 @@ Checking test 037 fv3_ccpp_gocart_clm results .... Test 037 fv3_ccpp_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gfs_v16beta_flake_prod Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1916,8 +1916,8 @@ Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Test 038 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1984,8 +1984,8 @@ Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2002,8 +2002,8 @@ Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gsd_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2070,8 +2070,8 @@ Checking test 041 fv3_ccpp_gsd_debug results .... Test 041 fv3_ccpp_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2138,8 +2138,8 @@ Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Test 042 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,8 +2206,8 @@ Checking test 043 fv3_ccpp_thompson_debug results .... Test 043 fv3_ccpp_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,8 +2274,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Test 044 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2342,8 +2342,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Test 045 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,8 +2410,8 @@ Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_49002/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2429,5 +2429,5 @@ Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Dec 2 00:52:28 GMT 2020 -Elapsed time: 01h:57m:36s. Have a nice day! +Thu Dec 3 14:46:35 GMT 2020 +Elapsed time: 01h:38m:49s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 217cd5abf7..4b92bfafcb 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Tue Dec 1 17:57:08 CST 2020 +Thu Dec 3 10:11:47 CST 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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-20201201/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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-20201201/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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-20201201/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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-20201201/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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-20201201/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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-20201201/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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-20201201/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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-20201201/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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-20201201/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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-20201201/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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-20201201/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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-20201201/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,8 +883,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1055,8 +1055,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_control_32bit results .... Test 019 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1179,8 +1179,8 @@ Checking test 020 fv3_ccpp_stretched results .... Test 020 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 021 fv3_ccpp_stretched_nest results .... Test 021 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1257,8 +1257,8 @@ Checking test 022 fv3_ccpp_regional_control results .... Test 022 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 023 fv3_ccpp_regional_restart results .... Test 023 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1277,19 +1277,19 @@ Checking test 024 fv3_ccpp_regional_quilt results .... Test 024 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_regional_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1299,8 +1299,8 @@ Checking test 026 fv3_ccpp_regional_c768 results .... Test 026 fv3_ccpp_regional_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1329,8 +1329,8 @@ Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -1349,8 +1349,8 @@ Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1397,8 +1397,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -1445,8 +1445,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -1493,8 +1493,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1541,8 +1541,8 @@ Checking test 032 fv3_ccpp_csawmg results .... Test 032 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1589,8 +1589,8 @@ Checking test 033 fv3_ccpp_satmedmf results .... Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1637,8 +1637,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1689,8 +1689,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1743,8 +1743,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1835,8 +1835,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,8 +1903,8 @@ Checking test 038 fv3_ccpp_thompson results .... Test 038 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1971,8 +1971,8 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2039,8 +2039,8 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfs_v15p2_prod Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,8 +2107,8 @@ Checking test 041 fv3_ccpp_gfs_v15p2 results .... Test 041 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfs_v16beta_prod Checking test 042 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2175,8 +2175,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta results .... Test 042 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -2243,8 +2243,8 @@ Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -2311,8 +2311,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -2359,8 +2359,8 @@ Checking test 045 fv3_ccpp_gfsv16_csawmg results .... Test 045 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -2407,8 +2407,8 @@ Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... Test 046 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -2455,8 +2455,8 @@ Checking test 047 fv3_ccpp_gocart_clm results .... Test 047 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -2523,8 +2523,8 @@ Checking test 048 fv3_ccpp_gfs_v16beta_flake results .... Test 048 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -2591,8 +2591,8 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -2609,8 +2609,8 @@ Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -2677,8 +2677,8 @@ Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... Test 051 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -2745,8 +2745,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_debug results .... Test 052 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -2813,8 +2813,8 @@ Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -2881,8 +2881,8 @@ Checking test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -2949,8 +2949,8 @@ Checking test 055 fv3_ccpp_gsd_debug results .... Test 055 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -3017,8 +3017,8 @@ Checking test 056 fv3_ccpp_gsd_diag3d_debug results .... Test 056 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -3085,8 +3085,8 @@ Checking test 057 fv3_ccpp_thompson_debug results .... Test 057 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -3153,8 +3153,8 @@ Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... Test 058 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -3221,8 +3221,8 @@ Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... Test 059 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -3289,8 +3289,8 @@ Checking test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/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 @@ -3307,8 +3307,8 @@ Checking test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_control_prod Checking test 062 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3360,8 +3360,8 @@ Checking test 062 cpld_control results .... Test 062 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_2threads_prod Checking test 063 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3413,8 +3413,8 @@ Checking test 063 cpld_2threads results .... Test 063 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_decomp_prod Checking test 064 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3466,8 +3466,8 @@ Checking test 064 cpld_decomp results .... Test 064 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_satmedmf_prod Checking test 065 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3519,8 +3519,8 @@ Checking test 065 cpld_satmedmf results .... Test 065 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_ca_prod Checking test 066 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3572,8 +3572,8 @@ Checking test 066 cpld_ca results .... Test 066 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_control_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_control_mx025_prod Checking test 067 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3628,8 +3628,8 @@ Checking test 067 cpld_control_mx025 results .... Test 067 cpld_control_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_control_mx025_12h_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_mx025_12h_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_control_mx025_12h_prod Checking test 068 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3684,8 +3684,8 @@ Checking test 068 cpld_control_mx025_12h results .... Test 068 cpld_control_mx025_12h PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_restart_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_restart_mx025_prod Checking test 069 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3740,8 +3740,8 @@ Checking test 069 cpld_restart_mx025 results .... Test 069 cpld_restart_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_control_c192_prod Checking test 070 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3793,8 +3793,8 @@ Checking test 070 cpld_control_c192 results .... Test 070 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_control_c384_prod Checking test 071 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3849,8 +3849,8 @@ Checking test 071 cpld_control_c384 results .... Test 071 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_controlfrac_c384_prod Checking test 072 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3905,8 +3905,8 @@ Checking test 072 cpld_controlfrac_c384 results .... Test 072 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_bmark_prod Checking test 073 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3961,8 +3961,8 @@ Checking test 073 cpld_bmark results .... Test 073 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_bmark_wave_prod Checking test 074 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4020,8 +4020,8 @@ Checking test 074 cpld_bmark_wave results .... Test 074 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/cpld_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_debug_prod Checking test 075 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4073,8 +4073,8 @@ Checking test 075 cpld_debug results .... Test 075 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/datm_control_cfsr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/datm_control_cfsr_prod Checking test 076 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4082,8 +4082,8 @@ Checking test 076 datm_control_cfsr results .... Test 076 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/datm_control_gefs_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/datm_control_gefs_prod Checking test 077 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4091,8 +4091,8 @@ Checking test 077 datm_control_gefs results .... Test 077 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/datm_mx025_cfsr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/datm_mx025_cfsr_prod Checking test 078 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4103,8 +4103,8 @@ Checking test 078 datm_mx025_cfsr results .... Test 078 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_90745/datm_mx025_gefs_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/datm_mx025_gefs_prod Checking test 079 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4116,5 +4116,5 @@ Test 079 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 1 18:45:53 CST 2020 -Elapsed time: 00h:48m:46s. Have a nice day! +Thu Dec 3 11:01:18 CST 2020 +Elapsed time: 00h:49m:32s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 7a93679b75..7e537bc285 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Tue Dec 1 17:59:14 UTC 2020 +Thu Dec 3 16:40:09 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/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-20201201/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/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-20201201/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/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-20201201/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/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-20201201/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/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-20201201/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/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-20201201/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/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-20201201/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/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-20201201/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/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-20201201/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/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-20201201/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/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-20201201/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,8 +1012,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,8 +1079,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1090,8 +1090,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1121,8 +1121,8 @@ Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1151,8 +1151,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1171,8 +1171,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,8 +1267,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,8 +1363,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,8 +1411,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,8 +1459,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,8 +1507,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,8 +1559,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,8 +1613,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 035 fv3_ccpp_thompson results .... Test 035 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Test 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_rrfs_v1beta_prod Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_rrfs_v1beta results .... Test 037 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gfsv16_csawmg_prod Checking test 038 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1957,8 +1957,8 @@ Checking test 038 fv3_ccpp_gfsv16_csawmg results .... Test 038 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gfsv16_csawmgt_prod Checking test 039 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2005,8 +2005,8 @@ Checking test 039 fv3_ccpp_gfsv16_csawmgt results .... Test 039 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gocart_clm_prod Checking test 040 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2053,8 +2053,8 @@ Checking test 040 fv3_ccpp_gocart_clm results .... Test 040 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gfs_v16beta_flake_prod Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2121,8 +2121,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... Test 041 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2189,8 +2189,8 @@ Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 042 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2207,8 +2207,8 @@ Checking test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gsd_debug_prod Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2275,8 +2275,8 @@ Checking test 044 fv3_ccpp_gsd_debug results .... Test 044 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gsd_diag3d_debug_prod Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2343,8 +2343,8 @@ Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Test 045 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_thompson_debug_prod Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2411,8 +2411,8 @@ Checking test 046 fv3_ccpp_thompson_debug results .... Test 046 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_thompson_no_aero_debug_prod Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2479,8 +2479,8 @@ Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Test 047 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2547,8 +2547,8 @@ Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Test 048 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2615,8 +2615,8 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_29966/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2634,5 +2634,5 @@ Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 1 18:37:01 UTC 2020 -Elapsed time: 00h:37m:48s. Have a nice day! +Thu Dec 3 17:15:40 UTC 2020 +Elapsed time: 00h:35m:31s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 17dee00f9a..c0d59c4259 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Tue Dec 1 18:51:08 UTC 2020 +Thu Dec 3 16:34:58 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/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-20201201/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/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-20201201/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/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-20201201/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/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-20201201/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/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-20201201/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/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-20201201/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/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-20201201/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/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 ............ALT CHECK......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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/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-20201201/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/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-20201201/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/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-20201201/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -863,8 +863,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -912,8 +912,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -986,8 +986,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/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 @@ -1054,8 +1054,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/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 @@ -1177,8 +1177,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1188,8 +1188,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1197,8 +1197,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1208,19 +1208,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/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 ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_regional_c768_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_regional_c768_prod Checking test 025 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1230,8 +1230,8 @@ Checking test 025 fv3_ccpp_regional_c768 results .... Test 025 fv3_ccpp_regional_c768 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_control_debug_prod Checking test 026 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1260,8 +1260,8 @@ Checking test 026 fv3_ccpp_control_debug results .... Test 026 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_stretched_nest_debug_prod Checking test 027 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1280,8 +1280,8 @@ Checking test 027 fv3_ccpp_stretched_nest_debug results .... Test 027 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,8 +1328,8 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,8 +1376,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1424,8 +1424,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1472,8 +1472,8 @@ Checking test 031 fv3_ccpp_csawmg results .... Test 031 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1520,8 +1520,8 @@ Checking test 032 fv3_ccpp_satmedmf results .... Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1568,8 +1568,8 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1616,8 +1616,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1668,8 +1668,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,8 +1722,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1814,8 +1814,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1882,8 +1882,8 @@ Checking test 038 fv3_ccpp_thompson results .... Test 038 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1950,8 +1950,8 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2018,8 +2018,8 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2066,8 +2066,8 @@ Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Test 041 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2114,8 +2114,8 @@ Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Test 042 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2162,8 +2162,8 @@ Checking test 043 fv3_ccpp_gocart_clm results .... Test 043 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2230,8 +2230,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Test 044 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2298,8 +2298,8 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2316,8 +2316,8 @@ Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2384,8 +2384,8 @@ Checking test 047 fv3_ccpp_gsd_debug results .... Test 047 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2452,8 +2452,8 @@ Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Test 048 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2520,8 +2520,8 @@ Checking test 049 fv3_ccpp_thompson_debug results .... Test 049 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2588,8 +2588,8 @@ Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Test 050 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2656,8 +2656,8 @@ Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Test 051 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2724,8 +2724,8 @@ Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2742,8 +2742,8 @@ Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_control_prod Checking test 054 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2795,8 +2795,8 @@ Checking test 054 cpld_control results .... Test 054 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_2threads_prod Checking test 055 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2848,8 +2848,8 @@ Checking test 055 cpld_2threads results .... Test 055 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_decomp_prod Checking test 056 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2901,8 +2901,8 @@ Checking test 056 cpld_decomp results .... Test 056 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_satmedmf_prod Checking test 057 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2954,8 +2954,8 @@ Checking test 057 cpld_satmedmf results .... Test 057 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_ca_prod Checking test 058 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3007,8 +3007,8 @@ Checking test 058 cpld_ca results .... Test 058 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_control_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_control_mx025_prod Checking test 059 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3063,8 +3063,8 @@ Checking test 059 cpld_control_mx025 results .... Test 059 cpld_control_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_control_mx025_12h_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_control_mx025_12h_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_control_mx025_12h_prod Checking test 060 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3119,8 +3119,8 @@ Checking test 060 cpld_control_mx025_12h results .... Test 060 cpld_control_mx025_12h PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_restart_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_restart_mx025_prod Checking test 061 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3175,8 +3175,8 @@ Checking test 061 cpld_restart_mx025 results .... Test 061 cpld_restart_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_control_c192_prod Checking test 062 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3228,8 +3228,8 @@ Checking test 062 cpld_control_c192 results .... Test 062 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_control_c384_prod Checking test 063 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3284,8 +3284,8 @@ Checking test 063 cpld_control_c384 results .... Test 063 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_controlfrac_c384_prod Checking test 064 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3340,8 +3340,8 @@ Checking test 064 cpld_controlfrac_c384 results .... Test 064 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_bmark_prod Checking test 065 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3396,8 +3396,8 @@ Checking test 065 cpld_bmark results .... Test 065 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_bmark_wave_prod Checking test 066 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3455,8 +3455,8 @@ Checking test 066 cpld_bmark_wave results .... Test 066 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201201/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_144932/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_debug_prod Checking test 067 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3509,5 +3509,5 @@ Test 067 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 1 22:14:22 UTC 2020 -Elapsed time: 03h:23m:16s. Have a nice day! +Thu Dec 3 18:33:34 UTC 2020 +Elapsed time: 01h:58m:40s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index 7399863255..8d64b33394 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -150,6 +150,10 @@ if [[ "${MAKE_OPT}" == *"DATM=Y"* ]]; then CMAKE_FLAGS="${CMAKE_FLAGS} -DDATM=Y" fi +if [[ "${MAKE_OPT}" == *"S2S=Y"* ]] || [[ ${MAKE_OPT} == *"DATM=Y"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DMOM6SOLO=ON" +fi + CMAKE_FLAGS=$(trim "${CMAKE_FLAGS}") if [ $clean_before = YES ] ; then diff --git a/tests/parm/MOM_input_template_025 b/tests/parm/MOM_input_template_025 index f7ba839392..aa1da78029 100644 --- a/tests/parm/MOM_input_template_025 +++ b/tests/parm/MOM_input_template_025 @@ -1,112 +1,116 @@ -/* This input file provides the adjustable run-time parameters for version 6 of - the Modular Ocean Model (MOM6), a numerical ocean model developed at NOAA-GFDL. - Where appropriate, parameters use usually given in MKS units. +! This input file provides the adjustable run-time parameters for version 6 of the Modular Ocean Model (MOM6). +! Where appropriate, parameters use usually given in MKS units. - This particular file is for the example in OM4_025. +! This particular file is for the example in ice_ocean_SIS2/OM4_025. - This MOM_input file typically contains only the non-default values that are - needed to reproduce this example. A full list of parameters for this example - can be found in the corresponding MOM_parameter_doc.all file which is - generated by the model at run-time. */ +! This MOM_input file typically contains only the non-default values that are needed to reproduce this example. +! A full list of parameters for this example can be found in the corresponding MOM_parameter_doc.all file +! which is generated by the model at run-time. + +! === module MOM_domains === +TRIPOLAR_N = True ! [Boolean] default = False + ! Use tripolar connectivity at the northern edge of the domain. With + ! TRIPOLAR_N, NIGLOBAL must be even. +NIGLOBAL = NX_GLB ! + ! The total number of thickness grid points in the x-direction in the physical + ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. +NJGLOBAL = NY_GLB ! + ! The total number of thickness grid points in the y-direction in the physical + ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. +NIHALO = 4 ! default = 4 + ! The number of halo points on each side in the x-direction. With + ! STATIC_MEMORY_ this is set as NIHALO_ in MOM_memory.h at compile time; without + ! STATIC_MEMORY_ the default is NIHALO_ in MOM_memory.h (if defined) or 2. +NJHALO = 4 ! default = 4 + ! The number of halo points on each side in the y-direction. With + ! STATIC_MEMORY_ this is set as NJHALO_ in MOM_memory.h at compile time; without + ! STATIC_MEMORY_ the default is NJHALO_ in MOM_memory.h (if defined) or 2. +! LAYOUT = 32, 18 ! + ! The processor layout that was actually used. +! IO_LAYOUT = 1, 1 ! default = 1 + ! The processor layout to be used, or 0,0 to automatically set the io_layout to + ! be the same as the layout. ! === module MOM === USE_REGRIDDING = True ! [Boolean] default = False - ! If True, use the ALE algorithm (regridding/remapping). - ! If False, use the layered isopycnal algorithm. + ! If True, use the ALE algorithm (regridding/remapping). If False, use the + ! layered isopycnal algorithm. THICKNESSDIFFUSE = True ! [Boolean] default = False - ! If true, interface heights are diffused with a - ! coefficient of KHTH. + ! If true, interface heights are diffused with a coefficient of KHTH. THICKNESSDIFFUSE_FIRST = True ! [Boolean] default = False - ! If true, do thickness diffusion before dynamics. - ! This is only used if THICKNESSDIFFUSE is true. + ! If true, do thickness diffusion before dynamics. This is only used if + ! THICKNESSDIFFUSE is true. DT = DT_DYNAM_MOM6 ! [s] - ! The (baroclinic) dynamics time step. The time-step that - ! is actually used will be an integer fraction of the - ! forcing time-step (DT_FORCING in ocean-only mode or the - ! coupling timestep in coupled mode.) + ! The (baroclinic) dynamics time step. The time-step that is actually used will + ! be an integer fraction of the forcing time-step (DT_FORCING in ocean-only mode + ! or the coupling timestep in coupled mode.) DT_THERM = DT_THERM_MOM6 ! [s] default = 900.0 - ! The thermodynamic and tracer advection time step. - ! Ideally DT_THERM should be an integer multiple of DT - ! and less than the forcing or coupling time-step, unless - ! THERMO_SPANS_COUPLING is true, in which case DT_THERM - ! can be an integer multiple of the coupling timestep. By - ! default DT_THERM is set to DT. -THERMO_SPANS_COUPLING = MOM6_THERMO_SPAN ! [Boolean] default = False - ! If true, the MOM will take thermodynamic and tracer - ! timesteps that can be longer than the coupling timestep. - ! The actual thermodynamic timestep that is used in this - ! case is the largest integer multiple of the coupling - ! timestep that is less than or equal to DT_THERM. + ! The thermodynamic and tracer advection time step. Ideally DT_THERM should be + ! an integer multiple of DT and less than the forcing or coupling time-step, + ! unless THERMO_SPANS_COUPLING is true, in which case DT_THERM can be an integer + ! multiple of the coupling timestep. By default DT_THERM is set to DT. +THERMO_SPANS_COUPLING = MOM6_THERMO_SPAN ! [Boolean] default = False + ! If true, the MOM will take thermodynamic and tracer timesteps that can be + ! longer than the coupling timestep. The actual thermodynamic timestep that is + ! used in this case is the largest integer multiple of the coupling timestep + ! that is less than or equal to DT_THERM. HFREEZE = 20.0 ! [m] default = -1.0 ! If HFREEZE > 0, melt potential will be computed. The actual depth ! over which melt potential is computed will be min(HFREEZE, OBLD) - ! where OBLD is the boundary layer depth. If HFREEZE <= 0 (default) - ! melt potential will not be computed. + ! where OBLD is the boundary layer depth. If HFREEZE <= 0 (default) +USE_PSURF_IN_EOS = False ! [Boolean] default = False + ! If true, always include the surface pressure contributions in equation of + ! state calculations. FRAZIL = True ! [Boolean] default = False - ! If true, water freezes if it gets too cold, and the - ! the accumulated heat deficit is returned in the - ! surface state. FRAZIL is only used if + ! If true, water freezes if it gets too cold, and the accumulated heat deficit + ! is returned in the surface state. FRAZIL is only used if ! ENABLE_THERMODYNAMICS is true. DO_GEOTHERMAL = True ! [Boolean] default = False ! If true, apply geothermal heating. BOUND_SALINITY = True ! [Boolean] default = False - ! If true, limit salinity to being positive. (The sea-ice - ! model may ask for more salt than is available and - ! drive the salinity negative otherwise.) + ! If true, limit salinity to being positive. (The sea-ice model may ask for more + ! salt than is available and drive the salinity negative otherwise.) +MIN_SALINITY = 0.01 ! [PPT] default = 0.01 + ! The minimum value of salinity when BOUND_SALINITY=True. The default is 0.01 + ! for backward compatibility but ideally should be 0. C_P = 3992.0 ! [J kg-1 K-1] default = 3991.86795711963 - ! The heat capacity of sea water, approximated as a - ! constant. This is only used if ENABLE_THERMODYNAMICS is - ! true. The default value is from the TEOS-10 definition - ! of conservative temperature. + ! The heat capacity of sea water, approximated as a constant. This is only used + ! if ENABLE_THERMODYNAMICS is true. The default value is from the TEOS-10 + ! definition of conservative temperature. CHECK_BAD_SURFACE_VALS = True ! [Boolean] default = False ! If true, check the surface state for ridiculous values. BAD_VAL_SSH_MAX = 50.0 ! [m] default = 20.0 - ! The value of SSH above which a bad value message is - ! triggered, if CHECK_BAD_SURFACE_VALS is true. + ! The value of SSH above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. BAD_VAL_SSS_MAX = 75.0 ! [PPT] default = 45.0 - ! The value of SSS above which a bad value message is - ! triggered, if CHECK_BAD_SURFACE_VALS is true. -BAD_VAL_SST_MAX = 65.0 ! [deg C] default = 45.0, PTripp: changed from 55.0 on 12/28/2017 - ! The value of SST above which a bad value message is - ! triggered, if CHECK_BAD_SURFACE_VALS is true. + ! The value of SSS above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +BAD_VAL_SST_MAX = 55.0 ! [deg C] default = 45.0 + ! The value of SST above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. BAD_VAL_SST_MIN = -3.0 ! [deg C] default = -2.1 - ! The value of SST below which a bad value message is - ! triggered, if CHECK_BAD_SURFACE_VALS is true. + ! The value of SST below which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +DEFAULT_2018_ANSWERS = True ! [Boolean] default = True + ! This sets the default value for the various _2018_ANSWERS parameters. WRITE_GEOM = 2 ! default = 1 - ! If =0, never write the geometry and vertical grid files. - ! If =1, write the geometry and vertical grid files only for - ! a new simulation. If =2, always write the geometry and - ! vertical grid files. Other values are invalid. - -! === module MOM_domains === -TRIPOLAR_N = True ! [Boolean] default = False - ! Use tripolar connectivity at the northern edge of the - ! domain. With TRIPOLAR_N, NIGLOBAL must be even. -NIGLOBAL = NX_GLB ! - ! The total number of thickness grid points in the - ! x-direction in the physical domain. With STATIC_MEMORY_ - ! this is set in MOM_memory.h at compile time. -NJGLOBAL = NY_GLB ! - ! The total number of thickness grid points in the - ! y-direction in the physical domain. With STATIC_MEMORY_ - ! this is set in MOM_memory.h at compile time. + ! If =0, never write the geometry and vertical grid files. If =1, write the + ! geometry and vertical grid files only for a new simulation. If =2, always + ! write the geometry and vertical grid files. Other values are invalid. +SAVE_INITIAL_CONDS = True ! [Boolean] default = False + ! If true, write the initial conditions to a file given by IC_OUTPUT_FILE. ! === module MOM_hor_index === ! Sets the horizontal array index types. -! === module MOM_verticalGrid === -! Parameters providing information about the vertical grid. -NK = 75 ! [nondim] - ! The number of model layers. - ! === module MOM_fixed_initialization === INPUTDIR = "INPUT" ! default = "." ! The directory in which input files are found. ! === module MOM_grid_init === GRID_CONFIG = "mosaic" ! - ! A character string that determines the method for - ! defining the horizontal grid. Current options are: + ! A character string that determines the method for defining the horizontal + ! grid. Current options are: ! mosaic - read the grid from a mosaic (supergrid) ! file set by GRID_FILE. ! cartesian - use a (flat) Cartesian grid. @@ -135,8 +139,8 @@ TOPO_CONFIG = "file" ! ! DOME2D gravity current/overflow test case. ! Kelvin - flat but with rotated land mask. ! seamount - Gaussian bump for spontaneous motion test case. + ! dumbbell - Sloshing channel with reservoirs on both ends. ! shelfwave - exponential slope for shelfwave test case. - ! supercritical - flat but with 8.95 degree land mask. ! Phillips - ACC-like idealized topography used in the Phillips config. ! dense - Denmark Strait-like dense water formation and overflow. ! USER - call a user modified routine. @@ -147,23 +151,24 @@ TOPO_EDITS_FILE = "All_edits.nc" ! default = "" MAXIMUM_DEPTH = 6500.0 ! [m] ! The maximum depth of the ocean. MINIMUM_DEPTH = 9.5 ! [m] default = 0.0 - ! If MASKING_DEPTH is unspecified, then anything shallower than - ! MINIMUM_DEPTH is assumed to be land and all fluxes are masked out. - ! If MASKING_DEPTH is specified, then all depths shallower than - ! MINIMUM_DEPTH but deeper than MASKING_DEPTH are rounded to MINIMUM_DEPTH. + ! If MASKING_DEPTH is unspecified, then anything shallower than MINIMUM_DEPTH is + ! assumed to be land and all fluxes are masked out. If MASKING_DEPTH is + ! specified, then all depths shallower than MINIMUM_DEPTH but deeper than + ! MASKING_DEPTH are rounded to MINIMUM_DEPTH. GRID_ROTATION_ANGLE_BUGS = False ! [Boolean] default = True - ! If true, use an older algorithm to calculate the sine and + ! If true, use an older algorithm to calculate the sine and ! cosines needed rotate between grid-oriented directions and ! true north and east. Differences arise at the tripolar fold USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = True - ! If true, use older code that incorrectly sets the longitude + ! If true, use older code that incorrectly sets the longitude ! in some points along the tripolar fold to be off by 360 degrees ! === module MOM_open_boundary === -! Controls where open boundaries are located, what kind of boundary condition to impose, and what data to apply, if any. +! Controls where open boundaries are located, what kind of boundary condition to impose, and what data to apply, +! if any. MASKING_DEPTH = 0.0 ! [m] default = -9999.0 - ! The depth below which to mask points as land points, for which all - ! fluxes are zeroed out. MASKING_DEPTH is ignored if negative. + ! The depth below which to mask points as land points, for which all fluxes are + ! zeroed out. MASKING_DEPTH is ignored if negative. CHANNEL_CONFIG = "list" ! default = "none" ! A parameter that determines which set of channels are ! restricted to specific widths. Options are: @@ -178,18 +183,22 @@ CHANNEL_CONFIG = "list" ! default = "none" CHANNEL_LIST_FILE = "MOM_channels_global_025" ! default = "MOM_channel_list" ! The file from which the list of narrowed channels is read. +! === module MOM_verticalGrid === +! Parameters providing information about the vertical grid. +NK = 75 ! [nondim] + ! The number of model layers. + ! === module MOM_tracer_registry === ! === module MOM_EOS === DTFREEZE_DP = -7.75E-08 ! [deg C Pa-1] default = 0.0 - ! When TFREEZE_FORM=LINEAR, - ! this is the derivative of the freezing potential + ! When TFREEZE_FORM=LINEAR, this is the derivative of the freezing potential ! temperature with pressure. ! === module MOM_restart === PARALLEL_RESTARTFILES = True ! [Boolean] default = False - ! If true, each processor writes its own restart file, - ! otherwise a single restart file is generated + ! If true, each processor writes its own restart file, otherwise a single + ! restart file is generated ! === module MOM_tracer_flow_control === USE_IDEAL_AGE_TRACER = False ! [Boolean] default = False @@ -218,26 +227,26 @@ COORD_CONFIG = "file" ! ! USER - call a user modified routine. COORD_FILE = "layer_coord.nc" ! ! The file from which the coordinate densities are read. +REMAP_UV_USING_OLD_ALG = True ! [Boolean] default = True + ! If true, uses the old remapping-via-a-delta-z method for remapping u and v. If + ! false, uses the new method that remaps between grids described by an old and + ! new thickness. REGRIDDING_COORDINATE_MODE = "HYCOM1" ! default = "LAYER" - ! Coordinate mode for vertical regridding. - ! Choose among the following possibilities: - ! LAYER - Isopycnal or stacked shallow water layers - ! ZSTAR, Z* - stetched geopotential z* - ! SIGMA_SHELF_ZSTAR - stetched geopotential z* ignoring shelf + ! Coordinate mode for vertical regridding. Choose among the following + ! possibilities: LAYER - Isopycnal or stacked shallow water layers + ! ZSTAR, Z* - stretched geopotential z* + ! SIGMA_SHELF_ZSTAR - stretched geopotential z* ignoring shelf ! SIGMA - terrain following coordinates ! RHO - continuous isopycnal ! HYCOM1 - HyCOM-like hybrid coordinate ! SLIGHT - stretched coordinates above continuous isopycnal ! ADAPTIVE - optimize for smooth neutral density surfaces BOUNDARY_EXTRAPOLATION = True ! [Boolean] default = False - ! When defined, a proper high-order reconstruction - ! scheme is used within boundary cells rather - ! than PCM. E.g., if PPM is used for remapping, a - ! PPM reconstruction will also be used within - ! boundary cells. + ! When defined, a proper high-order reconstruction scheme is used within + ! boundary cells rather than PCM. E.g., if PPM is used for remapping, a PPM + ! reconstruction will also be used within boundary cells. ALE_COORDINATE_CONFIG = "HYBRID:hycom1_75_800m.nc,sigma2,FNC1:2,4000,4.5,.01" ! default = "UNIFORM" - ! Determines how to specify the coordinate - ! resolution. Valid options are: + ! Determines how to specify the coordinate resolution. Valid options are: ! PARAM - use the vector-parameter ALE_RESOLUTION ! UNIFORM[:N] - uniformly distributed ! FILE:string - read from a file. The string specifies @@ -257,11 +266,10 @@ ALE_COORDINATE_CONFIG = "HYBRID:hycom1_75_800m.nc,sigma2,FNC1:2,4000,4.5,.01" ! ! thicknesses (in m). In sigma-coordinate mode, the list ! is of non-dimensional fractions of the water column. !TARGET_DENSITIES = 1010.0, 1014.3034, 1017.8088, 1020.843, 1023.5566, 1025.813, 1027.0275, 1027.9114, 1028.6422, 1029.2795, 1029.852, 1030.3762, 1030.8626, 1031.3183, 1031.7486, 1032.1572, 1032.5471, 1032.9207, 1033.2798, 1033.6261, 1033.9608, 1034.2519, 1034.4817, 1034.6774, 1034.8508, 1035.0082, 1035.1533, 1035.2886, 1035.4159, 1035.5364, 1035.6511, 1035.7608, 1035.8661, 1035.9675, 1036.0645, 1036.1554, 1036.2411, 1036.3223, 1036.3998, 1036.4739, 1036.5451, 1036.6137, 1036.68, 1036.7441, 1036.8062, 1036.8526, 1036.8874, 1036.9164, 1036.9418, 1036.9647, 1036.9857, 1037.0052, 1037.0236, 1037.0409, 1037.0574, 1037.0738, 1037.0902, 1037.1066, 1037.123, 1037.1394, 1037.1558, 1037.1722, 1037.1887, 1037.206, 1037.2241, 1037.2435, 1037.2642, 1037.2866, 1037.3112, 1037.3389, 1037.3713, 1037.4118, 1037.475, 1037.6332, 1037.8104, 1038.0 ! [m] - ! HYBRID target densities for itnerfaces -REGRID_COMPRESSIBILITY_FRACTION = 0.01 ! [not defined] default = 0.0 - ! When interpolating potential density profiles we can add - ! some artificial compressibility solely to make homogenous - ! regions appear stratified. + ! HYBRID target densities for interfaces +REGRID_COMPRESSIBILITY_FRACTION = 0.01 ! [nondim] default = 0.0 + ! When interpolating potential density profiles we can add some artificial + ! compressibility solely to make homogeneous regions appear stratified. MAXIMUM_INT_DEPTH_CONFIG = "FNC1:5,8000.0,1.0,.01" ! default = "NONE" ! Determines how to specify the maximum interface depths. ! Valid options are: @@ -285,10 +293,9 @@ MAX_LAYER_THICKNESS_CONFIG = "FNC1:400,31000.0,0.1,.01" ! default = "NONE" !MAX_LAYER_THICKNESS = 400.0, 409.63, 410.32, 410.75, 411.07, 411.32, 411.52, 411.7, 411.86, 412.0, 412.13, 412.24, 412.35, 412.45, 412.54, 412.63, 412.71, 412.79, 412.86, 412.93, 413.0, 413.06, 413.12, 413.18, 413.24, 413.29, 413.34, 413.39, 413.44, 413.49, 413.54, 413.58, 413.62, 413.67, 413.71, 413.75, 413.78, 413.82, 413.86, 413.9, 413.93, 413.97, 414.0, 414.03, 414.06, 414.1, 414.13, 414.16, 414.19, 414.22, 414.24, 414.27, 414.3, 414.33, 414.35, 414.38, 414.41, 414.43, 414.46, 414.48, 414.51, 414.53, 414.55, 414.58, 414.6, 414.62, 414.65, 414.67, 414.69, 414.71, 414.73, 414.75, 414.77, 414.79, 414.83 ! [m] ! The list of maximum thickness for each layer. REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" - ! This sets the reconstruction scheme used - ! for vertical remapping for all variables. - ! It can be one of the following schemes: - ! PCM (1st-order accurate) + ! This sets the reconstruction scheme used for vertical remapping for all + ! variables. It can be one of the following schemes: PCM (1st-order + ! accurate) ! PLM (2nd-order accurate) ! PPM_H4 (3rd-order accurate) ! PPM_IH4 (3rd-order accurate) @@ -300,18 +307,16 @@ REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" ! === module MOM_state_initialization === INIT_LAYERS_FROM_Z_FILE = True ! [Boolean] default = False - ! If true, intialize the layer thicknesses, temperatures, - ! and salnities from a Z-space file on a latitude- - ! longitude grid. + ! If true, initialize the layer thicknesses, temperatures, and salinities from a + ! Z-space file on a latitude-longitude grid. ! === module MOM_initialize_layers_from_Z === -!TEMP_SALT_Z_INIT_FILE = "WOA05_pottemp_salt.nc" ! default = "temp_salt_z.nc" -TEMP_SALT_Z_INIT_FILE = "MOM6_IC_TS.nc" +TEMP_SALT_Z_INIT_FILE = "MOM6_IC_TS.nc" ! default = "temp_salt_z.nc" ! The name of the z-space input file used to initialize ! temperatures (T) and salinities (S). If T and S are not ! in the same file, TEMP_Z_INIT_FILE and SALT_Z_INIT_FILE ! must be set. -Z_INIT_FILE_PTEMP_VAR = "temp" ! default = "ptemp" +Z_INIT_FILE_PTEMP_VAR = "temp" ! default = "ptemp" ! The name of the potential temperature variable in ! TEMP_Z_INIT_FILE. Z_INIT_FILE_SALT_VAR = "salt" ! default = "salt" @@ -319,6 +324,9 @@ Z_INIT_FILE_SALT_VAR = "salt" ! default = "salt" ! SALT_Z_INIT_FILE. Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False ! If True, then remap straight to model coordinate from file. +Z_INIT_REMAP_OLD_ALG = True ! [Boolean] default = True + ! If false, uses the preferred remapping algorithm for initialization. If true, + ! use an older, less robust algorithm for remapping. ! === module MOM_diag_mediator === !Jiande NUM_DIAG_COORDS = 2 ! default = 1 @@ -332,9 +340,8 @@ DIAG_COORDS = "z Z ZSTAR" ! is of the form "MODULE_SUFFIX,PARAMETER_SUFFIX,COORDINATE_NAME". DIAG_COORD_DEF_Z="FILE:interpolate_zgrid_40L.nc,interfaces=zw" DIAG_MISVAL = -1e34 -!Jiande DIAG_COORD_DEF_RHO2 = "RFNC1:35,999.5,1028,1028.5,8.,1038.,0.0078125" ! default = "WOA09" - ! Determines how to specify the coordinate - ! resolution. Valid options are: +!DIAG_COORD_DEF_RHO2 = "FILE:diag_rho2.nc,interfaces=rho2" ! default = "WOA09" + ! Determines how to specify the coordinate resolution. Valid options are: ! PARAM - use the vector-parameter DIAG_COORD_RES_RHO2 ! UNIFORM[:N] - uniformly distributed ! FILE:string - read from a file. The string specifies @@ -350,115 +357,112 @@ DIAG_MISVAL = -1e34 ! === module MOM_MEKE === USE_MEKE = True ! [Boolean] default = False - ! If true, turns on the MEKE scheme which calculates - ! a sub-grid mesoscale eddy kinetic energy budget. + ! If true, turns on the MEKE scheme which calculates a sub-grid mesoscale eddy + ! kinetic energy budget. MEKE_GMCOEFF = 1.0 ! [nondim] default = -1.0 - ! The efficiency of the conversion of potential energy - ! into MEKE by the thickness mixing parameterization. - ! If MEKE_GMCOEFF is negative, this conversion is not - ! used or calculated. + ! The efficiency of the conversion of potential energy into MEKE by the + ! thickness mixing parameterization. If MEKE_GMCOEFF is negative, this + ! conversion is not used or calculated. MEKE_BGSRC = 1.0E-13 ! [W kg-1] default = 0.0 ! A background energy source for MEKE. MEKE_KHMEKE_FAC = 1.0 ! [nondim] default = 0.0 ! A factor that maps MEKE%Kh to Kh for MEKE itself. MEKE_ALPHA_RHINES = 0.15 ! [nondim] default = 0.05 - ! If positive, is a coefficient weighting the Rhines scale - ! in the expression for mixing length used in MEKE-derived diffusiviity. + ! If positive, is a coefficient weighting the Rhines scale in the expression for + ! mixing length used in MEKE-derived diffusivity. MEKE_ALPHA_EADY = 0.15 ! [nondim] default = 0.05 - ! If positive, is a coefficient weighting the Eady length scale - ! in the expression for mixing length used in MEKE-derived diffusiviity. + ! If positive, is a coefficient weighting the Eady length scale in the + ! expression for mixing length used in MEKE-derived diffusivity. ! === module MOM_lateral_mixing_coeffs === USE_VARIABLE_MIXING = True ! [Boolean] default = False - ! If true, the variable mixing code will be called. This - ! allows diagnostics to be created even if the scheme is - ! not used. If KHTR_SLOPE_CFF>0 or KhTh_Slope_Cff>0, - ! this is set to true regardless of what is in the - ! parameter file. + ! If true, the variable mixing code will be called. This allows diagnostics to + ! be created even if the scheme is not used. If KHTR_SLOPE_CFF>0 or + ! KhTh_Slope_Cff>0, this is set to true regardless of what is in the parameter + ! file. RESOLN_SCALED_KH = True ! [Boolean] default = False - ! If true, the Laplacian lateral viscosity is scaled away - ! when the first baroclinic deformation radius is well - ! resolved. + ! If true, the Laplacian lateral viscosity is scaled away when the first + ! baroclinic deformation radius is well resolved. RESOLN_SCALED_KHTH = True ! [Boolean] default = False - ! If true, the interface depth diffusivity is scaled away - ! when the first baroclinic deformation radius is well - ! resolved. + ! If true, the interface depth diffusivity is scaled away when the first + ! baroclinic deformation radius is well resolved. KHTR_SLOPE_CFF = 0.25 ! [nondim] default = 0.0 - ! The nondimensional coefficient in the Visbeck formula - ! for the epipycnal tracer diffusivity + ! The nondimensional coefficient in the Visbeck formula for the epipycnal tracer + ! diffusivity USE_STORED_SLOPES = True ! [Boolean] default = False - ! If true, the isopycnal slopes are calculated once and - ! stored for re-use. This uses more memory but avoids calling - ! the equation of state more times than should be necessary. + ! If true, the isopycnal slopes are calculated once and stored for re-use. This + ! uses more memory but avoids calling the equation of state more times than + ! should be necessary. INTERPOLATE_RES_FN = False ! [Boolean] default = True - ! If true, interpolate the resolution function to the - ! velocity points from the thickness points; otherwise - ! interpolate the wave speed and calculate the resolution - ! function independently at each point. + ! If true, interpolate the resolution function to the velocity points from the + ! thickness points; otherwise interpolate the wave speed and calculate the + ! resolution function independently at each point. GILL_EQUATORIAL_LD = True ! [Boolean] default = False - ! If true, uses Gill's definition of the baroclinic - ! equatorial deformation radius, otherwise, if false, use - ! Pedlosky's definition. These definitions differ by a factor - ! of 2 infront of the beta term in the denominator. Gill'sis the more appropriate definition. + ! If true, uses Gill's definition of the baroclinic equatorial deformation + ! radius, otherwise, if false, use Pedlosky's definition. These definitions + ! differ by a factor of 2 in front of the beta term in the denominator. Gill's + ! is the more appropriate definition. ! === module MOM_set_visc === CHANNEL_DRAG = True ! [Boolean] default = False - ! If true, the bottom drag is exerted directly on each - ! layer proportional to the fraction of the bottom it - ! overlies. + ! If true, the bottom drag is exerted directly on each layer proportional to the + ! fraction of the bottom it overlies. PRANDTL_TURB = 1.25 ! [nondim] default = 1.0 - ! The turbulent Prandtl number applied to shear - ! instability. + ! The turbulent Prandtl number applied to shear instability. HBBL = 10.0 ! [m] - ! The thickness of a bottom boundary layer with a - ! viscosity of KVBBL if BOTTOMDRAGLAW is not defined, or - ! the thickness over which near-bottom velocities are - ! averaged for the drag law if BOTTOMDRAGLAW is defined - ! but LINEAR_DRAG is not. + ! The thickness of a bottom boundary layer with a viscosity of KVBBL if + ! BOTTOMDRAGLAW is not defined, or the thickness over which near-bottom + ! velocities are averaged for the drag law if BOTTOMDRAGLAW is defined but + ! LINEAR_DRAG is not. DRAG_BG_VEL = 0.1 ! [m s-1] default = 0.0 - ! DRAG_BG_VEL is either the assumed bottom velocity (with - ! LINEAR_DRAG) or an unresolved velocity that is - ! combined with the resolved velocity to estimate the - ! velocity magnitude. DRAG_BG_VEL is only used when - ! BOTTOMDRAGLAW is defined. + ! DRAG_BG_VEL is either the assumed bottom velocity (with LINEAR_DRAG) or an + ! unresolved velocity that is combined with the resolved velocity to estimate + ! the velocity magnitude. DRAG_BG_VEL is only used when BOTTOMDRAGLAW is + ! defined. BBL_USE_EOS = True ! [Boolean] default = False - ! If true, use the equation of state in determining the - ! properties of the bottom boundary layer. Otherwise use - ! the layer target potential densities. + ! If true, use the equation of state in determining the properties of the bottom + ! boundary layer. Otherwise use the layer target potential densities. BBL_THICK_MIN = 0.1 ! [m] default = 0.0 - ! The minimum bottom boundary layer thickness that can be - ! used with BOTTOMDRAGLAW. This might be - ! Kv / (cdrag * drag_bg_vel) to give Kv as the minimum + ! The minimum bottom boundary layer thickness that can be used with + ! BOTTOMDRAGLAW. This might be Kv/(cdrag*drag_bg_vel) to give Kv as the minimum ! near-bottom viscosity. KV = 1.0E-04 ! [m2 s-1] - ! The background kinematic viscosity in the interior. - ! The molecular value, ~1e-6 m2 s-1, may be used. + ! The background kinematic viscosity in the interior. The molecular value, ~1e-6 + ! m2 s-1, may be used. KV_BBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 ! The minimum viscosities in the bottom boundary layer. KV_TBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 ! The minimum viscosities in the top boundary layer. +! === module MOM_thickness_diffuse === +KHTH_MAX_CFL = 0.1 ! [nondimensional] default = 0.8 + ! The maximum value of the local diffusive CFL ratio that is permitted for the + ! thickness diffusivity. 1.0 is the marginally unstable value in a pure layered + ! model, but much smaller numbers (e.g. 0.1) seem to work better for ALE-based + ! models. +USE_GM_WORK_BUG = True ! [Boolean] default = True + ! If true, compute the top-layer work tendency on the u-grid with the incorrect + ! sign, for legacy reproducibility. + ! === module MOM_continuity === ! === module MOM_continuity_PPM === ETA_TOLERANCE = 1.0E-06 ! [m] default = 3.75E-09 - ! The tolerance for the differences between the - ! barotropic and baroclinic estimates of the sea surface - ! height due to the fluxes through each face. The total - ! tolerance for SSH is 4 times this value. The default - ! is 0.5*NK*ANGSTROM, and this should not be set less x - ! than about 10^-15*MAXIMUM_DEPTH. + ! The tolerance for the differences between the barotropic and baroclinic + ! estimates of the sea surface height due to the fluxes through each face. The + ! total tolerance for SSH is 4 times this value. The default is + ! 0.5*NK*ANGSTROM, and this should not be set less than about + ! 10^-15*MAXIMUM_DEPTH. ETA_TOLERANCE_AUX = 0.001 ! [m] default = 1.0E-06 - ! The tolerance for free-surface height discrepancies - ! between the barotropic solution and the sum of the - ! layer thicknesses when calculating the auxiliary - ! corrected velocities. By default, this is the same as - ! ETA_TOLERANCE, but can be made larger for efficiency. + ! The tolerance for free-surface height discrepancies between the barotropic + ! solution and the sum of the layer thicknesses when calculating the auxiliary + ! corrected velocities. By default, this is the same as ETA_TOLERANCE, but can + ! be made larger for efficiency. ! === module MOM_CoriolisAdv === CORIOLIS_SCHEME = "SADOURNY75_ENSTRO" ! default = "SADOURNY75_ENERGY" - ! CORIOLIS_SCHEME selects the discretization for the - ! Coriolis terms. Valid values are: + ! CORIOLIS_SCHEME selects the discretization for the Coriolis terms. Valid + ! values are: ! SADOURNY75_ENERGY - Sadourny, 1975; energy cons. ! ARAKAWA_HSU90 - Arakawa & Hsu, 1990 ! SADOURNY75_ENSTRO - Sadourny, 1975; enstrophy cons. @@ -466,316 +470,277 @@ CORIOLIS_SCHEME = "SADOURNY75_ENSTRO" ! default = "SADOURNY75_ENERGY" ! ARAKAWA_LAMB_BLEND - A blend of Arakawa & Lamb with ! Arakawa & Hsu and Sadourny energy BOUND_CORIOLIS = True ! [Boolean] default = False - ! If true, the Coriolis terms at u-points are bounded by - ! the four estimates of (f+rv)v from the four neighboring - ! v-points, and similarly at v-points. This option would - ! have no effect on the SADOURNY Coriolis scheme if it - ! were possible to use centered difference thickness fluxes. + ! If true, the Coriolis terms at u-points are bounded by the four estimates of + ! (f+rv)v from the four neighboring v-points, and similarly at v-points. This + ! option would have no effect on the SADOURNY Coriolis scheme if it were + ! possible to use centered difference thickness fluxes. ! === module MOM_PressureForce === ! === module MOM_PressureForce_AFV === MASS_WEIGHT_IN_PRESSURE_GRADIENT = True ! [Boolean] default = False - ! If true, use mass weighting when interpolation T/S for - ! top/bottom integrals in AFV pressure gradient calculation. + ! If true, use mass weighting when interpolating T/S for integrals near the + ! bathymetry in AFV pressure gradient calculations. ! === module MOM_hor_visc === LAPLACIAN = True ! [Boolean] default = False ! If true, use a Laplacian horizontal viscosity. AH_VEL_SCALE = 0.01 ! [m s-1] default = 0.0 - ! The velocity scale which is multiplied by the cube of - ! the grid spacing to calculate the biharmonic viscosity. - ! The final viscosity is the largest of this scaled - ! viscosity, the Smagorinsky and Leith viscosities, and AH. + ! The velocity scale which is multiplied by the cube of the grid spacing to + ! calculate the biharmonic viscosity. The final viscosity is the largest of this + ! scaled viscosity, the Smagorinsky and Leith viscosities, and AH. SMAGORINSKY_AH = True ! [Boolean] default = False - ! If true, use a biharmonic Smagorinsky nonlinear eddy - ! viscosity. + ! If true, use a biharmonic Smagorinsky nonlinear eddy viscosity. SMAG_BI_CONST = 0.06 ! [nondim] default = 0.0 - ! The nondimensional biharmonic Smagorinsky constant, - ! typically 0.015 - 0.06. + ! The nondimensional biharmonic Smagorinsky constant, typically 0.015 - 0.06. +USE_LAND_MASK_FOR_HVISC = False ! [Boolean] default = False + ! If true, use Use the land mask for the computation of thicknesses at velocity + ! locations. This eliminates the dependence on arbitrary values over land or + ! outside of the domain. Default is False in order to maintain answers with + ! legacy experiments but should be changed to True for new experiments. ! === module MOM_vert_friction === -U_TRUNC_FILE = "U_velocity_truncations" ! default = "" - ! The absolute path to a file into which the accelerations - ! leading to zonal velocity truncations are written. - ! Undefine this for efficiency if this diagnostic is not - ! needed. -V_TRUNC_FILE = "V_velocity_truncations" ! default = "" - ! The absolute path to a file into which the accelerations - ! leading to meridional velocity truncations are written. - ! Undefine this for efficiency if this diagnostic is not - ! needed. HMIX_FIXED = 0.5 ! [m] - ! The prescribed depth over which the near-surface - ! viscosity and diffusivity are elevated when the bulk - ! mixed layer is not used. + ! The prescribed depth over which the near-surface viscosity and diffusivity are + ! elevated when the bulk mixed layer is not used. MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 - ! The maximum velocity allowed before the velocity - ! components are truncated. + ! The maximum velocity allowed before the velocity components are truncated. ! === module MOM_PointAccel === +U_TRUNC_FILE = "U_velocity_truncations" ! default = "" + ! The absolute path to a file into which the accelerations leading to zonal + ! velocity truncations are written. Undefine this for efficiency if this + ! diagnostic is not needed. +V_TRUNC_FILE = "V_velocity_truncations" ! default = "" + ! The absolute path to a file into which the accelerations leading to meridional + ! velocity truncations are written. Undefine this for efficiency if this + ! diagnostic is not needed. ! === module MOM_barotropic === BOUND_BT_CORRECTION = True ! [Boolean] default = False - ! If true, the corrective pseudo mass-fluxes into the - ! barotropic solver are limited to values that require - ! less than maxCFL_BT_cont to be accommodated. + ! If true, the corrective pseudo mass-fluxes into the barotropic solver are + ! limited to values that require less than maxCFL_BT_cont to be accommodated. BT_PROJECT_VELOCITY = True ! [Boolean] default = False - ! If true, step the barotropic velocity first and project - ! out the velocity tendancy by 1+BEBT when calculating the - ! transport. The default (false) is to use a predictor - ! continuity step to find the pressure field, and then - ! to do a corrector continuity step using a weighted - ! average of the old and new velocities, with weights - ! of (1-BEBT) and BEBT. + ! If true, step the barotropic velocity first and project out the velocity + ! tendency by 1+BEBT when calculating the transport. The default (false) is to + ! use a predictor continuity step to find the pressure field, and then to do a + ! corrector continuity step using a weighted average of the old and new + ! velocities, with weights of (1-BEBT) and BEBT. DYNAMIC_SURFACE_PRESSURE = True ! [Boolean] default = False - ! If true, add a dynamic pressure due to a viscous ice - ! shelf, for instance. + ! If true, add a dynamic pressure due to a viscous ice shelf, for instance. BEBT = 0.2 ! [nondim] default = 0.1 - ! BEBT determines whether the barotropic time stepping - ! uses the forward-backward time-stepping scheme or a - ! backward Euler scheme. BEBT is valid in the range from - ! 0 (for a forward-backward treatment of nonrotating - ! gravity waves) to 1 (for a backward Euler treatment). - ! In practice, BEBT must be greater than about 0.05. + ! BEBT determines whether the barotropic time stepping uses the forward-backward + ! time-stepping scheme or a backward Euler scheme. BEBT is valid in the range + ! from 0 (for a forward-backward treatment of nonrotating gravity waves) to 1 + ! (for a backward Euler treatment). In practice, BEBT must be greater than about + ! 0.05. DTBT = -0.9 ! [s or nondim] default = -0.98 - ! The barotropic time step, in s. DTBT is only used with - ! the split explicit time stepping. To set the time step - ! automatically based the maximum stable value use 0, or - ! a negative value gives the fraction of the stable value. - ! Setting DTBT to 0 is the same as setting it to -0.98. - ! The value of DTBT that will actually be used is an - ! integer fraction of DT, rounding down. + ! The barotropic time step, in s. DTBT is only used with the split explicit time + ! stepping. To set the time step automatically based the maximum stable value + ! use 0, or a negative value gives the fraction of the stable value. Setting + ! DTBT to 0 is the same as setting it to -0.98. The value of DTBT that will + ! actually be used is an integer fraction of DT, rounding down. BT_USE_OLD_CORIOLIS_BRACKET_BUG = True ! [Boolean] default = False - ! If True, use an order of operations that is not bitwise - ! rotationally symmetric in the meridional Coriolis term of - ! the barotropic solver. - -! === module MOM_thickness_diffuse === -KHTH_MAX_CFL = 0.1 ! [nondimensional] default = 0.8 - ! The maximum value of the local diffusive CFL ratio that - ! is permitted for the thickness diffusivity. 1.0 is the - ! marginally unstable value in a pure layered model, but - ! much smaller numbers (e.g. 0.1) seem to work better for - ! ALE-based models. + ! If True, use an order of operations that is not bitwise rotationally symmetric + ! in the meridional Coriolis term of the barotropic solver. ! === module MOM_mixed_layer_restrat === MIXEDLAYER_RESTRAT = True ! [Boolean] default = False - ! If true, a density-gradient dependent re-stratifying - ! flow is imposed in the mixed layer. Can be used in ALE mode - ! without restriction but in layer mode can only be used if - ! BULKMIXEDLAYER is true. + ! If true, a density-gradient dependent re-stratifying flow is imposed in the + ! mixed layer. Can be used in ALE mode without restriction but in layer mode can + ! only be used if BULKMIXEDLAYER is true. FOX_KEMPER_ML_RESTRAT_COEF = 1.0 ! [nondim] default = 0.0 - ! A nondimensional coefficient that is proportional to - ! the ratio of the deformation radius to the dominant - ! lengthscale of the submesoscale mixed layer - ! instabilities, times the minimum of the ratio of the - ! mesoscale eddy kinetic energy to the large-scale - ! geostrophic kinetic energy or 1 plus the square of the - ! grid spacing over the deformation radius, as detailed - ! by Fox-Kemper et al. (2010) + ! A nondimensional coefficient that is proportional to the ratio of the + ! deformation radius to the dominant lengthscale of the submesoscale mixed layer + ! instabilities, times the minimum of the ratio of the mesoscale eddy kinetic + ! energy to the large-scale geostrophic kinetic energy or 1 plus the square of + ! the grid spacing over the deformation radius, as detailed by Fox-Kemper et al. + ! (2010) MLE_FRONT_LENGTH = 500.0 ! [m] default = 0.0 - ! If non-zero, is the frontal-length scale used to calculate the - ! upscaling of buoyancy gradients that is otherwise represented - ! by the parameter FOX_KEMPER_ML_RESTRAT_COEF. If MLE_FRONT_LENGTH is - ! non-zero, it is recommended to set FOX_KEMPER_ML_RESTRAT_COEF=1.0. + ! If non-zero, is the frontal-length scale used to calculate the upscaling of + ! buoyancy gradients that is otherwise represented by the parameter + ! FOX_KEMPER_ML_RESTRAT_COEF. If MLE_FRONT_LENGTH is non-zero, it is recommended + ! to set FOX_KEMPER_ML_RESTRAT_COEF=1.0. MLE_USE_PBL_MLD = True ! [Boolean] default = False - ! If true, the MLE parameterization will use the mixed-layer - ! depth provided by the active PBL parameterization. If false, - ! MLE will estimate a MLD based on a density difference with the - ! surface using the parameter MLE_DENSITY_DIFF. + ! If true, the MLE parameterization will use the mixed-layer depth provided by + ! the active PBL parameterization. If false, MLE will estimate a MLD based on a + ! density difference with the surface using the parameter MLE_DENSITY_DIFF. MLE_MLD_DECAY_TIME = 2.592E+06 ! [s] default = 0.0 - ! The time-scale for a running-mean filter applied to the mixed-layer - ! depth used in the MLE restratification parameterization. When - ! the MLD deepens below the current running-mean the running-mean - ! is instantaneously set to the current MLD. - -! === module MOM_diag_to_Z === -!Z_OUTPUT_GRID_FILE = "analysis_vgrid_lev35.v1.nc" ! default = "" -!Z_OUTPUT_GRID_FILE = "interpolate_zgrid_40L.nc" - ! The file that specifies the vertical grid for - ! depth-space diagnostics, or blank to disable - ! depth-space output. -!NK_ZSPACE (from file) = 35 ! [nondim] - ! The number of depth-space levels. This is determined - ! from the size of the variable zw in the output grid file. + ! The time-scale for a running-mean filter applied to the mixed-layer depth used + ! in the MLE restratification parameterization. When the MLD deepens below the + ! current running-mean the running-mean is instantaneously set to the current + ! MLD. ! === module MOM_diabatic_driver === ! The following parameters are used for diabatic processes. ENERGETICS_SFC_PBL = True ! [Boolean] default = False - ! If true, use an implied energetics planetary boundary - ! layer scheme to determine the diffusivity and viscosity - ! in the surface boundary layer. + ! If true, use an implied energetics planetary boundary layer scheme to + ! determine the diffusivity and viscosity in the surface boundary layer. EPBL_IS_ADDITIVE = False ! [Boolean] default = True - ! If true, the diffusivity from ePBL is added to all - ! other diffusivities. Otherwise, the larger of kappa- - ! shear and ePBL diffusivities are used. + ! If true, the diffusivity from ePBL is added to all other diffusivities. + ! Otherwise, the larger of kappa-shear and ePBL diffusivities are used. -! === module MOM_KPP === -! This is the MOM wrapper to CVmix:KPP -! See http://code.google.com/p/cvmix/ +! === module MOM_CVMix_KPP === +! This is the MOM wrapper to CVMix:KPP +! See http://cvmix.github.io/ -! === module MOM_diffConvection === -! This module implements enhanced diffusivity as a -! function of static stability, N^2. -CONVECTION% -%CONVECTION +! === module MOM_tidal_mixing === +! Vertical Tidal Mixing Parameterization +INT_TIDE_DISSIPATION = True ! [Boolean] default = False + ! If true, use an internal tidal dissipation scheme to drive diapycnal mixing, + ! along the lines of St. Laurent et al. (2002) and Simmons et al. (2004). +INT_TIDE_PROFILE = "POLZIN_09" ! default = "STLAURENT_02" + ! INT_TIDE_PROFILE selects the vertical profile of energy dissipation with + ! INT_TIDE_DISSIPATION. Valid values are: + ! STLAURENT_02 - Use the St. Laurent et al exponential + ! decay profile. + ! POLZIN_09 - Use the Polzin WKB-stretched algebraic + ! decay profile. +INT_TIDE_DECAY_SCALE = 300.3003003003003 ! [m] default = 500.0 + ! The decay scale away from the bottom for tidal TKE with the new coding when + ! INT_TIDE_DISSIPATION is used. +KAPPA_ITIDES = 6.28319E-04 ! [m-1] default = 6.283185307179586E-04 + ! A topographic wavenumber used with INT_TIDE_DISSIPATION. The default is 2pi/10 + ! km, as in St.Laurent et al. 2002. +KAPPA_H2_FACTOR = 0.84 ! [nondim] default = 1.0 + ! A scaling factor for the roughness amplitude with INT_TIDE_DISSIPATION. +TKE_ITIDE_MAX = 0.1 ! [W m-2] default = 1000.0 + ! The maximum internal tide energy source available to mix above the bottom + ! boundary layer with INT_TIDE_DISSIPATION. +READ_TIDEAMP = True ! [Boolean] default = False + ! If true, read a file (given by TIDEAMP_FILE) containing the tidal amplitude + ! with INT_TIDE_DISSIPATION. +TIDEAMP_FILE = "tidal_amplitude.v20140616.nc" ! default = "tideamp.nc" + ! The path to the file containing the spatially varying tidal amplitudes with + ! INT_TIDE_DISSIPATION. +H2_FILE = "ocean_topog.nc" ! + ! The path to the file containing the sub-grid-scale topographic roughness + ! amplitude with INT_TIDE_DISSIPATION. -! === module MOM_entrain_diffusive === +! === module MOM_CVMix_conv === +! Parameterization of enhanced mixing due to convection via CVMix ! === module MOM_geothermal === GEOTHERMAL_SCALE = 1.0 ! [W m-2 or various] default = 0.0 - ! The constant geothermal heat flux, a rescaling - ! factor for the heat flux read from GEOTHERMAL_FILE, or - ! 0 to disable the geothermal heating. + ! The constant geothermal heat flux, a rescaling factor for the heat flux read + ! from GEOTHERMAL_FILE, or 0 to disable the geothermal heating. GEOTHERMAL_FILE = "geothermal_davies2013_v1.nc" ! default = "" - ! The file from which the geothermal heating is to be - ! read, or blank to use a constant heating rate. + ! The file from which the geothermal heating is to be read, or blank to use a + ! constant heating rate. GEOTHERMAL_VARNAME = "geothermal_hf" ! default = "geo_heat" - ! The name of the geothermal heating variable in - ! GEOTHERMAL_FILE. + ! The name of the geothermal heating variable in GEOTHERMAL_FILE. ! === module MOM_set_diffusivity === BBL_MIXING_AS_MAX = False ! [Boolean] default = True - ! If true, take the maximum of the diffusivity from the - ! BBL mixing and the other diffusivities. Otherwise, - ! diffusiviy from the BBL_mixing is simply added. + ! If true, take the maximum of the diffusivity from the BBL mixing and the other + ! diffusivities. Otherwise, diffusivity from the BBL_mixing is simply added. USE_LOTW_BBL_DIFFUSIVITY = True ! [Boolean] default = False - ! If true, uses a simple, imprecise but non-coordinate dependent, model - ! of BBL mixing diffusivity based on Law of the Wall. Otherwise, uses - ! the original BBL scheme. + ! If true, uses a simple, imprecise but non-coordinate dependent, model of BBL + ! mixing diffusivity based on Law of the Wall. Otherwise, uses the original BBL + ! scheme. SIMPLE_TKE_TO_KD = True ! [Boolean] default = False - ! If true, uses a simple estimate of Kd/TKE that will - ! work for arbitrary vertical coordinates. If false, - ! calculates Kd/TKE and bounds based on exact energetics/nfor an isopycnal layer-formulation. -HENYEY_IGW_BACKGROUND = True ! [Boolean] default = False - ! If true, use a latitude-dependent scaling for the near - ! surface background diffusivity, as described in - ! Harrison & Hallberg, JPO 2008. -N2_FLOOR_IOMEGA2 = 0.0 ! [nondim] default = 1.0 - ! The floor applied to N2(k) scaled by Omega^2: - ! If =0., N2(k) is simply positive definite. - ! If =1., N2(k) > Omega^2 everywhere. + ! If true, uses a simple estimate of Kd/TKE that will work for arbitrary + ! vertical coordinates. If false, calculates Kd/TKE and bounds based on exact + ! energetics for an isopycnal layer-formulation. + +! === module MOM_bkgnd_mixing === +! Adding static vertical background mixing coefficients KD = 1.5E-05 ! [m2 s-1] - ! The background diapycnal diffusivity of density in the - ! interior. Zero or the molecular value, ~1e-7 m2 s-1, - ! may be used. + ! The background diapycnal diffusivity of density in the interior. Zero or the + ! molecular value, ~1e-7 m2 s-1, may be used. KD_MIN = 2.0E-06 ! [m2 s-1] default = 1.5E-07 ! The minimum diapycnal diffusivity. +HENYEY_IGW_BACKGROUND = True ! [Boolean] default = False + ! If true, use a latitude-dependent scaling for the near surface background + ! diffusivity, as described in Harrison & Hallberg, JPO 2008. KD_MAX = 0.1 ! [m2 s-1] default = -1.0 - ! The maximum permitted increment for the diapycnal - ! diffusivity from TKE-based parameterizations, or a - ! negative value for no limit. -INT_TIDE_DISSIPATION = True ! [Boolean] default = False - ! If true, use an internal tidal dissipation scheme to - ! drive diapycnal mixing, along the lines of St. Laurent - ! et al. (2002) and Simmons et al. (2004). -INT_TIDE_PROFILE = "POLZIN_09" ! default = "STLAURENT_02" - ! INT_TIDE_PROFILE selects the vertical profile of energy - ! dissipation with INT_TIDE_DISSIPATION. Valid values are: - ! STLAURENT_02 - Use the St. Laurent et al exponential - ! decay profile. - ! POLZIN_09 - Use the Polzin WKB-streched algebraic - ! decay profile. -INT_TIDE_DECAY_SCALE = 300.3003003003003 ! [m] default = 0.0 - ! The decay scale away from the bottom for tidal TKE with - ! the new coding when INT_TIDE_DISSIPATION is used. -KAPPA_ITIDES = 6.28319E-04 ! [m-1] default = 6.283185307179586E-04 - ! A topographic wavenumber used with INT_TIDE_DISSIPATION. - ! The default is 2pi/10 km, as in St.Laurent et al. 2002. -KAPPA_H2_FACTOR = 0.84 ! [nondim] default = 1.0 - ! A scaling factor for the roughness amplitude with nINT_TIDE_DISSIPATION. -TKE_ITIDE_MAX = 0.1 ! [W m-2] default = 1000.0 - ! The maximum internal tide energy source availble to mix - ! above the bottom boundary layer with INT_TIDE_DISSIPATION. -READ_TIDEAMP = True ! [Boolean] default = False - ! If true, read a file (given by TIDEAMP_FILE) containing - ! the tidal amplitude with INT_TIDE_DISSIPATION. -TIDEAMP_FILE = "tidal_amplitude.v20140616.nc" ! default = "tideamp.nc" - ! The path to the file containing the spatially varying - ! tidal amplitudes with INT_TIDE_DISSIPATION. -H2_FILE = "ocean_topog.nc" ! - ! The path to the file containing the sub-grid-scale - ! topographic roughness amplitude with INT_TIDE_DISSIPATION. + ! The maximum permitted increment for the diapycnal diffusivity from TKE-based + ! parameterizations, or a negative value for no limit. ! === module MOM_kappa_shear === ! Parameterization of shear-driven turbulence following Jackson, Hallberg and Legg, JPO 2008 USE_JACKSON_PARAM = True ! [Boolean] default = False - ! If true, use the Jackson-Hallberg-Legg (JPO 2008) - ! shear mixing parameterization. + ! If true, use the Jackson-Hallberg-Legg (JPO 2008) shear mixing + ! parameterization. MAX_RINO_IT = 25 ! [nondim] default = 50 - ! The maximum number of iterations that may be used to - ! estimate the Richardson number driven mixing. -VERTEX_SHEAR = True ! [Boolean] default = False + ! The maximum number of iterations that may be used to estimate the Richardson + ! number driven mixing. +VERTEX_SHEAR = False ! [Boolean] default = False ! If true, do the calculations of the shear-driven mixing ! at the cell vertices (i.e., the vorticity points). + +KAPPA_SHEAR_ITER_BUG = True ! [Boolean] default = True + ! If true, use an older, dimensionally inconsistent estimate of the derivative + ! of diffusivity with energy in the Newton's method iteration. The bug causes + ! undercorrections when dz > 1 m. +KAPPA_SHEAR_ALL_LAYER_TKE_BUG = True ! [Boolean] default = True + ! If true, report back the latest estimate of TKE instead of the time average + ! TKE when there is mass in all layers. Otherwise always report the time + ! averaged TKE, as is currently done when there are some massless layers. + ! === module MOM_CVMix_shear === ! Parameterization of shear-driven turbulence via CVMix (various options) +! === module MOM_CVMix_ddiff === +! Parameterization of mixing due to double diffusion processes via CVMix + ! === module MOM_diabatic_aux === ! The following parameters are used for auxiliary diabatic processes. -RECLAIM_FRAZIL = True ! [Boolean] default = True - ! If true, try to use any frazil heat deficit to cool any - ! overlying layers down to the freezing point, thereby - ! avoiding the creation of thin ice when the SST is above - ! the freezing point. - PRESSURE_DEPENDENT_FRAZIL = False ! [Boolean] default = False - ! If true, use a pressure dependent freezing temperature - ! when making frazil. The default is false, which will be - ! faster but is inappropriate with ice-shelf cavities. + ! If true, use a pressure dependent freezing temperature when making frazil. The + ! default is false, which will be faster but is inappropriate with ice-shelf + ! cavities. +VAR_PEN_SW = True ! [Boolean] default = False + ! If true, use one of the CHL_A schemes specified by OPACITY_SCHEME to determine + ! the e-folding depth of incoming short wave radiation. +CHL_FILE = "seawifs-clim-1997-2010.1440x1080.v20180328.nc" ! + ! CHL_FILE is the file containing chl_a concentrations in the variable CHL_A. It + ! is used when VAR_PEN_SW and CHL_FROM_FILE are true. +CHL_VARNAME = "chlor_a" ! default = "CHL_A" + ! Name of CHL_A variable in CHL_FILE. ! === module MOM_energetic_PBL === -MSTAR_MODE = 2 ! [units=nondim] default = 0 - ! An integer switch for how to compute MSTAR. - ! 0 for constant MSTAR - ! 1 for MSTAR w/ MLD in stabilizing limit - ! 2 for MSTAR w/ L_E/L_O in stabilizing limit. -MSTAR = 0.0 ! [units=nondim] default = 1.2 - ! The ratio of the friction velocity cubed to the TKE - ! input to the mixed layer. -MIX_LEN_EXPONENT = 1.0 ! [units=nondim] default = 2.0 - ! The exponent applied to the ratio of the distance to the MLD - ! and the MLD depth which determines the shape of the mixing length. -MSTAR_CAP = 10.0 ! [units=nondim] default = -1.0 - ! Maximum value of mstar allowed in model if non-negative - ! (used if MSTAR_MODE>0). -MSTAR_CONV_ADJ = 0.667 ! [units=nondim] default = 0.0 - ! Factor used for reducing mstar during convection - ! due to reduction of stable density gradient. -MSTAR2_COEF1 = 0.29 ! [units=nondim] default = 0.3 - ! Coefficient in computing mstar when rotation and - ! stabilizing effects are both important (used if MSTAR_MODE=2) -MSTAR2_COEF2 = 0.152 ! [units=nondim] default = 0.085 - ! Coefficient in computing mstar when only rotation limits - ! the total mixing. (used only if MSTAR_MODE=2) -NSTAR = 0.06 ! [nondim] default = 0.2 - ! The portion of the buoyant potential energy imparted by - ! surface fluxes that is available to drive entrainment - ! at the base of mixed layer when that energy is positive. -TKE_DECAY = 0.01 ! [nondim] default = 2.5 - ! TKE_DECAY relates the vertical rate of decay of the - ! TKE available for mechanical entrainment to the natural - ! Ekman depth. ML_OMEGA_FRAC = 0.001 ! [nondim] default = 0.0 - ! When setting the decay scale for turbulence, use this - ! fraction of the absolute rotation rate blended with the - ! local value of f, as sqrt((1-of)*f^2 + of*4*omega^2). + ! When setting the decay scale for turbulence, use this fraction of the absolute + ! rotation rate blended with the local value of f, as sqrt((1-of)*f^2 + + ! of*4*omega^2). +TKE_DECAY = 0.01 ! [nondim] default = 2.5 + ! TKE_DECAY relates the vertical rate of decay of the TKE available for + ! mechanical entrainment to the natural Ekman depth. +EPBL_MSTAR_SCHEME = "OM4" ! default = "CONSTANT" + ! EPBL_MSTAR_SCHEME selects the method for setting mstar. Valid values are: + ! CONSTANT - Use a fixed mstar given by MSTAR + ! OM4 - Use L_Ekman/L_Obukhov in the sabilizing limit, as in OM4 + ! REICHL_H18 - Use the scheme documented in Reichl & Hallberg, 2018. +MSTAR_CAP = 10.0 ! [nondim] default = -1.0 + ! If this value is positive, it sets the maximum value of mstar allowed in ePBL. + ! (This is not used if EPBL_MSTAR_SCHEME = CONSTANT). +MSTAR2_COEF1 = 0.29 ! [nondim] default = 0.3 + ! Coefficient in computing mstar when rotation and stabilizing effects are both + ! important (used if EPBL_MSTAR_SCHEME = OM4). +MSTAR2_COEF2 = 0.152 ! [nondim] default = 0.085 + ! Coefficient in computing mstar when only rotation limits the total mixing + ! (used if EPBL_MSTAR_SCHEME = OM4) +NSTAR = 0.06 ! [nondim] default = 0.2 + ! The portion of the buoyant potential energy imparted by surface fluxes that is + ! available to drive entrainment at the base of mixed layer when that energy is + ! positive. +MSTAR_CONV_ADJ = 0.667 ! [nondim] default = 0.0 + ! Coefficient used for reducing mstar during convection due to reduction of + ! stable density gradient. USE_MLD_ITERATION = True ! [Boolean] default = False - ! A logical that specifies whether or not to use the - ! distance to the bottom of the actively turblent boundary - ! layer to help set the EPBL length scale. -ORIG_MLD_ITERATION = False ! [Boolean] default = True - ! A logical that specifies whether or not to use the - ! old method for determining MLD depth in iteration, which - ! is limited to resolution. + ! A logical that specifies whether or not to use the distance to the bottom of + ! the actively turbulent boundary layer to help set the EPBL length scale. EPBL_TRANSITION_SCALE = 0.01 ! [nondim] default = 0.1 - ! A scale for the mixing length in the transition layer - ! at the edge of the boundary layer as a fraction of the - ! boundary layer thickness. The default is 0.1. + ! A scale for the mixing length in the transition layer at the edge of the + ! boundary layer as a fraction of the boundary layer thickness. +MIX_LEN_EXPONENT = 1.0 ! [nondim] default = 2.0 + ! The exponent applied to the ratio of the distance to the MLD and the MLD depth + ! which determines the shape of the mixing length. This is only used if + ! USE_MLD_ITERATION is True. USE_LA_LI2016 = MOM6_REPRO_LA ! [nondim] default = False - ! A logical to use the Li et al. 2016 (submitted) formula to - ! determine the Langmuir number. + ! A logical to use the Li et al. 2016 (submitted) formula to determine the + ! Langmuir number. LT_ENHANCE = 3 ! [nondim] default = 0 ! Integer for Langmuir number mode. ! *Requires USE_LA_LI2016 to be set to True. @@ -785,6 +750,7 @@ LT_ENHANCE = 3 ! [nondim] default = 0 ! 3 - Added w/ adjusted La. USE_WAVES = MOM6_USE_WAVES ! [Boolean] default = False ! If true, enables surface wave modules. + WAVE_METHOD = "SURFACE_BANDS" ! default = "EMPTY" ! Choice of wave method, valid options include: ! TEST_PROFILE - Prescribed from surface Stokes drift @@ -795,45 +761,44 @@ WAVE_METHOD = "SURFACE_BANDS" ! default = "EMPTY" ! wave spectrum with prescribed values. ! LF17 - Infers Stokes drift profile from wind ! speed following Li and Fox-Kemper 2017. + SURFBAND_SOURCE = "COUPLER" ! default = "EMPTY" ! Choice of SURFACE_BANDS data mode, valid options include: ! DATAOVERRIDE - Read from NetCDF using FMS DataOverride. ! COUPLER - Look for variables from coupler pass ! INPUT - Testing with fixed values. + STK_BAND_COUPLER = 3 ! default = 1 ! STK_BAND_COUPLER is the number of Stokes drift bands in the coupler. This has ! to be consistent with the number of Stokes drift bands in WW3, or the model ! will fail. + SURFBAND_WAVENUMBERS = 0.04, 0.11, 0.3305 ! [rad/m] default = 0.12566 - ! Central wavenumbers for surface Stokes drift bands. +EPBL_LANGMUIR_SCHEME = "ADDITIVE" ! default = "NONE" + ! EPBL_LANGMUIR_SCHEME selects the method for including Langmuir turbulence. + ! Valid values are: + ! NONE - Do not do any extra mixing due to Langmuir turbulence + ! RESCALE - Use a multiplicative rescaling of mstar to account for Langmuir + ! turbulence + ! ADDITIVE - Add a Langmuir turblence contribution to mstar to other + ! contributions LT_ENHANCE_COEF = 0.044 ! [nondim] default = 0.447 - ! Coefficient for Langmuir enhancement if LT_ENHANCE > 1 + ! Coefficient for Langmuir enhancement of mstar LT_ENHANCE_EXP = -1.5 ! [nondim] default = -1.33 - ! Exponent for Langmuir enhancement if LT_ENHANCE > 1 + ! Exponent for Langmuir enhancementt of mstar LT_MOD_LAC1 = 0.0 ! [nondim] default = -0.87 - ! Coefficient for modification of Langmuir number due to - ! MLD approaching Ekman depth if LT_ENHANCE=2. + ! Coefficient for modification of Langmuir number due to MLD approaching Ekman + ! depth. LT_MOD_LAC4 = 0.0 ! [nondim] default = 0.95 - ! Coefficient for modification of Langmuir number due to - ! ratio of Ekman to stable Obukhov depth if LT_ENHANCE=2. + ! Coefficient for modification of Langmuir number due to ratio of Ekman to + ! stable Obukhov depth. LT_MOD_LAC5 = 0.22 ! [nondim] default = 0.95 - ! Coefficient for modification of Langmuir number due to - ! ratio of Ekman to unstable Obukhov depth if LT_ENHANCE=2. -EPBL_USTAR_MIN = 1.45842E-18 ! [m s-1] - ! The (tiny) minimum friction velocity used within the - ! ePBL code, derived from OMEGA and ANGSTROM. + ! Coefficient for modification of Langmuir number due to ratio of Ekman to + ! unstable Obukhov depth. ! === module MOM_regularize_layers === ! === module MOM_opacity === -VAR_PEN_SW = True ! [Boolean] default = False - ! If true, use one of the CHL_A schemes specified by - ! OPACITY_SCHEME to determine the e-folding depth of - ! incoming short wave radiation. -CHL_FILE = CHLCLIM ! CHL_FILE is the file containing chl_a concentrations in - ! the variable CHL_A. It is used when VAR_PEN_SW and - ! CHL_FROM_FILE are true. -CHL_VARNAME = "chlor_a" ! default = "CHL_A" PEN_SW_NBANDS = 3 ! default = 1 ! The number of bands of penetrating shortwave radiation. @@ -846,37 +811,38 @@ TRACER_ADVECTION_SCHEME = "PPM:H3" ! default = "PLM" ! === module MOM_tracer_hor_diff === CHECK_DIFFUSIVE_CFL = True ! [Boolean] default = False - ! If true, use enough iterations the diffusion to ensure - ! that the diffusive equivalent of the CFL limit is not - ! violated. If false, always use 1 iteration. + ! If true, use enough iterations the diffusion to ensure that the diffusive + ! equivalent of the CFL limit is not violated. If false, always use the greater + ! of 1 or MAX_TR_DIFFUSION_CFL iteration. ! === module MOM_neutral_diffusion === ! This module implements neutral diffusion of tracers +! === module MOM_lateral_boundary_diffusion === +! This module implements lateral diffusion of tracers near boundaries + +! === module MOM_sum_output === +MAXTRUNC = 100000 ! [truncations save_interval-1] default = 0 + ! The run will be stopped, and the day set to a very large value if the velocity + ! is truncated more than MAXTRUNC times between energy saves. Set MAXTRUNC to 0 + ! to stop if there is any truncation of velocities. +ENERGYSAVEDAYS = 1.00 ! [days] default = 1.0 + ! The interval in units of TIMEUNIT between saves of the energies of the run and + ! other globally summed diagnostics. + ! === module ocean_model_init === OCEAN_SURFACE_STAGGER = "A" ! default = "C" ! A case-insensitive character string to indicate the ! staggering of the surface velocity field that is ! returned to the coupler. Valid values include ! 'A', 'B', or 'C'. -ENERGYSAVEDAYS = 1.00 ! [days] default = 1.0 - ! The interval in units of TIMEUNIT between saves of the - ! energies of the run and other globally summed diagnostics. - -! === module ocean_model_init === -ICE_SHELF = False ! [Boolean] default = False - ! If true, enables the ice shelf model. -ICEBERGS_APPLY_RIGID_BOUNDARY = False ! [Boolean] default = False - ! If true, allows icebergs to change boundary condition felt by ocean - ! === module MOM_surface_forcing === MAX_P_SURF = 0.0 ! [Pa] default = -1.0 - ! The maximum surface pressure that can be exerted by the - ! atmosphere and floating sea-ice or ice shelves. This is - ! needed because the FMS coupling structure does not - ! limit the water that can be frozen out of the ocean and - ! the ice-ocean heat fluxes are treated explicitly. No - ! limit is applied if a negative value is used. + ! The maximum surface pressure that can be exerted by the atmosphere and + ! floating sea-ice or ice shelves. This is needed because the FMS coupling + ! structure does not limit the water that can be frozen out of the ocean and the + ! ice-ocean heat fluxes are treated explicitly. No limit is applied if a + ! negative value is used. WIND_STAGGER = "A" ! default = "C" ! A case-insensitive character string to indicate the ! staggering of the input wind stress field. Valid @@ -885,26 +851,18 @@ CD_TIDES = 0.0018 ! [nondim] default = 1.0E-04 ! The drag coefficient that applies to the tides. GUST_CONST = 0.0 ! [Pa] default = 0.02 ! The background gustiness in the winds. +FIX_USTAR_GUSTLESS_BUG = False ! [Boolean] default = False + ! If true correct a bug in the time-averaging of the gustless wind friction + ! velocity USE_RIGID_SEA_ICE = True ! [Boolean] default = False - ! If true, sea-ice is rigid enough to exert a - ! nonhydrostatic pressure that resist vertical motion. + ! If true, sea-ice is rigid enough to exert a nonhydrostatic pressure that + ! resist vertical motion. SEA_ICE_RIGID_MASS = 100.0 ! [kg m-2] default = 1000.0 - ! The mass of sea-ice per unit area at which the sea-ice - ! starts to exhibit rigidity + ! The mass of sea-ice per unit area at which the sea-ice starts to exhibit + ! rigidity LIQUID_RUNOFF_FROM_DATA = MOM6_RIVER_RUNOFF ! [Boolean] default = False ! If true, allows liquid river runoff to be specified via ! the data_table using the component name 'OCN'. ! === module MOM_restart === RESTART_CHECKSUMS_REQUIRED = False -! === module MOM_sum_output === -CALCULATE_APE = False ! [Boolean] default = True - ! If true, calculate the available potential energy of - ! the interfaces. Setting this to false reduces the - ! memory footprint of high-PE-count models dramatically. -MAXTRUNC = 100000 ! [truncations save_interval-1] default = 0 - ! The run will be stopped, and the day set to a very - ! large value if the velocity is truncated more than - ! MAXTRUNC times between energy saves. Set MAXTRUNC to 0 - ! to stop if there is any truncation of velocities. - ! === module MOM_file_parser === diff --git a/tests/parm/MOM_input_template_050 b/tests/parm/MOM_input_template_050 index 481dcb2454..46780dfc82 100644 --- a/tests/parm/MOM_input_template_050 +++ b/tests/parm/MOM_input_template_050 @@ -1,116 +1,117 @@ -/* This input file provides the adjustable run-time parameters for version 6 of - the Modular Ocean Model (MOM6), a numerical ocean model developed at NOAA-GFDL. - Where appropriate, parameters use usually given in MKS units. +! This input file provides the adjustable run-time parameters for version 6 of the Modular Ocean Model (MOM6). +! Where appropriate, parameters use usually given in MKS units. - This particular file is for the example in OM4_05. +! This particular file is for the example in ice_ocean_SIS2/OM4_05. - This MOM_input file typically contains only the non-default values that are - needed to reproduce this example. A full list of parameters for this example - can be found in the corresponding MOM_parameter_doc.all file which is - generated by the model at run-time. */ +! This MOM_input file typically contains only the non-default values that are needed to reproduce this example. +! A full list of parameters for this example can be found in the corresponding MOM_parameter_doc.all file +! which is generated by the model at run-time. + +! === module MOM_domains === +TRIPOLAR_N = True ! [Boolean] default = False + ! Use tripolar connectivity at the northern edge of the domain. With + ! TRIPOLAR_N, NIGLOBAL must be even. +NIGLOBAL = NX_GLB ! + ! The total number of thickness grid points in the x-direction in the physical + ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. +NJGLOBAL = NY_GLB ! + ! The total number of thickness grid points in the y-direction in the physical + ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. +NIHALO = 4 ! default = 4 + ! The number of halo points on each side in the x-direction. With + ! STATIC_MEMORY_ this is set as NIHALO_ in MOM_memory.h at compile time; without + ! STATIC_MEMORY_ the default is NIHALO_ in MOM_memory.h (if defined) or 2. +NJHALO = 4 ! default = 4 + ! The number of halo points on each side in the y-direction. With + ! STATIC_MEMORY_ this is set as NJHALO_ in MOM_memory.h at compile time; without + ! STATIC_MEMORY_ the default is NJHALO_ in MOM_memory.h (if defined) or 2. +! LAYOUT = 21, 20 ! + ! The processor layout that was actually used. +! IO_LAYOUT = 1, 1 ! default = 1 + ! The processor layout to be used, or 0,0 to automatically set the io_layout to + ! be the same as the layout. ! === module MOM === USE_REGRIDDING = True ! [Boolean] default = False - ! If True, use the ALE algorithm (regridding/remapping). - ! If False, use the layered isopycnal algorithm. + ! If True, use the ALE algorithm (regridding/remapping). If False, use the + ! layered isopycnal algorithm. THICKNESSDIFFUSE = True ! [Boolean] default = False - ! If true, interface heights are diffused with a - ! coefficient of KHTH. + ! If true, interface heights are diffused with a coefficient of KHTH. THICKNESSDIFFUSE_FIRST = True ! [Boolean] default = False - ! If true, do thickness diffusion before dynamics. - ! This is only used if THICKNESSDIFFUSE is true. + ! If true, do thickness diffusion before dynamics. This is only used if + ! THICKNESSDIFFUSE is true. DT = DT_DYNAM_MOM6 ! [s] - ! The (baroclinic) dynamics time step. The time-step that - ! is actually used will be an integer fraction of the - ! forcing time-step (DT_FORCING in ocean-only mode or the - ! coupling timestep in coupled mode.) + ! The (baroclinic) dynamics time step. The time-step that is actually used will + ! be an integer fraction of the forcing time-step (DT_FORCING in ocean-only mode + ! or the coupling timestep in coupled mode.) DT_THERM = DT_THERM_MOM6 ! [s] default = 1800.0 - ! The thermodynamic and tracer advection time step. - ! Ideally DT_THERM should be an integer multiple of DT - ! and less than the forcing or coupling time-step, unless - ! THERMO_SPANS_COUPLING is true, in which case DT_THERM - ! can be an integer multiple of the coupling timestep. By - ! default DT_THERM is set to DT. + ! The thermodynamic and tracer advection time step. Ideally DT_THERM should be + ! an integer multiple of DT and less than the forcing or coupling time-step, + ! unless THERMO_SPANS_COUPLING is true, in which case DT_THERM can be an integer + ! multiple of the coupling timestep. By default DT_THERM is set to DT. THERMO_SPANS_COUPLING = MOM6_THERMO_SPAN ! [Boolean] default = False - ! If true, the MOM will take thermodynamic and tracer - ! timesteps that can be longer than the coupling timestep. - ! The actual thermodynamic timestep that is used in this - ! case is the largest integer multiple of the coupling - ! timestep that is less than or equal to DT_THERM. + ! If true, the MOM will take thermodynamic and tracer timesteps that can be + ! longer than the coupling timestep. The actual thermodynamic timestep that is + ! used in this case is the largest integer multiple of the coupling timestep + ! that is less than or equal to DT_THERM. HFREEZE = 20.0 ! [m] default = -1.0 ! If HFREEZE > 0, melt potential will be computed. The actual depth ! over which melt potential is computed will be min(HFREEZE, OBLD) ! where OBLD is the boundary layer depth. If HFREEZE <= 0 (default) ! melt potential will not be computed. +USE_PSURF_IN_EOS = False ! [Boolean] default = False + ! If true, always include the surface pressure contributions in equation of + ! state calculations. FRAZIL = True ! [Boolean] default = False - ! If true, water freezes if it gets too cold, and the - ! the accumulated heat deficit is returned in the - ! surface state. FRAZIL is only used if + ! If true, water freezes if it gets too cold, and the accumulated heat deficit + ! is returned in the surface state. FRAZIL is only used if ! ENABLE_THERMODYNAMICS is true. DO_GEOTHERMAL = True ! [Boolean] default = False ! If true, apply geothermal heating. BOUND_SALINITY = True ! [Boolean] default = False - ! If true, limit salinity to being positive. (The sea-ice - ! model may ask for more salt than is available and - ! drive the salinity negative otherwise.) + ! If true, limit salinity to being positive. (The sea-ice model may ask for more + ! salt than is available and drive the salinity negative otherwise.) +MIN_SALINITY = 0.01 ! [PPT] default = 0.01 + ! The minimum value of salinity when BOUND_SALINITY=True. The default is 0.01 + ! for backward compatibility but ideally should be 0. C_P = 3992.0 ! [J kg-1 K-1] default = 3991.86795711963 - ! The heat capacity of sea water, approximated as a - ! constant. This is only used if ENABLE_THERMODYNAMICS is - ! true. The default value is from the TEOS-10 definition - ! of conservative temperature. + ! The heat capacity of sea water, approximated as a constant. This is only used + ! if ENABLE_THERMODYNAMICS is true. The default value is from the TEOS-10 + ! definition of conservative temperature. CHECK_BAD_SURFACE_VALS = True ! [Boolean] default = False ! If true, check the surface state for ridiculous values. BAD_VAL_SSH_MAX = 50.0 ! [m] default = 20.0 - ! The value of SSH above which a bad value message is - ! triggered, if CHECK_BAD_SURFACE_VALS is true. + ! The value of SSH above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. BAD_VAL_SSS_MAX = 75.0 ! [PPT] default = 45.0 - ! The value of SSS above which a bad value message is - ! triggered, if CHECK_BAD_SURFACE_VALS is true. + ! The value of SSS above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. BAD_VAL_SST_MAX = 55.0 ! [deg C] default = 45.0 - ! The value of SST above which a bad value message is - ! triggered, if CHECK_BAD_SURFACE_VALS is true. + ! The value of SST above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. BAD_VAL_SST_MIN = -3.0 ! [deg C] default = -2.1 - ! The value of SST below which a bad value message is - ! triggered, if CHECK_BAD_SURFACE_VALS is true. + ! The value of SST below which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +DEFAULT_2018_ANSWERS = True ! [Boolean] default = True + ! This sets the default value for the various _2018_ANSWERS parameters. WRITE_GEOM = 2 ! default = 1 - ! If =0, never write the geometry and vertical grid files. - ! If =1, write the geometry and vertical grid files only for - ! a new simulation. If =2, always write the geometry and - ! vertical grid files. Other values are invalid. + ! If =0, never write the geometry and vertical grid files. If =1, write the + ! geometry and vertical grid files only for a new simulation. If =2, always + ! write the geometry and vertical grid files. Other values are invalid. SAVE_INITIAL_CONDS = True ! [Boolean] default = False ! If true, write the initial conditions to a file given by IC_OUTPUT_FILE. -IC_OUTPUT_FILE = "MOM_IC" ! default = "MOM_IC" - ! The file into which to write the initial conditions. - -! === module MOM_domains === -TRIPOLAR_N = True ! [Boolean] default = False - ! Use tripolar connectivity at the northern edge of the - ! domain. With TRIPOLAR_N, NIGLOBAL must be even. -NIGLOBAL = NX_GLB ! - ! The total number of thickness grid points in the - ! x-direction in the physical domain. With STATIC_MEMORY_ - ! this is set in MOM_memory.h at compile time. -NJGLOBAL = NY_GLB ! - ! The total number of thickness grid points in the - ! y-direction in the physical domain. With STATIC_MEMORY_ - ! this is set in MOM_memory.h at compile time. ! === module MOM_hor_index === ! Sets the horizontal array index types. -! === module MOM_verticalGrid === -! Parameters providing information about the vertical grid. -NK = 75 ! [nondim] - ! The number of model layers. - ! === module MOM_fixed_initialization === INPUTDIR = "INPUT" ! default = "." ! The directory in which input files are found. ! === module MOM_grid_init === GRID_CONFIG = "mosaic" ! - ! A character string that determines the method for - ! defining the horizontal grid. Current options are: + ! A character string that determines the method for defining the horizontal + ! grid. Current options are: ! mosaic - read the grid from a mosaic (supergrid) ! file set by GRID_FILE. ! cartesian - use a (flat) Cartesian grid. @@ -141,7 +142,6 @@ TOPO_CONFIG = "file" ! ! seamount - Gaussian bump for spontaneous motion test case. ! dumbbell - Sloshing channel with reservoirs on both ends. ! shelfwave - exponential slope for shelfwave test case. - ! supercritical - flat but with 8.95 degree land mask. ! Phillips - ACC-like idealized topography used in the Phillips config. ! dense - Denmark Strait-like dense water formation and overflow. ! USER - call a user modified routine. @@ -150,22 +150,24 @@ TOPO_FILE = "ocean_topog.nc" ! default = "topog.nc" MAXIMUM_DEPTH = 6500.0 ! [m] ! The maximum depth of the ocean. MINIMUM_DEPTH = 9.5 ! [m] default = 0.0 - ! If MASKING_DEPTH is unspecified, then anything shallower than - ! MINIMUM_DEPTH is assumed to be land and all fluxes are masked out. - ! If MASKING_DEPTH is specified, then all depths shallower than - ! MINIMUM_DEPTH but deeper than MASKING_DEPTH are rounded to MINIMUM_DEPTH. + ! If MASKING_DEPTH is unspecified, then anything shallower than MINIMUM_DEPTH is + ! assumed to be land and all fluxes are masked out. If MASKING_DEPTH is + ! specified, then all depths shallower than MINIMUM_DEPTH but deeper than + ! MASKING_DEPTH are rounded to MINIMUM_DEPTH. GRID_ROTATION_ANGLE_BUGS = False ! [Boolean] default = True ! If true, use an older algorithm to calculate the sine and ! cosines needed rotate between grid-oriented directions and ! true north and east. Differences arise at the tripolar fold -USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = True - ! If true, use older code that incorrectly sets the longitude - ! in some points along the tripolar fold to be off by 360 degrees + +USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = True + ! If true, use older code that incorrectly sets the longitude in some points + ! along the tripolar fold to be off by 360 degrees. ! === module MOM_open_boundary === -! Controls where open boundaries are located, what kind of boundary condition to impose, and what data to apply, if any. +! Controls where open boundaries are located, what kind of boundary condition to impose, and what data to apply, +! if any. MASKING_DEPTH = 0.0 ! [m] default = -9999.0 - ! The depth below which to mask points as land points, for which all - ! fluxes are zeroed out. MASKING_DEPTH is ignored if negative. + ! The depth below which to mask points as land points, for which all fluxes are + ! zeroed out. MASKING_DEPTH is ignored if negative. CHANNEL_CONFIG = "list" ! default = "none" ! A parameter that determines which set of channels are ! restricted to specific widths. Options are: @@ -179,19 +181,23 @@ CHANNEL_CONFIG = "list" ! default = "none" ! NetCDF file on the model grid. CHANNEL_LIST_FILE = "MOM_channels_global_025" ! default = "MOM_channel_list" ! The file from which the list of narrowed channels is read. +PARALLEL_RESTARTFILES = True ! [Boolean] default = False + ! If true, each processor writes its own restart file, otherwise a single + ! restart file is generated + +! === module MOM_verticalGrid === +! Parameters providing information about the vertical grid. +NK = 75 ! [nondim] + ! The number of model layers. ! === module MOM_tracer_registry === ! === module MOM_EOS === DTFREEZE_DP = -7.75E-08 ! [deg C Pa-1] default = 0.0 - ! When TFREEZE_FORM=LINEAR, - ! this is the derivative of the freezing potential + ! When TFREEZE_FORM=LINEAR, this is the derivative of the freezing potential ! temperature with pressure. ! === module MOM_restart === -PARALLEL_RESTARTFILES = True ! [Boolean] default = False - ! If true, each processor writes its own restart file, - ! otherwise a single restart file is generated ! === module MOM_tracer_flow_control === USE_IDEAL_AGE_TRACER = False ! [Boolean] default = False @@ -220,26 +226,26 @@ COORD_CONFIG = "file" ! ! USER - call a user modified routine. COORD_FILE = "layer_coord.nc" ! ! The file from which the coordinate densities are read. +REMAP_UV_USING_OLD_ALG = True ! [Boolean] default = True + ! If true, uses the old remapping-via-a-delta-z method for remapping u and v. If + ! false, uses the new method that remaps between grids described by an old and + ! new thickness. REGRIDDING_COORDINATE_MODE = "HYCOM1" ! default = "LAYER" - ! Coordinate mode for vertical regridding. - ! Choose among the following possibilities: - ! LAYER - Isopycnal or stacked shallow water layers - ! ZSTAR, Z* - stetched geopotential z* - ! SIGMA_SHELF_ZSTAR - stetched geopotential z* ignoring shelf + ! Coordinate mode for vertical regridding. Choose among the following + ! possibilities: LAYER - Isopycnal or stacked shallow water layers + ! ZSTAR, Z* - stretched geopotential z* + ! SIGMA_SHELF_ZSTAR - stretched geopotential z* ignoring shelf ! SIGMA - terrain following coordinates ! RHO - continuous isopycnal ! HYCOM1 - HyCOM-like hybrid coordinate ! SLIGHT - stretched coordinates above continuous isopycnal ! ADAPTIVE - optimize for smooth neutral density surfaces BOUNDARY_EXTRAPOLATION = True ! [Boolean] default = False - ! When defined, a proper high-order reconstruction - ! scheme is used within boundary cells rather - ! than PCM. E.g., if PPM is used for remapping, a - ! PPM reconstruction will also be used within - ! boundary cells. + ! When defined, a proper high-order reconstruction scheme is used within + ! boundary cells rather than PCM. E.g., if PPM is used for remapping, a PPM + ! reconstruction will also be used within boundary cells. ALE_COORDINATE_CONFIG = "HYBRID:hycom1_75_800m.nc,sigma2,FNC1:2,4000,4.5,.01" ! default = "UNIFORM" - ! Determines how to specify the coordinate - ! resolution. Valid options are: + ! Determines how to specify the coordinate resolution. Valid options are: ! PARAM - use the vector-parameter ALE_RESOLUTION ! UNIFORM[:N] - uniformly distributed ! FILE:string - read from a file. The string specifies @@ -259,11 +265,10 @@ ALE_COORDINATE_CONFIG = "HYBRID:hycom1_75_800m.nc,sigma2,FNC1:2,4000,4.5,.01" ! ! thicknesses (in m). In sigma-coordinate mode, the list ! is of non-dimensional fractions of the water column. !TARGET_DENSITIES = 1010.0, 1014.3034, 1017.8088, 1020.843, 1023.5566, 1025.813, 1027.0275, 1027.9114, 1028.6422, 1029.2795, 1029.852, 1030.3762, 1030.8626, 1031.3183, 1031.7486, 1032.1572, 1032.5471, 1032.9207, 1033.2798, 1033.6261, 1033.9608, 1034.2519, 1034.4817, 1034.6774, 1034.8508, 1035.0082, 1035.1533, 1035.2886, 1035.4159, 1035.5364, 1035.6511, 1035.7608, 1035.8661, 1035.9675, 1036.0645, 1036.1554, 1036.2411, 1036.3223, 1036.3998, 1036.4739, 1036.5451, 1036.6137, 1036.68, 1036.7441, 1036.8062, 1036.8526, 1036.8874, 1036.9164, 1036.9418, 1036.9647, 1036.9857, 1037.0052, 1037.0236, 1037.0409, 1037.0574, 1037.0738, 1037.0902, 1037.1066, 1037.123, 1037.1394, 1037.1558, 1037.1722, 1037.1887, 1037.206, 1037.2241, 1037.2435, 1037.2642, 1037.2866, 1037.3112, 1037.3389, 1037.3713, 1037.4118, 1037.475, 1037.6332, 1037.8104, 1038.0 ! [m] - ! HYBRID target densities for itnerfaces -REGRID_COMPRESSIBILITY_FRACTION = 0.01 ! [not defined] default = 0.0 - ! When interpolating potential density profiles we can add - ! some artificial compressibility solely to make homogenous - ! regions appear stratified. + ! HYBRID target densities for interfaces +REGRID_COMPRESSIBILITY_FRACTION = 0.01 ! [nondim] default = 0.0 + ! When interpolating potential density profiles we can add some artificial + ! compressibility solely to make homogeneous regions appear stratified. MAXIMUM_INT_DEPTH_CONFIG = "FNC1:5,8000.0,1.0,.01" ! default = "NONE" ! Determines how to specify the maximum interface depths. ! Valid options are: @@ -287,10 +292,9 @@ MAX_LAYER_THICKNESS_CONFIG = "FNC1:400,31000.0,0.1,.01" ! default = "NONE" !MAX_LAYER_THICKNESS = 400.0, 409.63, 410.32, 410.75, 411.07, 411.32, 411.52, 411.7, 411.86, 412.0, 412.13, 412.24, 412.35, 412.45, 412.54, 412.63, 412.71, 412.79, 412.86, 412.93, 413.0, 413.06, 413.12, 413.18, 413.24, 413.29, 413.34, 413.39, 413.44, 413.49, 413.54, 413.58, 413.62, 413.67, 413.71, 413.75, 413.78, 413.82, 413.86, 413.9, 413.93, 413.97, 414.0, 414.03, 414.06, 414.1, 414.13, 414.16, 414.19, 414.22, 414.24, 414.27, 414.3, 414.33, 414.35, 414.38, 414.41, 414.43, 414.46, 414.48, 414.51, 414.53, 414.55, 414.58, 414.6, 414.62, 414.65, 414.67, 414.69, 414.71, 414.73, 414.75, 414.77, 414.79, 414.83 ! [m] ! The list of maximum thickness for each layer. REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" - ! This sets the reconstruction scheme used - ! for vertical remapping for all variables. - ! It can be one of the following schemes: - ! PCM (1st-order accurate) + ! This sets the reconstruction scheme used for vertical remapping for all + ! variables. It can be one of the following schemes: PCM (1st-order + ! accurate) ! PLM (2nd-order accurate) ! PPM_H4 (3rd-order accurate) ! PPM_IH4 (3rd-order accurate) @@ -302,13 +306,11 @@ REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" ! === module MOM_state_initialization === INIT_LAYERS_FROM_Z_FILE = True ! [Boolean] default = False - ! If true, intialize the layer thicknesses, temperatures, - ! and salnities from a Z-space file on a latitude- - ! longitude grid. + ! If true, initialize the layer thicknesses, temperatures, and salinities from a + ! Z-space file on a latitude-longitude grid. ! === module MOM_initialize_layers_from_Z === -!TEMP_SALT_Z_INIT_FILE = "WOA05_pottemp_salt.nc" ! default = "temp_salt_z.nc" -TEMP_SALT_Z_INIT_FILE = "MOM6_IC_TS.nc" +TEMP_SALT_Z_INIT_FILE = "MOM6_IC_TS.nc" ! default = "temp_salt_z.nc" ! The name of the z-space input file used to initialize ! temperatures (T) and salinities (S). If T and S are not ! in the same file, TEMP_Z_INIT_FILE and SALT_Z_INIT_FILE @@ -319,8 +321,12 @@ Z_INIT_FILE_PTEMP_VAR = "temp" ! default = "ptemp" Z_INIT_FILE_SALT_VAR = "salt" ! default = "salt" ! The name of the salinity variable in ! SALT_Z_INIT_FILE. + Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False ! If True, then remap straight to model coordinate from file. +Z_INIT_REMAP_OLD_ALG = True ! [Boolean] default = True + ! If false, uses the preferred remapping algorithm for initialization. If true, + ! use an older, less robust algorithm for remapping. ! === module MOM_diag_mediator === !Jiande NUM_DIAG_COORDS = 2 ! default = 1 @@ -334,9 +340,8 @@ DIAG_COORDS = "z Z ZSTAR" ! is of the form "MODULE_SUFFIX,PARAMETER_SUFFIX,COORDINATE_NAME". DIAG_COORD_DEF_Z="FILE:interpolate_zgrid_40L.nc,interfaces=zw" DIAG_MISVAL = -1e34 -!Jiande DIAG_COORD_DEF_RHO2 = "RFNC1:35,999.5,1028,1028.5,8.,1038.,0.0078125" ! default = "WOA09" - ! Determines how to specify the coordinate - ! resolution. Valid options are: +!DIAG_COORD_DEF_RHO2 = "RFNC1:35,999.5,1028,1028.5,8.,1038.,0.0078125" ! default = "WOA09" + ! Determines how to specify the coordinate resolution. Valid options are: ! PARAM - use the vector-parameter DIAG_COORD_RES_RHO2 ! UNIFORM[:N] - uniformly distributed ! FILE:string - read from a file. The string specifies @@ -352,13 +357,12 @@ DIAG_MISVAL = -1e34 ! === module MOM_MEKE === USE_MEKE = True ! [Boolean] default = False - ! If true, turns on the MEKE scheme which calculates - ! a sub-grid mesoscale eddy kinetic energy budget. + ! If true, turns on the MEKE scheme which calculates a sub-grid mesoscale eddy + ! kinetic energy budget. MEKE_GMCOEFF = 1.0 ! [nondim] default = -1.0 - ! The efficiency of the conversion of potential energy - ! into MEKE by the thickness mixing parameterization. - ! If MEKE_GMCOEFF is negative, this conversion is not - ! used or calculated. + ! The efficiency of the conversion of potential energy into MEKE by the + ! thickness mixing parameterization. If MEKE_GMCOEFF is negative, this + ! conversion is not used or calculated. MEKE_BGSRC = 1.0E-13 ! [W kg-1] default = 0.0 ! A background energy source for MEKE. MEKE_KHTH_FAC = 0.5 ! [nondim] default = 0.0 @@ -368,116 +372,118 @@ MEKE_KHTR_FAC = 0.5 ! [nondim] default = 0.0 MEKE_KHMEKE_FAC = 1.0 ! [nondim] default = 0.0 ! A factor that maps MEKE%Kh to Kh for MEKE itself. MEKE_VISCOSITY_COEFF_KU = 1.0 ! [nondim] default = 0.0 - ! If non-zero, is the scaling coefficient in the expression for - ! viscosity used to parameterize lateral momentum mixing by - ! unresolved eddies represented by MEKE. Can be negative to - ! represent backscatter from the unresolved eddies. + ! If non-zero, is the scaling coefficient in the expression forviscosity used to + ! parameterize harmonic lateral momentum mixing byunresolved eddies represented + ! by MEKE. Can be negative torepresent backscatter from the unresolved eddies. MEKE_ALPHA_RHINES = 0.15 ! [nondim] default = 0.05 - ! If positive, is a coefficient weighting the Rhines scale - ! in the expression for mixing length used in MEKE-derived diffusiviity. + ! If positive, is a coefficient weighting the Rhines scale in the expression for + ! mixing length used in MEKE-derived diffusivity. MEKE_ALPHA_EADY = 0.15 ! [nondim] default = 0.05 - ! If positive, is a coefficient weighting the Eady length scale - ! in the expression for mixing length used in MEKE-derived diffusiviity. + ! If positive, is a coefficient weighting the Eady length scale in the + ! expression for mixing length used in MEKE-derived diffusivity. ! === module MOM_lateral_mixing_coeffs === USE_VARIABLE_MIXING = True ! [Boolean] default = False - ! If true, the variable mixing code will be called. This - ! allows diagnostics to be created even if the scheme is - ! not used. If KHTR_SLOPE_CFF>0 or KhTh_Slope_Cff>0, - ! this is set to true regardless of what is in the - ! parameter file. + ! If true, the variable mixing code will be called. This allows diagnostics to + ! be created even if the scheme is not used. If KHTR_SLOPE_CFF>0 or + ! KhTh_Slope_Cff>0, this is set to true regardless of what is in the parameter + ! file. RESOLN_SCALED_KH = True ! [Boolean] default = False - ! If true, the Laplacian lateral viscosity is scaled away - ! when the first baroclinic deformation radius is well - ! resolved. + ! If true, the Laplacian lateral viscosity is scaled away when the first + ! baroclinic deformation radius is well resolved. RESOLN_SCALED_KHTH = True ! [Boolean] default = False - ! If true, the interface depth diffusivity is scaled away - ! when the first baroclinic deformation radius is well - ! resolved. + ! If true, the interface depth diffusivity is scaled away when the first + ! baroclinic deformation radius is well resolved. KHTH_USE_EBT_STRUCT = True ! [Boolean] default = False - ! If true, uses the equivalent barotropic structure - ! as the vertical structure of thickness diffusivity. + ! If true, uses the equivalent barotropic structure as the vertical structure of + ! thickness diffusivity. KHTR_SLOPE_CFF = 0.25 ! [nondim] default = 0.0 - ! The nondimensional coefficient in the Visbeck formula - ! for the epipycnal tracer diffusivity + ! The nondimensional coefficient in the Visbeck formula for the epipycnal tracer + ! diffusivity USE_STORED_SLOPES = True ! [Boolean] default = False - ! If true, the isopycnal slopes are calculated once and - ! stored for re-use. This uses more memory but avoids calling - ! the equation of state more times than should be necessary. + ! If true, the isopycnal slopes are calculated once and stored for re-use. This + ! uses more memory but avoids calling the equation of state more times than + ! should be necessary. KH_RES_FN_POWER = 100 ! [nondim] default = 2 - ! The power of dx/Ld in the Kh resolution function. Any - ! positive integer may be used, although even integers - ! are more efficient to calculate. Setting this greater - ! than 100 results in a step-function being used. + ! The power of dx/Ld in the Kh resolution function. Any positive integer may be + ! used, although even integers are more efficient to calculate. Setting this + ! greater than 100 results in a step-function being used. INTERPOLATE_RES_FN = False ! [Boolean] default = True - ! If true, interpolate the resolution function to the - ! velocity points from the thickness points; otherwise - ! interpolate the wave speed and calculate the resolution - ! function independently at each point. + ! If true, interpolate the resolution function to the velocity points from the + ! thickness points; otherwise interpolate the wave speed and calculate the + ! resolution function independently at each point. GILL_EQUATORIAL_LD = True ! [Boolean] default = False - ! If true, uses Gill's definition of the baroclinic - ! equatorial deformation radius, otherwise, if false, use - ! Pedlosky's definition. These definitions differ by a factor - ! of 2 infront of the beta term in the denominator. Gill'sis the more appropriate definition. + ! If true, uses Gill's definition of the baroclinic equatorial deformation + ! radius, otherwise, if false, use Pedlosky's definition. These definitions + ! differ by a factor of 2 in front of the beta term in the denominator. Gill's + ! is the more appropriate definition. ! === module MOM_set_visc === CHANNEL_DRAG = True ! [Boolean] default = False - ! If true, the bottom drag is exerted directly on each - ! layer proportional to the fraction of the bottom it - ! overlies. + ! If true, the bottom drag is exerted directly on each layer proportional to the + ! fraction of the bottom it overlies. PRANDTL_TURB = 1.25 ! [nondim] default = 1.0 - ! The turbulent Prandtl number applied to shear - ! instability. + ! The turbulent Prandtl number applied to shear instability. HBBL = 10.0 ! [m] - ! The thickness of a bottom boundary layer with a - ! viscosity of KVBBL if BOTTOMDRAGLAW is not defined, or - ! the thickness over which near-bottom velocities are - ! averaged for the drag law if BOTTOMDRAGLAW is defined - ! but LINEAR_DRAG is not. + ! The thickness of a bottom boundary layer with a viscosity of KVBBL if + ! BOTTOMDRAGLAW is not defined, or the thickness over which near-bottom + ! velocities are averaged for the drag law if BOTTOMDRAGLAW is defined but + ! LINEAR_DRAG is not. DRAG_BG_VEL = 0.1 ! [m s-1] default = 0.0 - ! DRAG_BG_VEL is either the assumed bottom velocity (with - ! LINEAR_DRAG) or an unresolved velocity that is - ! combined with the resolved velocity to estimate the - ! velocity magnitude. DRAG_BG_VEL is only used when - ! BOTTOMDRAGLAW is defined. + ! DRAG_BG_VEL is either the assumed bottom velocity (with LINEAR_DRAG) or an + ! unresolved velocity that is combined with the resolved velocity to estimate + ! the velocity magnitude. DRAG_BG_VEL is only used when BOTTOMDRAGLAW is + ! defined. BBL_USE_EOS = True ! [Boolean] default = False - ! If true, use the equation of state in determining the - ! properties of the bottom boundary layer. Otherwise use - ! the layer target potential densities. + ! If true, use the equation of state in determining the properties of the bottom + ! boundary layer. Otherwise use the layer target potential densities. BBL_THICK_MIN = 0.1 ! [m] default = 0.0 - ! The minimum bottom boundary layer thickness that can be - ! used with BOTTOMDRAGLAW. This might be - ! Kv / (cdrag * drag_bg_vel) to give Kv as the minimum + ! The minimum bottom boundary layer thickness that can be used with + ! BOTTOMDRAGLAW. This might be Kv/(cdrag*drag_bg_vel) to give Kv as the minimum ! near-bottom viscosity. KV = 1.0E-04 ! [m2 s-1] - ! The background kinematic viscosity in the interior. - ! The molecular value, ~1e-6 m2 s-1, may be used. + ! The background kinematic viscosity in the interior. The molecular value, ~1e-6 + ! m2 s-1, may be used. KV_BBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 ! The minimum viscosities in the bottom boundary layer. KV_TBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 ! The minimum viscosities in the top boundary layer. +! === module MOM_thickness_diffuse === +KHTH_MAX_CFL = 0.1 ! [nondimensional] default = 0.8 + ! The maximum value of the local diffusive CFL ratio that is permitted for the + ! thickness diffusivity. 1.0 is the marginally unstable value in a pure layered + ! model, but much smaller numbers (e.g. 0.1) seem to work better for ALE-based + ! models. +KHTH_USE_FGNV_STREAMFUNCTION = True ! [Boolean] default = False + ! If true, use the streamfunction formulation of Ferrari et al., 2010, which + ! effectively emphasizes graver vertical modes by smoothing in the vertical. +FGNV_FILTER_SCALE = 0.1 ! [nondim] default = 1.0 + ! A coefficient scaling the vertical smoothing term in the Ferrari et al., 2010, + ! streamfunction formulation. +USE_GM_WORK_BUG = True ! [Boolean] default = True + ! If true, compute the top-layer work tendency on the u-grid with the incorrect + ! sign, for legacy reproducibility. + ! === module MOM_continuity === ! === module MOM_continuity_PPM === ETA_TOLERANCE = 1.0E-06 ! [m] default = 3.75E-09 - ! The tolerance for the differences between the - ! barotropic and baroclinic estimates of the sea surface - ! height due to the fluxes through each face. The total - ! tolerance for SSH is 4 times this value. The default - ! is 0.5*NK*ANGSTROM, and this should not be set less x - ! than about 10^-15*MAXIMUM_DEPTH. + ! The tolerance for the differences between the barotropic and baroclinic + ! estimates of the sea surface height due to the fluxes through each face. The + ! total tolerance for SSH is 4 times this value. The default is + ! 0.5*NK*ANGSTROM, and this should not be set less than about + ! 10^-15*MAXIMUM_DEPTH. ETA_TOLERANCE_AUX = 0.001 ! [m] default = 1.0E-06 - ! The tolerance for free-surface height discrepancies - ! between the barotropic solution and the sum of the - ! layer thicknesses when calculating the auxiliary - ! corrected velocities. By default, this is the same as - ! ETA_TOLERANCE, but can be made larger for efficiency. + ! The tolerance for free-surface height discrepancies between the barotropic + ! solution and the sum of the layer thicknesses when calculating the auxiliary + ! corrected velocities. By default, this is the same as ETA_TOLERANCE, but can + ! be made larger for efficiency. ! === module MOM_CoriolisAdv === CORIOLIS_SCHEME = "SADOURNY75_ENSTRO" ! default = "SADOURNY75_ENERGY" - ! CORIOLIS_SCHEME selects the discretization for the - ! Coriolis terms. Valid values are: + ! CORIOLIS_SCHEME selects the discretization for the Coriolis terms. Valid + ! values are: ! SADOURNY75_ENERGY - Sadourny, 1975; energy cons. ! ARAKAWA_HSU90 - Arakawa & Hsu, 1990 ! SADOURNY75_ENSTRO - Sadourny, 1975; enstrophy cons. @@ -485,327 +491,286 @@ CORIOLIS_SCHEME = "SADOURNY75_ENSTRO" ! default = "SADOURNY75_ENERGY" ! ARAKAWA_LAMB_BLEND - A blend of Arakawa & Lamb with ! Arakawa & Hsu and Sadourny energy BOUND_CORIOLIS = True ! [Boolean] default = False - ! If true, the Coriolis terms at u-points are bounded by - ! the four estimates of (f+rv)v from the four neighboring - ! v-points, and similarly at v-points. This option would - ! have no effect on the SADOURNY Coriolis scheme if it - ! were possible to use centered difference thickness fluxes. + ! If true, the Coriolis terms at u-points are bounded by the four estimates of + ! (f+rv)v from the four neighboring v-points, and similarly at v-points. This + ! option would have no effect on the SADOURNY Coriolis scheme if it were + ! possible to use centered difference thickness fluxes. ! === module MOM_PressureForce === ! === module MOM_PressureForce_AFV === MASS_WEIGHT_IN_PRESSURE_GRADIENT = True ! [Boolean] default = False - ! If true, use mass weighting when interpolating T/S for - ! integrals near the bathymetry in AFV pressure gradient - ! calculations. + ! If true, use mass weighting when interpolating T/S for integrals near the + ! bathymetry in AFV pressure gradient calculations. ! === module MOM_hor_visc === LAPLACIAN = True ! [Boolean] default = False ! If true, use a Laplacian horizontal viscosity. KH_VEL_SCALE = 0.01 ! [m s-1] default = 0.0 - ! The velocity scale which is multiplied by the grid - ! spacing to calculate the Laplacian viscosity. - ! The final viscosity is the largest of this scaled + ! The velocity scale which is multiplied by the grid spacing to calculate the + ! Laplacian viscosity. The final viscosity is the largest of this scaled ! viscosity, the Smagorinsky and Leith viscosities, and KH. KH_SIN_LAT = 2000.0 ! [m2 s-1] default = 0.0 - ! The amplitude of a latidutinally-dependent background - ! viscosity of the form KH_SIN_LAT*(SIN(LAT)**KH_PWR_OF_SINE). + ! The amplitude of a latitudinally-dependent background viscosity of the form + ! KH_SIN_LAT*(SIN(LAT)**KH_PWR_OF_SINE). SMAGORINSKY_KH = True ! [Boolean] default = False ! If true, use a Smagorinsky nonlinear eddy viscosity. SMAG_LAP_CONST = 0.15 ! [nondim] default = 0.0 - ! The nondimensional Laplacian Smagorinsky constant, - ! often 0.15. + ! The nondimensional Laplacian Smagorinsky constant, often 0.15. AH_VEL_SCALE = 0.01 ! [m s-1] default = 0.0 - ! The velocity scale which is multiplied by the cube of - ! the grid spacing to calculate the biharmonic viscosity. - ! The final viscosity is the largest of this scaled - ! viscosity, the Smagorinsky and Leith viscosities, and AH. + ! The velocity scale which is multiplied by the cube of the grid spacing to + ! calculate the biharmonic viscosity. The final viscosity is the largest of this + ! scaled viscosity, the Smagorinsky and Leith viscosities, and AH. SMAGORINSKY_AH = True ! [Boolean] default = False - ! If true, use a biharmonic Smagorinsky nonlinear eddy - ! viscosity. + ! If true, use a biharmonic Smagorinsky nonlinear eddy viscosity. SMAG_BI_CONST = 0.06 ! [nondim] default = 0.0 - ! The nondimensional biharmonic Smagorinsky constant, - ! typically 0.015 - 0.06. + ! The nondimensional biharmonic Smagorinsky constant, typically 0.015 - 0.06. +USE_LAND_MASK_FOR_HVISC = False ! [Boolean] default = False + ! If true, use Use the land mask for the computation of thicknesses at velocity + ! locations. This eliminates the dependence on arbitrary values over land or + ! outside of the domain. Default is False in order to maintain answers with + ! legacy experiments but should be changed to True for new experiments. ! === module MOM_vert_friction === -U_TRUNC_FILE = "U_velocity_truncations" ! default = "" - ! The absolute path to a file into which the accelerations - ! leading to zonal velocity truncations are written. - ! Undefine this for efficiency if this diagnostic is not - ! needed. -V_TRUNC_FILE = "V_velocity_truncations" ! default = "" - ! The absolute path to a file into which the accelerations - ! leading to meridional velocity truncations are written. - ! Undefine this for efficiency if this diagnostic is not - ! needed. HMIX_FIXED = 0.5 ! [m] - ! The prescribed depth over which the near-surface - ! viscosity and diffusivity are elevated when the bulk - ! mixed layer is not used. + ! The prescribed depth over which the near-surface viscosity and diffusivity are + ! elevated when the bulk mixed layer is not used. MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 - ! The maximum velocity allowed before the velocity - ! components are truncated. + ! The maximum velocity allowed before the velocity components are truncated. ! === module MOM_PointAccel === +U_TRUNC_FILE = "U_velocity_truncations" ! default = "" + ! The absolute path to a file into which the accelerations leading to zonal + ! velocity truncations are written. Undefine this for efficiency if this + ! diagnostic is not needed. +V_TRUNC_FILE = "V_velocity_truncations" ! default = "" + ! The absolute path to a file into which the accelerations leading to meridional + ! velocity truncations are written. Undefine this for efficiency if this + ! diagnostic is not needed. ! === module MOM_barotropic === BOUND_BT_CORRECTION = True ! [Boolean] default = False - ! If true, the corrective pseudo mass-fluxes into the - ! barotropic solver are limited to values that require - ! less than maxCFL_BT_cont to be accommodated. + ! If true, the corrective pseudo mass-fluxes into the barotropic solver are + ! limited to values that require less than maxCFL_BT_cont to be accommodated. BT_PROJECT_VELOCITY = True ! [Boolean] default = False - ! If true, step the barotropic velocity first and project - ! out the velocity tendancy by 1+BEBT when calculating the - ! transport. The default (false) is to use a predictor - ! continuity step to find the pressure field, and then - ! to do a corrector continuity step using a weighted - ! average of the old and new velocities, with weights - ! of (1-BEBT) and BEBT. + ! If true, step the barotropic velocity first and project out the velocity + ! tendency by 1+BEBT when calculating the transport. The default (false) is to + ! use a predictor continuity step to find the pressure field, and then to do a + ! corrector continuity step using a weighted average of the old and new + ! velocities, with weights of (1-BEBT) and BEBT. DYNAMIC_SURFACE_PRESSURE = True ! [Boolean] default = False - ! If true, add a dynamic pressure due to a viscous ice - ! shelf, for instance. + ! If true, add a dynamic pressure due to a viscous ice shelf, for instance. BEBT = 0.2 ! [nondim] default = 0.1 - ! BEBT determines whether the barotropic time stepping - ! uses the forward-backward time-stepping scheme or a - ! backward Euler scheme. BEBT is valid in the range from - ! 0 (for a forward-backward treatment of nonrotating - ! gravity waves) to 1 (for a backward Euler treatment). - ! In practice, BEBT must be greater than about 0.05. + ! BEBT determines whether the barotropic time stepping uses the forward-backward + ! time-stepping scheme or a backward Euler scheme. BEBT is valid in the range + ! from 0 (for a forward-backward treatment of nonrotating gravity waves) to 1 + ! (for a backward Euler treatment). In practice, BEBT must be greater than about + ! 0.05. DTBT = -0.9 ! [s or nondim] default = -0.98 - ! The barotropic time step, in s. DTBT is only used with - ! the split explicit time stepping. To set the time step - ! automatically based the maximum stable value use 0, or - ! a negative value gives the fraction of the stable value. - ! Setting DTBT to 0 is the same as setting it to -0.98. - ! The value of DTBT that will actually be used is an - ! integer fraction of DT, rounding down. + ! The barotropic time step, in s. DTBT is only used with the split explicit time + ! stepping. To set the time step automatically based the maximum stable value + ! use 0, or a negative value gives the fraction of the stable value. Setting + ! DTBT to 0 is the same as setting it to -0.98. The value of DTBT that will + ! actually be used is an integer fraction of DT, rounding down. BT_USE_OLD_CORIOLIS_BRACKET_BUG = True ! [Boolean] default = False - ! If True, use an order of operations that is not bitwise - ! rotationally symmetric in the meridional Coriolis term of - ! the barotropic solver. - -! === module MOM_thickness_diffuse === -KHTH_MAX_CFL = 0.1 ! [nondimensional] default = 0.8 - ! The maximum value of the local diffusive CFL ratio that - ! is permitted for the thickness diffusivity. 1.0 is the - ! marginally unstable value in a pure layered model, but - ! much smaller numbers (e.g. 0.1) seem to work better for - ! ALE-based models. -KHTH_USE_FGNV_STREAMFUNCTION = True ! [Boolean] default = False - ! If true, use the streamfunction formulation of - ! Ferrari et al., 2010, which effectively emphasizes - ! graver vertical modes by smoothing in the vertical. -FGNV_FILTER_SCALE = 0.1 ! [not defined] default = 1.0 - ! A coefficient scaling the vertical smoothing term in the - ! Ferrari et al., 2010, streamfunction formulation. + ! If True, use an order of operations that is not bitwise rotationally symmetric + ! in the meridional Coriolis term of the barotropic solver. ! === module MOM_mixed_layer_restrat === MIXEDLAYER_RESTRAT = True ! [Boolean] default = False - ! If true, a density-gradient dependent re-stratifying - ! flow is imposed in the mixed layer. Can be used in ALE mode - ! without restriction but in layer mode can only be used if - ! BULKMIXEDLAYER is true. + ! If true, a density-gradient dependent re-stratifying flow is imposed in the + ! mixed layer. Can be used in ALE mode without restriction but in layer mode can + ! only be used if BULKMIXEDLAYER is true. FOX_KEMPER_ML_RESTRAT_COEF = 1.0 ! [nondim] default = 0.0 - ! A nondimensional coefficient that is proportional to - ! the ratio of the deformation radius to the dominant - ! lengthscale of the submesoscale mixed layer - ! instabilities, times the minimum of the ratio of the - ! mesoscale eddy kinetic energy to the large-scale - ! geostrophic kinetic energy or 1 plus the square of the - ! grid spacing over the deformation radius, as detailed - ! by Fox-Kemper et al. (2010) + ! A nondimensional coefficient that is proportional to the ratio of the + ! deformation radius to the dominant lengthscale of the submesoscale mixed layer + ! instabilities, times the minimum of the ratio of the mesoscale eddy kinetic + ! energy to the large-scale geostrophic kinetic energy or 1 plus the square of + ! the grid spacing over the deformation radius, as detailed by Fox-Kemper et al. + ! (2010) MLE_FRONT_LENGTH = 200.0 ! [m] default = 0.0 - ! If non-zero, is the frontal-length scale used to calculate the - ! upscaling of buoyancy gradients that is otherwise represented - ! by the parameter FOX_KEMPER_ML_RESTRAT_COEF. If MLE_FRONT_LENGTH is - ! non-zero, it is recommended to set FOX_KEMPER_ML_RESTRAT_COEF=1.0. + ! If non-zero, is the frontal-length scale used to calculate the upscaling of + ! buoyancy gradients that is otherwise represented by the parameter + ! FOX_KEMPER_ML_RESTRAT_COEF. If MLE_FRONT_LENGTH is non-zero, it is recommended + ! to set FOX_KEMPER_ML_RESTRAT_COEF=1.0. MLE_USE_PBL_MLD = True ! [Boolean] default = False - ! If true, the MLE parameterization will use the mixed-layer - ! depth provided by the active PBL parameterization. If false, - ! MLE will estimate a MLD based on a density difference with the - ! surface using the parameter MLE_DENSITY_DIFF. + ! If true, the MLE parameterization will use the mixed-layer depth provided by + ! the active PBL parameterization. If false, MLE will estimate a MLD based on a + ! density difference with the surface using the parameter MLE_DENSITY_DIFF. MLE_MLD_DECAY_TIME = 2.592E+06 ! [s] default = 0.0 - ! The time-scale for a running-mean filter applied to the mixed-layer - ! depth used in the MLE restratification parameterization. When - ! the MLD deepens below the current running-mean the running-mean - ! is instantaneously set to the current MLD. + ! The time-scale for a running-mean filter applied to the mixed-layer depth used + ! in the MLE restratification parameterization. When the MLD deepens below the + ! current running-mean the running-mean is instantaneously set to the current + ! MLD. ! === module MOM_diabatic_driver === ! The following parameters are used for diabatic processes. ENERGETICS_SFC_PBL = True ! [Boolean] default = False - ! If true, use an implied energetics planetary boundary - ! layer scheme to determine the diffusivity and viscosity - ! in the surface boundary layer. + ! If true, use an implied energetics planetary boundary layer scheme to + ! determine the diffusivity and viscosity in the surface boundary layer. EPBL_IS_ADDITIVE = False ! [Boolean] default = True - ! If true, the diffusivity from ePBL is added to all - ! other diffusivities. Otherwise, the larger of kappa- - ! shear and ePBL diffusivities are used. + ! If true, the diffusivity from ePBL is added to all other diffusivities. + ! Otherwise, the larger of kappa-shear and ePBL diffusivities are used. -! === module MOM_KPP === -! This is the MOM wrapper to CVmix:KPP -! See http://code.google.com/p/cvmix/ +! === module MOM_CVMix_KPP === +! This is the MOM wrapper to CVMix:KPP +! See http://cvmix.github.io/ -! === module MOM_diffConvection === -! This module implements enhanced diffusivity as a -! function of static stability, N^2. -CONVECTION% -%CONVECTION +! === module MOM_tidal_mixing === +! Vertical Tidal Mixing Parameterization +INT_TIDE_DISSIPATION = True ! [Boolean] default = False + ! If true, use an internal tidal dissipation scheme to drive diapycnal mixing, + ! along the lines of St. Laurent et al. (2002) and Simmons et al. (2004). +INT_TIDE_PROFILE = "POLZIN_09" ! default = "STLAURENT_02" + ! INT_TIDE_PROFILE selects the vertical profile of energy dissipation with + ! INT_TIDE_DISSIPATION. Valid values are: + ! STLAURENT_02 - Use the St. Laurent et al exponential + ! decay profile. + ! POLZIN_09 - Use the Polzin WKB-stretched algebraic + ! decay profile. +INT_TIDE_DECAY_SCALE = 300.3003003003003 ! [m] default = 500.0 + ! The decay scale away from the bottom for tidal TKE with the new coding when + ! INT_TIDE_DISSIPATION is used. +KAPPA_ITIDES = 6.28319E-04 ! [m-1] default = 6.283185307179586E-04 + ! A topographic wavenumber used with INT_TIDE_DISSIPATION. The default is 2pi/10 + ! km, as in St.Laurent et al. 2002. +KAPPA_H2_FACTOR = 0.84 ! [nondim] default = 1.0 + ! A scaling factor for the roughness amplitude with INT_TIDE_DISSIPATION. +TKE_ITIDE_MAX = 0.1 ! [W m-2] default = 1000.0 + ! The maximum internal tide energy source available to mix above the bottom + ! boundary layer with INT_TIDE_DISSIPATION. +READ_TIDEAMP = True ! [Boolean] default = False + ! If true, read a file (given by TIDEAMP_FILE) containing the tidal amplitude + ! with INT_TIDE_DISSIPATION. +TIDEAMP_FILE = "tidal_amplitude.nc" ! default = "tideamp.nc" + ! The path to the file containing the spatially varying tidal amplitudes with + ! INT_TIDE_DISSIPATION. +H2_FILE = "ocean_topog.nc" ! + ! The path to the file containing the sub-grid-scale topographic roughness + ! amplitude with INT_TIDE_DISSIPATION. -! === module MOM_entrain_diffusive === +! === module MOM_CVMix_conv === +! Parameterization of enhanced mixing due to convection via CVMix ! === module MOM_geothermal === GEOTHERMAL_SCALE = 1.0 ! [W m-2 or various] default = 0.0 - ! The constant geothermal heat flux, a rescaling - ! factor for the heat flux read from GEOTHERMAL_FILE, or - ! 0 to disable the geothermal heating. + ! The constant geothermal heat flux, a rescaling factor for the heat flux read + ! from GEOTHERMAL_FILE, or 0 to disable the geothermal heating. GEOTHERMAL_FILE = "geothermal_davies2013_v1.nc" ! default = "" - ! The file from which the geothermal heating is to be - ! read, or blank to use a constant heating rate. + ! The file from which the geothermal heating is to be read, or blank to use a + ! constant heating rate. GEOTHERMAL_VARNAME = "geothermal_hf" ! default = "geo_heat" - ! The name of the geothermal heating variable in - ! GEOTHERMAL_FILE. + ! The name of the geothermal heating variable in GEOTHERMAL_FILE. ! === module MOM_set_diffusivity === BBL_MIXING_AS_MAX = False ! [Boolean] default = True - ! If true, take the maximum of the diffusivity from the - ! BBL mixing and the other diffusivities. Otherwise, - ! diffusiviy from the BBL_mixing is simply added. + ! If true, take the maximum of the diffusivity from the BBL mixing and the other + ! diffusivities. Otherwise, diffusivity from the BBL_mixing is simply added. USE_LOTW_BBL_DIFFUSIVITY = True ! [Boolean] default = False - ! If true, uses a simple, imprecise but non-coordinate dependent, model - ! of BBL mixing diffusivity based on Law of the Wall. Otherwise, uses - ! the original BBL scheme. + ! If true, uses a simple, imprecise but non-coordinate dependent, model of BBL + ! mixing diffusivity based on Law of the Wall. Otherwise, uses the original BBL + ! scheme. SIMPLE_TKE_TO_KD = True ! [Boolean] default = False - ! If true, uses a simple estimate of Kd/TKE that will - ! work for arbitrary vertical coordinates. If false, - ! calculates Kd/TKE and bounds based on exact energetics/nfor an isopycnal layer-formulation. -HENYEY_IGW_BACKGROUND = True ! [Boolean] default = False - ! If true, use a latitude-dependent scaling for the near - ! surface background diffusivity, as described in - ! Harrison & Hallberg, JPO 2008. -N2_FLOOR_IOMEGA2 = 0.0 ! [nondim] default = 1.0 - ! The floor applied to N2(k) scaled by Omega^2: - ! If =0., N2(k) is simply positive definite. - ! If =1., N2(k) > Omega^2 everywhere. + ! If true, uses a simple estimate of Kd/TKE that will work for arbitrary + ! vertical coordinates. If false, calculates Kd/TKE and bounds based on exact + ! energetics for an isopycnal layer-formulation. + +! === module MOM_bkgnd_mixing === +! Adding static vertical background mixing coefficients KD = 1.5E-05 ! [m2 s-1] - ! The background diapycnal diffusivity of density in the - ! interior. Zero or the molecular value, ~1e-7 m2 s-1, - ! may be used. + ! The background diapycnal diffusivity of density in the interior. Zero or the + ! molecular value, ~1e-7 m2 s-1, may be used. KD_MIN = 2.0E-06 ! [m2 s-1] default = 1.5E-07 ! The minimum diapycnal diffusivity. +HENYEY_IGW_BACKGROUND = True ! [Boolean] default = False + ! If true, use a latitude-dependent scaling for the near surface background + ! diffusivity, as described in Harrison & Hallberg, JPO 2008. KD_MAX = 0.1 ! [m2 s-1] default = -1.0 - ! The maximum permitted increment for the diapycnal - ! diffusivity from TKE-based parameterizations, or a - ! negative value for no limit. -INT_TIDE_DISSIPATION = True ! [Boolean] default = False - ! If true, use an internal tidal dissipation scheme to - ! drive diapycnal mixing, along the lines of St. Laurent - ! et al. (2002) and Simmons et al. (2004). -INT_TIDE_PROFILE = "POLZIN_09" ! default = "STLAURENT_02" - ! INT_TIDE_PROFILE selects the vertical profile of energy - ! dissipation with INT_TIDE_DISSIPATION. Valid values are: - ! STLAURENT_02 - Use the St. Laurent et al exponential - ! decay profile. - ! POLZIN_09 - Use the Polzin WKB-streched algebraic - ! decay profile. -INT_TIDE_DECAY_SCALE = 300.3003003003003 ! [m] default = 0.0 - ! The decay scale away from the bottom for tidal TKE with - ! the new coding when INT_TIDE_DISSIPATION is used. -KAPPA_ITIDES = 6.28319E-04 ! [m-1] default = 6.283185307179586E-04 - ! A topographic wavenumber used with INT_TIDE_DISSIPATION. - ! The default is 2pi/10 km, as in St.Laurent et al. 2002. -KAPPA_H2_FACTOR = 0.84 ! [nondim] default = 1.0 - ! A scaling factor for the roughness amplitude with nINT_TIDE_DISSIPATION. -TKE_ITIDE_MAX = 0.1 ! [W m-2] default = 1000.0 - ! The maximum internal tide energy source availble to mix - ! above the bottom boundary layer with INT_TIDE_DISSIPATION. -READ_TIDEAMP = True ! [Boolean] default = False - ! If true, read a file (given by TIDEAMP_FILE) containing - ! the tidal amplitude with INT_TIDE_DISSIPATION. -TIDEAMP_FILE = "tidal_amplitude.nc" ! default = "tideamp.nc" - ! The path to the file containing the spatially varying - ! tidal amplitudes with INT_TIDE_DISSIPATION. -H2_FILE = "ocean_topog.nc" ! - ! The path to the file containing the sub-grid-scale - ! topographic roughness amplitude with INT_TIDE_DISSIPATION. + ! The maximum permitted increment for the diapycnal diffusivity from TKE-based + ! parameterizations, or a negative value for no limit. ! === module MOM_kappa_shear === ! Parameterization of shear-driven turbulence following Jackson, Hallberg and Legg, JPO 2008 USE_JACKSON_PARAM = True ! [Boolean] default = False - ! If true, use the Jackson-Hallberg-Legg (JPO 2008) - ! shear mixing parameterization. + ! If true, use the Jackson-Hallberg-Legg (JPO 2008) shear mixing + ! parameterization. MAX_RINO_IT = 25 ! [nondim] default = 50 - ! The maximum number of iterations that may be used to - ! estimate the Richardson number driven mixing. -VERTEX_SHEAR = True ! [Boolean] default = False + ! The maximum number of iterations that may be used to estimate the Richardson + ! number driven mixing. +VERTEX_SHEAR = False ! [Boolean] default = False ! If true, do the calculations of the shear-driven mixing ! at the cell vertices (i.e., the vorticity points). +KAPPA_SHEAR_ITER_BUG = True ! [Boolean] default = True + ! If true, use an older, dimensionally inconsistent estimate of the derivative + ! of diffusivity with energy in the Newton's method iteration. The bug causes + ! undercorrections when dz > 1 m. +KAPPA_SHEAR_ALL_LAYER_TKE_BUG = True ! [Boolean] default = True + ! If true, report back the latest estimate of TKE instead of the time average + ! TKE when there is mass in all layers. Otherwise always report the time + ! averaged TKE, as is currently done when there are some massless layers. + ! === module MOM_CVMix_shear === ! Parameterization of shear-driven turbulence via CVMix (various options) +! === module MOM_CVMix_ddiff === +! Parameterization of mixing due to double diffusion processes via CVMix + ! === module MOM_diabatic_aux === ! The following parameters are used for auxiliary diabatic processes. -RECLAIM_FRAZIL = True ! [Boolean] default = True - ! If true, try to use any frazil heat deficit to cool any - ! overlying layers down to the freezing point, thereby - ! avoiding the creation of thin ice when the SST is above - ! the freezing point. - PRESSURE_DEPENDENT_FRAZIL = False ! [Boolean] default = False - ! If true, use a pressure dependent freezing temperature - ! when making frazil. The default is false, which will be - ! faster but is inappropriate with ice-shelf cavities. + ! If true, use a pressure dependent freezing temperature when making frazil. The + ! default is false, which will be faster but is inappropriate with ice-shelf + ! cavities. +VAR_PEN_SW = True ! [Boolean] default = False + ! If true, use one of the CHL_A schemes specified by OPACITY_SCHEME to determine + ! the e-folding depth of incoming short wave radiation. +CHL_FILE = CHLCLIM ! CHL_FILE is the file containing chl_a concentrations in the variable CHL_A. It + ! is used when VAR_PEN_SW and CHL_FROM_FILE are true. +CHL_VARNAME = "chlor_a" ! default = "CHL_A" + ! Name of CHL_A variable in CHL_FILE. ! === module MOM_energetic_PBL === -MSTAR_MODE = 2 ! [units=nondim] default = 0 - ! An integer switch for how to compute MSTAR. - ! 0 for constant MSTAR - ! 1 for MSTAR w/ MLD in stabilizing limit - ! 2 for MSTAR w/ L_E/L_O in stabilizing limit. -MSTAR = 0.0 ! [units=nondim] default = 1.2 - ! The ratio of the friction velocity cubed to the TKE - ! input to the mixed layer. -MIX_LEN_EXPONENT = 1.0 ! [units=nondim] default = 2.0 - ! The exponent applied to the ratio of the distance to the MLD - ! and the MLD depth which determines the shape of the mixing length. -MSTAR_CAP = 10.0 ! [units=nondim] default = -1.0 - ! Maximum value of mstar allowed in model if non-negative - ! (used if MSTAR_MODE>0). -MSTAR_CONV_ADJ = 0.667 ! [units=nondim] default = 0.0 - ! Factor used for reducing mstar during convection - ! due to reduction of stable density gradient. -MSTAR2_COEF1 = 0.29 ! [units=nondim] default = 0.3 - ! Coefficient in computing mstar when rotation and - ! stabilizing effects are both important (used if MSTAR_MODE=2) -MSTAR2_COEF2 = 0.152 ! [units=nondim] default = 0.085 - ! Coefficient in computing mstar when only rotation limits - ! the total mixing. (used only if MSTAR_MODE=2) -NSTAR = 0.06 ! [nondim] default = 0.2 - ! The portion of the buoyant potential energy imparted by - ! surface fluxes that is available to drive entrainment - ! at the base of mixed layer when that energy is positive. -TKE_DECAY = 0.01 ! [nondim] default = 2.5 - ! TKE_DECAY relates the vertical rate of decay of the - ! TKE available for mechanical entrainment to the natural - ! Ekman depth. ML_OMEGA_FRAC = 0.001 ! [nondim] default = 0.0 - ! When setting the decay scale for turbulence, use this - ! fraction of the absolute rotation rate blended with the - ! local value of f, as sqrt((1-of)*f^2 + of*4*omega^2). + ! When setting the decay scale for turbulence, use this fraction of the absolute + ! rotation rate blended with the local value of f, as sqrt((1-of)*f^2 + + ! of*4*omega^2). +TKE_DECAY = 0.01 ! [nondim] default = 2.5 + ! TKE_DECAY relates the vertical rate of decay of the TKE available for + ! mechanical entrainment to the natural Ekman depth. +EPBL_MSTAR_SCHEME = "OM4" ! default = "CONSTANT" + ! EPBL_MSTAR_SCHEME selects the method for setting mstar. Valid values are: + ! CONSTANT - Use a fixed mstar given by MSTAR + ! OM4 - Use L_Ekman/L_Obukhov in the sabilizing limit, as in OM4 + ! REICHL_H18 - Use the scheme documented in Reichl & Hallberg, 2018. +MSTAR_CAP = 10.0 ! [nondim] default = -1.0 + ! If this value is positive, it sets the maximum value of mstar allowed in ePBL. + ! (This is not used if EPBL_MSTAR_SCHEME = CONSTANT). +MSTAR2_COEF1 = 0.29 ! [nondim] default = 0.3 + ! Coefficient in computing mstar when rotation and stabilizing effects are both + ! important (used if EPBL_MSTAR_SCHEME = OM4). +MSTAR2_COEF2 = 0.152 ! [nondim] default = 0.085 + ! Coefficient in computing mstar when only rotation limits the total mixing + ! (used if EPBL_MSTAR_SCHEME = OM4) +NSTAR = 0.06 ! [nondim] default = 0.2 + ! The portion of the buoyant potential energy imparted by surface fluxes that is + ! available to drive entrainment at the base of mixed layer when that energy is + ! positive. +MSTAR_CONV_ADJ = 0.667 ! [nondim] default = 0.0 + ! Coefficient used for reducing mstar during convection due to reduction of + ! stable density gradient. USE_MLD_ITERATION = True ! [Boolean] default = False - ! A logical that specifies whether or not to use the - ! distance to the bottom of the actively turblent boundary - ! layer to help set the EPBL length scale. -ORIG_MLD_ITERATION = False ! [Boolean] default = True - ! A logical that specifies whether or not to use the - ! old method for determining MLD depth in iteration, which - ! is limited to resolution. + ! A logical that specifies whether or not to use the distance to the bottom of + ! the actively turbulent boundary layer to help set the EPBL length scale. EPBL_TRANSITION_SCALE = 0.01 ! [nondim] default = 0.1 - ! A scale for the mixing length in the transition layer - ! at the edge of the boundary layer as a fraction of the - ! boundary layer thickness. The default is 0.1. + ! A scale for the mixing length in the transition layer at the edge of the + ! boundary layer as a fraction of the boundary layer thickness. +MIX_LEN_EXPONENT = 1.0 ! [nondim] default = 2.0 + ! The exponent applied to the ratio of the distance to the MLD and the MLD depth + ! which determines the shape of the mixing length. This is only used if + ! USE_MLD_ITERATION is True. USE_LA_LI2016 = MOM6_REPRO_LA ! [nondim] default = False - ! A logical to use the Li et al. 2016 (submitted) formula to - ! determine the Langmuir number. + ! A logical to use the Li et al. 2016 (submitted) formula to determine the + ! Langmuir number. LT_ENHANCE = 3 ! [nondim] default = 0 ! Integer for Langmuir number mode. ! *Requires USE_LA_LI2016 to be set to True. @@ -836,22 +801,27 @@ STK_BAND_COUPLER = 3 ! default = 1 ! will fail. SURFBAND_WAVENUMBERS = 0.04, 0.11, 0.3305 ! [rad/m] default = 0.12566 ! Central wavenumbers for surface Stokes drift bands. +EPBL_LANGMUIR_SCHEME = "ADDITIVE" ! default = "NONE" + ! EPBL_LANGMUIR_SCHEME selects the method for including Langmuir turbulence. + ! Valid values are: + ! NONE - Do not do any extra mixing due to Langmuir turbulence + ! RESCALE - Use a multiplicative rescaling of mstar to account for Langmuir + ! turbulence + ! ADDITIVE - Add a Langmuir turblence contribution to mstar to other + ! contributions LT_ENHANCE_COEF = 0.044 ! [nondim] default = 0.447 - ! Coefficient for Langmuir enhancement if LT_ENHANCE > 1 + ! Coefficient for Langmuir enhancement of mstar LT_ENHANCE_EXP = -1.5 ! [nondim] default = -1.33 - ! Exponent for Langmuir enhancement if LT_ENHANCE > 1 + ! Exponent for Langmuir enhancementt of mstar LT_MOD_LAC1 = 0.0 ! [nondim] default = -0.87 - ! Coefficient for modification of Langmuir number due to - ! MLD approaching Ekman depth if LT_ENHANCE=2. + ! Coefficient for modification of Langmuir number due to MLD approaching Ekman + ! depth. LT_MOD_LAC4 = 0.0 ! [nondim] default = 0.95 - ! Coefficient for modification of Langmuir number due to - ! ratio of Ekman to stable Obukhov depth if LT_ENHANCE=2. + ! Coefficient for modification of Langmuir number due to ratio of Ekman to + ! stable Obukhov depth. LT_MOD_LAC5 = 0.22 ! [nondim] default = 0.95 - ! Coefficient for modification of Langmuir number due to - ! ratio of Ekman to unstable Obukhov depth if LT_ENHANCE=2. -EPBL_USTAR_MIN = 1.45842E-18 ! [m s-1] - ! The (tiny) minimum friction velocity used within the - ! ePBL code, derived from OMEGA and ANGSTROM. + ! Coefficient for modification of Langmuir number due to ratio of Ekman to + ! unstable Obukhov depth. ! === module MOM_regularize_layers === @@ -860,7 +830,7 @@ VAR_PEN_SW = True ! [Boolean] default = False ! If true, use one of the CHL_A schemes specified by ! OPACITY_SCHEME to determine the e-folding depth of ! incoming short wave radiation. -CHL_FILE = CHLCLIM ! CHL_FILE is the file containing chl_a concentrations in +CHL_FILE = CHLCLIM ! CHL_FILE is the file containing chl_a concentrations in ! the variable CHL_A. It is used when VAR_PEN_SW and ! CHL_FROM_FILE are true. CHL_VARNAME = "chlor_a" ! default = "CHL_A" @@ -879,19 +849,19 @@ TRACER_ADVECTION_SCHEME = "PPM:H3" ! default = "PLM" KHTR = 50.0 ! [m2 s-1] default = 0.0 ! The background along-isopycnal tracer diffusivity. CHECK_DIFFUSIVE_CFL = True ! [Boolean] default = False - ! If true, use enough iterations the diffusion to ensure - ! that the diffusive equivalent of the CFL limit is not - ! violated. If false, always use 1 iteration. + ! If true, use enough iterations the diffusion to ensure that the diffusive + ! equivalent of the CFL limit is not violated. If false, always use the greater + ! of 1 or MAX_TR_DIFFUSION_CFL iteration. MAX_TR_DIFFUSION_CFL = 2.0 ! [nondim] default = -1.0 - ! If positive, locally limit the along-isopycnal tracer - ! diffusivity to keep the diffusive CFL locally at or - ! below this value. The number of diffusive iterations - ! is often this value or the next greater integer. + ! If positive, locally limit the along-isopycnal tracer diffusivity to keep the + ! diffusive CFL locally at or below this value. The number of diffusive + ! iterations is often this value or the next greater integer. ! === module MOM_neutral_diffusion === ! This module implements neutral diffusion of tracers USE_NEUTRAL_DIFFUSION = True ! [Boolean] default = False ! If true, enables the neutral diffusion module. + ! === module ocean_model_init === OCEAN_SURFACE_STAGGER = "A" ! default = "C" ! A case-insensitive character string to indicate the @@ -899,32 +869,31 @@ OCEAN_SURFACE_STAGGER = "A" ! default = "C" ! returned to the coupler. Valid values include ! 'A', 'B', or 'C'. RESTART_CHECKSUMS_REQUIRED = False +! === module MOM_lateral_boundary_diffusion === +! This module implements lateral diffusion of tracers near boundaries + ! === module MOM_sum_output === -CALCULATE_APE = False ! [Boolean] default = True - ! If true, calculate the available potential energy of - ! the interfaces. Setting this to false reduces the - ! memory footprint of high-PE-count models dramatically. MAXTRUNC = 100000 ! [truncations save_interval-1] default = 0 - ! The run will be stopped, and the day set to a very - ! large value if the velocity is truncated more than - ! MAXTRUNC times between energy saves. Set MAXTRUNC to 0 + ! The run will be stopped, and the day set to a very large value if the velocity + ! is truncated more than MAXTRUNC times between energy saves. Set MAXTRUNC to 0 ! to stop if there is any truncation of velocities. -ENERGYSAVEDAYS = 1.00 ! [days] default = 1.0 - ! The interval in units of TIMEUNIT between saves of the - ! energies of the run and other globally summed diagnostics. +ENERGYSAVEDAYS = 1.0 ! [days] default = 1.0 + ! The interval in units of TIMEUNIT between saves of the energies of the run and + ! other globally summed diagnostics. ENERGYSAVEDAYS_GEOMETRIC = 0.25 ! [days] default = 0.0 - ! The starting interval in units of TIMEUNIT for the first call - ! to save the energies of the run and other globally summed diagnostics. - ! The interval increases by a factor of 2. after each call to write_energy. + ! The starting interval in units of TIMEUNIT for the first call to save the + ! energies of the run and other globally summed diagnostics. The interval + ! increases by a factor of 2. after each call to write_energy. + +! === module ocean_model_init === ! === module MOM_surface_forcing === MAX_P_SURF = 0.0 ! [Pa] default = -1.0 - ! The maximum surface pressure that can be exerted by the - ! atmosphere and floating sea-ice or ice shelves. This is - ! needed because the FMS coupling structure does not - ! limit the water that can be frozen out of the ocean and - ! the ice-ocean heat fluxes are treated explicitly. No - ! limit is applied if a negative value is used. + ! The maximum surface pressure that can be exerted by the atmosphere and + ! floating sea-ice or ice shelves. This is needed because the FMS coupling + ! structure does not limit the water that can be frozen out of the ocean and the + ! ice-ocean heat fluxes are treated explicitly. No limit is applied if a + ! negative value is used. WIND_STAGGER = "A" ! default = "C" ! A case-insensitive character string to indicate the ! staggering of the input wind stress field. Valid @@ -933,12 +902,15 @@ CD_TIDES = 0.0018 ! [nondim] default = 1.0E-04 ! The drag coefficient that applies to the tides. GUST_CONST = 0.0 ! [Pa] default = 0.02 ! The background gustiness in the winds. +FIX_USTAR_GUSTLESS_BUG = False ! [Boolean] default = False + ! If true correct a bug in the time-averaging of the gustless wind friction + ! velocity USE_RIGID_SEA_ICE = True ! [Boolean] default = False - ! If true, sea-ice is rigid enough to exert a - ! nonhydrostatic pressure that resist vertical motion. + ! If true, sea-ice is rigid enough to exert a nonhydrostatic pressure that + ! resist vertical motion. SEA_ICE_RIGID_MASS = 100.0 ! [kg m-2] default = 1000.0 - ! The mass of sea-ice per unit area at which the sea-ice - ! starts to exhibit rigidity + ! The mass of sea-ice per unit area at which the sea-ice starts to exhibit + ! rigidity LIQUID_RUNOFF_FROM_DATA = MOM6_RIVER_RUNOFF ! [Boolean] default = False ! If true, allows liquid river runoff to be specified via ! the data_table using the component name 'OCN'. diff --git a/tests/parm/MOM_input_template_100 b/tests/parm/MOM_input_template_100 index 976b5d69bc..d5af4cccd2 100644 --- a/tests/parm/MOM_input_template_100 +++ b/tests/parm/MOM_input_template_100 @@ -72,15 +72,17 @@ WRITE_GEOM = 2 ! default = 1 ! If =0, never write the geometry and vertical grid files. If =1, write the ! geometry and vertical grid files only for a new simulation. If =2, always ! write the geometry and vertical grid files. Other values are invalid. +SAVE_INITIAL_CONDS = True ! [Boolean] default = False + ! If true, write the initial conditions to a file given by IC_OUTPUT_FILE. ! === module MOM_domains === TRIPOLAR_N = True ! [Boolean] default = False ! Use tripolar connectivity at the northern edge of the domain. With ! TRIPOLAR_N, NIGLOBAL must be even. -NIGLOBAL = NX_GLB ! +NIGLOBAL = NX_GLB ! ! The total number of thickness grid points in the x-direction in the physical ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. -NJGLOBAL = NY_GLB ! +NJGLOBAL = NY_GLB ! ! The total number of thickness grid points in the y-direction in the physical ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. @@ -106,7 +108,7 @@ GRID_ROTATION_ANGLE_BUGS = False ! [Boolean] default = True ! If true, use an older algorithm to calculate the sine and ! cosines needed rotate between grid-oriented directions and ! true north and east. Differences arise at the tripolar fold -USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = False +USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = True ! If true, use older code that incorrectly sets the longitude in some points ! along the tripolar fold to be off by 360 degrees. TOPO_CONFIG = "file" ! @@ -165,6 +167,13 @@ CHANNEL_CONFIG = "list" ! default = "none" ! NetCDF file on the model grid. CHANNEL_LIST_FILE = "MOM_channels_SPEAR" ! default = "MOM_channel_list" ! The file from which the list of narrowed channels is read. +GRID_ROTATION_ANGLE_BUGS = False ! [Boolean] default = False + ! If true, use an older algorithm to calculate the sine and cosines needed + ! rotate between grid-oriented directions and true north and east. Differences + ! arise at the tripolar fold. +USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = False + ! If true, use older code that incorrectly sets the longitude in some points + ! along the tripolar fold to be off by 360 degrees. ! === module MOM_verticalGrid === ! Parameters providing information about the vertical grid. @@ -291,12 +300,12 @@ INIT_LAYERS_FROM_Z_FILE = True ! [Boolean] default = False ! Z-space file on a latitude-longitude grid. ! === module MOM_initialize_layers_from_Z === -TEMP_SALT_Z_INIT_FILE = "MOM6_IC_TS.nc" +TEMP_SALT_Z_INIT_FILE = "MOM6_IC_TS.nc" ! default = "temp_salt_z.nc" ! The name of the z-space input file used to initialize ! temperatures (T) and salinities (S). If T and S are not ! in the same file, TEMP_Z_INIT_FILE and SALT_Z_INIT_FILE ! must be set. -Z_INIT_FILE_PTEMP_VAR = "temp" ! default = "ptemp" +Z_INIT_FILE_PTEMP_VAR = "temp" ! default = "ptemp" ! The name of the potential temperature variable in ! TEMP_Z_INIT_FILE. Z_INIT_FILE_SALT_VAR = "salt" ! default = "salt" @@ -304,6 +313,9 @@ Z_INIT_FILE_SALT_VAR = "salt" ! default = "salt" ! SALT_Z_INIT_FILE. Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False ! If True, then remap straight to model coordinate from file. +Z_INIT_REMAP_OLD_ALG = True ! [Boolean] default = False + ! If false, uses the preferred remapping algorithm for initialization. If true, + ! use an older, less robust algorithm for remapping. ! === module MOM_diag_mediator === !Jiande NUM_DIAG_COORDS = 2 ! default = 1 @@ -317,9 +329,25 @@ DIAG_COORDS = "z Z ZSTAR" ! is of the form "MODULE_SUFFIX,PARAMETER_SUFFIX,COORDINATE_NAME". DIAG_COORD_DEF_Z="FILE:interpolate_zgrid_40L.nc,interfaces=zw" DIAG_MISVAL = -1e34 -!Jiande DIAG_COORD_DEF_RHO2 = "RFNC1:35,999.5,1028,1028.5,8.,1038.,0.0078125" ! default = "WOA09" - ! Determines how to specify the coordinate - ! resolution. Valid options are: +!AVAILABLE_DIAGS_FILE = "available_diags.002160" ! default = "available_diags.000000" + ! A file into which to write a list of all available ocean diagnostics that can + ! be included in a diag_table. +!DIAG_COORD_DEF_Z = "FILE:vgrid_75_2m.nc,dz" ! default = "WOA09" + ! Determines how to specify the coordinate resolution. Valid options are: + ! PARAM - use the vector-parameter DIAG_COORD_RES_Z + ! UNIFORM[:N] - uniformly distributed + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,dz + ! or FILE:lev.nc,interfaces=zw + ! WOA09[:N] - the WOA09 vertical grid (approximately) + ! FNC1:string - FNC1:dz_min,H_total,power,precision + ! HYBRID:string - read from a file. The string specifies + ! the filename and two variable names, separated + ! by a comma or space, for sigma-2 and dz. e.g. + ! HYBRID:vgrid.nc,sigma2,dz +!DIAG_COORD_DEF_RHO2 = "RFNC1:35,999.5,1028,1028.5,8.,1038.,0.0078125" ! default = "WOA09" + ! Determines how to specify the coordinate resolution. Valid options are: ! PARAM - use the vector-parameter DIAG_COORD_RES_RHO2 ! UNIFORM[:N] - uniformly distributed ! FILE:string - read from a file. The string specifies @@ -377,7 +405,7 @@ KH_RES_FN_POWER = 100 ! [nondim] default = 2 ! The power of dx/Ld in the Kh resolution function. Any positive integer may be ! used, although even integers are more efficient to calculate. Setting this ! greater than 100 results in a step-function being used. -!JW VISC_RES_FN_POWER = 2 ! [nondim] default = 100 +VISC_RES_FN_POWER = 2 ! [nondim] default = 100 ! The power of dx/Ld in the Kh resolution function. Any positive integer may be ! used, although even integers are more efficient to calculate. Setting this ! greater than 100 results in a step-function being used. This function affects @@ -616,7 +644,7 @@ USE_JACKSON_PARAM = True ! [Boolean] default = False MAX_RINO_IT = 25 ! [nondim] default = 50 ! The maximum number of iterations that may be used to estimate the Richardson ! number driven mixing. -VERTEX_SHEAR = True ! [Boolean] default = False +VERTEX_SHEAR = False ! [Boolean] default = False ! If true, do the calculations of the shear-driven mixing ! at the cell vertices (i.e., the vorticity points). KD_TRUNC_KAPPA_SHEAR = 2.0E-07 ! [m2 s-1] default = 2.0E-07 @@ -639,14 +667,14 @@ KAPPA_SHEAR_ALL_LAYER_TKE_BUG = True ! [Boolean] default = False ! === module MOM_diabatic_aux === ! The following parameters are used for auxiliary diabatic processes. -PRESSURE_DEPENDENT_FRAZIL = false ! [Boolean] default = False +PRESSURE_DEPENDENT_FRAZIL = False ! [Boolean] default = False ! If true, use a pressure dependent freezing temperature when making frazil. The ! default is false, which will be faster but is inappropriate with ice-shelf ! cavities. VAR_PEN_SW = True ! [Boolean] default = False ! If true, use one of the CHL_A schemes specified by OPACITY_SCHEME to determine ! the e-folding depth of incoming short wave radiation. -CHL_FILE = CHLCLIM +CHL_FILE = CHLCLIM ! ! CHL_FILE is the file containing chl_a concentrations in the variable CHL_A. It ! is used when VAR_PEN_SW and CHL_FROM_FILE are true. @@ -692,14 +720,6 @@ MIX_LEN_EXPONENT = 1.0 ! [nondim] default = 2.0 USE_LA_LI2016 = MOM6_REPRO_LA ! [nondim] default = False ! A logical to use the Li et al. 2016 (submitted) formula to determine the ! Langmuir number. -EPBL_LANGMUIR_SCHEME = "ADDITIVE" ! default = "NONE" - ! EPBL_LANGMUIR_SCHEME selects the method for including Langmuir turbulence. - ! Valid values are: - ! NONE - Do not do any extra mixing due to Langmuir turbulence - ! RESCALE - Use a multiplicative rescaling of mstar to account for Langmuir - ! turbulence - ! ADDITIVE - Add a Langmuir turblence contribution to mstar to other - ! contributions USE_WAVES = MOM6_USE_WAVES ! [Boolean] default = False ! If true, enables surface wave modules. WAVE_METHOD = "SURFACE_BANDS" ! default = "EMPTY" @@ -723,6 +743,14 @@ STK_BAND_COUPLER = 3 ! default = 1 ! will fail. SURFBAND_WAVENUMBERS = 0.04, 0.11, 0.3305 ! [rad/m] default = 0.12566 ! Central wavenumbers for surface Stokes drift bands. +EPBL_LANGMUIR_SCHEME = "ADDITIVE" ! default = "NONE" + ! EPBL_LANGMUIR_SCHEME selects the method for including Langmuir turbulence. + ! Valid values are: + ! NONE - Do not do any extra mixing due to Langmuir turbulence + ! RESCALE - Use a multiplicative rescaling of mstar to account for Langmuir + ! turbulence + ! ADDITIVE - Add a Langmuir turblence contribution to mstar to other + ! contributions LT_ENHANCE_COEF = 0.044 ! [nondim] default = 0.447 ! Coefficient for Langmuir enhancement of mstar LT_ENHANCE_EXP = -1.5 ! [nondim] default = -1.33 @@ -778,13 +806,14 @@ ENERGYSAVEDAYS = 0.25 ! [days] default = 1.0 ! other globally summed diagnostics. ! === module ocean_model_init === + +! === module MOM_surface_forcing === OCEAN_SURFACE_STAGGER = "A" ! default = "C" ! A case-insensitive character string to indicate the ! staggering of the surface velocity field that is ! returned to the coupler. Valid values include ! 'A', 'B', or 'C'. -! === module MOM_surface_forcing === MAX_P_SURF = 0.0 ! [Pa] default = -1.0 ! The maximum surface pressure that can be exerted by the atmosphere and ! floating sea-ice or ice shelves. This is needed because the FMS coupling diff --git a/tests/rt.sh b/tests/rt.sh index 3d0611a41e..fd7b124c47 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -396,9 +396,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-20201201/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201202/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201201} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201202} fi shift $((OPTIND-1)) From 0cf031edc217707f3b5c912e0844e2c2b885ff82 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Mon, 7 Dec 2020 14:09:17 -0500 Subject: [PATCH 036/109] Update CICE, Move regression test input outside baseline directory (#270) *Updates CICE to most recent develop branch of NOAA-EMC * Sets n_aero (number of aerosols) in ice_in_template to 0. * removes trailing whitespace from ice_in * moves regression test input outside baseline directory (ufs-weather PR #312) Co-authored-by: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Co-authored-by: Dom Heinzeller --- CICE-interface/CICE | 2 +- CICE-interface/cice_files.cmake | 1 + tests/RegressionTests_cheyenne.gnu.log | 86 ++--- tests/RegressionTests_cheyenne.intel.log | 236 ++++++------- tests/RegressionTests_gaea.intel.log | 194 +++++------ tests/RegressionTests_hera.gnu.log | 86 ++--- tests/RegressionTests_hera.intel.log | 346 ++++++++++---------- tests/RegressionTests_jet.intel.log | 198 +++++------ tests/RegressionTests_orion.intel.log | 324 +++++++++--------- tests/RegressionTests_wcoss_cray.log | 206 ++++++------ tests/RegressionTests_wcoss_dell_p3.log | 280 ++++++++-------- tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN | 60 ++-- tests/fv3_conf/ccpp_control_run.IN | 32 +- tests/fv3_conf/ccpp_cpt_run.IN | 26 +- tests/fv3_conf/ccpp_csawmg3shoc127_run.IN | 26 +- tests/fv3_conf/ccpp_csawmg_run.IN | 46 +-- tests/fv3_conf/ccpp_csawmgshoc_run.IN | 44 +-- tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN | 14 +- tests/fv3_conf/ccpp_gf_thompson_run.IN | 34 +- tests/fv3_conf/ccpp_gfdlmp_run.IN | 30 +- tests/fv3_conf/ccpp_gfs_v15_run.IN | 28 +- tests/fv3_conf/ccpp_gfs_v16_flake_run.IN | 28 +- tests/fv3_conf/ccpp_gfs_v16_run.IN | 28 +- tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN | 46 +-- tests/fv3_conf/ccpp_gocart.IN | 44 +-- tests/fv3_conf/ccpp_gsd_run.IN | 54 +-- tests/fv3_conf/ccpp_gsd_sar_run.IN | 34 +- tests/fv3_conf/ccpp_multigases_run.IN | 34 +- tests/fv3_conf/ccpp_regional_c786_run.IN | 10 +- tests/fv3_conf/ccpp_regional_run.IN | 16 +- tests/fv3_conf/ccpp_satmedmf_run.IN | 24 +- tests/fv3_conf/ccpp_stretched_run.IN | 8 +- tests/fv3_conf/cpld_bmark_run.IN | 52 +-- tests/fv3_conf/cpld_control_run.IN | 50 +-- tests/fv3_conf/cpld_datm_cfsr.IN | 22 +- tests/fv3_conf/cpld_datm_gefs.IN | 22 +- tests/fv3_conf/cpt_run.IN | 26 +- tests/fv3_conf/csawmg3shoc127_run.IN | 28 +- tests/fv3_conf/csawmg_run.IN | 46 +-- tests/fv3_conf/csawmgshoc_run.IN | 30 +- tests/fv3_conf/fv3_gocart.IN | 46 +-- tests/fv3_conf/fv3_regional_run.IN | 6 +- tests/fv3_conf/fv3_run.IN | 32 +- tests/fv3_conf/fv3_stretched_run.IN | 8 +- tests/fv3_conf/gfdlmp_run.IN | 30 +- tests/fv3_conf/gfs_v15_run.IN | 26 +- tests/fv3_conf/gfs_v16_run.IN | 26 +- tests/fv3_conf/gfsv16_csawmg_run.IN | 46 +-- tests/fv3_conf/multigases_run.IN | 34 +- tests/fv3_conf/rasmgshoc_run.IN | 28 +- tests/fv3_conf/satmedmf_run.IN | 24 +- tests/fv3_conf/thompson_run.IN | 28 +- tests/fv3_conf/wsm6_run.IN | 26 +- tests/parm/ice_in_template | 140 ++++---- tests/rt.conf | 24 +- tests/rt.sh | 59 +--- tests/utest | 12 + 57 files changed, 1749 insertions(+), 1747 deletions(-) diff --git a/CICE-interface/CICE b/CICE-interface/CICE index ac617cde36..f773ef3892 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit ac617cde36db5b41029d2c2523b0fb52c711897b +Subproject commit f773ef3892615da4b4af26b4be3e57c9f29b9343 diff --git a/CICE-interface/cice_files.cmake b/CICE-interface/cice_files.cmake index 8f237478f0..2787dbfb21 100644 --- a/CICE-interface/cice_files.cmake +++ b/CICE-interface/cice_files.cmake @@ -28,6 +28,7 @@ list(APPEND cice_shared_files CICE/cicecore/cicedynB/dynamics/ice_dyn_evp.F90 CICE/cicecore/cicedynB/dynamics/ice_dyn_evp_1d.F90 CICE/cicecore/cicedynB/dynamics/ice_dyn_shared.F90 + CICE/cicecore/cicedynB/dynamics/ice_dyn_vp.F90 CICE/cicecore/cicedynB/dynamics/ice_transport_driver.F90 CICE/cicecore/cicedynB/dynamics/ice_transport_remap.F90 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index dd163f0d5a..8512ff84da 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Thu Dec 3 06:07:17 MST 2020 +Sun Dec 6 09:12:30 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/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-20201202/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/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-20201202/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/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 @@ -186,8 +186,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-20201202/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -322,8 +322,8 @@ Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_gsd results .... Test 007 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -550,8 +550,8 @@ Checking test 008 fv3_ccpp_thompson results .... Test 008 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -618,8 +618,8 @@ Checking test 009 fv3_ccpp_thompson_no_aero results .... Test 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -686,8 +686,8 @@ Checking test 010 fv3_ccpp_rrfs_v1beta results .... Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -754,8 +754,8 @@ Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -772,8 +772,8 @@ Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -802,8 +802,8 @@ Checking test 013 fv3_ccpp_control_debug results .... Test 013 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -870,8 +870,8 @@ Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Test 014 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Test 015 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1074,8 +1074,8 @@ Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1216,8 +1216,8 @@ Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62114/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1235,5 +1235,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 3 06:26:05 MST 2020 -Elapsed time: 00h:18m:48s. Have a nice day! +Sun Dec 6 09:28:45 MST 2020 +Elapsed time: 00h:16m:16s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index f969008f7c..6c320ecfa0 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Thu Dec 3 07:49:26 MST 2020 +Mon Dec 7 08:23:11 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201202/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201202/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201202/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_restart_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201202/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201202/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201202/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201202/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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 .........OK Comparing phyf024.nc .........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 @@ -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-20201202/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201202/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201202/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201202/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201202/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -882,8 +882,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1024,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,8 +1080,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1147,8 +1147,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1158,8 +1158,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1167,8 +1167,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1178,19 +1178,19 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 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 ............ALT CHECK......OK Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1239,8 +1239,8 @@ Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1335,8 +1335,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1383,8 +1383,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1431,8 +1431,8 @@ Checking test 029 fv3_ccpp_csawmg results .... Test 029 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,8 +1479,8 @@ Checking test 030 fv3_ccpp_satmedmf results .... Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1527,8 +1527,8 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1575,8 +1575,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,8 +1681,8 @@ Checking test 034 fv3_ccpp_cpt results .... Test 034 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 035 fv3_ccpp_gsd results .... Test 035 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson results .... Test 036 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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 @@ -2045,8 +2045,8 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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 @@ -2113,8 +2113,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Test 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2181,8 +2181,8 @@ Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 041 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 042 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2249,8 +2249,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 042 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gocart_clm_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2297,8 +2297,8 @@ Checking test 043 fv3_ccpp_gocart_clm results .... Test 043 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2365,8 +2365,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Test 044 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2433,8 +2433,8 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2451,8 +2451,8 @@ Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v16beta_debug_prod Checking test 047 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2519,8 +2519,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_debug results .... Test 047 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2587,8 +2587,8 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2655,8 +2655,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gsd_debug_prod Checking test 050 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2723,8 +2723,8 @@ Checking test 050 fv3_ccpp_gsd_debug results .... Test 050 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gsd_diag3d_debug_prod Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2791,8 +2791,8 @@ Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Test 051 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_thompson_debug_prod Checking test 052 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2859,8 +2859,8 @@ Checking test 052 fv3_ccpp_thompson_debug results .... Test 052 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_thompson_no_aero_debug_prod Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2927,8 +2927,8 @@ Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... Test 053 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2995,8 +2995,8 @@ Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Test 054 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3063,8 +3063,8 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42204/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3082,5 +3082,5 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 3 08:43:25 MST 2020 -Elapsed time: 00h:53m:59s. Have a nice day! +Mon Dec 7 09:14:31 MST 2020 +Elapsed time: 00h:51m:20s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 7cd0aa862c..fa9f3eef93 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Thu Dec 3 08:08:08 EST 2020 +Sat Dec 5 12:50:41 EST 2020 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201202/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201202/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201202/INTEL/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201202/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201202/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201202/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201202/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201202/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201202/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201202/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201202/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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 = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -746,8 +746,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -820,8 +820,8 @@ Checking test 014 fv3_ccpp_multigases results .... Test 014 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_control_32bit results .... Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,8 +944,8 @@ Checking test 016 fv3_ccpp_stretched results .... Test 016 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1011,8 +1011,8 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1022,8 +1022,8 @@ Checking test 018 fv3_ccpp_regional_control results .... Test 018 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1031,8 +1031,8 @@ Checking test 019 fv3_ccpp_regional_restart results .... Test 019 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1042,8 +1042,8 @@ Checking test 020 fv3_ccpp_regional_quilt results .... Test 020 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 021 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1053,8 +1053,8 @@ Checking test 021 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 021 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_c768_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_regional_c768_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_regional_c768_prod Checking test 022 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1064,8 +1064,8 @@ Checking test 022 fv3_ccpp_regional_c768 results .... Test 022 fv3_ccpp_regional_c768 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1094,8 +1094,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1114,8 +1114,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1162,8 +1162,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1210,8 +1210,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1258,8 +1258,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1306,8 +1306,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1354,8 +1354,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,8 +1402,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1450,8 +1450,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_cpt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1504,8 +1504,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gsd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1596,8 +1596,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1664,8 +1664,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,8 +1732,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1800,8 +1800,8 @@ Checking test 036 fv3_ccpp_rrfs_v1beta results .... Test 036 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gocart_clm_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gocart_clm_prod Checking test 037 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1848,8 +1848,8 @@ Checking test 037 fv3_ccpp_gocart_clm results .... Test 037 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfs_v16beta_flake_prod Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1916,8 +1916,8 @@ Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Test 038 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1984,8 +1984,8 @@ Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2002,8 +2002,8 @@ Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gsd_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2070,8 +2070,8 @@ Checking test 041 fv3_ccpp_gsd_debug results .... Test 041 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2138,8 +2138,8 @@ Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Test 042 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,8 +2206,8 @@ Checking test 043 fv3_ccpp_thompson_debug results .... Test 043 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,8 +2274,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Test 044 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2342,8 +2342,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Test 045 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,8 +2410,8 @@ Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_24422/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2429,5 +2429,5 @@ Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 3 08:58:28 EST 2020 -Elapsed time: 00h:50m:21s. Have a nice day! +Sat Dec 5 13:21:17 EST 2020 +Elapsed time: 00h:30m:37s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 7c1ed1535a..3993e7b6cd 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Thu Dec 3 16:26:16 EST 2020 +Fri Dec 4 18:53:23 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/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-20201202/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/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-20201202/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/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 @@ -186,8 +186,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-20201202/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -322,8 +322,8 @@ Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_gsd results .... Test 007 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -550,8 +550,8 @@ Checking test 008 fv3_ccpp_thompson results .... Test 008 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -618,8 +618,8 @@ Checking test 009 fv3_ccpp_thompson_no_aero results .... Test 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -686,8 +686,8 @@ Checking test 010 fv3_ccpp_rrfs_v1beta results .... Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -754,8 +754,8 @@ Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -772,8 +772,8 @@ Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -802,8 +802,8 @@ Checking test 013 fv3_ccpp_control_debug results .... Test 013 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -870,8 +870,8 @@ Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Test 014 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Test 015 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1074,8 +1074,8 @@ Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1216,8 +1216,8 @@ Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_118603/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1235,5 +1235,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 3 20:46:27 EST 2020 -Elapsed time: 04h:20m:11s. Have a nice day! +Fri Dec 4 19:54:47 UTC 2020 +Elapsed time: 01h:01m:24s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 8c62c54410..9a05a4347e 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Thu Dec 3 11:13:31 EST 2020 +Fri Dec 4 20:05:11 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_lndp_prod Checking test 015 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_lndp results .... Test 015 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201202/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1393,19 +1393,19 @@ 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-20201202/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 .........OK + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_regional_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_regional_c768_prod Checking test 028 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1415,8 +1415,8 @@ Checking test 028 fv3_ccpp_regional_c768 results .... Test 028 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_control_debug_prod Checking test 029 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1445,8 +1445,8 @@ Checking test 029 fv3_ccpp_control_debug results .... Test 029 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_stretched_nest_debug_prod Checking test 030 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1465,8 +1465,8 @@ Checking test 030 fv3_ccpp_stretched_nest_debug results .... Test 030 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmp_prod Checking test 031 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1513,8 +1513,8 @@ Checking test 031 fv3_ccpp_gfdlmp results .... Test 031 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmprad_gwd_prod Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,8 +1561,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Test 032 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1609,8 +1609,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Test 033 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_csawmg_prod Checking test 034 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,8 +1657,8 @@ Checking test 034 fv3_ccpp_csawmg results .... Test 034 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_satmedmf_prod Checking test 035 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 035 fv3_ccpp_satmedmf results .... Test 035 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_satmedmfq_prod Checking test 036 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1753,8 +1753,8 @@ Checking test 036 fv3_ccpp_satmedmfq results .... Test 036 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmp_32bit_prod Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1801,8 +1801,8 @@ Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Test 037 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1853,8 +1853,8 @@ Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Test 038 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_cpt_prod Checking test 039 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1907,8 +1907,8 @@ Checking test 039 fv3_ccpp_cpt results .... Test 039 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gsd_prod Checking test 040 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1999,8 +1999,8 @@ Checking test 040 fv3_ccpp_gsd results .... Test 040 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_rap_prod Checking test 041 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2067,8 +2067,8 @@ Checking test 041 fv3_ccpp_rap results .... Test 041 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_hrrr_prod Checking test 042 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2135,8 +2135,8 @@ Checking test 042 fv3_ccpp_hrrr results .... Test 042 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_thompson_prod Checking test 043 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2203,8 +2203,8 @@ Checking test 043 fv3_ccpp_thompson results .... Test 043 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_thompson_no_aero_prod Checking test 044 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2271,8 +2271,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero results .... Test 044 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_rrfs_v1beta_prod Checking test 045 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2339,8 +2339,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta results .... Test 045 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v15p2_prod Checking test 046 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2407,8 +2407,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2 results .... Test 046 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v16beta_prod Checking test 047 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2475,8 +2475,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta results .... Test 047 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2543,8 +2543,8 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2611,8 +2611,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 049 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2659,8 +2659,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmg results .... Test 050 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2707,8 +2707,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... Test 051 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2755,8 +2755,8 @@ Checking test 052 fv3_ccpp_gocart_clm results .... Test 052 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2823,8 +2823,8 @@ Checking test 053 fv3_ccpp_gfs_v16beta_flake results .... Test 053 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2891,8 +2891,8 @@ Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2909,8 +2909,8 @@ Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2977,8 +2977,8 @@ Checking test 056 fv3_ccpp_gfs_v15p2_debug results .... Test 056 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3045,8 +3045,8 @@ Checking test 057 fv3_ccpp_gfs_v16beta_debug results .... Test 057 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3113,8 +3113,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3181,8 +3181,8 @@ Checking test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3249,8 +3249,8 @@ Checking test 060 fv3_ccpp_gsd_debug results .... Test 060 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3317,8 +3317,8 @@ Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... Test 061 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3385,8 +3385,8 @@ Checking test 062 fv3_ccpp_thompson_debug results .... Test 062 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3453,8 +3453,8 @@ Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... Test 063 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3521,8 +3521,8 @@ Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... Test 064 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3589,8 +3589,8 @@ Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3607,8 +3607,8 @@ Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_prod Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3660,8 +3660,8 @@ Checking test 067 cpld_control results .... Test 067 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_2threads_prod Checking test 068 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3713,8 +3713,8 @@ Checking test 068 cpld_2threads results .... Test 068 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_decomp_prod Checking test 069 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3766,8 +3766,8 @@ Checking test 069 cpld_decomp results .... Test 069 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_satmedmf_prod Checking test 070 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3819,8 +3819,8 @@ Checking test 070 cpld_satmedmf results .... Test 070 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_ca_prod Checking test 071 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3872,8 +3872,8 @@ Checking test 071 cpld_ca results .... Test 071 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_control_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_mx025_prod Checking test 072 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3928,8 +3928,8 @@ Checking test 072 cpld_control_mx025 results .... Test 072 cpld_control_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_control_mx025_12h_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_12h_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_mx025_12h_prod Checking test 073 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3984,8 +3984,8 @@ Checking test 073 cpld_control_mx025_12h results .... Test 073 cpld_control_mx025_12h PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_restart_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_restart_mx025_prod Checking test 074 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4040,8 +4040,8 @@ Checking test 074 cpld_restart_mx025 results .... Test 074 cpld_restart_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_c192_prod Checking test 075 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4093,8 +4093,8 @@ Checking test 075 cpld_control_c192 results .... Test 075 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_c384_prod Checking test 076 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4149,8 +4149,8 @@ Checking test 076 cpld_control_c384 results .... Test 076 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_controlfrac_c384_prod Checking test 077 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4205,8 +4205,8 @@ Checking test 077 cpld_controlfrac_c384 results .... Test 077 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_bmark_prod Checking test 078 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4261,8 +4261,8 @@ Checking test 078 cpld_bmark results .... Test 078 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_bmark_wave_prod Checking test 079 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4320,8 +4320,8 @@ Checking test 079 cpld_bmark_wave results .... Test 079 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/cpld_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_debug_prod Checking test 080 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4373,8 +4373,8 @@ Checking test 080 cpld_debug results .... Test 080 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/datm_control_cfsr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/datm_control_cfsr_prod Checking test 081 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4382,8 +4382,8 @@ Checking test 081 datm_control_cfsr results .... Test 081 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/datm_control_gefs_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/datm_control_gefs_prod Checking test 082 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4391,8 +4391,8 @@ Checking test 082 datm_control_gefs results .... Test 082 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/datm_mx025_cfsr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/datm_mx025_cfsr_prod Checking test 083 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4403,8 +4403,8 @@ Checking test 083 datm_mx025_cfsr results .... Test 083 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jiande.Wang/FV3_RT/rt_269010/datm_mx025_gefs_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/datm_mx025_gefs_prod Checking test 084 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4416,5 +4416,5 @@ Test 084 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 3 12:49:54 EST 2020 -Elapsed time: 01h:36m:24s. Have a nice day! +Fri Dec 4 21:42:30 UTC 2020 +Elapsed time: 01h:37m:19s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 8c7551df5c..13ae2d00ff 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Thu Dec 3 13:07:47 GMT 2020 +Sat Dec 5 17:50:59 GMT 2020 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_decomp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_2threads_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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-20201202/INTEL/fv3_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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-20201202/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_read_inc_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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-20201202/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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-20201202/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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-20201202/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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 .........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 @@ -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-20201202/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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-20201202/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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-20201202/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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-20201202/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_stochy_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_iau_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_lheatstrg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_multigases_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_control_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_stretched_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,8 +1012,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_stretched_nest_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,8 +1079,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_regional_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1090,8 +1090,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_regional_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_regional_quilt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1110,19 +1110,19 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 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 ............ALT CHECK......OK Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_c768_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_regional_c768_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_c768_prod Checking test 023 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1132,8 +1132,8 @@ Checking test 023 fv3_ccpp_regional_c768 results .... Test 023 fv3_ccpp_regional_c768 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_control_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1162,8 +1162,8 @@ Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1182,8 +1182,8 @@ Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gfdlmp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1230,8 +1230,8 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1278,8 +1278,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1326,8 +1326,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_csawmg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1374,8 +1374,8 @@ Checking test 029 fv3_ccpp_csawmg results .... Test 029 fv3_ccpp_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_satmedmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1422,8 +1422,8 @@ Checking test 030 fv3_ccpp_satmedmf results .... Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_satmedmfq_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1470,8 +1470,8 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1518,8 +1518,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_cpt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1572,8 +1572,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gsd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1664,8 +1664,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,8 +1732,8 @@ Checking test 035 fv3_ccpp_thompson results .... Test 035 fv3_ccpp_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1800,8 +1800,8 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Test 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gocart_clm_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gocart_clm_prod Checking test 037 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1848,8 +1848,8 @@ Checking test 037 fv3_ccpp_gocart_clm results .... Test 037 fv3_ccpp_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfs_v16beta_flake_prod Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1916,8 +1916,8 @@ Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Test 038 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1984,8 +1984,8 @@ Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2002,8 +2002,8 @@ Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gsd_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2070,8 +2070,8 @@ Checking test 041 fv3_ccpp_gsd_debug results .... Test 041 fv3_ccpp_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2138,8 +2138,8 @@ Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Test 042 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,8 +2206,8 @@ Checking test 043 fv3_ccpp_thompson_debug results .... Test 043 fv3_ccpp_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,8 +2274,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Test 044 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2342,8 +2342,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Test 045 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,8 +2410,8 @@ Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_210000/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2429,5 +2429,5 @@ Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 3 14:46:35 GMT 2020 -Elapsed time: 01h:38m:49s. Have a nice day! +Sat Dec 5 19:28:03 GMT 2020 +Elapsed time: 01h:37m:05s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 4b92bfafcb..61eac226dc 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Dec 3 10:11:47 CST 2020 +Fri Dec 4 14:19:40 CST 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201202/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201202/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201202/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201202/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201202/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201202/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201202/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201202/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201202/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201202/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201202/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201202/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,8 +883,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1055,8 +1055,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_control_32bit results .... Test 019 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1179,8 +1179,8 @@ Checking test 020 fv3_ccpp_stretched results .... Test 020 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 021 fv3_ccpp_stretched_nest results .... Test 021 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1257,8 +1257,8 @@ Checking test 022 fv3_ccpp_regional_control results .... Test 022 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 023 fv3_ccpp_regional_restart results .... Test 023 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1277,19 +1277,19 @@ Checking test 024 fv3_ccpp_regional_quilt results .... Test 024 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_regional_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1299,8 +1299,8 @@ Checking test 026 fv3_ccpp_regional_c768 results .... Test 026 fv3_ccpp_regional_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1329,8 +1329,8 @@ Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -1349,8 +1349,8 @@ Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1397,8 +1397,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -1445,8 +1445,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -1493,8 +1493,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1541,8 +1541,8 @@ Checking test 032 fv3_ccpp_csawmg results .... Test 032 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1589,8 +1589,8 @@ Checking test 033 fv3_ccpp_satmedmf results .... Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1637,8 +1637,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1689,8 +1689,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1743,8 +1743,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1835,8 +1835,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,8 +1903,8 @@ Checking test 038 fv3_ccpp_thompson results .... Test 038 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1971,8 +1971,8 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2039,8 +2039,8 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v15p2_prod Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,8 +2107,8 @@ Checking test 041 fv3_ccpp_gfs_v15p2 results .... Test 041 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v16beta_prod Checking test 042 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2175,8 +2175,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta results .... Test 042 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2243,8 +2243,8 @@ Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2311,8 +2311,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2359,8 +2359,8 @@ Checking test 045 fv3_ccpp_gfsv16_csawmg results .... Test 045 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2407,8 +2407,8 @@ Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... Test 046 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2455,8 +2455,8 @@ Checking test 047 fv3_ccpp_gocart_clm results .... Test 047 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2523,8 +2523,8 @@ Checking test 048 fv3_ccpp_gfs_v16beta_flake results .... Test 048 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2591,8 +2591,8 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2609,8 +2609,8 @@ Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2677,8 +2677,8 @@ Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... Test 051 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2745,8 +2745,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_debug results .... Test 052 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2813,8 +2813,8 @@ Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2881,8 +2881,8 @@ Checking test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2949,8 +2949,8 @@ Checking test 055 fv3_ccpp_gsd_debug results .... Test 055 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -3017,8 +3017,8 @@ Checking test 056 fv3_ccpp_gsd_diag3d_debug results .... Test 056 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -3085,8 +3085,8 @@ Checking test 057 fv3_ccpp_thompson_debug results .... Test 057 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -3153,8 +3153,8 @@ Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... Test 058 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -3221,8 +3221,8 @@ Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... Test 059 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -3289,8 +3289,8 @@ Checking test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -3307,8 +3307,8 @@ Checking test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_prod Checking test 062 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3360,8 +3360,8 @@ Checking test 062 cpld_control results .... Test 062 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_2threads_prod Checking test 063 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3413,8 +3413,8 @@ Checking test 063 cpld_2threads results .... Test 063 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_decomp_prod Checking test 064 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3466,8 +3466,8 @@ Checking test 064 cpld_decomp results .... Test 064 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_satmedmf_prod Checking test 065 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3519,8 +3519,8 @@ Checking test 065 cpld_satmedmf results .... Test 065 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_ca_prod Checking test 066 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3572,8 +3572,8 @@ Checking test 066 cpld_ca results .... Test 066 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_control_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_mx025_prod Checking test 067 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3628,8 +3628,8 @@ Checking test 067 cpld_control_mx025 results .... Test 067 cpld_control_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_control_mx025_12h_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_12h_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_mx025_12h_prod Checking test 068 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3684,8 +3684,8 @@ Checking test 068 cpld_control_mx025_12h results .... Test 068 cpld_control_mx025_12h PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_restart_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_restart_mx025_prod Checking test 069 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3740,8 +3740,8 @@ Checking test 069 cpld_restart_mx025 results .... Test 069 cpld_restart_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_c192_prod Checking test 070 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3793,8 +3793,8 @@ Checking test 070 cpld_control_c192 results .... Test 070 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_c384_prod Checking test 071 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3849,8 +3849,8 @@ Checking test 071 cpld_control_c384 results .... Test 071 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_controlfrac_c384_prod Checking test 072 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3905,8 +3905,8 @@ Checking test 072 cpld_controlfrac_c384 results .... Test 072 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_bmark_prod Checking test 073 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3961,8 +3961,8 @@ Checking test 073 cpld_bmark results .... Test 073 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_bmark_wave_prod Checking test 074 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4020,8 +4020,8 @@ Checking test 074 cpld_bmark_wave results .... Test 074 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/cpld_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_debug_prod Checking test 075 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4073,8 +4073,8 @@ Checking test 075 cpld_debug results .... Test 075 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/datm_control_cfsr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/datm_control_cfsr_prod Checking test 076 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4082,8 +4082,8 @@ Checking test 076 datm_control_cfsr results .... Test 076 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/datm_control_gefs_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/datm_control_gefs_prod Checking test 077 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4091,8 +4091,8 @@ Checking test 077 datm_control_gefs results .... Test 077 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/datm_mx025_cfsr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/datm_mx025_cfsr_prod Checking test 078 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4103,8 +4103,8 @@ Checking test 078 datm_mx025_cfsr results .... Test 078 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_88365/datm_mx025_gefs_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/datm_mx025_gefs_prod Checking test 079 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4116,5 +4116,5 @@ Test 079 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 3 11:01:18 CST 2020 -Elapsed time: 00h:49m:32s. Have a nice day! +Fri Dec 4 15:11:25 CST 2020 +Elapsed time: 00h:51m:45s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 7e537bc285..7f27ff0bd6 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Thu Dec 3 16:40:09 UTC 2020 +Fri Dec 4 20:14:46 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201202/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201202/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201202/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201202/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201202/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201202/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201202/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201202/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201202/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201202/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201202/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,8 +1012,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,8 +1079,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1090,8 +1090,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1121,8 +1121,8 @@ Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1151,8 +1151,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1171,8 +1171,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,8 +1267,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,8 +1363,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,8 +1411,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,8 +1459,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,8 +1507,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,8 +1559,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,8 +1613,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 035 fv3_ccpp_thompson results .... Test 035 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Test 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_rrfs_v1beta_prod Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_rrfs_v1beta results .... Test 037 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfsv16_csawmg_prod Checking test 038 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1957,8 +1957,8 @@ Checking test 038 fv3_ccpp_gfsv16_csawmg results .... Test 038 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfsv16_csawmgt_prod Checking test 039 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2005,8 +2005,8 @@ Checking test 039 fv3_ccpp_gfsv16_csawmgt results .... Test 039 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gocart_clm_prod Checking test 040 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2053,8 +2053,8 @@ Checking test 040 fv3_ccpp_gocart_clm results .... Test 040 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfs_v16beta_flake_prod Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2121,8 +2121,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... Test 041 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2189,8 +2189,8 @@ Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 042 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2207,8 +2207,8 @@ Checking test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gsd_debug_prod Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2275,8 +2275,8 @@ Checking test 044 fv3_ccpp_gsd_debug results .... Test 044 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gsd_diag3d_debug_prod Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2343,8 +2343,8 @@ Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Test 045 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_thompson_debug_prod Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2411,8 +2411,8 @@ Checking test 046 fv3_ccpp_thompson_debug results .... Test 046 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_thompson_no_aero_debug_prod Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2479,8 +2479,8 @@ Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Test 047 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2547,8 +2547,8 @@ Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Test 048 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2615,8 +2615,8 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_31000/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2634,5 +2634,5 @@ Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 3 17:15:40 UTC 2020 -Elapsed time: 00h:35m:31s. Have a nice day! +Fri Dec 4 20:48:31 UTC 2020 +Elapsed time: 00h:33m:45s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index c0d59c4259..43609c2369 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Thu Dec 3 16:34:58 UTC 2020 +Sat Dec 5 12:53:11 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201202/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201202/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201202/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201202/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201202/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201202/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201202/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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,8 +447,8 @@ 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 ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201202/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201202/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201202/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -863,8 +863,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -912,8 +912,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -986,8 +986,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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 @@ -1054,8 +1054,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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 @@ -1177,8 +1177,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1188,8 +1188,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1197,8 +1197,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1208,19 +1208,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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 ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_regional_c768_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_regional_c768_prod Checking test 025 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1230,8 +1230,8 @@ Checking test 025 fv3_ccpp_regional_c768 results .... Test 025 fv3_ccpp_regional_c768 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_control_debug_prod Checking test 026 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1260,8 +1260,8 @@ Checking test 026 fv3_ccpp_control_debug results .... Test 026 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_stretched_nest_debug_prod Checking test 027 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1280,8 +1280,8 @@ Checking test 027 fv3_ccpp_stretched_nest_debug results .... Test 027 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,8 +1328,8 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,8 +1376,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1424,8 +1424,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1472,8 +1472,8 @@ Checking test 031 fv3_ccpp_csawmg results .... Test 031 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1520,8 +1520,8 @@ Checking test 032 fv3_ccpp_satmedmf results .... Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1568,8 +1568,8 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1616,8 +1616,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1668,8 +1668,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,8 +1722,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1814,8 +1814,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1882,8 +1882,8 @@ Checking test 038 fv3_ccpp_thompson results .... Test 038 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1950,8 +1950,8 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2018,8 +2018,8 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2066,8 +2066,8 @@ Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Test 041 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2114,8 +2114,8 @@ Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Test 042 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2162,8 +2162,8 @@ Checking test 043 fv3_ccpp_gocart_clm results .... Test 043 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2230,8 +2230,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Test 044 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2298,8 +2298,8 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2316,8 +2316,8 @@ Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2384,8 +2384,8 @@ Checking test 047 fv3_ccpp_gsd_debug results .... Test 047 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2452,8 +2452,8 @@ Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Test 048 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2520,8 +2520,8 @@ Checking test 049 fv3_ccpp_thompson_debug results .... Test 049 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2588,8 +2588,8 @@ Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Test 050 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2656,8 +2656,8 @@ Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Test 051 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2724,8 +2724,8 @@ Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2742,8 +2742,8 @@ Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_prod Checking test 054 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2795,8 +2795,8 @@ Checking test 054 cpld_control results .... Test 054 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_2threads_prod Checking test 055 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2848,8 +2848,8 @@ Checking test 055 cpld_2threads results .... Test 055 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_decomp_prod Checking test 056 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2901,8 +2901,8 @@ Checking test 056 cpld_decomp results .... Test 056 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_satmedmf_prod Checking test 057 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2954,8 +2954,8 @@ Checking test 057 cpld_satmedmf results .... Test 057 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_ca_prod Checking test 058 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3007,8 +3007,8 @@ Checking test 058 cpld_ca results .... Test 058 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_control_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_mx025_prod Checking test 059 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3063,8 +3063,8 @@ Checking test 059 cpld_control_mx025 results .... Test 059 cpld_control_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_control_mx025_12h_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_mx025_12h_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_mx025_12h_prod Checking test 060 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3119,8 +3119,8 @@ Checking test 060 cpld_control_mx025_12h results .... Test 060 cpld_control_mx025_12h PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_restart_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_restart_mx025_prod Checking test 061 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3175,8 +3175,8 @@ Checking test 061 cpld_restart_mx025 results .... Test 061 cpld_restart_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_c192_prod Checking test 062 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3228,8 +3228,8 @@ Checking test 062 cpld_control_c192 results .... Test 062 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_c384_prod Checking test 063 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3284,8 +3284,8 @@ Checking test 063 cpld_control_c384 results .... Test 063 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_controlfrac_c384_prod Checking test 064 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3340,8 +3340,8 @@ Checking test 064 cpld_controlfrac_c384 results .... Test 064 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_bmark_prod Checking test 065 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3396,8 +3396,8 @@ Checking test 065 cpld_bmark results .... Test 065 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_bmark_wave_prod Checking test 066 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3455,8 +3455,8 @@ Checking test 066 cpld_bmark_wave results .... Test 066 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201202/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_13002/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_debug_prod Checking test 067 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3509,5 +3509,5 @@ Test 067 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 3 18:33:34 UTC 2020 -Elapsed time: 01h:58m:40s. Have a nice day! +Sat Dec 5 14:57:47 UTC 2020 +Elapsed time: 02h:04m:38s. Have a nice day! diff --git a/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN b/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN index 757a73c218..52eaa53f67 100644 --- a/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN +++ b/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN @@ -3,47 +3,47 @@ mkdir INPUT RESTART if [ $IMP_PHYSICS = 8 ]; then if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/* INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/* INPUT/ else - cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/grid_spec*.nc INPUT/ - cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/C96_grid*.nc INPUT/ - cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/oro_data*.nc INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/grid_spec*.nc INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/C96_grid*.nc INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/oro_data*.nc INPUT/ cp ../fv3_ccpp_gsd_coldstart${RT_SUFFIX}/RESTART/* INPUT/ fi elif [ $IMP_PHYSICS = 15 ]; then if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT/* INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT/* INPUT/ else - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT/ fi else echo "ERROR, no input data configured for IMP_PHYSICS=${IMP_PHYSICS}" exit 1 fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . # Copy landuse/soil/vegetation parameter tables for HWRF Noah LSM -cp @[RTPWD]/FV3_input_data_hafs/GENPARM.TBL . -cp @[RTPWD]/FV3_input_data_hafs/SOILPARM.TBL . -cp @[RTPWD]/FV3_input_data_hafs/VEGPARM.TBL . +cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/GENPARM.TBL . +cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/SOILPARM.TBL . +cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/VEGPARM.TBL . # Copy diag table, depending on microphysics choice if [ $IMP_PHYSICS = 8 ]; then - cp @[RTPWD]/FV3_input_data_gsd/diag_table_gsd_noah diag_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/diag_table_gsd_noah diag_table elif [ $IMP_PHYSICS = 15 ]; then if [ $IOVR = 4 ]; then - cp @[RTPWD]/FV3_input_data_hafs/diag_table_FA_HWRF diag_table + cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/diag_table_FA_HWRF diag_table else - cp @[RTPWD]/FV3_input_data_hafs/diag_table_FA diag_table + cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/diag_table_FA diag_table fi else echo "ERROR, no diag table configured for IMP_PHYSICS=${IMP_PHYSICS}" @@ -54,21 +54,21 @@ fi if [ $IMP_PHYSICS = 8 ]; then if [ $LTAEROSOL = .T. ]; then if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then - cp @[RTPWD]/FV3_input_data_gsd/field_table_gsd field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_gsd field_table else - cp @[RTPWD]/FV3_input_data_gsd/field_table_gf_thompson field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_gf_thompson field_table fi else if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then echo "ERROR, no field table configured for Thompson MP without aerosols but with MYNN or SATMEDMF (need TKE)" exit 1 else - cp @[RTPWD]/FV3_input_data_gsd/field_table_thompson_noaero field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_thompson_noaero field_table fi fi elif [ $IMP_PHYSICS = 15 ]; then # Copy field table for Ferrier-Aligo MP - cp @[RTPWD]/FV3_input_data_hafs/field_table_FA_nwat4 field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/field_table_FA_nwat4 field_table else echo "ERROR, no field table configured for IMP_PHYSICS=${IMP_PHYSICS}" exit 1 @@ -76,10 +76,10 @@ fi # Thompson or F-A MP lookup tables if [ $IMP_PHYSICS = 8 ]; then - cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qs.dat . - cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qg.dat . - cp @[RTPWD]/FV3_input_data_gsd/freezeH2O.dat . - cp @[RTPWD]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qg.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . elif [ $IMP_PHYSICS = 15 ]; then - cp @[RTPWD]/FV3_input_data/DETAMPNEW_DATA* . + cp @[INPUTDATA_ROOT]/FV3_input_data/DETAMPNEW_DATA* . fi diff --git a/tests/fv3_conf/ccpp_control_run.IN b/tests/fv3_conf/ccpp_control_run.IN index 56aa3be9a2..73e03d1bde 100644 --- a/tests/fv3_conf/ccpp_control_run.IN +++ b/tests/fv3_conf/ccpp_control_run.IN @@ -12,15 +12,15 @@ echo "inputdir=$inputdir,NPX=$NPX" UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT else - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -35,24 +35,24 @@ else fi fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then - cp @[RTPWD]/${inputdir}/INPUT/global_o3prdlos.f77 . + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/global_o3prdlos.f77 . fi if [ $H2O_PHYS = .T. ]; then - cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 + cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 fi -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . if [ $CPLWAV = .T. ]; then -cp @[RTPWD]/WW3_input_data/mod_def.* . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . +cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . fi diff --git a/tests/fv3_conf/ccpp_cpt_run.IN b/tests/fv3_conf/ccpp_cpt_run.IN index 3976445029..8828656bed 100644 --- a/tests/fv3_conf/ccpp_cpt_run.IN +++ b/tests/fv3_conf/ccpp_cpt_run.IN @@ -1,20 +1,20 @@ rm -fr INPUT RESTART inputdir=FV3_input_data_127 if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/diag_table_mg3tke diag_table -cp @[RTPWD]/${inputdir}/field_table_csawmg3shoc field_table -cp @[RTPWD]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_mg3tke diag_table +cp @[INPUTDATA_ROOT]/${inputdir}/field_table_csawmg3shoc field_table +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . diff --git a/tests/fv3_conf/ccpp_csawmg3shoc127_run.IN b/tests/fv3_conf/ccpp_csawmg3shoc127_run.IN index 3976445029..8828656bed 100644 --- a/tests/fv3_conf/ccpp_csawmg3shoc127_run.IN +++ b/tests/fv3_conf/ccpp_csawmg3shoc127_run.IN @@ -1,20 +1,20 @@ rm -fr INPUT RESTART inputdir=FV3_input_data_127 if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/diag_table_mg3tke diag_table -cp @[RTPWD]/${inputdir}/field_table_csawmg3shoc field_table -cp @[RTPWD]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_mg3tke diag_table +cp @[INPUTDATA_ROOT]/${inputdir}/field_table_csawmg3shoc field_table +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . diff --git a/tests/fv3_conf/ccpp_csawmg_run.IN b/tests/fv3_conf/ccpp_csawmg_run.IN index aeccc7cbd2..c2258f677c 100644 --- a/tests/fv3_conf/ccpp_csawmg_run.IN +++ b/tests/fv3_conf/ccpp_csawmg_run.IN @@ -2,15 +2,15 @@ rm -fr INPUT RESTART UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT else - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -25,26 +25,26 @@ else fi fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_mgrs diag_table -#cp @[RTPWD]/FV3_input_data/field_table_mgrs field_table -cp @[RTPWD]/FV3_input_data/field_table_csawmg field_table -cp @[RTPWD]/FV3_input_data/*configure . -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgrs diag_table +#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgrs field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_csawmg field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . for n in 01 02 03 04 05 06 07 08 09 10 11 12; do ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc done -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat diff --git a/tests/fv3_conf/ccpp_csawmgshoc_run.IN b/tests/fv3_conf/ccpp_csawmgshoc_run.IN index ea3763fc7e..6c7bbd8ed3 100644 --- a/tests/fv3_conf/ccpp_csawmgshoc_run.IN +++ b/tests/fv3_conf/ccpp_csawmgshoc_run.IN @@ -1,31 +1,31 @@ rm -fr INPUT RESTART if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_mgtkers diag_table -#cp @[RTPWD]/FV3_input_data/field_table_mgtkers field_table -cp @[RTPWD]/FV3_input_data/field_table_csawmgshoc field_table -cp @[RTPWD]/FV3_input_data/*configure . -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgtkers diag_table +#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgtkers field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_csawmgshoc field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . for n in 01 02 03 04 05 06 07 08 09 10 11 12; do ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc done -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat diff --git a/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN b/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN index 0ca83a23c9..86ac62ff16 100644 --- a/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN +++ b/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN @@ -2,7 +2,7 @@ rm -fr INPUT RESTART mkdir INPUT RESTART if [ $WARM_START = .F. ]; then - rsync -av @[RTPWD]/FV3_input_data_regional_esg/ ./ + rsync -av @[INPUTDATA_ROOT]/FV3_input_data_regional_esg/ ./ else echo "ERROR, warmstart runs not configured for regional HAFs runs on ESG grid" exit 1 @@ -13,9 +13,9 @@ if [ $IMP_PHYSICS = 8 ]; then ln -sf diag_table.thompson diag_table elif [ $IMP_PHYSICS = 15 ]; then if [ $IOVR = 4 ]; then - cp @[RTPWD]/FV3_input_data_hafs/diag_table_FA_HWRF diag_table + cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/diag_table_FA_HWRF diag_table else - cp @[RTPWD]/FV3_input_data_hafs/diag_table_FA diag_table + cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/diag_table_FA diag_table fi else echo "ERROR, no diag table configured for IMP_PHYSICS=${IMP_PHYSICS}" @@ -26,21 +26,21 @@ fi if [ $IMP_PHYSICS = 8 ]; then if [ $LTAEROSOL = .T. ]; then if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then - cp @[RTPWD]/FV3_input_data_gsd/field_table_gsd field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_gsd field_table else - cp @[RTPWD]/FV3_input_data_gsd/field_table_gf_thompson field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_gf_thompson field_table fi else if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then echo "ERROR, no field table configured for Thompson MP without aerosols but with MYNN or SATMEDMF (need TKE)" exit 1 else - cp @[RTPWD]/FV3_input_data_gsd/field_table_thompson_noaero field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_thompson_noaero field_table fi fi elif [ $IMP_PHYSICS = 15 ]; then # Copy field table for Ferrier-Aligo MP - cp @[RTPWD]/FV3_input_data_hafs/field_table_FA_nwat4 field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/field_table_FA_nwat4 field_table else echo "ERROR, no field table configured for IMP_PHYSICS=${IMP_PHYSICS}" exit 1 diff --git a/tests/fv3_conf/ccpp_gf_thompson_run.IN b/tests/fv3_conf/ccpp_gf_thompson_run.IN index 23c529ccf7..c2faa7eaa4 100644 --- a/tests/fv3_conf/ccpp_gf_thompson_run.IN +++ b/tests/fv3_conf/ccpp_gf_thompson_run.IN @@ -1,23 +1,23 @@ rm -fr INPUT RESTART mkdir INPUT RESTART -cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/* INPUT +cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/* INPUT -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data_gsd/diag_table_gf_thompson diag_table -cp @[RTPWD]/FV3_input_data_gsd/field_table_gf_thompson field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/diag_table_gf_thompson diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_gf_thompson field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . # Thompson MP lookup tables - copy standard and SIONlib tables of precomputed tables -cp @[RTPWD]/FV3_input_data_gsd/thompson_tables_precomp.sl . -cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qs.dat . -cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qg.dat . -cp @[RTPWD]/FV3_input_data_gsd/freezeH2O.dat . -cp @[RTPWD]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/thompson_tables_precomp.sl . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qg.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . diff --git a/tests/fv3_conf/ccpp_gfdlmp_run.IN b/tests/fv3_conf/ccpp_gfdlmp_run.IN index 5fda8b7353..f0ace7e854 100644 --- a/tests/fv3_conf/ccpp_gfdlmp_run.IN +++ b/tests/fv3_conf/ccpp_gfdlmp_run.IN @@ -2,15 +2,15 @@ rm -fr INPUT RESTART UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT else - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -25,18 +25,18 @@ else fi fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[RTPWD]/FV3_input_data/field_table_gfdlmp field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . if [ $CPLWAV = .T. ]; then -cp @[RTPWD]/WW3_input_data/mod_def.* . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . fi diff --git a/tests/fv3_conf/ccpp_gfs_v15_run.IN b/tests/fv3_conf/ccpp_gfs_v15_run.IN index 60ef814d81..6318e9b7b6 100644 --- a/tests/fv3_conf/ccpp_gfs_v15_run.IN +++ b/tests/fv3_conf/ccpp_gfs_v15_run.IN @@ -1,23 +1,23 @@ rm -fr INPUT RESTART if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[RTPWD]/FV3_input_data/field_table_gfdlmp field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . if [ $DO_RRTMGP = .T. ]; then -cp @[RTPWD]/FV3_input_data_RRTMGP/* . +cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . fi diff --git a/tests/fv3_conf/ccpp_gfs_v16_flake_run.IN b/tests/fv3_conf/ccpp_gfs_v16_flake_run.IN index 51f7d30111..3e57770190 100644 --- a/tests/fv3_conf/ccpp_gfs_v16_flake_run.IN +++ b/tests/fv3_conf/ccpp_gfs_v16_flake_run.IN @@ -1,20 +1,20 @@ rm -fr INPUT RESTART if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . - cp -r @[RTPWD]/FV3_input_data/ORO_FLAKE/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/ORO_FLAKE/* ./INPUT mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[RTPWD]/FV3_input_data_gsd/field_table_suite2 field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_suite2 field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . diff --git a/tests/fv3_conf/ccpp_gfs_v16_run.IN b/tests/fv3_conf/ccpp_gfs_v16_run.IN index f0abc3a3d7..11827cbc9d 100644 --- a/tests/fv3_conf/ccpp_gfs_v16_run.IN +++ b/tests/fv3_conf/ccpp_gfs_v16_run.IN @@ -1,23 +1,23 @@ rm -fr INPUT RESTART if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[RTPWD]/FV3_input_data_gsd/field_table_suite2 field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_suite2 field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . if [ $DO_RRTMGP = .T. ]; then -cp @[RTPWD]/FV3_input_data_RRTMGP/* . +cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . fi diff --git a/tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN b/tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN index fa04661e62..9b380ec48a 100644 --- a/tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN +++ b/tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN @@ -1,32 +1,32 @@ if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -#cp @[RTPWD]/FV3_input_data/diag_table_mgrs diag_table -cp @[RTPWD]/FV3_input_data/diag_table_aod diag_table -#cp @[RTPWD]/FV3_input_data/field_table_mgrs field_table -cp @[RTPWD]/FV3_input_data/field_table_csawmgshoc field_table -cp @[RTPWD]/FV3_input_data/*configure . -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +#cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgrs diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_aod diag_table +#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgrs field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_csawmgshoc field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . for n in 01 02 03 04 05 06 07 08 09 10 11 12; do ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc done -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat diff --git a/tests/fv3_conf/ccpp_gocart.IN b/tests/fv3_conf/ccpp_gocart.IN index bdfee0e350..6b65e20ee2 100644 --- a/tests/fv3_conf/ccpp_gocart.IN +++ b/tests/fv3_conf/ccpp_gocart.IN @@ -1,31 +1,31 @@ if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -#cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -#cp @[RTPWD]/FV3_input_data/diag_table_gocart diag_table -cp @[RTPWD]/FV3_input_data/diag_table_aod diag_table -cp @[RTPWD]/FV3_input_data/field_table_gfdlmp field_table -cp @[RTPWD]/FV3_input_data/*configure . -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +#cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +#cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gocart diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_aod diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . for n in 01 02 03 04 05 06 07 08 09 10 11 12; do ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc done -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat diff --git a/tests/fv3_conf/ccpp_gsd_run.IN b/tests/fv3_conf/ccpp_gsd_run.IN index c05a9202fc..f76b4843bb 100644 --- a/tests/fv3_conf/ccpp_gsd_run.IN +++ b/tests/fv3_conf/ccpp_gsd_run.IN @@ -1,31 +1,31 @@ rm -fr INPUT RESTART mkdir INPUT RESTART if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/* INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/* INPUT/ else - cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/grid_spec*.nc INPUT/ - cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/C96_grid*.nc INPUT/ - cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/oro_data*.nc INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/grid_spec*.nc INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/C96_grid*.nc INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/oro_data*.nc INPUT/ cp ../fv3_ccpp_gsd_coldstart${RT_SUFFIX}/RESTART/* INPUT/ fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . # Copy diag table file depending on LSM if [ $LSM = 1 ] || [ $LSM = 2 ]; then - cp @[RTPWD]/FV3_input_data_gsd/diag_table_gsd_noah diag_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/diag_table_gsd_noah diag_table elif [ $LSM = 3 ]; then if [ $LDIAG3D = .T. ] && [ $QDIAG3D = .T. ]; then - cp @[RTPWD]/FV3_input_data_gsd/diag_table_gsd_ruc_diag3d diag_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/diag_table_gsd_ruc_diag3d diag_table else - cp @[RTPWD]/FV3_input_data_gsd/diag_table_gsd_ruc diag_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/diag_table_gsd_ruc diag_table fi fi @@ -33,39 +33,39 @@ fi if [ $IMP_PHYSICS = 8 ]; then if [ $LTAEROSOL = .T. ]; then if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then - cp @[RTPWD]/FV3_input_data_gsd/field_table_gsd field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_gsd field_table else - cp @[RTPWD]/FV3_input_data_gsd/field_table_gf_thompson field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_gf_thompson field_table fi else if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then echo "ERROR, no field table configured for Thompson MP without aerosols but with MYNN or SATMEDMF (need TKE)" exit 1 else - cp @[RTPWD]/FV3_input_data_gsd/field_table_thompson_noaero field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_thompson_noaero field_table fi fi elif [ $IMP_PHYSICS = 11 ]; then if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then - cp @[RTPWD]/FV3_input_data_gsd/field_table_suite2 field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_suite2 field_table else - cp @[RTPWD]/FV3_input_data/field_table_gfdlmp field_table + cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table fi else echo "ERROR, no field table configured for IMP_PHYSICS=${IMP_PHYSICS}" exit 1 fi -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . # Thompson MP lookup tables - copy standard and SIONlib tables of precomputed tables if [ $IMP_PHYSICS = 8 ]; then - cp @[RTPWD]/FV3_input_data_gsd/thompson_tables_precomp.sl . - cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qs.dat . - cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qg.dat . - cp @[RTPWD]/FV3_input_data_gsd/freezeH2O.dat . - cp @[RTPWD]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/thompson_tables_precomp.sl . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qg.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . fi if [ $GWD_OPT = 3 ] || [ $GWD_OPT = 33 ] || [ $GWD_OPT = 2 ] || [ $GWD_OPT = 22 ]; then - cp @[RTPWD]/FV3_input_data_gsd/drag_suite/* INPUT/ + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/drag_suite/* INPUT/ fi diff --git a/tests/fv3_conf/ccpp_gsd_sar_run.IN b/tests/fv3_conf/ccpp_gsd_sar_run.IN index 64d557e6ed..8a434bccc6 100644 --- a/tests/fv3_conf/ccpp_gsd_sar_run.IN +++ b/tests/fv3_conf/ccpp_gsd_sar_run.IN @@ -1,25 +1,25 @@ rm -fr INPUT RESTART mkdir INPUT RESTART -cp @[RTPWD]/FV3_input_data_sar/INPUT/*.nc INPUT/ +cp @[INPUTDATA_ROOT]/FV3_input_data_sar/INPUT/*.nc INPUT/ -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . # Copy SAR diag and field table files -cp @[RTPWD]/FV3_input_data_sar/diag_table_gsd_sar diag_table -cp @[RTPWD]/FV3_input_data_sar/field_table_gsd_sar field_table +cp @[INPUTDATA_ROOT]/FV3_input_data_sar/diag_table_gsd_sar diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data_sar/field_table_gsd_sar field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . # Thompson MP lookup tables - copy standard and SIONlib tables of precomputed tables -cp @[RTPWD]/FV3_input_data_gsd/thompson_tables_precomp.sl . -cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qs.dat . -cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qg.dat . -cp @[RTPWD]/FV3_input_data_gsd/freezeH2O.dat . -cp @[RTPWD]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/thompson_tables_precomp.sl . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qg.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . diff --git a/tests/fv3_conf/ccpp_multigases_run.IN b/tests/fv3_conf/ccpp_multigases_run.IN index 696e4929ca..4f85cffe62 100644 --- a/tests/fv3_conf/ccpp_multigases_run.IN +++ b/tests/fv3_conf/ccpp_multigases_run.IN @@ -1,32 +1,32 @@ inputdir=FV3_input_data_149 if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then -cp @[RTPWD]/${inputdir}/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/global_o3prdlos.f77 . fi if [ $H2O_PHYS = .T. ]; then - cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 + cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 fi -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*configure . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/diag_table_multi_gases diag_table -cp @[RTPWD]/${inputdir}/field_table_multi_gases field_table +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_multi_gases diag_table +cp @[INPUTDATA_ROOT]/${inputdir}/field_table_multi_gases field_table if [ $CPLWAV = .T. ]; then -cp @[RTPWD]/WW3_input_data/mod_def.* . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . +cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . fi diff --git a/tests/fv3_conf/ccpp_regional_c786_run.IN b/tests/fv3_conf/ccpp_regional_c786_run.IN index e64bf4e9ad..e450d34003 100644 --- a/tests/fv3_conf/ccpp_regional_c786_run.IN +++ b/tests/fv3_conf/ccpp_regional_c786_run.IN @@ -1,9 +1,9 @@ -rsync -arv @[RTPWD]/FV3_regional_input_data/. . +rsync -arv @[INPUTDATA_ROOT]/FV3_regional_input_data/. . rm -rf INPUT RESTART mkdir INPUT RESTART -rsync -arv @[RTPWD]/@[INPUT_DIR]/INPUT/. INPUT/. +rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/INPUT/. INPUT/. if [ $WARM_START = .T. ]; then cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.coupler.res INPUT/coupler.res @@ -16,10 +16,10 @@ if [ $WARM_START = .T. ]; then fi if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then - cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . + cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . fi if [ $H2O_PHYS = .T. ]; then - cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 + cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 fi diff --git a/tests/fv3_conf/ccpp_regional_run.IN b/tests/fv3_conf/ccpp_regional_run.IN index b0e320cd19..3188c78028 100644 --- a/tests/fv3_conf/ccpp_regional_run.IN +++ b/tests/fv3_conf/ccpp_regional_run.IN @@ -1,10 +1,10 @@ -rsync -arv @[RTPWD]/FV3_regional_input_data/. . -rsync -arv @[RTPWD]/@[INPUT_DIR]/model_configure . +rsync -arv @[INPUTDATA_ROOT]/FV3_regional_input_data/. . +rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/model_configure . rm -rf INPUT RESTART mkdir INPUT RESTART -rsync -arv @[RTPWD]/@[INPUT_DIR]/INPUT/. INPUT/. +rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/INPUT/. INPUT/. if [ $WARM_START = .T. ]; then cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.coupler.res INPUT/coupler.res @@ -16,15 +16,15 @@ if [ $WARM_START = .T. ]; then cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.sfc_data.nc INPUT/sfc_data.nc fi if [ $WRITE_RESTART_WITH_BCS = .true. ]; then - cp @[RTPWD]/fv3_regional_control/RESTART/fv_core.res.tile1_new.nc RESTART/fv_core.res.tile1_new.nc - cp @[RTPWD]/fv3_regional_control/RESTART/fv_tracer.res.tile1_new.nc RESTART/fv_tracer.res.tile1_new.nc + cp @[INPUTDATA_ROOT]/fv3_regional_control/RESTART/fv_core.res.tile1_new.nc RESTART/fv_core.res.tile1_new.nc + cp @[INPUTDATA_ROOT]/fv3_regional_control/RESTART/fv_tracer.res.tile1_new.nc RESTART/fv_tracer.res.tile1_new.nc fi if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then - cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . + cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . fi if [ $H2O_PHYS = .T. ]; then - cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 + cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 fi diff --git a/tests/fv3_conf/ccpp_satmedmf_run.IN b/tests/fv3_conf/ccpp_satmedmf_run.IN index 2dec496749..ecd6c52c93 100644 --- a/tests/fv3_conf/ccpp_satmedmf_run.IN +++ b/tests/fv3_conf/ccpp_satmedmf_run.IN @@ -12,15 +12,15 @@ elif [ $NPX = 769 ]; then fi echo "inputdir=$inputdir,NPX=$NPX" if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT else - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -35,12 +35,12 @@ else fi fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/${inputdir}/INPUT/global_o3prdlos.f77 . -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/field_table_satmedmf field_table -cp @[RTPWD]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/field_table_satmedmf field_table +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . diff --git a/tests/fv3_conf/ccpp_stretched_run.IN b/tests/fv3_conf/ccpp_stretched_run.IN index cd22eb7db4..143b5e29e1 100644 --- a/tests/fv3_conf/ccpp_stretched_run.IN +++ b/tests/fv3_conf/ccpp_stretched_run.IN @@ -1,4 +1,4 @@ -rsync -arv @[RTPWD]/FV3_nest_input_data/. . +rsync -arv @[INPUTDATA_ROOT]/FV3_nest_input_data/. . rm -rf INPUT RESTART mkdir INPUT RESTART @@ -9,9 +9,9 @@ mkdir INPUT RESTART # see ccpp_regional_run.IN for a working example # if this is needed in the future (not needed now) #if [ $WARM_START = .F. ]; then -# rsync -arv @[RTPWD]/@[CNTL_DIR]/INPUT/. INPUT/. +# rsync -arv @[INPUTDATA_ROOT]/@[CNTL_DIR]/INPUT/. INPUT/. #else -# rsync -arv @[RTPWD]/@[CNTL_DIR]/RESTART/. INPUT/. +# rsync -arv @[INPUTDATA_ROOT]/@[CNTL_DIR]/RESTART/. INPUT/. #fi -rsync -arv @[RTPWD]/@[INPUT_DIR]/INPUT/. INPUT/. +rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/INPUT/. INPUT/. # *DH 20190528 diff --git a/tests/fv3_conf/cpld_bmark_run.IN b/tests/fv3_conf/cpld_bmark_run.IN index b144f54c28..1e790bdbb2 100644 --- a/tests/fv3_conf/cpld_bmark_run.IN +++ b/tests/fv3_conf/cpld_bmark_run.IN @@ -15,46 +15,46 @@ CICE_IC=${BM_IC}/cpc WW3_IC=${BM_IC}/ww3 # FV3 fixed input -cp @[RTPWD]/${FV3_DIR}/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_bm2/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_bm2/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/${FV3_DIR}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/${FV3_DIR}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then - cp @[RTPWD]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . + cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . fi -cp @[RTPWD]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/${FV3_DIR}/*grb . -cp @[RTPWD]/${FV3_DIR}/@[FIELD_TABLE] ./field_table -cp @[RTPWD]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc -cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/${FV3_DIR}/*grb . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/@[FIELD_TABLE] ./field_table +cp @[INPUTDATA_ROOT]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT # MOM6 fixed input -cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT +cp @[INPUTDATA_ROOT]/MOM6_FIX/@[OCNRES]/* ./INPUT # CICE fixed input -cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . # WW3 fix/input if [[ $CPLWAV == .T. && $CPLWAV2ATM == .T. ]]; then - cp @[RTPWD]/WW3_input_data/mod_def.* . + cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . if [[ $RT35D == .T. ]]; then - cp @[RTPWD]/WW3_input_data/ww3_multi_35d.inp ww3_multi.inp - cp @[RTPWD]/${WW3_IC}/*.000000.restart.gwes_30m ./restart.gwes_30m + cp @[INPUTDATA_ROOT]/WW3_input_data/ww3_multi_35d.inp ww3_multi.inp + cp @[INPUTDATA_ROOT]/${WW3_IC}/*.000000.restart.gwes_30m ./restart.gwes_30m else - cp @[RTPWD]/WW3_input_data/ww3_multi.inp . + cp @[INPUTDATA_ROOT]/WW3_input_data/ww3_multi.inp . fi fi # ICs -cp @[RTPWD]/${FV3_IC}/sfc_data*.nc ./INPUT -cp @[RTPWD]/${FV3_IC}/gfs_data*.nc ./INPUT -cp @[RTPWD]/${MOM6_IC}/MOM*.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_IC}/sfc_data*.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_IC}/gfs_data*.nc ./INPUT +cp @[INPUTDATA_ROOT]/${MOM6_IC}/MOM*.nc ./INPUT # the BM ICs are still named cice5 and need to remain so until P5.0 is completed -cp @[RTPWD]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc +cp @[INPUTDATA_ROOT]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index ee49c1dacf..35c4e42d73 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -9,48 +9,48 @@ fi ICERES="${OCNRES:0:1}.${OCNRES:1}" # FV3 fixed input -cp @[RTPWD]/${FV3_DIR}/INPUT/aerosol.dat . -cp @[RTPWD]/${FV3_DIR}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/${FV3_DIR}/ozprdlos_2015_new_sbuv03_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/${FV3_DIR}/ozprdlos_2015_new_sbuv03_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then - cp @[RTPWD]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . + cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . fi -cp @[RTPWD]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/${FV3_DIR}/*grb . -cp @[RTPWD]/${FV3_DIR}/@[FIELD_TABLE] ./field_table -cp @[RTPWD]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/${FV3_DIR}/*grb . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/@[FIELD_TABLE] ./field_table +cp @[INPUTDATA_ROOT]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT if [ ${FRAC_GRID_INPUT} = .F. ]; then - cp @[RTPWD]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT else - cp @[RTPWD]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/oro_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/oro_data*.nc ./INPUT fi -cp @[RTPWD]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc -cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT # MOM6 fixed input -cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT +cp @[INPUTDATA_ROOT]/MOM6_FIX/@[OCNRES]/* ./INPUT # CICE fixed input -cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . # No restart if [ $WARM_START = .F. ]; then # ICs if [ ${FRAC_GRID_INPUT} = .F. ]; then - cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_data*.nc ./INPUT - cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/sfc_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/gfs_data*.nc ./INPUT else - cp @[RTPWD]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/sfc_data*.nc ./INPUT - cp @[RTPWD]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/gfs_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/sfc_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/gfs_data*.nc ./INPUT fi - cp @[RTPWD]/MOM6_IC/MOM*.nc ./INPUT - cp @[RTPWD]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].res_2016100300.nc ./cice_model.res.nc + cp @[INPUTDATA_ROOT]/MOM6_IC/MOM*.nc ./INPUT + cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].res_2016100300.nc ./cice_model.res.nc # Restart else diff --git a/tests/fv3_conf/cpld_datm_cfsr.IN b/tests/fv3_conf/cpld_datm_cfsr.IN index 9b0b6b3402..65bbf8ea0d 100644 --- a/tests/fv3_conf/cpld_datm_cfsr.IN +++ b/tests/fv3_conf/cpld_datm_cfsr.IN @@ -4,23 +4,23 @@ export DATM=true # FV3 fixed input export IATM=1760 export JATM=880 -cp @[RTPWD]/DATM/cfsr.SCRIP.nc DATM_INPUT -ln -s @[RTPWD]/DATM/CFSR/201110/* DATM_INPUT +cp @[INPUTDATA_ROOT]/DATM/cfsr.SCRIP.nc DATM_INPUT +ln -s @[INPUTDATA_ROOT]/DATM/CFSR/201110/* DATM_INPUT # MOM6 fixed input -cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT -cp @[RTPWD]/MOM6_FIX_DATM/@[OCNRES]/* ./INPUT +cp @[INPUTDATA_ROOT]/MOM6_FIX/@[OCNRES]/* ./INPUT +cp @[INPUTDATA_ROOT]/MOM6_FIX_DATM/@[OCNRES]/* ./INPUT # CICE fixed input -cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . if [[ $OCNRES == '025' ]]; then - cp @[RTPWD]/MOM6_IC/@[OCNRES]/2011100100/MOM*.nc ./INPUT - cp @[RTPWD]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc + cp @[INPUTDATA_ROOT]/MOM6_IC/@[OCNRES]/2011100100/MOM*.nc ./INPUT + cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc else - cp @[RTPWD]/MOM6_IC/@[OCNRES]/2011100100/MOM6_IC_TS*.nc ./INPUT/MOM6_IC_TS.nc - cp @[RTPWD]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc + cp @[INPUTDATA_ROOT]/MOM6_IC/@[OCNRES]/2011100100/MOM6_IC_TS*.nc ./INPUT/MOM6_IC_TS.nc + cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc fi diff --git a/tests/fv3_conf/cpld_datm_gefs.IN b/tests/fv3_conf/cpld_datm_gefs.IN index a1dc1ec762..2bf93b5a5f 100644 --- a/tests/fv3_conf/cpld_datm_gefs.IN +++ b/tests/fv3_conf/cpld_datm_gefs.IN @@ -2,23 +2,23 @@ mkdir INPUT DATM_INPUT RESTART history MOM6_OUTPUT export DATM=true # FV3 fixed input -cp @[RTPWD]/DATM/gefs.SCRIP.nc DATM_INPUT -ln -s @[RTPWD]/DATM/GEFS/201110/* DATM_INPUT +cp @[INPUTDATA_ROOT]/DATM/gefs.SCRIP.nc DATM_INPUT +ln -s @[INPUTDATA_ROOT]/DATM/GEFS/201110/* DATM_INPUT # MOM6 fixed input -cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT -cp @[RTPWD]/MOM6_FIX_DATM/@[OCNRES]/* ./INPUT +cp @[INPUTDATA_ROOT]/MOM6_FIX/@[OCNRES]/* ./INPUT +cp @[INPUTDATA_ROOT]/MOM6_FIX_DATM/@[OCNRES]/* ./INPUT # CICE fixed input -cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . if [[ $OCNRES == '025' ]]; then - cp @[RTPWD]/MOM6_IC/@[OCNRES]/2011100100/MOM*.nc ./INPUT - cp @[RTPWD]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc + cp @[INPUTDATA_ROOT]/MOM6_IC/@[OCNRES]/2011100100/MOM*.nc ./INPUT + cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc else - cp @[RTPWD]/MOM6_IC/@[OCNRES]/2011100100/MOM6_IC_TS*.nc ./INPUT/MOM6_IC_TS.nc - cp @[RTPWD]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc + cp @[INPUTDATA_ROOT]/MOM6_IC/@[OCNRES]/2011100100/MOM6_IC_TS*.nc ./INPUT/MOM6_IC_TS.nc + cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc fi diff --git a/tests/fv3_conf/cpt_run.IN b/tests/fv3_conf/cpt_run.IN index 253ad70d04..fea2ec1f58 100644 --- a/tests/fv3_conf/cpt_run.IN +++ b/tests/fv3_conf/cpt_run.IN @@ -1,19 +1,19 @@ inputdir=FV3_input_data_127 if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/diag_table_mg3tke diag_table -cp @[RTPWD]/${inputdir}/field_table_csawmg3shoc field_table -cp @[RTPWD]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_mg3tke diag_table +cp @[INPUTDATA_ROOT]/${inputdir}/field_table_csawmg3shoc field_table +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . diff --git a/tests/fv3_conf/csawmg3shoc127_run.IN b/tests/fv3_conf/csawmg3shoc127_run.IN index 25df5c7c22..c9b60d7a1f 100644 --- a/tests/fv3_conf/csawmg3shoc127_run.IN +++ b/tests/fv3_conf/csawmg3shoc127_run.IN @@ -2,14 +2,14 @@ inputdir=FV3_input_data_127 UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT else - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -24,14 +24,14 @@ else fi fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/diag_table_mg3tke diag_table -cp @[RTPWD]/${inputdir}/field_table_csawmg3shoc field_table -cp @[RTPWD]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_mg3tke diag_table +cp @[INPUTDATA_ROOT]/${inputdir}/field_table_csawmg3shoc field_table +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . diff --git a/tests/fv3_conf/csawmg_run.IN b/tests/fv3_conf/csawmg_run.IN index 018dbe96bc..3440732bd7 100644 --- a/tests/fv3_conf/csawmg_run.IN +++ b/tests/fv3_conf/csawmg_run.IN @@ -1,14 +1,14 @@ UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT else - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -23,26 +23,26 @@ else fi fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_mgrs diag_table -#cp @[RTPWD]/FV3_input_data/field_table_mgrs field_table -cp @[RTPWD]/FV3_input_data/field_table_csawmg field_table -cp @[RTPWD]/FV3_input_data/*configure . -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgrs diag_table +#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgrs field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_csawmg field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . for n in 01 02 03 04 05 06 07 08 09 10 11 12; do ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc done -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat diff --git a/tests/fv3_conf/csawmgshoc_run.IN b/tests/fv3_conf/csawmgshoc_run.IN index fe946b315d..60b20c5336 100644 --- a/tests/fv3_conf/csawmgshoc_run.IN +++ b/tests/fv3_conf/csawmgshoc_run.IN @@ -1,14 +1,14 @@ UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT else - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -23,15 +23,15 @@ else fi fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_mgtkers diag_table -#cp @[RTPWD]/FV3_input_data/field_table_mgtkers field_table -cp @[RTPWD]/FV3_input_data/field_table_csawmgshoc field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgtkers diag_table +#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgtkers field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_csawmgshoc field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . diff --git a/tests/fv3_conf/fv3_gocart.IN b/tests/fv3_conf/fv3_gocart.IN index d8314e7525..0560dd2350 100644 --- a/tests/fv3_conf/fv3_gocart.IN +++ b/tests/fv3_conf/fv3_gocart.IN @@ -1,35 +1,35 @@ if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -##cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[RTPWD]/FV3_input_data/diag_table_aod diag_table -cp @[RTPWD]/FV3_input_data/field_table_gfdlmp field_table -cp @[RTPWD]/FV3_input_data/*configure . -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +##cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_aod diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . for n in 01 02 03 04 05 06 07 08 09 10 11 12; do ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc done -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat if [ $CPLWAV = .T. ]; then -cp @[RTPWD]/WW3_input_data/mod_def.* . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . fi diff --git a/tests/fv3_conf/fv3_regional_run.IN b/tests/fv3_conf/fv3_regional_run.IN index a451f00307..cd2d7cd3a7 100644 --- a/tests/fv3_conf/fv3_regional_run.IN +++ b/tests/fv3_conf/fv3_regional_run.IN @@ -1,11 +1,11 @@ -rsync -arv @[RTPWD]/FV3_regional_input_data/. . -rsync -arv @[RTPWD]/@[INPUT_DIR]/model_configure . +rsync -arv @[INPUTDATA_ROOT]/FV3_regional_input_data/. . +rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/model_configure . rm -rf INPUT RESTART mkdir INPUT RESTART -rsync -arv @[RTPWD]/@[INPUT_DIR]/INPUT/. INPUT/. +rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/INPUT/. INPUT/. if [ $WARM_START = .T. ]; then cp ../fv3_regional_control${RT_SUFFIX}/RESTART/20181015.120000.coupler.res INPUT/coupler.res diff --git a/tests/fv3_conf/fv3_run.IN b/tests/fv3_conf/fv3_run.IN index dc1c687565..18d390d7a0 100644 --- a/tests/fv3_conf/fv3_run.IN +++ b/tests/fv3_conf/fv3_run.IN @@ -12,15 +12,15 @@ echo "inputdir=$inputdir,NPX=$NPX" UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT else - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -35,24 +35,24 @@ else fi fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then -cp @[RTPWD]/${inputdir}/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/global_o3prdlos.f77 . fi if [ $H2O_PHYS = .T. ]; then - cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 + cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 fi -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . if [ $CPLWAV = .T. ]; then -cp @[RTPWD]/WW3_input_data/mod_def.* . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . +cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . fi diff --git a/tests/fv3_conf/fv3_stretched_run.IN b/tests/fv3_conf/fv3_stretched_run.IN index ffec0d14e8..b225cf6707 100644 --- a/tests/fv3_conf/fv3_stretched_run.IN +++ b/tests/fv3_conf/fv3_stretched_run.IN @@ -1,5 +1,5 @@ -rsync -arv @[RTPWD]/FV3_nest_input_data/. . +rsync -arv @[INPUTDATA_ROOT]/FV3_nest_input_data/. . rm -rf INPUT RESTART mkdir INPUT RESTART @@ -10,9 +10,9 @@ mkdir INPUT RESTART # see fv3_regional_run.IN for a working example # if this is needed in the future (not needed now) #if [ $WARM_START = .F. ]; then -# rsync -arv @[RTPWD]/@[CNTL_DIR]/INPUT/. INPUT/. +# rsync -arv @[INPUTDATA_ROOT]/@[CNTL_DIR]/INPUT/. INPUT/. #else -# rsync -arv @[RTPWD]/@[CNTL_DIR]/RESTART/. INPUT/. +# rsync -arv @[INPUTDATA_ROOT]/@[CNTL_DIR]/RESTART/. INPUT/. #fi -rsync -arv @[RTPWD]/@[INPUT_DIR]/INPUT/. INPUT/. +rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/INPUT/. INPUT/. # *DH 20190528 diff --git a/tests/fv3_conf/gfdlmp_run.IN b/tests/fv3_conf/gfdlmp_run.IN index 28b21030e8..9e499066f9 100644 --- a/tests/fv3_conf/gfdlmp_run.IN +++ b/tests/fv3_conf/gfdlmp_run.IN @@ -1,15 +1,15 @@ UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT else - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -24,18 +24,18 @@ else fi fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[RTPWD]/FV3_input_data/field_table_gfdlmp field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . if [ $CPLWAV = .T. ]; then -cp @[RTPWD]/WW3_input_data/mod_def.* . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . fi diff --git a/tests/fv3_conf/gfs_v15_run.IN b/tests/fv3_conf/gfs_v15_run.IN index c21f88d948..79e9537fc2 100644 --- a/tests/fv3_conf/gfs_v15_run.IN +++ b/tests/fv3_conf/gfs_v15_run.IN @@ -1,19 +1,19 @@ rm -fr INPUT RESTART if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[RTPWD]/FV3_input_data/field_table_gfdlmp field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . diff --git a/tests/fv3_conf/gfs_v16_run.IN b/tests/fv3_conf/gfs_v16_run.IN index ac23e518f4..a9210d2c39 100644 --- a/tests/fv3_conf/gfs_v16_run.IN +++ b/tests/fv3_conf/gfs_v16_run.IN @@ -1,19 +1,19 @@ rm -fr INPUT RESTART if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[RTPWD]/FV3_input_data_gsd/field_table_suite2 field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_suite2 field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . diff --git a/tests/fv3_conf/gfsv16_csawmg_run.IN b/tests/fv3_conf/gfsv16_csawmg_run.IN index fa04661e62..9b380ec48a 100644 --- a/tests/fv3_conf/gfsv16_csawmg_run.IN +++ b/tests/fv3_conf/gfsv16_csawmg_run.IN @@ -1,32 +1,32 @@ if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -#cp @[RTPWD]/FV3_input_data/diag_table_mgrs diag_table -cp @[RTPWD]/FV3_input_data/diag_table_aod diag_table -#cp @[RTPWD]/FV3_input_data/field_table_mgrs field_table -cp @[RTPWD]/FV3_input_data/field_table_csawmgshoc field_table -cp @[RTPWD]/FV3_input_data/*configure . -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +#cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgrs diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_aod diag_table +#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgrs field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_csawmgshoc field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . for n in 01 02 03 04 05 06 07 08 09 10 11 12; do ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc done -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat diff --git a/tests/fv3_conf/multigases_run.IN b/tests/fv3_conf/multigases_run.IN index 696e4929ca..4f85cffe62 100644 --- a/tests/fv3_conf/multigases_run.IN +++ b/tests/fv3_conf/multigases_run.IN @@ -1,32 +1,32 @@ inputdir=FV3_input_data_149 if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then -cp @[RTPWD]/${inputdir}/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/global_o3prdlos.f77 . fi if [ $H2O_PHYS = .T. ]; then - cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 + cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 fi -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*configure . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/diag_table_multi_gases diag_table -cp @[RTPWD]/${inputdir}/field_table_multi_gases field_table +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_multi_gases diag_table +cp @[INPUTDATA_ROOT]/${inputdir}/field_table_multi_gases field_table if [ $CPLWAV = .T. ]; then -cp @[RTPWD]/WW3_input_data/mod_def.* . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . +cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . fi diff --git a/tests/fv3_conf/rasmgshoc_run.IN b/tests/fv3_conf/rasmgshoc_run.IN index faf6b58b3b..1e0fc42274 100644 --- a/tests/fv3_conf/rasmgshoc_run.IN +++ b/tests/fv3_conf/rasmgshoc_run.IN @@ -1,20 +1,20 @@ if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_mgtkers diag_table -#cp @[RTPWD]/FV3_input_data/field_table_mgtkers field_table -cp @[RTPWD]/FV3_input_data/field_table_rasmgshoc field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgtkers diag_table +#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgtkers field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_rasmgshoc field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . diff --git a/tests/fv3_conf/satmedmf_run.IN b/tests/fv3_conf/satmedmf_run.IN index 7e6e9b7072..566667e696 100644 --- a/tests/fv3_conf/satmedmf_run.IN +++ b/tests/fv3_conf/satmedmf_run.IN @@ -12,15 +12,15 @@ echo "inputdir=$inputdir,NPX=$NPX" UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT else - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -35,12 +35,12 @@ else fi fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/${inputdir}/INPUT/global_o3prdlos.f77 . -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/field_table_satmedmf field_table -cp @[RTPWD]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/field_table_satmedmf field_table +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . diff --git a/tests/fv3_conf/thompson_run.IN b/tests/fv3_conf/thompson_run.IN index e8a708dcc4..fa7fdca24f 100644 --- a/tests/fv3_conf/thompson_run.IN +++ b/tests/fv3_conf/thompson_run.IN @@ -1,15 +1,15 @@ UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT else - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -24,14 +24,14 @@ else fi fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . -cp @[RTPWD]/FV3_input_data/qr_acr_q* . -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_thompson diag_table -cp @[RTPWD]/FV3_input_data/field_table_thompson field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/FV3_input_data/qr_acr_q* . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_thompson diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_thompson field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . diff --git a/tests/fv3_conf/wsm6_run.IN b/tests/fv3_conf/wsm6_run.IN index ee394da687..9f6f1065e2 100644 --- a/tests/fv3_conf/wsm6_run.IN +++ b/tests/fv3_conf/wsm6_run.IN @@ -1,14 +1,14 @@ UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT else - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -23,13 +23,13 @@ else fi fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_wsm6 diag_table -cp @[RTPWD]/FV3_input_data/field_table_wsm6 field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_wsm6 diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_wsm6 field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . diff --git a/tests/parm/ice_in_template b/tests/parm/ice_in_template index c5f374155e..155f081675 100644 --- a/tests/parm/ice_in_template +++ b/tests/parm/ice_in_template @@ -60,7 +60,7 @@ / &tracer_nml - n_aero = 1 + n_aero = 0 n_zaero = 0 n_algae = 0 n_doc = 0 @@ -128,7 +128,7 @@ albicev = 0.78 albicei = 0.36 albsnowv = 0.98 - albsnowi = 0.70 + albsnowi = 0.70 ahmax = 0.3 R_ice = 0. R_pnd = 0. @@ -228,7 +228,7 @@ tr_bgc_PON = .true. tr_bgc_hum = .true. tr_bgc_DON = .false. - tr_bgc_Fe = .true. + tr_bgc_Fe = .true. grid_o = 0.006 grid_o_t = 0.006 l_sk = 0.024 @@ -236,17 +236,17 @@ l_skS = 0.028 phi_snow = -0.3 initbio_frac = 0.8 - frazil_scav = 0.8 - ratio_Si2N_diatoms = 1.8 + frazil_scav = 0.8 + ratio_Si2N_diatoms = 1.8 ratio_Si2N_sp = 0.0 ratio_Si2N_phaeo = 0.0 - ratio_S2N_diatoms = 0.03 - ratio_S2N_sp = 0.03 + ratio_S2N_diatoms = 0.03 + ratio_S2N_sp = 0.03 ratio_S2N_phaeo = 0.03 ratio_Fe2C_diatoms = 0.0033 ratio_Fe2C_sp = 0.0033 ratio_Fe2C_phaeo = 0.1 - ratio_Fe2N_diatoms = 0.023 + ratio_Fe2N_diatoms = 0.023 ratio_Fe2N_sp = 0.023 ratio_Fe2N_phaeo = 0.7 ratio_Fe2DON = 0.023 @@ -372,32 +372,32 @@ f_VGRDb = .false. f_VGRDa = .true. f_bounds = .false. - f_aice = 'mdhxx' + f_aice = 'mdhxx' f_hi = 'mdhxx' - f_hs = 'mdhxx' - f_Tsfc = 'mdhxx' - f_sice = 'mdhxx' - f_uvel = 'mdhxx' - f_vvel = 'mdhxx' - f_uatm = 'mdhxx' - f_vatm = 'mdhxx' - f_fswdn = 'mdhxx' + f_hs = 'mdhxx' + f_Tsfc = 'mdhxx' + f_sice = 'mdhxx' + f_uvel = 'mdhxx' + f_vvel = 'mdhxx' + f_uatm = 'mdhxx' + f_vatm = 'mdhxx' + f_fswdn = 'mdhxx' f_flwdn = 'mdhxx' f_snowfrac = 'x' - f_snow = 'mdhxx' - f_snow_ai = 'x' - f_rain = 'mdhxx' - f_rain_ai = 'x' - f_sst = 'mdhxx' - f_sss = 'mdhxx' - f_uocn = 'mdhxx' - f_vocn = 'mdhxx' + f_snow = 'mdhxx' + f_snow_ai = 'x' + f_rain = 'mdhxx' + f_rain_ai = 'x' + f_sst = 'mdhxx' + f_sss = 'mdhxx' + f_uocn = 'mdhxx' + f_vocn = 'mdhxx' f_frzmlt = 'mdhxx' f_fswfac = 'mdhxx' f_fswint_ai = 'x' - f_fswabs = 'mdhxx' - f_fswabs_ai = 'x' - f_albsni = 'mdhxx' + f_fswabs = 'mdhxx' + f_fswabs_ai = 'x' + f_albsni = 'mdhxx' f_alvdr = 'mdhxx' f_alidr = 'mdhxx' f_alvdf = 'mdhxx' @@ -410,22 +410,22 @@ f_albsno = 'mdhxx' f_albpnd = 'mdhxx' f_coszen = 'mdhxx' - f_flat = 'mdhxx' - f_flat_ai = 'x' - f_fsens = 'mdhxx' - f_fsens_ai = 'x' - f_fswup = 'x' - f_flwup = 'mdhxx' - f_flwup_ai = 'x' - f_evap = 'mdhxx' - f_evap_ai = 'x' - f_Tair = 'mdhxx' - f_Tref = 'mdhxx' + f_flat = 'mdhxx' + f_flat_ai = 'x' + f_fsens = 'mdhxx' + f_fsens_ai = 'x' + f_fswup = 'x' + f_flwup = 'mdhxx' + f_flwup_ai = 'x' + f_evap = 'mdhxx' + f_evap_ai = 'x' + f_Tair = 'mdhxx' + f_Tref = 'mdhxx' f_Qref = 'mdhxx' - f_congel = 'mdhxx' - f_frazil = 'mdhxx' - f_snoice = 'mdhxx' - f_dsnow = 'mdhxx' + f_congel = 'mdhxx' + f_frazil = 'mdhxx' + f_snoice = 'mdhxx' + f_dsnow = 'mdhxx' f_melts = 'mdhxx' f_meltt = 'mdhxx' f_meltb = 'mdhxx' @@ -435,37 +435,37 @@ f_fsalt = 'mdhxx' f_fsalt_ai = 'x' f_fbot = 'mdhxx' - f_fhocn = 'mdhxx' - f_fhocn_ai = 'x' - f_fswthru = 'mdhxx' - f_fswthru_ai = 'x' + f_fhocn = 'mdhxx' + f_fhocn_ai = 'x' + f_fswthru = 'mdhxx' + f_fswthru_ai = 'x' f_fsurf_ai = 'x' f_fcondtop_ai = 'x' - f_fmeltt_ai = 'x' - f_strairx = 'mdhxx' - f_strairy = 'mdhxx' - f_strtltx = 'x' - f_strtlty = 'x' - f_strcorx = 'x' - f_strcory = 'x' - f_strocnx = 'mdhxx' - f_strocny = 'mdhxx' - f_strintx = 'x' + f_fmeltt_ai = 'x' + f_strairx = 'mdhxx' + f_strairy = 'mdhxx' + f_strtltx = 'x' + f_strtlty = 'x' + f_strcorx = 'x' + f_strcory = 'x' + f_strocnx = 'mdhxx' + f_strocny = 'mdhxx' + f_strintx = 'x' f_strinty = 'x' f_taubx = 'x' f_tauby = 'x' f_strength = 'x' f_divu = 'x' f_shear = 'x' - f_sig1 = 'x' - f_sig2 = 'x' - f_sigP = 'x' - f_dvidtt = 'x' - f_dvidtd = 'x' + f_sig1 = 'x' + f_sig2 = 'x' + f_sigP = 'x' + f_dvidtt = 'x' + f_dvidtd = 'x' f_daidtt = 'x' - f_daidtd = 'x' + f_daidtd = 'x' f_dagedtt = 'x' - f_dagedtd = 'x' + f_dagedtd = 'x' f_mlt_onset = 'mdhxx' f_frz_onset = 'mdhxx' f_hisnap = 'x' @@ -528,7 +528,7 @@ &icefields_bgc_nml f_faero_atm = 'x' f_faero_ocn = 'x' - f_aero = 'x' + f_aero = 'x' f_fbio = 'x' f_fbio_ai = 'x' f_zaero = 'x' @@ -544,18 +544,18 @@ f_bgc_DMSPp = 'x' f_bgc_DMSPd = 'x' f_bgc_DMS = 'x' - f_bgc_DON = 'x' - f_bgc_Fe = 'x' - f_bgc_hum = 'x' + f_bgc_DON = 'x' + f_bgc_Fe = 'x' + f_bgc_hum = 'x' f_bgc_PON = 'x' f_bgc_ml = 'x' f_upNO = 'x' f_upNH = 'x' f_bTin = 'x' - f_bphi = 'x' + f_bphi = 'x' f_iDi = 'x' f_iki = 'x' - f_fbri = 'x' + f_fbri = 'x' f_hbri = 'x' f_zfswin = 'x' f_bionet = 'x' diff --git a/tests/rt.conf b/tests/rt.conf index e1205cac3b..93b34facd9 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -185,36 +185,58 @@ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug ####################################################################################################################################################################################### COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | cheyenne.intel | fv3 | RUN | cpld_control | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control | standard | cheyenne.intel | fv3 | #RUN | cpld_control_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | #RUN | cpld_restart | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_12h RUN | cpld_2threads | standard | hera.intel orion.intel wcoss_dell_p3 | | +#RUN | cpld_2threads | standard | cheyenne.intel | | RUN | cpld_decomp | standard | hera.intel orion.intel wcoss_dell_p3 | | -RUN | cpld_satmedmf | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_decomp | standard | cheyenne.intel | | +RUN | cpld_satmedmf | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_satmedmf | standard | cheyenne.intel | fv3 | RUN | cpld_ca | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_ca | standard | cheyenne.intel | fv3 | # restart test at c96mx025 RUN | cpld_control_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control_mx025 | standard | cheyenne.intel | fv3 | RUN | cpld_control_mx025_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control_mx025_12h | standard | cheyenne.intel | fv3 | RUN | cpld_restart_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_mx025_12h +#RUN | cpld_restart_mx025 | standard | cheyenne.intel | | cpld_control_mx025_12h RUN | cpld_control_c192 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control_c192 | standard | cheyenne.intel | fv3 | RUN | cpld_control_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control_c384 | standard | cheyenne.intel | fv3 | RUN | cpld_controlfrac_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_controlfrac_c384 | standard | cheyenne.intel | fv3 | RUN | cpld_bmark | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_bmark | standard | cheyenne.intel | fv3 | COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | cheyenne.intel | fv3 | RUN | cpld_bmark_wave | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_bmark_wave | standard | cheyenne.intel | fv3 | COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | cheyenne.intel | fv3 | RUN | cpld_debug | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_debug | standard | cheyenne.intel | fv3 | ####################################################################################################################################################################################### # Data Atmosphere tests ####################################################################################################################################################################################### COMPILE | DATM=Y S2S=Y | standard | hera.intel orion.intel | fv3 | +#COMPILE | DATM=Y S2S=Y | standard | cheyenne.intel | fv3 | RUN | datm_control_cfsr | standard | hera.intel orion.intel | fv3 | +#RUN | datm_control_cfsr | standard | cheyenne.intel | fv3 | RUN | datm_control_gefs | standard | hera.intel orion.intel | fv3 | +#RUN | datm_control_gefs | standard | cheyenne.intel | fv3 | RUN | datm_mx025_cfsr | standard | hera.intel orion.intel | fv3 | +#RUN | datm_mx025_cfsr | standard | cheyenne.intel | fv3 | RUN | datm_mx025_gefs | standard | hera.intel orion.intel | fv3 | +#RUN | datm_mx025_gefs | standard | cheyenne.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index fd7b124c47..1bb2eff817 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -76,8 +76,8 @@ rt_trap() { } cleanup() { - [[ ${ECFLOW:-false} == true ]] && ecflow_stop rm -rf ${LOCKDIR} + [[ ${ECFLOW:-false} == true ]] && ecflow_stop trap 0 exit } @@ -396,11 +396,13 @@ 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-20201202/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201204/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201202} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201204} fi +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20201201/} + shift $((OPTIND-1)) [[ $# -gt 1 ]] && usage @@ -410,43 +412,6 @@ if [[ $CREATE_BASELINE == true ]]; then # rm -rf "${NEW_BASELINE}" mkdir -p "${NEW_BASELINE}" - echo "copy baseline inputs from: ${RTPWD}" - echo " to: ${NEW_BASELINE}" - - rsync -a "${RTPWD}"/FV3_* "${NEW_BASELINE}"/ - rsync -a "${RTPWD}"/WW3_* "${NEW_BASELINE}"/ - rsync -a "${RTPWD}"/DATM* "${NEW_BASELINE}"/ - - # FIXME: S2S baselines are only available on these machines with Intel - if [[ $MACHINE_ID = hera.intel ]] || [[ $MACHINE_ID = orion.intel ]] || [[ $MACHINE_ID = cheyenne.intel ]] || [[ $MACHINE_ID = gaea.intel ]] || [[ $MACHINE_ID = jet.intel ]] || [[ $MACHINE_ID = wcoss_dell_p3 ]]; then - rsync -a "${RTPWD}"/MOM6_* "${NEW_BASELINE}"/ - rsync -a "${RTPWD}"/CICE_* "${NEW_BASELINE}"/ - rsync -a "${RTPWD}"/CPL_* "${NEW_BASELINE}"/ - rsync -a "${RTPWD}"/BM_* "${NEW_BASELINE}"/ - fi - - # FIXME: move these namelist files to parm directory - rsync -a "${RTPWD}"/fv3_regional_control/input.nml "${NEW_BASELINE}"/fv3_regional_control/ - rsync -a "${RTPWD}"/fv3_regional_quilt/input.nml "${NEW_BASELINE}"/fv3_regional_quilt/ - rsync -a "${RTPWD}"/fv3_regional_c768/input.nml "${NEW_BASELINE}"/fv3_regional_c768/ - rsync -a "${RTPWD}"/fv3_regional_restart/input.nml "${NEW_BASELINE}"/fv3_regional_restart/ - - rsync -a "${RTPWD}"/fv3_regional_control/model_configure "${NEW_BASELINE}"/fv3_regional_control/ - rsync -a "${RTPWD}"/fv3_regional_quilt/model_configure "${NEW_BASELINE}"/fv3_regional_quilt/ - rsync -a "${RTPWD}"/fv3_regional_c768/model_configure "${NEW_BASELINE}"/fv3_regional_c768/ - rsync -a "${RTPWD}"/fv3_regional_restart/model_configure "${NEW_BASELINE}"/fv3_regional_restart/ - rsync -a "${RTPWD}"/fv3_regional_quilt_netcdf_parallel/model_configure "${NEW_BASELINE}"/fv3_regional_quilt_netcdf_parallel/ - - rsync -a "${RTPWD}"/fv3_regional_control/INPUT "${NEW_BASELINE}"/fv3_regional_control/ - rsync -a "${RTPWD}"/fv3_regional_control/RESTART "${NEW_BASELINE}"/fv3_regional_control/ - rsync -a "${RTPWD}"/fv3_regional_quilt/INPUT "${NEW_BASELINE}"/fv3_regional_quilt/ - rsync -a "${RTPWD}"/fv3_regional_c768/INPUT "${NEW_BASELINE}"/fv3_regional_c768/ - rsync -a "${RTPWD}"/fv3_regional_restart/INPUT "${NEW_BASELINE}"/fv3_regional_restart/ - rsync -a "${RTPWD}"/fv3_stretched/INPUT "${NEW_BASELINE}"/fv3_stretched/ - rsync -a "${RTPWD}"/fv3_stretched_nest/INPUT "${NEW_BASELINE}"/fv3_stretched_nest/ - rsync -a "${RTPWD}"/fv3_stretched_nest_quilt/INPUT "${NEW_BASELINE}"/fv3_stretched_nest_quilt/ - rsync -a "${RTPWD}"/fv3_stretched_nest_debug/INPUT "${NEW_BASELINE}"/fv3_stretched_nest_debug/ - rsync -a "${RTPWD}"/fv3_regional_quilt_netcdf_parallel/INPUT "${NEW_BASELINE}"/fv3_regional_quilt_netcdf_parallel/ fi COMPILE_LOG=${PATHRT}/Compile_$MACHINE_ID.log @@ -506,12 +471,13 @@ if [[ $ROCOTO == true ]]; then - - - - - + + + + + + + ]> 197001010000 197001010000 01:00:00 @@ -680,6 +646,7 @@ EOF export MACHINE_ID=${MACHINE_ID} export RT_COMPILER=${RT_COMPILER} export RTPWD=${RTPWD} + export INPUTDATA_ROOT=${INPUTDATA_ROOT} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export NEW_BASELINE=${NEW_BASELINE} diff --git a/tests/utest b/tests/utest index fb0c4102b1..a84e7c93e2 100755 --- a/tests/utest +++ b/tests/utest @@ -137,6 +137,7 @@ run_utests() { std_base) CREATE_BASELINE=true RTPWD=$baseline_location + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env export UNIT_TEST=true @@ -147,6 +148,7 @@ run_utests() { std) CREATE_BASELINE=false RTPWD=$NEW_BASELINE + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env export UNIT_TEST=true @@ -156,6 +158,7 @@ run_utests() { thr) CREATE_BASELINE=false RTPWD=$NEW_BASELINE + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base THRD=2 # INPES is sometimes odd, so use JNPES. Make sure JNPES is divisible by THRD @@ -176,6 +179,7 @@ run_utests() { mpi) CREATE_BASELINE=false RTPWD=$NEW_BASELINE + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base JNPES=$(( JNPES/2 )) WRITE_GROUP=2 @@ -195,6 +199,7 @@ run_utests() { dcp) CREATE_BASELINE=false RTPWD=$NEW_BASELINE + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base temp=$INPES INPES=$JNPES @@ -209,6 +214,7 @@ run_utests() { rst) # this is not going to work for regional model CREATE_BASELINE=false RTPWD=$NEW_BASELINE + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base # Set up date and time of restart files for restart run RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( SHOUR + FHMAX/2 )))0000" @@ -272,6 +278,7 @@ run_utests() { bit_base) CREATE_BASELINE=true RTPWD=$baseline_location + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_bit_base comp_nm=bit cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env @@ -282,6 +289,7 @@ run_utests() { bit) CREATE_BASELINE=false RTPWD=$NEW_BASELINE + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_bit_base comp_nm=bit cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env @@ -292,6 +300,7 @@ run_utests() { dbg_base) CREATE_BASELINE=true RTPWD=$baseline_location + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_dbg_base comp_nm=dbg WLCLK=30 @@ -304,6 +313,7 @@ run_utests() { dbg) CREATE_BASELINE=false RTPWD=$NEW_BASELINE + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_dbg_base comp_nm=dbg WLCLK=30 @@ -318,6 +328,7 @@ run_utests() { cat <<- EOF > ${RUNDIR_ROOT}/run_test${RT_SUFFIX}.env export MACHINE_ID=${MACHINE_ID} export RTPWD=${RTPWD} + export INPUTDATA_ROOT=${INPUTDATA_ROOT} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export NEW_BASELINE=${NEW_BASELINE} @@ -716,6 +727,7 @@ else baseline_location=$DISKNM/NEMSfv3gfs/develop-20201118 fi RTPWD=$baseline_location +INPUTDATA_ROOT=$RTPWD rm -rf $NEW_BASELINE mkdir -p $NEW_BASELINE From 7a249f295b6c76ccf88a0d5ebe8ec6034e63e8f7 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Tue, 8 Dec 2020 16:05:11 -0700 Subject: [PATCH 037/109] Update gsl/develop from develop 2020/12/08 (#50) * Updates to stochastic_physics_wrapper (#280) Fix to stochastic_physics_wrapper to allow for random patterns to update at a longer time-step than model Co-authored-by: Dom Heinzeller * Update for Jet, bug fixes in running with frac_grid=T and GFDL MP, and in restarting with frac_grid=T (#304) Update the modulefile for jet.intel to enable UPP v10.0.0. The hpc-stack v1.0.0 pre-release is used for this. Small changes are made to tests.rt.sh for jet.intel and gaea.intel (consistency with other platforms). The submodule pointer update for fv3atm addresses bugs in the ufs-weather-model with frac_grid=T and GFDL microphysics, and with restarting the model when frac_grid=T (from @shansun6 and @SMoorthi-emc). * Feature/update mom6 and retain b4b results for 025x025 resolution (#290) * point MOM6 to new branch which corresponding to GFDL 20201022 commit * modify fms_files.cmake and mom6_files.cmake to reflect changes in MOM6 code as this version of MOM6 contains some file deletion, new files being added and renaming of files * manually set MOM6 parameters in order to retain origonal results for 0.25x0.25 resolution * update MOM6 to include Bugfix for mom6solo to be built * modify compile.sh to allow mom6solo compiling * modify MOM_input_template for all resolutions based on GFDL MOM6-example main branch update on 20201022 * change executable permissions for CMakeLists.txt * chmod 644 to 6 files Dom pointed out * chmod for CMakeLists.txt and tests/compile.sh * change baseline directpory to 20201202 in rt.sh * Update CICE, Move regression test input outside baseline directory (#270) *Updates CICE to most recent develop branch of NOAA-EMC * Sets n_aero (number of aerosols) in ice_in_template to 0. * removes trailing whitespace from ice_in * moves regression test input outside baseline directory (ufs-weather PR #312) Co-authored-by: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Co-authored-by: Dom Heinzeller * Revert change to .gitmodules and update submodule pointer for fv3atm Co-authored-by: Phil Pegion <38869668+pjpegion@users.noreply.github.com> Co-authored-by: jiandewang Co-authored-by: Denise Worthen Co-authored-by: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> --- CICE-interface/CICE | 2 +- CICE-interface/cice_files.cmake | 1 + FV3 | 2 +- MOM6-interface/MOM6 | 2 +- MOM6-interface/mom6_files.cmake | 19 +- cmake/configure_jet.intel.cmake | 3 +- fms_files.cmake | 1 + modulefiles/jet.intel/fv3 | 72 +- stochastic_physics | 2 +- tests/RegressionTests_cheyenne.gnu.log | 86 +- tests/RegressionTests_cheyenne.intel.log | 236 +- tests/RegressionTests_gaea.intel.log | 194 +- tests/RegressionTests_hera.gnu.log | 86 +- tests/RegressionTests_hera.intel.log | 346 +- tests/RegressionTests_jet.intel.log | 5110 +++---------------- tests/RegressionTests_orion.intel.log | 322 +- tests/RegressionTests_wcoss_cray.log | 206 +- tests/RegressionTests_wcoss_dell_p3.log | 282 +- tests/compile.sh | 4 + tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN | 60 +- tests/fv3_conf/ccpp_control_run.IN | 32 +- tests/fv3_conf/ccpp_cpt_run.IN | 26 +- tests/fv3_conf/ccpp_csawmg3shoc127_run.IN | 26 +- tests/fv3_conf/ccpp_csawmg_run.IN | 46 +- tests/fv3_conf/ccpp_csawmgshoc_run.IN | 44 +- tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN | 14 +- tests/fv3_conf/ccpp_gf_thompson_run.IN | 34 +- tests/fv3_conf/ccpp_gfdlmp_run.IN | 30 +- tests/fv3_conf/ccpp_gfs_v15_run.IN | 28 +- tests/fv3_conf/ccpp_gfs_v16_flake_run.IN | 28 +- tests/fv3_conf/ccpp_gfs_v16_run.IN | 28 +- tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN | 46 +- tests/fv3_conf/ccpp_gocart.IN | 44 +- tests/fv3_conf/ccpp_gsd_run.IN | 54 +- tests/fv3_conf/ccpp_gsd_sar_run.IN | 34 +- tests/fv3_conf/ccpp_multigases_run.IN | 34 +- tests/fv3_conf/ccpp_regional_c786_run.IN | 10 +- tests/fv3_conf/ccpp_regional_run.IN | 16 +- tests/fv3_conf/ccpp_satmedmf_run.IN | 24 +- tests/fv3_conf/ccpp_stretched_run.IN | 8 +- tests/fv3_conf/cpld_bmark_run.IN | 52 +- tests/fv3_conf/cpld_control_run.IN | 50 +- tests/fv3_conf/cpld_datm_cfsr.IN | 22 +- tests/fv3_conf/cpld_datm_gefs.IN | 22 +- tests/fv3_conf/cpt_run.IN | 26 +- tests/fv3_conf/csawmg3shoc127_run.IN | 28 +- tests/fv3_conf/csawmg_run.IN | 46 +- tests/fv3_conf/csawmgshoc_run.IN | 30 +- tests/fv3_conf/fv3_gocart.IN | 46 +- tests/fv3_conf/fv3_regional_run.IN | 6 +- tests/fv3_conf/fv3_run.IN | 32 +- tests/fv3_conf/fv3_stretched_run.IN | 8 +- tests/fv3_conf/gfdlmp_run.IN | 30 +- tests/fv3_conf/gfs_v15_run.IN | 26 +- tests/fv3_conf/gfs_v16_run.IN | 26 +- tests/fv3_conf/gfsv16_csawmg_run.IN | 46 +- tests/fv3_conf/multigases_run.IN | 34 +- tests/fv3_conf/rasmgshoc_run.IN | 28 +- tests/fv3_conf/satmedmf_run.IN | 24 +- tests/fv3_conf/thompson_run.IN | 28 +- tests/fv3_conf/wsm6_run.IN | 26 +- tests/parm/MOM_input_template_025 | 916 ++-- tests/parm/MOM_input_template_050 | 934 ++-- tests/parm/MOM_input_template_100 | 71 +- tests/parm/ccpp_control.nml.IN | 6 +- tests/parm/ice_in_template | 140 +- tests/rt.conf | 32 +- tests/rt.sh | 63 +- tests/rt_utils.sh | 2 +- tests/utest | 12 + 70 files changed, 3347 insertions(+), 7107 deletions(-) diff --git a/CICE-interface/CICE b/CICE-interface/CICE index ac617cde36..f773ef3892 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit ac617cde36db5b41029d2c2523b0fb52c711897b +Subproject commit f773ef3892615da4b4af26b4be3e57c9f29b9343 diff --git a/CICE-interface/cice_files.cmake b/CICE-interface/cice_files.cmake index 8f237478f0..2787dbfb21 100644 --- a/CICE-interface/cice_files.cmake +++ b/CICE-interface/cice_files.cmake @@ -28,6 +28,7 @@ list(APPEND cice_shared_files CICE/cicecore/cicedynB/dynamics/ice_dyn_evp.F90 CICE/cicecore/cicedynB/dynamics/ice_dyn_evp_1d.F90 CICE/cicecore/cicedynB/dynamics/ice_dyn_shared.F90 + CICE/cicecore/cicedynB/dynamics/ice_dyn_vp.F90 CICE/cicecore/cicedynB/dynamics/ice_transport_driver.F90 CICE/cicecore/cicedynB/dynamics/ice_transport_remap.F90 diff --git a/FV3 b/FV3 index bd71c2afd1..c59787a89d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit bd71c2afd1195e9e25962ec94bdb5e41de349769 +Subproject commit c59787a89dd81f3a642a4ec8c6a32dab20e6ab56 diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 7a76a13900..18bf38869e 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 7a76a13900b68e06a6bc4ff8c53b98352bf8b741 +Subproject commit 18bf38869eb10b17c442e1384f613b194e07fb26 diff --git a/MOM6-interface/mom6_files.cmake b/MOM6-interface/mom6_files.cmake index 6500fda423..f36553641d 100644 --- a/MOM6-interface/mom6_files.cmake +++ b/MOM6-interface/mom6_files.cmake @@ -24,12 +24,13 @@ list(APPEND mom6_src_files MOM6/src/core/MOM_CoriolisAdv.F90 MOM6/src/core/MOM_PressureForce.F90 MOM6/src/core/MOM_PressureForce_Montgomery.F90 - MOM6/src/core/MOM_PressureForce_analytic_FV.F90 + MOM6/src/core/MOM_PressureForce_FV.F90 MOM6/src/core/MOM_barotropic.F90 MOM6/src/core/MOM_boundary_update.F90 MOM6/src/core/MOM_checksum_packages.F90 MOM6/src/core/MOM_continuity.F90 MOM6/src/core/MOM_continuity_PPM.F90 + MOM6/src/core/MOM_density_integrals.F90 MOM6/src/core/MOM_dynamics_split_RK2.F90 MOM6/src/core/MOM_dynamics_unsplit.F90 MOM6/src/core/MOM_dynamics_unsplit_RK2.F90 @@ -214,12 +215,13 @@ list(APPEND mom6_src_files MOM6/src/user/Kelvin_initialization.F90 MOM6/src/user/MOM_controlled_forcing.F90 MOM6/src/user/MOM_wave_interface.F90 - MOM6/src/user/Neverland_initialization.F90 + MOM6/src/user/Neverworld_initialization.F90 MOM6/src/user/Phillips_initialization.F90 MOM6/src/user/RGC_initialization.F90 MOM6/src/user/Rossby_front_2d_initialization.F90 MOM6/src/user/SCM_CVMix_tests.F90 MOM6/src/user/adjustment_initialization.F90 + MOM6/src/user/basin_builder.F90 MOM6/src/user/baroclinic_zone_initialization.F90 MOM6/src/user/benchmark_initialization.F90 MOM6/src/user/circle_obcs_initialization.F90 @@ -241,11 +243,15 @@ list(APPEND mom6_src_files MOM6/src/user/user_revise_forcing.F90 MOM6/src/ocean_data_assim/MOM_oda_driver.F90 - MOM6/src/ocean_data_assim/core/ocean_da_core.F90 - MOM6/src/ocean_data_assim/core/ocean_da_types.F90 - MOM6/src/ocean_data_assim/core/write_ocean_obs.F90 - MOM6/src/ocean_data_assim/geoKdTree/kdtree.f90 + MOM6/config_src/external/GFDL_ocean_BGC/FMS_coupler_util.F90 + MOM6/config_src/external/GFDL_ocean_BGC/generic_tracer.F90 + MOM6/config_src/external/GFDL_ocean_BGC/generic_tracer_utils.F90 + MOM6/config_src/external/ODA_hooks/kdtree.f90 + MOM6/config_src/external/ODA_hooks/ocean_da_core.F90 + MOM6/config_src/external/ODA_hooks/ocean_da_types.F90 + MOM6/config_src/external/ODA_hooks/write_ocean_obs.F90 + ) list(APPEND mom6_nuopc_src_files @@ -261,7 +267,6 @@ list(APPEND mom6_solo_src_files MOM6/config_src/solo_driver/MESO_surface_forcing.F90 MOM6/config_src/solo_driver/MOM_driver.F90 MOM6/config_src/solo_driver/MOM_surface_forcing.F90 - MOM6/config_src/solo_driver/Neverland_surface_forcing.F90 MOM6/config_src/solo_driver/atmos_ocean_fluxes.F90 MOM6/config_src/solo_driver/user_surface_forcing.F90 ) diff --git a/cmake/configure_jet.intel.cmake b/cmake/configure_jet.intel.cmake index 19baeb71ca..3b151ec3f0 100644 --- a/cmake/configure_jet.intel.cmake +++ b/cmake/configure_jet.intel.cmake @@ -1,3 +1,4 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) +set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) set(SIMDMULTIARCH ON CACHE BOOL "Enable multi-target SIMD instruction sets" FORCE) diff --git a/fms_files.cmake b/fms_files.cmake index 6756cd323d..fffd5a3b71 100644 --- a/fms_files.cmake +++ b/fms_files.cmake @@ -1,4 +1,5 @@ list(APPEND fms_src_files + FMS/affinity/fms_affinity.F90 FMS/amip_interp/amip_interp.F90 FMS/astronomy/astronomy.F90 FMS/axis_utils/axis_utils.F90 diff --git a/modulefiles/jet.intel/fv3 b/modulefiles/jet.intel/fv3 index 7fba88ede5..b56733b2c3 100644 --- a/modulefiles/jet.intel/fv3 +++ b/modulefiles/jet.intel/fv3 @@ -1,53 +1,43 @@ -#%Module###################################################################### -## -## nems prerequisites -## +#%Module proc ModulesHelp {} { - puts stderr "The prerequisites for compiling or running FV3 on Jet/Intel" + puts stderr "\tcit - loads modules required for building and running UFS Model on Jet/Intel" } -module purge +module-whatis "loads UFS Model prerequisites for Jet/Intel" -## -## load contrib environment -## load slurm utils (arbitrary.pl layout.pl) -## -module use -a /contrib/sutils/modulefiles +module use /contrib/sutils/modulefiles module load sutils -module load intel/18.0.5.274 -module load impi/2018.4.274 - -## -## use pre-compiled PNG, NetCDF, ESMF and NCEP libraries for above compiler / MPI combination -## -module use -a /lfs4/HFIP/hfv3gfs/software/ufs-stack-20200909/intel-18.0.5.274/impi-2018.4.274/modules - -module load libpng/1.6.35 -module load netcdf/4.7.4 -module load esmf/8.1.0bs27 - -module load bacio/2.4.0 -module load crtm/2.3.0 -module load g2/3.4.0 -module load g2tmpl/1.9.0 -module load ip/3.3.0 -module load nceppost/dceca26 -module load nemsio/2.5.1 -module load sp/2.3.0 -module load w3emc/2.7.0 -module load w3nco/2.4.0 - -module load gfsio/1.4.0 -module load sfcio/1.4.0 -module load sigio/2.3.0 - -## -## load cmake -## 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 + +# At this time (2020/11/30), this is the pre-release version 1.0.0 +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/stochastic_physics b/stochastic_physics index 6eac8455ec..e4913c062b 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 6eac8455ece23fcadcb97c876346cd87c0f70e6f +Subproject commit e4913c062b520cf8d76d9c82f90636aee19cbddb diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 56259ffe56..8512ff84da 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Tue Nov 24 09:54:19 MST 2020 +Sun Dec 6 09:12:30 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/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-20201124/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/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-20201124/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/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 @@ -186,8 +186,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-20201124/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -322,8 +322,8 @@ Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_gsd results .... Test 007 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -550,8 +550,8 @@ Checking test 008 fv3_ccpp_thompson results .... Test 008 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -618,8 +618,8 @@ Checking test 009 fv3_ccpp_thompson_no_aero results .... Test 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -686,8 +686,8 @@ Checking test 010 fv3_ccpp_rrfs_v1beta results .... Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -754,8 +754,8 @@ Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -772,8 +772,8 @@ Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -802,8 +802,8 @@ Checking test 013 fv3_ccpp_control_debug results .... Test 013 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -870,8 +870,8 @@ Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Test 014 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Test 015 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1074,8 +1074,8 @@ Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1216,8 +1216,8 @@ Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22144/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1235,5 +1235,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Nov 24 10:11:29 MST 2020 -Elapsed time: 00h:17m:10s. Have a nice day! +Sun Dec 6 09:28:45 MST 2020 +Elapsed time: 00h:16m:16s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 4a64920a53..6c320ecfa0 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Tue Nov 24 13:00:04 MST 2020 +Mon Dec 7 08:23:11 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201124/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201124/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201124/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_restart_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201124/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201124/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201124/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201124/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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 .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......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-20201124/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201124/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201124/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201124/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20201124/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -882,8 +882,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1024,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,8 +1080,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1147,8 +1147,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1158,8 +1158,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1167,8 +1167,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1178,19 +1178,19 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 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 phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1239,8 +1239,8 @@ Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1335,8 +1335,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1383,8 +1383,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1431,8 +1431,8 @@ Checking test 029 fv3_ccpp_csawmg results .... Test 029 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,8 +1479,8 @@ Checking test 030 fv3_ccpp_satmedmf results .... Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1527,8 +1527,8 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1575,8 +1575,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,8 +1681,8 @@ Checking test 034 fv3_ccpp_cpt results .... Test 034 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 035 fv3_ccpp_gsd results .... Test 035 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson results .... Test 036 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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 @@ -2045,8 +2045,8 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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 @@ -2113,8 +2113,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Test 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2181,8 +2181,8 @@ Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 041 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 042 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2249,8 +2249,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 042 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gocart_clm_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2297,8 +2297,8 @@ Checking test 043 fv3_ccpp_gocart_clm results .... Test 043 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2365,8 +2365,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Test 044 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2433,8 +2433,8 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2451,8 +2451,8 @@ Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v16beta_debug_prod Checking test 047 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2519,8 +2519,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_debug results .... Test 047 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2587,8 +2587,8 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2655,8 +2655,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gsd_debug_prod Checking test 050 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2723,8 +2723,8 @@ Checking test 050 fv3_ccpp_gsd_debug results .... Test 050 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gsd_diag3d_debug_prod Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2791,8 +2791,8 @@ Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Test 051 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_thompson_debug_prod Checking test 052 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2859,8 +2859,8 @@ Checking test 052 fv3_ccpp_thompson_debug results .... Test 052 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_thompson_no_aero_debug_prod Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2927,8 +2927,8 @@ Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... Test 053 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2995,8 +2995,8 @@ Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Test 054 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3063,8 +3063,8 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_63644/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3082,5 +3082,5 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Nov 24 13:35:40 MST 2020 -Elapsed time: 00h:35m:36s. Have a nice day! +Mon Dec 7 09:14:31 MST 2020 +Elapsed time: 00h:51m:20s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 70dce041ef..fa9f3eef93 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Tue Nov 24 10:14:28 EST 2020 +Sat Dec 5 12:50:41 EST 2020 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201124/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201124/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201124/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201124/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201124/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201124/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201124/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201124/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201124/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201124/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20201124/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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 = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -746,8 +746,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -820,8 +820,8 @@ Checking test 014 fv3_ccpp_multigases results .... Test 014 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_control_32bit results .... Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,8 +944,8 @@ Checking test 016 fv3_ccpp_stretched results .... Test 016 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1011,8 +1011,8 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1022,8 +1022,8 @@ Checking test 018 fv3_ccpp_regional_control results .... Test 018 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1031,8 +1031,8 @@ Checking test 019 fv3_ccpp_regional_restart results .... Test 019 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1042,8 +1042,8 @@ Checking test 020 fv3_ccpp_regional_quilt results .... Test 020 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 021 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1053,8 +1053,8 @@ Checking test 021 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 021 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_regional_c768_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_regional_c768_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_regional_c768_prod Checking test 022 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1064,8 +1064,8 @@ Checking test 022 fv3_ccpp_regional_c768 results .... Test 022 fv3_ccpp_regional_c768 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1094,8 +1094,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1114,8 +1114,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1162,8 +1162,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1210,8 +1210,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1258,8 +1258,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1306,8 +1306,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1354,8 +1354,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,8 +1402,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1450,8 +1450,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_cpt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1504,8 +1504,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gsd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1596,8 +1596,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1664,8 +1664,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,8 +1732,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1800,8 +1800,8 @@ Checking test 036 fv3_ccpp_rrfs_v1beta results .... Test 036 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gocart_clm_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gocart_clm_prod Checking test 037 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1848,8 +1848,8 @@ Checking test 037 fv3_ccpp_gocart_clm results .... Test 037 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfs_v16beta_flake_prod Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1916,8 +1916,8 @@ Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Test 038 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1984,8 +1984,8 @@ Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2002,8 +2002,8 @@ Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gsd_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2070,8 +2070,8 @@ Checking test 041 fv3_ccpp_gsd_debug results .... Test 041 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2138,8 +2138,8 @@ Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Test 042 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,8 +2206,8 @@ Checking test 043 fv3_ccpp_thompson_debug results .... Test 043 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,8 +2274,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Test 044 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2342,8 +2342,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Test 045 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,8 +2410,8 @@ Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_10824/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2429,5 +2429,5 @@ Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Nov 24 10:48:26 EST 2020 -Elapsed time: 00h:33m:59s. Have a nice day! +Sat Dec 5 13:21:17 EST 2020 +Elapsed time: 00h:30m:37s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 122983979e..3993e7b6cd 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Tue Nov 24 03:42:18 UTC 2020 +Fri Dec 4 18:53:23 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/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-20201124/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/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-20201124/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/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 @@ -186,8 +186,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-20201124/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -254,8 +254,8 @@ Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Test 004 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -322,8 +322,8 @@ Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -390,8 +390,8 @@ Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -482,8 +482,8 @@ Checking test 007 fv3_ccpp_gsd results .... Test 007 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -550,8 +550,8 @@ Checking test 008 fv3_ccpp_thompson results .... Test 008 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -618,8 +618,8 @@ Checking test 009 fv3_ccpp_thompson_no_aero results .... Test 009 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -686,8 +686,8 @@ Checking test 010 fv3_ccpp_rrfs_v1beta results .... Test 010 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -754,8 +754,8 @@ Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -772,8 +772,8 @@ Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -802,8 +802,8 @@ Checking test 013 fv3_ccpp_control_debug results .... Test 013 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -870,8 +870,8 @@ Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Test 014 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Test 015 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1074,8 +1074,8 @@ Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1216,8 +1216,8 @@ Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_113664/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1235,5 +1235,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Nov 24 04:04:14 UTC 2020 -Elapsed time: 00h:21m:56s. Have a nice day! +Fri Dec 4 19:54:47 UTC 2020 +Elapsed time: 01h:01m:24s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 5f5aefecc6..9a05a4347e 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Tue Nov 24 15:12:32 UTC 2020 +Fri Dec 4 20:05:11 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_lndp_prod Checking test 015 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_lndp results .... Test 015 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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-20201124/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1393,19 +1393,19 @@ 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-20201124/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_regional_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_regional_c768_prod Checking test 028 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1415,8 +1415,8 @@ Checking test 028 fv3_ccpp_regional_c768 results .... Test 028 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_control_debug_prod Checking test 029 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1445,8 +1445,8 @@ Checking test 029 fv3_ccpp_control_debug results .... Test 029 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_stretched_nest_debug_prod Checking test 030 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1465,8 +1465,8 @@ Checking test 030 fv3_ccpp_stretched_nest_debug results .... Test 030 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmp_prod Checking test 031 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1513,8 +1513,8 @@ Checking test 031 fv3_ccpp_gfdlmp results .... Test 031 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmprad_gwd_prod Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,8 +1561,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Test 032 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1609,8 +1609,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Test 033 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_csawmg_prod Checking test 034 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,8 +1657,8 @@ Checking test 034 fv3_ccpp_csawmg results .... Test 034 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_satmedmf_prod Checking test 035 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 035 fv3_ccpp_satmedmf results .... Test 035 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_satmedmfq_prod Checking test 036 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1753,8 +1753,8 @@ Checking test 036 fv3_ccpp_satmedmfq results .... Test 036 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmp_32bit_prod Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1801,8 +1801,8 @@ Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Test 037 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1853,8 +1853,8 @@ Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Test 038 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_cpt_prod Checking test 039 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1907,8 +1907,8 @@ Checking test 039 fv3_ccpp_cpt results .... Test 039 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gsd_prod Checking test 040 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1999,8 +1999,8 @@ Checking test 040 fv3_ccpp_gsd results .... Test 040 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_rap_prod Checking test 041 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2067,8 +2067,8 @@ Checking test 041 fv3_ccpp_rap results .... Test 041 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_hrrr_prod Checking test 042 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2135,8 +2135,8 @@ Checking test 042 fv3_ccpp_hrrr results .... Test 042 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_thompson_prod Checking test 043 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2203,8 +2203,8 @@ Checking test 043 fv3_ccpp_thompson results .... Test 043 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_thompson_no_aero_prod Checking test 044 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2271,8 +2271,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero results .... Test 044 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_rrfs_v1beta_prod Checking test 045 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2339,8 +2339,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta results .... Test 045 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v15p2_prod Checking test 046 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2407,8 +2407,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2 results .... Test 046 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v16beta_prod Checking test 047 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2475,8 +2475,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta results .... Test 047 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2543,8 +2543,8 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2611,8 +2611,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 049 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2659,8 +2659,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmg results .... Test 050 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2707,8 +2707,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... Test 051 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2755,8 +2755,8 @@ Checking test 052 fv3_ccpp_gocart_clm results .... Test 052 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2823,8 +2823,8 @@ Checking test 053 fv3_ccpp_gfs_v16beta_flake results .... Test 053 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2891,8 +2891,8 @@ Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2909,8 +2909,8 @@ Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -2977,8 +2977,8 @@ Checking test 056 fv3_ccpp_gfs_v15p2_debug results .... Test 056 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3045,8 +3045,8 @@ Checking test 057 fv3_ccpp_gfs_v16beta_debug results .... Test 057 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3113,8 +3113,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3181,8 +3181,8 @@ Checking test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3249,8 +3249,8 @@ Checking test 060 fv3_ccpp_gsd_debug results .... Test 060 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3317,8 +3317,8 @@ Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... Test 061 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3385,8 +3385,8 @@ Checking test 062 fv3_ccpp_thompson_debug results .... Test 062 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3453,8 +3453,8 @@ Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... Test 063 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3521,8 +3521,8 @@ Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... Test 064 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3589,8 +3589,8 @@ Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 @@ -3607,8 +3607,8 @@ Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_prod Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3660,8 +3660,8 @@ Checking test 067 cpld_control results .... Test 067 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_2threads_prod Checking test 068 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3713,8 +3713,8 @@ Checking test 068 cpld_2threads results .... Test 068 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_decomp_prod Checking test 069 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3766,8 +3766,8 @@ Checking test 069 cpld_decomp results .... Test 069 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_satmedmf_prod Checking test 070 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3819,8 +3819,8 @@ Checking test 070 cpld_satmedmf results .... Test 070 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_ca_prod Checking test 071 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3872,8 +3872,8 @@ Checking test 071 cpld_ca results .... Test 071 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_control_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_mx025_prod Checking test 072 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3928,8 +3928,8 @@ Checking test 072 cpld_control_mx025 results .... Test 072 cpld_control_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_control_mx025_12h_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_12h_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_mx025_12h_prod Checking test 073 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3984,8 +3984,8 @@ Checking test 073 cpld_control_mx025_12h results .... Test 073 cpld_control_mx025_12h PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_restart_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_restart_mx025_prod Checking test 074 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4040,8 +4040,8 @@ Checking test 074 cpld_restart_mx025 results .... Test 074 cpld_restart_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_c192_prod Checking test 075 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4093,8 +4093,8 @@ Checking test 075 cpld_control_c192 results .... Test 075 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_c384_prod Checking test 076 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4149,8 +4149,8 @@ Checking test 076 cpld_control_c384 results .... Test 076 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_controlfrac_c384_prod Checking test 077 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4205,8 +4205,8 @@ Checking test 077 cpld_controlfrac_c384 results .... Test 077 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_bmark_prod Checking test 078 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4261,8 +4261,8 @@ Checking test 078 cpld_bmark results .... Test 078 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_bmark_wave_prod Checking test 079 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4320,8 +4320,8 @@ Checking test 079 cpld_bmark_wave results .... Test 079 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/cpld_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_debug_prod Checking test 080 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4373,8 +4373,8 @@ Checking test 080 cpld_debug results .... Test 080 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/datm_control_cfsr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/datm_control_cfsr_prod Checking test 081 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4382,8 +4382,8 @@ Checking test 081 datm_control_cfsr results .... Test 081 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/datm_control_gefs_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/datm_control_gefs_prod Checking test 082 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4391,8 +4391,8 @@ Checking test 082 datm_control_gefs results .... Test 082 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/datm_mx025_cfsr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/datm_mx025_cfsr_prod Checking test 083 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4403,8 +4403,8 @@ Checking test 083 datm_mx025_cfsr results .... Test 083 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_291166/datm_mx025_gefs_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/datm_mx025_gefs_prod Checking test 084 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4416,5 +4416,5 @@ Test 084 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Tue Nov 24 16:16:27 UTC 2020 -Elapsed time: 01h:03m:56s. Have a nice day! +Fri Dec 4 21:42:30 UTC 2020 +Elapsed time: 01h:37m:19s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 9de1479ab6..13ae2d00ff 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,10 +1,10 @@ -Sat Dec 28 21:17:28 UTC 2019 +Sat Dec 5 17:50:59 GMT 2020 Start Regression test -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_control -Checking test 001 fv3_control results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_control_prod +Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -67,12 +67,12 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 001 fv3_control PASS +Test 001 fv3_ccpp_control PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_decomp -Checking test 002 fv3_decomp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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 @@ -135,12 +135,12 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_decomp PASS +Test 002 fv3_ccpp_decomp PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_2threads -Checking test 003 fv3_2threads results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_2threads_prod +Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -203,12 +203,12 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_2threads PASS +Test 003 fv3_ccpp_2threads PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_restart -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_restart -Checking test 004 fv3_restart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_restart_prod +Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -271,12 +271,12 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_restart PASS +Test 004 fv3_ccpp_restart PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_read_inc -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_read_inc -Checking test 005 fv3_read_inc results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -339,70 +339,22 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_read_inc PASS +Test 005 fv3_ccpp_read_inc PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfdlmp -Checking test 006 fv3_gfdlmp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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 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 006 fv3_gfdlmp PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmprad_gwd -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfdlmprad_gwd -Checking test 007 fv3_gfdlmprad_gwd 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.nc .........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 Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -423,102 +375,34 @@ Checking test 007 fv3_gfdlmprad_gwd 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 007 fv3_gfdlmprad_gwd PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmprad_noahmp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfdlmprad_noahmp -Checking test 008 fv3_gfdlmprad_noahmp 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 008 fv3_gfdlmprad_noahmp PASS +Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_thompson -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_thompson -Checking test 009 fv3_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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 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 phyf000.nc .........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 Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -539,92 +423,24 @@ Checking test 009 fv3_thompson 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 009 fv3_thompson PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wsm6 -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wsm6 -Checking test 010 fv3_wsm6 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 010 fv3_wsm6 PASS +Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wrtGauss_netcdf_esmf -Checking test 011 fv3_wrtGauss_netcdf_esmf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -632,7 +448,7 @@ Checking test 011 fv3_wrtGauss_netcdf_esmf 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 .........OK Comparing RESTART/coupler.res .........OK @@ -667,12 +483,12 @@ Checking test 011 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_wrtGauss_netcdf_esmf PASS +Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_netcdf -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wrtGauss_netcdf -Checking test 012 fv3_wrtGauss_netcdf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -715,12 +531,12 @@ Checking test 012 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_wrtGauss_netcdf PASS +Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_nemsio -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wrtGauss_nemsio -Checking test 013 fv3_wrtGauss_nemsio results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -763,12 +579,12 @@ Checking test 013 fv3_wrtGauss_nemsio 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_wrtGauss_nemsio PASS +Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wrtGauss_nemsio_c192 -Checking test 014 fv3_wrtGauss_nemsio_c192 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -811,12 +627,12 @@ Checking test 014 fv3_wrtGauss_nemsio_c192 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_wrtGauss_nemsio_c192 PASS +Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stochy -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_stochy -Checking test 015 fv3_stochy results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -879,12 +695,12 @@ Checking test 015 fv3_stochy 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_stochy PASS +Test 012 fv3_ccpp_stochy PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_iau -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_iau -Checking test 016 fv3_iau results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_iau_prod +Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -947,12 +763,12 @@ Checking test 016 fv3_iau 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_iau PASS +Test 013 fv3_ccpp_iau PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_csawmgshoc -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_csawmgshoc -Checking test 017 fv3_csawmgshoc results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_lheatstrg_prod +Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -995,22 +811,42 @@ Checking test 017 fv3_csawmgshoc 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_csawmgshoc PASS +Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_csawmg -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_csawmg -Checking test 018 fv3_csawmg results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_multigases_prod +Checking test 015 fv3_ccpp_multigases 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 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 @@ -1043,22 +879,48 @@ Checking test 018 fv3_csawmg 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_csawmg PASS + 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 015 fv3_ccpp_multigases PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_rasmgshoc -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_rasmgshoc -Checking test 019 fv3_rasmgshoc results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_control_32bit_prod +Checking test 016 fv3_ccpp_control_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 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 @@ -1091,22 +953,30 @@ Checking test 019 fv3_rasmgshoc 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_rasmgshoc PASS +Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_csawmg3shoc127 -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_csawmg3shoc127 -Checking test 020 fv3_csawmg3shoc127 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_stretched_prod +Checking test 017 fv3_ccpp_stretched 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 fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1139,60 +1009,182 @@ Checking test 020 fv3_csawmg3shoc127 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_csawmg3shoc127 PASS +Test 017 fv3_ccpp_stretched PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_satmedmf -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_satmedmf -Checking test 021 fv3_satmedmf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_stretched_nest_prod +Checking test 018 fv3_ccpp_stretched_nest 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 atmos_4xdaily.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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 021 fv3_satmedmf PASS + Comparing RESTART/sfc_data.nest02.tile7.nc .........OK +Test 018 fv3_ccpp_stretched_nest PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_control_prod +Checking test 019 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 + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_restart_prod +Checking test 020 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 + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_quilt_prod +Checking test 021 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 + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 022 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 +Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_c768_prod +Checking test 023 fv3_ccpp_regional_c768 results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf003.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf003.nc .........OK +Test 023 fv3_ccpp_regional_c768 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_control_debug_prod +Checking test 024 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 024 fv3_ccpp_control_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_stretched_nest_debug_prod +Checking test 025 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + 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 -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_lheatstrg -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_lheatstrg -Checking test 022 fv3_lheatstrg results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfdlmp_prod +Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1223,54 +1215,34 @@ Checking test 022 fv3_lheatstrg 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/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 022 fv3_lheatstrg PASS + 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 026 fv3_ccpp_gfdlmp PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_appbuild -Checking test 023 fv3_appbuild results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 027 fv3_ccpp_gfdlmprad_gwd 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 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 @@ -1291,54 +1263,82 @@ Checking test 023 fv3_appbuild 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 027 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 028 fv3_ccpp_gfdlmprad_noahmp 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 -Test 023 fv3_appbuild PASS + 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 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_32bit -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_control_32bit -Checking test 024 fv3_control_32bit results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_csawmg_prod +Checking test 029 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.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 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 @@ -1371,30 +1371,22 @@ Checking test 024 fv3_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 024 fv3_control_32bit PASS +Test 029 fv3_ccpp_csawmg PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_stretched -Checking test 025 fv3_stretched results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_satmedmf_prod +Checking test 030 fv3_ccpp_satmedmf 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 fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 @@ -1427,3675 +1419,60 @@ Checking test 025 fv3_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 025 fv3_stretched PASS +Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched_nest -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_stretched_nest -Checking test 026 fv3_stretched_nest results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_satmedmfq_prod +Checking test 031 fv3_ccpp_satmedmfq 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.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.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.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 026 fv3_stretched_nest PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_control -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_regional_control -Checking test 027 fv3_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 027 fv3_regional_control PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_restart -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_regional_restart -Checking test 028 fv3_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 028 fv3_regional_restart PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_quilt -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_regional_quilt -Checking test 029 fv3_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 029 fv3_regional_quilt PASS +Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_c768 -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_regional_c768 -Checking test 030 fv3_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 030 fv3_regional_c768 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_control_repro -Checking test 031 fv3_control 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 031 fv3_control PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_decomp_repro -Checking test 032 fv3_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 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 032 fv3_decomp PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_2threads_repro -Checking test 033 fv3_2threads 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 033 fv3_2threads PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_restart_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_restart_repro -Checking test 034 fv3_restart 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 034 fv3_restart PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_read_inc_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_read_inc_repro -Checking test 035 fv3_read_inc 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 035 fv3_read_inc PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_netcdf_esmf_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wrtGauss_netcdf_esmf_repro -Checking test 036 fv3_wrtGauss_netcdf_esmf 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.nc .........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 - 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 036 fv3_wrtGauss_netcdf_esmf PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_netcdf_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wrtGauss_netcdf_repro -Checking test 037 fv3_wrtGauss_netcdf 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.nc .........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 - 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_wrtGauss_netcdf PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_nemsio_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wrtGauss_nemsio_repro -Checking test 038 fv3_wrtGauss_nemsio 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 038 fv3_wrtGauss_nemsio PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_nemsio_c192_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_wrtGauss_nemsio_c192_repro -Checking test 039 fv3_wrtGauss_nemsio_c192 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 039 fv3_wrtGauss_nemsio_c192 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stochy_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_stochy_repro -Checking test 040 fv3_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/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_stochy PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_iau_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_iau_repro -Checking test 041 fv3_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 041 fv3_iau PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmp_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfdlmp_repro -Checking test 042 fv3_gfdlmp 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 042 fv3_gfdlmp PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmprad_gwd_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfdlmprad_gwd_repro -Checking test 043 fv3_gfdlmprad_gwd 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 043 fv3_gfdlmprad_gwd PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmprad_noahmp_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfdlmprad_noahmp_repro -Checking test 044 fv3_gfdlmprad_noahmp 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 044 fv3_gfdlmprad_noahmp PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_csawmgshoc_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_csawmgshoc_repro -Checking test 045 fv3_csawmgshoc 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_csawmgshoc PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_csawmg3shoc127_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_csawmg3shoc127_repro -Checking test 046 fv3_csawmg3shoc127 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_csawmg3shoc127 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_csawmg_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_csawmg_repro -Checking test 047 fv3_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 047 fv3_csawmg PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_satmedmf_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_satmedmf_repro -Checking test 048 fv3_satmedmf 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_satmedmf PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_appbuild_repro -Checking test 049 fv3_appbuild 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 049 fv3_appbuild PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_32bit_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_control_32bit_repro -Checking test 050 fv3_control_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.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 050 fv3_control_32bit PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_stretched_repro -Checking test 051 fv3_stretched 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 fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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_stretched PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched_nest_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_stretched_nest_repro -Checking test 052 fv3_stretched_nest 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.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 052 fv3_stretched_nest PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_regional_control_repro -Checking test 053 fv3_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 053 fv3_regional_control PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_restart_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_regional_restart_repro -Checking test 054 fv3_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 054 fv3_regional_restart PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_quilt_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_regional_quilt_repro -Checking test 055 fv3_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 055 fv3_regional_quilt PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_c768_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_regional_c768_repro -Checking test 056 fv3_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 056 fv3_regional_c768 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmp_32bit_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfdlmp_32bit_repro -Checking test 057 fv3_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 057 fv3_gfdlmp_32bit PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfs_v15_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfs_v15_repro -Checking test 058 fv3_gfs_v15 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 058 fv3_gfs_v15 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfs_v15plus_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_gfs_v15plus_repro -Checking test 059 fv3_gfs_v15plus 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 059 fv3_gfs_v15plus PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_cpt_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_cpt_repro -Checking test 060 fv3_cpt 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 - 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 060 fv3_cpt PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_control_repro -Checking test 061 fv3_ccpp_control 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 061 fv3_ccpp_control PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_decomp_repro -Checking test 062 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 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 062 fv3_ccpp_decomp PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_2threads_repro -Checking test 063 fv3_ccpp_2threads 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 063 fv3_ccpp_2threads PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_restart_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_restart_repro -Checking test 064 fv3_ccpp_restart 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 064 fv3_ccpp_restart PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_read_inc_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_read_inc_repro -Checking test 065 fv3_ccpp_read_inc 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 065 fv3_ccpp_read_inc PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_netcdf_esmf_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_wrtGauss_netcdf_esmf_repro -Checking test 066 fv3_ccpp_wrtGauss_netcdf_esmf 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.nc .........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 - 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 066 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_netcdf_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_wrtGauss_netcdf_repro -Checking test 067 fv3_ccpp_wrtGauss_netcdf 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.nc .........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 - 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 067 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_nemsio_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_wrtGauss_nemsio_repro -Checking test 068 fv3_ccpp_wrtGauss_nemsio 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 068 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_nemsio_c192_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_wrtGauss_nemsio_c192_repro -Checking test 069 fv3_ccpp_wrtGauss_nemsio_c192 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 069 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stochy_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_stochy_repro -Checking test 070 fv3_ccpp_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/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 070 fv3_ccpp_stochy PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_iau_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_iau_repro -Checking test 071 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 071 fv3_ccpp_iau PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_appbuild_repro -Checking test 072 fv3_ccpp_appbuild 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 072 fv3_ccpp_appbuild PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_32bit_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_control_32bit_repro -Checking test 073 fv3_ccpp_control_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.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 073 fv3_ccpp_control_32bit PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_stretched_repro -Checking test 074 fv3_ccpp_stretched 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 fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 074 fv3_ccpp_stretched PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched_nest_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_stretched_nest_repro -Checking test 075 fv3_ccpp_stretched_nest 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.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 075 fv3_ccpp_stretched_nest PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_control_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_regional_control_repro -Checking test 076 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 076 fv3_ccpp_regional_control PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_restart_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_regional_restart_repro -Checking test 077 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 077 fv3_ccpp_regional_restart PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_quilt_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_regional_quilt_repro -Checking test 078 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 078 fv3_ccpp_regional_quilt PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_c768_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_regional_c768_repro -Checking test 079 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 079 fv3_ccpp_regional_c768 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmp_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfdlmp_repro -Checking test 080 fv3_ccpp_gfdlmp 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 080 fv3_ccpp_gfdlmp PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmprad_gwd_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfdlmprad_gwd_repro -Checking test 081 fv3_ccpp_gfdlmprad_gwd 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 081 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmprad_noahmp_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfdlmprad_noahmp_repro -Checking test 082 fv3_ccpp_gfdlmprad_noahmp 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 082 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_csawmg_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_csawmg_repro -Checking test 083 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 083 fv3_ccpp_csawmg PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_satmedmf_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_satmedmf_repro -Checking test 084 fv3_ccpp_satmedmf 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 084 fv3_ccpp_satmedmf PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmp_32bit_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfdlmp_32bit_repro -Checking test 085 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 085 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfs_v15_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfs_v15_repro -Checking test 086 fv3_ccpp_gfs_v15 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 086 fv3_ccpp_gfs_v15 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfs_v15plus_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfs_v15plus_repro -Checking test 087 fv3_ccpp_gfs_v15plus 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 087 fv3_ccpp_gfs_v15plus PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_cpt_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_cpt_repro -Checking test 088 fv3_ccpp_cpt 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 - 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 088 fv3_ccpp_cpt PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gsd_repro -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gsd_repro -Checking test 089 fv3_ccpp_gsd 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 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 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 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 089 fv3_ccpp_gsd PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_control_prod -Checking test 090 fv3_ccpp_control 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 090 fv3_ccpp_control PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_decomp_prod -Checking test 091 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 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 091 fv3_ccpp_decomp PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_2threads_prod -Checking test 092 fv3_ccpp_2threads 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 092 fv3_ccpp_2threads PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_restart_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_restart_prod -Checking test 093 fv3_ccpp_restart 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 093 fv3_ccpp_restart PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_read_inc_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_read_inc_prod -Checking test 094 fv3_ccpp_read_inc 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 094 fv3_ccpp_read_inc PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 095 fv3_ccpp_wrtGauss_netcdf_esmf 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.nc .........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 - 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 095 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 096 fv3_ccpp_wrtGauss_netcdf 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.nc .........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 - 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 096 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 097 fv3_ccpp_wrtGauss_nemsio 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 097 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 098 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfdlmp_32bit_prod +Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5125,55 +1502,35 @@ Checking test 098 fv3_ccpp_wrtGauss_nemsio_c192 results .... 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/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 -Test 098 fv3_ccpp_wrtGauss_nemsio_c192 PASS + 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 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stochy_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_stochy_prod -Checking test 099 fv3_ccpp_stochy results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_cpt_prod +Checking test 033 fv3_ccpp_cpt 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 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 @@ -5206,18 +1563,36 @@ Checking test 099 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 099 fv3_ccpp_stochy PASS + 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_cpt PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_iau_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_iau_prod -Checking test 100 fv3_ccpp_iau results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gsd_prod +Checking test 034 fv3_ccpp_gsd 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 phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -5230,6 +1605,18 @@ Checking test 100 fv3_ccpp_iau results .... 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 dynf027.tile1.nc .........OK Comparing dynf027.tile2.nc .........OK Comparing dynf027.tile3.nc .........OK @@ -5274,12 +1661,12 @@ Checking test 100 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 100 fv3_ccpp_iau PASS +Test 034 fv3_ccpp_gsd PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_appbuild_prod -Checking test 101 fv3_ccpp_appbuild results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_thompson_prod +Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5342,12 +1729,12 @@ Checking test 101 fv3_ccpp_appbuild results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 101 fv3_ccpp_appbuild PASS +Test 035 fv3_ccpp_thompson PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_32bit_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_control_32bit_prod -Checking test 102 fv3_ccpp_control_32bit results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_thompson_no_aero_prod +Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5404,239 +1791,18 @@ Checking test 102 fv3_ccpp_control_32bit results .... 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 102 fv3_ccpp_control_32bit PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_stretched_prod -Checking test 103 fv3_ccpp_stretched 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 fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 103 fv3_ccpp_stretched PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched_nest_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_stretched_nest_prod -Checking test 104 fv3_ccpp_stretched_nest 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.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 104 fv3_ccpp_stretched_nest PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_control_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_regional_control_prod -Checking test 105 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 105 fv3_ccpp_regional_control PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_restart_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_regional_restart_prod -Checking test 106 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 106 fv3_ccpp_regional_restart PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_quilt_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_regional_quilt_prod -Checking test 107 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 107 fv3_ccpp_regional_quilt PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_c768_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_regional_c768_prod -Checking test 108 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 108 fv3_ccpp_regional_c768 PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_control_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_control_debug_prod -Checking test 109 fv3_ccpp_control_debug results .... -Test 109 fv3_ccpp_control_debug PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_stretched_nest_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_stretched_nest_debug_prod -Checking test 110 fv3_ccpp_stretched_nest_debug results .... -Test 110 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmp_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfdlmp_prod -Checking test 111 fv3_ccpp_gfdlmp 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 111 fv3_ccpp_gfdlmp 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 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 112 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gocart_clm_prod +Checking test 037 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5679,22 +1845,42 @@ Checking test 112 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 112 fv3_ccpp_gfdlmprad_gwd PASS +Test 037 fv3_ccpp_gocart_clm PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 113 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 038 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.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 @@ -5727,22 +1913,42 @@ Checking test 113 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 113 fv3_ccpp_gfdlmprad_noahmp PASS +Test 038 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_csawmg_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_csawmg_prod -Checking test 114 fv3_ccpp_csawmg results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 039 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 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 @@ -5763,34 +1969,72 @@ Checking test 114 fv3_ccpp_csawmg 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/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 114 fv3_ccpp_csawmg PASS + 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 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_satmedmf_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_satmedmf_prod -Checking test 115 fv3_ccpp_satmedmf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gsd_debug_prod +Checking test 041 fv3_ccpp_gsd_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.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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5823,22 +2067,42 @@ Checking test 115 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 115 fv3_ccpp_satmedmf PASS +Test 041 fv3_ccpp_gsd_debug PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfdlmp_32bit_prod -Checking test 116 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 042 fv3_ccpp_gsd_diag3d_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.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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5859,24 +2123,24 @@ Checking test 116 fv3_ccpp_gfdlmp_32bit 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 116 fv3_ccpp_gfdlmp_32bit 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_gsd_diag3d_debug PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfs_v15_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfs_v15_prod -Checking test 117 fv3_ccpp_gfs_v15 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_thompson_debug_prod +Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5889,24 +2153,24 @@ Checking test 117 fv3_ccpp_gfs_v15 results .... 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 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 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 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 @@ -5927,24 +2191,24 @@ Checking test 117 fv3_ccpp_gfs_v15 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 117 fv3_ccpp_gfs_v15 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_thompson_debug PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gfs_v15plus_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gfs_v15plus_prod -Checking test 118 fv3_ccpp_gfs_v15plus results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 044 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 @@ -5957,24 +2221,24 @@ Checking test 118 fv3_ccpp_gfs_v15plus results .... 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 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 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 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 @@ -5995,34 +2259,54 @@ Checking test 118 fv3_ccpp_gfs_v15plus 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 118 fv3_ccpp_gfs_v15plus 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 044 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_cpt_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_cpt_prod -Checking test 119 fv3_ccpp_cpt results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 045 fv3_ccpp_rrfs_v1beta_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.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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -6055,18 +2339,12 @@ Checking test 119 fv3_ccpp_cpt results .... 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 119 fv3_ccpp_cpt PASS +Test 045 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_BASELINE/Dom.Heinzeller/FV3_RT/REGRESSION_TEST_INTEL/fv3_gsd_ccpp -working dir = /lfs3/projects/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_78559/fv3_ccpp_gsd_prod -Checking test 120 fv3_ccpp_gsd results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 046 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 @@ -6079,48 +2357,24 @@ Checking test 120 fv3_ccpp_gsd results .... 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 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -6141,21 +2395,39 @@ Checking test 120 fv3_ccpp_gsd 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/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 120 fv3_ccpp_gsd PASS + 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_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK + 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_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 30 00:13:38 UTC 2019 -Elapsed time: 02h:56m:12s. Have a nice day! +Sat Dec 5 19:28:03 GMT 2020 +Elapsed time: 01h:37m:05s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 912f040220..61eac226dc 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Tue Nov 24 09:15:18 CST 2020 +Fri Dec 4 14:19:40 CST 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201124/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201124/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201124/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201124/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201124/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201124/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201124/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201124/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201124/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201124/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201124/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20201124/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,8 +883,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1055,8 +1055,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_control_32bit results .... Test 019 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1179,8 +1179,8 @@ Checking test 020 fv3_ccpp_stretched results .... Test 020 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 021 fv3_ccpp_stretched_nest results .... Test 021 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1257,8 +1257,8 @@ Checking test 022 fv3_ccpp_regional_control results .... Test 022 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 023 fv3_ccpp_regional_restart results .... Test 023 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1277,8 +1277,8 @@ Checking test 024 fv3_ccpp_regional_quilt results .... Test 024 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1288,8 +1288,8 @@ Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_regional_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1299,8 +1299,8 @@ Checking test 026 fv3_ccpp_regional_c768 results .... Test 026 fv3_ccpp_regional_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1329,8 +1329,8 @@ Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -1349,8 +1349,8 @@ Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1397,8 +1397,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -1445,8 +1445,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -1493,8 +1493,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1541,8 +1541,8 @@ Checking test 032 fv3_ccpp_csawmg results .... Test 032 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1589,8 +1589,8 @@ Checking test 033 fv3_ccpp_satmedmf results .... Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1637,8 +1637,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1689,8 +1689,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1743,8 +1743,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1835,8 +1835,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,8 +1903,8 @@ Checking test 038 fv3_ccpp_thompson results .... Test 038 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1971,8 +1971,8 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2039,8 +2039,8 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v15p2_prod Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,8 +2107,8 @@ Checking test 041 fv3_ccpp_gfs_v15p2 results .... Test 041 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v16beta_prod Checking test 042 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2175,8 +2175,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta results .... Test 042 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2243,8 +2243,8 @@ Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2311,8 +2311,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2359,8 +2359,8 @@ Checking test 045 fv3_ccpp_gfsv16_csawmg results .... Test 045 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2407,8 +2407,8 @@ Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... Test 046 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2455,8 +2455,8 @@ Checking test 047 fv3_ccpp_gocart_clm results .... Test 047 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2523,8 +2523,8 @@ Checking test 048 fv3_ccpp_gfs_v16beta_flake results .... Test 048 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2591,8 +2591,8 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2609,8 +2609,8 @@ Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2677,8 +2677,8 @@ Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... Test 051 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2745,8 +2745,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_debug results .... Test 052 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2813,8 +2813,8 @@ Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2881,8 +2881,8 @@ Checking test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -2949,8 +2949,8 @@ Checking test 055 fv3_ccpp_gsd_debug results .... Test 055 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -3017,8 +3017,8 @@ Checking test 056 fv3_ccpp_gsd_diag3d_debug results .... Test 056 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -3085,8 +3085,8 @@ Checking test 057 fv3_ccpp_thompson_debug results .... Test 057 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -3153,8 +3153,8 @@ Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... Test 058 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -3221,8 +3221,8 @@ Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... Test 059 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -3289,8 +3289,8 @@ Checking test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 @@ -3307,8 +3307,8 @@ Checking test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_prod Checking test 062 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3360,8 +3360,8 @@ Checking test 062 cpld_control results .... Test 062 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_2threads_prod Checking test 063 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3413,8 +3413,8 @@ Checking test 063 cpld_2threads results .... Test 063 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_decomp_prod Checking test 064 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3466,8 +3466,8 @@ Checking test 064 cpld_decomp results .... Test 064 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_satmedmf_prod Checking test 065 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3519,8 +3519,8 @@ Checking test 065 cpld_satmedmf results .... Test 065 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_ca_prod Checking test 066 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3572,8 +3572,8 @@ Checking test 066 cpld_ca results .... Test 066 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_control_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_mx025_prod Checking test 067 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3628,8 +3628,8 @@ Checking test 067 cpld_control_mx025 results .... Test 067 cpld_control_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_control_mx025_12h_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_12h_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_mx025_12h_prod Checking test 068 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3684,8 +3684,8 @@ Checking test 068 cpld_control_mx025_12h results .... Test 068 cpld_control_mx025_12h PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_restart_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_restart_mx025_prod Checking test 069 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3740,8 +3740,8 @@ Checking test 069 cpld_restart_mx025 results .... Test 069 cpld_restart_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_c192_prod Checking test 070 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3793,8 +3793,8 @@ Checking test 070 cpld_control_c192 results .... Test 070 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_c384_prod Checking test 071 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3849,8 +3849,8 @@ Checking test 071 cpld_control_c384 results .... Test 071 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_controlfrac_c384_prod Checking test 072 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3905,8 +3905,8 @@ Checking test 072 cpld_controlfrac_c384 results .... Test 072 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_bmark_prod Checking test 073 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3961,8 +3961,8 @@ Checking test 073 cpld_bmark results .... Test 073 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_bmark_wave_prod Checking test 074 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4020,8 +4020,8 @@ Checking test 074 cpld_bmark_wave results .... Test 074 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/cpld_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_debug_prod Checking test 075 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4073,8 +4073,8 @@ Checking test 075 cpld_debug results .... Test 075 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/datm_control_cfsr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/datm_control_cfsr_prod Checking test 076 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4082,8 +4082,8 @@ Checking test 076 datm_control_cfsr results .... Test 076 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/datm_control_gefs_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/datm_control_gefs_prod Checking test 077 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4091,8 +4091,8 @@ Checking test 077 datm_control_gefs results .... Test 077 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/datm_mx025_cfsr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/datm_mx025_cfsr_prod Checking test 078 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4103,8 +4103,8 @@ Checking test 078 datm_mx025_cfsr results .... Test 078 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_414287/datm_mx025_gefs_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/datm_mx025_gefs_prod Checking test 079 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4116,5 +4116,5 @@ Test 079 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Tue Nov 24 10:11:14 CST 2020 -Elapsed time: 00h:55m:56s. Have a nice day! +Fri Dec 4 15:11:25 CST 2020 +Elapsed time: 00h:51m:45s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index d891e3cb2e..7f27ff0bd6 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Tue Nov 24 15:29:05 UTC 2020 +Fri Dec 4 20:14:46 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201124/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201124/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201124/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201124/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201124/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201124/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201124/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201124/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201124/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201124/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20201124/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,8 +1012,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,8 +1079,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1090,8 +1090,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1121,8 +1121,8 @@ Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1151,8 +1151,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1171,8 +1171,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,8 +1267,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,8 +1363,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,8 +1411,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,8 +1459,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,8 +1507,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,8 +1559,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,8 +1613,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 035 fv3_ccpp_thompson results .... Test 035 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Test 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_rrfs_v1beta_prod Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_rrfs_v1beta results .... Test 037 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfsv16_csawmg_prod Checking test 038 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1957,8 +1957,8 @@ Checking test 038 fv3_ccpp_gfsv16_csawmg results .... Test 038 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfsv16_csawmgt_prod Checking test 039 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2005,8 +2005,8 @@ Checking test 039 fv3_ccpp_gfsv16_csawmgt results .... Test 039 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gocart_clm_prod Checking test 040 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2053,8 +2053,8 @@ Checking test 040 fv3_ccpp_gocart_clm results .... Test 040 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfs_v16beta_flake_prod Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2121,8 +2121,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... Test 041 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2189,8 +2189,8 @@ Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 042 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2207,8 +2207,8 @@ Checking test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gsd_debug_prod Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2275,8 +2275,8 @@ Checking test 044 fv3_ccpp_gsd_debug results .... Test 044 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gsd_diag3d_debug_prod Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2343,8 +2343,8 @@ Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Test 045 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_thompson_debug_prod Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2411,8 +2411,8 @@ Checking test 046 fv3_ccpp_thompson_debug results .... Test 046 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_thompson_no_aero_debug_prod Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2479,8 +2479,8 @@ Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Test 047 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2547,8 +2547,8 @@ Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Test 048 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2615,8 +2615,8 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_775/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2634,5 +2634,5 @@ Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Nov 24 16:00:44 UTC 2020 -Elapsed time: 00h:31m:39s. Have a nice day! +Fri Dec 4 20:48:31 UTC 2020 +Elapsed time: 00h:33m:45s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 6ab1e6652b..43609c2369 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Tue Nov 24 15:26:00 UTC 2020 +Sat Dec 5 12:53:11 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201124/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201124/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201124/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201124/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201124/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201124/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201124/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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,10 +447,10 @@ 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 ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........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 @@ -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-20201124/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201124/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201124/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20201124/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -863,8 +863,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -912,8 +912,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -986,8 +986,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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 @@ -1054,8 +1054,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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 @@ -1177,8 +1177,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1188,8 +1188,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1197,8 +1197,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1208,19 +1208,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_regional_c768_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_regional_c768_prod Checking test 025 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1230,8 +1230,8 @@ Checking test 025 fv3_ccpp_regional_c768 results .... Test 025 fv3_ccpp_regional_c768 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_control_debug_prod Checking test 026 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1260,8 +1260,8 @@ Checking test 026 fv3_ccpp_control_debug results .... Test 026 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_stretched_nest_debug_prod Checking test 027 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1280,8 +1280,8 @@ Checking test 027 fv3_ccpp_stretched_nest_debug results .... Test 027 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,8 +1328,8 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,8 +1376,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1424,8 +1424,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1472,8 +1472,8 @@ Checking test 031 fv3_ccpp_csawmg results .... Test 031 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1520,8 +1520,8 @@ Checking test 032 fv3_ccpp_satmedmf results .... Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1568,8 +1568,8 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1616,8 +1616,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1668,8 +1668,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,8 +1722,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1814,8 +1814,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1882,8 +1882,8 @@ Checking test 038 fv3_ccpp_thompson results .... Test 038 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1950,8 +1950,8 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2018,8 +2018,8 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2066,8 +2066,8 @@ Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Test 041 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2114,8 +2114,8 @@ Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Test 042 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2162,8 +2162,8 @@ Checking test 043 fv3_ccpp_gocart_clm results .... Test 043 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2230,8 +2230,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Test 044 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2298,8 +2298,8 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2316,8 +2316,8 @@ Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2384,8 +2384,8 @@ Checking test 047 fv3_ccpp_gsd_debug results .... Test 047 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2452,8 +2452,8 @@ Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Test 048 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2520,8 +2520,8 @@ Checking test 049 fv3_ccpp_thompson_debug results .... Test 049 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2588,8 +2588,8 @@ Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Test 050 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2656,8 +2656,8 @@ Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Test 051 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2724,8 +2724,8 @@ Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2742,8 +2742,8 @@ Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_prod Checking test 054 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2795,8 +2795,8 @@ Checking test 054 cpld_control results .... Test 054 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_2threads_prod Checking test 055 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2848,8 +2848,8 @@ Checking test 055 cpld_2threads results .... Test 055 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_decomp_prod Checking test 056 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2901,8 +2901,8 @@ Checking test 056 cpld_decomp results .... Test 056 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_satmedmf_prod Checking test 057 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2954,8 +2954,8 @@ Checking test 057 cpld_satmedmf results .... Test 057 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_ca_prod Checking test 058 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3007,8 +3007,8 @@ Checking test 058 cpld_ca results .... Test 058 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_control_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_mx025_prod Checking test 059 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3063,8 +3063,8 @@ Checking test 059 cpld_control_mx025 results .... Test 059 cpld_control_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_control_mx025_12h_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_mx025_12h_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_mx025_12h_prod Checking test 060 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3119,8 +3119,8 @@ Checking test 060 cpld_control_mx025_12h results .... Test 060 cpld_control_mx025_12h PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_restart_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_restart_mx025_prod Checking test 061 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3175,8 +3175,8 @@ Checking test 061 cpld_restart_mx025 results .... Test 061 cpld_restart_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_c192_prod Checking test 062 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3228,8 +3228,8 @@ Checking test 062 cpld_control_c192 results .... Test 062 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_c384_prod Checking test 063 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3284,8 +3284,8 @@ Checking test 063 cpld_control_c384 results .... Test 063 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_controlfrac_c384_prod Checking test 064 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3340,8 +3340,8 @@ Checking test 064 cpld_controlfrac_c384 results .... Test 064 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_bmark_prod Checking test 065 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3396,8 +3396,8 @@ Checking test 065 cpld_bmark results .... Test 065 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_bmark_wave_prod Checking test 066 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3455,8 +3455,8 @@ Checking test 066 cpld_bmark_wave results .... Test 066 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201124/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_170153/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_debug_prod Checking test 067 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3509,5 +3509,5 @@ Test 067 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Nov 24 22:18:24 UTC 2020 -Elapsed time: 06h:52m:25s. Have a nice day! +Sat Dec 5 14:57:47 UTC 2020 +Elapsed time: 02h:04m:38s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index 7399863255..8d64b33394 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -150,6 +150,10 @@ if [[ "${MAKE_OPT}" == *"DATM=Y"* ]]; then CMAKE_FLAGS="${CMAKE_FLAGS} -DDATM=Y" fi +if [[ "${MAKE_OPT}" == *"S2S=Y"* ]] || [[ ${MAKE_OPT} == *"DATM=Y"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DMOM6SOLO=ON" +fi + CMAKE_FLAGS=$(trim "${CMAKE_FLAGS}") if [ $clean_before = YES ] ; then diff --git a/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN b/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN index 757a73c218..52eaa53f67 100644 --- a/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN +++ b/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN @@ -3,47 +3,47 @@ mkdir INPUT RESTART if [ $IMP_PHYSICS = 8 ]; then if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/* INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/* INPUT/ else - cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/grid_spec*.nc INPUT/ - cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/C96_grid*.nc INPUT/ - cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/oro_data*.nc INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/grid_spec*.nc INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/C96_grid*.nc INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/oro_data*.nc INPUT/ cp ../fv3_ccpp_gsd_coldstart${RT_SUFFIX}/RESTART/* INPUT/ fi elif [ $IMP_PHYSICS = 15 ]; then if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT/* INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT/* INPUT/ else - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT/ fi else echo "ERROR, no input data configured for IMP_PHYSICS=${IMP_PHYSICS}" exit 1 fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . # Copy landuse/soil/vegetation parameter tables for HWRF Noah LSM -cp @[RTPWD]/FV3_input_data_hafs/GENPARM.TBL . -cp @[RTPWD]/FV3_input_data_hafs/SOILPARM.TBL . -cp @[RTPWD]/FV3_input_data_hafs/VEGPARM.TBL . +cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/GENPARM.TBL . +cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/SOILPARM.TBL . +cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/VEGPARM.TBL . # Copy diag table, depending on microphysics choice if [ $IMP_PHYSICS = 8 ]; then - cp @[RTPWD]/FV3_input_data_gsd/diag_table_gsd_noah diag_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/diag_table_gsd_noah diag_table elif [ $IMP_PHYSICS = 15 ]; then if [ $IOVR = 4 ]; then - cp @[RTPWD]/FV3_input_data_hafs/diag_table_FA_HWRF diag_table + cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/diag_table_FA_HWRF diag_table else - cp @[RTPWD]/FV3_input_data_hafs/diag_table_FA diag_table + cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/diag_table_FA diag_table fi else echo "ERROR, no diag table configured for IMP_PHYSICS=${IMP_PHYSICS}" @@ -54,21 +54,21 @@ fi if [ $IMP_PHYSICS = 8 ]; then if [ $LTAEROSOL = .T. ]; then if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then - cp @[RTPWD]/FV3_input_data_gsd/field_table_gsd field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_gsd field_table else - cp @[RTPWD]/FV3_input_data_gsd/field_table_gf_thompson field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_gf_thompson field_table fi else if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then echo "ERROR, no field table configured for Thompson MP without aerosols but with MYNN or SATMEDMF (need TKE)" exit 1 else - cp @[RTPWD]/FV3_input_data_gsd/field_table_thompson_noaero field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_thompson_noaero field_table fi fi elif [ $IMP_PHYSICS = 15 ]; then # Copy field table for Ferrier-Aligo MP - cp @[RTPWD]/FV3_input_data_hafs/field_table_FA_nwat4 field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/field_table_FA_nwat4 field_table else echo "ERROR, no field table configured for IMP_PHYSICS=${IMP_PHYSICS}" exit 1 @@ -76,10 +76,10 @@ fi # Thompson or F-A MP lookup tables if [ $IMP_PHYSICS = 8 ]; then - cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qs.dat . - cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qg.dat . - cp @[RTPWD]/FV3_input_data_gsd/freezeH2O.dat . - cp @[RTPWD]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qg.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . elif [ $IMP_PHYSICS = 15 ]; then - cp @[RTPWD]/FV3_input_data/DETAMPNEW_DATA* . + cp @[INPUTDATA_ROOT]/FV3_input_data/DETAMPNEW_DATA* . fi diff --git a/tests/fv3_conf/ccpp_control_run.IN b/tests/fv3_conf/ccpp_control_run.IN index 56aa3be9a2..73e03d1bde 100644 --- a/tests/fv3_conf/ccpp_control_run.IN +++ b/tests/fv3_conf/ccpp_control_run.IN @@ -12,15 +12,15 @@ echo "inputdir=$inputdir,NPX=$NPX" UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT else - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -35,24 +35,24 @@ else fi fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then - cp @[RTPWD]/${inputdir}/INPUT/global_o3prdlos.f77 . + cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/global_o3prdlos.f77 . fi if [ $H2O_PHYS = .T. ]; then - cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 + cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 fi -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . if [ $CPLWAV = .T. ]; then -cp @[RTPWD]/WW3_input_data/mod_def.* . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . +cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . fi diff --git a/tests/fv3_conf/ccpp_cpt_run.IN b/tests/fv3_conf/ccpp_cpt_run.IN index 3976445029..8828656bed 100644 --- a/tests/fv3_conf/ccpp_cpt_run.IN +++ b/tests/fv3_conf/ccpp_cpt_run.IN @@ -1,20 +1,20 @@ rm -fr INPUT RESTART inputdir=FV3_input_data_127 if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/diag_table_mg3tke diag_table -cp @[RTPWD]/${inputdir}/field_table_csawmg3shoc field_table -cp @[RTPWD]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_mg3tke diag_table +cp @[INPUTDATA_ROOT]/${inputdir}/field_table_csawmg3shoc field_table +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . diff --git a/tests/fv3_conf/ccpp_csawmg3shoc127_run.IN b/tests/fv3_conf/ccpp_csawmg3shoc127_run.IN index 3976445029..8828656bed 100644 --- a/tests/fv3_conf/ccpp_csawmg3shoc127_run.IN +++ b/tests/fv3_conf/ccpp_csawmg3shoc127_run.IN @@ -1,20 +1,20 @@ rm -fr INPUT RESTART inputdir=FV3_input_data_127 if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/diag_table_mg3tke diag_table -cp @[RTPWD]/${inputdir}/field_table_csawmg3shoc field_table -cp @[RTPWD]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_mg3tke diag_table +cp @[INPUTDATA_ROOT]/${inputdir}/field_table_csawmg3shoc field_table +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . diff --git a/tests/fv3_conf/ccpp_csawmg_run.IN b/tests/fv3_conf/ccpp_csawmg_run.IN index aeccc7cbd2..c2258f677c 100644 --- a/tests/fv3_conf/ccpp_csawmg_run.IN +++ b/tests/fv3_conf/ccpp_csawmg_run.IN @@ -2,15 +2,15 @@ rm -fr INPUT RESTART UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT else - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -25,26 +25,26 @@ else fi fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_mgrs diag_table -#cp @[RTPWD]/FV3_input_data/field_table_mgrs field_table -cp @[RTPWD]/FV3_input_data/field_table_csawmg field_table -cp @[RTPWD]/FV3_input_data/*configure . -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgrs diag_table +#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgrs field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_csawmg field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . for n in 01 02 03 04 05 06 07 08 09 10 11 12; do ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc done -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat diff --git a/tests/fv3_conf/ccpp_csawmgshoc_run.IN b/tests/fv3_conf/ccpp_csawmgshoc_run.IN index ea3763fc7e..6c7bbd8ed3 100644 --- a/tests/fv3_conf/ccpp_csawmgshoc_run.IN +++ b/tests/fv3_conf/ccpp_csawmgshoc_run.IN @@ -1,31 +1,31 @@ rm -fr INPUT RESTART if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_mgtkers diag_table -#cp @[RTPWD]/FV3_input_data/field_table_mgtkers field_table -cp @[RTPWD]/FV3_input_data/field_table_csawmgshoc field_table -cp @[RTPWD]/FV3_input_data/*configure . -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgtkers diag_table +#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgtkers field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_csawmgshoc field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . for n in 01 02 03 04 05 06 07 08 09 10 11 12; do ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc done -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat diff --git a/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN b/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN index 0ca83a23c9..86ac62ff16 100644 --- a/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN +++ b/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN @@ -2,7 +2,7 @@ rm -fr INPUT RESTART mkdir INPUT RESTART if [ $WARM_START = .F. ]; then - rsync -av @[RTPWD]/FV3_input_data_regional_esg/ ./ + rsync -av @[INPUTDATA_ROOT]/FV3_input_data_regional_esg/ ./ else echo "ERROR, warmstart runs not configured for regional HAFs runs on ESG grid" exit 1 @@ -13,9 +13,9 @@ if [ $IMP_PHYSICS = 8 ]; then ln -sf diag_table.thompson diag_table elif [ $IMP_PHYSICS = 15 ]; then if [ $IOVR = 4 ]; then - cp @[RTPWD]/FV3_input_data_hafs/diag_table_FA_HWRF diag_table + cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/diag_table_FA_HWRF diag_table else - cp @[RTPWD]/FV3_input_data_hafs/diag_table_FA diag_table + cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/diag_table_FA diag_table fi else echo "ERROR, no diag table configured for IMP_PHYSICS=${IMP_PHYSICS}" @@ -26,21 +26,21 @@ fi if [ $IMP_PHYSICS = 8 ]; then if [ $LTAEROSOL = .T. ]; then if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then - cp @[RTPWD]/FV3_input_data_gsd/field_table_gsd field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_gsd field_table else - cp @[RTPWD]/FV3_input_data_gsd/field_table_gf_thompson field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_gf_thompson field_table fi else if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then echo "ERROR, no field table configured for Thompson MP without aerosols but with MYNN or SATMEDMF (need TKE)" exit 1 else - cp @[RTPWD]/FV3_input_data_gsd/field_table_thompson_noaero field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_thompson_noaero field_table fi fi elif [ $IMP_PHYSICS = 15 ]; then # Copy field table for Ferrier-Aligo MP - cp @[RTPWD]/FV3_input_data_hafs/field_table_FA_nwat4 field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_hafs/field_table_FA_nwat4 field_table else echo "ERROR, no field table configured for IMP_PHYSICS=${IMP_PHYSICS}" exit 1 diff --git a/tests/fv3_conf/ccpp_gf_thompson_run.IN b/tests/fv3_conf/ccpp_gf_thompson_run.IN index 23c529ccf7..c2faa7eaa4 100644 --- a/tests/fv3_conf/ccpp_gf_thompson_run.IN +++ b/tests/fv3_conf/ccpp_gf_thompson_run.IN @@ -1,23 +1,23 @@ rm -fr INPUT RESTART mkdir INPUT RESTART -cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/* INPUT +cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/* INPUT -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data_gsd/diag_table_gf_thompson diag_table -cp @[RTPWD]/FV3_input_data_gsd/field_table_gf_thompson field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/diag_table_gf_thompson diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_gf_thompson field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . # Thompson MP lookup tables - copy standard and SIONlib tables of precomputed tables -cp @[RTPWD]/FV3_input_data_gsd/thompson_tables_precomp.sl . -cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qs.dat . -cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qg.dat . -cp @[RTPWD]/FV3_input_data_gsd/freezeH2O.dat . -cp @[RTPWD]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/thompson_tables_precomp.sl . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qg.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . diff --git a/tests/fv3_conf/ccpp_gfdlmp_run.IN b/tests/fv3_conf/ccpp_gfdlmp_run.IN index 5fda8b7353..f0ace7e854 100644 --- a/tests/fv3_conf/ccpp_gfdlmp_run.IN +++ b/tests/fv3_conf/ccpp_gfdlmp_run.IN @@ -2,15 +2,15 @@ rm -fr INPUT RESTART UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT else - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -25,18 +25,18 @@ else fi fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[RTPWD]/FV3_input_data/field_table_gfdlmp field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . if [ $CPLWAV = .T. ]; then -cp @[RTPWD]/WW3_input_data/mod_def.* . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . fi diff --git a/tests/fv3_conf/ccpp_gfs_v15_run.IN b/tests/fv3_conf/ccpp_gfs_v15_run.IN index 60ef814d81..6318e9b7b6 100644 --- a/tests/fv3_conf/ccpp_gfs_v15_run.IN +++ b/tests/fv3_conf/ccpp_gfs_v15_run.IN @@ -1,23 +1,23 @@ rm -fr INPUT RESTART if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[RTPWD]/FV3_input_data/field_table_gfdlmp field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . if [ $DO_RRTMGP = .T. ]; then -cp @[RTPWD]/FV3_input_data_RRTMGP/* . +cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . fi diff --git a/tests/fv3_conf/ccpp_gfs_v16_flake_run.IN b/tests/fv3_conf/ccpp_gfs_v16_flake_run.IN index 51f7d30111..3e57770190 100644 --- a/tests/fv3_conf/ccpp_gfs_v16_flake_run.IN +++ b/tests/fv3_conf/ccpp_gfs_v16_flake_run.IN @@ -1,20 +1,20 @@ rm -fr INPUT RESTART if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . - cp -r @[RTPWD]/FV3_input_data/ORO_FLAKE/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/ORO_FLAKE/* ./INPUT mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[RTPWD]/FV3_input_data_gsd/field_table_suite2 field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_suite2 field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . diff --git a/tests/fv3_conf/ccpp_gfs_v16_run.IN b/tests/fv3_conf/ccpp_gfs_v16_run.IN index f0abc3a3d7..11827cbc9d 100644 --- a/tests/fv3_conf/ccpp_gfs_v16_run.IN +++ b/tests/fv3_conf/ccpp_gfs_v16_run.IN @@ -1,23 +1,23 @@ rm -fr INPUT RESTART if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[RTPWD]/FV3_input_data_gsd/field_table_suite2 field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_suite2 field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . if [ $DO_RRTMGP = .T. ]; then -cp @[RTPWD]/FV3_input_data_RRTMGP/* . +cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . fi diff --git a/tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN b/tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN index fa04661e62..9b380ec48a 100644 --- a/tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN +++ b/tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN @@ -1,32 +1,32 @@ if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -#cp @[RTPWD]/FV3_input_data/diag_table_mgrs diag_table -cp @[RTPWD]/FV3_input_data/diag_table_aod diag_table -#cp @[RTPWD]/FV3_input_data/field_table_mgrs field_table -cp @[RTPWD]/FV3_input_data/field_table_csawmgshoc field_table -cp @[RTPWD]/FV3_input_data/*configure . -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +#cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgrs diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_aod diag_table +#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgrs field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_csawmgshoc field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . for n in 01 02 03 04 05 06 07 08 09 10 11 12; do ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc done -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat diff --git a/tests/fv3_conf/ccpp_gocart.IN b/tests/fv3_conf/ccpp_gocart.IN index bdfee0e350..6b65e20ee2 100644 --- a/tests/fv3_conf/ccpp_gocart.IN +++ b/tests/fv3_conf/ccpp_gocart.IN @@ -1,31 +1,31 @@ if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -#cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -#cp @[RTPWD]/FV3_input_data/diag_table_gocart diag_table -cp @[RTPWD]/FV3_input_data/diag_table_aod diag_table -cp @[RTPWD]/FV3_input_data/field_table_gfdlmp field_table -cp @[RTPWD]/FV3_input_data/*configure . -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +#cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +#cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gocart diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_aod diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . for n in 01 02 03 04 05 06 07 08 09 10 11 12; do ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc done -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat diff --git a/tests/fv3_conf/ccpp_gsd_run.IN b/tests/fv3_conf/ccpp_gsd_run.IN index c05a9202fc..f76b4843bb 100644 --- a/tests/fv3_conf/ccpp_gsd_run.IN +++ b/tests/fv3_conf/ccpp_gsd_run.IN @@ -1,31 +1,31 @@ rm -fr INPUT RESTART mkdir INPUT RESTART if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/* INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/* INPUT/ else - cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/grid_spec*.nc INPUT/ - cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/C96_grid*.nc INPUT/ - cp -r @[RTPWD]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/oro_data*.nc INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/grid_spec*.nc INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/C96_grid*.nc INPUT/ + cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/oro_data*.nc INPUT/ cp ../fv3_ccpp_gsd_coldstart${RT_SUFFIX}/RESTART/* INPUT/ fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . # Copy diag table file depending on LSM if [ $LSM = 1 ] || [ $LSM = 2 ]; then - cp @[RTPWD]/FV3_input_data_gsd/diag_table_gsd_noah diag_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/diag_table_gsd_noah diag_table elif [ $LSM = 3 ]; then if [ $LDIAG3D = .T. ] && [ $QDIAG3D = .T. ]; then - cp @[RTPWD]/FV3_input_data_gsd/diag_table_gsd_ruc_diag3d diag_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/diag_table_gsd_ruc_diag3d diag_table else - cp @[RTPWD]/FV3_input_data_gsd/diag_table_gsd_ruc diag_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/diag_table_gsd_ruc diag_table fi fi @@ -33,39 +33,39 @@ fi if [ $IMP_PHYSICS = 8 ]; then if [ $LTAEROSOL = .T. ]; then if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then - cp @[RTPWD]/FV3_input_data_gsd/field_table_gsd field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_gsd field_table else - cp @[RTPWD]/FV3_input_data_gsd/field_table_gf_thompson field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_gf_thompson field_table fi else if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then echo "ERROR, no field table configured for Thompson MP without aerosols but with MYNN or SATMEDMF (need TKE)" exit 1 else - cp @[RTPWD]/FV3_input_data_gsd/field_table_thompson_noaero field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_thompson_noaero field_table fi fi elif [ $IMP_PHYSICS = 11 ]; then if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then - cp @[RTPWD]/FV3_input_data_gsd/field_table_suite2 field_table + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_suite2 field_table else - cp @[RTPWD]/FV3_input_data/field_table_gfdlmp field_table + cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table fi else echo "ERROR, no field table configured for IMP_PHYSICS=${IMP_PHYSICS}" exit 1 fi -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . # Thompson MP lookup tables - copy standard and SIONlib tables of precomputed tables if [ $IMP_PHYSICS = 8 ]; then - cp @[RTPWD]/FV3_input_data_gsd/thompson_tables_precomp.sl . - cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qs.dat . - cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qg.dat . - cp @[RTPWD]/FV3_input_data_gsd/freezeH2O.dat . - cp @[RTPWD]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/thompson_tables_precomp.sl . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qg.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . fi if [ $GWD_OPT = 3 ] || [ $GWD_OPT = 33 ] || [ $GWD_OPT = 2 ] || [ $GWD_OPT = 22 ]; then - cp @[RTPWD]/FV3_input_data_gsd/drag_suite/* INPUT/ + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/drag_suite/* INPUT/ fi diff --git a/tests/fv3_conf/ccpp_gsd_sar_run.IN b/tests/fv3_conf/ccpp_gsd_sar_run.IN index 64d557e6ed..8a434bccc6 100644 --- a/tests/fv3_conf/ccpp_gsd_sar_run.IN +++ b/tests/fv3_conf/ccpp_gsd_sar_run.IN @@ -1,25 +1,25 @@ rm -fr INPUT RESTART mkdir INPUT RESTART -cp @[RTPWD]/FV3_input_data_sar/INPUT/*.nc INPUT/ +cp @[INPUTDATA_ROOT]/FV3_input_data_sar/INPUT/*.nc INPUT/ -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . # Copy SAR diag and field table files -cp @[RTPWD]/FV3_input_data_sar/diag_table_gsd_sar diag_table -cp @[RTPWD]/FV3_input_data_sar/field_table_gsd_sar field_table +cp @[INPUTDATA_ROOT]/FV3_input_data_sar/diag_table_gsd_sar diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data_sar/field_table_gsd_sar field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . # Thompson MP lookup tables - copy standard and SIONlib tables of precomputed tables -cp @[RTPWD]/FV3_input_data_gsd/thompson_tables_precomp.sl . -cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qs.dat . -cp @[RTPWD]/FV3_input_data_gsd/qr_acr_qg.dat . -cp @[RTPWD]/FV3_input_data_gsd/freezeH2O.dat . -cp @[RTPWD]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/thompson_tables_precomp.sl . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qg.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . diff --git a/tests/fv3_conf/ccpp_multigases_run.IN b/tests/fv3_conf/ccpp_multigases_run.IN index 696e4929ca..4f85cffe62 100644 --- a/tests/fv3_conf/ccpp_multigases_run.IN +++ b/tests/fv3_conf/ccpp_multigases_run.IN @@ -1,32 +1,32 @@ inputdir=FV3_input_data_149 if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then -cp @[RTPWD]/${inputdir}/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/global_o3prdlos.f77 . fi if [ $H2O_PHYS = .T. ]; then - cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 + cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 fi -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*configure . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/diag_table_multi_gases diag_table -cp @[RTPWD]/${inputdir}/field_table_multi_gases field_table +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_multi_gases diag_table +cp @[INPUTDATA_ROOT]/${inputdir}/field_table_multi_gases field_table if [ $CPLWAV = .T. ]; then -cp @[RTPWD]/WW3_input_data/mod_def.* . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . +cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . fi diff --git a/tests/fv3_conf/ccpp_regional_c786_run.IN b/tests/fv3_conf/ccpp_regional_c786_run.IN index e64bf4e9ad..e450d34003 100644 --- a/tests/fv3_conf/ccpp_regional_c786_run.IN +++ b/tests/fv3_conf/ccpp_regional_c786_run.IN @@ -1,9 +1,9 @@ -rsync -arv @[RTPWD]/FV3_regional_input_data/. . +rsync -arv @[INPUTDATA_ROOT]/FV3_regional_input_data/. . rm -rf INPUT RESTART mkdir INPUT RESTART -rsync -arv @[RTPWD]/@[INPUT_DIR]/INPUT/. INPUT/. +rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/INPUT/. INPUT/. if [ $WARM_START = .T. ]; then cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.coupler.res INPUT/coupler.res @@ -16,10 +16,10 @@ if [ $WARM_START = .T. ]; then fi if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then - cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . + cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . fi if [ $H2O_PHYS = .T. ]; then - cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 + cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 fi diff --git a/tests/fv3_conf/ccpp_regional_run.IN b/tests/fv3_conf/ccpp_regional_run.IN index b0e320cd19..3188c78028 100644 --- a/tests/fv3_conf/ccpp_regional_run.IN +++ b/tests/fv3_conf/ccpp_regional_run.IN @@ -1,10 +1,10 @@ -rsync -arv @[RTPWD]/FV3_regional_input_data/. . -rsync -arv @[RTPWD]/@[INPUT_DIR]/model_configure . +rsync -arv @[INPUTDATA_ROOT]/FV3_regional_input_data/. . +rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/model_configure . rm -rf INPUT RESTART mkdir INPUT RESTART -rsync -arv @[RTPWD]/@[INPUT_DIR]/INPUT/. INPUT/. +rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/INPUT/. INPUT/. if [ $WARM_START = .T. ]; then cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.coupler.res INPUT/coupler.res @@ -16,15 +16,15 @@ if [ $WARM_START = .T. ]; then cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.sfc_data.nc INPUT/sfc_data.nc fi if [ $WRITE_RESTART_WITH_BCS = .true. ]; then - cp @[RTPWD]/fv3_regional_control/RESTART/fv_core.res.tile1_new.nc RESTART/fv_core.res.tile1_new.nc - cp @[RTPWD]/fv3_regional_control/RESTART/fv_tracer.res.tile1_new.nc RESTART/fv_tracer.res.tile1_new.nc + cp @[INPUTDATA_ROOT]/fv3_regional_control/RESTART/fv_core.res.tile1_new.nc RESTART/fv_core.res.tile1_new.nc + cp @[INPUTDATA_ROOT]/fv3_regional_control/RESTART/fv_tracer.res.tile1_new.nc RESTART/fv_tracer.res.tile1_new.nc fi if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then - cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . + cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . fi if [ $H2O_PHYS = .T. ]; then - cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 + cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 fi diff --git a/tests/fv3_conf/ccpp_satmedmf_run.IN b/tests/fv3_conf/ccpp_satmedmf_run.IN index 2dec496749..ecd6c52c93 100644 --- a/tests/fv3_conf/ccpp_satmedmf_run.IN +++ b/tests/fv3_conf/ccpp_satmedmf_run.IN @@ -12,15 +12,15 @@ elif [ $NPX = 769 ]; then fi echo "inputdir=$inputdir,NPX=$NPX" if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT else - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -35,12 +35,12 @@ else fi fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/${inputdir}/INPUT/global_o3prdlos.f77 . -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/field_table_satmedmf field_table -cp @[RTPWD]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/field_table_satmedmf field_table +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . diff --git a/tests/fv3_conf/ccpp_stretched_run.IN b/tests/fv3_conf/ccpp_stretched_run.IN index cd22eb7db4..143b5e29e1 100644 --- a/tests/fv3_conf/ccpp_stretched_run.IN +++ b/tests/fv3_conf/ccpp_stretched_run.IN @@ -1,4 +1,4 @@ -rsync -arv @[RTPWD]/FV3_nest_input_data/. . +rsync -arv @[INPUTDATA_ROOT]/FV3_nest_input_data/. . rm -rf INPUT RESTART mkdir INPUT RESTART @@ -9,9 +9,9 @@ mkdir INPUT RESTART # see ccpp_regional_run.IN for a working example # if this is needed in the future (not needed now) #if [ $WARM_START = .F. ]; then -# rsync -arv @[RTPWD]/@[CNTL_DIR]/INPUT/. INPUT/. +# rsync -arv @[INPUTDATA_ROOT]/@[CNTL_DIR]/INPUT/. INPUT/. #else -# rsync -arv @[RTPWD]/@[CNTL_DIR]/RESTART/. INPUT/. +# rsync -arv @[INPUTDATA_ROOT]/@[CNTL_DIR]/RESTART/. INPUT/. #fi -rsync -arv @[RTPWD]/@[INPUT_DIR]/INPUT/. INPUT/. +rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/INPUT/. INPUT/. # *DH 20190528 diff --git a/tests/fv3_conf/cpld_bmark_run.IN b/tests/fv3_conf/cpld_bmark_run.IN index b144f54c28..1e790bdbb2 100644 --- a/tests/fv3_conf/cpld_bmark_run.IN +++ b/tests/fv3_conf/cpld_bmark_run.IN @@ -15,46 +15,46 @@ CICE_IC=${BM_IC}/cpc WW3_IC=${BM_IC}/ww3 # FV3 fixed input -cp @[RTPWD]/${FV3_DIR}/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_bm2/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_bm2/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/${FV3_DIR}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/${FV3_DIR}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then - cp @[RTPWD]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . + cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . fi -cp @[RTPWD]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/${FV3_DIR}/*grb . -cp @[RTPWD]/${FV3_DIR}/@[FIELD_TABLE] ./field_table -cp @[RTPWD]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc -cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/${FV3_DIR}/*grb . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/@[FIELD_TABLE] ./field_table +cp @[INPUTDATA_ROOT]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT # MOM6 fixed input -cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT +cp @[INPUTDATA_ROOT]/MOM6_FIX/@[OCNRES]/* ./INPUT # CICE fixed input -cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . # WW3 fix/input if [[ $CPLWAV == .T. && $CPLWAV2ATM == .T. ]]; then - cp @[RTPWD]/WW3_input_data/mod_def.* . + cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . if [[ $RT35D == .T. ]]; then - cp @[RTPWD]/WW3_input_data/ww3_multi_35d.inp ww3_multi.inp - cp @[RTPWD]/${WW3_IC}/*.000000.restart.gwes_30m ./restart.gwes_30m + cp @[INPUTDATA_ROOT]/WW3_input_data/ww3_multi_35d.inp ww3_multi.inp + cp @[INPUTDATA_ROOT]/${WW3_IC}/*.000000.restart.gwes_30m ./restart.gwes_30m else - cp @[RTPWD]/WW3_input_data/ww3_multi.inp . + cp @[INPUTDATA_ROOT]/WW3_input_data/ww3_multi.inp . fi fi # ICs -cp @[RTPWD]/${FV3_IC}/sfc_data*.nc ./INPUT -cp @[RTPWD]/${FV3_IC}/gfs_data*.nc ./INPUT -cp @[RTPWD]/${MOM6_IC}/MOM*.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_IC}/sfc_data*.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_IC}/gfs_data*.nc ./INPUT +cp @[INPUTDATA_ROOT]/${MOM6_IC}/MOM*.nc ./INPUT # the BM ICs are still named cice5 and need to remain so until P5.0 is completed -cp @[RTPWD]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc +cp @[INPUTDATA_ROOT]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index ee49c1dacf..35c4e42d73 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -9,48 +9,48 @@ fi ICERES="${OCNRES:0:1}.${OCNRES:1}" # FV3 fixed input -cp @[RTPWD]/${FV3_DIR}/INPUT/aerosol.dat . -cp @[RTPWD]/${FV3_DIR}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/${FV3_DIR}/ozprdlos_2015_new_sbuv03_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/${FV3_DIR}/ozprdlos_2015_new_sbuv03_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then - cp @[RTPWD]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . + cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . fi -cp @[RTPWD]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/${FV3_DIR}/*grb . -cp @[RTPWD]/${FV3_DIR}/@[FIELD_TABLE] ./field_table -cp @[RTPWD]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT -cp @[RTPWD]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/${FV3_DIR}/*grb . +cp @[INPUTDATA_ROOT]/${FV3_DIR}/@[FIELD_TABLE] ./field_table +cp @[INPUTDATA_ROOT]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT if [ ${FRAC_GRID_INPUT} = .F. ]; then - cp @[RTPWD]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT else - cp @[RTPWD]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/oro_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/oro_data*.nc ./INPUT fi -cp @[RTPWD]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc -cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT # MOM6 fixed input -cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT +cp @[INPUTDATA_ROOT]/MOM6_FIX/@[OCNRES]/* ./INPUT # CICE fixed input -cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . # No restart if [ $WARM_START = .F. ]; then # ICs if [ ${FRAC_GRID_INPUT} = .F. ]; then - cp @[RTPWD]/${FV3_DIR}/INPUT/sfc_data*.nc ./INPUT - cp @[RTPWD]/${FV3_DIR}/INPUT/gfs_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/sfc_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/gfs_data*.nc ./INPUT else - cp @[RTPWD]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/sfc_data*.nc ./INPUT - cp @[RTPWD]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/gfs_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/sfc_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/gfs_data*.nc ./INPUT fi - cp @[RTPWD]/MOM6_IC/MOM*.nc ./INPUT - cp @[RTPWD]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].res_2016100300.nc ./cice_model.res.nc + cp @[INPUTDATA_ROOT]/MOM6_IC/MOM*.nc ./INPUT + cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].res_2016100300.nc ./cice_model.res.nc # Restart else diff --git a/tests/fv3_conf/cpld_datm_cfsr.IN b/tests/fv3_conf/cpld_datm_cfsr.IN index 9b0b6b3402..65bbf8ea0d 100644 --- a/tests/fv3_conf/cpld_datm_cfsr.IN +++ b/tests/fv3_conf/cpld_datm_cfsr.IN @@ -4,23 +4,23 @@ export DATM=true # FV3 fixed input export IATM=1760 export JATM=880 -cp @[RTPWD]/DATM/cfsr.SCRIP.nc DATM_INPUT -ln -s @[RTPWD]/DATM/CFSR/201110/* DATM_INPUT +cp @[INPUTDATA_ROOT]/DATM/cfsr.SCRIP.nc DATM_INPUT +ln -s @[INPUTDATA_ROOT]/DATM/CFSR/201110/* DATM_INPUT # MOM6 fixed input -cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT -cp @[RTPWD]/MOM6_FIX_DATM/@[OCNRES]/* ./INPUT +cp @[INPUTDATA_ROOT]/MOM6_FIX/@[OCNRES]/* ./INPUT +cp @[INPUTDATA_ROOT]/MOM6_FIX_DATM/@[OCNRES]/* ./INPUT # CICE fixed input -cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . if [[ $OCNRES == '025' ]]; then - cp @[RTPWD]/MOM6_IC/@[OCNRES]/2011100100/MOM*.nc ./INPUT - cp @[RTPWD]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc + cp @[INPUTDATA_ROOT]/MOM6_IC/@[OCNRES]/2011100100/MOM*.nc ./INPUT + cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc else - cp @[RTPWD]/MOM6_IC/@[OCNRES]/2011100100/MOM6_IC_TS*.nc ./INPUT/MOM6_IC_TS.nc - cp @[RTPWD]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc + cp @[INPUTDATA_ROOT]/MOM6_IC/@[OCNRES]/2011100100/MOM6_IC_TS*.nc ./INPUT/MOM6_IC_TS.nc + cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc fi diff --git a/tests/fv3_conf/cpld_datm_gefs.IN b/tests/fv3_conf/cpld_datm_gefs.IN index a1dc1ec762..2bf93b5a5f 100644 --- a/tests/fv3_conf/cpld_datm_gefs.IN +++ b/tests/fv3_conf/cpld_datm_gefs.IN @@ -2,23 +2,23 @@ mkdir INPUT DATM_INPUT RESTART history MOM6_OUTPUT export DATM=true # FV3 fixed input -cp @[RTPWD]/DATM/gefs.SCRIP.nc DATM_INPUT -ln -s @[RTPWD]/DATM/GEFS/201110/* DATM_INPUT +cp @[INPUTDATA_ROOT]/DATM/gefs.SCRIP.nc DATM_INPUT +ln -s @[INPUTDATA_ROOT]/DATM/GEFS/201110/* DATM_INPUT # MOM6 fixed input -cp @[RTPWD]/MOM6_FIX/@[OCNRES]/* ./INPUT -cp @[RTPWD]/MOM6_FIX_DATM/@[OCNRES]/* ./INPUT +cp @[INPUTDATA_ROOT]/MOM6_FIX/@[OCNRES]/* ./INPUT +cp @[INPUTDATA_ROOT]/MOM6_FIX_DATM/@[OCNRES]/* ./INPUT # CICE fixed input -cp @[RTPWD]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . -cp @[RTPWD]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . if [[ $OCNRES == '025' ]]; then - cp @[RTPWD]/MOM6_IC/@[OCNRES]/2011100100/MOM*.nc ./INPUT - cp @[RTPWD]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc + cp @[INPUTDATA_ROOT]/MOM6_IC/@[OCNRES]/2011100100/MOM*.nc ./INPUT + cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc else - cp @[RTPWD]/MOM6_IC/@[OCNRES]/2011100100/MOM6_IC_TS*.nc ./INPUT/MOM6_IC_TS.nc - cp @[RTPWD]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc + cp @[INPUTDATA_ROOT]/MOM6_IC/@[OCNRES]/2011100100/MOM6_IC_TS*.nc ./INPUT/MOM6_IC_TS.nc + cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc fi diff --git a/tests/fv3_conf/cpt_run.IN b/tests/fv3_conf/cpt_run.IN index 253ad70d04..fea2ec1f58 100644 --- a/tests/fv3_conf/cpt_run.IN +++ b/tests/fv3_conf/cpt_run.IN @@ -1,19 +1,19 @@ inputdir=FV3_input_data_127 if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/diag_table_mg3tke diag_table -cp @[RTPWD]/${inputdir}/field_table_csawmg3shoc field_table -cp @[RTPWD]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_mg3tke diag_table +cp @[INPUTDATA_ROOT]/${inputdir}/field_table_csawmg3shoc field_table +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . diff --git a/tests/fv3_conf/csawmg3shoc127_run.IN b/tests/fv3_conf/csawmg3shoc127_run.IN index 25df5c7c22..c9b60d7a1f 100644 --- a/tests/fv3_conf/csawmg3shoc127_run.IN +++ b/tests/fv3_conf/csawmg3shoc127_run.IN @@ -2,14 +2,14 @@ inputdir=FV3_input_data_127 UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT else - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -24,14 +24,14 @@ else fi fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/diag_table_mg3tke diag_table -cp @[RTPWD]/${inputdir}/field_table_csawmg3shoc field_table -cp @[RTPWD]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_mg3tke diag_table +cp @[INPUTDATA_ROOT]/${inputdir}/field_table_csawmg3shoc field_table +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . diff --git a/tests/fv3_conf/csawmg_run.IN b/tests/fv3_conf/csawmg_run.IN index 018dbe96bc..3440732bd7 100644 --- a/tests/fv3_conf/csawmg_run.IN +++ b/tests/fv3_conf/csawmg_run.IN @@ -1,14 +1,14 @@ UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT else - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -23,26 +23,26 @@ else fi fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_mgrs diag_table -#cp @[RTPWD]/FV3_input_data/field_table_mgrs field_table -cp @[RTPWD]/FV3_input_data/field_table_csawmg field_table -cp @[RTPWD]/FV3_input_data/*configure . -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgrs diag_table +#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgrs field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_csawmg field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . for n in 01 02 03 04 05 06 07 08 09 10 11 12; do ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc done -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat diff --git a/tests/fv3_conf/csawmgshoc_run.IN b/tests/fv3_conf/csawmgshoc_run.IN index fe946b315d..60b20c5336 100644 --- a/tests/fv3_conf/csawmgshoc_run.IN +++ b/tests/fv3_conf/csawmgshoc_run.IN @@ -1,14 +1,14 @@ UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT else - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -23,15 +23,15 @@ else fi fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_mgtkers diag_table -#cp @[RTPWD]/FV3_input_data/field_table_mgtkers field_table -cp @[RTPWD]/FV3_input_data/field_table_csawmgshoc field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgtkers diag_table +#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgtkers field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_csawmgshoc field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . diff --git a/tests/fv3_conf/fv3_gocart.IN b/tests/fv3_conf/fv3_gocart.IN index d8314e7525..0560dd2350 100644 --- a/tests/fv3_conf/fv3_gocart.IN +++ b/tests/fv3_conf/fv3_gocart.IN @@ -1,35 +1,35 @@ if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -##cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[RTPWD]/FV3_input_data/diag_table_aod diag_table -cp @[RTPWD]/FV3_input_data/field_table_gfdlmp field_table -cp @[RTPWD]/FV3_input_data/*configure . -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +##cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_aod diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . for n in 01 02 03 04 05 06 07 08 09 10 11 12; do ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc done -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat if [ $CPLWAV = .T. ]; then -cp @[RTPWD]/WW3_input_data/mod_def.* . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . fi diff --git a/tests/fv3_conf/fv3_regional_run.IN b/tests/fv3_conf/fv3_regional_run.IN index a451f00307..cd2d7cd3a7 100644 --- a/tests/fv3_conf/fv3_regional_run.IN +++ b/tests/fv3_conf/fv3_regional_run.IN @@ -1,11 +1,11 @@ -rsync -arv @[RTPWD]/FV3_regional_input_data/. . -rsync -arv @[RTPWD]/@[INPUT_DIR]/model_configure . +rsync -arv @[INPUTDATA_ROOT]/FV3_regional_input_data/. . +rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/model_configure . rm -rf INPUT RESTART mkdir INPUT RESTART -rsync -arv @[RTPWD]/@[INPUT_DIR]/INPUT/. INPUT/. +rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/INPUT/. INPUT/. if [ $WARM_START = .T. ]; then cp ../fv3_regional_control${RT_SUFFIX}/RESTART/20181015.120000.coupler.res INPUT/coupler.res diff --git a/tests/fv3_conf/fv3_run.IN b/tests/fv3_conf/fv3_run.IN index dc1c687565..18d390d7a0 100644 --- a/tests/fv3_conf/fv3_run.IN +++ b/tests/fv3_conf/fv3_run.IN @@ -12,15 +12,15 @@ echo "inputdir=$inputdir,NPX=$NPX" UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT else - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -35,24 +35,24 @@ else fi fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then -cp @[RTPWD]/${inputdir}/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/global_o3prdlos.f77 . fi if [ $H2O_PHYS = .T. ]; then - cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 + cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 fi -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . if [ $CPLWAV = .T. ]; then -cp @[RTPWD]/WW3_input_data/mod_def.* . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . +cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . fi diff --git a/tests/fv3_conf/fv3_stretched_run.IN b/tests/fv3_conf/fv3_stretched_run.IN index ffec0d14e8..b225cf6707 100644 --- a/tests/fv3_conf/fv3_stretched_run.IN +++ b/tests/fv3_conf/fv3_stretched_run.IN @@ -1,5 +1,5 @@ -rsync -arv @[RTPWD]/FV3_nest_input_data/. . +rsync -arv @[INPUTDATA_ROOT]/FV3_nest_input_data/. . rm -rf INPUT RESTART mkdir INPUT RESTART @@ -10,9 +10,9 @@ mkdir INPUT RESTART # see fv3_regional_run.IN for a working example # if this is needed in the future (not needed now) #if [ $WARM_START = .F. ]; then -# rsync -arv @[RTPWD]/@[CNTL_DIR]/INPUT/. INPUT/. +# rsync -arv @[INPUTDATA_ROOT]/@[CNTL_DIR]/INPUT/. INPUT/. #else -# rsync -arv @[RTPWD]/@[CNTL_DIR]/RESTART/. INPUT/. +# rsync -arv @[INPUTDATA_ROOT]/@[CNTL_DIR]/RESTART/. INPUT/. #fi -rsync -arv @[RTPWD]/@[INPUT_DIR]/INPUT/. INPUT/. +rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/INPUT/. INPUT/. # *DH 20190528 diff --git a/tests/fv3_conf/gfdlmp_run.IN b/tests/fv3_conf/gfdlmp_run.IN index 28b21030e8..9e499066f9 100644 --- a/tests/fv3_conf/gfdlmp_run.IN +++ b/tests/fv3_conf/gfdlmp_run.IN @@ -1,15 +1,15 @@ UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT else - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -24,18 +24,18 @@ else fi fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[RTPWD]/FV3_input_data/field_table_gfdlmp field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . if [ $CPLWAV = .T. ]; then -cp @[RTPWD]/WW3_input_data/mod_def.* . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . fi diff --git a/tests/fv3_conf/gfs_v15_run.IN b/tests/fv3_conf/gfs_v15_run.IN index c21f88d948..79e9537fc2 100644 --- a/tests/fv3_conf/gfs_v15_run.IN +++ b/tests/fv3_conf/gfs_v15_run.IN @@ -1,19 +1,19 @@ rm -fr INPUT RESTART if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[RTPWD]/FV3_input_data/field_table_gfdlmp field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . diff --git a/tests/fv3_conf/gfs_v16_run.IN b/tests/fv3_conf/gfs_v16_run.IN index ac23e518f4..a9210d2c39 100644 --- a/tests/fv3_conf/gfs_v16_run.IN +++ b/tests/fv3_conf/gfs_v16_run.IN @@ -1,19 +1,19 @@ rm -fr INPUT RESTART if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[RTPWD]/FV3_input_data_gsd/field_table_suite2 field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_suite2 field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . diff --git a/tests/fv3_conf/gfsv16_csawmg_run.IN b/tests/fv3_conf/gfsv16_csawmg_run.IN index fa04661e62..9b380ec48a 100644 --- a/tests/fv3_conf/gfsv16_csawmg_run.IN +++ b/tests/fv3_conf/gfsv16_csawmg_run.IN @@ -1,32 +1,32 @@ if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -#cp @[RTPWD]/FV3_input_data/diag_table_mgrs diag_table -cp @[RTPWD]/FV3_input_data/diag_table_aod diag_table -#cp @[RTPWD]/FV3_input_data/field_table_mgrs field_table -cp @[RTPWD]/FV3_input_data/field_table_csawmgshoc field_table -cp @[RTPWD]/FV3_input_data/*configure . -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +#cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgrs diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_aod diag_table +#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgrs field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_csawmgshoc field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . for n in 01 02 03 04 05 06 07 08 09 10 11 12; do ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc done -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat diff --git a/tests/fv3_conf/multigases_run.IN b/tests/fv3_conf/multigases_run.IN index 696e4929ca..4f85cffe62 100644 --- a/tests/fv3_conf/multigases_run.IN +++ b/tests/fv3_conf/multigases_run.IN @@ -1,32 +1,32 @@ inputdir=FV3_input_data_149 if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . if [ $OZ_PHYS_NEW = .T. ]; then - cp @[RTPWD]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then -cp @[RTPWD]/${inputdir}/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/global_o3prdlos.f77 . fi if [ $H2O_PHYS = .T. ]; then - cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 + cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 fi -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*configure . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/diag_table_multi_gases diag_table -cp @[RTPWD]/${inputdir}/field_table_multi_gases field_table +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_multi_gases diag_table +cp @[INPUTDATA_ROOT]/${inputdir}/field_table_multi_gases field_table if [ $CPLWAV = .T. ]; then -cp @[RTPWD]/WW3_input_data/mod_def.* . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . +cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . fi diff --git a/tests/fv3_conf/rasmgshoc_run.IN b/tests/fv3_conf/rasmgshoc_run.IN index faf6b58b3b..1e0fc42274 100644 --- a/tests/fv3_conf/rasmgshoc_run.IN +++ b/tests/fv3_conf/rasmgshoc_run.IN @@ -1,20 +1,20 @@ if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_mgtkers diag_table -#cp @[RTPWD]/FV3_input_data/field_table_mgtkers field_table -cp @[RTPWD]/FV3_input_data/field_table_rasmgshoc field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgtkers diag_table +#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgtkers field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_rasmgshoc field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . diff --git a/tests/fv3_conf/satmedmf_run.IN b/tests/fv3_conf/satmedmf_run.IN index 7e6e9b7072..566667e696 100644 --- a/tests/fv3_conf/satmedmf_run.IN +++ b/tests/fv3_conf/satmedmf_run.IN @@ -12,15 +12,15 @@ echo "inputdir=$inputdir,NPX=$NPX" UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/${inputdir}/INPUT . + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT else - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -35,12 +35,12 @@ else fi fi -cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . -cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/${inputdir}/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/${inputdir}/INPUT/global_o3prdlos.f77 . -cp @[RTPWD]/${inputdir}/*grb . -cp @[RTPWD]/${inputdir}/*_table . -cp @[RTPWD]/${inputdir}/field_table_satmedmf field_table -cp @[RTPWD]/${inputdir}/*configure . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*_table . +cp @[INPUTDATA_ROOT]/${inputdir}/field_table_satmedmf field_table +cp @[INPUTDATA_ROOT]/${inputdir}/*configure . diff --git a/tests/fv3_conf/thompson_run.IN b/tests/fv3_conf/thompson_run.IN index e8a708dcc4..fa7fdca24f 100644 --- a/tests/fv3_conf/thompson_run.IN +++ b/tests/fv3_conf/thompson_run.IN @@ -1,15 +1,15 @@ UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT else - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -24,14 +24,14 @@ else fi fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . -cp @[RTPWD]/FV3_input_data/qr_acr_q* . -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_thompson diag_table -cp @[RTPWD]/FV3_input_data/field_table_thompson field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/FV3_input_data/qr_acr_q* . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_thompson diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_thompson field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . diff --git a/tests/fv3_conf/wsm6_run.IN b/tests/fv3_conf/wsm6_run.IN index ee394da687..9f6f1065e2 100644 --- a/tests/fv3_conf/wsm6_run.IN +++ b/tests/fv3_conf/wsm6_run.IN @@ -1,14 +1,14 @@ UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . + cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART if [[ ${UNIT_TEST} == false ]]; then - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT else - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* @@ -23,13 +23,13 @@ else fi fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_wsm6 diag_table -cp @[RTPWD]/FV3_input_data/field_table_wsm6 field_table -cp @[RTPWD]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_wsm6 diag_table +cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_wsm6 field_table +cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . diff --git a/tests/parm/MOM_input_template_025 b/tests/parm/MOM_input_template_025 index f7ba839392..aa1da78029 100644 --- a/tests/parm/MOM_input_template_025 +++ b/tests/parm/MOM_input_template_025 @@ -1,112 +1,116 @@ -/* This input file provides the adjustable run-time parameters for version 6 of - the Modular Ocean Model (MOM6), a numerical ocean model developed at NOAA-GFDL. - Where appropriate, parameters use usually given in MKS units. +! This input file provides the adjustable run-time parameters for version 6 of the Modular Ocean Model (MOM6). +! Where appropriate, parameters use usually given in MKS units. - This particular file is for the example in OM4_025. +! This particular file is for the example in ice_ocean_SIS2/OM4_025. - This MOM_input file typically contains only the non-default values that are - needed to reproduce this example. A full list of parameters for this example - can be found in the corresponding MOM_parameter_doc.all file which is - generated by the model at run-time. */ +! This MOM_input file typically contains only the non-default values that are needed to reproduce this example. +! A full list of parameters for this example can be found in the corresponding MOM_parameter_doc.all file +! which is generated by the model at run-time. + +! === module MOM_domains === +TRIPOLAR_N = True ! [Boolean] default = False + ! Use tripolar connectivity at the northern edge of the domain. With + ! TRIPOLAR_N, NIGLOBAL must be even. +NIGLOBAL = NX_GLB ! + ! The total number of thickness grid points in the x-direction in the physical + ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. +NJGLOBAL = NY_GLB ! + ! The total number of thickness grid points in the y-direction in the physical + ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. +NIHALO = 4 ! default = 4 + ! The number of halo points on each side in the x-direction. With + ! STATIC_MEMORY_ this is set as NIHALO_ in MOM_memory.h at compile time; without + ! STATIC_MEMORY_ the default is NIHALO_ in MOM_memory.h (if defined) or 2. +NJHALO = 4 ! default = 4 + ! The number of halo points on each side in the y-direction. With + ! STATIC_MEMORY_ this is set as NJHALO_ in MOM_memory.h at compile time; without + ! STATIC_MEMORY_ the default is NJHALO_ in MOM_memory.h (if defined) or 2. +! LAYOUT = 32, 18 ! + ! The processor layout that was actually used. +! IO_LAYOUT = 1, 1 ! default = 1 + ! The processor layout to be used, or 0,0 to automatically set the io_layout to + ! be the same as the layout. ! === module MOM === USE_REGRIDDING = True ! [Boolean] default = False - ! If True, use the ALE algorithm (regridding/remapping). - ! If False, use the layered isopycnal algorithm. + ! If True, use the ALE algorithm (regridding/remapping). If False, use the + ! layered isopycnal algorithm. THICKNESSDIFFUSE = True ! [Boolean] default = False - ! If true, interface heights are diffused with a - ! coefficient of KHTH. + ! If true, interface heights are diffused with a coefficient of KHTH. THICKNESSDIFFUSE_FIRST = True ! [Boolean] default = False - ! If true, do thickness diffusion before dynamics. - ! This is only used if THICKNESSDIFFUSE is true. + ! If true, do thickness diffusion before dynamics. This is only used if + ! THICKNESSDIFFUSE is true. DT = DT_DYNAM_MOM6 ! [s] - ! The (baroclinic) dynamics time step. The time-step that - ! is actually used will be an integer fraction of the - ! forcing time-step (DT_FORCING in ocean-only mode or the - ! coupling timestep in coupled mode.) + ! The (baroclinic) dynamics time step. The time-step that is actually used will + ! be an integer fraction of the forcing time-step (DT_FORCING in ocean-only mode + ! or the coupling timestep in coupled mode.) DT_THERM = DT_THERM_MOM6 ! [s] default = 900.0 - ! The thermodynamic and tracer advection time step. - ! Ideally DT_THERM should be an integer multiple of DT - ! and less than the forcing or coupling time-step, unless - ! THERMO_SPANS_COUPLING is true, in which case DT_THERM - ! can be an integer multiple of the coupling timestep. By - ! default DT_THERM is set to DT. -THERMO_SPANS_COUPLING = MOM6_THERMO_SPAN ! [Boolean] default = False - ! If true, the MOM will take thermodynamic and tracer - ! timesteps that can be longer than the coupling timestep. - ! The actual thermodynamic timestep that is used in this - ! case is the largest integer multiple of the coupling - ! timestep that is less than or equal to DT_THERM. + ! The thermodynamic and tracer advection time step. Ideally DT_THERM should be + ! an integer multiple of DT and less than the forcing or coupling time-step, + ! unless THERMO_SPANS_COUPLING is true, in which case DT_THERM can be an integer + ! multiple of the coupling timestep. By default DT_THERM is set to DT. +THERMO_SPANS_COUPLING = MOM6_THERMO_SPAN ! [Boolean] default = False + ! If true, the MOM will take thermodynamic and tracer timesteps that can be + ! longer than the coupling timestep. The actual thermodynamic timestep that is + ! used in this case is the largest integer multiple of the coupling timestep + ! that is less than or equal to DT_THERM. HFREEZE = 20.0 ! [m] default = -1.0 ! If HFREEZE > 0, melt potential will be computed. The actual depth ! over which melt potential is computed will be min(HFREEZE, OBLD) - ! where OBLD is the boundary layer depth. If HFREEZE <= 0 (default) - ! melt potential will not be computed. + ! where OBLD is the boundary layer depth. If HFREEZE <= 0 (default) +USE_PSURF_IN_EOS = False ! [Boolean] default = False + ! If true, always include the surface pressure contributions in equation of + ! state calculations. FRAZIL = True ! [Boolean] default = False - ! If true, water freezes if it gets too cold, and the - ! the accumulated heat deficit is returned in the - ! surface state. FRAZIL is only used if + ! If true, water freezes if it gets too cold, and the accumulated heat deficit + ! is returned in the surface state. FRAZIL is only used if ! ENABLE_THERMODYNAMICS is true. DO_GEOTHERMAL = True ! [Boolean] default = False ! If true, apply geothermal heating. BOUND_SALINITY = True ! [Boolean] default = False - ! If true, limit salinity to being positive. (The sea-ice - ! model may ask for more salt than is available and - ! drive the salinity negative otherwise.) + ! If true, limit salinity to being positive. (The sea-ice model may ask for more + ! salt than is available and drive the salinity negative otherwise.) +MIN_SALINITY = 0.01 ! [PPT] default = 0.01 + ! The minimum value of salinity when BOUND_SALINITY=True. The default is 0.01 + ! for backward compatibility but ideally should be 0. C_P = 3992.0 ! [J kg-1 K-1] default = 3991.86795711963 - ! The heat capacity of sea water, approximated as a - ! constant. This is only used if ENABLE_THERMODYNAMICS is - ! true. The default value is from the TEOS-10 definition - ! of conservative temperature. + ! The heat capacity of sea water, approximated as a constant. This is only used + ! if ENABLE_THERMODYNAMICS is true. The default value is from the TEOS-10 + ! definition of conservative temperature. CHECK_BAD_SURFACE_VALS = True ! [Boolean] default = False ! If true, check the surface state for ridiculous values. BAD_VAL_SSH_MAX = 50.0 ! [m] default = 20.0 - ! The value of SSH above which a bad value message is - ! triggered, if CHECK_BAD_SURFACE_VALS is true. + ! The value of SSH above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. BAD_VAL_SSS_MAX = 75.0 ! [PPT] default = 45.0 - ! The value of SSS above which a bad value message is - ! triggered, if CHECK_BAD_SURFACE_VALS is true. -BAD_VAL_SST_MAX = 65.0 ! [deg C] default = 45.0, PTripp: changed from 55.0 on 12/28/2017 - ! The value of SST above which a bad value message is - ! triggered, if CHECK_BAD_SURFACE_VALS is true. + ! The value of SSS above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +BAD_VAL_SST_MAX = 55.0 ! [deg C] default = 45.0 + ! The value of SST above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. BAD_VAL_SST_MIN = -3.0 ! [deg C] default = -2.1 - ! The value of SST below which a bad value message is - ! triggered, if CHECK_BAD_SURFACE_VALS is true. + ! The value of SST below which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +DEFAULT_2018_ANSWERS = True ! [Boolean] default = True + ! This sets the default value for the various _2018_ANSWERS parameters. WRITE_GEOM = 2 ! default = 1 - ! If =0, never write the geometry and vertical grid files. - ! If =1, write the geometry and vertical grid files only for - ! a new simulation. If =2, always write the geometry and - ! vertical grid files. Other values are invalid. - -! === module MOM_domains === -TRIPOLAR_N = True ! [Boolean] default = False - ! Use tripolar connectivity at the northern edge of the - ! domain. With TRIPOLAR_N, NIGLOBAL must be even. -NIGLOBAL = NX_GLB ! - ! The total number of thickness grid points in the - ! x-direction in the physical domain. With STATIC_MEMORY_ - ! this is set in MOM_memory.h at compile time. -NJGLOBAL = NY_GLB ! - ! The total number of thickness grid points in the - ! y-direction in the physical domain. With STATIC_MEMORY_ - ! this is set in MOM_memory.h at compile time. + ! If =0, never write the geometry and vertical grid files. If =1, write the + ! geometry and vertical grid files only for a new simulation. If =2, always + ! write the geometry and vertical grid files. Other values are invalid. +SAVE_INITIAL_CONDS = True ! [Boolean] default = False + ! If true, write the initial conditions to a file given by IC_OUTPUT_FILE. ! === module MOM_hor_index === ! Sets the horizontal array index types. -! === module MOM_verticalGrid === -! Parameters providing information about the vertical grid. -NK = 75 ! [nondim] - ! The number of model layers. - ! === module MOM_fixed_initialization === INPUTDIR = "INPUT" ! default = "." ! The directory in which input files are found. ! === module MOM_grid_init === GRID_CONFIG = "mosaic" ! - ! A character string that determines the method for - ! defining the horizontal grid. Current options are: + ! A character string that determines the method for defining the horizontal + ! grid. Current options are: ! mosaic - read the grid from a mosaic (supergrid) ! file set by GRID_FILE. ! cartesian - use a (flat) Cartesian grid. @@ -135,8 +139,8 @@ TOPO_CONFIG = "file" ! ! DOME2D gravity current/overflow test case. ! Kelvin - flat but with rotated land mask. ! seamount - Gaussian bump for spontaneous motion test case. + ! dumbbell - Sloshing channel with reservoirs on both ends. ! shelfwave - exponential slope for shelfwave test case. - ! supercritical - flat but with 8.95 degree land mask. ! Phillips - ACC-like idealized topography used in the Phillips config. ! dense - Denmark Strait-like dense water formation and overflow. ! USER - call a user modified routine. @@ -147,23 +151,24 @@ TOPO_EDITS_FILE = "All_edits.nc" ! default = "" MAXIMUM_DEPTH = 6500.0 ! [m] ! The maximum depth of the ocean. MINIMUM_DEPTH = 9.5 ! [m] default = 0.0 - ! If MASKING_DEPTH is unspecified, then anything shallower than - ! MINIMUM_DEPTH is assumed to be land and all fluxes are masked out. - ! If MASKING_DEPTH is specified, then all depths shallower than - ! MINIMUM_DEPTH but deeper than MASKING_DEPTH are rounded to MINIMUM_DEPTH. + ! If MASKING_DEPTH is unspecified, then anything shallower than MINIMUM_DEPTH is + ! assumed to be land and all fluxes are masked out. If MASKING_DEPTH is + ! specified, then all depths shallower than MINIMUM_DEPTH but deeper than + ! MASKING_DEPTH are rounded to MINIMUM_DEPTH. GRID_ROTATION_ANGLE_BUGS = False ! [Boolean] default = True - ! If true, use an older algorithm to calculate the sine and + ! If true, use an older algorithm to calculate the sine and ! cosines needed rotate between grid-oriented directions and ! true north and east. Differences arise at the tripolar fold USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = True - ! If true, use older code that incorrectly sets the longitude + ! If true, use older code that incorrectly sets the longitude ! in some points along the tripolar fold to be off by 360 degrees ! === module MOM_open_boundary === -! Controls where open boundaries are located, what kind of boundary condition to impose, and what data to apply, if any. +! Controls where open boundaries are located, what kind of boundary condition to impose, and what data to apply, +! if any. MASKING_DEPTH = 0.0 ! [m] default = -9999.0 - ! The depth below which to mask points as land points, for which all - ! fluxes are zeroed out. MASKING_DEPTH is ignored if negative. + ! The depth below which to mask points as land points, for which all fluxes are + ! zeroed out. MASKING_DEPTH is ignored if negative. CHANNEL_CONFIG = "list" ! default = "none" ! A parameter that determines which set of channels are ! restricted to specific widths. Options are: @@ -178,18 +183,22 @@ CHANNEL_CONFIG = "list" ! default = "none" CHANNEL_LIST_FILE = "MOM_channels_global_025" ! default = "MOM_channel_list" ! The file from which the list of narrowed channels is read. +! === module MOM_verticalGrid === +! Parameters providing information about the vertical grid. +NK = 75 ! [nondim] + ! The number of model layers. + ! === module MOM_tracer_registry === ! === module MOM_EOS === DTFREEZE_DP = -7.75E-08 ! [deg C Pa-1] default = 0.0 - ! When TFREEZE_FORM=LINEAR, - ! this is the derivative of the freezing potential + ! When TFREEZE_FORM=LINEAR, this is the derivative of the freezing potential ! temperature with pressure. ! === module MOM_restart === PARALLEL_RESTARTFILES = True ! [Boolean] default = False - ! If true, each processor writes its own restart file, - ! otherwise a single restart file is generated + ! If true, each processor writes its own restart file, otherwise a single + ! restart file is generated ! === module MOM_tracer_flow_control === USE_IDEAL_AGE_TRACER = False ! [Boolean] default = False @@ -218,26 +227,26 @@ COORD_CONFIG = "file" ! ! USER - call a user modified routine. COORD_FILE = "layer_coord.nc" ! ! The file from which the coordinate densities are read. +REMAP_UV_USING_OLD_ALG = True ! [Boolean] default = True + ! If true, uses the old remapping-via-a-delta-z method for remapping u and v. If + ! false, uses the new method that remaps between grids described by an old and + ! new thickness. REGRIDDING_COORDINATE_MODE = "HYCOM1" ! default = "LAYER" - ! Coordinate mode for vertical regridding. - ! Choose among the following possibilities: - ! LAYER - Isopycnal or stacked shallow water layers - ! ZSTAR, Z* - stetched geopotential z* - ! SIGMA_SHELF_ZSTAR - stetched geopotential z* ignoring shelf + ! Coordinate mode for vertical regridding. Choose among the following + ! possibilities: LAYER - Isopycnal or stacked shallow water layers + ! ZSTAR, Z* - stretched geopotential z* + ! SIGMA_SHELF_ZSTAR - stretched geopotential z* ignoring shelf ! SIGMA - terrain following coordinates ! RHO - continuous isopycnal ! HYCOM1 - HyCOM-like hybrid coordinate ! SLIGHT - stretched coordinates above continuous isopycnal ! ADAPTIVE - optimize for smooth neutral density surfaces BOUNDARY_EXTRAPOLATION = True ! [Boolean] default = False - ! When defined, a proper high-order reconstruction - ! scheme is used within boundary cells rather - ! than PCM. E.g., if PPM is used for remapping, a - ! PPM reconstruction will also be used within - ! boundary cells. + ! When defined, a proper high-order reconstruction scheme is used within + ! boundary cells rather than PCM. E.g., if PPM is used for remapping, a PPM + ! reconstruction will also be used within boundary cells. ALE_COORDINATE_CONFIG = "HYBRID:hycom1_75_800m.nc,sigma2,FNC1:2,4000,4.5,.01" ! default = "UNIFORM" - ! Determines how to specify the coordinate - ! resolution. Valid options are: + ! Determines how to specify the coordinate resolution. Valid options are: ! PARAM - use the vector-parameter ALE_RESOLUTION ! UNIFORM[:N] - uniformly distributed ! FILE:string - read from a file. The string specifies @@ -257,11 +266,10 @@ ALE_COORDINATE_CONFIG = "HYBRID:hycom1_75_800m.nc,sigma2,FNC1:2,4000,4.5,.01" ! ! thicknesses (in m). In sigma-coordinate mode, the list ! is of non-dimensional fractions of the water column. !TARGET_DENSITIES = 1010.0, 1014.3034, 1017.8088, 1020.843, 1023.5566, 1025.813, 1027.0275, 1027.9114, 1028.6422, 1029.2795, 1029.852, 1030.3762, 1030.8626, 1031.3183, 1031.7486, 1032.1572, 1032.5471, 1032.9207, 1033.2798, 1033.6261, 1033.9608, 1034.2519, 1034.4817, 1034.6774, 1034.8508, 1035.0082, 1035.1533, 1035.2886, 1035.4159, 1035.5364, 1035.6511, 1035.7608, 1035.8661, 1035.9675, 1036.0645, 1036.1554, 1036.2411, 1036.3223, 1036.3998, 1036.4739, 1036.5451, 1036.6137, 1036.68, 1036.7441, 1036.8062, 1036.8526, 1036.8874, 1036.9164, 1036.9418, 1036.9647, 1036.9857, 1037.0052, 1037.0236, 1037.0409, 1037.0574, 1037.0738, 1037.0902, 1037.1066, 1037.123, 1037.1394, 1037.1558, 1037.1722, 1037.1887, 1037.206, 1037.2241, 1037.2435, 1037.2642, 1037.2866, 1037.3112, 1037.3389, 1037.3713, 1037.4118, 1037.475, 1037.6332, 1037.8104, 1038.0 ! [m] - ! HYBRID target densities for itnerfaces -REGRID_COMPRESSIBILITY_FRACTION = 0.01 ! [not defined] default = 0.0 - ! When interpolating potential density profiles we can add - ! some artificial compressibility solely to make homogenous - ! regions appear stratified. + ! HYBRID target densities for interfaces +REGRID_COMPRESSIBILITY_FRACTION = 0.01 ! [nondim] default = 0.0 + ! When interpolating potential density profiles we can add some artificial + ! compressibility solely to make homogeneous regions appear stratified. MAXIMUM_INT_DEPTH_CONFIG = "FNC1:5,8000.0,1.0,.01" ! default = "NONE" ! Determines how to specify the maximum interface depths. ! Valid options are: @@ -285,10 +293,9 @@ MAX_LAYER_THICKNESS_CONFIG = "FNC1:400,31000.0,0.1,.01" ! default = "NONE" !MAX_LAYER_THICKNESS = 400.0, 409.63, 410.32, 410.75, 411.07, 411.32, 411.52, 411.7, 411.86, 412.0, 412.13, 412.24, 412.35, 412.45, 412.54, 412.63, 412.71, 412.79, 412.86, 412.93, 413.0, 413.06, 413.12, 413.18, 413.24, 413.29, 413.34, 413.39, 413.44, 413.49, 413.54, 413.58, 413.62, 413.67, 413.71, 413.75, 413.78, 413.82, 413.86, 413.9, 413.93, 413.97, 414.0, 414.03, 414.06, 414.1, 414.13, 414.16, 414.19, 414.22, 414.24, 414.27, 414.3, 414.33, 414.35, 414.38, 414.41, 414.43, 414.46, 414.48, 414.51, 414.53, 414.55, 414.58, 414.6, 414.62, 414.65, 414.67, 414.69, 414.71, 414.73, 414.75, 414.77, 414.79, 414.83 ! [m] ! The list of maximum thickness for each layer. REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" - ! This sets the reconstruction scheme used - ! for vertical remapping for all variables. - ! It can be one of the following schemes: - ! PCM (1st-order accurate) + ! This sets the reconstruction scheme used for vertical remapping for all + ! variables. It can be one of the following schemes: PCM (1st-order + ! accurate) ! PLM (2nd-order accurate) ! PPM_H4 (3rd-order accurate) ! PPM_IH4 (3rd-order accurate) @@ -300,18 +307,16 @@ REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" ! === module MOM_state_initialization === INIT_LAYERS_FROM_Z_FILE = True ! [Boolean] default = False - ! If true, intialize the layer thicknesses, temperatures, - ! and salnities from a Z-space file on a latitude- - ! longitude grid. + ! If true, initialize the layer thicknesses, temperatures, and salinities from a + ! Z-space file on a latitude-longitude grid. ! === module MOM_initialize_layers_from_Z === -!TEMP_SALT_Z_INIT_FILE = "WOA05_pottemp_salt.nc" ! default = "temp_salt_z.nc" -TEMP_SALT_Z_INIT_FILE = "MOM6_IC_TS.nc" +TEMP_SALT_Z_INIT_FILE = "MOM6_IC_TS.nc" ! default = "temp_salt_z.nc" ! The name of the z-space input file used to initialize ! temperatures (T) and salinities (S). If T and S are not ! in the same file, TEMP_Z_INIT_FILE and SALT_Z_INIT_FILE ! must be set. -Z_INIT_FILE_PTEMP_VAR = "temp" ! default = "ptemp" +Z_INIT_FILE_PTEMP_VAR = "temp" ! default = "ptemp" ! The name of the potential temperature variable in ! TEMP_Z_INIT_FILE. Z_INIT_FILE_SALT_VAR = "salt" ! default = "salt" @@ -319,6 +324,9 @@ Z_INIT_FILE_SALT_VAR = "salt" ! default = "salt" ! SALT_Z_INIT_FILE. Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False ! If True, then remap straight to model coordinate from file. +Z_INIT_REMAP_OLD_ALG = True ! [Boolean] default = True + ! If false, uses the preferred remapping algorithm for initialization. If true, + ! use an older, less robust algorithm for remapping. ! === module MOM_diag_mediator === !Jiande NUM_DIAG_COORDS = 2 ! default = 1 @@ -332,9 +340,8 @@ DIAG_COORDS = "z Z ZSTAR" ! is of the form "MODULE_SUFFIX,PARAMETER_SUFFIX,COORDINATE_NAME". DIAG_COORD_DEF_Z="FILE:interpolate_zgrid_40L.nc,interfaces=zw" DIAG_MISVAL = -1e34 -!Jiande DIAG_COORD_DEF_RHO2 = "RFNC1:35,999.5,1028,1028.5,8.,1038.,0.0078125" ! default = "WOA09" - ! Determines how to specify the coordinate - ! resolution. Valid options are: +!DIAG_COORD_DEF_RHO2 = "FILE:diag_rho2.nc,interfaces=rho2" ! default = "WOA09" + ! Determines how to specify the coordinate resolution. Valid options are: ! PARAM - use the vector-parameter DIAG_COORD_RES_RHO2 ! UNIFORM[:N] - uniformly distributed ! FILE:string - read from a file. The string specifies @@ -350,115 +357,112 @@ DIAG_MISVAL = -1e34 ! === module MOM_MEKE === USE_MEKE = True ! [Boolean] default = False - ! If true, turns on the MEKE scheme which calculates - ! a sub-grid mesoscale eddy kinetic energy budget. + ! If true, turns on the MEKE scheme which calculates a sub-grid mesoscale eddy + ! kinetic energy budget. MEKE_GMCOEFF = 1.0 ! [nondim] default = -1.0 - ! The efficiency of the conversion of potential energy - ! into MEKE by the thickness mixing parameterization. - ! If MEKE_GMCOEFF is negative, this conversion is not - ! used or calculated. + ! The efficiency of the conversion of potential energy into MEKE by the + ! thickness mixing parameterization. If MEKE_GMCOEFF is negative, this + ! conversion is not used or calculated. MEKE_BGSRC = 1.0E-13 ! [W kg-1] default = 0.0 ! A background energy source for MEKE. MEKE_KHMEKE_FAC = 1.0 ! [nondim] default = 0.0 ! A factor that maps MEKE%Kh to Kh for MEKE itself. MEKE_ALPHA_RHINES = 0.15 ! [nondim] default = 0.05 - ! If positive, is a coefficient weighting the Rhines scale - ! in the expression for mixing length used in MEKE-derived diffusiviity. + ! If positive, is a coefficient weighting the Rhines scale in the expression for + ! mixing length used in MEKE-derived diffusivity. MEKE_ALPHA_EADY = 0.15 ! [nondim] default = 0.05 - ! If positive, is a coefficient weighting the Eady length scale - ! in the expression for mixing length used in MEKE-derived diffusiviity. + ! If positive, is a coefficient weighting the Eady length scale in the + ! expression for mixing length used in MEKE-derived diffusivity. ! === module MOM_lateral_mixing_coeffs === USE_VARIABLE_MIXING = True ! [Boolean] default = False - ! If true, the variable mixing code will be called. This - ! allows diagnostics to be created even if the scheme is - ! not used. If KHTR_SLOPE_CFF>0 or KhTh_Slope_Cff>0, - ! this is set to true regardless of what is in the - ! parameter file. + ! If true, the variable mixing code will be called. This allows diagnostics to + ! be created even if the scheme is not used. If KHTR_SLOPE_CFF>0 or + ! KhTh_Slope_Cff>0, this is set to true regardless of what is in the parameter + ! file. RESOLN_SCALED_KH = True ! [Boolean] default = False - ! If true, the Laplacian lateral viscosity is scaled away - ! when the first baroclinic deformation radius is well - ! resolved. + ! If true, the Laplacian lateral viscosity is scaled away when the first + ! baroclinic deformation radius is well resolved. RESOLN_SCALED_KHTH = True ! [Boolean] default = False - ! If true, the interface depth diffusivity is scaled away - ! when the first baroclinic deformation radius is well - ! resolved. + ! If true, the interface depth diffusivity is scaled away when the first + ! baroclinic deformation radius is well resolved. KHTR_SLOPE_CFF = 0.25 ! [nondim] default = 0.0 - ! The nondimensional coefficient in the Visbeck formula - ! for the epipycnal tracer diffusivity + ! The nondimensional coefficient in the Visbeck formula for the epipycnal tracer + ! diffusivity USE_STORED_SLOPES = True ! [Boolean] default = False - ! If true, the isopycnal slopes are calculated once and - ! stored for re-use. This uses more memory but avoids calling - ! the equation of state more times than should be necessary. + ! If true, the isopycnal slopes are calculated once and stored for re-use. This + ! uses more memory but avoids calling the equation of state more times than + ! should be necessary. INTERPOLATE_RES_FN = False ! [Boolean] default = True - ! If true, interpolate the resolution function to the - ! velocity points from the thickness points; otherwise - ! interpolate the wave speed and calculate the resolution - ! function independently at each point. + ! If true, interpolate the resolution function to the velocity points from the + ! thickness points; otherwise interpolate the wave speed and calculate the + ! resolution function independently at each point. GILL_EQUATORIAL_LD = True ! [Boolean] default = False - ! If true, uses Gill's definition of the baroclinic - ! equatorial deformation radius, otherwise, if false, use - ! Pedlosky's definition. These definitions differ by a factor - ! of 2 infront of the beta term in the denominator. Gill'sis the more appropriate definition. + ! If true, uses Gill's definition of the baroclinic equatorial deformation + ! radius, otherwise, if false, use Pedlosky's definition. These definitions + ! differ by a factor of 2 in front of the beta term in the denominator. Gill's + ! is the more appropriate definition. ! === module MOM_set_visc === CHANNEL_DRAG = True ! [Boolean] default = False - ! If true, the bottom drag is exerted directly on each - ! layer proportional to the fraction of the bottom it - ! overlies. + ! If true, the bottom drag is exerted directly on each layer proportional to the + ! fraction of the bottom it overlies. PRANDTL_TURB = 1.25 ! [nondim] default = 1.0 - ! The turbulent Prandtl number applied to shear - ! instability. + ! The turbulent Prandtl number applied to shear instability. HBBL = 10.0 ! [m] - ! The thickness of a bottom boundary layer with a - ! viscosity of KVBBL if BOTTOMDRAGLAW is not defined, or - ! the thickness over which near-bottom velocities are - ! averaged for the drag law if BOTTOMDRAGLAW is defined - ! but LINEAR_DRAG is not. + ! The thickness of a bottom boundary layer with a viscosity of KVBBL if + ! BOTTOMDRAGLAW is not defined, or the thickness over which near-bottom + ! velocities are averaged for the drag law if BOTTOMDRAGLAW is defined but + ! LINEAR_DRAG is not. DRAG_BG_VEL = 0.1 ! [m s-1] default = 0.0 - ! DRAG_BG_VEL is either the assumed bottom velocity (with - ! LINEAR_DRAG) or an unresolved velocity that is - ! combined with the resolved velocity to estimate the - ! velocity magnitude. DRAG_BG_VEL is only used when - ! BOTTOMDRAGLAW is defined. + ! DRAG_BG_VEL is either the assumed bottom velocity (with LINEAR_DRAG) or an + ! unresolved velocity that is combined with the resolved velocity to estimate + ! the velocity magnitude. DRAG_BG_VEL is only used when BOTTOMDRAGLAW is + ! defined. BBL_USE_EOS = True ! [Boolean] default = False - ! If true, use the equation of state in determining the - ! properties of the bottom boundary layer. Otherwise use - ! the layer target potential densities. + ! If true, use the equation of state in determining the properties of the bottom + ! boundary layer. Otherwise use the layer target potential densities. BBL_THICK_MIN = 0.1 ! [m] default = 0.0 - ! The minimum bottom boundary layer thickness that can be - ! used with BOTTOMDRAGLAW. This might be - ! Kv / (cdrag * drag_bg_vel) to give Kv as the minimum + ! The minimum bottom boundary layer thickness that can be used with + ! BOTTOMDRAGLAW. This might be Kv/(cdrag*drag_bg_vel) to give Kv as the minimum ! near-bottom viscosity. KV = 1.0E-04 ! [m2 s-1] - ! The background kinematic viscosity in the interior. - ! The molecular value, ~1e-6 m2 s-1, may be used. + ! The background kinematic viscosity in the interior. The molecular value, ~1e-6 + ! m2 s-1, may be used. KV_BBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 ! The minimum viscosities in the bottom boundary layer. KV_TBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 ! The minimum viscosities in the top boundary layer. +! === module MOM_thickness_diffuse === +KHTH_MAX_CFL = 0.1 ! [nondimensional] default = 0.8 + ! The maximum value of the local diffusive CFL ratio that is permitted for the + ! thickness diffusivity. 1.0 is the marginally unstable value in a pure layered + ! model, but much smaller numbers (e.g. 0.1) seem to work better for ALE-based + ! models. +USE_GM_WORK_BUG = True ! [Boolean] default = True + ! If true, compute the top-layer work tendency on the u-grid with the incorrect + ! sign, for legacy reproducibility. + ! === module MOM_continuity === ! === module MOM_continuity_PPM === ETA_TOLERANCE = 1.0E-06 ! [m] default = 3.75E-09 - ! The tolerance for the differences between the - ! barotropic and baroclinic estimates of the sea surface - ! height due to the fluxes through each face. The total - ! tolerance for SSH is 4 times this value. The default - ! is 0.5*NK*ANGSTROM, and this should not be set less x - ! than about 10^-15*MAXIMUM_DEPTH. + ! The tolerance for the differences between the barotropic and baroclinic + ! estimates of the sea surface height due to the fluxes through each face. The + ! total tolerance for SSH is 4 times this value. The default is + ! 0.5*NK*ANGSTROM, and this should not be set less than about + ! 10^-15*MAXIMUM_DEPTH. ETA_TOLERANCE_AUX = 0.001 ! [m] default = 1.0E-06 - ! The tolerance for free-surface height discrepancies - ! between the barotropic solution and the sum of the - ! layer thicknesses when calculating the auxiliary - ! corrected velocities. By default, this is the same as - ! ETA_TOLERANCE, but can be made larger for efficiency. + ! The tolerance for free-surface height discrepancies between the barotropic + ! solution and the sum of the layer thicknesses when calculating the auxiliary + ! corrected velocities. By default, this is the same as ETA_TOLERANCE, but can + ! be made larger for efficiency. ! === module MOM_CoriolisAdv === CORIOLIS_SCHEME = "SADOURNY75_ENSTRO" ! default = "SADOURNY75_ENERGY" - ! CORIOLIS_SCHEME selects the discretization for the - ! Coriolis terms. Valid values are: + ! CORIOLIS_SCHEME selects the discretization for the Coriolis terms. Valid + ! values are: ! SADOURNY75_ENERGY - Sadourny, 1975; energy cons. ! ARAKAWA_HSU90 - Arakawa & Hsu, 1990 ! SADOURNY75_ENSTRO - Sadourny, 1975; enstrophy cons. @@ -466,316 +470,277 @@ CORIOLIS_SCHEME = "SADOURNY75_ENSTRO" ! default = "SADOURNY75_ENERGY" ! ARAKAWA_LAMB_BLEND - A blend of Arakawa & Lamb with ! Arakawa & Hsu and Sadourny energy BOUND_CORIOLIS = True ! [Boolean] default = False - ! If true, the Coriolis terms at u-points are bounded by - ! the four estimates of (f+rv)v from the four neighboring - ! v-points, and similarly at v-points. This option would - ! have no effect on the SADOURNY Coriolis scheme if it - ! were possible to use centered difference thickness fluxes. + ! If true, the Coriolis terms at u-points are bounded by the four estimates of + ! (f+rv)v from the four neighboring v-points, and similarly at v-points. This + ! option would have no effect on the SADOURNY Coriolis scheme if it were + ! possible to use centered difference thickness fluxes. ! === module MOM_PressureForce === ! === module MOM_PressureForce_AFV === MASS_WEIGHT_IN_PRESSURE_GRADIENT = True ! [Boolean] default = False - ! If true, use mass weighting when interpolation T/S for - ! top/bottom integrals in AFV pressure gradient calculation. + ! If true, use mass weighting when interpolating T/S for integrals near the + ! bathymetry in AFV pressure gradient calculations. ! === module MOM_hor_visc === LAPLACIAN = True ! [Boolean] default = False ! If true, use a Laplacian horizontal viscosity. AH_VEL_SCALE = 0.01 ! [m s-1] default = 0.0 - ! The velocity scale which is multiplied by the cube of - ! the grid spacing to calculate the biharmonic viscosity. - ! The final viscosity is the largest of this scaled - ! viscosity, the Smagorinsky and Leith viscosities, and AH. + ! The velocity scale which is multiplied by the cube of the grid spacing to + ! calculate the biharmonic viscosity. The final viscosity is the largest of this + ! scaled viscosity, the Smagorinsky and Leith viscosities, and AH. SMAGORINSKY_AH = True ! [Boolean] default = False - ! If true, use a biharmonic Smagorinsky nonlinear eddy - ! viscosity. + ! If true, use a biharmonic Smagorinsky nonlinear eddy viscosity. SMAG_BI_CONST = 0.06 ! [nondim] default = 0.0 - ! The nondimensional biharmonic Smagorinsky constant, - ! typically 0.015 - 0.06. + ! The nondimensional biharmonic Smagorinsky constant, typically 0.015 - 0.06. +USE_LAND_MASK_FOR_HVISC = False ! [Boolean] default = False + ! If true, use Use the land mask for the computation of thicknesses at velocity + ! locations. This eliminates the dependence on arbitrary values over land or + ! outside of the domain. Default is False in order to maintain answers with + ! legacy experiments but should be changed to True for new experiments. ! === module MOM_vert_friction === -U_TRUNC_FILE = "U_velocity_truncations" ! default = "" - ! The absolute path to a file into which the accelerations - ! leading to zonal velocity truncations are written. - ! Undefine this for efficiency if this diagnostic is not - ! needed. -V_TRUNC_FILE = "V_velocity_truncations" ! default = "" - ! The absolute path to a file into which the accelerations - ! leading to meridional velocity truncations are written. - ! Undefine this for efficiency if this diagnostic is not - ! needed. HMIX_FIXED = 0.5 ! [m] - ! The prescribed depth over which the near-surface - ! viscosity and diffusivity are elevated when the bulk - ! mixed layer is not used. + ! The prescribed depth over which the near-surface viscosity and diffusivity are + ! elevated when the bulk mixed layer is not used. MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 - ! The maximum velocity allowed before the velocity - ! components are truncated. + ! The maximum velocity allowed before the velocity components are truncated. ! === module MOM_PointAccel === +U_TRUNC_FILE = "U_velocity_truncations" ! default = "" + ! The absolute path to a file into which the accelerations leading to zonal + ! velocity truncations are written. Undefine this for efficiency if this + ! diagnostic is not needed. +V_TRUNC_FILE = "V_velocity_truncations" ! default = "" + ! The absolute path to a file into which the accelerations leading to meridional + ! velocity truncations are written. Undefine this for efficiency if this + ! diagnostic is not needed. ! === module MOM_barotropic === BOUND_BT_CORRECTION = True ! [Boolean] default = False - ! If true, the corrective pseudo mass-fluxes into the - ! barotropic solver are limited to values that require - ! less than maxCFL_BT_cont to be accommodated. + ! If true, the corrective pseudo mass-fluxes into the barotropic solver are + ! limited to values that require less than maxCFL_BT_cont to be accommodated. BT_PROJECT_VELOCITY = True ! [Boolean] default = False - ! If true, step the barotropic velocity first and project - ! out the velocity tendancy by 1+BEBT when calculating the - ! transport. The default (false) is to use a predictor - ! continuity step to find the pressure field, and then - ! to do a corrector continuity step using a weighted - ! average of the old and new velocities, with weights - ! of (1-BEBT) and BEBT. + ! If true, step the barotropic velocity first and project out the velocity + ! tendency by 1+BEBT when calculating the transport. The default (false) is to + ! use a predictor continuity step to find the pressure field, and then to do a + ! corrector continuity step using a weighted average of the old and new + ! velocities, with weights of (1-BEBT) and BEBT. DYNAMIC_SURFACE_PRESSURE = True ! [Boolean] default = False - ! If true, add a dynamic pressure due to a viscous ice - ! shelf, for instance. + ! If true, add a dynamic pressure due to a viscous ice shelf, for instance. BEBT = 0.2 ! [nondim] default = 0.1 - ! BEBT determines whether the barotropic time stepping - ! uses the forward-backward time-stepping scheme or a - ! backward Euler scheme. BEBT is valid in the range from - ! 0 (for a forward-backward treatment of nonrotating - ! gravity waves) to 1 (for a backward Euler treatment). - ! In practice, BEBT must be greater than about 0.05. + ! BEBT determines whether the barotropic time stepping uses the forward-backward + ! time-stepping scheme or a backward Euler scheme. BEBT is valid in the range + ! from 0 (for a forward-backward treatment of nonrotating gravity waves) to 1 + ! (for a backward Euler treatment). In practice, BEBT must be greater than about + ! 0.05. DTBT = -0.9 ! [s or nondim] default = -0.98 - ! The barotropic time step, in s. DTBT is only used with - ! the split explicit time stepping. To set the time step - ! automatically based the maximum stable value use 0, or - ! a negative value gives the fraction of the stable value. - ! Setting DTBT to 0 is the same as setting it to -0.98. - ! The value of DTBT that will actually be used is an - ! integer fraction of DT, rounding down. + ! The barotropic time step, in s. DTBT is only used with the split explicit time + ! stepping. To set the time step automatically based the maximum stable value + ! use 0, or a negative value gives the fraction of the stable value. Setting + ! DTBT to 0 is the same as setting it to -0.98. The value of DTBT that will + ! actually be used is an integer fraction of DT, rounding down. BT_USE_OLD_CORIOLIS_BRACKET_BUG = True ! [Boolean] default = False - ! If True, use an order of operations that is not bitwise - ! rotationally symmetric in the meridional Coriolis term of - ! the barotropic solver. - -! === module MOM_thickness_diffuse === -KHTH_MAX_CFL = 0.1 ! [nondimensional] default = 0.8 - ! The maximum value of the local diffusive CFL ratio that - ! is permitted for the thickness diffusivity. 1.0 is the - ! marginally unstable value in a pure layered model, but - ! much smaller numbers (e.g. 0.1) seem to work better for - ! ALE-based models. + ! If True, use an order of operations that is not bitwise rotationally symmetric + ! in the meridional Coriolis term of the barotropic solver. ! === module MOM_mixed_layer_restrat === MIXEDLAYER_RESTRAT = True ! [Boolean] default = False - ! If true, a density-gradient dependent re-stratifying - ! flow is imposed in the mixed layer. Can be used in ALE mode - ! without restriction but in layer mode can only be used if - ! BULKMIXEDLAYER is true. + ! If true, a density-gradient dependent re-stratifying flow is imposed in the + ! mixed layer. Can be used in ALE mode without restriction but in layer mode can + ! only be used if BULKMIXEDLAYER is true. FOX_KEMPER_ML_RESTRAT_COEF = 1.0 ! [nondim] default = 0.0 - ! A nondimensional coefficient that is proportional to - ! the ratio of the deformation radius to the dominant - ! lengthscale of the submesoscale mixed layer - ! instabilities, times the minimum of the ratio of the - ! mesoscale eddy kinetic energy to the large-scale - ! geostrophic kinetic energy or 1 plus the square of the - ! grid spacing over the deformation radius, as detailed - ! by Fox-Kemper et al. (2010) + ! A nondimensional coefficient that is proportional to the ratio of the + ! deformation radius to the dominant lengthscale of the submesoscale mixed layer + ! instabilities, times the minimum of the ratio of the mesoscale eddy kinetic + ! energy to the large-scale geostrophic kinetic energy or 1 plus the square of + ! the grid spacing over the deformation radius, as detailed by Fox-Kemper et al. + ! (2010) MLE_FRONT_LENGTH = 500.0 ! [m] default = 0.0 - ! If non-zero, is the frontal-length scale used to calculate the - ! upscaling of buoyancy gradients that is otherwise represented - ! by the parameter FOX_KEMPER_ML_RESTRAT_COEF. If MLE_FRONT_LENGTH is - ! non-zero, it is recommended to set FOX_KEMPER_ML_RESTRAT_COEF=1.0. + ! If non-zero, is the frontal-length scale used to calculate the upscaling of + ! buoyancy gradients that is otherwise represented by the parameter + ! FOX_KEMPER_ML_RESTRAT_COEF. If MLE_FRONT_LENGTH is non-zero, it is recommended + ! to set FOX_KEMPER_ML_RESTRAT_COEF=1.0. MLE_USE_PBL_MLD = True ! [Boolean] default = False - ! If true, the MLE parameterization will use the mixed-layer - ! depth provided by the active PBL parameterization. If false, - ! MLE will estimate a MLD based on a density difference with the - ! surface using the parameter MLE_DENSITY_DIFF. + ! If true, the MLE parameterization will use the mixed-layer depth provided by + ! the active PBL parameterization. If false, MLE will estimate a MLD based on a + ! density difference with the surface using the parameter MLE_DENSITY_DIFF. MLE_MLD_DECAY_TIME = 2.592E+06 ! [s] default = 0.0 - ! The time-scale for a running-mean filter applied to the mixed-layer - ! depth used in the MLE restratification parameterization. When - ! the MLD deepens below the current running-mean the running-mean - ! is instantaneously set to the current MLD. - -! === module MOM_diag_to_Z === -!Z_OUTPUT_GRID_FILE = "analysis_vgrid_lev35.v1.nc" ! default = "" -!Z_OUTPUT_GRID_FILE = "interpolate_zgrid_40L.nc" - ! The file that specifies the vertical grid for - ! depth-space diagnostics, or blank to disable - ! depth-space output. -!NK_ZSPACE (from file) = 35 ! [nondim] - ! The number of depth-space levels. This is determined - ! from the size of the variable zw in the output grid file. + ! The time-scale for a running-mean filter applied to the mixed-layer depth used + ! in the MLE restratification parameterization. When the MLD deepens below the + ! current running-mean the running-mean is instantaneously set to the current + ! MLD. ! === module MOM_diabatic_driver === ! The following parameters are used for diabatic processes. ENERGETICS_SFC_PBL = True ! [Boolean] default = False - ! If true, use an implied energetics planetary boundary - ! layer scheme to determine the diffusivity and viscosity - ! in the surface boundary layer. + ! If true, use an implied energetics planetary boundary layer scheme to + ! determine the diffusivity and viscosity in the surface boundary layer. EPBL_IS_ADDITIVE = False ! [Boolean] default = True - ! If true, the diffusivity from ePBL is added to all - ! other diffusivities. Otherwise, the larger of kappa- - ! shear and ePBL diffusivities are used. + ! If true, the diffusivity from ePBL is added to all other diffusivities. + ! Otherwise, the larger of kappa-shear and ePBL diffusivities are used. -! === module MOM_KPP === -! This is the MOM wrapper to CVmix:KPP -! See http://code.google.com/p/cvmix/ +! === module MOM_CVMix_KPP === +! This is the MOM wrapper to CVMix:KPP +! See http://cvmix.github.io/ -! === module MOM_diffConvection === -! This module implements enhanced diffusivity as a -! function of static stability, N^2. -CONVECTION% -%CONVECTION +! === module MOM_tidal_mixing === +! Vertical Tidal Mixing Parameterization +INT_TIDE_DISSIPATION = True ! [Boolean] default = False + ! If true, use an internal tidal dissipation scheme to drive diapycnal mixing, + ! along the lines of St. Laurent et al. (2002) and Simmons et al. (2004). +INT_TIDE_PROFILE = "POLZIN_09" ! default = "STLAURENT_02" + ! INT_TIDE_PROFILE selects the vertical profile of energy dissipation with + ! INT_TIDE_DISSIPATION. Valid values are: + ! STLAURENT_02 - Use the St. Laurent et al exponential + ! decay profile. + ! POLZIN_09 - Use the Polzin WKB-stretched algebraic + ! decay profile. +INT_TIDE_DECAY_SCALE = 300.3003003003003 ! [m] default = 500.0 + ! The decay scale away from the bottom for tidal TKE with the new coding when + ! INT_TIDE_DISSIPATION is used. +KAPPA_ITIDES = 6.28319E-04 ! [m-1] default = 6.283185307179586E-04 + ! A topographic wavenumber used with INT_TIDE_DISSIPATION. The default is 2pi/10 + ! km, as in St.Laurent et al. 2002. +KAPPA_H2_FACTOR = 0.84 ! [nondim] default = 1.0 + ! A scaling factor for the roughness amplitude with INT_TIDE_DISSIPATION. +TKE_ITIDE_MAX = 0.1 ! [W m-2] default = 1000.0 + ! The maximum internal tide energy source available to mix above the bottom + ! boundary layer with INT_TIDE_DISSIPATION. +READ_TIDEAMP = True ! [Boolean] default = False + ! If true, read a file (given by TIDEAMP_FILE) containing the tidal amplitude + ! with INT_TIDE_DISSIPATION. +TIDEAMP_FILE = "tidal_amplitude.v20140616.nc" ! default = "tideamp.nc" + ! The path to the file containing the spatially varying tidal amplitudes with + ! INT_TIDE_DISSIPATION. +H2_FILE = "ocean_topog.nc" ! + ! The path to the file containing the sub-grid-scale topographic roughness + ! amplitude with INT_TIDE_DISSIPATION. -! === module MOM_entrain_diffusive === +! === module MOM_CVMix_conv === +! Parameterization of enhanced mixing due to convection via CVMix ! === module MOM_geothermal === GEOTHERMAL_SCALE = 1.0 ! [W m-2 or various] default = 0.0 - ! The constant geothermal heat flux, a rescaling - ! factor for the heat flux read from GEOTHERMAL_FILE, or - ! 0 to disable the geothermal heating. + ! The constant geothermal heat flux, a rescaling factor for the heat flux read + ! from GEOTHERMAL_FILE, or 0 to disable the geothermal heating. GEOTHERMAL_FILE = "geothermal_davies2013_v1.nc" ! default = "" - ! The file from which the geothermal heating is to be - ! read, or blank to use a constant heating rate. + ! The file from which the geothermal heating is to be read, or blank to use a + ! constant heating rate. GEOTHERMAL_VARNAME = "geothermal_hf" ! default = "geo_heat" - ! The name of the geothermal heating variable in - ! GEOTHERMAL_FILE. + ! The name of the geothermal heating variable in GEOTHERMAL_FILE. ! === module MOM_set_diffusivity === BBL_MIXING_AS_MAX = False ! [Boolean] default = True - ! If true, take the maximum of the diffusivity from the - ! BBL mixing and the other diffusivities. Otherwise, - ! diffusiviy from the BBL_mixing is simply added. + ! If true, take the maximum of the diffusivity from the BBL mixing and the other + ! diffusivities. Otherwise, diffusivity from the BBL_mixing is simply added. USE_LOTW_BBL_DIFFUSIVITY = True ! [Boolean] default = False - ! If true, uses a simple, imprecise but non-coordinate dependent, model - ! of BBL mixing diffusivity based on Law of the Wall. Otherwise, uses - ! the original BBL scheme. + ! If true, uses a simple, imprecise but non-coordinate dependent, model of BBL + ! mixing diffusivity based on Law of the Wall. Otherwise, uses the original BBL + ! scheme. SIMPLE_TKE_TO_KD = True ! [Boolean] default = False - ! If true, uses a simple estimate of Kd/TKE that will - ! work for arbitrary vertical coordinates. If false, - ! calculates Kd/TKE and bounds based on exact energetics/nfor an isopycnal layer-formulation. -HENYEY_IGW_BACKGROUND = True ! [Boolean] default = False - ! If true, use a latitude-dependent scaling for the near - ! surface background diffusivity, as described in - ! Harrison & Hallberg, JPO 2008. -N2_FLOOR_IOMEGA2 = 0.0 ! [nondim] default = 1.0 - ! The floor applied to N2(k) scaled by Omega^2: - ! If =0., N2(k) is simply positive definite. - ! If =1., N2(k) > Omega^2 everywhere. + ! If true, uses a simple estimate of Kd/TKE that will work for arbitrary + ! vertical coordinates. If false, calculates Kd/TKE and bounds based on exact + ! energetics for an isopycnal layer-formulation. + +! === module MOM_bkgnd_mixing === +! Adding static vertical background mixing coefficients KD = 1.5E-05 ! [m2 s-1] - ! The background diapycnal diffusivity of density in the - ! interior. Zero or the molecular value, ~1e-7 m2 s-1, - ! may be used. + ! The background diapycnal diffusivity of density in the interior. Zero or the + ! molecular value, ~1e-7 m2 s-1, may be used. KD_MIN = 2.0E-06 ! [m2 s-1] default = 1.5E-07 ! The minimum diapycnal diffusivity. +HENYEY_IGW_BACKGROUND = True ! [Boolean] default = False + ! If true, use a latitude-dependent scaling for the near surface background + ! diffusivity, as described in Harrison & Hallberg, JPO 2008. KD_MAX = 0.1 ! [m2 s-1] default = -1.0 - ! The maximum permitted increment for the diapycnal - ! diffusivity from TKE-based parameterizations, or a - ! negative value for no limit. -INT_TIDE_DISSIPATION = True ! [Boolean] default = False - ! If true, use an internal tidal dissipation scheme to - ! drive diapycnal mixing, along the lines of St. Laurent - ! et al. (2002) and Simmons et al. (2004). -INT_TIDE_PROFILE = "POLZIN_09" ! default = "STLAURENT_02" - ! INT_TIDE_PROFILE selects the vertical profile of energy - ! dissipation with INT_TIDE_DISSIPATION. Valid values are: - ! STLAURENT_02 - Use the St. Laurent et al exponential - ! decay profile. - ! POLZIN_09 - Use the Polzin WKB-streched algebraic - ! decay profile. -INT_TIDE_DECAY_SCALE = 300.3003003003003 ! [m] default = 0.0 - ! The decay scale away from the bottom for tidal TKE with - ! the new coding when INT_TIDE_DISSIPATION is used. -KAPPA_ITIDES = 6.28319E-04 ! [m-1] default = 6.283185307179586E-04 - ! A topographic wavenumber used with INT_TIDE_DISSIPATION. - ! The default is 2pi/10 km, as in St.Laurent et al. 2002. -KAPPA_H2_FACTOR = 0.84 ! [nondim] default = 1.0 - ! A scaling factor for the roughness amplitude with nINT_TIDE_DISSIPATION. -TKE_ITIDE_MAX = 0.1 ! [W m-2] default = 1000.0 - ! The maximum internal tide energy source availble to mix - ! above the bottom boundary layer with INT_TIDE_DISSIPATION. -READ_TIDEAMP = True ! [Boolean] default = False - ! If true, read a file (given by TIDEAMP_FILE) containing - ! the tidal amplitude with INT_TIDE_DISSIPATION. -TIDEAMP_FILE = "tidal_amplitude.v20140616.nc" ! default = "tideamp.nc" - ! The path to the file containing the spatially varying - ! tidal amplitudes with INT_TIDE_DISSIPATION. -H2_FILE = "ocean_topog.nc" ! - ! The path to the file containing the sub-grid-scale - ! topographic roughness amplitude with INT_TIDE_DISSIPATION. + ! The maximum permitted increment for the diapycnal diffusivity from TKE-based + ! parameterizations, or a negative value for no limit. ! === module MOM_kappa_shear === ! Parameterization of shear-driven turbulence following Jackson, Hallberg and Legg, JPO 2008 USE_JACKSON_PARAM = True ! [Boolean] default = False - ! If true, use the Jackson-Hallberg-Legg (JPO 2008) - ! shear mixing parameterization. + ! If true, use the Jackson-Hallberg-Legg (JPO 2008) shear mixing + ! parameterization. MAX_RINO_IT = 25 ! [nondim] default = 50 - ! The maximum number of iterations that may be used to - ! estimate the Richardson number driven mixing. -VERTEX_SHEAR = True ! [Boolean] default = False + ! The maximum number of iterations that may be used to estimate the Richardson + ! number driven mixing. +VERTEX_SHEAR = False ! [Boolean] default = False ! If true, do the calculations of the shear-driven mixing ! at the cell vertices (i.e., the vorticity points). + +KAPPA_SHEAR_ITER_BUG = True ! [Boolean] default = True + ! If true, use an older, dimensionally inconsistent estimate of the derivative + ! of diffusivity with energy in the Newton's method iteration. The bug causes + ! undercorrections when dz > 1 m. +KAPPA_SHEAR_ALL_LAYER_TKE_BUG = True ! [Boolean] default = True + ! If true, report back the latest estimate of TKE instead of the time average + ! TKE when there is mass in all layers. Otherwise always report the time + ! averaged TKE, as is currently done when there are some massless layers. + ! === module MOM_CVMix_shear === ! Parameterization of shear-driven turbulence via CVMix (various options) +! === module MOM_CVMix_ddiff === +! Parameterization of mixing due to double diffusion processes via CVMix + ! === module MOM_diabatic_aux === ! The following parameters are used for auxiliary diabatic processes. -RECLAIM_FRAZIL = True ! [Boolean] default = True - ! If true, try to use any frazil heat deficit to cool any - ! overlying layers down to the freezing point, thereby - ! avoiding the creation of thin ice when the SST is above - ! the freezing point. - PRESSURE_DEPENDENT_FRAZIL = False ! [Boolean] default = False - ! If true, use a pressure dependent freezing temperature - ! when making frazil. The default is false, which will be - ! faster but is inappropriate with ice-shelf cavities. + ! If true, use a pressure dependent freezing temperature when making frazil. The + ! default is false, which will be faster but is inappropriate with ice-shelf + ! cavities. +VAR_PEN_SW = True ! [Boolean] default = False + ! If true, use one of the CHL_A schemes specified by OPACITY_SCHEME to determine + ! the e-folding depth of incoming short wave radiation. +CHL_FILE = "seawifs-clim-1997-2010.1440x1080.v20180328.nc" ! + ! CHL_FILE is the file containing chl_a concentrations in the variable CHL_A. It + ! is used when VAR_PEN_SW and CHL_FROM_FILE are true. +CHL_VARNAME = "chlor_a" ! default = "CHL_A" + ! Name of CHL_A variable in CHL_FILE. ! === module MOM_energetic_PBL === -MSTAR_MODE = 2 ! [units=nondim] default = 0 - ! An integer switch for how to compute MSTAR. - ! 0 for constant MSTAR - ! 1 for MSTAR w/ MLD in stabilizing limit - ! 2 for MSTAR w/ L_E/L_O in stabilizing limit. -MSTAR = 0.0 ! [units=nondim] default = 1.2 - ! The ratio of the friction velocity cubed to the TKE - ! input to the mixed layer. -MIX_LEN_EXPONENT = 1.0 ! [units=nondim] default = 2.0 - ! The exponent applied to the ratio of the distance to the MLD - ! and the MLD depth which determines the shape of the mixing length. -MSTAR_CAP = 10.0 ! [units=nondim] default = -1.0 - ! Maximum value of mstar allowed in model if non-negative - ! (used if MSTAR_MODE>0). -MSTAR_CONV_ADJ = 0.667 ! [units=nondim] default = 0.0 - ! Factor used for reducing mstar during convection - ! due to reduction of stable density gradient. -MSTAR2_COEF1 = 0.29 ! [units=nondim] default = 0.3 - ! Coefficient in computing mstar when rotation and - ! stabilizing effects are both important (used if MSTAR_MODE=2) -MSTAR2_COEF2 = 0.152 ! [units=nondim] default = 0.085 - ! Coefficient in computing mstar when only rotation limits - ! the total mixing. (used only if MSTAR_MODE=2) -NSTAR = 0.06 ! [nondim] default = 0.2 - ! The portion of the buoyant potential energy imparted by - ! surface fluxes that is available to drive entrainment - ! at the base of mixed layer when that energy is positive. -TKE_DECAY = 0.01 ! [nondim] default = 2.5 - ! TKE_DECAY relates the vertical rate of decay of the - ! TKE available for mechanical entrainment to the natural - ! Ekman depth. ML_OMEGA_FRAC = 0.001 ! [nondim] default = 0.0 - ! When setting the decay scale for turbulence, use this - ! fraction of the absolute rotation rate blended with the - ! local value of f, as sqrt((1-of)*f^2 + of*4*omega^2). + ! When setting the decay scale for turbulence, use this fraction of the absolute + ! rotation rate blended with the local value of f, as sqrt((1-of)*f^2 + + ! of*4*omega^2). +TKE_DECAY = 0.01 ! [nondim] default = 2.5 + ! TKE_DECAY relates the vertical rate of decay of the TKE available for + ! mechanical entrainment to the natural Ekman depth. +EPBL_MSTAR_SCHEME = "OM4" ! default = "CONSTANT" + ! EPBL_MSTAR_SCHEME selects the method for setting mstar. Valid values are: + ! CONSTANT - Use a fixed mstar given by MSTAR + ! OM4 - Use L_Ekman/L_Obukhov in the sabilizing limit, as in OM4 + ! REICHL_H18 - Use the scheme documented in Reichl & Hallberg, 2018. +MSTAR_CAP = 10.0 ! [nondim] default = -1.0 + ! If this value is positive, it sets the maximum value of mstar allowed in ePBL. + ! (This is not used if EPBL_MSTAR_SCHEME = CONSTANT). +MSTAR2_COEF1 = 0.29 ! [nondim] default = 0.3 + ! Coefficient in computing mstar when rotation and stabilizing effects are both + ! important (used if EPBL_MSTAR_SCHEME = OM4). +MSTAR2_COEF2 = 0.152 ! [nondim] default = 0.085 + ! Coefficient in computing mstar when only rotation limits the total mixing + ! (used if EPBL_MSTAR_SCHEME = OM4) +NSTAR = 0.06 ! [nondim] default = 0.2 + ! The portion of the buoyant potential energy imparted by surface fluxes that is + ! available to drive entrainment at the base of mixed layer when that energy is + ! positive. +MSTAR_CONV_ADJ = 0.667 ! [nondim] default = 0.0 + ! Coefficient used for reducing mstar during convection due to reduction of + ! stable density gradient. USE_MLD_ITERATION = True ! [Boolean] default = False - ! A logical that specifies whether or not to use the - ! distance to the bottom of the actively turblent boundary - ! layer to help set the EPBL length scale. -ORIG_MLD_ITERATION = False ! [Boolean] default = True - ! A logical that specifies whether or not to use the - ! old method for determining MLD depth in iteration, which - ! is limited to resolution. + ! A logical that specifies whether or not to use the distance to the bottom of + ! the actively turbulent boundary layer to help set the EPBL length scale. EPBL_TRANSITION_SCALE = 0.01 ! [nondim] default = 0.1 - ! A scale for the mixing length in the transition layer - ! at the edge of the boundary layer as a fraction of the - ! boundary layer thickness. The default is 0.1. + ! A scale for the mixing length in the transition layer at the edge of the + ! boundary layer as a fraction of the boundary layer thickness. +MIX_LEN_EXPONENT = 1.0 ! [nondim] default = 2.0 + ! The exponent applied to the ratio of the distance to the MLD and the MLD depth + ! which determines the shape of the mixing length. This is only used if + ! USE_MLD_ITERATION is True. USE_LA_LI2016 = MOM6_REPRO_LA ! [nondim] default = False - ! A logical to use the Li et al. 2016 (submitted) formula to - ! determine the Langmuir number. + ! A logical to use the Li et al. 2016 (submitted) formula to determine the + ! Langmuir number. LT_ENHANCE = 3 ! [nondim] default = 0 ! Integer for Langmuir number mode. ! *Requires USE_LA_LI2016 to be set to True. @@ -785,6 +750,7 @@ LT_ENHANCE = 3 ! [nondim] default = 0 ! 3 - Added w/ adjusted La. USE_WAVES = MOM6_USE_WAVES ! [Boolean] default = False ! If true, enables surface wave modules. + WAVE_METHOD = "SURFACE_BANDS" ! default = "EMPTY" ! Choice of wave method, valid options include: ! TEST_PROFILE - Prescribed from surface Stokes drift @@ -795,45 +761,44 @@ WAVE_METHOD = "SURFACE_BANDS" ! default = "EMPTY" ! wave spectrum with prescribed values. ! LF17 - Infers Stokes drift profile from wind ! speed following Li and Fox-Kemper 2017. + SURFBAND_SOURCE = "COUPLER" ! default = "EMPTY" ! Choice of SURFACE_BANDS data mode, valid options include: ! DATAOVERRIDE - Read from NetCDF using FMS DataOverride. ! COUPLER - Look for variables from coupler pass ! INPUT - Testing with fixed values. + STK_BAND_COUPLER = 3 ! default = 1 ! STK_BAND_COUPLER is the number of Stokes drift bands in the coupler. This has ! to be consistent with the number of Stokes drift bands in WW3, or the model ! will fail. + SURFBAND_WAVENUMBERS = 0.04, 0.11, 0.3305 ! [rad/m] default = 0.12566 - ! Central wavenumbers for surface Stokes drift bands. +EPBL_LANGMUIR_SCHEME = "ADDITIVE" ! default = "NONE" + ! EPBL_LANGMUIR_SCHEME selects the method for including Langmuir turbulence. + ! Valid values are: + ! NONE - Do not do any extra mixing due to Langmuir turbulence + ! RESCALE - Use a multiplicative rescaling of mstar to account for Langmuir + ! turbulence + ! ADDITIVE - Add a Langmuir turblence contribution to mstar to other + ! contributions LT_ENHANCE_COEF = 0.044 ! [nondim] default = 0.447 - ! Coefficient for Langmuir enhancement if LT_ENHANCE > 1 + ! Coefficient for Langmuir enhancement of mstar LT_ENHANCE_EXP = -1.5 ! [nondim] default = -1.33 - ! Exponent for Langmuir enhancement if LT_ENHANCE > 1 + ! Exponent for Langmuir enhancementt of mstar LT_MOD_LAC1 = 0.0 ! [nondim] default = -0.87 - ! Coefficient for modification of Langmuir number due to - ! MLD approaching Ekman depth if LT_ENHANCE=2. + ! Coefficient for modification of Langmuir number due to MLD approaching Ekman + ! depth. LT_MOD_LAC4 = 0.0 ! [nondim] default = 0.95 - ! Coefficient for modification of Langmuir number due to - ! ratio of Ekman to stable Obukhov depth if LT_ENHANCE=2. + ! Coefficient for modification of Langmuir number due to ratio of Ekman to + ! stable Obukhov depth. LT_MOD_LAC5 = 0.22 ! [nondim] default = 0.95 - ! Coefficient for modification of Langmuir number due to - ! ratio of Ekman to unstable Obukhov depth if LT_ENHANCE=2. -EPBL_USTAR_MIN = 1.45842E-18 ! [m s-1] - ! The (tiny) minimum friction velocity used within the - ! ePBL code, derived from OMEGA and ANGSTROM. + ! Coefficient for modification of Langmuir number due to ratio of Ekman to + ! unstable Obukhov depth. ! === module MOM_regularize_layers === ! === module MOM_opacity === -VAR_PEN_SW = True ! [Boolean] default = False - ! If true, use one of the CHL_A schemes specified by - ! OPACITY_SCHEME to determine the e-folding depth of - ! incoming short wave radiation. -CHL_FILE = CHLCLIM ! CHL_FILE is the file containing chl_a concentrations in - ! the variable CHL_A. It is used when VAR_PEN_SW and - ! CHL_FROM_FILE are true. -CHL_VARNAME = "chlor_a" ! default = "CHL_A" PEN_SW_NBANDS = 3 ! default = 1 ! The number of bands of penetrating shortwave radiation. @@ -846,37 +811,38 @@ TRACER_ADVECTION_SCHEME = "PPM:H3" ! default = "PLM" ! === module MOM_tracer_hor_diff === CHECK_DIFFUSIVE_CFL = True ! [Boolean] default = False - ! If true, use enough iterations the diffusion to ensure - ! that the diffusive equivalent of the CFL limit is not - ! violated. If false, always use 1 iteration. + ! If true, use enough iterations the diffusion to ensure that the diffusive + ! equivalent of the CFL limit is not violated. If false, always use the greater + ! of 1 or MAX_TR_DIFFUSION_CFL iteration. ! === module MOM_neutral_diffusion === ! This module implements neutral diffusion of tracers +! === module MOM_lateral_boundary_diffusion === +! This module implements lateral diffusion of tracers near boundaries + +! === module MOM_sum_output === +MAXTRUNC = 100000 ! [truncations save_interval-1] default = 0 + ! The run will be stopped, and the day set to a very large value if the velocity + ! is truncated more than MAXTRUNC times between energy saves. Set MAXTRUNC to 0 + ! to stop if there is any truncation of velocities. +ENERGYSAVEDAYS = 1.00 ! [days] default = 1.0 + ! The interval in units of TIMEUNIT between saves of the energies of the run and + ! other globally summed diagnostics. + ! === module ocean_model_init === OCEAN_SURFACE_STAGGER = "A" ! default = "C" ! A case-insensitive character string to indicate the ! staggering of the surface velocity field that is ! returned to the coupler. Valid values include ! 'A', 'B', or 'C'. -ENERGYSAVEDAYS = 1.00 ! [days] default = 1.0 - ! The interval in units of TIMEUNIT between saves of the - ! energies of the run and other globally summed diagnostics. - -! === module ocean_model_init === -ICE_SHELF = False ! [Boolean] default = False - ! If true, enables the ice shelf model. -ICEBERGS_APPLY_RIGID_BOUNDARY = False ! [Boolean] default = False - ! If true, allows icebergs to change boundary condition felt by ocean - ! === module MOM_surface_forcing === MAX_P_SURF = 0.0 ! [Pa] default = -1.0 - ! The maximum surface pressure that can be exerted by the - ! atmosphere and floating sea-ice or ice shelves. This is - ! needed because the FMS coupling structure does not - ! limit the water that can be frozen out of the ocean and - ! the ice-ocean heat fluxes are treated explicitly. No - ! limit is applied if a negative value is used. + ! The maximum surface pressure that can be exerted by the atmosphere and + ! floating sea-ice or ice shelves. This is needed because the FMS coupling + ! structure does not limit the water that can be frozen out of the ocean and the + ! ice-ocean heat fluxes are treated explicitly. No limit is applied if a + ! negative value is used. WIND_STAGGER = "A" ! default = "C" ! A case-insensitive character string to indicate the ! staggering of the input wind stress field. Valid @@ -885,26 +851,18 @@ CD_TIDES = 0.0018 ! [nondim] default = 1.0E-04 ! The drag coefficient that applies to the tides. GUST_CONST = 0.0 ! [Pa] default = 0.02 ! The background gustiness in the winds. +FIX_USTAR_GUSTLESS_BUG = False ! [Boolean] default = False + ! If true correct a bug in the time-averaging of the gustless wind friction + ! velocity USE_RIGID_SEA_ICE = True ! [Boolean] default = False - ! If true, sea-ice is rigid enough to exert a - ! nonhydrostatic pressure that resist vertical motion. + ! If true, sea-ice is rigid enough to exert a nonhydrostatic pressure that + ! resist vertical motion. SEA_ICE_RIGID_MASS = 100.0 ! [kg m-2] default = 1000.0 - ! The mass of sea-ice per unit area at which the sea-ice - ! starts to exhibit rigidity + ! The mass of sea-ice per unit area at which the sea-ice starts to exhibit + ! rigidity LIQUID_RUNOFF_FROM_DATA = MOM6_RIVER_RUNOFF ! [Boolean] default = False ! If true, allows liquid river runoff to be specified via ! the data_table using the component name 'OCN'. ! === module MOM_restart === RESTART_CHECKSUMS_REQUIRED = False -! === module MOM_sum_output === -CALCULATE_APE = False ! [Boolean] default = True - ! If true, calculate the available potential energy of - ! the interfaces. Setting this to false reduces the - ! memory footprint of high-PE-count models dramatically. -MAXTRUNC = 100000 ! [truncations save_interval-1] default = 0 - ! The run will be stopped, and the day set to a very - ! large value if the velocity is truncated more than - ! MAXTRUNC times between energy saves. Set MAXTRUNC to 0 - ! to stop if there is any truncation of velocities. - ! === module MOM_file_parser === diff --git a/tests/parm/MOM_input_template_050 b/tests/parm/MOM_input_template_050 index 481dcb2454..46780dfc82 100644 --- a/tests/parm/MOM_input_template_050 +++ b/tests/parm/MOM_input_template_050 @@ -1,116 +1,117 @@ -/* This input file provides the adjustable run-time parameters for version 6 of - the Modular Ocean Model (MOM6), a numerical ocean model developed at NOAA-GFDL. - Where appropriate, parameters use usually given in MKS units. +! This input file provides the adjustable run-time parameters for version 6 of the Modular Ocean Model (MOM6). +! Where appropriate, parameters use usually given in MKS units. - This particular file is for the example in OM4_05. +! This particular file is for the example in ice_ocean_SIS2/OM4_05. - This MOM_input file typically contains only the non-default values that are - needed to reproduce this example. A full list of parameters for this example - can be found in the corresponding MOM_parameter_doc.all file which is - generated by the model at run-time. */ +! This MOM_input file typically contains only the non-default values that are needed to reproduce this example. +! A full list of parameters for this example can be found in the corresponding MOM_parameter_doc.all file +! which is generated by the model at run-time. + +! === module MOM_domains === +TRIPOLAR_N = True ! [Boolean] default = False + ! Use tripolar connectivity at the northern edge of the domain. With + ! TRIPOLAR_N, NIGLOBAL must be even. +NIGLOBAL = NX_GLB ! + ! The total number of thickness grid points in the x-direction in the physical + ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. +NJGLOBAL = NY_GLB ! + ! The total number of thickness grid points in the y-direction in the physical + ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. +NIHALO = 4 ! default = 4 + ! The number of halo points on each side in the x-direction. With + ! STATIC_MEMORY_ this is set as NIHALO_ in MOM_memory.h at compile time; without + ! STATIC_MEMORY_ the default is NIHALO_ in MOM_memory.h (if defined) or 2. +NJHALO = 4 ! default = 4 + ! The number of halo points on each side in the y-direction. With + ! STATIC_MEMORY_ this is set as NJHALO_ in MOM_memory.h at compile time; without + ! STATIC_MEMORY_ the default is NJHALO_ in MOM_memory.h (if defined) or 2. +! LAYOUT = 21, 20 ! + ! The processor layout that was actually used. +! IO_LAYOUT = 1, 1 ! default = 1 + ! The processor layout to be used, or 0,0 to automatically set the io_layout to + ! be the same as the layout. ! === module MOM === USE_REGRIDDING = True ! [Boolean] default = False - ! If True, use the ALE algorithm (regridding/remapping). - ! If False, use the layered isopycnal algorithm. + ! If True, use the ALE algorithm (regridding/remapping). If False, use the + ! layered isopycnal algorithm. THICKNESSDIFFUSE = True ! [Boolean] default = False - ! If true, interface heights are diffused with a - ! coefficient of KHTH. + ! If true, interface heights are diffused with a coefficient of KHTH. THICKNESSDIFFUSE_FIRST = True ! [Boolean] default = False - ! If true, do thickness diffusion before dynamics. - ! This is only used if THICKNESSDIFFUSE is true. + ! If true, do thickness diffusion before dynamics. This is only used if + ! THICKNESSDIFFUSE is true. DT = DT_DYNAM_MOM6 ! [s] - ! The (baroclinic) dynamics time step. The time-step that - ! is actually used will be an integer fraction of the - ! forcing time-step (DT_FORCING in ocean-only mode or the - ! coupling timestep in coupled mode.) + ! The (baroclinic) dynamics time step. The time-step that is actually used will + ! be an integer fraction of the forcing time-step (DT_FORCING in ocean-only mode + ! or the coupling timestep in coupled mode.) DT_THERM = DT_THERM_MOM6 ! [s] default = 1800.0 - ! The thermodynamic and tracer advection time step. - ! Ideally DT_THERM should be an integer multiple of DT - ! and less than the forcing or coupling time-step, unless - ! THERMO_SPANS_COUPLING is true, in which case DT_THERM - ! can be an integer multiple of the coupling timestep. By - ! default DT_THERM is set to DT. + ! The thermodynamic and tracer advection time step. Ideally DT_THERM should be + ! an integer multiple of DT and less than the forcing or coupling time-step, + ! unless THERMO_SPANS_COUPLING is true, in which case DT_THERM can be an integer + ! multiple of the coupling timestep. By default DT_THERM is set to DT. THERMO_SPANS_COUPLING = MOM6_THERMO_SPAN ! [Boolean] default = False - ! If true, the MOM will take thermodynamic and tracer - ! timesteps that can be longer than the coupling timestep. - ! The actual thermodynamic timestep that is used in this - ! case is the largest integer multiple of the coupling - ! timestep that is less than or equal to DT_THERM. + ! If true, the MOM will take thermodynamic and tracer timesteps that can be + ! longer than the coupling timestep. The actual thermodynamic timestep that is + ! used in this case is the largest integer multiple of the coupling timestep + ! that is less than or equal to DT_THERM. HFREEZE = 20.0 ! [m] default = -1.0 ! If HFREEZE > 0, melt potential will be computed. The actual depth ! over which melt potential is computed will be min(HFREEZE, OBLD) ! where OBLD is the boundary layer depth. If HFREEZE <= 0 (default) ! melt potential will not be computed. +USE_PSURF_IN_EOS = False ! [Boolean] default = False + ! If true, always include the surface pressure contributions in equation of + ! state calculations. FRAZIL = True ! [Boolean] default = False - ! If true, water freezes if it gets too cold, and the - ! the accumulated heat deficit is returned in the - ! surface state. FRAZIL is only used if + ! If true, water freezes if it gets too cold, and the accumulated heat deficit + ! is returned in the surface state. FRAZIL is only used if ! ENABLE_THERMODYNAMICS is true. DO_GEOTHERMAL = True ! [Boolean] default = False ! If true, apply geothermal heating. BOUND_SALINITY = True ! [Boolean] default = False - ! If true, limit salinity to being positive. (The sea-ice - ! model may ask for more salt than is available and - ! drive the salinity negative otherwise.) + ! If true, limit salinity to being positive. (The sea-ice model may ask for more + ! salt than is available and drive the salinity negative otherwise.) +MIN_SALINITY = 0.01 ! [PPT] default = 0.01 + ! The minimum value of salinity when BOUND_SALINITY=True. The default is 0.01 + ! for backward compatibility but ideally should be 0. C_P = 3992.0 ! [J kg-1 K-1] default = 3991.86795711963 - ! The heat capacity of sea water, approximated as a - ! constant. This is only used if ENABLE_THERMODYNAMICS is - ! true. The default value is from the TEOS-10 definition - ! of conservative temperature. + ! The heat capacity of sea water, approximated as a constant. This is only used + ! if ENABLE_THERMODYNAMICS is true. The default value is from the TEOS-10 + ! definition of conservative temperature. CHECK_BAD_SURFACE_VALS = True ! [Boolean] default = False ! If true, check the surface state for ridiculous values. BAD_VAL_SSH_MAX = 50.0 ! [m] default = 20.0 - ! The value of SSH above which a bad value message is - ! triggered, if CHECK_BAD_SURFACE_VALS is true. + ! The value of SSH above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. BAD_VAL_SSS_MAX = 75.0 ! [PPT] default = 45.0 - ! The value of SSS above which a bad value message is - ! triggered, if CHECK_BAD_SURFACE_VALS is true. + ! The value of SSS above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. BAD_VAL_SST_MAX = 55.0 ! [deg C] default = 45.0 - ! The value of SST above which a bad value message is - ! triggered, if CHECK_BAD_SURFACE_VALS is true. + ! The value of SST above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. BAD_VAL_SST_MIN = -3.0 ! [deg C] default = -2.1 - ! The value of SST below which a bad value message is - ! triggered, if CHECK_BAD_SURFACE_VALS is true. + ! The value of SST below which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +DEFAULT_2018_ANSWERS = True ! [Boolean] default = True + ! This sets the default value for the various _2018_ANSWERS parameters. WRITE_GEOM = 2 ! default = 1 - ! If =0, never write the geometry and vertical grid files. - ! If =1, write the geometry and vertical grid files only for - ! a new simulation. If =2, always write the geometry and - ! vertical grid files. Other values are invalid. + ! If =0, never write the geometry and vertical grid files. If =1, write the + ! geometry and vertical grid files only for a new simulation. If =2, always + ! write the geometry and vertical grid files. Other values are invalid. SAVE_INITIAL_CONDS = True ! [Boolean] default = False ! If true, write the initial conditions to a file given by IC_OUTPUT_FILE. -IC_OUTPUT_FILE = "MOM_IC" ! default = "MOM_IC" - ! The file into which to write the initial conditions. - -! === module MOM_domains === -TRIPOLAR_N = True ! [Boolean] default = False - ! Use tripolar connectivity at the northern edge of the - ! domain. With TRIPOLAR_N, NIGLOBAL must be even. -NIGLOBAL = NX_GLB ! - ! The total number of thickness grid points in the - ! x-direction in the physical domain. With STATIC_MEMORY_ - ! this is set in MOM_memory.h at compile time. -NJGLOBAL = NY_GLB ! - ! The total number of thickness grid points in the - ! y-direction in the physical domain. With STATIC_MEMORY_ - ! this is set in MOM_memory.h at compile time. ! === module MOM_hor_index === ! Sets the horizontal array index types. -! === module MOM_verticalGrid === -! Parameters providing information about the vertical grid. -NK = 75 ! [nondim] - ! The number of model layers. - ! === module MOM_fixed_initialization === INPUTDIR = "INPUT" ! default = "." ! The directory in which input files are found. ! === module MOM_grid_init === GRID_CONFIG = "mosaic" ! - ! A character string that determines the method for - ! defining the horizontal grid. Current options are: + ! A character string that determines the method for defining the horizontal + ! grid. Current options are: ! mosaic - read the grid from a mosaic (supergrid) ! file set by GRID_FILE. ! cartesian - use a (flat) Cartesian grid. @@ -141,7 +142,6 @@ TOPO_CONFIG = "file" ! ! seamount - Gaussian bump for spontaneous motion test case. ! dumbbell - Sloshing channel with reservoirs on both ends. ! shelfwave - exponential slope for shelfwave test case. - ! supercritical - flat but with 8.95 degree land mask. ! Phillips - ACC-like idealized topography used in the Phillips config. ! dense - Denmark Strait-like dense water formation and overflow. ! USER - call a user modified routine. @@ -150,22 +150,24 @@ TOPO_FILE = "ocean_topog.nc" ! default = "topog.nc" MAXIMUM_DEPTH = 6500.0 ! [m] ! The maximum depth of the ocean. MINIMUM_DEPTH = 9.5 ! [m] default = 0.0 - ! If MASKING_DEPTH is unspecified, then anything shallower than - ! MINIMUM_DEPTH is assumed to be land and all fluxes are masked out. - ! If MASKING_DEPTH is specified, then all depths shallower than - ! MINIMUM_DEPTH but deeper than MASKING_DEPTH are rounded to MINIMUM_DEPTH. + ! If MASKING_DEPTH is unspecified, then anything shallower than MINIMUM_DEPTH is + ! assumed to be land and all fluxes are masked out. If MASKING_DEPTH is + ! specified, then all depths shallower than MINIMUM_DEPTH but deeper than + ! MASKING_DEPTH are rounded to MINIMUM_DEPTH. GRID_ROTATION_ANGLE_BUGS = False ! [Boolean] default = True ! If true, use an older algorithm to calculate the sine and ! cosines needed rotate between grid-oriented directions and ! true north and east. Differences arise at the tripolar fold -USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = True - ! If true, use older code that incorrectly sets the longitude - ! in some points along the tripolar fold to be off by 360 degrees + +USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = True + ! If true, use older code that incorrectly sets the longitude in some points + ! along the tripolar fold to be off by 360 degrees. ! === module MOM_open_boundary === -! Controls where open boundaries are located, what kind of boundary condition to impose, and what data to apply, if any. +! Controls where open boundaries are located, what kind of boundary condition to impose, and what data to apply, +! if any. MASKING_DEPTH = 0.0 ! [m] default = -9999.0 - ! The depth below which to mask points as land points, for which all - ! fluxes are zeroed out. MASKING_DEPTH is ignored if negative. + ! The depth below which to mask points as land points, for which all fluxes are + ! zeroed out. MASKING_DEPTH is ignored if negative. CHANNEL_CONFIG = "list" ! default = "none" ! A parameter that determines which set of channels are ! restricted to specific widths. Options are: @@ -179,19 +181,23 @@ CHANNEL_CONFIG = "list" ! default = "none" ! NetCDF file on the model grid. CHANNEL_LIST_FILE = "MOM_channels_global_025" ! default = "MOM_channel_list" ! The file from which the list of narrowed channels is read. +PARALLEL_RESTARTFILES = True ! [Boolean] default = False + ! If true, each processor writes its own restart file, otherwise a single + ! restart file is generated + +! === module MOM_verticalGrid === +! Parameters providing information about the vertical grid. +NK = 75 ! [nondim] + ! The number of model layers. ! === module MOM_tracer_registry === ! === module MOM_EOS === DTFREEZE_DP = -7.75E-08 ! [deg C Pa-1] default = 0.0 - ! When TFREEZE_FORM=LINEAR, - ! this is the derivative of the freezing potential + ! When TFREEZE_FORM=LINEAR, this is the derivative of the freezing potential ! temperature with pressure. ! === module MOM_restart === -PARALLEL_RESTARTFILES = True ! [Boolean] default = False - ! If true, each processor writes its own restart file, - ! otherwise a single restart file is generated ! === module MOM_tracer_flow_control === USE_IDEAL_AGE_TRACER = False ! [Boolean] default = False @@ -220,26 +226,26 @@ COORD_CONFIG = "file" ! ! USER - call a user modified routine. COORD_FILE = "layer_coord.nc" ! ! The file from which the coordinate densities are read. +REMAP_UV_USING_OLD_ALG = True ! [Boolean] default = True + ! If true, uses the old remapping-via-a-delta-z method for remapping u and v. If + ! false, uses the new method that remaps between grids described by an old and + ! new thickness. REGRIDDING_COORDINATE_MODE = "HYCOM1" ! default = "LAYER" - ! Coordinate mode for vertical regridding. - ! Choose among the following possibilities: - ! LAYER - Isopycnal or stacked shallow water layers - ! ZSTAR, Z* - stetched geopotential z* - ! SIGMA_SHELF_ZSTAR - stetched geopotential z* ignoring shelf + ! Coordinate mode for vertical regridding. Choose among the following + ! possibilities: LAYER - Isopycnal or stacked shallow water layers + ! ZSTAR, Z* - stretched geopotential z* + ! SIGMA_SHELF_ZSTAR - stretched geopotential z* ignoring shelf ! SIGMA - terrain following coordinates ! RHO - continuous isopycnal ! HYCOM1 - HyCOM-like hybrid coordinate ! SLIGHT - stretched coordinates above continuous isopycnal ! ADAPTIVE - optimize for smooth neutral density surfaces BOUNDARY_EXTRAPOLATION = True ! [Boolean] default = False - ! When defined, a proper high-order reconstruction - ! scheme is used within boundary cells rather - ! than PCM. E.g., if PPM is used for remapping, a - ! PPM reconstruction will also be used within - ! boundary cells. + ! When defined, a proper high-order reconstruction scheme is used within + ! boundary cells rather than PCM. E.g., if PPM is used for remapping, a PPM + ! reconstruction will also be used within boundary cells. ALE_COORDINATE_CONFIG = "HYBRID:hycom1_75_800m.nc,sigma2,FNC1:2,4000,4.5,.01" ! default = "UNIFORM" - ! Determines how to specify the coordinate - ! resolution. Valid options are: + ! Determines how to specify the coordinate resolution. Valid options are: ! PARAM - use the vector-parameter ALE_RESOLUTION ! UNIFORM[:N] - uniformly distributed ! FILE:string - read from a file. The string specifies @@ -259,11 +265,10 @@ ALE_COORDINATE_CONFIG = "HYBRID:hycom1_75_800m.nc,sigma2,FNC1:2,4000,4.5,.01" ! ! thicknesses (in m). In sigma-coordinate mode, the list ! is of non-dimensional fractions of the water column. !TARGET_DENSITIES = 1010.0, 1014.3034, 1017.8088, 1020.843, 1023.5566, 1025.813, 1027.0275, 1027.9114, 1028.6422, 1029.2795, 1029.852, 1030.3762, 1030.8626, 1031.3183, 1031.7486, 1032.1572, 1032.5471, 1032.9207, 1033.2798, 1033.6261, 1033.9608, 1034.2519, 1034.4817, 1034.6774, 1034.8508, 1035.0082, 1035.1533, 1035.2886, 1035.4159, 1035.5364, 1035.6511, 1035.7608, 1035.8661, 1035.9675, 1036.0645, 1036.1554, 1036.2411, 1036.3223, 1036.3998, 1036.4739, 1036.5451, 1036.6137, 1036.68, 1036.7441, 1036.8062, 1036.8526, 1036.8874, 1036.9164, 1036.9418, 1036.9647, 1036.9857, 1037.0052, 1037.0236, 1037.0409, 1037.0574, 1037.0738, 1037.0902, 1037.1066, 1037.123, 1037.1394, 1037.1558, 1037.1722, 1037.1887, 1037.206, 1037.2241, 1037.2435, 1037.2642, 1037.2866, 1037.3112, 1037.3389, 1037.3713, 1037.4118, 1037.475, 1037.6332, 1037.8104, 1038.0 ! [m] - ! HYBRID target densities for itnerfaces -REGRID_COMPRESSIBILITY_FRACTION = 0.01 ! [not defined] default = 0.0 - ! When interpolating potential density profiles we can add - ! some artificial compressibility solely to make homogenous - ! regions appear stratified. + ! HYBRID target densities for interfaces +REGRID_COMPRESSIBILITY_FRACTION = 0.01 ! [nondim] default = 0.0 + ! When interpolating potential density profiles we can add some artificial + ! compressibility solely to make homogeneous regions appear stratified. MAXIMUM_INT_DEPTH_CONFIG = "FNC1:5,8000.0,1.0,.01" ! default = "NONE" ! Determines how to specify the maximum interface depths. ! Valid options are: @@ -287,10 +292,9 @@ MAX_LAYER_THICKNESS_CONFIG = "FNC1:400,31000.0,0.1,.01" ! default = "NONE" !MAX_LAYER_THICKNESS = 400.0, 409.63, 410.32, 410.75, 411.07, 411.32, 411.52, 411.7, 411.86, 412.0, 412.13, 412.24, 412.35, 412.45, 412.54, 412.63, 412.71, 412.79, 412.86, 412.93, 413.0, 413.06, 413.12, 413.18, 413.24, 413.29, 413.34, 413.39, 413.44, 413.49, 413.54, 413.58, 413.62, 413.67, 413.71, 413.75, 413.78, 413.82, 413.86, 413.9, 413.93, 413.97, 414.0, 414.03, 414.06, 414.1, 414.13, 414.16, 414.19, 414.22, 414.24, 414.27, 414.3, 414.33, 414.35, 414.38, 414.41, 414.43, 414.46, 414.48, 414.51, 414.53, 414.55, 414.58, 414.6, 414.62, 414.65, 414.67, 414.69, 414.71, 414.73, 414.75, 414.77, 414.79, 414.83 ! [m] ! The list of maximum thickness for each layer. REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" - ! This sets the reconstruction scheme used - ! for vertical remapping for all variables. - ! It can be one of the following schemes: - ! PCM (1st-order accurate) + ! This sets the reconstruction scheme used for vertical remapping for all + ! variables. It can be one of the following schemes: PCM (1st-order + ! accurate) ! PLM (2nd-order accurate) ! PPM_H4 (3rd-order accurate) ! PPM_IH4 (3rd-order accurate) @@ -302,13 +306,11 @@ REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" ! === module MOM_state_initialization === INIT_LAYERS_FROM_Z_FILE = True ! [Boolean] default = False - ! If true, intialize the layer thicknesses, temperatures, - ! and salnities from a Z-space file on a latitude- - ! longitude grid. + ! If true, initialize the layer thicknesses, temperatures, and salinities from a + ! Z-space file on a latitude-longitude grid. ! === module MOM_initialize_layers_from_Z === -!TEMP_SALT_Z_INIT_FILE = "WOA05_pottemp_salt.nc" ! default = "temp_salt_z.nc" -TEMP_SALT_Z_INIT_FILE = "MOM6_IC_TS.nc" +TEMP_SALT_Z_INIT_FILE = "MOM6_IC_TS.nc" ! default = "temp_salt_z.nc" ! The name of the z-space input file used to initialize ! temperatures (T) and salinities (S). If T and S are not ! in the same file, TEMP_Z_INIT_FILE and SALT_Z_INIT_FILE @@ -319,8 +321,12 @@ Z_INIT_FILE_PTEMP_VAR = "temp" ! default = "ptemp" Z_INIT_FILE_SALT_VAR = "salt" ! default = "salt" ! The name of the salinity variable in ! SALT_Z_INIT_FILE. + Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False ! If True, then remap straight to model coordinate from file. +Z_INIT_REMAP_OLD_ALG = True ! [Boolean] default = True + ! If false, uses the preferred remapping algorithm for initialization. If true, + ! use an older, less robust algorithm for remapping. ! === module MOM_diag_mediator === !Jiande NUM_DIAG_COORDS = 2 ! default = 1 @@ -334,9 +340,8 @@ DIAG_COORDS = "z Z ZSTAR" ! is of the form "MODULE_SUFFIX,PARAMETER_SUFFIX,COORDINATE_NAME". DIAG_COORD_DEF_Z="FILE:interpolate_zgrid_40L.nc,interfaces=zw" DIAG_MISVAL = -1e34 -!Jiande DIAG_COORD_DEF_RHO2 = "RFNC1:35,999.5,1028,1028.5,8.,1038.,0.0078125" ! default = "WOA09" - ! Determines how to specify the coordinate - ! resolution. Valid options are: +!DIAG_COORD_DEF_RHO2 = "RFNC1:35,999.5,1028,1028.5,8.,1038.,0.0078125" ! default = "WOA09" + ! Determines how to specify the coordinate resolution. Valid options are: ! PARAM - use the vector-parameter DIAG_COORD_RES_RHO2 ! UNIFORM[:N] - uniformly distributed ! FILE:string - read from a file. The string specifies @@ -352,13 +357,12 @@ DIAG_MISVAL = -1e34 ! === module MOM_MEKE === USE_MEKE = True ! [Boolean] default = False - ! If true, turns on the MEKE scheme which calculates - ! a sub-grid mesoscale eddy kinetic energy budget. + ! If true, turns on the MEKE scheme which calculates a sub-grid mesoscale eddy + ! kinetic energy budget. MEKE_GMCOEFF = 1.0 ! [nondim] default = -1.0 - ! The efficiency of the conversion of potential energy - ! into MEKE by the thickness mixing parameterization. - ! If MEKE_GMCOEFF is negative, this conversion is not - ! used or calculated. + ! The efficiency of the conversion of potential energy into MEKE by the + ! thickness mixing parameterization. If MEKE_GMCOEFF is negative, this + ! conversion is not used or calculated. MEKE_BGSRC = 1.0E-13 ! [W kg-1] default = 0.0 ! A background energy source for MEKE. MEKE_KHTH_FAC = 0.5 ! [nondim] default = 0.0 @@ -368,116 +372,118 @@ MEKE_KHTR_FAC = 0.5 ! [nondim] default = 0.0 MEKE_KHMEKE_FAC = 1.0 ! [nondim] default = 0.0 ! A factor that maps MEKE%Kh to Kh for MEKE itself. MEKE_VISCOSITY_COEFF_KU = 1.0 ! [nondim] default = 0.0 - ! If non-zero, is the scaling coefficient in the expression for - ! viscosity used to parameterize lateral momentum mixing by - ! unresolved eddies represented by MEKE. Can be negative to - ! represent backscatter from the unresolved eddies. + ! If non-zero, is the scaling coefficient in the expression forviscosity used to + ! parameterize harmonic lateral momentum mixing byunresolved eddies represented + ! by MEKE. Can be negative torepresent backscatter from the unresolved eddies. MEKE_ALPHA_RHINES = 0.15 ! [nondim] default = 0.05 - ! If positive, is a coefficient weighting the Rhines scale - ! in the expression for mixing length used in MEKE-derived diffusiviity. + ! If positive, is a coefficient weighting the Rhines scale in the expression for + ! mixing length used in MEKE-derived diffusivity. MEKE_ALPHA_EADY = 0.15 ! [nondim] default = 0.05 - ! If positive, is a coefficient weighting the Eady length scale - ! in the expression for mixing length used in MEKE-derived diffusiviity. + ! If positive, is a coefficient weighting the Eady length scale in the + ! expression for mixing length used in MEKE-derived diffusivity. ! === module MOM_lateral_mixing_coeffs === USE_VARIABLE_MIXING = True ! [Boolean] default = False - ! If true, the variable mixing code will be called. This - ! allows diagnostics to be created even if the scheme is - ! not used. If KHTR_SLOPE_CFF>0 or KhTh_Slope_Cff>0, - ! this is set to true regardless of what is in the - ! parameter file. + ! If true, the variable mixing code will be called. This allows diagnostics to + ! be created even if the scheme is not used. If KHTR_SLOPE_CFF>0 or + ! KhTh_Slope_Cff>0, this is set to true regardless of what is in the parameter + ! file. RESOLN_SCALED_KH = True ! [Boolean] default = False - ! If true, the Laplacian lateral viscosity is scaled away - ! when the first baroclinic deformation radius is well - ! resolved. + ! If true, the Laplacian lateral viscosity is scaled away when the first + ! baroclinic deformation radius is well resolved. RESOLN_SCALED_KHTH = True ! [Boolean] default = False - ! If true, the interface depth diffusivity is scaled away - ! when the first baroclinic deformation radius is well - ! resolved. + ! If true, the interface depth diffusivity is scaled away when the first + ! baroclinic deformation radius is well resolved. KHTH_USE_EBT_STRUCT = True ! [Boolean] default = False - ! If true, uses the equivalent barotropic structure - ! as the vertical structure of thickness diffusivity. + ! If true, uses the equivalent barotropic structure as the vertical structure of + ! thickness diffusivity. KHTR_SLOPE_CFF = 0.25 ! [nondim] default = 0.0 - ! The nondimensional coefficient in the Visbeck formula - ! for the epipycnal tracer diffusivity + ! The nondimensional coefficient in the Visbeck formula for the epipycnal tracer + ! diffusivity USE_STORED_SLOPES = True ! [Boolean] default = False - ! If true, the isopycnal slopes are calculated once and - ! stored for re-use. This uses more memory but avoids calling - ! the equation of state more times than should be necessary. + ! If true, the isopycnal slopes are calculated once and stored for re-use. This + ! uses more memory but avoids calling the equation of state more times than + ! should be necessary. KH_RES_FN_POWER = 100 ! [nondim] default = 2 - ! The power of dx/Ld in the Kh resolution function. Any - ! positive integer may be used, although even integers - ! are more efficient to calculate. Setting this greater - ! than 100 results in a step-function being used. + ! The power of dx/Ld in the Kh resolution function. Any positive integer may be + ! used, although even integers are more efficient to calculate. Setting this + ! greater than 100 results in a step-function being used. INTERPOLATE_RES_FN = False ! [Boolean] default = True - ! If true, interpolate the resolution function to the - ! velocity points from the thickness points; otherwise - ! interpolate the wave speed and calculate the resolution - ! function independently at each point. + ! If true, interpolate the resolution function to the velocity points from the + ! thickness points; otherwise interpolate the wave speed and calculate the + ! resolution function independently at each point. GILL_EQUATORIAL_LD = True ! [Boolean] default = False - ! If true, uses Gill's definition of the baroclinic - ! equatorial deformation radius, otherwise, if false, use - ! Pedlosky's definition. These definitions differ by a factor - ! of 2 infront of the beta term in the denominator. Gill'sis the more appropriate definition. + ! If true, uses Gill's definition of the baroclinic equatorial deformation + ! radius, otherwise, if false, use Pedlosky's definition. These definitions + ! differ by a factor of 2 in front of the beta term in the denominator. Gill's + ! is the more appropriate definition. ! === module MOM_set_visc === CHANNEL_DRAG = True ! [Boolean] default = False - ! If true, the bottom drag is exerted directly on each - ! layer proportional to the fraction of the bottom it - ! overlies. + ! If true, the bottom drag is exerted directly on each layer proportional to the + ! fraction of the bottom it overlies. PRANDTL_TURB = 1.25 ! [nondim] default = 1.0 - ! The turbulent Prandtl number applied to shear - ! instability. + ! The turbulent Prandtl number applied to shear instability. HBBL = 10.0 ! [m] - ! The thickness of a bottom boundary layer with a - ! viscosity of KVBBL if BOTTOMDRAGLAW is not defined, or - ! the thickness over which near-bottom velocities are - ! averaged for the drag law if BOTTOMDRAGLAW is defined - ! but LINEAR_DRAG is not. + ! The thickness of a bottom boundary layer with a viscosity of KVBBL if + ! BOTTOMDRAGLAW is not defined, or the thickness over which near-bottom + ! velocities are averaged for the drag law if BOTTOMDRAGLAW is defined but + ! LINEAR_DRAG is not. DRAG_BG_VEL = 0.1 ! [m s-1] default = 0.0 - ! DRAG_BG_VEL is either the assumed bottom velocity (with - ! LINEAR_DRAG) or an unresolved velocity that is - ! combined with the resolved velocity to estimate the - ! velocity magnitude. DRAG_BG_VEL is only used when - ! BOTTOMDRAGLAW is defined. + ! DRAG_BG_VEL is either the assumed bottom velocity (with LINEAR_DRAG) or an + ! unresolved velocity that is combined with the resolved velocity to estimate + ! the velocity magnitude. DRAG_BG_VEL is only used when BOTTOMDRAGLAW is + ! defined. BBL_USE_EOS = True ! [Boolean] default = False - ! If true, use the equation of state in determining the - ! properties of the bottom boundary layer. Otherwise use - ! the layer target potential densities. + ! If true, use the equation of state in determining the properties of the bottom + ! boundary layer. Otherwise use the layer target potential densities. BBL_THICK_MIN = 0.1 ! [m] default = 0.0 - ! The minimum bottom boundary layer thickness that can be - ! used with BOTTOMDRAGLAW. This might be - ! Kv / (cdrag * drag_bg_vel) to give Kv as the minimum + ! The minimum bottom boundary layer thickness that can be used with + ! BOTTOMDRAGLAW. This might be Kv/(cdrag*drag_bg_vel) to give Kv as the minimum ! near-bottom viscosity. KV = 1.0E-04 ! [m2 s-1] - ! The background kinematic viscosity in the interior. - ! The molecular value, ~1e-6 m2 s-1, may be used. + ! The background kinematic viscosity in the interior. The molecular value, ~1e-6 + ! m2 s-1, may be used. KV_BBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 ! The minimum viscosities in the bottom boundary layer. KV_TBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 ! The minimum viscosities in the top boundary layer. +! === module MOM_thickness_diffuse === +KHTH_MAX_CFL = 0.1 ! [nondimensional] default = 0.8 + ! The maximum value of the local diffusive CFL ratio that is permitted for the + ! thickness diffusivity. 1.0 is the marginally unstable value in a pure layered + ! model, but much smaller numbers (e.g. 0.1) seem to work better for ALE-based + ! models. +KHTH_USE_FGNV_STREAMFUNCTION = True ! [Boolean] default = False + ! If true, use the streamfunction formulation of Ferrari et al., 2010, which + ! effectively emphasizes graver vertical modes by smoothing in the vertical. +FGNV_FILTER_SCALE = 0.1 ! [nondim] default = 1.0 + ! A coefficient scaling the vertical smoothing term in the Ferrari et al., 2010, + ! streamfunction formulation. +USE_GM_WORK_BUG = True ! [Boolean] default = True + ! If true, compute the top-layer work tendency on the u-grid with the incorrect + ! sign, for legacy reproducibility. + ! === module MOM_continuity === ! === module MOM_continuity_PPM === ETA_TOLERANCE = 1.0E-06 ! [m] default = 3.75E-09 - ! The tolerance for the differences between the - ! barotropic and baroclinic estimates of the sea surface - ! height due to the fluxes through each face. The total - ! tolerance for SSH is 4 times this value. The default - ! is 0.5*NK*ANGSTROM, and this should not be set less x - ! than about 10^-15*MAXIMUM_DEPTH. + ! The tolerance for the differences between the barotropic and baroclinic + ! estimates of the sea surface height due to the fluxes through each face. The + ! total tolerance for SSH is 4 times this value. The default is + ! 0.5*NK*ANGSTROM, and this should not be set less than about + ! 10^-15*MAXIMUM_DEPTH. ETA_TOLERANCE_AUX = 0.001 ! [m] default = 1.0E-06 - ! The tolerance for free-surface height discrepancies - ! between the barotropic solution and the sum of the - ! layer thicknesses when calculating the auxiliary - ! corrected velocities. By default, this is the same as - ! ETA_TOLERANCE, but can be made larger for efficiency. + ! The tolerance for free-surface height discrepancies between the barotropic + ! solution and the sum of the layer thicknesses when calculating the auxiliary + ! corrected velocities. By default, this is the same as ETA_TOLERANCE, but can + ! be made larger for efficiency. ! === module MOM_CoriolisAdv === CORIOLIS_SCHEME = "SADOURNY75_ENSTRO" ! default = "SADOURNY75_ENERGY" - ! CORIOLIS_SCHEME selects the discretization for the - ! Coriolis terms. Valid values are: + ! CORIOLIS_SCHEME selects the discretization for the Coriolis terms. Valid + ! values are: ! SADOURNY75_ENERGY - Sadourny, 1975; energy cons. ! ARAKAWA_HSU90 - Arakawa & Hsu, 1990 ! SADOURNY75_ENSTRO - Sadourny, 1975; enstrophy cons. @@ -485,327 +491,286 @@ CORIOLIS_SCHEME = "SADOURNY75_ENSTRO" ! default = "SADOURNY75_ENERGY" ! ARAKAWA_LAMB_BLEND - A blend of Arakawa & Lamb with ! Arakawa & Hsu and Sadourny energy BOUND_CORIOLIS = True ! [Boolean] default = False - ! If true, the Coriolis terms at u-points are bounded by - ! the four estimates of (f+rv)v from the four neighboring - ! v-points, and similarly at v-points. This option would - ! have no effect on the SADOURNY Coriolis scheme if it - ! were possible to use centered difference thickness fluxes. + ! If true, the Coriolis terms at u-points are bounded by the four estimates of + ! (f+rv)v from the four neighboring v-points, and similarly at v-points. This + ! option would have no effect on the SADOURNY Coriolis scheme if it were + ! possible to use centered difference thickness fluxes. ! === module MOM_PressureForce === ! === module MOM_PressureForce_AFV === MASS_WEIGHT_IN_PRESSURE_GRADIENT = True ! [Boolean] default = False - ! If true, use mass weighting when interpolating T/S for - ! integrals near the bathymetry in AFV pressure gradient - ! calculations. + ! If true, use mass weighting when interpolating T/S for integrals near the + ! bathymetry in AFV pressure gradient calculations. ! === module MOM_hor_visc === LAPLACIAN = True ! [Boolean] default = False ! If true, use a Laplacian horizontal viscosity. KH_VEL_SCALE = 0.01 ! [m s-1] default = 0.0 - ! The velocity scale which is multiplied by the grid - ! spacing to calculate the Laplacian viscosity. - ! The final viscosity is the largest of this scaled + ! The velocity scale which is multiplied by the grid spacing to calculate the + ! Laplacian viscosity. The final viscosity is the largest of this scaled ! viscosity, the Smagorinsky and Leith viscosities, and KH. KH_SIN_LAT = 2000.0 ! [m2 s-1] default = 0.0 - ! The amplitude of a latidutinally-dependent background - ! viscosity of the form KH_SIN_LAT*(SIN(LAT)**KH_PWR_OF_SINE). + ! The amplitude of a latitudinally-dependent background viscosity of the form + ! KH_SIN_LAT*(SIN(LAT)**KH_PWR_OF_SINE). SMAGORINSKY_KH = True ! [Boolean] default = False ! If true, use a Smagorinsky nonlinear eddy viscosity. SMAG_LAP_CONST = 0.15 ! [nondim] default = 0.0 - ! The nondimensional Laplacian Smagorinsky constant, - ! often 0.15. + ! The nondimensional Laplacian Smagorinsky constant, often 0.15. AH_VEL_SCALE = 0.01 ! [m s-1] default = 0.0 - ! The velocity scale which is multiplied by the cube of - ! the grid spacing to calculate the biharmonic viscosity. - ! The final viscosity is the largest of this scaled - ! viscosity, the Smagorinsky and Leith viscosities, and AH. + ! The velocity scale which is multiplied by the cube of the grid spacing to + ! calculate the biharmonic viscosity. The final viscosity is the largest of this + ! scaled viscosity, the Smagorinsky and Leith viscosities, and AH. SMAGORINSKY_AH = True ! [Boolean] default = False - ! If true, use a biharmonic Smagorinsky nonlinear eddy - ! viscosity. + ! If true, use a biharmonic Smagorinsky nonlinear eddy viscosity. SMAG_BI_CONST = 0.06 ! [nondim] default = 0.0 - ! The nondimensional biharmonic Smagorinsky constant, - ! typically 0.015 - 0.06. + ! The nondimensional biharmonic Smagorinsky constant, typically 0.015 - 0.06. +USE_LAND_MASK_FOR_HVISC = False ! [Boolean] default = False + ! If true, use Use the land mask for the computation of thicknesses at velocity + ! locations. This eliminates the dependence on arbitrary values over land or + ! outside of the domain. Default is False in order to maintain answers with + ! legacy experiments but should be changed to True for new experiments. ! === module MOM_vert_friction === -U_TRUNC_FILE = "U_velocity_truncations" ! default = "" - ! The absolute path to a file into which the accelerations - ! leading to zonal velocity truncations are written. - ! Undefine this for efficiency if this diagnostic is not - ! needed. -V_TRUNC_FILE = "V_velocity_truncations" ! default = "" - ! The absolute path to a file into which the accelerations - ! leading to meridional velocity truncations are written. - ! Undefine this for efficiency if this diagnostic is not - ! needed. HMIX_FIXED = 0.5 ! [m] - ! The prescribed depth over which the near-surface - ! viscosity and diffusivity are elevated when the bulk - ! mixed layer is not used. + ! The prescribed depth over which the near-surface viscosity and diffusivity are + ! elevated when the bulk mixed layer is not used. MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 - ! The maximum velocity allowed before the velocity - ! components are truncated. + ! The maximum velocity allowed before the velocity components are truncated. ! === module MOM_PointAccel === +U_TRUNC_FILE = "U_velocity_truncations" ! default = "" + ! The absolute path to a file into which the accelerations leading to zonal + ! velocity truncations are written. Undefine this for efficiency if this + ! diagnostic is not needed. +V_TRUNC_FILE = "V_velocity_truncations" ! default = "" + ! The absolute path to a file into which the accelerations leading to meridional + ! velocity truncations are written. Undefine this for efficiency if this + ! diagnostic is not needed. ! === module MOM_barotropic === BOUND_BT_CORRECTION = True ! [Boolean] default = False - ! If true, the corrective pseudo mass-fluxes into the - ! barotropic solver are limited to values that require - ! less than maxCFL_BT_cont to be accommodated. + ! If true, the corrective pseudo mass-fluxes into the barotropic solver are + ! limited to values that require less than maxCFL_BT_cont to be accommodated. BT_PROJECT_VELOCITY = True ! [Boolean] default = False - ! If true, step the barotropic velocity first and project - ! out the velocity tendancy by 1+BEBT when calculating the - ! transport. The default (false) is to use a predictor - ! continuity step to find the pressure field, and then - ! to do a corrector continuity step using a weighted - ! average of the old and new velocities, with weights - ! of (1-BEBT) and BEBT. + ! If true, step the barotropic velocity first and project out the velocity + ! tendency by 1+BEBT when calculating the transport. The default (false) is to + ! use a predictor continuity step to find the pressure field, and then to do a + ! corrector continuity step using a weighted average of the old and new + ! velocities, with weights of (1-BEBT) and BEBT. DYNAMIC_SURFACE_PRESSURE = True ! [Boolean] default = False - ! If true, add a dynamic pressure due to a viscous ice - ! shelf, for instance. + ! If true, add a dynamic pressure due to a viscous ice shelf, for instance. BEBT = 0.2 ! [nondim] default = 0.1 - ! BEBT determines whether the barotropic time stepping - ! uses the forward-backward time-stepping scheme or a - ! backward Euler scheme. BEBT is valid in the range from - ! 0 (for a forward-backward treatment of nonrotating - ! gravity waves) to 1 (for a backward Euler treatment). - ! In practice, BEBT must be greater than about 0.05. + ! BEBT determines whether the barotropic time stepping uses the forward-backward + ! time-stepping scheme or a backward Euler scheme. BEBT is valid in the range + ! from 0 (for a forward-backward treatment of nonrotating gravity waves) to 1 + ! (for a backward Euler treatment). In practice, BEBT must be greater than about + ! 0.05. DTBT = -0.9 ! [s or nondim] default = -0.98 - ! The barotropic time step, in s. DTBT is only used with - ! the split explicit time stepping. To set the time step - ! automatically based the maximum stable value use 0, or - ! a negative value gives the fraction of the stable value. - ! Setting DTBT to 0 is the same as setting it to -0.98. - ! The value of DTBT that will actually be used is an - ! integer fraction of DT, rounding down. + ! The barotropic time step, in s. DTBT is only used with the split explicit time + ! stepping. To set the time step automatically based the maximum stable value + ! use 0, or a negative value gives the fraction of the stable value. Setting + ! DTBT to 0 is the same as setting it to -0.98. The value of DTBT that will + ! actually be used is an integer fraction of DT, rounding down. BT_USE_OLD_CORIOLIS_BRACKET_BUG = True ! [Boolean] default = False - ! If True, use an order of operations that is not bitwise - ! rotationally symmetric in the meridional Coriolis term of - ! the barotropic solver. - -! === module MOM_thickness_diffuse === -KHTH_MAX_CFL = 0.1 ! [nondimensional] default = 0.8 - ! The maximum value of the local diffusive CFL ratio that - ! is permitted for the thickness diffusivity. 1.0 is the - ! marginally unstable value in a pure layered model, but - ! much smaller numbers (e.g. 0.1) seem to work better for - ! ALE-based models. -KHTH_USE_FGNV_STREAMFUNCTION = True ! [Boolean] default = False - ! If true, use the streamfunction formulation of - ! Ferrari et al., 2010, which effectively emphasizes - ! graver vertical modes by smoothing in the vertical. -FGNV_FILTER_SCALE = 0.1 ! [not defined] default = 1.0 - ! A coefficient scaling the vertical smoothing term in the - ! Ferrari et al., 2010, streamfunction formulation. + ! If True, use an order of operations that is not bitwise rotationally symmetric + ! in the meridional Coriolis term of the barotropic solver. ! === module MOM_mixed_layer_restrat === MIXEDLAYER_RESTRAT = True ! [Boolean] default = False - ! If true, a density-gradient dependent re-stratifying - ! flow is imposed in the mixed layer. Can be used in ALE mode - ! without restriction but in layer mode can only be used if - ! BULKMIXEDLAYER is true. + ! If true, a density-gradient dependent re-stratifying flow is imposed in the + ! mixed layer. Can be used in ALE mode without restriction but in layer mode can + ! only be used if BULKMIXEDLAYER is true. FOX_KEMPER_ML_RESTRAT_COEF = 1.0 ! [nondim] default = 0.0 - ! A nondimensional coefficient that is proportional to - ! the ratio of the deformation radius to the dominant - ! lengthscale of the submesoscale mixed layer - ! instabilities, times the minimum of the ratio of the - ! mesoscale eddy kinetic energy to the large-scale - ! geostrophic kinetic energy or 1 plus the square of the - ! grid spacing over the deformation radius, as detailed - ! by Fox-Kemper et al. (2010) + ! A nondimensional coefficient that is proportional to the ratio of the + ! deformation radius to the dominant lengthscale of the submesoscale mixed layer + ! instabilities, times the minimum of the ratio of the mesoscale eddy kinetic + ! energy to the large-scale geostrophic kinetic energy or 1 plus the square of + ! the grid spacing over the deformation radius, as detailed by Fox-Kemper et al. + ! (2010) MLE_FRONT_LENGTH = 200.0 ! [m] default = 0.0 - ! If non-zero, is the frontal-length scale used to calculate the - ! upscaling of buoyancy gradients that is otherwise represented - ! by the parameter FOX_KEMPER_ML_RESTRAT_COEF. If MLE_FRONT_LENGTH is - ! non-zero, it is recommended to set FOX_KEMPER_ML_RESTRAT_COEF=1.0. + ! If non-zero, is the frontal-length scale used to calculate the upscaling of + ! buoyancy gradients that is otherwise represented by the parameter + ! FOX_KEMPER_ML_RESTRAT_COEF. If MLE_FRONT_LENGTH is non-zero, it is recommended + ! to set FOX_KEMPER_ML_RESTRAT_COEF=1.0. MLE_USE_PBL_MLD = True ! [Boolean] default = False - ! If true, the MLE parameterization will use the mixed-layer - ! depth provided by the active PBL parameterization. If false, - ! MLE will estimate a MLD based on a density difference with the - ! surface using the parameter MLE_DENSITY_DIFF. + ! If true, the MLE parameterization will use the mixed-layer depth provided by + ! the active PBL parameterization. If false, MLE will estimate a MLD based on a + ! density difference with the surface using the parameter MLE_DENSITY_DIFF. MLE_MLD_DECAY_TIME = 2.592E+06 ! [s] default = 0.0 - ! The time-scale for a running-mean filter applied to the mixed-layer - ! depth used in the MLE restratification parameterization. When - ! the MLD deepens below the current running-mean the running-mean - ! is instantaneously set to the current MLD. + ! The time-scale for a running-mean filter applied to the mixed-layer depth used + ! in the MLE restratification parameterization. When the MLD deepens below the + ! current running-mean the running-mean is instantaneously set to the current + ! MLD. ! === module MOM_diabatic_driver === ! The following parameters are used for diabatic processes. ENERGETICS_SFC_PBL = True ! [Boolean] default = False - ! If true, use an implied energetics planetary boundary - ! layer scheme to determine the diffusivity and viscosity - ! in the surface boundary layer. + ! If true, use an implied energetics planetary boundary layer scheme to + ! determine the diffusivity and viscosity in the surface boundary layer. EPBL_IS_ADDITIVE = False ! [Boolean] default = True - ! If true, the diffusivity from ePBL is added to all - ! other diffusivities. Otherwise, the larger of kappa- - ! shear and ePBL diffusivities are used. + ! If true, the diffusivity from ePBL is added to all other diffusivities. + ! Otherwise, the larger of kappa-shear and ePBL diffusivities are used. -! === module MOM_KPP === -! This is the MOM wrapper to CVmix:KPP -! See http://code.google.com/p/cvmix/ +! === module MOM_CVMix_KPP === +! This is the MOM wrapper to CVMix:KPP +! See http://cvmix.github.io/ -! === module MOM_diffConvection === -! This module implements enhanced diffusivity as a -! function of static stability, N^2. -CONVECTION% -%CONVECTION +! === module MOM_tidal_mixing === +! Vertical Tidal Mixing Parameterization +INT_TIDE_DISSIPATION = True ! [Boolean] default = False + ! If true, use an internal tidal dissipation scheme to drive diapycnal mixing, + ! along the lines of St. Laurent et al. (2002) and Simmons et al. (2004). +INT_TIDE_PROFILE = "POLZIN_09" ! default = "STLAURENT_02" + ! INT_TIDE_PROFILE selects the vertical profile of energy dissipation with + ! INT_TIDE_DISSIPATION. Valid values are: + ! STLAURENT_02 - Use the St. Laurent et al exponential + ! decay profile. + ! POLZIN_09 - Use the Polzin WKB-stretched algebraic + ! decay profile. +INT_TIDE_DECAY_SCALE = 300.3003003003003 ! [m] default = 500.0 + ! The decay scale away from the bottom for tidal TKE with the new coding when + ! INT_TIDE_DISSIPATION is used. +KAPPA_ITIDES = 6.28319E-04 ! [m-1] default = 6.283185307179586E-04 + ! A topographic wavenumber used with INT_TIDE_DISSIPATION. The default is 2pi/10 + ! km, as in St.Laurent et al. 2002. +KAPPA_H2_FACTOR = 0.84 ! [nondim] default = 1.0 + ! A scaling factor for the roughness amplitude with INT_TIDE_DISSIPATION. +TKE_ITIDE_MAX = 0.1 ! [W m-2] default = 1000.0 + ! The maximum internal tide energy source available to mix above the bottom + ! boundary layer with INT_TIDE_DISSIPATION. +READ_TIDEAMP = True ! [Boolean] default = False + ! If true, read a file (given by TIDEAMP_FILE) containing the tidal amplitude + ! with INT_TIDE_DISSIPATION. +TIDEAMP_FILE = "tidal_amplitude.nc" ! default = "tideamp.nc" + ! The path to the file containing the spatially varying tidal amplitudes with + ! INT_TIDE_DISSIPATION. +H2_FILE = "ocean_topog.nc" ! + ! The path to the file containing the sub-grid-scale topographic roughness + ! amplitude with INT_TIDE_DISSIPATION. -! === module MOM_entrain_diffusive === +! === module MOM_CVMix_conv === +! Parameterization of enhanced mixing due to convection via CVMix ! === module MOM_geothermal === GEOTHERMAL_SCALE = 1.0 ! [W m-2 or various] default = 0.0 - ! The constant geothermal heat flux, a rescaling - ! factor for the heat flux read from GEOTHERMAL_FILE, or - ! 0 to disable the geothermal heating. + ! The constant geothermal heat flux, a rescaling factor for the heat flux read + ! from GEOTHERMAL_FILE, or 0 to disable the geothermal heating. GEOTHERMAL_FILE = "geothermal_davies2013_v1.nc" ! default = "" - ! The file from which the geothermal heating is to be - ! read, or blank to use a constant heating rate. + ! The file from which the geothermal heating is to be read, or blank to use a + ! constant heating rate. GEOTHERMAL_VARNAME = "geothermal_hf" ! default = "geo_heat" - ! The name of the geothermal heating variable in - ! GEOTHERMAL_FILE. + ! The name of the geothermal heating variable in GEOTHERMAL_FILE. ! === module MOM_set_diffusivity === BBL_MIXING_AS_MAX = False ! [Boolean] default = True - ! If true, take the maximum of the diffusivity from the - ! BBL mixing and the other diffusivities. Otherwise, - ! diffusiviy from the BBL_mixing is simply added. + ! If true, take the maximum of the diffusivity from the BBL mixing and the other + ! diffusivities. Otherwise, diffusivity from the BBL_mixing is simply added. USE_LOTW_BBL_DIFFUSIVITY = True ! [Boolean] default = False - ! If true, uses a simple, imprecise but non-coordinate dependent, model - ! of BBL mixing diffusivity based on Law of the Wall. Otherwise, uses - ! the original BBL scheme. + ! If true, uses a simple, imprecise but non-coordinate dependent, model of BBL + ! mixing diffusivity based on Law of the Wall. Otherwise, uses the original BBL + ! scheme. SIMPLE_TKE_TO_KD = True ! [Boolean] default = False - ! If true, uses a simple estimate of Kd/TKE that will - ! work for arbitrary vertical coordinates. If false, - ! calculates Kd/TKE and bounds based on exact energetics/nfor an isopycnal layer-formulation. -HENYEY_IGW_BACKGROUND = True ! [Boolean] default = False - ! If true, use a latitude-dependent scaling for the near - ! surface background diffusivity, as described in - ! Harrison & Hallberg, JPO 2008. -N2_FLOOR_IOMEGA2 = 0.0 ! [nondim] default = 1.0 - ! The floor applied to N2(k) scaled by Omega^2: - ! If =0., N2(k) is simply positive definite. - ! If =1., N2(k) > Omega^2 everywhere. + ! If true, uses a simple estimate of Kd/TKE that will work for arbitrary + ! vertical coordinates. If false, calculates Kd/TKE and bounds based on exact + ! energetics for an isopycnal layer-formulation. + +! === module MOM_bkgnd_mixing === +! Adding static vertical background mixing coefficients KD = 1.5E-05 ! [m2 s-1] - ! The background diapycnal diffusivity of density in the - ! interior. Zero or the molecular value, ~1e-7 m2 s-1, - ! may be used. + ! The background diapycnal diffusivity of density in the interior. Zero or the + ! molecular value, ~1e-7 m2 s-1, may be used. KD_MIN = 2.0E-06 ! [m2 s-1] default = 1.5E-07 ! The minimum diapycnal diffusivity. +HENYEY_IGW_BACKGROUND = True ! [Boolean] default = False + ! If true, use a latitude-dependent scaling for the near surface background + ! diffusivity, as described in Harrison & Hallberg, JPO 2008. KD_MAX = 0.1 ! [m2 s-1] default = -1.0 - ! The maximum permitted increment for the diapycnal - ! diffusivity from TKE-based parameterizations, or a - ! negative value for no limit. -INT_TIDE_DISSIPATION = True ! [Boolean] default = False - ! If true, use an internal tidal dissipation scheme to - ! drive diapycnal mixing, along the lines of St. Laurent - ! et al. (2002) and Simmons et al. (2004). -INT_TIDE_PROFILE = "POLZIN_09" ! default = "STLAURENT_02" - ! INT_TIDE_PROFILE selects the vertical profile of energy - ! dissipation with INT_TIDE_DISSIPATION. Valid values are: - ! STLAURENT_02 - Use the St. Laurent et al exponential - ! decay profile. - ! POLZIN_09 - Use the Polzin WKB-streched algebraic - ! decay profile. -INT_TIDE_DECAY_SCALE = 300.3003003003003 ! [m] default = 0.0 - ! The decay scale away from the bottom for tidal TKE with - ! the new coding when INT_TIDE_DISSIPATION is used. -KAPPA_ITIDES = 6.28319E-04 ! [m-1] default = 6.283185307179586E-04 - ! A topographic wavenumber used with INT_TIDE_DISSIPATION. - ! The default is 2pi/10 km, as in St.Laurent et al. 2002. -KAPPA_H2_FACTOR = 0.84 ! [nondim] default = 1.0 - ! A scaling factor for the roughness amplitude with nINT_TIDE_DISSIPATION. -TKE_ITIDE_MAX = 0.1 ! [W m-2] default = 1000.0 - ! The maximum internal tide energy source availble to mix - ! above the bottom boundary layer with INT_TIDE_DISSIPATION. -READ_TIDEAMP = True ! [Boolean] default = False - ! If true, read a file (given by TIDEAMP_FILE) containing - ! the tidal amplitude with INT_TIDE_DISSIPATION. -TIDEAMP_FILE = "tidal_amplitude.nc" ! default = "tideamp.nc" - ! The path to the file containing the spatially varying - ! tidal amplitudes with INT_TIDE_DISSIPATION. -H2_FILE = "ocean_topog.nc" ! - ! The path to the file containing the sub-grid-scale - ! topographic roughness amplitude with INT_TIDE_DISSIPATION. + ! The maximum permitted increment for the diapycnal diffusivity from TKE-based + ! parameterizations, or a negative value for no limit. ! === module MOM_kappa_shear === ! Parameterization of shear-driven turbulence following Jackson, Hallberg and Legg, JPO 2008 USE_JACKSON_PARAM = True ! [Boolean] default = False - ! If true, use the Jackson-Hallberg-Legg (JPO 2008) - ! shear mixing parameterization. + ! If true, use the Jackson-Hallberg-Legg (JPO 2008) shear mixing + ! parameterization. MAX_RINO_IT = 25 ! [nondim] default = 50 - ! The maximum number of iterations that may be used to - ! estimate the Richardson number driven mixing. -VERTEX_SHEAR = True ! [Boolean] default = False + ! The maximum number of iterations that may be used to estimate the Richardson + ! number driven mixing. +VERTEX_SHEAR = False ! [Boolean] default = False ! If true, do the calculations of the shear-driven mixing ! at the cell vertices (i.e., the vorticity points). +KAPPA_SHEAR_ITER_BUG = True ! [Boolean] default = True + ! If true, use an older, dimensionally inconsistent estimate of the derivative + ! of diffusivity with energy in the Newton's method iteration. The bug causes + ! undercorrections when dz > 1 m. +KAPPA_SHEAR_ALL_LAYER_TKE_BUG = True ! [Boolean] default = True + ! If true, report back the latest estimate of TKE instead of the time average + ! TKE when there is mass in all layers. Otherwise always report the time + ! averaged TKE, as is currently done when there are some massless layers. + ! === module MOM_CVMix_shear === ! Parameterization of shear-driven turbulence via CVMix (various options) +! === module MOM_CVMix_ddiff === +! Parameterization of mixing due to double diffusion processes via CVMix + ! === module MOM_diabatic_aux === ! The following parameters are used for auxiliary diabatic processes. -RECLAIM_FRAZIL = True ! [Boolean] default = True - ! If true, try to use any frazil heat deficit to cool any - ! overlying layers down to the freezing point, thereby - ! avoiding the creation of thin ice when the SST is above - ! the freezing point. - PRESSURE_DEPENDENT_FRAZIL = False ! [Boolean] default = False - ! If true, use a pressure dependent freezing temperature - ! when making frazil. The default is false, which will be - ! faster but is inappropriate with ice-shelf cavities. + ! If true, use a pressure dependent freezing temperature when making frazil. The + ! default is false, which will be faster but is inappropriate with ice-shelf + ! cavities. +VAR_PEN_SW = True ! [Boolean] default = False + ! If true, use one of the CHL_A schemes specified by OPACITY_SCHEME to determine + ! the e-folding depth of incoming short wave radiation. +CHL_FILE = CHLCLIM ! CHL_FILE is the file containing chl_a concentrations in the variable CHL_A. It + ! is used when VAR_PEN_SW and CHL_FROM_FILE are true. +CHL_VARNAME = "chlor_a" ! default = "CHL_A" + ! Name of CHL_A variable in CHL_FILE. ! === module MOM_energetic_PBL === -MSTAR_MODE = 2 ! [units=nondim] default = 0 - ! An integer switch for how to compute MSTAR. - ! 0 for constant MSTAR - ! 1 for MSTAR w/ MLD in stabilizing limit - ! 2 for MSTAR w/ L_E/L_O in stabilizing limit. -MSTAR = 0.0 ! [units=nondim] default = 1.2 - ! The ratio of the friction velocity cubed to the TKE - ! input to the mixed layer. -MIX_LEN_EXPONENT = 1.0 ! [units=nondim] default = 2.0 - ! The exponent applied to the ratio of the distance to the MLD - ! and the MLD depth which determines the shape of the mixing length. -MSTAR_CAP = 10.0 ! [units=nondim] default = -1.0 - ! Maximum value of mstar allowed in model if non-negative - ! (used if MSTAR_MODE>0). -MSTAR_CONV_ADJ = 0.667 ! [units=nondim] default = 0.0 - ! Factor used for reducing mstar during convection - ! due to reduction of stable density gradient. -MSTAR2_COEF1 = 0.29 ! [units=nondim] default = 0.3 - ! Coefficient in computing mstar when rotation and - ! stabilizing effects are both important (used if MSTAR_MODE=2) -MSTAR2_COEF2 = 0.152 ! [units=nondim] default = 0.085 - ! Coefficient in computing mstar when only rotation limits - ! the total mixing. (used only if MSTAR_MODE=2) -NSTAR = 0.06 ! [nondim] default = 0.2 - ! The portion of the buoyant potential energy imparted by - ! surface fluxes that is available to drive entrainment - ! at the base of mixed layer when that energy is positive. -TKE_DECAY = 0.01 ! [nondim] default = 2.5 - ! TKE_DECAY relates the vertical rate of decay of the - ! TKE available for mechanical entrainment to the natural - ! Ekman depth. ML_OMEGA_FRAC = 0.001 ! [nondim] default = 0.0 - ! When setting the decay scale for turbulence, use this - ! fraction of the absolute rotation rate blended with the - ! local value of f, as sqrt((1-of)*f^2 + of*4*omega^2). + ! When setting the decay scale for turbulence, use this fraction of the absolute + ! rotation rate blended with the local value of f, as sqrt((1-of)*f^2 + + ! of*4*omega^2). +TKE_DECAY = 0.01 ! [nondim] default = 2.5 + ! TKE_DECAY relates the vertical rate of decay of the TKE available for + ! mechanical entrainment to the natural Ekman depth. +EPBL_MSTAR_SCHEME = "OM4" ! default = "CONSTANT" + ! EPBL_MSTAR_SCHEME selects the method for setting mstar. Valid values are: + ! CONSTANT - Use a fixed mstar given by MSTAR + ! OM4 - Use L_Ekman/L_Obukhov in the sabilizing limit, as in OM4 + ! REICHL_H18 - Use the scheme documented in Reichl & Hallberg, 2018. +MSTAR_CAP = 10.0 ! [nondim] default = -1.0 + ! If this value is positive, it sets the maximum value of mstar allowed in ePBL. + ! (This is not used if EPBL_MSTAR_SCHEME = CONSTANT). +MSTAR2_COEF1 = 0.29 ! [nondim] default = 0.3 + ! Coefficient in computing mstar when rotation and stabilizing effects are both + ! important (used if EPBL_MSTAR_SCHEME = OM4). +MSTAR2_COEF2 = 0.152 ! [nondim] default = 0.085 + ! Coefficient in computing mstar when only rotation limits the total mixing + ! (used if EPBL_MSTAR_SCHEME = OM4) +NSTAR = 0.06 ! [nondim] default = 0.2 + ! The portion of the buoyant potential energy imparted by surface fluxes that is + ! available to drive entrainment at the base of mixed layer when that energy is + ! positive. +MSTAR_CONV_ADJ = 0.667 ! [nondim] default = 0.0 + ! Coefficient used for reducing mstar during convection due to reduction of + ! stable density gradient. USE_MLD_ITERATION = True ! [Boolean] default = False - ! A logical that specifies whether or not to use the - ! distance to the bottom of the actively turblent boundary - ! layer to help set the EPBL length scale. -ORIG_MLD_ITERATION = False ! [Boolean] default = True - ! A logical that specifies whether or not to use the - ! old method for determining MLD depth in iteration, which - ! is limited to resolution. + ! A logical that specifies whether or not to use the distance to the bottom of + ! the actively turbulent boundary layer to help set the EPBL length scale. EPBL_TRANSITION_SCALE = 0.01 ! [nondim] default = 0.1 - ! A scale for the mixing length in the transition layer - ! at the edge of the boundary layer as a fraction of the - ! boundary layer thickness. The default is 0.1. + ! A scale for the mixing length in the transition layer at the edge of the + ! boundary layer as a fraction of the boundary layer thickness. +MIX_LEN_EXPONENT = 1.0 ! [nondim] default = 2.0 + ! The exponent applied to the ratio of the distance to the MLD and the MLD depth + ! which determines the shape of the mixing length. This is only used if + ! USE_MLD_ITERATION is True. USE_LA_LI2016 = MOM6_REPRO_LA ! [nondim] default = False - ! A logical to use the Li et al. 2016 (submitted) formula to - ! determine the Langmuir number. + ! A logical to use the Li et al. 2016 (submitted) formula to determine the + ! Langmuir number. LT_ENHANCE = 3 ! [nondim] default = 0 ! Integer for Langmuir number mode. ! *Requires USE_LA_LI2016 to be set to True. @@ -836,22 +801,27 @@ STK_BAND_COUPLER = 3 ! default = 1 ! will fail. SURFBAND_WAVENUMBERS = 0.04, 0.11, 0.3305 ! [rad/m] default = 0.12566 ! Central wavenumbers for surface Stokes drift bands. +EPBL_LANGMUIR_SCHEME = "ADDITIVE" ! default = "NONE" + ! EPBL_LANGMUIR_SCHEME selects the method for including Langmuir turbulence. + ! Valid values are: + ! NONE - Do not do any extra mixing due to Langmuir turbulence + ! RESCALE - Use a multiplicative rescaling of mstar to account for Langmuir + ! turbulence + ! ADDITIVE - Add a Langmuir turblence contribution to mstar to other + ! contributions LT_ENHANCE_COEF = 0.044 ! [nondim] default = 0.447 - ! Coefficient for Langmuir enhancement if LT_ENHANCE > 1 + ! Coefficient for Langmuir enhancement of mstar LT_ENHANCE_EXP = -1.5 ! [nondim] default = -1.33 - ! Exponent for Langmuir enhancement if LT_ENHANCE > 1 + ! Exponent for Langmuir enhancementt of mstar LT_MOD_LAC1 = 0.0 ! [nondim] default = -0.87 - ! Coefficient for modification of Langmuir number due to - ! MLD approaching Ekman depth if LT_ENHANCE=2. + ! Coefficient for modification of Langmuir number due to MLD approaching Ekman + ! depth. LT_MOD_LAC4 = 0.0 ! [nondim] default = 0.95 - ! Coefficient for modification of Langmuir number due to - ! ratio of Ekman to stable Obukhov depth if LT_ENHANCE=2. + ! Coefficient for modification of Langmuir number due to ratio of Ekman to + ! stable Obukhov depth. LT_MOD_LAC5 = 0.22 ! [nondim] default = 0.95 - ! Coefficient for modification of Langmuir number due to - ! ratio of Ekman to unstable Obukhov depth if LT_ENHANCE=2. -EPBL_USTAR_MIN = 1.45842E-18 ! [m s-1] - ! The (tiny) minimum friction velocity used within the - ! ePBL code, derived from OMEGA and ANGSTROM. + ! Coefficient for modification of Langmuir number due to ratio of Ekman to + ! unstable Obukhov depth. ! === module MOM_regularize_layers === @@ -860,7 +830,7 @@ VAR_PEN_SW = True ! [Boolean] default = False ! If true, use one of the CHL_A schemes specified by ! OPACITY_SCHEME to determine the e-folding depth of ! incoming short wave radiation. -CHL_FILE = CHLCLIM ! CHL_FILE is the file containing chl_a concentrations in +CHL_FILE = CHLCLIM ! CHL_FILE is the file containing chl_a concentrations in ! the variable CHL_A. It is used when VAR_PEN_SW and ! CHL_FROM_FILE are true. CHL_VARNAME = "chlor_a" ! default = "CHL_A" @@ -879,19 +849,19 @@ TRACER_ADVECTION_SCHEME = "PPM:H3" ! default = "PLM" KHTR = 50.0 ! [m2 s-1] default = 0.0 ! The background along-isopycnal tracer diffusivity. CHECK_DIFFUSIVE_CFL = True ! [Boolean] default = False - ! If true, use enough iterations the diffusion to ensure - ! that the diffusive equivalent of the CFL limit is not - ! violated. If false, always use 1 iteration. + ! If true, use enough iterations the diffusion to ensure that the diffusive + ! equivalent of the CFL limit is not violated. If false, always use the greater + ! of 1 or MAX_TR_DIFFUSION_CFL iteration. MAX_TR_DIFFUSION_CFL = 2.0 ! [nondim] default = -1.0 - ! If positive, locally limit the along-isopycnal tracer - ! diffusivity to keep the diffusive CFL locally at or - ! below this value. The number of diffusive iterations - ! is often this value or the next greater integer. + ! If positive, locally limit the along-isopycnal tracer diffusivity to keep the + ! diffusive CFL locally at or below this value. The number of diffusive + ! iterations is often this value or the next greater integer. ! === module MOM_neutral_diffusion === ! This module implements neutral diffusion of tracers USE_NEUTRAL_DIFFUSION = True ! [Boolean] default = False ! If true, enables the neutral diffusion module. + ! === module ocean_model_init === OCEAN_SURFACE_STAGGER = "A" ! default = "C" ! A case-insensitive character string to indicate the @@ -899,32 +869,31 @@ OCEAN_SURFACE_STAGGER = "A" ! default = "C" ! returned to the coupler. Valid values include ! 'A', 'B', or 'C'. RESTART_CHECKSUMS_REQUIRED = False +! === module MOM_lateral_boundary_diffusion === +! This module implements lateral diffusion of tracers near boundaries + ! === module MOM_sum_output === -CALCULATE_APE = False ! [Boolean] default = True - ! If true, calculate the available potential energy of - ! the interfaces. Setting this to false reduces the - ! memory footprint of high-PE-count models dramatically. MAXTRUNC = 100000 ! [truncations save_interval-1] default = 0 - ! The run will be stopped, and the day set to a very - ! large value if the velocity is truncated more than - ! MAXTRUNC times between energy saves. Set MAXTRUNC to 0 + ! The run will be stopped, and the day set to a very large value if the velocity + ! is truncated more than MAXTRUNC times between energy saves. Set MAXTRUNC to 0 ! to stop if there is any truncation of velocities. -ENERGYSAVEDAYS = 1.00 ! [days] default = 1.0 - ! The interval in units of TIMEUNIT between saves of the - ! energies of the run and other globally summed diagnostics. +ENERGYSAVEDAYS = 1.0 ! [days] default = 1.0 + ! The interval in units of TIMEUNIT between saves of the energies of the run and + ! other globally summed diagnostics. ENERGYSAVEDAYS_GEOMETRIC = 0.25 ! [days] default = 0.0 - ! The starting interval in units of TIMEUNIT for the first call - ! to save the energies of the run and other globally summed diagnostics. - ! The interval increases by a factor of 2. after each call to write_energy. + ! The starting interval in units of TIMEUNIT for the first call to save the + ! energies of the run and other globally summed diagnostics. The interval + ! increases by a factor of 2. after each call to write_energy. + +! === module ocean_model_init === ! === module MOM_surface_forcing === MAX_P_SURF = 0.0 ! [Pa] default = -1.0 - ! The maximum surface pressure that can be exerted by the - ! atmosphere and floating sea-ice or ice shelves. This is - ! needed because the FMS coupling structure does not - ! limit the water that can be frozen out of the ocean and - ! the ice-ocean heat fluxes are treated explicitly. No - ! limit is applied if a negative value is used. + ! The maximum surface pressure that can be exerted by the atmosphere and + ! floating sea-ice or ice shelves. This is needed because the FMS coupling + ! structure does not limit the water that can be frozen out of the ocean and the + ! ice-ocean heat fluxes are treated explicitly. No limit is applied if a + ! negative value is used. WIND_STAGGER = "A" ! default = "C" ! A case-insensitive character string to indicate the ! staggering of the input wind stress field. Valid @@ -933,12 +902,15 @@ CD_TIDES = 0.0018 ! [nondim] default = 1.0E-04 ! The drag coefficient that applies to the tides. GUST_CONST = 0.0 ! [Pa] default = 0.02 ! The background gustiness in the winds. +FIX_USTAR_GUSTLESS_BUG = False ! [Boolean] default = False + ! If true correct a bug in the time-averaging of the gustless wind friction + ! velocity USE_RIGID_SEA_ICE = True ! [Boolean] default = False - ! If true, sea-ice is rigid enough to exert a - ! nonhydrostatic pressure that resist vertical motion. + ! If true, sea-ice is rigid enough to exert a nonhydrostatic pressure that + ! resist vertical motion. SEA_ICE_RIGID_MASS = 100.0 ! [kg m-2] default = 1000.0 - ! The mass of sea-ice per unit area at which the sea-ice - ! starts to exhibit rigidity + ! The mass of sea-ice per unit area at which the sea-ice starts to exhibit + ! rigidity LIQUID_RUNOFF_FROM_DATA = MOM6_RIVER_RUNOFF ! [Boolean] default = False ! If true, allows liquid river runoff to be specified via ! the data_table using the component name 'OCN'. diff --git a/tests/parm/MOM_input_template_100 b/tests/parm/MOM_input_template_100 index 976b5d69bc..d5af4cccd2 100644 --- a/tests/parm/MOM_input_template_100 +++ b/tests/parm/MOM_input_template_100 @@ -72,15 +72,17 @@ WRITE_GEOM = 2 ! default = 1 ! If =0, never write the geometry and vertical grid files. If =1, write the ! geometry and vertical grid files only for a new simulation. If =2, always ! write the geometry and vertical grid files. Other values are invalid. +SAVE_INITIAL_CONDS = True ! [Boolean] default = False + ! If true, write the initial conditions to a file given by IC_OUTPUT_FILE. ! === module MOM_domains === TRIPOLAR_N = True ! [Boolean] default = False ! Use tripolar connectivity at the northern edge of the domain. With ! TRIPOLAR_N, NIGLOBAL must be even. -NIGLOBAL = NX_GLB ! +NIGLOBAL = NX_GLB ! ! The total number of thickness grid points in the x-direction in the physical ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. -NJGLOBAL = NY_GLB ! +NJGLOBAL = NY_GLB ! ! The total number of thickness grid points in the y-direction in the physical ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. @@ -106,7 +108,7 @@ GRID_ROTATION_ANGLE_BUGS = False ! [Boolean] default = True ! If true, use an older algorithm to calculate the sine and ! cosines needed rotate between grid-oriented directions and ! true north and east. Differences arise at the tripolar fold -USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = False +USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = True ! If true, use older code that incorrectly sets the longitude in some points ! along the tripolar fold to be off by 360 degrees. TOPO_CONFIG = "file" ! @@ -165,6 +167,13 @@ CHANNEL_CONFIG = "list" ! default = "none" ! NetCDF file on the model grid. CHANNEL_LIST_FILE = "MOM_channels_SPEAR" ! default = "MOM_channel_list" ! The file from which the list of narrowed channels is read. +GRID_ROTATION_ANGLE_BUGS = False ! [Boolean] default = False + ! If true, use an older algorithm to calculate the sine and cosines needed + ! rotate between grid-oriented directions and true north and east. Differences + ! arise at the tripolar fold. +USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = False + ! If true, use older code that incorrectly sets the longitude in some points + ! along the tripolar fold to be off by 360 degrees. ! === module MOM_verticalGrid === ! Parameters providing information about the vertical grid. @@ -291,12 +300,12 @@ INIT_LAYERS_FROM_Z_FILE = True ! [Boolean] default = False ! Z-space file on a latitude-longitude grid. ! === module MOM_initialize_layers_from_Z === -TEMP_SALT_Z_INIT_FILE = "MOM6_IC_TS.nc" +TEMP_SALT_Z_INIT_FILE = "MOM6_IC_TS.nc" ! default = "temp_salt_z.nc" ! The name of the z-space input file used to initialize ! temperatures (T) and salinities (S). If T and S are not ! in the same file, TEMP_Z_INIT_FILE and SALT_Z_INIT_FILE ! must be set. -Z_INIT_FILE_PTEMP_VAR = "temp" ! default = "ptemp" +Z_INIT_FILE_PTEMP_VAR = "temp" ! default = "ptemp" ! The name of the potential temperature variable in ! TEMP_Z_INIT_FILE. Z_INIT_FILE_SALT_VAR = "salt" ! default = "salt" @@ -304,6 +313,9 @@ Z_INIT_FILE_SALT_VAR = "salt" ! default = "salt" ! SALT_Z_INIT_FILE. Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False ! If True, then remap straight to model coordinate from file. +Z_INIT_REMAP_OLD_ALG = True ! [Boolean] default = False + ! If false, uses the preferred remapping algorithm for initialization. If true, + ! use an older, less robust algorithm for remapping. ! === module MOM_diag_mediator === !Jiande NUM_DIAG_COORDS = 2 ! default = 1 @@ -317,9 +329,25 @@ DIAG_COORDS = "z Z ZSTAR" ! is of the form "MODULE_SUFFIX,PARAMETER_SUFFIX,COORDINATE_NAME". DIAG_COORD_DEF_Z="FILE:interpolate_zgrid_40L.nc,interfaces=zw" DIAG_MISVAL = -1e34 -!Jiande DIAG_COORD_DEF_RHO2 = "RFNC1:35,999.5,1028,1028.5,8.,1038.,0.0078125" ! default = "WOA09" - ! Determines how to specify the coordinate - ! resolution. Valid options are: +!AVAILABLE_DIAGS_FILE = "available_diags.002160" ! default = "available_diags.000000" + ! A file into which to write a list of all available ocean diagnostics that can + ! be included in a diag_table. +!DIAG_COORD_DEF_Z = "FILE:vgrid_75_2m.nc,dz" ! default = "WOA09" + ! Determines how to specify the coordinate resolution. Valid options are: + ! PARAM - use the vector-parameter DIAG_COORD_RES_Z + ! UNIFORM[:N] - uniformly distributed + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,dz + ! or FILE:lev.nc,interfaces=zw + ! WOA09[:N] - the WOA09 vertical grid (approximately) + ! FNC1:string - FNC1:dz_min,H_total,power,precision + ! HYBRID:string - read from a file. The string specifies + ! the filename and two variable names, separated + ! by a comma or space, for sigma-2 and dz. e.g. + ! HYBRID:vgrid.nc,sigma2,dz +!DIAG_COORD_DEF_RHO2 = "RFNC1:35,999.5,1028,1028.5,8.,1038.,0.0078125" ! default = "WOA09" + ! Determines how to specify the coordinate resolution. Valid options are: ! PARAM - use the vector-parameter DIAG_COORD_RES_RHO2 ! UNIFORM[:N] - uniformly distributed ! FILE:string - read from a file. The string specifies @@ -377,7 +405,7 @@ KH_RES_FN_POWER = 100 ! [nondim] default = 2 ! The power of dx/Ld in the Kh resolution function. Any positive integer may be ! used, although even integers are more efficient to calculate. Setting this ! greater than 100 results in a step-function being used. -!JW VISC_RES_FN_POWER = 2 ! [nondim] default = 100 +VISC_RES_FN_POWER = 2 ! [nondim] default = 100 ! The power of dx/Ld in the Kh resolution function. Any positive integer may be ! used, although even integers are more efficient to calculate. Setting this ! greater than 100 results in a step-function being used. This function affects @@ -616,7 +644,7 @@ USE_JACKSON_PARAM = True ! [Boolean] default = False MAX_RINO_IT = 25 ! [nondim] default = 50 ! The maximum number of iterations that may be used to estimate the Richardson ! number driven mixing. -VERTEX_SHEAR = True ! [Boolean] default = False +VERTEX_SHEAR = False ! [Boolean] default = False ! If true, do the calculations of the shear-driven mixing ! at the cell vertices (i.e., the vorticity points). KD_TRUNC_KAPPA_SHEAR = 2.0E-07 ! [m2 s-1] default = 2.0E-07 @@ -639,14 +667,14 @@ KAPPA_SHEAR_ALL_LAYER_TKE_BUG = True ! [Boolean] default = False ! === module MOM_diabatic_aux === ! The following parameters are used for auxiliary diabatic processes. -PRESSURE_DEPENDENT_FRAZIL = false ! [Boolean] default = False +PRESSURE_DEPENDENT_FRAZIL = False ! [Boolean] default = False ! If true, use a pressure dependent freezing temperature when making frazil. The ! default is false, which will be faster but is inappropriate with ice-shelf ! cavities. VAR_PEN_SW = True ! [Boolean] default = False ! If true, use one of the CHL_A schemes specified by OPACITY_SCHEME to determine ! the e-folding depth of incoming short wave radiation. -CHL_FILE = CHLCLIM +CHL_FILE = CHLCLIM ! ! CHL_FILE is the file containing chl_a concentrations in the variable CHL_A. It ! is used when VAR_PEN_SW and CHL_FROM_FILE are true. @@ -692,14 +720,6 @@ MIX_LEN_EXPONENT = 1.0 ! [nondim] default = 2.0 USE_LA_LI2016 = MOM6_REPRO_LA ! [nondim] default = False ! A logical to use the Li et al. 2016 (submitted) formula to determine the ! Langmuir number. -EPBL_LANGMUIR_SCHEME = "ADDITIVE" ! default = "NONE" - ! EPBL_LANGMUIR_SCHEME selects the method for including Langmuir turbulence. - ! Valid values are: - ! NONE - Do not do any extra mixing due to Langmuir turbulence - ! RESCALE - Use a multiplicative rescaling of mstar to account for Langmuir - ! turbulence - ! ADDITIVE - Add a Langmuir turblence contribution to mstar to other - ! contributions USE_WAVES = MOM6_USE_WAVES ! [Boolean] default = False ! If true, enables surface wave modules. WAVE_METHOD = "SURFACE_BANDS" ! default = "EMPTY" @@ -723,6 +743,14 @@ STK_BAND_COUPLER = 3 ! default = 1 ! will fail. SURFBAND_WAVENUMBERS = 0.04, 0.11, 0.3305 ! [rad/m] default = 0.12566 ! Central wavenumbers for surface Stokes drift bands. +EPBL_LANGMUIR_SCHEME = "ADDITIVE" ! default = "NONE" + ! EPBL_LANGMUIR_SCHEME selects the method for including Langmuir turbulence. + ! Valid values are: + ! NONE - Do not do any extra mixing due to Langmuir turbulence + ! RESCALE - Use a multiplicative rescaling of mstar to account for Langmuir + ! turbulence + ! ADDITIVE - Add a Langmuir turblence contribution to mstar to other + ! contributions LT_ENHANCE_COEF = 0.044 ! [nondim] default = 0.447 ! Coefficient for Langmuir enhancement of mstar LT_ENHANCE_EXP = -1.5 ! [nondim] default = -1.33 @@ -778,13 +806,14 @@ ENERGYSAVEDAYS = 0.25 ! [days] default = 1.0 ! other globally summed diagnostics. ! === module ocean_model_init === + +! === module MOM_surface_forcing === OCEAN_SURFACE_STAGGER = "A" ! default = "C" ! A case-insensitive character string to indicate the ! staggering of the surface velocity field that is ! returned to the coupler. Valid values include ! 'A', 'B', or 'C'. -! === module MOM_surface_forcing === MAX_P_SURF = 0.0 ! [Pa] default = -1.0 ! The maximum surface pressure that can be exerted by the atmosphere and ! floating sea-ice or ice shelves. This is needed because the FMS coupling diff --git a/tests/parm/ccpp_control.nml.IN b/tests/parm/ccpp_control.nml.IN index 33e6e17738..02be1792c6 100644 --- a/tests/parm/ccpp_control.nml.IN +++ b/tests/parm/ccpp_control.nml.IN @@ -263,23 +263,23 @@ FSICS = 99999, / &nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, SKEBNORM=1, SKEB_NPASS=30, SKEB_VDOF=5, SKEB=@[SKEB], SKEB_TAU=2.16E4, SKEB_LSCALE=1000.E3, + SKEBINT=1800, SHUM=@[SHUM], SHUM_TAU=21600, SHUM_LSCALE=500000, + SHUMINT=3600, SPPT=@[SPPT], SPPT_TAU=21600, SPPT_LSCALE=500000, SPPT_LOGIT=.TRUE., SPPT_SFCLIMIT=.TRUE., + SPPTINT=1800, ISEED_SHUM=1, ISEED_SKEB=2, ISEED_SPPT=3, diff --git a/tests/parm/ice_in_template b/tests/parm/ice_in_template index c5f374155e..155f081675 100644 --- a/tests/parm/ice_in_template +++ b/tests/parm/ice_in_template @@ -60,7 +60,7 @@ / &tracer_nml - n_aero = 1 + n_aero = 0 n_zaero = 0 n_algae = 0 n_doc = 0 @@ -128,7 +128,7 @@ albicev = 0.78 albicei = 0.36 albsnowv = 0.98 - albsnowi = 0.70 + albsnowi = 0.70 ahmax = 0.3 R_ice = 0. R_pnd = 0. @@ -228,7 +228,7 @@ tr_bgc_PON = .true. tr_bgc_hum = .true. tr_bgc_DON = .false. - tr_bgc_Fe = .true. + tr_bgc_Fe = .true. grid_o = 0.006 grid_o_t = 0.006 l_sk = 0.024 @@ -236,17 +236,17 @@ l_skS = 0.028 phi_snow = -0.3 initbio_frac = 0.8 - frazil_scav = 0.8 - ratio_Si2N_diatoms = 1.8 + frazil_scav = 0.8 + ratio_Si2N_diatoms = 1.8 ratio_Si2N_sp = 0.0 ratio_Si2N_phaeo = 0.0 - ratio_S2N_diatoms = 0.03 - ratio_S2N_sp = 0.03 + ratio_S2N_diatoms = 0.03 + ratio_S2N_sp = 0.03 ratio_S2N_phaeo = 0.03 ratio_Fe2C_diatoms = 0.0033 ratio_Fe2C_sp = 0.0033 ratio_Fe2C_phaeo = 0.1 - ratio_Fe2N_diatoms = 0.023 + ratio_Fe2N_diatoms = 0.023 ratio_Fe2N_sp = 0.023 ratio_Fe2N_phaeo = 0.7 ratio_Fe2DON = 0.023 @@ -372,32 +372,32 @@ f_VGRDb = .false. f_VGRDa = .true. f_bounds = .false. - f_aice = 'mdhxx' + f_aice = 'mdhxx' f_hi = 'mdhxx' - f_hs = 'mdhxx' - f_Tsfc = 'mdhxx' - f_sice = 'mdhxx' - f_uvel = 'mdhxx' - f_vvel = 'mdhxx' - f_uatm = 'mdhxx' - f_vatm = 'mdhxx' - f_fswdn = 'mdhxx' + f_hs = 'mdhxx' + f_Tsfc = 'mdhxx' + f_sice = 'mdhxx' + f_uvel = 'mdhxx' + f_vvel = 'mdhxx' + f_uatm = 'mdhxx' + f_vatm = 'mdhxx' + f_fswdn = 'mdhxx' f_flwdn = 'mdhxx' f_snowfrac = 'x' - f_snow = 'mdhxx' - f_snow_ai = 'x' - f_rain = 'mdhxx' - f_rain_ai = 'x' - f_sst = 'mdhxx' - f_sss = 'mdhxx' - f_uocn = 'mdhxx' - f_vocn = 'mdhxx' + f_snow = 'mdhxx' + f_snow_ai = 'x' + f_rain = 'mdhxx' + f_rain_ai = 'x' + f_sst = 'mdhxx' + f_sss = 'mdhxx' + f_uocn = 'mdhxx' + f_vocn = 'mdhxx' f_frzmlt = 'mdhxx' f_fswfac = 'mdhxx' f_fswint_ai = 'x' - f_fswabs = 'mdhxx' - f_fswabs_ai = 'x' - f_albsni = 'mdhxx' + f_fswabs = 'mdhxx' + f_fswabs_ai = 'x' + f_albsni = 'mdhxx' f_alvdr = 'mdhxx' f_alidr = 'mdhxx' f_alvdf = 'mdhxx' @@ -410,22 +410,22 @@ f_albsno = 'mdhxx' f_albpnd = 'mdhxx' f_coszen = 'mdhxx' - f_flat = 'mdhxx' - f_flat_ai = 'x' - f_fsens = 'mdhxx' - f_fsens_ai = 'x' - f_fswup = 'x' - f_flwup = 'mdhxx' - f_flwup_ai = 'x' - f_evap = 'mdhxx' - f_evap_ai = 'x' - f_Tair = 'mdhxx' - f_Tref = 'mdhxx' + f_flat = 'mdhxx' + f_flat_ai = 'x' + f_fsens = 'mdhxx' + f_fsens_ai = 'x' + f_fswup = 'x' + f_flwup = 'mdhxx' + f_flwup_ai = 'x' + f_evap = 'mdhxx' + f_evap_ai = 'x' + f_Tair = 'mdhxx' + f_Tref = 'mdhxx' f_Qref = 'mdhxx' - f_congel = 'mdhxx' - f_frazil = 'mdhxx' - f_snoice = 'mdhxx' - f_dsnow = 'mdhxx' + f_congel = 'mdhxx' + f_frazil = 'mdhxx' + f_snoice = 'mdhxx' + f_dsnow = 'mdhxx' f_melts = 'mdhxx' f_meltt = 'mdhxx' f_meltb = 'mdhxx' @@ -435,37 +435,37 @@ f_fsalt = 'mdhxx' f_fsalt_ai = 'x' f_fbot = 'mdhxx' - f_fhocn = 'mdhxx' - f_fhocn_ai = 'x' - f_fswthru = 'mdhxx' - f_fswthru_ai = 'x' + f_fhocn = 'mdhxx' + f_fhocn_ai = 'x' + f_fswthru = 'mdhxx' + f_fswthru_ai = 'x' f_fsurf_ai = 'x' f_fcondtop_ai = 'x' - f_fmeltt_ai = 'x' - f_strairx = 'mdhxx' - f_strairy = 'mdhxx' - f_strtltx = 'x' - f_strtlty = 'x' - f_strcorx = 'x' - f_strcory = 'x' - f_strocnx = 'mdhxx' - f_strocny = 'mdhxx' - f_strintx = 'x' + f_fmeltt_ai = 'x' + f_strairx = 'mdhxx' + f_strairy = 'mdhxx' + f_strtltx = 'x' + f_strtlty = 'x' + f_strcorx = 'x' + f_strcory = 'x' + f_strocnx = 'mdhxx' + f_strocny = 'mdhxx' + f_strintx = 'x' f_strinty = 'x' f_taubx = 'x' f_tauby = 'x' f_strength = 'x' f_divu = 'x' f_shear = 'x' - f_sig1 = 'x' - f_sig2 = 'x' - f_sigP = 'x' - f_dvidtt = 'x' - f_dvidtd = 'x' + f_sig1 = 'x' + f_sig2 = 'x' + f_sigP = 'x' + f_dvidtt = 'x' + f_dvidtd = 'x' f_daidtt = 'x' - f_daidtd = 'x' + f_daidtd = 'x' f_dagedtt = 'x' - f_dagedtd = 'x' + f_dagedtd = 'x' f_mlt_onset = 'mdhxx' f_frz_onset = 'mdhxx' f_hisnap = 'x' @@ -528,7 +528,7 @@ &icefields_bgc_nml f_faero_atm = 'x' f_faero_ocn = 'x' - f_aero = 'x' + f_aero = 'x' f_fbio = 'x' f_fbio_ai = 'x' f_zaero = 'x' @@ -544,18 +544,18 @@ f_bgc_DMSPp = 'x' f_bgc_DMSPd = 'x' f_bgc_DMS = 'x' - f_bgc_DON = 'x' - f_bgc_Fe = 'x' - f_bgc_hum = 'x' + f_bgc_DON = 'x' + f_bgc_Fe = 'x' + f_bgc_hum = 'x' f_bgc_PON = 'x' f_bgc_ml = 'x' f_upNO = 'x' f_upNH = 'x' f_bTin = 'x' - f_bphi = 'x' + f_bphi = 'x' f_iDi = 'x' f_iki = 'x' - f_fbri = 'x' + f_fbri = 'x' f_hbri = 'x' f_zfswin = 'x' f_bionet = 'x' diff --git a/tests/rt.conf b/tests/rt.conf index ce718dbf17..93b34facd9 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -103,7 +103,13 @@ RUN | fv3_ccpp_rap RUN | fv3_ccpp_hrrr | standard | hera.intel | fv3 | RUN | fv3_ccpp_thompson | standard | | fv3 | RUN | fv3_ccpp_thompson_no_aero | standard | | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | | fv3 | +# This test crashes with NaNs on jet.intel +RUN | fv3_ccpp_rrfs_v1beta | standard | wcoss_cray | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | standard | hera.intel | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | standard | orion.intel | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | standard | gaea.intel | fv3 | COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | hera.intel | fv3 | COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | orion.intel | fv3 | @@ -179,36 +185,58 @@ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug ####################################################################################################################################################################################### COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | cheyenne.intel | fv3 | RUN | cpld_control | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control | standard | cheyenne.intel | fv3 | #RUN | cpld_control_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | #RUN | cpld_restart | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_12h RUN | cpld_2threads | standard | hera.intel orion.intel wcoss_dell_p3 | | +#RUN | cpld_2threads | standard | cheyenne.intel | | RUN | cpld_decomp | standard | hera.intel orion.intel wcoss_dell_p3 | | -RUN | cpld_satmedmf | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_decomp | standard | cheyenne.intel | | +RUN | cpld_satmedmf | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_satmedmf | standard | cheyenne.intel | fv3 | RUN | cpld_ca | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_ca | standard | cheyenne.intel | fv3 | # restart test at c96mx025 RUN | cpld_control_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control_mx025 | standard | cheyenne.intel | fv3 | RUN | cpld_control_mx025_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control_mx025_12h | standard | cheyenne.intel | fv3 | RUN | cpld_restart_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_mx025_12h +#RUN | cpld_restart_mx025 | standard | cheyenne.intel | | cpld_control_mx025_12h RUN | cpld_control_c192 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control_c192 | standard | cheyenne.intel | fv3 | RUN | cpld_control_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control_c384 | standard | cheyenne.intel | fv3 | RUN | cpld_controlfrac_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_controlfrac_c384 | standard | cheyenne.intel | fv3 | RUN | cpld_bmark | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_bmark | standard | cheyenne.intel | fv3 | COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | cheyenne.intel | fv3 | RUN | cpld_bmark_wave | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_bmark_wave | standard | cheyenne.intel | fv3 | COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | cheyenne.intel | fv3 | RUN | cpld_debug | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_debug | standard | cheyenne.intel | fv3 | ####################################################################################################################################################################################### # Data Atmosphere tests ####################################################################################################################################################################################### COMPILE | DATM=Y S2S=Y | standard | hera.intel orion.intel | fv3 | +#COMPILE | DATM=Y S2S=Y | standard | cheyenne.intel | fv3 | RUN | datm_control_cfsr | standard | hera.intel orion.intel | fv3 | +#RUN | datm_control_cfsr | standard | cheyenne.intel | fv3 | RUN | datm_control_gefs | standard | hera.intel orion.intel | fv3 | +#RUN | datm_control_gefs | standard | cheyenne.intel | fv3 | RUN | datm_mx025_cfsr | standard | hera.intel orion.intel | fv3 | +#RUN | datm_mx025_cfsr | standard | cheyenne.intel | fv3 | RUN | datm_mx025_gefs | standard | hera.intel orion.intel | fv3 | +#RUN | datm_mx025_gefs | standard | cheyenne.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 16d2665bdc..c4febceeac 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -76,8 +76,8 @@ rt_trap() { } cleanup() { - [[ ${ECFLOW:-false} == true ]] && ecflow_stop rm -rf ${LOCKDIR} + [[ ${ECFLOW:-false} == true ]] && ecflow_stop trap 0 exit } @@ -318,7 +318,7 @@ mkdir -p ${STMP}/${USER} # Different own baseline directories for different compilers on Theia/Cheyenne NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST_GSL_DEVELOP -if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]]; then +if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]]; then NEW_BASELINE=${NEW_BASELINE}_${RT_COMPILER^^} fi @@ -395,12 +395,14 @@ if [[ $TESTS_FILE =~ '35d' ]]; then TEST_35D=true fi -if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = jet.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201124/${RT_COMPILER^^}} +if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]]; then + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201204/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201124} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201204} fi +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20201201/} + shift $((OPTIND-1)) [[ $# -gt 1 ]] && usage @@ -410,43 +412,6 @@ if [[ $CREATE_BASELINE == true ]]; then # rm -rf "${NEW_BASELINE}" mkdir -p "${NEW_BASELINE}" - echo "copy baseline inputs from: ${RTPWD}" - echo " to: ${NEW_BASELINE}" - - rsync -a "${RTPWD}"/FV3_* "${NEW_BASELINE}"/ - rsync -a "${RTPWD}"/WW3_* "${NEW_BASELINE}"/ - rsync -a "${RTPWD}"/DATM* "${NEW_BASELINE}"/ - - # FIXME: S2S baselines are only available on these machines with Intel - if [[ $MACHINE_ID = hera.intel ]] || [[ $MACHINE_ID = orion.intel ]] || [[ $MACHINE_ID = cheyenne.intel ]] || [[ $MACHINE_ID = gaea.intel ]] || [[ $MACHINE_ID = wcoss_dell_p3 ]]; then - rsync -a "${RTPWD}"/MOM6_* "${NEW_BASELINE}"/ - rsync -a "${RTPWD}"/CICE_* "${NEW_BASELINE}"/ - rsync -a "${RTPWD}"/CPL_* "${NEW_BASELINE}"/ - rsync -a "${RTPWD}"/BM_* "${NEW_BASELINE}"/ - fi - - # FIXME: move these namelist files to parm directory - rsync -a "${RTPWD}"/fv3_regional_control/input.nml "${NEW_BASELINE}"/fv3_regional_control/ - rsync -a "${RTPWD}"/fv3_regional_quilt/input.nml "${NEW_BASELINE}"/fv3_regional_quilt/ - rsync -a "${RTPWD}"/fv3_regional_c768/input.nml "${NEW_BASELINE}"/fv3_regional_c768/ - rsync -a "${RTPWD}"/fv3_regional_restart/input.nml "${NEW_BASELINE}"/fv3_regional_restart/ - - rsync -a "${RTPWD}"/fv3_regional_control/model_configure "${NEW_BASELINE}"/fv3_regional_control/ - rsync -a "${RTPWD}"/fv3_regional_quilt/model_configure "${NEW_BASELINE}"/fv3_regional_quilt/ - rsync -a "${RTPWD}"/fv3_regional_c768/model_configure "${NEW_BASELINE}"/fv3_regional_c768/ - rsync -a "${RTPWD}"/fv3_regional_restart/model_configure "${NEW_BASELINE}"/fv3_regional_restart/ - rsync -a "${RTPWD}"/fv3_regional_quilt_netcdf_parallel/model_configure "${NEW_BASELINE}"/fv3_regional_quilt_netcdf_parallel/ - - rsync -a "${RTPWD}"/fv3_regional_control/INPUT "${NEW_BASELINE}"/fv3_regional_control/ - rsync -a "${RTPWD}"/fv3_regional_control/RESTART "${NEW_BASELINE}"/fv3_regional_control/ - rsync -a "${RTPWD}"/fv3_regional_quilt/INPUT "${NEW_BASELINE}"/fv3_regional_quilt/ - rsync -a "${RTPWD}"/fv3_regional_c768/INPUT "${NEW_BASELINE}"/fv3_regional_c768/ - rsync -a "${RTPWD}"/fv3_regional_restart/INPUT "${NEW_BASELINE}"/fv3_regional_restart/ - rsync -a "${RTPWD}"/fv3_stretched/INPUT "${NEW_BASELINE}"/fv3_stretched/ - rsync -a "${RTPWD}"/fv3_stretched_nest/INPUT "${NEW_BASELINE}"/fv3_stretched_nest/ - rsync -a "${RTPWD}"/fv3_stretched_nest_quilt/INPUT "${NEW_BASELINE}"/fv3_stretched_nest_quilt/ - rsync -a "${RTPWD}"/fv3_stretched_nest_debug/INPUT "${NEW_BASELINE}"/fv3_stretched_nest_debug/ - rsync -a "${RTPWD}"/fv3_regional_quilt_netcdf_parallel/INPUT "${NEW_BASELINE}"/fv3_regional_quilt_netcdf_parallel/ fi COMPILE_LOG=${PATHRT}/Compile_$MACHINE_ID.log @@ -506,12 +471,13 @@ if [[ $ROCOTO == true ]]; then - - - - - + + + + + + + ]> 197001010000 197001010000 01:00:00 @@ -680,6 +646,7 @@ EOF export MACHINE_ID=${MACHINE_ID} export RT_COMPILER=${RT_COMPILER} export RTPWD=${RTPWD} + export INPUTDATA_ROOT=${INPUTDATA_ROOT} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export NEW_BASELINE=${NEW_BASELINE} diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 4e49f37615..acb1b8745b 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -270,7 +270,7 @@ check_results() { d=$( cmp ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i | wc -l ) if [[ $d -ne 0 ]] ; then - if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss_dell_p3 || ${MACHINE_ID} =~ wcoss_cray || ${MACHINE_ID} =~ cheyenne ]]; then + if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss_dell_p3 || ${MACHINE_ID} =~ wcoss_cray || ${MACHINE_ID} =~ cheyenne || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet ]]; then printf ".......ALT CHECK.." >> ${REGRESSIONTEST_LOG} printf ".......ALT CHECK.." d=$( ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i 2>/dev/null | wc -l ) diff --git a/tests/utest b/tests/utest index fb0c4102b1..a84e7c93e2 100755 --- a/tests/utest +++ b/tests/utest @@ -137,6 +137,7 @@ run_utests() { std_base) CREATE_BASELINE=true RTPWD=$baseline_location + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env export UNIT_TEST=true @@ -147,6 +148,7 @@ run_utests() { std) CREATE_BASELINE=false RTPWD=$NEW_BASELINE + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env export UNIT_TEST=true @@ -156,6 +158,7 @@ run_utests() { thr) CREATE_BASELINE=false RTPWD=$NEW_BASELINE + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base THRD=2 # INPES is sometimes odd, so use JNPES. Make sure JNPES is divisible by THRD @@ -176,6 +179,7 @@ run_utests() { mpi) CREATE_BASELINE=false RTPWD=$NEW_BASELINE + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base JNPES=$(( JNPES/2 )) WRITE_GROUP=2 @@ -195,6 +199,7 @@ run_utests() { dcp) CREATE_BASELINE=false RTPWD=$NEW_BASELINE + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base temp=$INPES INPES=$JNPES @@ -209,6 +214,7 @@ run_utests() { rst) # this is not going to work for regional model CREATE_BASELINE=false RTPWD=$NEW_BASELINE + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base # Set up date and time of restart files for restart run RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( SHOUR + FHMAX/2 )))0000" @@ -272,6 +278,7 @@ run_utests() { bit_base) CREATE_BASELINE=true RTPWD=$baseline_location + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_bit_base comp_nm=bit cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env @@ -282,6 +289,7 @@ run_utests() { bit) CREATE_BASELINE=false RTPWD=$NEW_BASELINE + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_bit_base comp_nm=bit cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env @@ -292,6 +300,7 @@ run_utests() { dbg_base) CREATE_BASELINE=true RTPWD=$baseline_location + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_dbg_base comp_nm=dbg WLCLK=30 @@ -304,6 +313,7 @@ run_utests() { dbg) CREATE_BASELINE=false RTPWD=$NEW_BASELINE + INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_dbg_base comp_nm=dbg WLCLK=30 @@ -318,6 +328,7 @@ run_utests() { cat <<- EOF > ${RUNDIR_ROOT}/run_test${RT_SUFFIX}.env export MACHINE_ID=${MACHINE_ID} export RTPWD=${RTPWD} + export INPUTDATA_ROOT=${INPUTDATA_ROOT} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export NEW_BASELINE=${NEW_BASELINE} @@ -716,6 +727,7 @@ else baseline_location=$DISKNM/NEMSfv3gfs/develop-20201118 fi RTPWD=$baseline_location +INPUTDATA_ROOT=$RTPWD rm -rf $NEW_BASELINE mkdir -p $NEW_BASELINE From 9bd6b59b3c5a230558430f238e32ca60d2844e57 Mon Sep 17 00:00:00 2001 From: Mark Potts <33099090+mark-a-potts@users.noreply.github.com> Date: Fri, 11 Dec 2020 22:35:19 -0500 Subject: [PATCH 038/109] Updates to build for JEDI linking/control, add wcoss2 (#295) * Build on wcoss2 (acorn) * Use -march=core-avx2 instead of -xCORE-AVX2 on wcoss2 * Updates to build for JEDI linking/control * Removed unnecessary include files and INLINE POST setting * Updated to address PR suggestions. * Add rt_acorn.conf. Change /lfs/h2 to /lfs/h1. * Update .gitmodules and submodule pointer for fv3atm for code review and testing * regression test results * Updated .gitmodules and removed extraneous file * Fixed .gitmodules and updated pointer for FV3 * Updated pointer to NEMS repo Co-authored-by: Dusan Jovic Co-authored-by: Dom Heinzeller --- CMakeLists.txt | 42 ++- FV3 | 2 +- NEMS | 2 +- cmake/Intel.cmake | 6 +- cmake/configure_wcoss2.cmake | 3 + fms_files.cmake | 5 + modulefiles/wcoss2/fv3 | 42 +++ modulefiles/wcoss2/fv3_debug | 42 +++ tests/RegressionTests_cheyenne.gnu.log | 46 +-- tests/RegressionTests_cheyenne.intel.log | 122 ++++---- tests/RegressionTests_gaea.intel.log | 100 +++---- tests/RegressionTests_hera.gnu.log | 46 +-- tests/RegressionTests_hera.intel.log | 177 ++++++----- tests/RegressionTests_jet.intel.log | 104 +++---- tests/RegressionTests_orion.intel.log | 363 ++++++++++++----------- tests/RegressionTests_wcoss_cray.log | 106 +++---- tests/RegressionTests_wcoss_dell_p3.log | 142 ++++----- tests/compile.sh | 3 + tests/default_vars.sh | 4 +- tests/detect_machine.sh | 3 + tests/fv3_conf/compile_qsub.IN_wcoss2 | 20 ++ tests/fv3_conf/fv3_qsub.IN_wcoss2 | 32 ++ tests/rt.sh | 33 +++ tests/rt_acorn.conf | 52 ++++ 24 files changed, 879 insertions(+), 618 deletions(-) create mode 100644 cmake/configure_wcoss2.cmake create mode 100644 modulefiles/wcoss2/fv3 create mode 100644 modulefiles/wcoss2/fv3_debug create mode 100644 tests/fv3_conf/compile_qsub.IN_wcoss2 create mode 100644 tests/fv3_conf/fv3_qsub.IN_wcoss2 create mode 100644 tests/rt_acorn.conf diff --git a/CMakeLists.txt b/CMakeLists.txt index a00e1472cf..2221cf24e6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,6 +32,7 @@ set(QUAD_PRECISION ON CACHE BOOL "Enable QUAD_PRECISION (for certain grid metr set(REPRO OFF CACHE BOOL "Enable REPRO mode") set(WW3 OFF CACHE BOOL "Enable WW3") set(S2S OFF CACHE BOOL "Enable S2S") +set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") set(DATM OFF CACHE BOOL "Enable Data Atmosphere") ############################################################################### @@ -132,7 +133,7 @@ endif() ### FMS ############################################################################### include(fms_files.cmake) -add_library(fms ${fms_src_files}) +add_library(fms ${fms_src_files} ${fms_headers}) # stupid cmake can not figure out dependency of fft.F90 on fft99.F90 because 'use fft99_mod' is inside ifdefs set_property(SOURCE FMS/fft/fft.F90 APPEND_STRING PROPERTY COMPILE_FLAGS "-DSGICRAY=0 -DNAGFFT=0") @@ -153,7 +154,12 @@ target_compile_definitions(fms PRIVATE "${_fms_defs_private}") target_include_directories(fms PUBLIC $ $ + $ + $ $) +target_include_directories(fms INTERFACE + $ + $) target_link_libraries(fms PUBLIC MPI::MPI_Fortran NetCDF::NetCDF_Fortran) if(OpenMP_Fortran_FOUND) @@ -161,8 +167,7 @@ if(OpenMP_Fortran_FOUND) endif() set_target_properties(fms PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS) set_target_properties(fms PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod) -target_include_directories(fms INTERFACE $ - $) +set_target_properties(fms PROPERTIES PUBLIC_HEADER "${fms_headers}" ) ############################################################################### ### stochastic_physics @@ -189,6 +194,8 @@ if(WW3) set(WW3_COMP "hera") elseif(${CMAKE_Platform} STREQUAL "orion.intel") set(WW3_COMP "orion") + elseif(${CMAKE_Platform} STREQUAL "wcoss2") + set(WW3_COMP "wcoss_cray") elseif(${CMAKE_Platform} MATCHES "linux*" OR ${CMAKE_Platform} MATCHES "macosx*") if (CMAKE_Fortran_COMPILER_ID MATCHES "GNU") set(WW3_COMP "gnu") @@ -259,7 +266,9 @@ else() list(APPEND _ufs_defs_private FRONT_FV3=fv3gfs_cap_mod) add_dependencies(ufs fv3atm) endif() - +if(JEDI_DRIVER) + list(APPEND _ufs_defs_private JEDI_DRIVER=ON) +endif() set_target_properties(ufs PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(ufs PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/NEMS/src) @@ -314,7 +323,7 @@ endif() target_compile_definitions(ufs_model PRIVATE "${_ufs_model_defs_private}") if(DATM) - target_link_libraries(ufs_model PRIVATE ufs w3nco::w3nco_d) + target_link_libraries(ufs_model PUBLIC ufs w3nco::w3nco_d) endif() target_link_libraries(ufs_model PRIVATE ufs esmf @@ -325,17 +334,28 @@ target_link_libraries(ufs_model PRIVATE ufs ### Install ############################################################################### install( - TARGETS ufs_model ufs fms - EXPORT ufs-config - RUNTIME DESTINATION bin + TARGETS fms + EXPORT fms-config + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib + PUBLIC_HEADER DESTINATION include ) + +install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod DESTINATION ${CMAKE_INSTALL_PREFIX}) + +install(EXPORT fms-config + DESTINATION lib/cmake +) +install( + TARGETS ufs + EXPORT ufs-config LIBRARY DESTINATION lib ARCHIVE DESTINATION lib) install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PREFIX}) -install(EXPORT ufs-config - DESTINATION lib/cmake) - +install(EXPORT ufs-config + DESTINATION lib/cmake +) ############################################################################### ### Done ############################################################################### diff --git a/FV3 b/FV3 index d10e4506af..babf6dc3e9 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit d10e4506aff4a23c5cf981aaf7661fde49e62599 +Subproject commit babf6dc3e904ea9fd4e9773bf792ada072e4a427 diff --git a/NEMS b/NEMS index 251d70c3a4..b800b340f8 160000 --- a/NEMS +++ b/NEMS @@ -1 +1 @@ -Subproject commit 251d70c3a4f79cc88010468d7f517e95045a6e79 +Subproject commit b800b340f8c7ba7852f13077b9957370ee60874a diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake index 6d2eb74537..d070ac2927 100644 --- a/cmake/Intel.cmake +++ b/cmake/Intel.cmake @@ -21,8 +21,10 @@ elseif(DEBUG) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -qno-opt-dynamic-align") else() if(AVX2) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -xCORE-AVX2 -qno-opt-dynamic-align") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -xCORE-AVX2 -qno-opt-dynamic-align") + #set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -xCORE-AVX2 -qno-opt-dynamic-align") + #set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -xCORE-AVX2 -qno-opt-dynamic-align") + 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") diff --git a/cmake/configure_wcoss2.cmake b/cmake/configure_wcoss2.cmake new file mode 100644 index 0000000000..c8a689be6c --- /dev/null +++ b/cmake/configure_wcoss2.cmake @@ -0,0 +1,3 @@ +set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) +set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) diff --git a/fms_files.cmake b/fms_files.cmake index fffd5a3b71..5b486ac632 100644 --- a/fms_files.cmake +++ b/fms_files.cmake @@ -80,3 +80,8 @@ list(APPEND fms_src_files FMS/mpp/nsclock.c FMS/mpp/threadloc.c ) + +list( APPEND fms_headers +FMS/include/fms_platform.h +FMS/include/file_version.h +) diff --git a/modulefiles/wcoss2/fv3 b/modulefiles/wcoss2/fv3 new file mode 100644 index 0000000000..fbb682affc --- /dev/null +++ b/modulefiles/wcoss2/fv3 @@ -0,0 +1,42 @@ +#%Module + +proc ModulesHelp {} { + puts stderr "\tcit - loads modules required for building and running UFS Model on the Dell side of WCOSS" +} + +module-whatis "loads UFS Model prerequisites on Venus and Mars" + +module unload cpe-cray cce +module load cpe-intel intel + +module load cmake/3.17.3 +setenv CMAKE_C_COMPILER cc +setenv CMAKE_CXX_COMPILER CC +setenv CMAKE_Fortran_COMPILER ftn +setenv CMAKE_Platform wcoss2 + +module use /lfs/h1/emc/nceplibs/noscrub/hpc-stack/test/noaa/modulefiles/stack + +module load hpc/1.0.0-beta1 +module load hpc-intel/19.1.1.217 +module load hpc-cray-mpich/8.0.15 + +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/modulefiles/wcoss2/fv3_debug b/modulefiles/wcoss2/fv3_debug new file mode 100644 index 0000000000..fbb682affc --- /dev/null +++ b/modulefiles/wcoss2/fv3_debug @@ -0,0 +1,42 @@ +#%Module + +proc ModulesHelp {} { + puts stderr "\tcit - loads modules required for building and running UFS Model on the Dell side of WCOSS" +} + +module-whatis "loads UFS Model prerequisites on Venus and Mars" + +module unload cpe-cray cce +module load cpe-intel intel + +module load cmake/3.17.3 +setenv CMAKE_C_COMPILER cc +setenv CMAKE_CXX_COMPILER CC +setenv CMAKE_Fortran_COMPILER ftn +setenv CMAKE_Platform wcoss2 + +module use /lfs/h1/emc/nceplibs/noscrub/hpc-stack/test/noaa/modulefiles/stack + +module load hpc/1.0.0-beta1 +module load hpc-intel/19.1.1.217 +module load hpc-cray-mpich/8.0.15 + +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/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 8512ff84da..a35ad9db64 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Sun Dec 6 09:12:30 MST 2020 +Thu Dec 10 08:55:06 MST 2020 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/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-20201204/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/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-20201204/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/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 @@ -187,7 +187,7 @@ Test 003 fv3_ccpp_gfs_v16beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -255,7 +255,7 @@ Test 004 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -323,7 +323,7 @@ Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -391,7 +391,7 @@ Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -483,7 +483,7 @@ Test 007 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -551,7 +551,7 @@ Test 008 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -619,7 +619,7 @@ Test 009 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -687,7 +687,7 @@ Test 010 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -755,7 +755,7 @@ Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -773,7 +773,7 @@ Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -803,7 +803,7 @@ Test 013 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -871,7 +871,7 @@ Test 014 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -939,7 +939,7 @@ Test 015 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1075,7 +1075,7 @@ Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1149,7 +1149,7 @@ Test 018 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1217,7 +1217,7 @@ Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1235,5 +1235,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sun Dec 6 09:28:45 MST 2020 -Elapsed time: 00h:16m:16s. Have a nice day! +Thu Dec 10 09:13:38 MST 2020 +Elapsed time: 00h:18m:33s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 6c320ecfa0..0d3bbebaaf 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Mon Dec 7 08:23:11 MST 2020 +Thu Dec 10 09:16:35 MST 2020 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/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-20201204/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/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-20201204/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/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-20201204/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/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-20201204/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/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-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/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-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/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-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/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 ............ALT CHECK......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-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/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-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/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-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/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-20201204/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/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-20201204/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_iau_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,7 +883,7 @@ Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -957,7 +957,7 @@ Test 016 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1025,7 +1025,7 @@ Test 017 fv3_ccpp_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_stretched_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1081,7 +1081,7 @@ Test 018 fv3_ccpp_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,7 +1148,7 @@ Test 019 fv3_ccpp_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1159,7 +1159,7 @@ Test 020 fv3_ccpp_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1168,7 +1168,7 @@ Test 021 fv3_ccpp_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1179,7 +1179,7 @@ Test 022 fv3_ccpp_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1190,7 +1190,7 @@ Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1220,7 +1220,7 @@ Test 024 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_stretched_nest_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1240,7 +1240,7 @@ Test 025 fv3_ccpp_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1288,7 +1288,7 @@ Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1336,7 +1336,7 @@ Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1384,7 +1384,7 @@ Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1432,7 +1432,7 @@ Test 029 fv3_ccpp_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1480,7 +1480,7 @@ Test 030 fv3_ccpp_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,7 +1528,7 @@ Test 031 fv3_ccpp_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1576,7 +1576,7 @@ Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,7 +1628,7 @@ Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_cpt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,7 +1682,7 @@ Test 034 fv3_ccpp_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 035 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 036 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 037 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,7 +1978,7 @@ Test 038 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/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 @@ -2114,7 +2114,7 @@ Test 040 fv3_ccpp_gfs_v16beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2182,7 +2182,7 @@ Test 041 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 042 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2250,7 +2250,7 @@ Test 042 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gocart_clm_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2298,7 +2298,7 @@ Test 043 fv3_ccpp_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2366,7 +2366,7 @@ Test 044 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2434,7 +2434,7 @@ Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2452,7 +2452,7 @@ Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfs_v16beta_debug_prod Checking test 047 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2520,7 +2520,7 @@ Test 047 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2588,7 +2588,7 @@ Test 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2656,7 +2656,7 @@ Test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gsd_debug_prod Checking test 050 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2724,7 +2724,7 @@ Test 050 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gsd_diag3d_debug_prod Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2792,7 +2792,7 @@ Test 051 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_thompson_debug_prod Checking test 052 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2860,7 +2860,7 @@ Test 052 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_thompson_no_aero_debug_prod Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2928,7 +2928,7 @@ Test 053 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2996,7 +2996,7 @@ Test 054 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3064,7 +3064,7 @@ Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3082,5 +3082,5 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 7 09:14:31 MST 2020 -Elapsed time: 00h:51m:20s. Have a nice day! +Thu Dec 10 10:28:41 MST 2020 +Elapsed time: 01h:12m:06s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index fa9f3eef93..8349138f11 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Sat Dec 5 12:50:41 EST 2020 +Thu Dec 10 10:05:34 EST 2020 Start Regression test baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/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-20201204/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_decomp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/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-20201204/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_2threads_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/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-20201204/INTEL/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/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-20201204/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_read_inc_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/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-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/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-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/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-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/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-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/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-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/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-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/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-20201204/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_stochy_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/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-20201204/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_lheatstrg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -747,7 +747,7 @@ Test 013 fv3_ccpp_lheatstrg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_multigases_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -821,7 +821,7 @@ Test 014 fv3_ccpp_multigases PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_control_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -889,7 +889,7 @@ Test 015 fv3_ccpp_control_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_stretched_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -945,7 +945,7 @@ Test 016 fv3_ccpp_stretched PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_stretched_nest_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,7 +1012,7 @@ Test 017 fv3_ccpp_stretched_nest PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_regional_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1023,7 +1023,7 @@ Test 018 fv3_ccpp_regional_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_regional_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1032,7 +1032,7 @@ Test 019 fv3_ccpp_regional_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_regional_quilt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1043,7 +1043,7 @@ Test 020 fv3_ccpp_regional_quilt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 021 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1054,7 +1054,7 @@ Test 021 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_regional_c768_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_regional_c768_prod Checking test 022 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1065,7 +1065,7 @@ Test 022 fv3_ccpp_regional_c768 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_control_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1095,7 +1095,7 @@ Test 023 fv3_ccpp_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_stretched_nest_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1115,7 +1115,7 @@ Test 024 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfdlmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1163,7 +1163,7 @@ Test 025 fv3_ccpp_gfdlmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1211,7 +1211,7 @@ Test 026 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1259,7 +1259,7 @@ Test 027 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_csawmg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1307,7 +1307,7 @@ Test 028 fv3_ccpp_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_satmedmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,7 +1355,7 @@ Test 029 fv3_ccpp_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_satmedmfq_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1403,7 +1403,7 @@ Test 030 fv3_ccpp_satmedmfq PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1451,7 +1451,7 @@ Test 031 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_cpt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1505,7 +1505,7 @@ Test 032 fv3_ccpp_cpt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gsd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1597,7 +1597,7 @@ Test 033 fv3_ccpp_gsd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1665,7 +1665,7 @@ Test 034 fv3_ccpp_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_thompson_no_aero_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1733,7 +1733,7 @@ Test 035 fv3_ccpp_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_rrfs_v1beta_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1801,7 +1801,7 @@ Test 036 fv3_ccpp_rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gocart_clm_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gocart_clm_prod Checking test 037 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1849,7 +1849,7 @@ Test 037 fv3_ccpp_gocart_clm PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gfs_v16beta_flake_prod Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1917,7 +1917,7 @@ Test 038 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1985,7 +1985,7 @@ Test 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2003,7 +2003,7 @@ Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gsd_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2071,7 +2071,7 @@ Test 041 fv3_ccpp_gsd_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2139,7 +2139,7 @@ Test 042 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2207,7 +2207,7 @@ Test 043 fv3_ccpp_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2275,7 +2275,7 @@ Test 044 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2343,7 +2343,7 @@ Test 045 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2411,7 +2411,7 @@ Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2429,5 +2429,5 @@ Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sat Dec 5 13:21:17 EST 2020 -Elapsed time: 00h:30m:37s. Have a nice day! +Thu Dec 10 11:04:11 EST 2020 +Elapsed time: 00h:37m:01s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 3993e7b6cd..1a3f402263 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Fri Dec 4 18:53:23 UTC 2020 +Fri Dec 11 15:17:57 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/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-20201204/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/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-20201204/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/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 @@ -187,7 +187,7 @@ Test 003 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -255,7 +255,7 @@ Test 004 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -323,7 +323,7 @@ Test 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -391,7 +391,7 @@ Test 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gsd_prod Checking test 007 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -483,7 +483,7 @@ Test 007 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_thompson_prod Checking test 008 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -551,7 +551,7 @@ Test 008 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_thompson_no_aero_prod Checking test 009 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -619,7 +619,7 @@ Test 009 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_rrfs_v1beta_prod Checking test 010 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -687,7 +687,7 @@ Test 010 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -755,7 +755,7 @@ Test 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -773,7 +773,7 @@ Test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_control_debug_prod Checking test 013 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -803,7 +803,7 @@ Test 013 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gfs_v15p2_debug_prod Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -871,7 +871,7 @@ Test 014 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gfs_v16beta_debug_prod Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -939,7 +939,7 @@ Test 015 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1075,7 +1075,7 @@ Test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1149,7 +1149,7 @@ Test 018 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1217,7 +1217,7 @@ Test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1235,5 +1235,5 @@ Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 4 19:54:47 UTC 2020 -Elapsed time: 01h:01m:24s. Have a nice day! +Fri Dec 11 17:05:05 UTC 2020 +Elapsed time: 01h:47m:08s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 9a05a4347e..6dc15ff577 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,8 @@ -Fri Dec 4 20:05:11 UTC 2020 -Start Regression test - +Fri Dec 10 14:23:32 UTC 2020 +Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +70,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +138,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +206,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +274,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +342,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +390,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +438,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +486,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +534,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +582,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +630,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +698,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +766,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +834,7 @@ Test 014 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_lndp_prod Checking test 015 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +902,7 @@ Test 015 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +950,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +999,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +1048,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +1097,7 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +1171,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +1239,7 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +1295,7 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +1362,7 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +1373,7 @@ Test 024 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 +1382,7 @@ Test 025 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1394,7 +1393,7 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 ............ALT CHECK......OK @@ -1405,7 +1404,7 @@ Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_regional_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_regional_c768_prod Checking test 028 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1416,7 +1415,7 @@ Test 028 fv3_ccpp_regional_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_control_debug_prod Checking test 029 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1446,7 +1445,7 @@ Test 029 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_stretched_nest_debug_prod Checking test 030 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1466,7 +1465,7 @@ Test 030 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfdlmp_prod Checking test 031 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1514,7 +1513,7 @@ Test 031 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfdlmprad_gwd_prod Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1562,7 +1561,7 @@ Test 032 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1610,7 +1609,7 @@ Test 033 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_csawmg_prod Checking test 034 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1658,7 +1657,7 @@ Test 034 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_satmedmf_prod Checking test 035 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1706,7 +1705,7 @@ Test 035 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_satmedmfq_prod Checking test 036 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1754,7 +1753,7 @@ Test 036 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfdlmp_32bit_prod Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1802,7 +1801,7 @@ Test 037 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1854,7 +1853,7 @@ Test 038 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_cpt_prod Checking test 039 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1908,7 +1907,7 @@ Test 039 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gsd_prod Checking test 040 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2000,7 +1999,7 @@ Test 040 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_rap_prod Checking test 041 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2068,7 +2067,7 @@ Test 041 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_hrrr_prod Checking test 042 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2136,7 +2135,7 @@ Test 042 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_thompson_prod Checking test 043 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2204,7 +2203,7 @@ Test 043 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_thompson_no_aero_prod Checking test 044 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2272,7 +2271,7 @@ Test 044 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_rrfs_v1beta_prod Checking test 045 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2340,7 +2339,7 @@ Test 045 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfs_v15p2_prod Checking test 046 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2408,7 +2407,7 @@ Test 046 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfs_v16beta_prod Checking test 047 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2476,7 +2475,7 @@ Test 047 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -2544,7 +2543,7 @@ Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -2612,7 +2611,7 @@ Test 049 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -2660,7 +2659,7 @@ Test 050 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -2708,7 +2707,7 @@ Test 051 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -2756,7 +2755,7 @@ Test 052 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -2824,7 +2823,7 @@ Test 053 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -2892,7 +2891,7 @@ Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -2910,7 +2909,7 @@ Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -2978,7 +2977,7 @@ Test 056 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -3046,7 +3045,7 @@ Test 057 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -3114,7 +3113,7 @@ Test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -3182,7 +3181,7 @@ Test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -3250,7 +3249,7 @@ Test 060 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -3318,7 +3317,7 @@ Test 061 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -3386,7 +3385,7 @@ Test 062 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -3454,7 +3453,7 @@ Test 063 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -3522,7 +3521,7 @@ Test 064 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -3590,7 +3589,7 @@ Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/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 @@ -3608,7 +3607,7 @@ Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_control_prod Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3661,7 +3660,7 @@ Test 067 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_2threads_prod Checking test 068 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3714,7 +3713,7 @@ Test 068 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_decomp_prod Checking test 069 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3767,7 +3766,7 @@ Test 069 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_satmedmf_prod Checking test 070 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3820,7 +3819,7 @@ Test 070 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_ca_prod Checking test 071 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3873,7 +3872,7 @@ Test 071 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_mx025_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_control_mx025_prod Checking test 072 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3929,7 +3928,7 @@ Test 072 cpld_control_mx025 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_mx025_12h_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_control_mx025_12h_prod Checking test 073 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3985,7 +3984,7 @@ Test 073 cpld_control_mx025_12h PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_restart_mx025_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_restart_mx025_prod Checking test 074 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4041,7 +4040,7 @@ Test 074 cpld_restart_mx025 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_control_c192_prod Checking test 075 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4094,7 +4093,7 @@ Test 075 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_control_c384_prod Checking test 076 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4150,7 +4149,7 @@ Test 076 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_controlfrac_c384_prod Checking test 077 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4206,7 +4205,7 @@ Test 077 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_bmark_prod Checking test 078 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4262,7 +4261,7 @@ Test 078 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_bmark_wave_prod Checking test 079 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4321,7 +4320,7 @@ Test 079 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_debug_prod Checking test 080 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4374,7 +4373,7 @@ Test 080 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/datm_control_cfsr_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/datm_control_cfsr_prod Checking test 081 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4383,7 +4382,7 @@ Test 081 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/datm_control_gefs_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/datm_control_gefs_prod Checking test 082 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4392,7 +4391,7 @@ Test 082 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/datm_mx025_cfsr_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/datm_mx025_cfsr_prod Checking test 083 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4404,7 +4403,7 @@ Test 083 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/datm_mx025_gefs_prod +working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/datm_mx025_gefs_prod Checking test 084 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4416,5 +4415,5 @@ Test 084 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 4 21:42:30 UTC 2020 -Elapsed time: 01h:37m:19s. Have a nice day! +Fri Dec 10 18:21:40 UTC 2020 +Elapsed time: 03h:58m:08s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 13ae2d00ff..56cbf49112 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Sat Dec 5 17:50:59 GMT 2020 +Thu Dec 10 18:19:51 GMT 2020 Start Regression test baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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-20201204/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_decomp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_2threads_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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-20201204/INTEL/fv3_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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-20201204/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_read_inc_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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 .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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-20201204/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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-20201204/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_iau_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_lheatstrg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,7 +815,7 @@ Test 014 fv3_ccpp_lheatstrg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_multigases_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -889,7 +889,7 @@ Test 015 fv3_ccpp_multigases PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_control_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -957,7 +957,7 @@ Test 016 fv3_ccpp_control_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_stretched_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1013,7 +1013,7 @@ Test 017 fv3_ccpp_stretched PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_stretched_nest_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,7 +1080,7 @@ Test 018 fv3_ccpp_stretched_nest PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1091,7 +1091,7 @@ Test 019 fv3_ccpp_regional_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1100,7 +1100,7 @@ Test 020 fv3_ccpp_regional_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_quilt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1111,18 +1111,18 @@ Test 021 fv3_ccpp_regional_quilt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 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 ............ALT CHECK......OK Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_c768_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_regional_c768_prod Checking test 023 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1133,7 +1133,7 @@ Test 023 fv3_ccpp_regional_c768 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_control_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1163,7 +1163,7 @@ Test 024 fv3_ccpp_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_stretched_nest_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1183,7 +1183,7 @@ Test 025 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfdlmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1231,7 +1231,7 @@ Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,7 +1279,7 @@ Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1327,7 +1327,7 @@ Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,7 +1375,7 @@ Test 029 fv3_ccpp_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_satmedmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1423,7 +1423,7 @@ Test 030 fv3_ccpp_satmedmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_satmedmfq_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1471,7 +1471,7 @@ Test 031 fv3_ccpp_satmedmfq PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1519,7 +1519,7 @@ Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_cpt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1573,7 +1573,7 @@ Test 033 fv3_ccpp_cpt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gsd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1665,7 +1665,7 @@ Test 034 fv3_ccpp_gsd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1733,7 +1733,7 @@ Test 035 fv3_ccpp_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_thompson_no_aero_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1801,7 +1801,7 @@ Test 036 fv3_ccpp_thompson_no_aero PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gocart_clm_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gocart_clm_prod Checking test 037 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1849,7 +1849,7 @@ Test 037 fv3_ccpp_gocart_clm PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gfs_v16beta_flake_prod Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1917,7 +1917,7 @@ Test 038 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1985,7 +1985,7 @@ Test 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2003,7 +2003,7 @@ Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gsd_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2071,7 +2071,7 @@ Test 041 fv3_ccpp_gsd_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2139,7 +2139,7 @@ Test 042 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2207,7 +2207,7 @@ Test 043 fv3_ccpp_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2275,7 +2275,7 @@ Test 044 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2343,7 +2343,7 @@ Test 045 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2411,7 +2411,7 @@ Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2429,5 +2429,5 @@ Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sat Dec 5 19:28:03 GMT 2020 -Elapsed time: 01h:37m:05s. Have a nice day! +Thu Dec 10 20:16:52 GMT 2020 +Elapsed time: 01h:57m:01s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 61eac226dc..4359d9a8d9 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Fri Dec 4 14:19:40 CST 2020 +Thu Dec 10 08:46:32 CST 2020 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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-20201204/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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-20201204/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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-20201204/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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-20201204/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 ............ALT CHECK......OK + Comparing phyf000.nc .........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-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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-20201204/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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-20201204/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,56 +884,56 @@ Test 015 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav 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.nemsio .........OK - Comparing phyf024.nemsio .........OK + Comparing phyf024.nemsio ............MISSING file 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 + Comparing dynf024.nemsio ............MISSING file + Comparing RESTART/coupler.res ............MISSING file + Comparing RESTART/fv_core.res.nc ............MISSING file + Comparing RESTART/fv_core.res.tile1.nc ............MISSING file + Comparing RESTART/fv_core.res.tile2.nc ............MISSING file + Comparing RESTART/fv_core.res.tile3.nc ............MISSING file + Comparing RESTART/fv_core.res.tile4.nc ............MISSING file + Comparing RESTART/fv_core.res.tile5.nc ............MISSING file + Comparing RESTART/fv_core.res.tile6.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile1.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile2.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile3.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile4.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile5.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile6.nc ............MISSING file + Comparing RESTART/sfc_data.tile1.nc ............MISSING file + Comparing RESTART/sfc_data.tile2.nc ............MISSING file + Comparing RESTART/sfc_data.tile3.nc ............MISSING file + Comparing RESTART/sfc_data.tile4.nc ............MISSING file + Comparing RESTART/sfc_data.tile5.nc ............MISSING file + Comparing RESTART/sfc_data.tile6.nc ............MISSING file + Comparing RESTART/phy_data.tile1.nc ............MISSING file + Comparing RESTART/phy_data.tile2.nc ............MISSING file + Comparing RESTART/phy_data.tile3.nc ............MISSING file + Comparing RESTART/phy_data.tile4.nc ............MISSING file + Comparing RESTART/phy_data.tile5.nc ............MISSING file + Comparing RESTART/phy_data.tile6.nc ............MISSING file Comparing out_grd.glo_30m .........OK -Test 016 fv3_ccpp_gfdlmprad_atmwav PASS +Test 016 fv3_ccpp_gfdlmprad_atmwav FAIL baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1056,7 +1056,7 @@ Test 018 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,7 +1124,7 @@ Test 019 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1180,7 +1180,7 @@ Test 020 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,7 +1247,7 @@ Test 021 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1258,7 +1258,7 @@ Test 022 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1267,7 +1267,7 @@ Test 023 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1278,7 +1278,7 @@ Test 024 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1289,7 +1289,7 @@ Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_c768_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1300,7 +1300,7 @@ Test 026 fv3_ccpp_regional_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1330,7 +1330,7 @@ Test 027 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -1350,7 +1350,7 @@ Test 028 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1398,7 +1398,7 @@ Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -1446,7 +1446,7 @@ Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -1494,7 +1494,7 @@ Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1542,7 +1542,7 @@ Test 032 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1590,7 +1590,7 @@ Test 033 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1638,7 +1638,7 @@ Test 034 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1690,7 +1690,7 @@ Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1744,7 +1744,7 @@ Test 036 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1836,7 +1836,7 @@ Test 037 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1904,7 +1904,7 @@ Test 038 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1972,7 +1972,7 @@ Test 039 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2040,7 +2040,7 @@ Test 040 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfs_v15p2_prod Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2108,7 +2108,7 @@ Test 041 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v16beta_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfs_v16beta_prod Checking test 042 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2176,7 +2176,7 @@ Test 042 fv3_ccpp_gfs_v16beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -2244,7 +2244,7 @@ Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -2312,7 +2312,7 @@ Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -2360,7 +2360,7 @@ Test 045 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -2408,7 +2408,7 @@ Test 046 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -2456,7 +2456,7 @@ Test 047 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -2524,7 +2524,7 @@ Test 048 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -2592,7 +2592,7 @@ Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -2610,7 +2610,7 @@ Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -2678,7 +2678,7 @@ Test 051 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -2746,7 +2746,7 @@ Test 052 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -2814,7 +2814,7 @@ Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -2882,7 +2882,7 @@ Test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -2950,7 +2950,7 @@ Test 055 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -3018,7 +3018,7 @@ Test 056 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -3086,7 +3086,7 @@ Test 057 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -3154,7 +3154,7 @@ Test 058 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -3222,7 +3222,7 @@ Test 059 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -3290,7 +3290,7 @@ Test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/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 @@ -3308,7 +3308,7 @@ Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_control_prod Checking test 062 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3361,7 +3361,7 @@ Test 062 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_2threads_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_2threads_prod Checking test 063 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3414,7 +3414,7 @@ Test 063 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_decomp_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_decomp_prod Checking test 064 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3467,7 +3467,7 @@ Test 064 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_satmedmf_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_satmedmf_prod Checking test 065 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3520,7 +3520,7 @@ Test 065 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_ca_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_ca_prod Checking test 066 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3573,7 +3573,7 @@ Test 066 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_mx025_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_control_mx025_prod Checking test 067 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3629,7 +3629,7 @@ Test 067 cpld_control_mx025 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_mx025_12h_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_control_mx025_12h_prod Checking test 068 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3685,7 +3685,7 @@ Test 068 cpld_control_mx025_12h PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_restart_mx025_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_restart_mx025_prod Checking test 069 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3741,7 +3741,7 @@ Test 069 cpld_restart_mx025 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_c192_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_control_c192_prod Checking test 070 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3794,7 +3794,7 @@ Test 070 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_c384_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_control_c384_prod Checking test 071 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3850,7 +3850,7 @@ Test 071 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_controlfrac_c384_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_controlfrac_c384_prod Checking test 072 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3906,7 +3906,7 @@ Test 072 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_bmark_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_bmark_prod Checking test 073 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3962,66 +3962,66 @@ Test 073 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_bmark_wave_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_bmark_wave_prod Checking test 074 cpld_bmark_wave results .... - 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 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 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........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/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.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 074 cpld_bmark_wave PASS + Comparing phyf024.tile1.nc ............MISSING file + Comparing phyf024.tile2.nc ............MISSING file + Comparing phyf024.tile3.nc ............MISSING file + Comparing phyf024.tile4.nc ............MISSING file + Comparing phyf024.tile5.nc ............MISSING file + Comparing phyf024.tile6.nc ............MISSING file + Comparing dynf024.tile1.nc ............MISSING file + Comparing dynf024.tile2.nc ............MISSING file + Comparing dynf024.tile3.nc ............MISSING file + Comparing dynf024.tile4.nc ............MISSING file + Comparing dynf024.tile5.nc ............MISSING file + Comparing dynf024.tile6.nc ............MISSING file + Comparing 20130402.000000.out_grd.gwes_30m ............MISSING file + Comparing 20130402.000000.out_pnt.points ............MISSING file + Comparing 20130402.000000.restart.gwes_30m ............MISSING file + Comparing RESTART/coupler.res ............MISSING file + Comparing RESTART/fv_core.res.nc ............MISSING file + Comparing RESTART/fv_core.res.tile1.nc ............MISSING file + Comparing RESTART/fv_core.res.tile2.nc ............MISSING file + Comparing RESTART/fv_core.res.tile3.nc ............MISSING file + Comparing RESTART/fv_core.res.tile4.nc ............MISSING file + Comparing RESTART/fv_core.res.tile5.nc ............MISSING file + Comparing RESTART/fv_core.res.tile6.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile1.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile2.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile3.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile4.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile5.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile6.nc ............MISSING file + Comparing RESTART/phy_data.tile1.nc ............MISSING file + Comparing RESTART/phy_data.tile2.nc ............MISSING file + Comparing RESTART/phy_data.tile3.nc ............MISSING file + Comparing RESTART/phy_data.tile4.nc ............MISSING file + Comparing RESTART/phy_data.tile5.nc ............MISSING file + Comparing RESTART/phy_data.tile6.nc ............MISSING file + Comparing RESTART/sfc_data.tile1.nc ............MISSING file + Comparing RESTART/sfc_data.tile2.nc ............MISSING file + Comparing RESTART/sfc_data.tile3.nc ............MISSING file + Comparing RESTART/sfc_data.tile4.nc ............MISSING file + Comparing RESTART/sfc_data.tile5.nc ............MISSING file + Comparing RESTART/sfc_data.tile6.nc ............MISSING file + Comparing RESTART/MOM.res.nc ............MISSING file + Comparing RESTART/MOM.res_1.nc ............MISSING file + Comparing RESTART/MOM.res_2.nc ............MISSING file + Comparing RESTART/MOM.res_3.nc ............MISSING file + Comparing RESTART/iced.2013-04-02-00000.nc ............MISSING file + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc ............MISSING file +Test 074 cpld_bmark_wave FAIL baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_debug_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_debug_prod Checking test 075 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4074,7 +4074,7 @@ Test 075 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/datm_control_cfsr_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/datm_control_cfsr_prod Checking test 076 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4083,7 +4083,7 @@ Test 076 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/datm_control_gefs_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/datm_control_gefs_prod Checking test 077 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4092,7 +4092,7 @@ Test 077 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/datm_mx025_cfsr_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/datm_mx025_cfsr_prod Checking test 078 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4104,7 +4104,7 @@ Test 078 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/datm_mx025_gefs_prod +working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/datm_mx025_gefs_prod Checking test 079 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4114,7 +4114,12 @@ Checking test 079 datm_mx025_gefs results .... Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK Test 079 datm_mx025_gefs PASS +FAILED TESTS: +Test fv3_ccpp_gfdlmprad_atmwav 016 failed in check_result failed +Test fv3_ccpp_gfdlmprad_atmwav 016 failed in run_test failed +Test cpld_bmark_wave 074 failed in check_result failed +Test cpld_bmark_wave 074 failed in run_test failed -REGRESSION TEST WAS SUCCESSFUL -Fri Dec 4 15:11:25 CST 2020 -Elapsed time: 00h:51m:45s. Have a nice day! +REGRESSION TEST FAILED +Thu Dec 10 10:11:29 CST 2020 +Elapsed time: 01h:24m:58s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 7f27ff0bd6..48d7c70455 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Fri Dec 4 20:14:46 UTC 2020 +Fri Dec 11 13:56:59 UTC 2020 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/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-20201204/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/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-20201204/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/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-20201204/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/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-20201204/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/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-20201204/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/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-20201204/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/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-20201204/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/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-20201204/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/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-20201204/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/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-20201204/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/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-20201204/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/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-20201204/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,7 +815,7 @@ Test 014 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -889,7 +889,7 @@ Test 015 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -957,7 +957,7 @@ Test 016 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1013,7 +1013,7 @@ Test 017 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,7 +1080,7 @@ Test 018 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1091,7 +1091,7 @@ Test 019 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1100,7 +1100,7 @@ Test 020 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1111,7 +1111,7 @@ Test 021 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1122,7 +1122,7 @@ Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1152,7 +1152,7 @@ Test 023 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1172,7 +1172,7 @@ Test 024 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1220,7 +1220,7 @@ Test 025 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1268,7 +1268,7 @@ Test 026 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1316,7 +1316,7 @@ Test 027 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1364,7 +1364,7 @@ Test 028 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1412,7 +1412,7 @@ Test 029 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1460,7 +1460,7 @@ Test 030 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1508,7 +1508,7 @@ Test 031 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1560,7 +1560,7 @@ Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1614,7 +1614,7 @@ Test 033 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1706,7 +1706,7 @@ Test 034 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 035 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 036 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_rrfs_v1beta_prod Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 037 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gfsv16_csawmg_prod Checking test 038 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1958,7 +1958,7 @@ Test 038 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gfsv16_csawmgt_prod Checking test 039 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2006,7 +2006,7 @@ Test 039 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gocart_clm_prod Checking test 040 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2054,7 +2054,7 @@ Test 040 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gfs_v16beta_flake_prod Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2122,7 +2122,7 @@ Test 041 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2190,7 +2190,7 @@ Test 042 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2208,7 +2208,7 @@ Test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gsd_debug_prod Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2276,7 +2276,7 @@ Test 044 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gsd_diag3d_debug_prod Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2344,7 +2344,7 @@ Test 045 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_thompson_debug_prod Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2412,7 +2412,7 @@ Test 046 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_thompson_no_aero_debug_prod Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2480,7 +2480,7 @@ Test 047 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2548,7 +2548,7 @@ Test 048 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2616,7 +2616,7 @@ Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2634,5 +2634,5 @@ Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 4 20:48:31 UTC 2020 -Elapsed time: 00h:33m:45s. Have a nice day! +Fri Dec 11 14:31:45 UTC 2020 +Elapsed time: 00h:34m:46s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 43609c2369..808e7c33dc 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Sat Dec 5 12:53:11 UTC 2020 +Thu Dec 10 14:32:41 UTC 2020 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/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-20201204/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/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-20201204/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/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-20201204/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/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-20201204/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/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-20201204/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/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-20201204/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/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-20201204/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/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-20201204/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/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-20201204/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/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-20201204/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/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-20201204/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,7 +815,7 @@ Test 014 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -864,7 +864,7 @@ Test 015 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -913,7 +913,7 @@ Test 016 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -987,7 +987,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/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 @@ -1055,7 +1055,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1111,7 +1111,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/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 @@ -1178,7 +1178,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1189,7 +1189,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1198,7 +1198,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1209,7 +1209,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/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 @@ -1220,7 +1220,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_regional_c768_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_regional_c768_prod Checking test 025 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1231,7 +1231,7 @@ Test 025 fv3_ccpp_regional_c768 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_control_debug_prod Checking test 026 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1261,7 +1261,7 @@ Test 026 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_stretched_nest_debug_prod Checking test 027 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1281,7 +1281,7 @@ Test 027 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,7 +1329,7 @@ Test 028 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1377,7 +1377,7 @@ Test 029 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1425,7 +1425,7 @@ Test 030 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1473,7 +1473,7 @@ Test 031 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1521,7 +1521,7 @@ Test 032 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1569,7 +1569,7 @@ Test 033 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1617,7 +1617,7 @@ Test 034 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1669,7 +1669,7 @@ Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1723,7 +1723,7 @@ Test 036 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1815,7 +1815,7 @@ Test 037 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1883,7 +1883,7 @@ Test 038 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1951,7 +1951,7 @@ Test 039 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2019,7 +2019,7 @@ Test 040 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2067,7 +2067,7 @@ Test 041 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2115,7 +2115,7 @@ Test 042 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2163,7 +2163,7 @@ Test 043 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2231,7 +2231,7 @@ Test 044 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2299,7 +2299,7 @@ Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2317,7 +2317,7 @@ Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2385,7 +2385,7 @@ Test 047 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2453,7 +2453,7 @@ Test 048 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2521,7 +2521,7 @@ Test 049 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2589,7 +2589,7 @@ Test 050 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2657,7 +2657,7 @@ Test 051 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2725,7 +2725,7 @@ Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2743,7 +2743,7 @@ Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_control_prod Checking test 054 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2796,7 +2796,7 @@ Test 054 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_2threads_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_2threads_prod Checking test 055 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2849,7 +2849,7 @@ Test 055 cpld_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_decomp_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_decomp_prod Checking test 056 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2902,7 +2902,7 @@ Test 056 cpld_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_satmedmf_prod Checking test 057 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2955,7 +2955,7 @@ Test 057 cpld_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_ca_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_ca_prod Checking test 058 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3008,7 +3008,7 @@ Test 058 cpld_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_mx025_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_control_mx025_prod Checking test 059 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3064,7 +3064,7 @@ Test 059 cpld_control_mx025 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_mx025_12h_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_control_mx025_12h_prod Checking test 060 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3120,7 +3120,7 @@ Test 060 cpld_control_mx025_12h PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_restart_mx025_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_restart_mx025_prod Checking test 061 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3176,7 +3176,7 @@ Test 061 cpld_restart_mx025 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_c192_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_control_c192_prod Checking test 062 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3229,7 +3229,7 @@ Test 062 cpld_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_c384_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_control_c384_prod Checking test 063 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3285,7 +3285,7 @@ Test 063 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_controlfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_controlfrac_c384_prod Checking test 064 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3341,7 +3341,7 @@ Test 064 cpld_controlfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_bmark_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_bmark_prod Checking test 065 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3397,7 +3397,7 @@ Test 065 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_bmark_wave_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_bmark_wave_prod Checking test 066 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3456,7 +3456,7 @@ Test 066 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_debug_prod +working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_debug_prod Checking test 067 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3509,5 +3509,5 @@ Test 067 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sat Dec 5 14:57:47 UTC 2020 -Elapsed time: 02h:04m:38s. Have a nice day! +Thu Dec 10 16:22:52 UTC 2020 +Elapsed time: 01h:50m:14s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index 8d64b33394..4e77b4d6d1 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -56,6 +56,9 @@ set +x if [[ $MACHINE_ID == macosx.* ]] || [[ $MACHINE_ID == linux.* ]]; then source $PATHTR/modulefiles/${MACHINE_ID}/fv3 else + if [[ $MACHINE_ID == wcoss2 ]]; then + source /apps/prod/lmodules/startLmod + fi # Activate lua environment for gaea if [[ $MACHINE_ID == gaea.* ]] ; then source /lustre/f2/pdata/esrl/gsd/contrib/lua-5.1.4.9/init/init_lmod.sh diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 1e7a4c4632..94a1ef9464 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -7,14 +7,14 @@ # ############################################################################### -if [ $MACHINE_ID = wcoss_cray ]; then +if [[ $MACHINE_ID = wcoss_cray ]]; then TASKS_dflt=150 ; TPN_dflt=24 ; INPES_dflt=3 ; JNPES_dflt=8 TASKS_thrd=84 ; TPN_thrd=12 ; INPES_thrd=3 ; JNPES_thrd=4 TASKS_stretch=48 ; TPN_stretch=24 ; INPES_stretch=2 ; JNPES_stretch=4 TASKS_strnest=96 ; TPN_strnest=24 ; INPES_strnest=2 ; JNPES_strnest=4 -elif [ $MACHINE_ID = wcoss_dell_p3 ]; then +elif [[ $MACHINE_ID = wcoss_dell_p3 || $MACHINE_ID = wcoss2 ]]; then TASKS_dflt=150 ; TPN_dflt=28 ; INPES_dflt=3 ; JNPES_dflt=8 TASKS_thrd=84 ; TPN_thrd=14 ; INPES_thrd=3 ; JNPES_thrd=4 diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 8877530d7b..c4bea08a2e 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -27,6 +27,9 @@ case $(hostname -f) in m72a2.ncep.noaa.gov) MACHINE_ID=wcoss_dell_p3 ;; ### mars m72a3.ncep.noaa.gov) MACHINE_ID=wcoss_dell_p3 ;; ### mars + alogin01) MACHINE_ID=wcoss2 ;; ### acorn + alogin02) MACHINE_ID=wcoss2 ;; ### acorn + gaea9) MACHINE_ID=gaea ;; ### gaea9 gaea10) MACHINE_ID=gaea ;; ### gaea10 gaea11) MACHINE_ID=gaea ;; ### gaea11 diff --git a/tests/fv3_conf/compile_qsub.IN_wcoss2 b/tests/fv3_conf/compile_qsub.IN_wcoss2 new file mode 100644 index 0000000000..ee2b789758 --- /dev/null +++ b/tests/fv3_conf/compile_qsub.IN_wcoss2 @@ -0,0 +1,20 @@ +#!/bin/bash + +#PBS -o out +#PBS -e err +#PBS -N @[JBNME] +# #PBS -A @[ACCNR] +#PBS -q @[QUEUE] +#PBS -l select=1:ncpus=8:mpiprocs=1 +#PBS -l walltime=00:30:00 + +set -eux + +cd $PBS_O_WORKDIR +export CRAY_CONFIG_DIR=$HOME + +echo "Compile started: " `date` + +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] + +echo "Compile ended: " `date` diff --git a/tests/fv3_conf/fv3_qsub.IN_wcoss2 b/tests/fv3_conf/fv3_qsub.IN_wcoss2 new file mode 100644 index 0000000000..d000b7e493 --- /dev/null +++ b/tests/fv3_conf/fv3_qsub.IN_wcoss2 @@ -0,0 +1,32 @@ +#!/bin/bash + +#PBS -o out +#PBS -e err +#PBS -N @[JBNME] +# #PBS -A @[ACCNR] +#PBS -q @[QUEUE] +#PBS -l place=vscatter,select=@[NODES]:ncpus=@[TPN]:mpiprocs=@[TPN] +#PBS -l walltime=00:@[WLCLK]:00 + +set -eux + +cd $PBS_O_WORKDIR +export CRAY_CONFIG_DIR=$HOME + +source /apps/prod/lmodules/startLmod +module use $( pwd -P ) +module load modules.fv3 +module list + +echo "Model started: " `date` + +export MPI_TYPE_DEPTH=20 +export OMP_STACKSIZE=512M +export OMP_NUM_THREADS=@[THRD] +export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 + +cray aprun -n @[TASKS] ./fv3.exe + +echo "Model ended: " `date` + +exit diff --git a/tests/rt.sh b/tests/rt.sh index 1bb2eff817..3379c2a914 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -173,6 +173,33 @@ elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then cp fv3_conf/fv3_bsub.IN_wcoss_dell_p3 fv3_conf/fv3_bsub.IN cp fv3_conf/compile_bsub.IN_wcoss_dell_p3 fv3_conf/compile_bsub.IN +elif [[ $MACHINE_ID = wcoss2 ]]; then + + source /apps/prod/lmodules/startLmod + + #module use /usrx/local/dev/emc_rocoto/modulefiles + #module load ruby/2.5.1 rocoto/1.3.0rc2 + #ROCOTORUN=$(which rocotorun) + #ROCOTOSTAT=$(which rocotostat) + #ROCOTOCOMPLETE=$(which rocotocomplete) + #ROCOTO_SCHEDULER=lsf + + #module load ips/18.0.1.163 + #module load ecflow/4.7.1 + #ECFLOW_START=${ECF_ROOT}/intel/bin/ecflow_start.sh + #ECF_PORT=$(grep $USER /usrx/local/sys/ecflow/assigned_ports.txt | awk '{print $2}') + + DISKNM=/lfs/h1/emc/ptmp/Dusan.Jovic/RT + QUEUE=workq + COMPILE_QUEUE=workq + PARTITION= + ACCNR=GFS-DEV + STMP=/lfs/h1/emc/stmp + PTMP=/lfs/h1/emc/ptmp + SCHEDULER=pbs + cp fv3_conf/fv3_qsub.IN_wcoss2 fv3_conf/fv3_qsub.IN + cp fv3_conf/compile_qsub.IN_wcoss2 fv3_conf/compile_qsub.IN + elif [[ $MACHINE_ID = gaea.* ]]; then module load cray-python/3.7.3.2 @@ -451,6 +478,10 @@ if [[ $ROCOTO == true ]]; then QUEUE=dev COMPILE_QUEUE=dev_transfer ROCOTO_SCHEDULER=lsf + elif [[ $MACHINE_ID = wcoss2 ]]; then + QUEUE=workq + COMPILE_QUEUE=workq + ROCOTO_SCHEDULER=pbs elif [[ $MACHINE_ID = hera.* ]]; then QUEUE=batch COMPILE_QUEUE=batch @@ -512,6 +543,8 @@ EOF QUEUE=dev elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then QUEUE=dev + elif [[ $MACHINE_ID = wcoss2 ]]; then + QUEUE=workq elif [[ $MACHINE_ID = hera.* ]]; then QUEUE=batch elif [[ $MACHINE_ID = orion.* ]]; then diff --git a/tests/rt_acorn.conf b/tests/rt_acorn.conf new file mode 100644 index 0000000000..a5df552904 --- /dev/null +++ b/tests/rt_acorn.conf @@ -0,0 +1,52 @@ +####################################################################################################################################################################################### +# CCPP PROD tests # +####################################################################################################################################################################################### + +COMPILE | CCPP=Y 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 | CCPP=Y 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 | CCPP=Y 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 | CCPP=Y 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 | CCPP=Y 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 | CCPP=Y 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 | | | From b6d13d74dc43cb464eb6995f9d98b4ee1303265f Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Mon, 14 Dec 2020 18:29:53 -0700 Subject: [PATCH 039/109] Final-final GFS v16 updates / restart reproducibility bugfixes (#325) * Update .gitmodules and submodule pointer for fv3atm for code review and testing * Add GFS v16 beta restart test, update stochastics test * Update regression test baseline date tag to 20201214; skip-ci * tests/rt.conf: bugfix, add missing 'fv3' to new stochy tests; skip-ci * Regression test logs for gaea.intel, hera.gnu, hera.intel, jet.intel, orion.intel; skip-ci * Run GFS v16beta tests also on wcoss; regression test logs for wcoss; skip-ci * Regression test logs for cheyenne.intel and cheyenne.gnu * Revert change to .gitmodules and update submodule pointer for fv3atm --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 284 ++- tests/RegressionTests_cheyenne.intel.log | 430 ++-- tests/RegressionTests_gaea.intel.log | 194 +- tests/RegressionTests_hera.gnu.log | 284 ++- tests/RegressionTests_hera.intel.log | 625 +++--- tests/RegressionTests_jet.intel.log | 2497 +--------------------- tests/RegressionTests_orion.intel.log | 805 ++++--- tests/RegressionTests_wcoss_cray.log | 660 ++++-- tests/RegressionTests_wcoss_dell_p3.log | 792 +++++-- tests/fv3_conf/ccpp_gfs_v16_run.IN | 16 +- tests/parm/ccpp_v16beta_c96.nml.IN | 67 +- tests/rt.conf | 22 + tests/rt.sh | 4 +- tests/rt_gnu.conf | 2 + tests/tests/fv3_ccpp_gfs_v16beta | 18 + tests/tests/fv3_ccpp_gfs_v16beta_debug | 2 + tests/tests/fv3_ccpp_gfs_v16beta_restart | 75 + tests/tests/fv3_ccpp_gfs_v16beta_stochy | 93 + 19 files changed, 3091 insertions(+), 3781 deletions(-) create mode 100644 tests/tests/fv3_ccpp_gfs_v16beta_restart create mode 100644 tests/tests/fv3_ccpp_gfs_v16beta_stochy diff --git a/FV3 b/FV3 index babf6dc3e9..3aad3985f5 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit babf6dc3e904ea9fd4e9773bf792ada072e4a427 +Subproject commit 3aad3985f529e63c60e7167747e5a236c544be06 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index a35ad9db64..4904ff411a 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Thu Dec 10 08:55:06 MST 2020 +Sun Dec 13 08:17:26 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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-20201204/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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-20201204/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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 @@ -139,6 +139,12 @@ Checking test 003 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 @@ -151,6 +157,12 @@ Checking test 003 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 ............SKIP for gnu compilers Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -186,9 +198,127 @@ 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-20201204/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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 + 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 ............SKIP for gnu compilers + 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 004 fv3_ccpp_gfs_v16beta_restart PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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 + 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 ............SKIP for gnu compilers + 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 005 fv3_ccpp_gfs_v16beta_stochy PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -251,12 +381,12 @@ Checking test 004 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 004 fv3_ccpp_gfs_v16beta_flake PASS +Test 006 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -319,12 +449,12 @@ Checking test 005 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 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -387,12 +517,12 @@ Checking test 006 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 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 008 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gsd_prod -Checking test 007 fv3_ccpp_gsd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_gsd_prod +Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -479,12 +609,12 @@ Checking test 007 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 007 fv3_ccpp_gsd PASS +Test 009 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_thompson_prod -Checking test 008 fv3_ccpp_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_thompson_prod +Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -547,12 +677,12 @@ Checking test 008 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 008 fv3_ccpp_thompson PASS +Test 010 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_thompson_no_aero_prod -Checking test 009 fv3_ccpp_thompson_no_aero results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -615,12 +745,12 @@ Checking test 009 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 009 fv3_ccpp_thompson_no_aero PASS +Test 011 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_rrfs_v1beta_prod -Checking test 010 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -683,12 +813,12 @@ Checking test 010 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 010 fv3_ccpp_rrfs_v1beta PASS +Test 012 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -751,12 +881,12 @@ Checking test 011 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 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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 Comparing phyf012.nc .........OK @@ -769,12 +899,12 @@ Checking test 012 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 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_control_debug_prod -Checking test 013 fv3_ccpp_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_control_debug_prod +Checking test 015 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -799,12 +929,12 @@ Checking test 013 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 013 fv3_ccpp_control_debug PASS +Test 015 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -867,12 +997,12 @@ Checking test 014 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 014 fv3_ccpp_gfs_v15p2_debug PASS +Test 016 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -935,12 +1065,12 @@ Checking test 015 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 015 fv3_ccpp_gfs_v16beta_debug PASS +Test 017 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -1003,12 +1133,12 @@ Checking test 016 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 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -1071,12 +1201,12 @@ Checking test 017 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 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_multigases_prod -Checking test 018 fv3_ccpp_multigases results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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 @@ -1145,12 +1275,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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -1213,12 +1343,12 @@ Checking test 019 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 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_29505/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/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 Comparing phyf001.nc .........OK @@ -1231,9 +1361,9 @@ Checking test 020 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 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 10 09:13:38 MST 2020 -Elapsed time: 00h:18m:33s. Have a nice day! +Sun Dec 13 08:33:42 MST 2020 +Elapsed time: 00h:16m:17s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 0d3bbebaaf..789d93db81 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Thu Dec 10 09:16:35 MST 2020 +Sun Dec 13 19:36:47 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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-20201204/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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-20201204/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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-20201204/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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-20201204/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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 ............ALT CHECK......OK Comparing dynf024.nc .........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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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-20201204/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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-20201204/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -882,8 +882,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1024,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,8 +1080,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1147,8 +1147,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1158,8 +1158,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1167,8 +1167,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1178,19 +1178,19 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1239,8 +1239,8 @@ Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1335,8 +1335,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1383,8 +1383,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1431,8 +1431,8 @@ Checking test 029 fv3_ccpp_csawmg results .... Test 029 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,8 +1479,8 @@ Checking test 030 fv3_ccpp_satmedmf results .... Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1527,8 +1527,8 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1575,8 +1575,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,8 +1681,8 @@ Checking test 034 fv3_ccpp_cpt results .... Test 034 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 035 fv3_ccpp_gsd results .... Test 035 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson results .... Test 036 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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 @@ -2045,8 +2045,8 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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 @@ -2066,6 +2066,12 @@ 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 @@ -2078,6 +2084,12 @@ 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 @@ -2113,9 +2125,127 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Test 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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 @@ -2178,12 +2308,12 @@ Checking test 041 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 041 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 042 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/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 @@ -2246,12 +2376,12 @@ Checking test 042 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 042 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gocart_clm_prod -Checking test 043 fv3_ccpp_gocart_clm results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gocart_clm_prod +Checking test 045 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2294,12 +2424,12 @@ Checking test 043 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 043 fv3_ccpp_gocart_clm PASS +Test 045 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2362,12 +2492,12 @@ Checking test 044 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 044 fv3_ccpp_gfs_v16beta_flake PASS +Test 046 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 047 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 @@ -2430,12 +2560,12 @@ Checking test 045 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 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2448,12 +2578,12 @@ Checking test 046 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 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 047 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 049 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2516,12 +2646,12 @@ Checking test 047 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 047 fv3_ccpp_gfs_v16beta_debug PASS +Test 049 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 050 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 @@ -2584,12 +2714,12 @@ Checking test 048 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 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 051 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 @@ -2652,12 +2782,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 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gsd_debug_prod -Checking test 050 fv3_ccpp_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gsd_debug_prod +Checking test 052 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2720,12 +2850,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 052 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2788,12 +2918,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 053 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_thompson_debug_prod -Checking test 052 fv3_ccpp_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_thompson_debug_prod +Checking test 054 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2856,12 +2986,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 054 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 055 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 @@ -2924,12 +3054,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 055 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2992,12 +3122,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 056 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 057 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 @@ -3060,12 +3190,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 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_66655/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3078,9 +3208,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 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 10 10:28:41 MST 2020 -Elapsed time: 01h:12m:06s. Have a nice day! +Mon Dec 14 02:10:43 MST 2020 +Elapsed time: 06h:33m:56s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 8349138f11..cabdf6ea3a 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Thu Dec 10 10:05:34 EST 2020 +Sat Dec 12 22:35:35 EST 2020 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/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-20201204/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/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-20201204/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/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-20201204/INTEL/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/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-20201204/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/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-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/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-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/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-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/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-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/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-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/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-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/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-20201204/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/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 = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -746,8 +746,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -820,8 +820,8 @@ Checking test 014 fv3_ccpp_multigases results .... Test 014 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_control_32bit results .... Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,8 +944,8 @@ Checking test 016 fv3_ccpp_stretched results .... Test 016 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1011,8 +1011,8 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1022,8 +1022,8 @@ Checking test 018 fv3_ccpp_regional_control results .... Test 018 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1031,8 +1031,8 @@ Checking test 019 fv3_ccpp_regional_restart results .... Test 019 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1042,8 +1042,8 @@ Checking test 020 fv3_ccpp_regional_quilt results .... Test 020 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 021 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1053,8 +1053,8 @@ Checking test 021 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 021 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_regional_c768_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_c768_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_regional_c768_prod Checking test 022 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1064,8 +1064,8 @@ Checking test 022 fv3_ccpp_regional_c768 results .... Test 022 fv3_ccpp_regional_c768 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1094,8 +1094,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1114,8 +1114,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1162,8 +1162,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1210,8 +1210,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1258,8 +1258,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1306,8 +1306,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1354,8 +1354,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,8 +1402,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1450,8 +1450,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_cpt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1504,8 +1504,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gsd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1596,8 +1596,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1664,8 +1664,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,8 +1732,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1800,8 +1800,8 @@ Checking test 036 fv3_ccpp_rrfs_v1beta results .... Test 036 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gocart_clm_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gocart_clm_prod Checking test 037 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1848,8 +1848,8 @@ Checking test 037 fv3_ccpp_gocart_clm results .... Test 037 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gfs_v16beta_flake_prod Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1916,8 +1916,8 @@ Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Test 038 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1984,8 +1984,8 @@ Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2002,8 +2002,8 @@ Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gsd_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2070,8 +2070,8 @@ Checking test 041 fv3_ccpp_gsd_debug results .... Test 041 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2138,8 +2138,8 @@ Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Test 042 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,8 +2206,8 @@ Checking test 043 fv3_ccpp_thompson_debug results .... Test 043 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,8 +2274,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Test 044 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2342,8 +2342,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Test 045 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,8 +2410,8 @@ Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_9929/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2429,5 +2429,5 @@ Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 10 11:04:11 EST 2020 -Elapsed time: 00h:37m:01s. Have a nice day! +Sat Dec 12 23:41:21 EST 2020 +Elapsed time: 01h:05m:47s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 1a3f402263..cae9f848d7 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Fri Dec 11 15:17:57 UTC 2020 +Sun Dec 13 01:56:41 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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-20201204/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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-20201204/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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 @@ -139,6 +139,12 @@ Checking test 003 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 @@ -151,6 +157,12 @@ Checking test 003 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 ............SKIP for gnu compilers Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -186,9 +198,127 @@ 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-20201204/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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 + 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 ............SKIP for gnu compilers + 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 004 fv3_ccpp_gfs_v16beta_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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 + 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 ............SKIP for gnu compilers + 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 005 fv3_ccpp_gfs_v16beta_stochy PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -251,12 +381,12 @@ Checking test 004 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 004 fv3_ccpp_gfs_v16beta_flake PASS +Test 006 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -319,12 +449,12 @@ Checking test 005 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 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -387,12 +517,12 @@ Checking test 006 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 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 008 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gsd_prod -Checking test 007 fv3_ccpp_gsd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_gsd_prod +Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -479,12 +609,12 @@ Checking test 007 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 007 fv3_ccpp_gsd PASS +Test 009 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_thompson_prod -Checking test 008 fv3_ccpp_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_thompson_prod +Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -547,12 +677,12 @@ Checking test 008 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 008 fv3_ccpp_thompson PASS +Test 010 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_thompson_no_aero_prod -Checking test 009 fv3_ccpp_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -615,12 +745,12 @@ Checking test 009 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 009 fv3_ccpp_thompson_no_aero PASS +Test 011 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_rrfs_v1beta_prod -Checking test 010 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -683,12 +813,12 @@ Checking test 010 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 010 fv3_ccpp_rrfs_v1beta PASS +Test 012 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -751,12 +881,12 @@ Checking test 011 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 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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 Comparing phyf012.nc .........OK @@ -769,12 +899,12 @@ Checking test 012 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 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_control_debug_prod -Checking test 013 fv3_ccpp_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_control_debug_prod +Checking test 015 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -799,12 +929,12 @@ Checking test 013 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 013 fv3_ccpp_control_debug PASS +Test 015 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -867,12 +997,12 @@ Checking test 014 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 014 fv3_ccpp_gfs_v15p2_debug PASS +Test 016 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -935,12 +1065,12 @@ Checking test 015 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 015 fv3_ccpp_gfs_v16beta_debug PASS +Test 017 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -1003,12 +1133,12 @@ Checking test 016 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 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -1071,12 +1201,12 @@ Checking test 017 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 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_multigases_prod -Checking test 018 fv3_ccpp_multigases results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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 @@ -1145,12 +1275,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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -1213,12 +1343,12 @@ Checking test 019 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 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_208351/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/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 Comparing phyf001.nc .........OK @@ -1231,9 +1361,9 @@ Checking test 020 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 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 11 17:05:05 UTC 2020 -Elapsed time: 01h:47m:08s. Have a nice day! +Sun Dec 13 02:20:48 UTC 2020 +Elapsed time: 00h:24m:08s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 6dc15ff577..ac94586a4c 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,8 +1,9 @@ -Fri Dec 10 14:23:32 UTC 2020 - +Sun Dec 13 03:36:46 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_control_prod + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -69,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-20201204/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -137,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-20201204/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -205,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-20201204/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -273,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-20201204/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 @@ -341,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-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 @@ -389,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-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 @@ -437,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-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 @@ -485,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-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 @@ -533,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-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 @@ -581,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-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 @@ -629,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-20201204/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -697,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-20201204/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -765,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -833,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_lndp_prod Checking test 015 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -901,8 +902,8 @@ Checking test 015 fv3_ccpp_lndp results .... Test 015 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -949,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-20201204/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -998,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-20201204/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 @@ -1047,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-20201204/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 @@ -1096,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-20201204/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1170,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-20201204/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 @@ -1238,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-20201204/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1294,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-20201204/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 @@ -1361,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-20201204/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1372,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-20201204/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1381,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-20201204/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1392,19 +1393,19 @@ 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-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_regional_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_regional_c768_prod Checking test 028 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1414,8 +1415,8 @@ Checking test 028 fv3_ccpp_regional_c768 results .... Test 028 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_control_debug_prod Checking test 029 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1444,8 +1445,8 @@ Checking test 029 fv3_ccpp_control_debug results .... Test 029 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_stretched_nest_debug_prod Checking test 030 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1464,8 +1465,8 @@ Checking test 030 fv3_ccpp_stretched_nest_debug results .... Test 030 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfdlmp_prod Checking test 031 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1512,8 +1513,8 @@ Checking test 031 fv3_ccpp_gfdlmp results .... Test 031 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfdlmprad_gwd_prod Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1560,8 +1561,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Test 032 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1608,8 +1609,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Test 033 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_csawmg_prod Checking test 034 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1656,8 +1657,8 @@ Checking test 034 fv3_ccpp_csawmg results .... Test 034 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_satmedmf_prod Checking test 035 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1704,8 +1705,8 @@ Checking test 035 fv3_ccpp_satmedmf results .... Test 035 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_satmedmfq_prod Checking test 036 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1752,8 +1753,8 @@ Checking test 036 fv3_ccpp_satmedmfq results .... Test 036 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfdlmp_32bit_prod Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1800,8 +1801,8 @@ Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Test 037 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1852,8 +1853,8 @@ Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Test 038 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_cpt_prod Checking test 039 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1906,8 +1907,8 @@ Checking test 039 fv3_ccpp_cpt results .... Test 039 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gsd_prod Checking test 040 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1998,8 +1999,8 @@ Checking test 040 fv3_ccpp_gsd results .... Test 040 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_rap_prod Checking test 041 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2066,8 +2067,8 @@ Checking test 041 fv3_ccpp_rap results .... Test 041 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_hrrr_prod Checking test 042 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2134,8 +2135,8 @@ Checking test 042 fv3_ccpp_hrrr results .... Test 042 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_thompson_prod Checking test 043 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2202,8 +2203,8 @@ Checking test 043 fv3_ccpp_thompson results .... Test 043 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_thompson_no_aero_prod Checking test 044 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2270,8 +2271,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero results .... Test 044 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_rrfs_v1beta_prod Checking test 045 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2338,8 +2339,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta results .... Test 045 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfs_v15p2_prod Checking test 046 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2406,8 +2407,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2 results .... Test 046 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfs_v16beta_prod Checking test 047 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2427,6 +2428,12 @@ Checking test 047 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 @@ -2439,6 +2446,12 @@ Checking test 047 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 @@ -2474,9 +2487,127 @@ Checking test 047 fv3_ccpp_gfs_v16beta results .... Test 047 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfs_v16beta_restart_prod +Checking test 048 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 048 fv3_ccpp_gfs_v16beta_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 049 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 049 fv3_ccpp_gfs_v16beta_stochy PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2539,12 +2670,12 @@ Checking test 048 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 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 050 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2607,12 +2738,12 @@ Checking test 049 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 049 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 051 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfsv16_csawmg_prod -Checking test 050 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2655,12 +2786,12 @@ Checking test 050 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 050 fv3_ccpp_gfsv16_csawmg PASS +Test 052 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2703,12 +2834,12 @@ Checking test 051 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 051 fv3_ccpp_gfsv16_csawmgt PASS +Test 053 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gocart_clm_prod -Checking test 052 fv3_ccpp_gocart_clm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2751,12 +2882,12 @@ Checking test 052 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 052 fv3_ccpp_gocart_clm PASS +Test 054 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 053 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2819,12 +2950,12 @@ Checking test 053 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 053 fv3_ccpp_gfs_v16beta_flake PASS +Test 055 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2887,12 +3018,12 @@ Checking test 054 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 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 Comparing phyf012.nc .........OK @@ -2905,12 +3036,12 @@ Checking test 055 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 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 056 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2973,12 +3104,12 @@ Checking test 056 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 056 fv3_ccpp_gfs_v15p2_debug PASS +Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 057 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3041,12 +3172,12 @@ Checking test 057 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 057 fv3_ccpp_gfs_v16beta_debug PASS +Test 059 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3109,12 +3240,12 @@ Checking test 058 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 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3177,12 +3308,12 @@ Checking test 059 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 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gsd_debug_prod -Checking test 060 fv3_ccpp_gsd_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3245,12 +3376,12 @@ Checking test 060 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 060 fv3_ccpp_gsd_debug PASS +Test 062 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3313,12 +3444,12 @@ Checking test 061 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 061 fv3_ccpp_gsd_diag3d_debug PASS +Test 063 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_thompson_debug_prod -Checking test 062 fv3_ccpp_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3381,12 +3512,12 @@ Checking test 062 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 062 fv3_ccpp_thompson_debug PASS +Test 064 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3449,12 +3580,12 @@ Checking test 063 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 063 fv3_ccpp_thompson_no_aero_debug PASS +Test 065 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3517,12 +3648,12 @@ Checking test 064 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 064 fv3_ccpp_rrfs_v1beta_debug PASS +Test 066 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3585,12 +3716,12 @@ Checking test 065 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 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/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 Comparing phyf001.nc .........OK @@ -3603,12 +3734,12 @@ Checking test 066 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 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_control_prod -Checking test 067 cpld_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_control_prod +Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3656,12 +3787,12 @@ Checking test 067 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 067 cpld_control PASS +Test 069 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_2threads_prod -Checking test 068 cpld_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_2threads_prod +Checking test 070 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3709,12 +3840,12 @@ Checking test 068 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 068 cpld_2threads PASS +Test 070 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_decomp_prod -Checking test 069 cpld_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_decomp_prod +Checking test 071 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3762,12 +3893,12 @@ Checking test 069 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 069 cpld_decomp PASS +Test 071 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_satmedmf_prod -Checking test 070 cpld_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_satmedmf_prod +Checking test 072 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3815,12 +3946,12 @@ Checking test 070 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 070 cpld_satmedmf PASS +Test 072 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_ca_prod -Checking test 071 cpld_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_ca_prod +Checking test 073 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3868,12 +3999,12 @@ Checking test 071 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 071 cpld_ca PASS +Test 073 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_control_mx025_prod -Checking test 072 cpld_control_mx025 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_control_mx025_prod +Checking test 074 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3924,12 +4055,12 @@ Checking test 072 cpld_control_mx025 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_mx025 PASS +Test 074 cpld_control_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_control_mx025_12h_prod -Checking test 073 cpld_control_mx025_12h results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_mx025_12h_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_control_mx025_12h_prod +Checking test 075 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -3980,12 +4111,12 @@ Checking test 073 cpld_control_mx025_12h results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -Test 073 cpld_control_mx025_12h PASS +Test 075 cpld_control_mx025_12h PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_restart_mx025_prod -Checking test 074 cpld_restart_mx025 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_restart_mx025_prod +Checking test 076 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4036,12 +4167,12 @@ Checking test 074 cpld_restart_mx025 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_restart_mx025 PASS +Test 076 cpld_restart_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_control_c192_prod -Checking test 075 cpld_control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_control_c192_prod +Checking test 077 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4089,12 +4220,12 @@ Checking test 075 cpld_control_c192 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 075 cpld_control_c192 PASS +Test 077 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_control_c384_prod -Checking test 076 cpld_control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_control_c384_prod +Checking test 078 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4145,12 +4276,12 @@ Checking test 076 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 076 cpld_control_c384 PASS +Test 078 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_controlfrac_c384_prod -Checking test 077 cpld_controlfrac_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_controlfrac_c384_prod +Checking test 079 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4201,12 +4332,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 079 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_bmark_prod -Checking test 078 cpld_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_bmark_prod +Checking test 080 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4257,12 +4388,12 @@ Checking test 078 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 078 cpld_bmark PASS +Test 080 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_bmark_wave_prod -Checking test 079 cpld_bmark_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_bmark_wave_prod +Checking test 081 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4316,12 +4447,12 @@ Checking test 079 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 079 cpld_bmark_wave PASS +Test 081 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/cpld_debug_prod -Checking test 080 cpld_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_debug_prod +Checking test 082 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4369,51 +4500,51 @@ Checking test 080 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 080 cpld_debug PASS +Test 082 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/datm_control_cfsr_prod -Checking test 081 datm_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/datm_control_cfsr_prod +Checking test 083 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 081 datm_control_cfsr PASS +Test 083 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/datm_control_gefs_prod -Checking test 082 datm_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/datm_control_gefs_prod +Checking test 084 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 082 datm_control_gefs PASS +Test 084 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/datm_mx025_cfsr_prod -Checking test 083 datm_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/datm_mx025_cfsr_prod +Checking test 085 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 083 datm_mx025_cfsr PASS +Test 085 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Mark.Potts/FV3_RT/rt_72324/datm_mx025_gefs_prod -Checking test 084 datm_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/datm_mx025_gefs_prod +Checking test 086 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 084 datm_mx025_gefs PASS +Test 086 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 10 18:21:40 UTC 2020 -Elapsed time: 03h:58m:08s. Have a nice day! +Sun Dec 13 04:24:36 UTC 2020 +Elapsed time: 00h:47m:50s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 56cbf49112..54fe9e6303 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,2433 +1,76 @@ -Thu Dec 10 18:19:51 GMT 2020 +Sun Dec 13 03:21:37 GMT 2020 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control 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 001 fv3_ccpp_control PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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 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 002 fv3_ccpp_decomp PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads 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 003 fv3_ccpp_2threads PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart 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 004 fv3_ccpp_restart PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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 - 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 005 fv3_ccpp_read_inc PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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 - 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.nc .........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 - 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 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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 - 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.nc .........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 - 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 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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 - 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.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.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 - 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 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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 - 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.nc .........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 - 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 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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 - 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 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/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 - 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 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_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/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 012 fv3_ccpp_stochy PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_iau_prod -Checking test 013 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 013 fv3_ccpp_iau PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_lheatstrg_prod -Checking test 014 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 014 fv3_ccpp_lheatstrg PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_multigases_prod -Checking test 015 fv3_ccpp_multigases 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 - 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 015 fv3_ccpp_multigases PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_control_32bit_prod -Checking test 016 fv3_ccpp_control_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.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 016 fv3_ccpp_control_32bit PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_stretched_prod -Checking test 017 fv3_ccpp_stretched 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 fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 017 fv3_ccpp_stretched PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_stretched_nest_prod -Checking test 018 fv3_ccpp_stretched_nest 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.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 018 fv3_ccpp_stretched_nest PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_regional_control_prod -Checking test 019 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_regional_restart_prod -Checking test 020 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_regional_quilt_prod -Checking test 021 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 022 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 ............ALT CHECK......OK -Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_regional_c768_prod -Checking test 023 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf003.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf003.nc .........OK -Test 023 fv3_ccpp_regional_c768 PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_control_debug_prod -Checking test 024 fv3_ccpp_control_debug results .... - 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 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 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 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 -Test 024 fv3_ccpp_control_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_stretched_nest_debug_prod -Checking test 025 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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gfdlmp_prod -Checking test 026 fv3_ccpp_gfdlmp 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 026 fv3_ccpp_gfdlmp PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 027 fv3_ccpp_gfdlmprad_gwd 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 027 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 028 fv3_ccpp_gfdlmprad_noahmp 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 028 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_csawmg_prod -Checking test 029 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 029 fv3_ccpp_csawmg PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_satmedmf_prod -Checking test 030 fv3_ccpp_satmedmf 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 030 fv3_ccpp_satmedmf PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_satmedmfq_prod -Checking test 031 fv3_ccpp_satmedmfq 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 031 fv3_ccpp_satmedmfq PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gfdlmp_32bit_prod -Checking test 032 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 032 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_cpt_prod -Checking test 033 fv3_ccpp_cpt 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 - 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_cpt PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gsd_prod -Checking test 034 fv3_ccpp_gsd 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 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 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 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 034 fv3_ccpp_gsd PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_thompson_prod -Checking test 035 fv3_ccpp_thompson 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 035 fv3_ccpp_thompson PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_thompson_no_aero_prod -Checking test 036 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.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 036 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gocart_clm_prod -Checking test 037 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 037 fv3_ccpp_gocart_clm PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 038 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 - 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 038 fv3_ccpp_gfs_v16beta_flake PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 039 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 - 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 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gsd_debug_prod -Checking test 041 fv3_ccpp_gsd_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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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_gsd_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 042 fv3_ccpp_gsd_diag3d_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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 042 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_thompson_debug_prod -Checking test 043 fv3_ccpp_thompson_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 043 fv3_ccpp_thompson_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 044 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 - 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 044 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 045 fv3_ccpp_rrfs_v1beta_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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 045 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 046 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 - 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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_51903/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK - 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_debug PASS +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_202574/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 001 fv3_ccpp_gfs_v16beta_stochy results .... +Moving baseline 001 fv3_ccpp_gfs_v16beta_stochy files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf012.tile1.nc .........OK + Moving phyf012.tile2.nc .........OK + Moving phyf012.tile3.nc .........OK + Moving phyf012.tile4.nc .........OK + Moving phyf012.tile5.nc .........OK + Moving phyf012.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf012.tile1.nc .........OK + Moving dynf012.tile2.nc .........OK + Moving dynf012.tile3.nc .........OK + Moving dynf012.tile4.nc .........OK + Moving dynf012.tile5.nc .........OK + Moving dynf012.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 001 fv3_ccpp_gfs_v16beta_stochy PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 10 20:16:52 GMT 2020 -Elapsed time: 01h:57m:01s. Have a nice day! +Sun Dec 13 03:59:46 GMT 2020 +Elapsed time: 00h:38m:09s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 4359d9a8d9..ffdc8edcf5 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Dec 10 08:46:32 CST 2020 +Sat Dec 12 21:35:19 CST 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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-20201204/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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-20201204/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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-20201204/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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-20201204/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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-20201204/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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-20201204/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,57 +883,57 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... - 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 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 ............MISSING file + Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio ............MISSING file - Comparing RESTART/coupler.res ............MISSING file - Comparing RESTART/fv_core.res.nc ............MISSING file - Comparing RESTART/fv_core.res.tile1.nc ............MISSING file - Comparing RESTART/fv_core.res.tile2.nc ............MISSING file - Comparing RESTART/fv_core.res.tile3.nc ............MISSING file - Comparing RESTART/fv_core.res.tile4.nc ............MISSING file - Comparing RESTART/fv_core.res.tile5.nc ............MISSING file - Comparing RESTART/fv_core.res.tile6.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile1.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile2.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile3.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile4.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile5.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile6.nc ............MISSING file - Comparing RESTART/sfc_data.tile1.nc ............MISSING file - Comparing RESTART/sfc_data.tile2.nc ............MISSING file - Comparing RESTART/sfc_data.tile3.nc ............MISSING file - Comparing RESTART/sfc_data.tile4.nc ............MISSING file - Comparing RESTART/sfc_data.tile5.nc ............MISSING file - Comparing RESTART/sfc_data.tile6.nc ............MISSING file - Comparing RESTART/phy_data.tile1.nc ............MISSING file - Comparing RESTART/phy_data.tile2.nc ............MISSING file - Comparing RESTART/phy_data.tile3.nc ............MISSING file - Comparing RESTART/phy_data.tile4.nc ............MISSING file - Comparing RESTART/phy_data.tile5.nc ............MISSING file - Comparing RESTART/phy_data.tile6.nc ............MISSING file + 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 Comparing out_grd.glo_30m .........OK -Test 016 fv3_ccpp_gfdlmprad_atmwav FAIL +Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1055,8 +1055,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_control_32bit results .... Test 019 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1179,8 +1179,8 @@ Checking test 020 fv3_ccpp_stretched results .... Test 020 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 021 fv3_ccpp_stretched_nest results .... Test 021 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1257,8 +1257,8 @@ Checking test 022 fv3_ccpp_regional_control results .... Test 022 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 023 fv3_ccpp_regional_restart results .... Test 023 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1277,19 +1277,19 @@ Checking test 024 fv3_ccpp_regional_quilt results .... Test 024 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_regional_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1299,8 +1299,8 @@ Checking test 026 fv3_ccpp_regional_c768 results .... Test 026 fv3_ccpp_regional_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1329,8 +1329,8 @@ Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 @@ -1349,8 +1349,8 @@ Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1397,8 +1397,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 @@ -1445,8 +1445,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 @@ -1493,8 +1493,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1541,8 +1541,8 @@ Checking test 032 fv3_ccpp_csawmg results .... Test 032 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1589,8 +1589,8 @@ Checking test 033 fv3_ccpp_satmedmf results .... Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1637,8 +1637,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1689,8 +1689,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1743,8 +1743,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1835,8 +1835,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,8 +1903,8 @@ Checking test 038 fv3_ccpp_thompson results .... Test 038 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1971,8 +1971,8 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2039,8 +2039,8 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfs_v15p2_prod Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,8 +2107,8 @@ Checking test 041 fv3_ccpp_gfs_v15p2 results .... Test 041 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfs_v16beta_prod Checking test 042 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2128,6 +2128,12 @@ Checking test 042 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 @@ -2140,6 +2146,12 @@ Checking test 042 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 @@ -2175,9 +2187,127 @@ Checking test 042 fv3_ccpp_gfs_v16beta results .... Test 042 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfs_v16beta_restart_prod +Checking test 043 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 043 fv3_ccpp_gfs_v16beta_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 044 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 044 fv3_ccpp_gfs_v16beta_stochy PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2240,12 +2370,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 045 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 046 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2308,12 +2438,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 046 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfsv16_csawmg_prod -Checking test 045 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfsv16_csawmg_prod +Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2356,12 +2486,12 @@ Checking test 045 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 045 fv3_ccpp_gfsv16_csawmg PASS +Test 047 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2404,12 +2534,12 @@ Checking test 046 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 046 fv3_ccpp_gfsv16_csawmgt PASS +Test 048 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gocart_clm_prod -Checking test 047 fv3_ccpp_gocart_clm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2452,12 +2582,12 @@ Checking test 047 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 047 fv3_ccpp_gocart_clm PASS +Test 049 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 048 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2520,12 +2650,12 @@ Checking test 048 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 048 fv3_ccpp_gfs_v16beta_flake PASS +Test 050 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2588,12 +2718,12 @@ Checking test 049 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 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 Comparing phyf012.nc .........OK @@ -2606,12 +2736,12 @@ Checking test 050 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 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2674,12 +2804,12 @@ Checking test 051 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 051 fv3_ccpp_gfs_v15p2_debug PASS +Test 053 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 052 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2742,12 +2872,12 @@ Checking test 052 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 052 fv3_ccpp_gfs_v16beta_debug PASS +Test 054 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2810,12 +2940,12 @@ Checking test 053 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 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2878,12 +3008,12 @@ Checking test 054 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 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gsd_debug_prod -Checking test 055 fv3_ccpp_gsd_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2946,12 +3076,12 @@ Checking test 055 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 055 fv3_ccpp_gsd_debug PASS +Test 057 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 056 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3014,12 +3144,12 @@ Checking test 056 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 056 fv3_ccpp_gsd_diag3d_debug PASS +Test 058 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_thompson_debug_prod -Checking test 057 fv3_ccpp_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3082,12 +3212,12 @@ Checking test 057 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 057 fv3_ccpp_thompson_debug PASS +Test 059 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3150,12 +3280,12 @@ Checking test 058 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 058 fv3_ccpp_thompson_no_aero_debug PASS +Test 060 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3218,12 +3348,12 @@ Checking test 059 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 059 fv3_ccpp_rrfs_v1beta_debug PASS +Test 061 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3286,12 +3416,12 @@ Checking test 060 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 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/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 Comparing phyf001.nc .........OK @@ -3304,12 +3434,12 @@ Checking test 061 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 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_control_prod -Checking test 062 cpld_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_control_prod +Checking test 064 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3357,12 +3487,12 @@ Checking test 062 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 062 cpld_control PASS +Test 064 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_2threads_prod -Checking test 063 cpld_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_2threads_prod +Checking test 065 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3410,12 +3540,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 065 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_decomp_prod -Checking test 064 cpld_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_decomp_prod +Checking test 066 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3463,12 +3593,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 066 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_satmedmf_prod -Checking test 065 cpld_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_satmedmf_prod +Checking test 067 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3516,12 +3646,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 067 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_ca_prod -Checking test 066 cpld_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_ca_prod +Checking test 068 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3569,12 +3699,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 068 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_control_mx025_prod -Checking test 067 cpld_control_mx025 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_control_mx025_prod +Checking test 069 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3625,12 +3755,12 @@ Checking test 067 cpld_control_mx025 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 067 cpld_control_mx025 PASS +Test 069 cpld_control_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_control_mx025_12h_prod -Checking test 068 cpld_control_mx025_12h results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_mx025_12h_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_control_mx025_12h_prod +Checking test 070 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -3681,12 +3811,12 @@ Checking test 068 cpld_control_mx025_12h results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -Test 068 cpld_control_mx025_12h PASS +Test 070 cpld_control_mx025_12h PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_restart_mx025_prod -Checking test 069 cpld_restart_mx025 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_restart_mx025_prod +Checking test 071 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3737,12 +3867,12 @@ Checking test 069 cpld_restart_mx025 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 069 cpld_restart_mx025 PASS +Test 071 cpld_restart_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_control_c192_prod -Checking test 070 cpld_control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_control_c192_prod +Checking test 072 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3790,12 +3920,12 @@ Checking test 070 cpld_control_c192 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_control_c192 PASS +Test 072 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_control_c384_prod -Checking test 071 cpld_control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_control_c384_prod +Checking test 073 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3846,12 +3976,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 073 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_controlfrac_c384_prod -Checking test 072 cpld_controlfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_controlfrac_c384_prod +Checking test 074 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3902,12 +4032,12 @@ Checking test 072 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 072 cpld_controlfrac_c384 PASS +Test 074 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_bmark_prod -Checking test 073 cpld_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_bmark_prod +Checking test 075 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3958,71 +4088,71 @@ Checking test 073 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 073 cpld_bmark PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_bmark_wave_prod -Checking test 074 cpld_bmark_wave results .... - Comparing phyf024.tile1.nc ............MISSING file - Comparing phyf024.tile2.nc ............MISSING file - Comparing phyf024.tile3.nc ............MISSING file - Comparing phyf024.tile4.nc ............MISSING file - Comparing phyf024.tile5.nc ............MISSING file - Comparing phyf024.tile6.nc ............MISSING file - Comparing dynf024.tile1.nc ............MISSING file - Comparing dynf024.tile2.nc ............MISSING file - Comparing dynf024.tile3.nc ............MISSING file - Comparing dynf024.tile4.nc ............MISSING file - Comparing dynf024.tile5.nc ............MISSING file - Comparing dynf024.tile6.nc ............MISSING file - Comparing 20130402.000000.out_grd.gwes_30m ............MISSING file - Comparing 20130402.000000.out_pnt.points ............MISSING file - Comparing 20130402.000000.restart.gwes_30m ............MISSING file - Comparing RESTART/coupler.res ............MISSING file - Comparing RESTART/fv_core.res.nc ............MISSING file - Comparing RESTART/fv_core.res.tile1.nc ............MISSING file - Comparing RESTART/fv_core.res.tile2.nc ............MISSING file - Comparing RESTART/fv_core.res.tile3.nc ............MISSING file - Comparing RESTART/fv_core.res.tile4.nc ............MISSING file - Comparing RESTART/fv_core.res.tile5.nc ............MISSING file - Comparing RESTART/fv_core.res.tile6.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile1.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile2.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile3.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile4.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile5.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile6.nc ............MISSING file - Comparing RESTART/phy_data.tile1.nc ............MISSING file - Comparing RESTART/phy_data.tile2.nc ............MISSING file - Comparing RESTART/phy_data.tile3.nc ............MISSING file - Comparing RESTART/phy_data.tile4.nc ............MISSING file - Comparing RESTART/phy_data.tile5.nc ............MISSING file - Comparing RESTART/phy_data.tile6.nc ............MISSING file - Comparing RESTART/sfc_data.tile1.nc ............MISSING file - Comparing RESTART/sfc_data.tile2.nc ............MISSING file - Comparing RESTART/sfc_data.tile3.nc ............MISSING file - Comparing RESTART/sfc_data.tile4.nc ............MISSING file - Comparing RESTART/sfc_data.tile5.nc ............MISSING file - Comparing RESTART/sfc_data.tile6.nc ............MISSING file - Comparing RESTART/MOM.res.nc ............MISSING file - Comparing RESTART/MOM.res_1.nc ............MISSING file - Comparing RESTART/MOM.res_2.nc ............MISSING file - Comparing RESTART/MOM.res_3.nc ............MISSING file - Comparing RESTART/iced.2013-04-02-00000.nc ............MISSING file - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc ............MISSING file -Test 074 cpld_bmark_wave FAIL - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/cpld_debug_prod -Checking test 075 cpld_debug results .... +Test 075 cpld_bmark PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_bmark_wave_prod +Checking test 076 cpld_bmark_wave results .... + 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 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 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........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/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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 076 cpld_bmark_wave PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_debug_prod +Checking test 077 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4070,56 +4200,51 @@ Checking test 075 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 075 cpld_debug PASS +Test 077 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/datm_control_cfsr_prod -Checking test 076 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/datm_control_cfsr_prod +Checking test 078 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 076 datm_control_cfsr PASS +Test 078 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/datm_control_gefs_prod -Checking test 077 datm_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/datm_control_gefs_prod +Checking test 079 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 077 datm_control_gefs PASS +Test 079 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/datm_mx025_cfsr_prod -Checking test 078 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/datm_mx025_cfsr_prod +Checking test 080 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 078 datm_mx025_cfsr PASS +Test 080 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/mpotts/stmp/mpotts/FV3_RT/rt_417106/datm_mx025_gefs_prod -Checking test 079 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/datm_mx025_gefs_prod +Checking test 081 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 079 datm_mx025_gefs PASS +Test 081 datm_mx025_gefs PASS -FAILED TESTS: -Test fv3_ccpp_gfdlmprad_atmwav 016 failed in check_result failed -Test fv3_ccpp_gfdlmprad_atmwav 016 failed in run_test failed -Test cpld_bmark_wave 074 failed in check_result failed -Test cpld_bmark_wave 074 failed in run_test failed -REGRESSION TEST FAILED -Thu Dec 10 10:11:29 CST 2020 -Elapsed time: 01h:24m:58s. Have a nice day! +REGRESSION TEST WAS SUCCESSFUL +Sat Dec 12 22:26:12 CST 2020 +Elapsed time: 00h:50m:53s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 48d7c70455..4bd5022166 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Fri Dec 11 13:56:59 UTC 2020 +Mon Dec 14 02:31:31 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/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-20201204/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/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-20201204/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/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-20201204/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/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-20201204/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/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-20201204/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/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-20201204/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/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-20201204/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/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-20201204/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/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-20201204/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/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-20201204/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/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-20201204/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,8 +1012,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,8 +1079,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1090,8 +1090,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1121,8 +1121,8 @@ Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1151,8 +1151,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1171,8 +1171,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,8 +1267,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,8 +1363,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,8 +1411,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,8 +1459,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,8 +1507,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,8 +1559,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,8 +1613,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 035 fv3_ccpp_thompson results .... Test 035 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Test 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_rrfs_v1beta_prod Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,9 +1909,275 @@ Checking test 037 fv3_ccpp_rrfs_v1beta results .... Test 037 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gfsv16_csawmg_prod -Checking test 038 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfs_v16beta_prod +Checking test 038 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 038 fv3_ccpp_gfs_v16beta PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfs_v16beta_restart_prod +Checking test 039 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 039 fv3_ccpp_gfs_v16beta_restart PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 040 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 040 fv3_ccpp_gfs_v16beta_stochy PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 041 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 041 fv3_ccpp_gfs_v16beta_RRTMGP PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfsv16_csawmg_prod +Checking test 042 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1954,12 +2220,12 @@ Checking test 038 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 038 fv3_ccpp_gfsv16_csawmg PASS +Test 042 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 039 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 043 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2002,12 +2268,12 @@ Checking test 039 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 039 fv3_ccpp_gfsv16_csawmgt PASS +Test 043 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gocart_clm_prod -Checking test 040 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gocart_clm_prod +Checking test 044 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2050,12 +2316,12 @@ Checking test 040 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 040 fv3_ccpp_gocart_clm PASS +Test 044 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 045 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2118,12 +2384,12 @@ Checking test 041 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 041 fv3_ccpp_gfs_v16beta_flake PASS +Test 045 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 046 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 @@ -2186,12 +2452,12 @@ Checking test 042 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 042 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2204,12 +2470,148 @@ Checking test 043 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 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 048 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 048 fv3_ccpp_gfs_v16beta_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 049 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 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gsd_debug_prod -Checking test 044 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gsd_debug_prod +Checking test 050 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2272,12 +2674,12 @@ Checking test 044 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 044 fv3_ccpp_gsd_debug PASS +Test 050 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2340,12 +2742,12 @@ Checking test 045 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 045 fv3_ccpp_gsd_diag3d_debug PASS +Test 051 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_thompson_debug_prod -Checking test 046 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_thompson_debug_prod +Checking test 052 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2408,12 +2810,12 @@ Checking test 046 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 046 fv3_ccpp_thompson_debug PASS +Test 052 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 053 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 @@ -2476,12 +2878,12 @@ Checking test 047 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 047 fv3_ccpp_thompson_no_aero_debug PASS +Test 053 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2544,12 +2946,12 @@ Checking test 048 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 048 fv3_ccpp_rrfs_v1beta_debug PASS +Test 054 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 055 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 @@ -2612,12 +3014,12 @@ Checking test 049 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 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Mark.Potts/FV3_RT/rt_12266/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -2630,9 +3032,9 @@ Checking test 050 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 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 11 14:31:45 UTC 2020 -Elapsed time: 00h:34m:46s. Have a nice day! +Mon Dec 14 03:11:51 UTC 2020 +Elapsed time: 00h:40m:21s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 808e7c33dc..887f1156e0 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Thu Dec 10 14:32:41 UTC 2020 +Mon Dec 14 03:57:13 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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-20201204/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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-20201204/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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-20201204/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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-20201204/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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-20201204/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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-20201204/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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-20201204/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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,9 +447,9 @@ 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 ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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-20201204/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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-20201204/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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-20201204/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -863,9 +863,9 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/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-20201214/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 001 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -912,8 +912,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -986,8 +986,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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 @@ -1054,8 +1054,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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 @@ -1177,8 +1177,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1188,8 +1188,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1197,8 +1197,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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 @@ -1219,8 +1219,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_regional_c768_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_regional_c768_prod Checking test 025 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1230,8 +1230,8 @@ Checking test 025 fv3_ccpp_regional_c768 results .... Test 025 fv3_ccpp_regional_c768 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_control_debug_prod Checking test 026 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1260,8 +1260,8 @@ Checking test 026 fv3_ccpp_control_debug results .... Test 026 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_stretched_nest_debug_prod Checking test 027 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1280,8 +1280,8 @@ Checking test 027 fv3_ccpp_stretched_nest_debug results .... Test 027 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,8 +1328,8 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,8 +1376,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1424,8 +1424,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1472,8 +1472,8 @@ Checking test 031 fv3_ccpp_csawmg results .... Test 031 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1520,8 +1520,8 @@ Checking test 032 fv3_ccpp_satmedmf results .... Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1568,8 +1568,8 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1616,8 +1616,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1668,8 +1668,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,8 +1722,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1814,8 +1814,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1882,8 +1882,8 @@ Checking test 038 fv3_ccpp_thompson results .... Test 038 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1950,8 +1950,8 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2018,9 +2018,275 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfsv16_csawmg_prod -Checking test 041 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfs_v16beta_prod +Checking test 041 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 041 fv3_ccpp_gfs_v16beta PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfs_v16beta_restart_prod +Checking test 042 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 042 fv3_ccpp_gfs_v16beta_restart PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 043 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 043 fv3_ccpp_gfs_v16beta_stochy PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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 @@ -2063,12 +2329,12 @@ Checking test 041 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 041 fv3_ccpp_gfsv16_csawmg PASS +Test 045 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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 @@ -2111,12 +2377,12 @@ Checking test 042 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 042 fv3_ccpp_gfsv16_csawmgt PASS +Test 046 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gocart_clm_prod -Checking test 043 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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 @@ -2159,12 +2425,12 @@ Checking test 043 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 043 fv3_ccpp_gocart_clm PASS +Test 047 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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 @@ -2227,12 +2493,12 @@ Checking test 044 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 044 fv3_ccpp_gfs_v16beta_flake PASS +Test 048 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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 @@ -2295,12 +2561,12 @@ Checking test 045 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 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/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 @@ -2313,12 +2579,148 @@ Checking test 046 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 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 051 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 051 fv3_ccpp_gfs_v16beta_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 052 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 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gsd_debug_prod -Checking test 047 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gsd_debug_prod +Checking test 053 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2381,12 +2783,12 @@ Checking test 047 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 047 fv3_ccpp_gsd_debug PASS +Test 053 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2449,12 +2851,12 @@ Checking test 048 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 048 fv3_ccpp_gsd_diag3d_debug PASS +Test 054 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_thompson_debug_prod -Checking test 049 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_thompson_debug_prod +Checking test 055 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2517,12 +2919,12 @@ Checking test 049 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 049 fv3_ccpp_thompson_debug PASS +Test 055 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 056 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 @@ -2585,12 +2987,12 @@ Checking test 050 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 050 fv3_ccpp_thompson_no_aero_debug PASS +Test 056 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2653,12 +3055,12 @@ Checking test 051 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 051 fv3_ccpp_rrfs_v1beta_debug PASS +Test 057 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 058 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 @@ -2721,12 +3123,12 @@ Checking test 052 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 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -2739,12 +3141,12 @@ Checking test 053 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 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_control_prod -Checking test 054 cpld_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_control_prod +Checking test 060 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2792,12 +3194,12 @@ Checking test 054 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 054 cpld_control PASS +Test 060 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_2threads_prod -Checking test 055 cpld_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_2threads_prod +Checking test 061 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2845,12 +3247,12 @@ Checking test 055 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 055 cpld_2threads PASS +Test 061 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_decomp_prod -Checking test 056 cpld_decomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_decomp_prod +Checking test 062 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2898,12 +3300,12 @@ Checking test 056 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 056 cpld_decomp PASS +Test 062 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_satmedmf_prod -Checking test 057 cpld_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_satmedmf_prod +Checking test 063 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2951,12 +3353,12 @@ Checking test 057 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 057 cpld_satmedmf PASS +Test 063 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_ca_prod -Checking test 058 cpld_ca results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_ca_prod +Checking test 064 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3004,12 +3406,12 @@ Checking test 058 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 058 cpld_ca PASS +Test 064 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_control_mx025_prod -Checking test 059 cpld_control_mx025 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_control_mx025_prod +Checking test 065 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3060,12 +3462,12 @@ Checking test 059 cpld_control_mx025 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 059 cpld_control_mx025 PASS +Test 065 cpld_control_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_control_mx025_12h_prod -Checking test 060 cpld_control_mx025_12h results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_control_mx025_12h_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_control_mx025_12h_prod +Checking test 066 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -3116,12 +3518,12 @@ Checking test 060 cpld_control_mx025_12h results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -Test 060 cpld_control_mx025_12h PASS +Test 066 cpld_control_mx025_12h PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_restart_mx025_prod -Checking test 061 cpld_restart_mx025 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_restart_mx025_prod +Checking test 067 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3172,12 +3574,12 @@ Checking test 061 cpld_restart_mx025 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 061 cpld_restart_mx025 PASS +Test 067 cpld_restart_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_control_c192_prod -Checking test 062 cpld_control_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_control_c192_prod +Checking test 068 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3225,12 +3627,12 @@ Checking test 062 cpld_control_c192 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_control_c192 PASS +Test 068 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_control_c384_prod -Checking test 063 cpld_control_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_control_c384_prod +Checking test 069 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3281,12 +3683,12 @@ Checking test 063 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 063 cpld_control_c384 PASS +Test 069 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_controlfrac_c384_prod -Checking test 064 cpld_controlfrac_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_controlfrac_c384_prod +Checking test 070 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3337,12 +3739,12 @@ Checking test 064 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 064 cpld_controlfrac_c384 PASS +Test 070 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_bmark_prod -Checking test 065 cpld_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_bmark_prod +Checking test 071 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3393,12 +3795,12 @@ Checking test 065 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 065 cpld_bmark PASS +Test 071 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_bmark_wave_prod -Checking test 066 cpld_bmark_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_bmark_wave_prod +Checking test 072 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3452,12 +3854,12 @@ Checking test 066 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 066 cpld_bmark_wave PASS +Test 072 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Mark.Potts/FV3_RT/rt_81364/cpld_debug_prod -Checking test 067 cpld_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_debug_prod +Checking test 073 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -3505,9 +3907,9 @@ Checking test 067 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 067 cpld_debug PASS +Test 073 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 10 16:22:52 UTC 2020 -Elapsed time: 01h:50m:14s. Have a nice day! +Mon Dec 14 05:46:20 UTC 2020 +Elapsed time: 01h:49m:07s. Have a nice day! diff --git a/tests/fv3_conf/ccpp_gfs_v16_run.IN b/tests/fv3_conf/ccpp_gfs_v16_run.IN index 11827cbc9d..c4e022ff86 100644 --- a/tests/fv3_conf/ccpp_gfs_v16_run.IN +++ b/tests/fv3_conf/ccpp_gfs_v16_run.IN @@ -1,11 +1,13 @@ rm -fr INPUT RESTART -if [ $WARM_START = .F. ]; then - cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . - mkdir RESTART -else - mkdir INPUT RESTART - cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT +rsync -arv @[INPUTDATA_ROOT]/FV3_input_data/INPUT/ INPUT/ +mkdir RESTART +if [ $WARM_START = .T. ]; then + rsync -arv ../fv3_ccpp_gfs_v16beta${RT_SUFFIX}/RESTART/ INPUT/ + cd INPUT + rename 20161004.000000. '' 20161004.000000.* + cd .. fi + cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . @@ -19,5 +21,5 @@ cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_suite2 field_table cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . if [ $DO_RRTMGP = .T. ]; then -cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . + cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . fi diff --git a/tests/parm/ccpp_v16beta_c96.nml.IN b/tests/parm/ccpp_v16beta_c96.nml.IN index 2d43566b99..d9e3c7269d 100644 --- a/tests/parm/ccpp_v16beta_c96.nml.IN +++ b/tests/parm/ccpp_v16beta_c96.nml.IN @@ -48,7 +48,7 @@ deflate_level=1 ntiles = 6 npz = 64 grid_type = -1 - make_nh = .false. + make_nh = @[MAKE_NH] fv_debug = .false. range_warn = .false. reset_eta = .false. @@ -84,11 +84,11 @@ deflate_level=1 delt_max = 0.002 ke_bg = 0. do_vort_damp = .true. - external_ic = .true. + external_ic = @[EXTERNAL_IC] external_eta = .true. gfs_phil = .false. - nggps_ic = .true. - mountain = .false. + nggps_ic = @[NGGPS_IC] + mountain = @[MOUNTAIN] ncep_ic = .false. d_con = 1. hord_mt = 5 @@ -103,7 +103,7 @@ deflate_level=1 fill = .true. dwind_2d = .false. print_freq = 6 - warm_start = .false. + warm_start = @[WARM_START] no_dycore = .false. z_tracer = .true. agrid_vel_rst = .true. @@ -177,7 +177,7 @@ deflate_level=1 debug = .false. oz_phys = .F. oz_phys_2015 = .T. - nstf_name = 2,1,0,0,0 + nstf_name = @[NSTF_NAME] nst_anl = .true. psautco = 0.0008,0.0005 prautco = 0.00015,0.00015 @@ -186,11 +186,11 @@ deflate_level=1 ldiag_ugwp = .false. do_ugwp = .false. do_tofd = .true. - do_sppt = .true. - do_shum = .true. - do_skeb = .true. - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] + do_sppt = @[DO_SPPT] + do_shum = @[DO_SHUM] + do_skeb = @[DO_SKEB] + lndp_type = @[LNDP_TYPE] + n_var_lndp = @[N_VAR_LNDP] / &gfdl_cloud_microphysics_nml @@ -295,30 +295,33 @@ deflate_level=1 / &nam_stochy - ntrunc = 766 - lon_s = 1536 - lat_s = 768 - skeb = 0.3 - iseed_skeb = 2019102712451 - iseed_shum = 2019102712452 - iseed_sppt = 2019102712453 - skeb_tau = 21600. - skeb_lscale = 500000. - skebnorm = 0 - skeb_npass = 30 - skeb_vdof = 5 - shum = 0.005 - shum_tau = 21600. - shum_lscale = 500000. - sppt = 0.5 - sppt_tau = 21600. - sppt_lscale = 500000. - sppt_logit = .true. - sppt_sfclimit = .true. - use_zmtnblck = .true. + SKEBNORM=1, + SKEB_NPASS=30, + SKEB_VDOF=5, + SKEB=@[SKEB], + SKEB_TAU=2.16E4, + SKEB_LSCALE=1000.E3, + SKEBINT=1800, + SHUM=@[SHUM], + SHUM_TAU=21600, + SHUM_LSCALE=500000, + SHUMINT=3600, + SPPT=@[SPPT], + SPPT_TAU=21600, + SPPT_LSCALE=500000, + SPPT_LOGIT=.TRUE., + SPPT_SFCLIMIT=.TRUE., + SPPTINT=1800, + ISEED_SHUM=1, + ISEED_SKEB=2, + ISEED_SPPT=3, / &nam_sfcperts + lndp_type = @[LNDP_TYPE] + LNDP_TAU=21600, + LNDP_LSCALE=500000, + ISEED_LNDP=2010, / &cires_ugwp_nml diff --git a/tests/rt.conf b/tests/rt.conf index 93b34facd9..be724ae441 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -111,18 +111,34 @@ RUN | fv3_ccpp_rrfs_v1beta RUN | fv3_ccpp_rrfs_v1beta | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_rrfs_v1beta | standard | gaea.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | wcoss_dell_p3 | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | wcoss_cray | fv3 | COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | hera.intel | fv3 | COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | orion.intel | fv3 | COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_gfs_v15p2 | standard | hera.intel | fv3 | RUN | fv3_ccpp_gfs_v15p2 | standard | orion.intel | fv3 | RUN | fv3_ccpp_gfs_v15p2 | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfs_v16beta | standard | wcoss_cray | fv3 | RUN | fv3_ccpp_gfs_v16beta | standard | hera.intel | fv3 | RUN | fv3_ccpp_gfs_v16beta | standard | orion.intel | fv3 | RUN | fv3_ccpp_gfs_v16beta | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_restart | standard | wcoss_dell_p3 | | fv3_ccpp_gfs_v16beta +RUN | fv3_ccpp_gfs_v16beta_restart | standard | wcoss_cray | | fv3_ccpp_gfs_v16beta +RUN | fv3_ccpp_gfs_v16beta_restart | standard | hera.intel | | fv3_ccpp_gfs_v16beta +RUN | fv3_ccpp_gfs_v16beta_restart | standard | orion.intel | | fv3_ccpp_gfs_v16beta +RUN | fv3_ccpp_gfs_v16beta_restart | standard | cheyenne.intel | | fv3_ccpp_gfs_v16beta +RUN | fv3_ccpp_gfs_v16beta_stochy | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfs_v16beta_stochy | standard | wcoss_cray | fv3 | +RUN | fv3_ccpp_gfs_v16beta_stochy | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_stochy | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_stochy | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | hera.intel | fv3 | RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | orion.intel | fv3 | RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | wcoss_cray | fv3 | RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | hera.intel | fv3 | RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | orion.intel | fv3 | RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | cheyenne.intel | fv3 | @@ -152,18 +168,24 @@ 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 | CCPP=Y DEBUG=Y | standard | wcoss_dell_p3 | fv3 | +COMPILE | CCPP=Y DEBUG=Y | standard | wcoss_cray | fv3 | COMPILE | CCPP=Y DEBUG=Y | standard | hera.intel | fv3 | COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP DEBUG=Y | standard | orion.intel | fv3 | COMPILE | CCPP=Y DEBUG=Y | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_gfs_v15p2_debug | standard | hera.intel | fv3 | RUN | fv3_ccpp_gfs_v15p2_debug | standard | orion.intel | fv3 | RUN | fv3_ccpp_gfs_v15p2_debug | standard | cheeyenne.intel| fv3 | +RUN | fv3_ccpp_gfs_v16beta_debug | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfs_v16beta_debug | standard | wcoss_cray | fv3 | RUN | fv3_ccpp_gfs_v16beta_debug | standard | hera.intel | fv3 | RUN | fv3_ccpp_gfs_v16beta_debug | standard | orion.intel | fv3 | RUN | fv3_ccpp_gfs_v16beta_debug | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | hera.intel | fv3 | RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | orion.intel | fv3 | RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | wcoss_cray | fv3 | RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | hera.intel | fv3 | RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | orion.intel | fv3 | RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | cheyenne.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 3379c2a914..53db528da1 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -423,9 +423,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-20201204/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201214/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201204} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201214} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20201201/} diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 0787803fc2..c5c0fbf5ac 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -9,6 +9,8 @@ COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v16beta_flake,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 | diff --git a/tests/tests/fv3_ccpp_gfs_v16beta b/tests/tests/fv3_ccpp_gfs_v16beta index be7c331f6c..9848ee8cf2 100644 --- a/tests/tests/fv3_ccpp_gfs_v16beta +++ b/tests/tests/fv3_ccpp_gfs_v16beta @@ -26,6 +26,12 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ phyf024.tile4.nc \ phyf024.tile5.nc \ phyf024.tile6.nc \ + phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ dynf000.tile1.nc \ dynf000.tile2.nc \ dynf000.tile3.nc \ @@ -38,6 +44,12 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ dynf024.tile4.nc \ dynf024.tile5.nc \ dynf024.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -76,8 +88,14 @@ export_fv3 DT_ATMOS="1200" +export FHMAX=48 +export RESTART_INTERVAL=24 + +export NSTF_NAME=2,1,0,0,0 + export FV3_RUN=ccpp_gfs_v16_run.IN export CCPP_SUITE=FV3_GFS_v16beta export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_v16beta_c96.nml.IN +export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gfs_v16beta_debug b/tests/tests/fv3_ccpp_gfs_v16beta_debug index 12cd66ccb4..2725191975 100644 --- a/tests/tests/fv3_ccpp_gfs_v16beta_debug +++ b/tests/tests/fv3_ccpp_gfs_v16beta_debug @@ -76,6 +76,8 @@ export_fv3 export FHMAX="06" DT_ATMOS="1200" +export NSTF_NAME=2,1,0,0,0 + export FV3_RUN=ccpp_gfs_v16_run.IN export CCPP_SUITE=FV3_GFS_v16beta export CCPP_LIB_DIR=ccpp/lib diff --git a/tests/tests/fv3_ccpp_gfs_v16beta_restart b/tests/tests/fv3_ccpp_gfs_v16beta_restart new file mode 100644 index 0000000000..27dc932835 --- /dev/null +++ b/tests/tests/fv3_ccpp_gfs_v16beta_restart @@ -0,0 +1,75 @@ +############################################################################### +# +# FV3 CCPP GFS v16beta compiled with 32-bit dynamics test +# +############################################################################### + +export TEST_DESCR="Compare FV3 32bit CCPP GFS v16beta results with previous trunk version" + +export CNTL_DIR=fv3_gfs_v16beta + +export LIST_FILES="phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 + +DT_ATMOS="1200" + +export FHMAX=48 +export RESTART_INTERVAL=24 + +export WARM_START=.T. +export NGGPS_IC=.F. +export EXTERNAL_IC=.F. +export MAKE_NH=.F. +export MOUNTAIN=.T. +export NSTF_NAME=2,0,0,0,0 + +export FV3_RUN=ccpp_gfs_v16_run.IN +export CCPP_SUITE=FV3_GFS_v16beta +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_v16beta_c96.nml.IN + diff --git a/tests/tests/fv3_ccpp_gfs_v16beta_stochy b/tests/tests/fv3_ccpp_gfs_v16beta_stochy new file mode 100644 index 0000000000..3c1657f630 --- /dev/null +++ b/tests/tests/fv3_ccpp_gfs_v16beta_stochy @@ -0,0 +1,93 @@ +############################################################################### +# +# FV3 CCPP GFS v16beta stochastic test, compiled with 32-bit dynamics +# +############################################################################### + +export TEST_DESCR="Compare FV3 32bit CCPP GFS v16beta stochastic results with previous trunk version" + +export CNTL_DIR=fv3_gfs_v16beta_stochy + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf012.tile1.nc \ + phyf012.tile2.nc \ + phyf012.tile3.nc \ + phyf012.tile4.nc \ + phyf012.tile5.nc \ + phyf012.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf012.tile1.nc \ + dynf012.tile2.nc \ + dynf012.tile3.nc \ + dynf012.tile4.nc \ + dynf012.tile5.nc \ + dynf012.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 + +DT_ATMOS=600 +export FHMAX=12 + +export NSTF_NAME=2,1,0,0,0 + +export DO_SPPT=.T. +export DO_SHUM=.T. +export DO_SKEB=.T. +export SKEB=0.3 +export SHUM=0.003 +export SPPT=0.2 + +export FV3_RUN=ccpp_gfs_v16_run.IN +export CCPP_SUITE=FV3_GFS_v16beta +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_v16beta_c96.nml.IN + From c1a7920d8b7dc2b4e6a9e8c19b6f9bbb4ea47c61 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Tue, 15 Dec 2020 15:06:41 -0500 Subject: [PATCH 040/109] Add optional bulk flux calculation in ufs-datm (#266) * Update NEMS DATM and CMEPS to allow the optional bulk flux formulation; add two tests using the option * Update top level CMakeList.txt to have compile flags for MOM6 and CICE6 identical for ufs-cpld and ufs-datm * Add optional configuration variable to nems.configure to specify the directory where CMEPS will write restarts * Adds cheyenne tasking variables to default_vars and sets WW3_COMP to cheyenne for platform cheyenne.intel *NOTE: Baselines develop-20201215 exist on all platforms, regression tests were run against exactly that baseline on all systems except cheyenne.intel. On cheyenne.intel the tests were run against 20201214, and this baseline is identical to 20201215 (as per "diff -r develop-20201214 develop-20201215"). Co-authors: @DusanJovic-NOAA @aerorahul @JessicaMeixner-NOAA skip-ci --- CICE-interface/CMakeLists.txt | 2 +- CMEPS-interface/CMEPS | 2 +- CMakeLists.txt | 14 +- DATM | 2 +- MOM6-interface/CMakeLists.txt | 2 +- tests/RegressionTests_cheyenne.gnu.log | 94 +++--- tests/RegressionTests_cheyenne.intel.log | 122 ++++---- tests/RegressionTests_gaea.intel.log | 196 ++++++------ tests/RegressionTests_hera.gnu.log | 94 +++--- tests/RegressionTests_hera.intel.log | 378 ++++++++++++----------- tests/RegressionTests_orion.intel.log | 360 +++++++++++---------- tests/RegressionTests_wcoss_cray.log | 230 +++++++------- tests/RegressionTests_wcoss_dell_p3.log | 302 +++++++++--------- tests/default_vars.sh | 84 ++++- tests/parm/datm_configure.IN | 4 +- tests/parm/datm_data_table.IN | 6 +- tests/parm/nems.configure.cpld.IN | 3 +- tests/parm/nems.configure.cpld_wave.IN | 5 +- tests/parm/nems.configure.datm.IN | 10 +- tests/rt.conf | 29 +- tests/rt.sh | 4 +- tests/tests/datm_bulk_cfsr | 21 ++ tests/tests/datm_bulk_gefs | 21 ++ tests/tests/datm_control_cfsr | 4 +- tests/tests/datm_control_gefs | 4 +- tests/tests/datm_mx025_cfsr | 16 +- tests/tests/datm_mx025_gefs | 16 +- 27 files changed, 1094 insertions(+), 931 deletions(-) create mode 100644 tests/tests/datm_bulk_cfsr create mode 100644 tests/tests/datm_bulk_gefs diff --git a/CICE-interface/CMakeLists.txt b/CICE-interface/CMakeLists.txt index db4bf3a02b..6a27d3a88a 100644 --- a/CICE-interface/CMakeLists.txt +++ b/CICE-interface/CMakeLists.txt @@ -9,7 +9,7 @@ elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") set(CMAKE_Fortran_FLAGS "-g -traceback") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -FR -convert big_endian -assume byterecl -ftz -align array64byte -xHOST") set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") - set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check uninit -check bounds -check pointers -fpe0 -check noarg_temp_created -link_mpi=dbg") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check uninit -check bounds -check pointers -fpe0 -check noarg_temp_created") set(CMAKE_Fortran_LINK_FLAGS "") else() message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index efb8d35303..47dcaf1e85 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit efb8d353030c0c62ddf99051195f981841101cac +Subproject commit 47dcaf1e85831181a44c7067a24fcf9ef176b48c diff --git a/CMakeLists.txt b/CMakeLists.txt index 2221cf24e6..2de3ef22d7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,6 +40,8 @@ set(DATM OFF CACHE BOOL "Enable Data Atmosphere") ############################################################################### if(DEBUG) set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Set type of build to Debug." FORCE) +else() + set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Set type of build to Release." FORCE) endif() if(CMAKE_Platform) @@ -157,9 +159,9 @@ target_include_directories(fms PUBLIC $ $ $) -target_include_directories(fms INTERFACE - $ - $) +target_include_directories(fms INTERFACE + $ + $) target_link_libraries(fms PUBLIC MPI::MPI_Fortran NetCDF::NetCDF_Fortran) if(OpenMP_Fortran_FOUND) @@ -194,6 +196,8 @@ if(WW3) set(WW3_COMP "hera") elseif(${CMAKE_Platform} STREQUAL "orion.intel") set(WW3_COMP "orion") + elseif(${CMAKE_Platform} STREQUAL "cheyenne.intel") + set(WW3_COMP "cheyenne") elseif(${CMAKE_Platform} STREQUAL "wcoss2") set(WW3_COMP "wcoss_cray") elseif(${CMAKE_Platform} MATCHES "linux*" OR ${CMAKE_Platform} MATCHES "macosx*") @@ -334,7 +338,7 @@ target_link_libraries(ufs_model PRIVATE ufs ### Install ############################################################################### install( - TARGETS fms + TARGETS fms EXPORT fms-config LIBRARY DESTINATION lib ARCHIVE DESTINATION lib @@ -346,7 +350,7 @@ install(EXPORT fms-config DESTINATION lib/cmake ) install( - TARGETS ufs + TARGETS ufs EXPORT ufs-config LIBRARY DESTINATION lib ARCHIVE DESTINATION lib) diff --git a/DATM b/DATM index 84e9a1fb91..1e9ab6ed17 160000 --- a/DATM +++ b/DATM @@ -1 +1 @@ -Subproject commit 84e9a1fb91ee83d602d56f633ae18fe7eb26c273 +Subproject commit 1e9ab6ed1763c981dc8e294c737c449644a9d1fe diff --git a/MOM6-interface/CMakeLists.txt b/MOM6-interface/CMakeLists.txt index bc7e2a6d71..0c09b62619 100644 --- a/MOM6-interface/CMakeLists.txt +++ b/MOM6-interface/CMakeLists.txt @@ -11,7 +11,7 @@ elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -i4 -r8") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -sox") set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -debug minimal -fp-model source") - set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv -link_mpi=dbg") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv") set(CMAKE_Fortran_LINK_FLAGS "") else() message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 4904ff411a..a6164e783d 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Sun Dec 13 08:17:26 MST 2020 +Tue Dec 15 06:12:20 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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-20201214/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48498/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30798/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 -Sun Dec 13 08:33:42 MST 2020 -Elapsed time: 00h:16m:17s. Have a nice day! +Tue Dec 15 06:28:38 MST 2020 +Elapsed time: 00h:16m:18s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 789d93db81..0038f747fb 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Sun Dec 13 19:36:47 MST 2020 +Tue Dec 15 05:55:30 MST 2020 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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-20201214/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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-20201214/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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-20201214/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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-20201214/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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-20201214/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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-20201214/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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-20201214/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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-20201214/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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-20201214/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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-20201214/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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-20201214/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_iau_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,7 +883,7 @@ Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -957,7 +957,7 @@ Test 016 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1025,7 +1025,7 @@ Test 017 fv3_ccpp_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_stretched_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1081,7 +1081,7 @@ Test 018 fv3_ccpp_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,7 +1148,7 @@ Test 019 fv3_ccpp_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1159,7 +1159,7 @@ Test 020 fv3_ccpp_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1168,7 +1168,7 @@ Test 021 fv3_ccpp_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1179,7 +1179,7 @@ Test 022 fv3_ccpp_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1190,7 +1190,7 @@ Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1220,7 +1220,7 @@ Test 024 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_stretched_nest_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1240,7 +1240,7 @@ Test 025 fv3_ccpp_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1288,7 +1288,7 @@ Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1336,7 +1336,7 @@ Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1384,7 +1384,7 @@ Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1432,7 +1432,7 @@ Test 029 fv3_ccpp_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1480,7 +1480,7 @@ Test 030 fv3_ccpp_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,7 +1528,7 @@ Test 031 fv3_ccpp_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1576,7 +1576,7 @@ Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,7 +1628,7 @@ Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_cpt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,7 +1682,7 @@ Test 034 fv3_ccpp_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 035 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 036 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 037 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,7 +1978,7 @@ Test 038 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gocart_clm_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gocart_clm_prod Checking test 045 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2428,7 +2428,7 @@ Test 045 fv3_ccpp_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfs_v16beta_flake_prod Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2496,7 +2496,7 @@ Test 046 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2564,7 +2564,7 @@ Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2582,7 +2582,7 @@ Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfs_v16beta_debug_prod Checking test 049 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2650,7 +2650,7 @@ Test 049 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2718,7 +2718,7 @@ Test 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2786,7 +2786,7 @@ Test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gsd_debug_prod Checking test 052 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2854,7 +2854,7 @@ Test 052 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gsd_diag3d_debug_prod Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2922,7 +2922,7 @@ Test 053 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_thompson_debug_prod Checking test 054 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2990,7 +2990,7 @@ Test 054 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_thompson_no_aero_debug_prod Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3058,7 +3058,7 @@ Test 055 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3126,7 +3126,7 @@ Test 056 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3194,7 +3194,7 @@ Test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37268/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3212,5 +3212,5 @@ Test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 14 02:10:43 MST 2020 -Elapsed time: 06h:33m:56s. Have a nice day! +Tue Dec 15 06:37:09 MST 2020 +Elapsed time: 00h:41m:40s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index cabdf6ea3a..4032b15c92 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Sat Dec 12 22:35:35 EST 2020 +Tue Dec 15 10:48:56 EST 2020 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/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-20201214/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/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-20201214/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/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-20201214/INTEL/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/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-20201214/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/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-20201214/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/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-20201214/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/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-20201214/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/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-20201214/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/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-20201214/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/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-20201214/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/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-20201214/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/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 = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -746,8 +746,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -820,8 +820,8 @@ Checking test 014 fv3_ccpp_multigases results .... Test 014 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_control_32bit results .... Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,8 +944,8 @@ Checking test 016 fv3_ccpp_stretched results .... Test 016 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1011,8 +1011,8 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1022,8 +1022,8 @@ Checking test 018 fv3_ccpp_regional_control results .... Test 018 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1031,8 +1031,8 @@ Checking test 019 fv3_ccpp_regional_restart results .... Test 019 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1042,19 +1042,19 @@ Checking test 020 fv3_ccpp_regional_quilt results .... Test 020 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 021 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 phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK Test 021 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_c768_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_regional_c768_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_c768_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_regional_c768_prod Checking test 022 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1064,8 +1064,8 @@ Checking test 022 fv3_ccpp_regional_c768 results .... Test 022 fv3_ccpp_regional_c768 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1094,8 +1094,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1114,8 +1114,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1162,8 +1162,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1210,8 +1210,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1258,8 +1258,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1306,8 +1306,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1354,8 +1354,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,8 +1402,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1450,8 +1450,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_cpt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1504,8 +1504,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gsd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1596,8 +1596,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1664,8 +1664,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,8 +1732,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1800,8 +1800,8 @@ Checking test 036 fv3_ccpp_rrfs_v1beta results .... Test 036 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gocart_clm_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gocart_clm_prod Checking test 037 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1848,8 +1848,8 @@ Checking test 037 fv3_ccpp_gocart_clm results .... Test 037 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gfs_v16beta_flake_prod Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1916,8 +1916,8 @@ Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Test 038 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1984,8 +1984,8 @@ Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2002,8 +2002,8 @@ Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gsd_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2070,8 +2070,8 @@ Checking test 041 fv3_ccpp_gsd_debug results .... Test 041 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2138,8 +2138,8 @@ Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Test 042 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,8 +2206,8 @@ Checking test 043 fv3_ccpp_thompson_debug results .... Test 043 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,8 +2274,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Test 044 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2342,8 +2342,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Test 045 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,8 +2410,8 @@ Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14945/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2429,5 +2429,5 @@ Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sat Dec 12 23:41:21 EST 2020 -Elapsed time: 01h:05m:47s. Have a nice day! +Tue Dec 15 11:19:34 EST 2020 +Elapsed time: 00h:30m:39s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index cae9f848d7..96bde12b2f 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Sun Dec 13 01:56:41 UTC 2020 +Tue Dec 15 14:57:00 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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-20201214/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_48545/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/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 -Sun Dec 13 02:20:48 UTC 2020 -Elapsed time: 00h:24m:08s. Have a nice day! +Tue Dec 15 15:24:52 UTC 2020 +Elapsed time: 00h:27m:52s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index ac94586a4c..da18b47cf2 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Sun Dec 13 03:36:46 UTC 2020 +Tue Dec 15 13:07:12 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 ............ALT CHECK......OK + Comparing phyf000.nc .........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-20201214/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_lndp_prod Checking test 015 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_lndp results .... Test 015 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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-20201214/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_regional_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_regional_c768_prod Checking test 028 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1415,8 +1415,8 @@ Checking test 028 fv3_ccpp_regional_c768 results .... Test 028 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_control_debug_prod Checking test 029 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1445,8 +1445,8 @@ Checking test 029 fv3_ccpp_control_debug results .... Test 029 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_stretched_nest_debug_prod Checking test 030 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1465,8 +1465,8 @@ Checking test 030 fv3_ccpp_stretched_nest_debug results .... Test 030 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfdlmp_prod Checking test 031 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1513,8 +1513,8 @@ Checking test 031 fv3_ccpp_gfdlmp results .... Test 031 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfdlmprad_gwd_prod Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,8 +1561,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Test 032 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1609,8 +1609,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Test 033 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_csawmg_prod Checking test 034 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,8 +1657,8 @@ Checking test 034 fv3_ccpp_csawmg results .... Test 034 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_satmedmf_prod Checking test 035 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 035 fv3_ccpp_satmedmf results .... Test 035 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_satmedmfq_prod Checking test 036 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1753,8 +1753,8 @@ Checking test 036 fv3_ccpp_satmedmfq results .... Test 036 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfdlmp_32bit_prod Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1801,8 +1801,8 @@ Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Test 037 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1853,8 +1853,8 @@ Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Test 038 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_cpt_prod Checking test 039 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1907,8 +1907,8 @@ Checking test 039 fv3_ccpp_cpt results .... Test 039 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gsd_prod Checking test 040 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1999,8 +1999,8 @@ Checking test 040 fv3_ccpp_gsd results .... Test 040 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_rap_prod Checking test 041 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2067,8 +2067,8 @@ Checking test 041 fv3_ccpp_rap results .... Test 041 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_hrrr_prod Checking test 042 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2135,8 +2135,8 @@ Checking test 042 fv3_ccpp_hrrr results .... Test 042 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_thompson_prod Checking test 043 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2203,8 +2203,8 @@ Checking test 043 fv3_ccpp_thompson results .... Test 043 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_thompson_no_aero_prod Checking test 044 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2271,8 +2271,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero results .... Test 044 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_rrfs_v1beta_prod Checking test 045 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2339,8 +2339,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta results .... Test 045 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfs_v15p2_prod Checking test 046 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2407,8 +2407,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2 results .... Test 046 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfs_v16beta_prod Checking test 047 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2487,8 +2487,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta results .... Test 047 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfs_v16beta_restart_prod Checking test 048 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2537,8 +2537,8 @@ Checking test 048 fv3_ccpp_gfs_v16beta_restart results .... Test 048 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 049 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2605,8 +2605,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_stochy results .... Test 049 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2673,8 +2673,8 @@ Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 050 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2741,8 +2741,8 @@ Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 051 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 @@ -2789,8 +2789,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Test 052 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 @@ -2837,8 +2837,8 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Test 053 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 @@ -2885,8 +2885,8 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Test 054 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 @@ -2953,8 +2953,8 @@ Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... Test 055 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 @@ -3021,8 +3021,8 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 @@ -3039,8 +3039,8 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 @@ -3107,8 +3107,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 @@ -3175,8 +3175,8 @@ Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... Test 059 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 @@ -3243,8 +3243,8 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 @@ -3311,8 +3311,8 @@ Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 @@ -3379,8 +3379,8 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Test 062 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 @@ -3447,8 +3447,8 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Test 063 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 @@ -3515,8 +3515,8 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Test 064 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 @@ -3583,8 +3583,8 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Test 065 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 @@ -3651,8 +3651,8 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Test 066 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 @@ -3719,8 +3719,8 @@ Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/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 @@ -3737,8 +3737,8 @@ Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3790,8 +3790,8 @@ Checking test 069 cpld_control results .... Test 069 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_2threads_prod Checking test 070 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3843,8 +3843,8 @@ Checking test 070 cpld_2threads results .... Test 070 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_decomp_prod Checking test 071 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3896,8 +3896,8 @@ Checking test 071 cpld_decomp results .... Test 071 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_satmedmf_prod Checking test 072 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3949,8 +3949,8 @@ Checking test 072 cpld_satmedmf results .... Test 072 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_ca_prod Checking test 073 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4002,8 +4002,8 @@ Checking test 073 cpld_ca results .... Test 073 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_control_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_control_mx025_prod Checking test 074 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4058,8 +4058,8 @@ Checking test 074 cpld_control_mx025 results .... Test 074 cpld_control_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_control_mx025_12h_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_12h_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_control_mx025_12h_prod Checking test 075 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4114,8 +4114,8 @@ Checking test 075 cpld_control_mx025_12h results .... Test 075 cpld_control_mx025_12h PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_restart_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_restart_mx025_prod Checking test 076 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4170,8 +4170,8 @@ Checking test 076 cpld_restart_mx025 results .... Test 076 cpld_restart_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4223,8 +4223,8 @@ Checking test 077 cpld_control_c192 results .... Test 077 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_control_c384_prod Checking test 078 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4279,8 +4279,8 @@ Checking test 078 cpld_control_c384 results .... Test 078 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_controlfrac_c384_prod Checking test 079 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4335,8 +4335,8 @@ Checking test 079 cpld_controlfrac_c384 results .... Test 079 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_bmark_prod Checking test 080 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4391,8 +4391,8 @@ Checking test 080 cpld_bmark results .... Test 080 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_bmark_wave_prod Checking test 081 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4450,8 +4450,8 @@ Checking test 081 cpld_bmark_wave results .... Test 081 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/cpld_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_debug_prod Checking test 082 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4503,8 +4503,8 @@ Checking test 082 cpld_debug results .... Test 082 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/datm_control_cfsr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/datm_control_cfsr_prod Checking test 083 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4512,8 +4512,8 @@ Checking test 083 datm_control_cfsr results .... Test 083 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/datm_control_gefs_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/datm_control_gefs_prod Checking test 084 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4521,30 +4521,48 @@ Checking test 084 datm_control_gefs results .... Test 084 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/datm_mx025_cfsr_prod -Checking test 085 datm_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/datm_bulk_cfsr_prod +Checking test 085 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 085 datm_bulk_cfsr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/datm_bulk_gefs_prod +Checking test 086 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 086 datm_bulk_gefs PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/datm_mx025_cfsr_prod +Checking test 087 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 085 datm_mx025_cfsr PASS +Test 087 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_246795/datm_mx025_gefs_prod -Checking test 086 datm_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/datm_mx025_gefs_prod +Checking test 088 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 086 datm_mx025_gefs PASS +Test 088 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Sun Dec 13 04:24:36 UTC 2020 -Elapsed time: 00h:47m:50s. Have a nice day! +Tue Dec 15 13:55:11 UTC 2020 +Elapsed time: 00h:48m:00s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index ffdc8edcf5..25962e0b60 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Sat Dec 12 21:35:19 CST 2020 +Tue Dec 15 07:06:36 CST 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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-20201214/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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-20201214/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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-20201214/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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-20201214/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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-20201214/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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-20201214/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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-20201214/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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-20201214/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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-20201214/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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-20201214/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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-20201214/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,8 +883,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1055,8 +1055,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_control_32bit results .... Test 019 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1179,8 +1179,8 @@ Checking test 020 fv3_ccpp_stretched results .... Test 020 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 021 fv3_ccpp_stretched_nest results .... Test 021 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1257,8 +1257,8 @@ Checking test 022 fv3_ccpp_regional_control results .... Test 022 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 023 fv3_ccpp_regional_restart results .... Test 023 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1277,19 +1277,19 @@ Checking test 024 fv3_ccpp_regional_quilt results .... Test 024 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_regional_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1299,8 +1299,8 @@ Checking test 026 fv3_ccpp_regional_c768 results .... Test 026 fv3_ccpp_regional_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1329,8 +1329,8 @@ Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -1349,8 +1349,8 @@ Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1397,8 +1397,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -1445,8 +1445,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -1493,8 +1493,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1541,8 +1541,8 @@ Checking test 032 fv3_ccpp_csawmg results .... Test 032 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1589,8 +1589,8 @@ Checking test 033 fv3_ccpp_satmedmf results .... Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1637,8 +1637,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1689,8 +1689,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1743,8 +1743,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1835,8 +1835,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,8 +1903,8 @@ Checking test 038 fv3_ccpp_thompson results .... Test 038 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1971,8 +1971,8 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2039,8 +2039,8 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfs_v15p2_prod Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,8 +2107,8 @@ Checking test 041 fv3_ccpp_gfs_v15p2 results .... Test 041 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfs_v16beta_prod Checking test 042 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2187,8 +2187,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta results .... Test 042 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfs_v16beta_restart_prod Checking test 043 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2237,8 +2237,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta_restart results .... Test 043 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 044 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2305,8 +2305,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_stochy results .... Test 044 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2373,8 +2373,8 @@ Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 045 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 046 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2441,8 +2441,8 @@ Checking test 046 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 046 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfsv16_csawmg_prod Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2489,8 +2489,8 @@ Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Test 047 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfsv16_csawmgt_prod Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2537,8 +2537,8 @@ Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Test 048 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -2585,8 +2585,8 @@ Checking test 049 fv3_ccpp_gocart_clm results .... Test 049 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -2653,8 +2653,8 @@ Checking test 050 fv3_ccpp_gfs_v16beta_flake results .... Test 050 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -2721,8 +2721,8 @@ Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -2739,8 +2739,8 @@ Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -2807,8 +2807,8 @@ Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... Test 053 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -2875,8 +2875,8 @@ Checking test 054 fv3_ccpp_gfs_v16beta_debug results .... Test 054 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -2943,8 +2943,8 @@ Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -3011,8 +3011,8 @@ Checking test 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -3079,8 +3079,8 @@ Checking test 057 fv3_ccpp_gsd_debug results .... Test 057 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -3147,8 +3147,8 @@ Checking test 058 fv3_ccpp_gsd_diag3d_debug results .... Test 058 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -3215,8 +3215,8 @@ Checking test 059 fv3_ccpp_thompson_debug results .... Test 059 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -3283,8 +3283,8 @@ Checking test 060 fv3_ccpp_thompson_no_aero_debug results .... Test 060 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -3351,8 +3351,8 @@ Checking test 061 fv3_ccpp_rrfs_v1beta_debug results .... Test 061 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -3419,8 +3419,8 @@ Checking test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/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 @@ -3437,8 +3437,8 @@ Checking test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_control_prod Checking test 064 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3490,8 +3490,8 @@ Checking test 064 cpld_control results .... Test 064 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_2threads_prod Checking test 065 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3543,8 +3543,8 @@ Checking test 065 cpld_2threads results .... Test 065 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_decomp_prod Checking test 066 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3596,8 +3596,8 @@ Checking test 066 cpld_decomp results .... Test 066 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_satmedmf_prod Checking test 067 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3649,8 +3649,8 @@ Checking test 067 cpld_satmedmf results .... Test 067 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_ca_prod Checking test 068 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3702,8 +3702,8 @@ Checking test 068 cpld_ca results .... Test 068 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_control_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_control_mx025_prod Checking test 069 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3758,8 +3758,8 @@ Checking test 069 cpld_control_mx025 results .... Test 069 cpld_control_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_control_mx025_12h_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_12h_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_control_mx025_12h_prod Checking test 070 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3814,8 +3814,8 @@ Checking test 070 cpld_control_mx025_12h results .... Test 070 cpld_control_mx025_12h PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_restart_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_restart_mx025_prod Checking test 071 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3870,8 +3870,8 @@ Checking test 071 cpld_restart_mx025 results .... Test 071 cpld_restart_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_control_c192_prod Checking test 072 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3923,8 +3923,8 @@ Checking test 072 cpld_control_c192 results .... Test 072 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_control_c384_prod Checking test 073 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3979,8 +3979,8 @@ Checking test 073 cpld_control_c384 results .... Test 073 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_controlfrac_c384_prod Checking test 074 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4035,8 +4035,8 @@ Checking test 074 cpld_controlfrac_c384 results .... Test 074 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_bmark_prod Checking test 075 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4091,8 +4091,8 @@ Checking test 075 cpld_bmark results .... Test 075 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_bmark_wave_prod Checking test 076 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4150,8 +4150,8 @@ Checking test 076 cpld_bmark_wave results .... Test 076 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/cpld_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_debug_prod Checking test 077 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4203,8 +4203,8 @@ Checking test 077 cpld_debug results .... Test 077 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/datm_control_cfsr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/datm_control_cfsr_prod Checking test 078 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4212,8 +4212,8 @@ Checking test 078 datm_control_cfsr results .... Test 078 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/datm_control_gefs_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/datm_control_gefs_prod Checking test 079 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4221,30 +4221,48 @@ Checking test 079 datm_control_gefs results .... Test 079 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/datm_mx025_cfsr_prod -Checking test 080 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/datm_bulk_cfsr_prod +Checking test 080 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 080 datm_bulk_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/datm_bulk_gefs_prod +Checking test 081 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 081 datm_bulk_gefs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/datm_mx025_cfsr_prod +Checking test 082 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 080 datm_mx025_cfsr PASS +Test 082 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_128237/datm_mx025_gefs_prod -Checking test 081 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/datm_mx025_gefs_prod +Checking test 083 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 081 datm_mx025_gefs PASS +Test 083 datm_mx025_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Sat Dec 12 22:26:12 CST 2020 -Elapsed time: 00h:50m:53s. Have a nice day! +Tue Dec 15 07:56:51 CST 2020 +Elapsed time: 00h:50m:16s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 4bd5022166..18d614adf0 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Mon Dec 14 02:31:31 UTC 2020 +Tue Dec 15 15:18:30 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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-20201214/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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-20201214/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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-20201214/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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-20201214/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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-20201214/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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-20201214/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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-20201214/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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-20201214/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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-20201214/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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-20201214/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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-20201214/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,8 +1012,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,8 +1079,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1090,8 +1090,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1121,8 +1121,8 @@ Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1151,8 +1151,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1171,8 +1171,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,8 +1267,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,8 +1363,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,8 +1411,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,8 +1459,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,8 +1507,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,8 +1559,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,8 +1613,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 035 fv3_ccpp_thompson results .... Test 035 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Test 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_rrfs_v1beta_prod Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_rrfs_v1beta results .... Test 037 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfs_v16beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfs_v16beta_prod Checking test 038 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1989,8 +1989,8 @@ Checking test 038 fv3_ccpp_gfs_v16beta results .... Test 038 fv3_ccpp_gfs_v16beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfs_v16beta_restart_prod Checking test 039 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2039,8 +2039,8 @@ Checking test 039 fv3_ccpp_gfs_v16beta_restart results .... Test 039 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 040 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,8 +2107,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta_stochy results .... Test 040 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2175,8 +2175,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 041 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfsv16_csawmg_prod Checking test 042 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2223,8 +2223,8 @@ Checking test 042 fv3_ccpp_gfsv16_csawmg results .... Test 042 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfsv16_csawmgt_prod Checking test 043 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2271,8 +2271,8 @@ Checking test 043 fv3_ccpp_gfsv16_csawmgt results .... Test 043 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gocart_clm_prod Checking test 044 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2319,8 +2319,8 @@ Checking test 044 fv3_ccpp_gocart_clm results .... Test 044 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfs_v16beta_flake_prod Checking test 045 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2387,8 +2387,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_flake results .... Test 045 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2455,8 +2455,8 @@ Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2473,8 +2473,8 @@ Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfs_v16beta_debug_prod Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2541,8 +2541,8 @@ Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... Test 048 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2609,8 +2609,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gsd_debug_prod Checking test 050 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2677,8 +2677,8 @@ Checking test 050 fv3_ccpp_gsd_debug results .... Test 050 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gsd_diag3d_debug_prod Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2745,8 +2745,8 @@ Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Test 051 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_thompson_debug_prod Checking test 052 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2813,8 +2813,8 @@ Checking test 052 fv3_ccpp_thompson_debug results .... Test 052 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_thompson_no_aero_debug_prod Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2881,8 +2881,8 @@ Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... Test 053 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2949,8 +2949,8 @@ Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Test 054 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3017,8 +3017,8 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_27054/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3036,5 +3036,5 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 14 03:11:51 UTC 2020 -Elapsed time: 00h:40m:21s. Have a nice day! +Tue Dec 15 15:58:47 UTC 2020 +Elapsed time: 00h:40m:18s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 887f1156e0..10767e9a21 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Mon Dec 14 03:57:13 UTC 2020 +Tue Dec 15 13:43:53 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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-20201214/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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-20201214/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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-20201214/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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-20201214/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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-20201214/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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-20201214/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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-20201214/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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 .........OK Comparing dynf000.nc ............ALT CHECK......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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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-20201214/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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-20201214/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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-20201214/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -863,9 +863,9 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 001 fv3_ccpp_gfdlmprad_atmwav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -912,8 +912,8 @@ Checking test 001 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -986,8 +986,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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 @@ -1054,8 +1054,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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 @@ -1177,8 +1177,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1188,8 +1188,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1197,8 +1197,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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 @@ -1219,8 +1219,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_regional_c768_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_regional_c768_prod Checking test 025 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1230,8 +1230,8 @@ Checking test 025 fv3_ccpp_regional_c768 results .... Test 025 fv3_ccpp_regional_c768 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_control_debug_prod Checking test 026 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1260,8 +1260,8 @@ Checking test 026 fv3_ccpp_control_debug results .... Test 026 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_stretched_nest_debug_prod Checking test 027 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1280,8 +1280,8 @@ Checking test 027 fv3_ccpp_stretched_nest_debug results .... Test 027 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,8 +1328,8 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,8 +1376,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1424,8 +1424,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1472,8 +1472,8 @@ Checking test 031 fv3_ccpp_csawmg results .... Test 031 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1520,8 +1520,8 @@ Checking test 032 fv3_ccpp_satmedmf results .... Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1568,8 +1568,8 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1616,8 +1616,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1668,8 +1668,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,8 +1722,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1814,8 +1814,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1882,8 +1882,8 @@ Checking test 038 fv3_ccpp_thompson results .... Test 038 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1950,8 +1950,8 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2018,8 +2018,8 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfs_v16beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfs_v16beta_prod Checking test 041 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2098,8 +2098,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta results .... Test 041 fv3_ccpp_gfs_v16beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfs_v16beta_restart_prod Checking test 042 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2148,8 +2148,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_restart results .... Test 042 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 043 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2216,8 +2216,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta_stochy results .... Test 043 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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 @@ -2284,8 +2284,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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 @@ -2332,8 +2332,8 @@ Checking test 045 fv3_ccpp_gfsv16_csawmg results .... Test 045 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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 @@ -2380,8 +2380,8 @@ Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... Test 046 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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 @@ -2428,8 +2428,8 @@ Checking test 047 fv3_ccpp_gocart_clm results .... Test 047 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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 @@ -2496,8 +2496,8 @@ Checking test 048 fv3_ccpp_gfs_v16beta_flake results .... Test 048 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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 @@ -2564,8 +2564,8 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/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 @@ -2582,8 +2582,8 @@ Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfs_v16beta_debug_prod Checking test 051 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2650,8 +2650,8 @@ Checking test 051 fv3_ccpp_gfs_v16beta_debug results .... Test 051 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2718,8 +2718,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gsd_debug_prod Checking test 053 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2786,8 +2786,8 @@ Checking test 053 fv3_ccpp_gsd_debug results .... Test 053 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gsd_diag3d_debug_prod Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2854,8 +2854,8 @@ Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Test 054 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_thompson_debug_prod Checking test 055 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2922,8 +2922,8 @@ Checking test 055 fv3_ccpp_thompson_debug results .... Test 055 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_thompson_no_aero_debug_prod Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2990,8 +2990,8 @@ Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Test 056 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3058,8 +3058,8 @@ Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Test 057 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3126,8 +3126,8 @@ Checking test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3144,8 +3144,8 @@ Checking test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_control_prod Checking test 060 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3197,8 +3197,8 @@ Checking test 060 cpld_control results .... Test 060 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_2threads_prod Checking test 061 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3250,8 +3250,8 @@ Checking test 061 cpld_2threads results .... Test 061 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_decomp_prod Checking test 062 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3303,8 +3303,8 @@ Checking test 062 cpld_decomp results .... Test 062 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_satmedmf_prod Checking test 063 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3356,8 +3356,8 @@ Checking test 063 cpld_satmedmf results .... Test 063 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_ca_prod Checking test 064 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3409,8 +3409,8 @@ Checking test 064 cpld_ca results .... Test 064 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_control_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_control_mx025_prod Checking test 065 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3465,8 +3465,8 @@ Checking test 065 cpld_control_mx025 results .... Test 065 cpld_control_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_control_mx025_12h_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_mx025_12h_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_control_mx025_12h_prod Checking test 066 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3521,8 +3521,8 @@ Checking test 066 cpld_control_mx025_12h results .... Test 066 cpld_control_mx025_12h PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_restart_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_restart_mx025_prod Checking test 067 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3577,8 +3577,8 @@ Checking test 067 cpld_restart_mx025 results .... Test 067 cpld_restart_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_control_c192_prod Checking test 068 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3630,8 +3630,8 @@ Checking test 068 cpld_control_c192 results .... Test 068 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_control_c384_prod Checking test 069 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3686,8 +3686,8 @@ Checking test 069 cpld_control_c384 results .... Test 069 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_controlfrac_c384_prod Checking test 070 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3742,8 +3742,8 @@ Checking test 070 cpld_controlfrac_c384 results .... Test 070 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_bmark_prod Checking test 071 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3798,8 +3798,8 @@ Checking test 071 cpld_bmark results .... Test 071 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_bmark_wave_prod Checking test 072 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3857,8 +3857,8 @@ Checking test 072 cpld_bmark_wave results .... Test 072 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201214/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_9202/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_debug_prod Checking test 073 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3911,5 +3911,5 @@ Test 073 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 14 05:46:20 UTC 2020 -Elapsed time: 01h:49m:07s. Have a nice day! +Tue Dec 15 15:35:11 UTC 2020 +Elapsed time: 01h:51m:20s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 94a1ef9464..10cf958f17 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -45,6 +45,14 @@ elif [[ $MACHINE_ID = wcoss_dell_p3 || $MACHINE_ID = wcoss2 ]]; then THRD_cpl_c384=1; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" + TASKS_datm_100=120; TPN_datm_100=28 + MPB_datm_100="16 77"; APB_datm_100="0 15" + OPB_datm_100="78 107"; IPB_datm_100="108 119" + + TASKS_datm_025=208; TPN_datm_025=28 + MPB_datm_025="0 39"; APB_datm_025="0 39" + OPB_datm_025="40 159"; IPB_datm_025="160 207" + elif [[ $MACHINE_ID = orion.* ]]; then TASKS_dflt=150 ; TPN_dflt=40 ; INPES_dflt=3 ; JNPES_dflt=8 @@ -76,6 +84,14 @@ elif [[ $MACHINE_ID = orion.* ]]; then THRD_cpl_c384=1; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" + TASKS_datm_100=120; TPN_datm_100=40 + MPB_datm_100="16 77"; APB_datm_100="0 15" + OPB_datm_100="78 107"; IPB_datm_100="108 119" + + TASKS_datm_025=208; TPN_datm_025=40 + MPB_datm_025="0 39"; APB_datm_025="0 39" + OPB_datm_025="40 159"; IPB_datm_025="160 207" + elif [[ $MACHINE_ID = hera.* ]]; then TASKS_dflt=150 ; TPN_dflt=40 ; INPES_dflt=3 ; JNPES_dflt=8 @@ -107,6 +123,14 @@ elif [[ $MACHINE_ID = hera.* ]]; then THRD_cpl_c384=1; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" + TASKS_datm_100=120; TPN_datm_100=40 + MPB_datm_100="16 77"; APB_datm_100="0 15" + OPB_datm_100="78 107"; IPB_datm_100="108 119" + + TASKS_datm_025=208; TPN_datm_025=40 + MPB_datm_025="0 39"; APB_datm_025="0 39" + OPB_datm_025="40 159"; IPB_datm_025="160 207" + elif [[ $MACHINE_ID = linux.* ]]; then if [[ $CI_TEST = true ]]; then @@ -139,6 +163,38 @@ elif [[ $MACHINE_ID = cheyenne.* ]]; then TASKS_stretch=48 ; TPN_stretch=18 ; INPES_stretch=2 ; JNPES_stretch=4 TASKS_strnest=96 ; TPN_strnest=18 ; INPES_strnest=2 ; JNPES_strnest=4 + TASKS_cpl_dflt=192; TPN_cpl_dflt=36; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 + THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" + OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191" + + TASKS_cpl_thrd=120; TPN_cpl_thrd=36; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 + THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" + OPB_cpl_thrd="78 107"; IPB_cpl_thrd="108 119" + + TASKS_cpl_bmrk=480; TPN_cpl_bmrk=36; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 + THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" + OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479" + + TASKS_cpl_wwav=520; TPN_cpl_wwav=36; INPES_cpl_wwav=6; JNPES_cpl_wwav=8 + THRD_cpl_wwav=1; WPG_cpl_wwav=24; MPB_cpl_wwav="0 287"; APB_cpl_wwav="0 311" + OPB_cpl_wwav="312 431"; IPB_cpl_wwav="432 479"; WPB_cpl_wwav="480 519" + + TASKS_cpl_c192=288; TPN_cpl_c192=36; INPES_cpl_c192=4; JNPES_cpl_c192=8 + THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" + OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" + + TASKS_cpl_c384=318; TPN_cpl_c384=36; INPES_cpl_c384=3; JNPES_cpl_c384=8 + THRD_cpl_c384=1; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" + OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" + + TASKS_datm_100=120; TPN_datm_100=36 + MPB_datm_100="16 77"; APB_datm_100="0 15" + OPB_datm_100="78 107"; IPB_datm_100="108 119" + + TASKS_datm_025=208; TPN_datm_025=36 + MPB_datm_025="0 39"; APB_datm_025="0 39" + OPB_datm_025="40 159"; IPB_datm_025="160 207" + elif [[ $MACHINE_ID = stampede.* ]]; then TASKS_dflt=150 ; TPN_dflt=48 ; INPES_dflt=3 ; JNPES_dflt=8 @@ -168,6 +224,15 @@ elif [[ $MACHINE_ID = stampede.* ]]; then TASKS_cpl_c384=318; TPN_cpl_c384=48; INPES_cpl_c384=3; JNPES_cpl_c384=8 THRD_cpl_c384=1; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" + + TASKS_datm_100=120; TPN_datm_100=48 + MPB_datm_100="16 77"; APB_datm_100="0 15" + OPB_datm_100="78 107"; IPB_datm_100="108 119" + + TASKS_datm_025=208; TPN_datm_025=48 + MPB_datm_025="0 39"; APB_datm_025="0 39" + OPB_datm_025="40 159"; IPB_datm_025="160 207" + else echo "Unknown MACHINE_ID ${MACHINE_ID}" @@ -494,13 +559,13 @@ export med_model="nems" export atm_model="datm" export ocn_model="mom6" export ice_model="cice6" -export atm_petlist_bounds="0 15" -export med_petlist_bounds="16 111" -export ocn_petlist_bounds="112 231" -export ice_petlist_bounds="232 255" -export TASKS=256 -export TPN=40 -export NPROC_ICE='24' +export atm_petlist_bounds=$APB_datm_100 +export med_petlist_bounds=$MPB_datm_100 +export ocn_petlist_bounds=$OPB_datm_100 +export ice_petlist_bounds=$IPB_datm_100 +export TASKS=$TASKS_datm_100 +export TPN=$TPN_datm_100 +export NPROC_ICE='12' export ENS_NUM=1 export SYEAR='2011' @@ -512,6 +577,7 @@ export CDATE=${SYEAR}${SMONTH}${SDAY}${SHOUR} export NFHOUT=6 export FDIAG=6 export DT_ATMOS='900' +export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='1800' export DT_THERM_MOM6='3600' export CPL_SLOW=${DT_THERM_MOM6} @@ -524,6 +590,9 @@ export CPLMODE='nems_orig_data' export cap_dbug_flag="0" export use_coldstart=".false." export RUNTYPE='startup' +export flux_convergence='0.0' +export flux_iteration='2' +export flux_scheme='0' export INPUT_NML=input.mom6.nml.IN export MODEL_CONFIGURE=datm_configure.IN @@ -543,7 +612,6 @@ export MOM6_THERMO_SPAN='False' export MOM6_USE_WAVES='False' # CICE6 defaults; 1 degree -export DT_CICE=${DT_ATMOS} export MESHICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" diff --git a/tests/parm/datm_configure.IN b/tests/parm/datm_configure.IN index 08b5f95ea4..00787d5ab0 100644 --- a/tests/parm/datm_configure.IN +++ b/tests/parm/datm_configure.IN @@ -1,5 +1,5 @@ -total_member: 1 -print_esmf: .false. +total_member: 1 +print_esmf: .true. PE_MEMBER01: @[TASKS] start_year: @[SYEAR] start_month: @[SMONTH] diff --git a/tests/parm/datm_data_table.IN b/tests/parm/datm_data_table.IN index 1495adc516..89412daad8 100644 --- a/tests/parm/datm_data_table.IN +++ b/tests/parm/datm_data_table.IN @@ -1,5 +1,5 @@ # this file will be read as a nems config file to set -# fields which might not be available with all forcing +# fields which might not be available with all forcing # sources mean_zonal_moment_flx_atm .true. mean_merid_moment_flx_atm .true. @@ -9,6 +9,10 @@ inst_spec_humid_height_lowest .true. inst_zonal_wind_height_lowest .true. inst_merid_wind_height_lowest .true. inst_pres_height_lowest .true. + inst_temp_height2m .true. + inst_spec_humid_height2m .true. + inst_zonal_wind_height10m .true. + inst_merid_wind_height10m .true. mean_down_sw_flx .true. mean_down_lw_flx .true. mean_up_lw_flx .true. diff --git a/tests/parm/nems.configure.cpld.IN b/tests/parm/nems.configure.cpld.IN index 4a49653e0a..42bc0d7981 100644 --- a/tests/parm/nems.configure.cpld.IN +++ b/tests/parm/nems.configure.cpld.IN @@ -93,7 +93,8 @@ ALLCOMP_attributes:: ScalarFieldIdxGridNY = 2 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] - case_name = ./RESTART/ufs.cpld + restart_dir = RESTART/ + case_name = ufs.cpld restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 diff --git a/tests/parm/nems.configure.cpld_wave.IN b/tests/parm/nems.configure.cpld_wave.IN index dda3ae7f99..8b85ac02a2 100644 --- a/tests/parm/nems.configure.cpld_wave.IN +++ b/tests/parm/nems.configure.cpld_wave.IN @@ -44,7 +44,7 @@ ICE_attributes:: mesh_ice = @[MESHICE] stop_n = @[RESTART_N] stop_option = nhours - stop_ymd = -999 + stop_ymd = -999 :: # WAV # @@ -107,7 +107,8 @@ ALLCOMP_attributes:: ScalarFieldIdxGridNY = 2 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] - case_name = ./RESTART/ufs.cpld + restart_dir = RESTART/ + case_name = ufs.cpld restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 diff --git a/tests/parm/nems.configure.datm.IN b/tests/parm/nems.configure.datm.IN index 737404901c..d8cefcc131 100644 --- a/tests/parm/nems.configure.datm.IN +++ b/tests/parm/nems.configure.datm.IN @@ -21,7 +21,6 @@ ATM_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true - DebugFlag = 0 :: # OCN # @@ -93,14 +92,15 @@ ALLCOMP_attributes:: ScalarFieldIdxGridNY = 2 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] - case_name = RESTART/DATM_@[DATM_SRC] + restart_dir = RESTART/ + case_name = DATM_@[DATM_SRC] restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 dbug_flag = @[cap_dbug_flag] use_coldstart = @[use_coldstart] coldair_outbreak_mod = .false. - flds_wiso = .false. - flux_convergence = 0.0 - flux_max_iteration = 1 + flux_convergence = @[flux_convergence] + flux_max_iteration = @[flux_iteration] + ocn_surface_flux_scheme = @[flux_scheme] :: diff --git a/tests/rt.conf b/tests/rt.conf index be724ae441..8746849011 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -209,33 +209,34 @@ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | #COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | cheyenne.intel | fv3 | RUN | cpld_control | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_control | standard | cheyenne.intel | fv3 | +# following two tests are not run on any platform #RUN | cpld_control_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | #RUN | cpld_restart | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_12h RUN | cpld_2threads | standard | hera.intel orion.intel wcoss_dell_p3 | | -#RUN | cpld_2threads | standard | cheyenne.intel | | RUN | cpld_decomp | standard | hera.intel orion.intel wcoss_dell_p3 | | -#RUN | cpld_decomp | standard | cheyenne.intel | | RUN | cpld_satmedmf | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_satmedmf | standard | cheyenne.intel | fv3 | RUN | cpld_ca | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control | standard | cheyenne.intel | fv3 | +#RUN | cpld_2threads | standard | cheyenne.intel | | +#RUN | cpld_decomp | standard | cheyenne.intel | | +#RUN | cpld_satmedmf | standard | cheyenne.intel | fv3 | #RUN | cpld_ca | standard | cheyenne.intel | fv3 | # restart test at c96mx025 RUN | cpld_control_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_control_mx025 | standard | cheyenne.intel | fv3 | RUN | cpld_control_mx025_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_control_mx025_12h | standard | cheyenne.intel | fv3 | RUN | cpld_restart_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_mx025_12h +#RUN | cpld_control_mx025 | standard | cheyenne.intel | fv3 | +#RUN | cpld_control_mx025_12h | standard | cheyenne.intel | fv3 | #RUN | cpld_restart_mx025 | standard | cheyenne.intel | | cpld_control_mx025_12h RUN | cpld_control_c192 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_control_c192 | standard | cheyenne.intel | fv3 | RUN | cpld_control_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_control_c384 | standard | cheyenne.intel | fv3 | RUN | cpld_controlfrac_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_controlfrac_c384 | standard | cheyenne.intel | fv3 | RUN | cpld_bmark | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control_c192 | standard | cheyenne.intel | fv3 | +#RUN | cpld_control_c384 | standard | cheyenne.intel | fv3 | +#RUN | cpld_controlfrac_c384 | standard | cheyenne.intel | fv3 | #RUN | cpld_bmark | standard | cheyenne.intel | fv3 | COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | @@ -255,10 +256,16 @@ RUN | cpld_debug COMPILE | DATM=Y S2S=Y | standard | hera.intel orion.intel | fv3 | #COMPILE | DATM=Y S2S=Y | standard | cheyenne.intel | fv3 | RUN | datm_control_cfsr | standard | hera.intel orion.intel | fv3 | -#RUN | datm_control_cfsr | standard | cheyenne.intel | fv3 | RUN | datm_control_gefs | standard | hera.intel orion.intel | fv3 | +#RUN | datm_control_cfsr | standard | cheyenne.intel | fv3 | #RUN | datm_control_gefs | standard | cheyenne.intel | fv3 | + +RUN | datm_bulk_cfsr | standard | hera.intel orion.intel | fv3 | +RUN | datm_bulk_gefs | standard | hera.intel orion.intel | fv3 | +#RUN | datm_bulk_cfsr | standard | cheyenne.intel | fv3 | +#RUN | datm_bulk_gefs | standard | cheyenne.intel | fv3 | + RUN | datm_mx025_cfsr | standard | hera.intel orion.intel | fv3 | -#RUN | datm_mx025_cfsr | standard | cheyenne.intel | fv3 | RUN | datm_mx025_gefs | standard | hera.intel orion.intel | fv3 | +#RUN | datm_mx025_cfsr | standard | cheyenne.intel | fv3 | #RUN | datm_mx025_gefs | standard | cheyenne.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 53db528da1..921f158799 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -423,9 +423,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-20201214/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201215/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201214} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201215} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20201201/} diff --git a/tests/tests/datm_bulk_cfsr b/tests/tests/datm_bulk_cfsr new file mode 100644 index 0000000000..991243da75 --- /dev/null +++ b/tests/tests/datm_bulk_cfsr @@ -0,0 +1,21 @@ +# +# DATM_MOM6_CICE_CMEPS_CFSR test +# + +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_CFSR - bulk flux test" + +export CNTL_DIR="datm_bulk_cfsr" + +export LIST_FILES="RESTART/MOM.res.nc \ + RESTART/iced.2011-10-02-00000.nc \ + RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" + +export_datm +export DATM_SRC="CFSR" +export FILENAME_BASE='cfsr.' +export IATM=1760 +export JATM=880 + +export flux_scheme='-1' + +export FV3_RUN=cpld_datm_cfsr.IN diff --git a/tests/tests/datm_bulk_gefs b/tests/tests/datm_bulk_gefs new file mode 100644 index 0000000000..3436624b60 --- /dev/null +++ b/tests/tests/datm_bulk_gefs @@ -0,0 +1,21 @@ +# +# DATM_MOM6_CICE_CMEPS_GEFS test +# + +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_GEFS - bulk flux test" + +export CNTL_DIR="datm_bulk_gefs" + +export LIST_FILES="RESTART/MOM.res.nc \ + RESTART/iced.2011-10-02-00000.nc \ + RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc" + +export_datm +export DATM_SRC="GEFS" +export FILENAME_BASE='gefs.' +export IATM=1760 +export JATM=880 + +export flux_scheme='-1' + +export FV3_RUN=cpld_datm_gefs.IN diff --git a/tests/tests/datm_control_cfsr b/tests/tests/datm_control_cfsr index 8cec449e7b..8a8dcad952 100644 --- a/tests/tests/datm_control_cfsr +++ b/tests/tests/datm_control_cfsr @@ -1,8 +1,8 @@ # -# DATM_MOM6_CICE_CMEPS_COLD_CFSR test +# DATM_MOM6_CICE_CMEPS_CFSR test # -export TEST_DESCR="DATM-MOM6-CICE-CMEPS_CFSR - 1 step cold start" +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_CFSR - control " export CNTL_DIR="datm_control_cfsr" diff --git a/tests/tests/datm_control_gefs b/tests/tests/datm_control_gefs index 3ddb614eac..176170a8a9 100644 --- a/tests/tests/datm_control_gefs +++ b/tests/tests/datm_control_gefs @@ -1,8 +1,8 @@ # -# DATM_MOM6_CICE_CMEPS_COLD_GEFS test +# DATM_MOM6_CICE_CMEPS_GEFS test # -export TEST_DESCR="DATM-MOM6-CICE-CMEPS_GEFS - 1 step cold start" +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_GEFS - control" export CNTL_DIR="datm_control_gefs" diff --git a/tests/tests/datm_mx025_cfsr b/tests/tests/datm_mx025_cfsr index 8f7273d2f4..43f898acf4 100644 --- a/tests/tests/datm_mx025_cfsr +++ b/tests/tests/datm_mx025_cfsr @@ -1,8 +1,8 @@ # -# DATM_MOM6_CICE_CMEPS_1_STEP_COLD_CFSR test +# DATM_MOM6_CICE_CMEPS_CFSR test # -export TEST_DESCR="DATM-MOM6-CICE-CMEPS_CFSR - 1-step cold start" +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_CFSR - 1/4deg ocean+ice" export CNTL_DIR="datm_mx025_cfsr" @@ -20,12 +20,12 @@ export FILENAME_BASE='cfsr.' export IATM=1760 export JATM=880 -export atm_petlist_bounds="0 39" -export med_petlist_bounds="0 39" -export ocn_petlist_bounds="40 159" -export ice_petlist_bounds="160 207" -export TASKS=208 -export TPN=40 +export TASKS=$TASKS_datm_025 +export TPN=$TPN_datm_025 +export atm_petlist_bounds=$APB_datm_025 +export med_petlist_bounds=$MPB_datm_025 +export ocn_petlist_bounds=$OPB_datm_025 +export ice_petlist_bounds=$IPB_datm_025 export NPROC_ICE='48' # atm/ocn/ice resolution diff --git a/tests/tests/datm_mx025_gefs b/tests/tests/datm_mx025_gefs index a4489f5129..fdae65e29a 100644 --- a/tests/tests/datm_mx025_gefs +++ b/tests/tests/datm_mx025_gefs @@ -1,8 +1,8 @@ # -# DATM_MOM6_CICE_CMEPS_1_STEP_COLD_GEFS test +# DATM_MOM6_CICE_CMEPS_GEFS test # -export TEST_DESCR="DATM-MOM6-CICE-CMEPS_GEFS - 1-step cold start" +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_GEFS - 1/4deg ocean+ice" export CNTL_DIR="datm_mx025_gefs" @@ -16,12 +16,12 @@ export LIST_FILES="RESTART/MOM.res.nc \ export_datm export WLCLK=40 -export atm_petlist_bounds="0 39" -export med_petlist_bounds="0 39" -export ocn_petlist_bounds="40 159" -export ice_petlist_bounds="160 207" -export TASKS=208 -export TPN=40 +export TASKS=$TASKS_datm_025 +export TPN=$TPN_datm_025 +export atm_petlist_bounds=$APB_datm_025 +export med_petlist_bounds=$MPB_datm_025 +export ocn_petlist_bounds=$OPB_datm_025 +export ice_petlist_bounds=$IPB_datm_025 export NPROC_ICE='48' # atm/ocn/ice resolution From d5fa4c1084f53ee3c5b08d476b77d533cbacae76 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 16 Dec 2020 13:39:25 -0700 Subject: [PATCH 041/109] Update submodule pointer for fv3atm / ccpp-physics - MYNN surface layer updates and bugfixes (#52) --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index c59787a89d..b1e98cf2b9 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c59787a89dd81f3a642a4ec8c6a32dab20e6ab56 +Subproject commit b1e98cf2b91a593203637115b85882c0ba198aa4 From 22c39c53291ec3d57bb10b333951a652f97dd856 Mon Sep 17 00:00:00 2001 From: BinLi-NOAA Date: Wed, 16 Dec 2020 17:14:01 -0500 Subject: [PATCH 042/109] Add 2 new tests for DATM-MOM6-CICE6 application (#332) * Add the following 2 tests: datm_restart_cfsr, datm_debug_cfsr * Add wcoss_dell_p3.log. * Add Hera log, Orion log, wcoss_dell_p3 log. --- tests/RegressionTests_hera.intel.log | 224 +++++++++++----------- tests/RegressionTests_orion.intel.log | 210 +++++++++++---------- tests/RegressionTests_wcoss_dell_p3.log | 236 ++++++++++++++++-------- tests/default_vars.sh | 6 +- tests/fv3_conf/cpld_datm_cfsr.IN | 24 ++- tests/fv3_conf/cpld_datm_gefs.IN | 3 +- tests/parm/datm_configure.IN | 2 + tests/rt.conf | 18 +- tests/tests/datm_control_cfsr | 1 + tests/tests/datm_debug_cfsr | 21 +++ tests/tests/datm_restart_cfsr | 26 +++ 11 files changed, 479 insertions(+), 292 deletions(-) create mode 100644 tests/tests/datm_debug_cfsr create mode 100644 tests/tests/datm_restart_cfsr diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index da18b47cf2..bf991e770f 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Tue Dec 15 13:07:12 UTC 2020 +Wed Dec 16 16:48:57 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_lndp_prod Checking test 015 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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-20201215/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1394,10 +1394,10 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK @@ -1405,7 +1405,7 @@ Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_regional_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_regional_c768_prod Checking test 028 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1416,7 +1416,7 @@ Test 028 fv3_ccpp_regional_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_control_debug_prod Checking test 029 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1446,7 +1446,7 @@ Test 029 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_stretched_nest_debug_prod Checking test 030 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1466,7 +1466,7 @@ Test 030 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfdlmp_prod Checking test 031 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1514,7 +1514,7 @@ Test 031 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfdlmprad_gwd_prod Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1562,7 +1562,7 @@ Test 032 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1610,7 +1610,7 @@ Test 033 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_csawmg_prod Checking test 034 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1658,7 +1658,7 @@ Test 034 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_satmedmf_prod Checking test 035 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1706,7 +1706,7 @@ Test 035 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_satmedmfq_prod Checking test 036 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1754,7 +1754,7 @@ Test 036 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfdlmp_32bit_prod Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1802,7 +1802,7 @@ Test 037 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1854,7 +1854,7 @@ Test 038 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_cpt_prod Checking test 039 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1908,7 +1908,7 @@ Test 039 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gsd_prod Checking test 040 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2000,7 +2000,7 @@ Test 040 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_rap_prod Checking test 041 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2068,7 +2068,7 @@ Test 041 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_hrrr_prod Checking test 042 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2136,7 +2136,7 @@ Test 042 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_thompson_prod Checking test 043 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2204,7 +2204,7 @@ Test 043 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_thompson_no_aero_prod Checking test 044 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2272,7 +2272,7 @@ Test 044 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_rrfs_v1beta_prod Checking test 045 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2340,7 +2340,7 @@ Test 045 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfs_v15p2_prod Checking test 046 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2408,7 +2408,7 @@ Test 046 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfs_v16beta_prod Checking test 047 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2488,7 +2488,7 @@ Test 047 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfs_v16beta_restart_prod Checking test 048 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2538,7 +2538,7 @@ Test 048 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 049 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2606,7 +2606,7 @@ Test 049 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2674,7 +2674,7 @@ Test 050 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2742,7 +2742,7 @@ Test 051 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 @@ -2790,7 +2790,7 @@ Test 052 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 @@ -2838,7 +2838,7 @@ Test 053 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 @@ -2886,7 +2886,7 @@ Test 054 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 @@ -2954,7 +2954,7 @@ Test 055 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 @@ -3022,7 +3022,7 @@ Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 @@ -3040,7 +3040,7 @@ Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 @@ -3108,7 +3108,7 @@ Test 058 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 @@ -3176,7 +3176,7 @@ Test 059 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 @@ -3244,7 +3244,7 @@ Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 @@ -3312,7 +3312,7 @@ Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 @@ -3380,7 +3380,7 @@ Test 062 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 @@ -3448,7 +3448,7 @@ Test 063 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 @@ -3516,7 +3516,7 @@ Test 064 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 @@ -3584,7 +3584,7 @@ Test 065 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 @@ -3652,7 +3652,7 @@ Test 066 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 @@ -3720,7 +3720,7 @@ Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/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 @@ -3738,7 +3738,7 @@ Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3791,7 +3791,7 @@ Test 069 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_2threads_prod Checking test 070 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3844,7 +3844,7 @@ Test 070 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_decomp_prod Checking test 071 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3897,7 +3897,7 @@ Test 071 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_satmedmf_prod Checking test 072 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3950,7 +3950,7 @@ Test 072 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_ca_prod Checking test 073 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4003,7 +4003,7 @@ Test 073 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_control_mx025_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_control_mx025_prod Checking test 074 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4059,7 +4059,7 @@ Test 074 cpld_control_mx025 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_control_mx025_12h_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_control_mx025_12h_prod Checking test 075 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4115,7 +4115,7 @@ Test 075 cpld_control_mx025_12h PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_restart_mx025_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_restart_mx025_prod Checking test 076 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4171,7 +4171,7 @@ Test 076 cpld_restart_mx025 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4224,7 +4224,7 @@ Test 077 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_control_c384_prod Checking test 078 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4280,7 +4280,7 @@ Test 078 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_controlfrac_c384_prod Checking test 079 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4336,7 +4336,7 @@ Test 079 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_bmark_prod Checking test 080 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4392,7 +4392,7 @@ Test 080 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_bmark_wave_prod Checking test 081 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4451,7 +4451,7 @@ Test 081 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_debug_prod Checking test 082 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4504,7 +4504,7 @@ Test 082 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/datm_control_cfsr_prod +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/datm_control_cfsr Checking test 083 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4512,57 +4512,75 @@ Checking test 083 datm_control_cfsr results .... Test 083 datm_control_cfsr PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/datm_restart_cfsr +Checking test 084 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 084 datm_restart_cfsr PASS + + baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/datm_control_gefs_prod -Checking test 084 datm_control_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/datm_control_gefs +Checking test 085 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 084 datm_control_gefs PASS +Test 085 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/datm_bulk_cfsr_prod -Checking test 085 datm_bulk_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/datm_bulk_cfsr +Checking test 086 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 085 datm_bulk_cfsr PASS +Test 086 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/datm_bulk_gefs_prod -Checking test 086 datm_bulk_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/datm_bulk_gefs +Checking test 087 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 086 datm_bulk_gefs PASS +Test 087 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/datm_mx025_cfsr_prod -Checking test 087 datm_mx025_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/datm_mx025_cfsr +Checking test 088 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 087 datm_mx025_cfsr PASS +Test 088 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_107968/datm_mx025_gefs_prod -Checking test 088 datm_mx025_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/datm_mx025_gefs +Checking test 089 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 088 datm_mx025_gefs PASS +Test 089 datm_mx025_gefs PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/datm_debug_cfsr +Checking test 090 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 090 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 15 13:55:11 UTC 2020 -Elapsed time: 00h:48m:00s. Have a nice day! +Wed Dec 16 17:55:30 UTC 2020 +Elapsed time: 01h:06m:34s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 25962e0b60..1a8e973736 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Tue Dec 15 07:06:36 CST 2020 +Wed Dec 16 11:48:54 CST 2020 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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-20201215/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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-20201215/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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-20201215/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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-20201215/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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-20201215/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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-20201215/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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-20201215/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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-20201215/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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-20201215/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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-20201215/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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-20201215/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,7 +884,7 @@ Test 015 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1056,7 +1056,7 @@ Test 018 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,7 +1124,7 @@ Test 019 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1180,7 +1180,7 @@ Test 020 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,7 +1247,7 @@ Test 021 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1258,7 +1258,7 @@ Test 022 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1267,7 +1267,7 @@ Test 023 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1278,7 +1278,7 @@ Test 024 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1289,7 +1289,7 @@ Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_regional_c768_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1300,7 +1300,7 @@ Test 026 fv3_ccpp_regional_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1330,7 +1330,7 @@ Test 027 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -1350,7 +1350,7 @@ Test 028 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1398,7 +1398,7 @@ Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -1446,7 +1446,7 @@ Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -1494,7 +1494,7 @@ Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1542,7 +1542,7 @@ Test 032 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1590,7 +1590,7 @@ Test 033 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1638,7 +1638,7 @@ Test 034 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1690,7 +1690,7 @@ Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1744,7 +1744,7 @@ Test 036 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1836,7 +1836,7 @@ Test 037 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1904,7 +1904,7 @@ Test 038 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1972,7 +1972,7 @@ Test 039 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2040,7 +2040,7 @@ Test 040 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfs_v15p2_prod Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2108,7 +2108,7 @@ Test 041 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfs_v16beta_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfs_v16beta_prod Checking test 042 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2188,7 +2188,7 @@ Test 042 fv3_ccpp_gfs_v16beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfs_v16beta_restart_prod Checking test 043 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2238,7 +2238,7 @@ Test 043 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 044 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2306,7 +2306,7 @@ Test 044 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2374,7 +2374,7 @@ Test 045 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 046 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2442,7 +2442,7 @@ Test 046 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfsv16_csawmg_prod Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2490,7 +2490,7 @@ Test 047 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfsv16_csawmgt_prod Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2538,7 +2538,7 @@ Test 048 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -2586,7 +2586,7 @@ Test 049 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -2654,7 +2654,7 @@ Test 050 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -2722,7 +2722,7 @@ Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -2740,7 +2740,7 @@ Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -2808,7 +2808,7 @@ Test 053 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -2876,7 +2876,7 @@ Test 054 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -2944,7 +2944,7 @@ Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -3012,7 +3012,7 @@ Test 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -3080,7 +3080,7 @@ Test 057 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -3148,7 +3148,7 @@ Test 058 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -3216,7 +3216,7 @@ Test 059 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -3284,7 +3284,7 @@ Test 060 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -3352,7 +3352,7 @@ Test 061 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -3420,7 +3420,7 @@ Test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/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 @@ -3438,7 +3438,7 @@ Test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_control_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_control_prod Checking test 064 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3491,7 +3491,7 @@ Test 064 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_2threads_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_2threads_prod Checking test 065 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3544,7 +3544,7 @@ Test 065 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_decomp_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_decomp_prod Checking test 066 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3597,7 +3597,7 @@ Test 066 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_satmedmf_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_satmedmf_prod Checking test 067 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3650,7 +3650,7 @@ Test 067 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_ca_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_ca_prod Checking test 068 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3703,7 +3703,7 @@ Test 068 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_control_mx025_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_control_mx025_prod Checking test 069 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3759,7 +3759,7 @@ Test 069 cpld_control_mx025 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_control_mx025_12h_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_control_mx025_12h_prod Checking test 070 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3815,7 +3815,7 @@ Test 070 cpld_control_mx025_12h PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_restart_mx025_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_restart_mx025_prod Checking test 071 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3871,7 +3871,7 @@ Test 071 cpld_restart_mx025 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_control_c192_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_control_c192_prod Checking test 072 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3924,7 +3924,7 @@ Test 072 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_control_c384_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_control_c384_prod Checking test 073 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3980,7 +3980,7 @@ Test 073 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_controlfrac_c384_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_controlfrac_c384_prod Checking test 074 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4036,7 +4036,7 @@ Test 074 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_bmark_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_bmark_prod Checking test 075 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4092,7 +4092,7 @@ Test 075 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_bmark_wave_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_bmark_wave_prod Checking test 076 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4151,7 +4151,7 @@ Test 076 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/cpld_debug_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_debug_prod Checking test 077 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4204,7 +4204,7 @@ Test 077 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/datm_control_cfsr_prod +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/datm_control_cfsr Checking test 078 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4212,57 +4212,75 @@ Checking test 078 datm_control_cfsr results .... Test 078 datm_control_cfsr PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/datm_restart_cfsr +Checking test 079 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 079 datm_restart_cfsr PASS + + baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/datm_control_gefs_prod -Checking test 079 datm_control_gefs results .... +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/datm_control_gefs +Checking test 080 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 079 datm_control_gefs PASS +Test 080 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/datm_bulk_cfsr_prod -Checking test 080 datm_bulk_cfsr results .... +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/datm_bulk_cfsr +Checking test 081 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 080 datm_bulk_cfsr PASS +Test 081 datm_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/datm_bulk_gefs_prod -Checking test 081 datm_bulk_gefs results .... +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/datm_bulk_gefs +Checking test 082 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 081 datm_bulk_gefs PASS +Test 082 datm_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/datm_mx025_cfsr_prod -Checking test 082 datm_mx025_cfsr results .... +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/datm_mx025_cfsr +Checking test 083 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 082 datm_mx025_cfsr PASS +Test 083 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_427570/datm_mx025_gefs_prod -Checking test 083 datm_mx025_gefs results .... +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/datm_mx025_gefs +Checking test 084 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 083 datm_mx025_gefs PASS +Test 084 datm_mx025_gefs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/datm_debug_cfsr +Checking test 085 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 085 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 15 07:56:51 CST 2020 -Elapsed time: 00h:50m:16s. Have a nice day! +Wed Dec 16 12:54:53 CST 2020 +Elapsed time: 01h:06m:00s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 10767e9a21..f649399289 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Tue Dec 15 13:43:53 UTC 2020 +Wed Dec 16 17:17:51 UTC 2020 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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-20201215/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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-20201215/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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-20201215/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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-20201215/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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-20201215/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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-20201215/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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-20201215/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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,8 +447,8 @@ 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 ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........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-20201215/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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-20201215/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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-20201215/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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-20201215/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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-20201215/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,7 +815,7 @@ Test 014 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -864,7 +864,7 @@ Test 015 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -913,7 +913,7 @@ Test 016 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -987,7 +987,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 @@ -1055,7 +1055,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1111,7 +1111,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 @@ -1178,7 +1178,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1189,7 +1189,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1198,7 +1198,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1209,18 +1209,18 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_regional_c768_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_regional_c768_prod Checking test 025 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1231,7 +1231,7 @@ Test 025 fv3_ccpp_regional_c768 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_control_debug_prod Checking test 026 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1261,7 +1261,7 @@ Test 026 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_stretched_nest_debug_prod Checking test 027 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1281,7 +1281,7 @@ Test 027 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,7 +1329,7 @@ Test 028 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1377,7 +1377,7 @@ Test 029 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1425,7 +1425,7 @@ Test 030 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1473,7 +1473,7 @@ Test 031 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1521,7 +1521,7 @@ Test 032 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1569,7 +1569,7 @@ Test 033 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1617,7 +1617,7 @@ Test 034 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1669,7 +1669,7 @@ Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1723,7 +1723,7 @@ Test 036 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1815,7 +1815,7 @@ Test 037 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1883,7 +1883,7 @@ Test 038 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1951,7 +1951,7 @@ Test 039 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2019,7 +2019,7 @@ Test 040 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfs_v16beta_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfs_v16beta_prod Checking test 041 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2099,7 +2099,7 @@ Test 041 fv3_ccpp_gfs_v16beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfs_v16beta_restart_prod Checking test 042 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2149,7 +2149,7 @@ Test 042 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 043 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2217,7 +2217,7 @@ Test 043 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 @@ -2285,7 +2285,7 @@ Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 @@ -2333,7 +2333,7 @@ Test 045 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 @@ -2381,7 +2381,7 @@ Test 046 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 @@ -2429,7 +2429,7 @@ Test 047 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 @@ -2497,7 +2497,7 @@ Test 048 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 @@ -2565,7 +2565,7 @@ Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 @@ -2583,7 +2583,7 @@ Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfs_v16beta_debug_prod Checking test 051 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2651,7 +2651,7 @@ Test 051 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2719,7 +2719,7 @@ Test 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gsd_debug_prod Checking test 053 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2787,7 +2787,7 @@ Test 053 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gsd_diag3d_debug_prod Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2855,7 +2855,7 @@ Test 054 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_thompson_debug_prod Checking test 055 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2923,7 +2923,7 @@ Test 055 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_thompson_no_aero_debug_prod Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2991,7 +2991,7 @@ Test 056 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3059,7 +3059,7 @@ Test 057 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3127,7 +3127,7 @@ Test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3145,7 +3145,7 @@ Test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_control_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_control_prod Checking test 060 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3198,7 +3198,7 @@ Test 060 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_2threads_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_2threads_prod Checking test 061 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3251,7 +3251,7 @@ Test 061 cpld_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_decomp_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_decomp_prod Checking test 062 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3304,7 +3304,7 @@ Test 062 cpld_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_satmedmf_prod Checking test 063 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3357,7 +3357,7 @@ Test 063 cpld_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_ca_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_ca_prod Checking test 064 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3410,7 +3410,7 @@ Test 064 cpld_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_control_mx025_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_control_mx025_prod Checking test 065 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3466,7 +3466,7 @@ Test 065 cpld_control_mx025 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_control_mx025_12h_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_control_mx025_12h_prod Checking test 066 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3522,7 +3522,7 @@ Test 066 cpld_control_mx025_12h PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_restart_mx025_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_restart_mx025_prod Checking test 067 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3578,7 +3578,7 @@ Test 067 cpld_restart_mx025 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_control_c192_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_control_c192_prod Checking test 068 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3631,7 +3631,7 @@ Test 068 cpld_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_control_c384_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_control_c384_prod Checking test 069 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3687,7 +3687,7 @@ Test 069 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_controlfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_controlfrac_c384_prod Checking test 070 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3743,7 +3743,7 @@ Test 070 cpld_controlfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_bmark_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_bmark_prod Checking test 071 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3799,7 +3799,7 @@ Test 071 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_bmark_wave_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_bmark_wave_prod Checking test 072 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3858,7 +3858,7 @@ Test 072 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_157368/cpld_debug_prod +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_debug_prod Checking test 073 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3910,6 +3910,84 @@ Checking test 073 cpld_debug results .... Test 073 cpld_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/datm_control_cfsr +Checking test 074 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 074 datm_control_cfsr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/datm_restart_cfsr +Checking test 075 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 075 datm_restart_cfsr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/datm_control_gefs +Checking test 076 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 076 datm_control_gefs PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/datm_bulk_cfsr +Checking test 077 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 077 datm_bulk_cfsr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/datm_bulk_gefs +Checking test 078 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 078 datm_bulk_gefs PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/datm_mx025_cfsr +Checking test 079 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 079 datm_mx025_cfsr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/datm_mx025_gefs +Checking test 080 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 080 datm_mx025_gefs PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/datm_debug_cfsr +Checking test 081 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 081 datm_debug_cfsr PASS + + REGRESSION TEST WAS SUCCESSFUL -Tue Dec 15 15:35:11 UTC 2020 -Elapsed time: 01h:51m:20s. Have a nice day! +Wed Dec 16 18:58:01 UTC 2020 +Elapsed time: 01h:40m:11s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 10cf958f17..50ccfda076 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -516,7 +516,7 @@ export RUNID='unknown' export DUMPFREQ='d' export DUMPFREQ_N=1000 export USE_RESTART_TIME='.false.' -export RESTART_EXT='.false' +export RESTART_EXT='.false.' # setting to true will allow Frazil FW and Salt to be # included in fluxes sent to ocean export FRAZIL_FWSALT='.true.' @@ -540,6 +540,7 @@ export FHMAX=24 export WLCLK=30 export THRD=1 export FHROT='0' +export WARM_START=.F. # atm/ocn/ice resolution # GEFS @@ -620,11 +621,12 @@ export RUNID='unknown' export DUMPFREQ='d' export DUMPFREQ_N=1000 export USE_RESTART_TIME='.false.' -export RESTART_EXT='.false' +export RESTART_EXT='.false.' # setting to true will allow Frazil FW and Salt to be # included in fluxes sent to ocean export FRAZIL_FWSALT='.true.' # default to write CICE average history files export CICE_HIST_AVG='.true.' export BL_SUFFIX="" +export RT_SUFFIX="" } diff --git a/tests/fv3_conf/cpld_datm_cfsr.IN b/tests/fv3_conf/cpld_datm_cfsr.IN index 65bbf8ea0d..25b8acc50e 100644 --- a/tests/fv3_conf/cpld_datm_cfsr.IN +++ b/tests/fv3_conf/cpld_datm_cfsr.IN @@ -1,9 +1,10 @@ mkdir INPUT DATM_INPUT RESTART history MOM6_OUTPUT export DATM=true -# FV3 fixed input +# DATM fixed input export IATM=1760 export JATM=880 +ICERES="${OCNRES:0:1}.${OCNRES:1}" cp @[INPUTDATA_ROOT]/DATM/cfsr.SCRIP.nc DATM_INPUT ln -s @[INPUTDATA_ROOT]/DATM/CFSR/201110/* DATM_INPUT @@ -16,11 +17,26 @@ cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . - -if [[ $OCNRES == '025' ]]; then +if [ $WARM_START = .F. ]; then +# cold start + if [[ $OCNRES == '025' ]]; then cp @[INPUTDATA_ROOT]/MOM6_IC/@[OCNRES]/2011100100/MOM*.nc ./INPUT cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc -else + else cp @[INPUTDATA_ROOT]/MOM6_IC/@[OCNRES]/2011100100/MOM6_IC_TS*.nc ./INPUT/MOM6_IC_TS.nc cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc + fi +else +# warm start + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.2011-10-01-12*.nc ./INPUT/MOM.res.nc + +# CMEPS restart and pointer files + RFILE="DATM_${DATM_SRC}.cpl.r.2011-10-01-43200.nc" + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RFILE} . + ls -1 ${RFILE}>rpointer.cpl + +# CICE restart and pointer files + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/iced.2011-10-01-43200.nc ./INPUT + RFILE="iced.2011-10-01-43200.nc" + ls -1 "./INPUT/"${RFILE}>ice.restart_file fi diff --git a/tests/fv3_conf/cpld_datm_gefs.IN b/tests/fv3_conf/cpld_datm_gefs.IN index 2bf93b5a5f..74811c36b2 100644 --- a/tests/fv3_conf/cpld_datm_gefs.IN +++ b/tests/fv3_conf/cpld_datm_gefs.IN @@ -1,7 +1,8 @@ mkdir INPUT DATM_INPUT RESTART history MOM6_OUTPUT export DATM=true -# FV3 fixed input +# DATM fixed input +ICERES="${OCNRES:0:1}.${OCNRES:1}" cp @[INPUTDATA_ROOT]/DATM/gefs.SCRIP.nc DATM_INPUT ln -s @[INPUTDATA_ROOT]/DATM/GEFS/201110/* DATM_INPUT diff --git a/tests/parm/datm_configure.IN b/tests/parm/datm_configure.IN index 00787d5ab0..c64ec17b3f 100644 --- a/tests/parm/datm_configure.IN +++ b/tests/parm/datm_configure.IN @@ -10,6 +10,8 @@ start_second: 0 nhours_fcst: @[FHMAX] RUN_CONTINUE: .false. ENS_SPS: .false. +calendar: 'julian' +fhrot: @[FHROT] dt_atmos: @[DT_ATMOS] atm_coupling_interval_sec: @[coupling_interval_fast_sec] diff --git a/tests/rt.conf b/tests/rt.conf index 8746849011..3bb33ae825 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -253,19 +253,23 @@ RUN | cpld_debug # Data Atmosphere tests ####################################################################################################################################################################################### -COMPILE | DATM=Y S2S=Y | standard | hera.intel orion.intel | fv3 | +COMPILE | DATM=Y S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | #COMPILE | DATM=Y S2S=Y | standard | cheyenne.intel | fv3 | -RUN | datm_control_cfsr | standard | hera.intel orion.intel | fv3 | -RUN | datm_control_gefs | standard | hera.intel orion.intel | fv3 | +RUN | datm_control_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | datm_restart_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | | datm_control_cfsr +RUN | datm_control_gefs | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | #RUN | datm_control_cfsr | standard | cheyenne.intel | fv3 | #RUN | datm_control_gefs | standard | cheyenne.intel | fv3 | -RUN | datm_bulk_cfsr | standard | hera.intel orion.intel | fv3 | -RUN | datm_bulk_gefs | standard | hera.intel orion.intel | fv3 | +RUN | datm_bulk_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | datm_bulk_gefs | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | #RUN | datm_bulk_cfsr | standard | cheyenne.intel | fv3 | #RUN | datm_bulk_gefs | standard | cheyenne.intel | fv3 | -RUN | datm_mx025_cfsr | standard | hera.intel orion.intel | fv3 | -RUN | datm_mx025_gefs | standard | hera.intel orion.intel | fv3 | +RUN | datm_mx025_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | datm_mx025_gefs | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | #RUN | datm_mx025_cfsr | standard | cheyenne.intel | fv3 | #RUN | datm_mx025_gefs | standard | cheyenne.intel | fv3 | + +COMPILE | DATM=Y S2S=Y DEBUG=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | datm_debug_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | diff --git a/tests/tests/datm_control_cfsr b/tests/tests/datm_control_cfsr index 8a8dcad952..0707918590 100644 --- a/tests/tests/datm_control_cfsr +++ b/tests/tests/datm_control_cfsr @@ -15,4 +15,5 @@ export DATM_SRC="CFSR" export FILENAME_BASE='cfsr.' export IATM=1760 export JATM=880 +export RESTART_N=12 export FV3_RUN=cpld_datm_cfsr.IN diff --git a/tests/tests/datm_debug_cfsr b/tests/tests/datm_debug_cfsr new file mode 100644 index 0000000000..d1fab439bb --- /dev/null +++ b/tests/tests/datm_debug_cfsr @@ -0,0 +1,21 @@ +# +# DATM_MOM6_CICE_CMEPS_CFSR debug test +# + +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_CFSR - debug test " + +export CNTL_DIR="datm_debug_cfsr" + +export LIST_FILES="RESTART/MOM.res.nc \ + RESTART/iced.2011-10-01-21600.nc \ + RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc" + +export_datm +export DATM_SRC="CFSR" +export FILENAME_BASE='cfsr.' +export IATM=1760 +export JATM=880 +export DAYS="0.25" +export FHMAX="6" +export RESTART_N=${FHMAX} +export FV3_RUN=cpld_datm_cfsr.IN diff --git a/tests/tests/datm_restart_cfsr b/tests/tests/datm_restart_cfsr new file mode 100644 index 0000000000..6d7e86015f --- /dev/null +++ b/tests/tests/datm_restart_cfsr @@ -0,0 +1,26 @@ +# +# DATM_MOM6_CICE_CMEPS_CFSR restart test +# + +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_CFSR - restart test " + +export CNTL_DIR="datm_control_cfsr" + +export LIST_FILES="RESTART/MOM.res.nc \ + RESTART/iced.2011-10-02-00000.nc \ + RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" + +export_datm +export DATM_SRC="CFSR" +export FILENAME_BASE='cfsr.' +export IATM=1760 +export JATM=880 +export DAYS="1" +export FHMAX="24" +export FHROT="12" +export WARM_START='.T.' +export RESTART_N=$((FHMAX-$FHROT)) +export RUNTYPE='continue' +export USE_RESTART_TIME='.true.' +export MOM6_RESTART_SETTING="r" +export FV3_RUN=cpld_datm_cfsr.IN From 01af65bf9e180ddaaec71361459b2f4b03aba976 Mon Sep 17 00:00:00 2001 From: dustinswales Date: Fri, 18 Dec 2020 06:13:58 -0700 Subject: [PATCH 043/109] RRTMGP and Thompson MP coupling (#323) * Feature branch with RRTMGP and Thompson MP * Updated FV3/ccpp-physics. Added namelist and configuration for RRTMGP RTs using GSD physics. * Updated FV3 * Update physics in FV3 * Updated baselines in rt.sh * Updated RT logs. Updated FV3 physics submodule pointer. * Updated FV3 hash and .gitmodules --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 94 +- tests/RegressionTests_cheyenne.intel.log | 248 +- tests/RegressionTests_gaea.intel.log | 194 +- tests/RegressionTests_hera.gnu.log | 94 +- tests/RegressionTests_hera.intel.log | 366 +- tests/RegressionTests_orion.intel.log | 348 +- tests/RegressionTests_wcoss_cray.log | 5927 ++++++++--------- tests/RegressionTests_wcoss_dell_p3.log | 7683 +++++++++++----------- tests/parm/ccpp_gsd_rrtmgp.nml.IN | 347 + tests/rt.sh | 4 +- tests/tests/fv3_ccpp_gsd_RRTMGP | 125 + tests/tests/fv3_ccpp_gsd_RRTMGP_debug | 100 + 13 files changed, 7844 insertions(+), 7688 deletions(-) create mode 100644 tests/parm/ccpp_gsd_rrtmgp.nml.IN create mode 100644 tests/tests/fv3_ccpp_gsd_RRTMGP create mode 100644 tests/tests/fv3_ccpp_gsd_RRTMGP_debug diff --git a/FV3 b/FV3 index 3aad3985f5..f5a6d1a97e 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 3aad3985f529e63c60e7167747e5a236c544be06 +Subproject commit f5a6d1a97e0a723b28b6b5a8f4252400296a7b9c diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index a6164e783d..91fa57735a 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Tue Dec 15 06:12:20 MST 2020 +Wed Dec 16 20:51:50 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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-20201215/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30798/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/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 Dec 15 06:28:38 MST 2020 -Elapsed time: 00h:16m:18s. Have a nice day! +Wed Dec 16 21:08:24 MST 2020 +Elapsed time: 00h:16m:34s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 0038f747fb..0c7a171d38 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Tue Dec 15 05:55:30 MST 2020 +Wed Dec 16 21:09:42 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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-20201214/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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-20201214/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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-20201214/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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-20201214/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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-20201214/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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-20201214/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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-20201214/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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 @@ -449,8 +449,8 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc .........OK + Comparing dynf000.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 @@ -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-20201214/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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-20201214/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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-20201214/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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-20201214/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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-20201214/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -882,8 +882,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1024,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,8 +1080,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1147,8 +1147,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1158,8 +1158,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1167,8 +1167,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1178,19 +1178,19 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 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 + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1239,8 +1239,8 @@ Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1335,8 +1335,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1383,8 +1383,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1431,8 +1431,8 @@ Checking test 029 fv3_ccpp_csawmg results .... Test 029 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,8 +1479,8 @@ Checking test 030 fv3_ccpp_satmedmf results .... Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1527,8 +1527,8 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1575,8 +1575,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,8 +1681,8 @@ Checking test 034 fv3_ccpp_cpt results .... Test 034 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 035 fv3_ccpp_gsd results .... Test 035 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson results .... Test 036 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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 @@ -2045,8 +2045,8 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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 @@ -2125,8 +2125,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Test 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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 @@ -2175,8 +2175,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_restart results .... Test 041 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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 @@ -2243,8 +2243,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_stochy results .... Test 042 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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 @@ -2311,8 +2311,8 @@ Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/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 @@ -2379,8 +2379,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gocart_clm_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gocart_clm_prod Checking test 045 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2427,8 +2427,8 @@ Checking test 045 fv3_ccpp_gocart_clm results .... Test 045 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfs_v16beta_flake_prod Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2495,8 +2495,8 @@ Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... Test 046 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2563,8 +2563,8 @@ Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2581,8 +2581,8 @@ Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfs_v16beta_debug_prod Checking test 049 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2649,8 +2649,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_debug results .... Test 049 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2717,8 +2717,8 @@ Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2785,8 +2785,8 @@ Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gsd_debug_prod Checking test 052 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2853,8 +2853,8 @@ Checking test 052 fv3_ccpp_gsd_debug results .... Test 052 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gsd_diag3d_debug_prod Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2921,8 +2921,8 @@ Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Test 053 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_thompson_debug_prod Checking test 054 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2989,8 +2989,8 @@ Checking test 054 fv3_ccpp_thompson_debug results .... Test 054 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_thompson_no_aero_debug_prod Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3057,8 +3057,8 @@ Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... Test 055 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3125,8 +3125,8 @@ Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Test 056 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3193,8 +3193,8 @@ Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201214/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_5963/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3212,5 +3212,5 @@ Test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 15 06:37:09 MST 2020 -Elapsed time: 00h:41m:40s. Have a nice day! +Wed Dec 16 21:41:49 MST 2020 +Elapsed time: 00h:32m:07s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 4032b15c92..104a6f83d4 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Tue Dec 15 10:48:56 EST 2020 +Wed Dec 16 23:07:17 EST 2020 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/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-20201215/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/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-20201215/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/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-20201215/INTEL/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/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-20201215/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/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-20201215/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/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-20201215/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/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-20201215/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/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-20201215/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/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-20201215/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/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-20201215/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/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-20201215/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/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 = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -746,8 +746,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -820,8 +820,8 @@ Checking test 014 fv3_ccpp_multigases results .... Test 014 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_control_32bit results .... Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,8 +944,8 @@ Checking test 016 fv3_ccpp_stretched results .... Test 016 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1011,8 +1011,8 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1022,8 +1022,8 @@ Checking test 018 fv3_ccpp_regional_control results .... Test 018 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1031,8 +1031,8 @@ Checking test 019 fv3_ccpp_regional_restart results .... Test 019 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1042,8 +1042,8 @@ Checking test 020 fv3_ccpp_regional_quilt results .... Test 020 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 021 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1053,8 +1053,8 @@ Checking test 021 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 021 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_c768_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_regional_c768_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_c768_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_regional_c768_prod Checking test 022 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1064,8 +1064,8 @@ Checking test 022 fv3_ccpp_regional_c768 results .... Test 022 fv3_ccpp_regional_c768 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1094,8 +1094,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1114,8 +1114,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1162,8 +1162,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1210,8 +1210,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1258,8 +1258,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1306,8 +1306,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1354,8 +1354,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,8 +1402,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1450,8 +1450,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_cpt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1504,8 +1504,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gsd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1596,8 +1596,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1664,8 +1664,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,8 +1732,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1800,8 +1800,8 @@ Checking test 036 fv3_ccpp_rrfs_v1beta results .... Test 036 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gocart_clm_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gocart_clm_prod Checking test 037 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1848,8 +1848,8 @@ Checking test 037 fv3_ccpp_gocart_clm results .... Test 037 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gfs_v16beta_flake_prod Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1916,8 +1916,8 @@ Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Test 038 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1984,8 +1984,8 @@ Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2002,8 +2002,8 @@ Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gsd_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2070,8 +2070,8 @@ Checking test 041 fv3_ccpp_gsd_debug results .... Test 041 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2138,8 +2138,8 @@ Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Test 042 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,8 +2206,8 @@ Checking test 043 fv3_ccpp_thompson_debug results .... Test 043 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,8 +2274,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Test 044 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2342,8 +2342,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Test 045 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,8 +2410,8 @@ Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201215/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3160/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2429,5 +2429,5 @@ Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 15 11:19:34 EST 2020 -Elapsed time: 00h:30m:39s. Have a nice day! +Wed Dec 16 23:37:38 EST 2020 +Elapsed time: 00h:30m:22s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 96bde12b2f..f31eccca8d 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Tue Dec 15 14:57:00 UTC 2020 +Thu Dec 17 12:51:58 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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-20201215/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_60997/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/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 Dec 15 15:24:52 UTC 2020 -Elapsed time: 00h:27m:52s. Have a nice day! +Thu Dec 17 13:20:58 UTC 2020 +Elapsed time: 00h:29m:01s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index bf991e770f..a3ab538d71 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Wed Dec 16 16:48:57 UTC 2020 +Thu Dec 17 14:36:03 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_lndp_prod Checking test 015 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_lndp results .... Test 015 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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-20201215/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 ............ALT CHECK......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-20201215/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_regional_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_regional_c768_prod Checking test 028 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1415,8 +1415,8 @@ Checking test 028 fv3_ccpp_regional_c768 results .... Test 028 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_control_debug_prod Checking test 029 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1445,8 +1445,8 @@ Checking test 029 fv3_ccpp_control_debug results .... Test 029 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_stretched_nest_debug_prod Checking test 030 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1465,8 +1465,8 @@ Checking test 030 fv3_ccpp_stretched_nest_debug results .... Test 030 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfdlmp_prod Checking test 031 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1513,8 +1513,8 @@ Checking test 031 fv3_ccpp_gfdlmp results .... Test 031 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfdlmprad_gwd_prod Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,8 +1561,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Test 032 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1609,8 +1609,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Test 033 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_csawmg_prod Checking test 034 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,8 +1657,8 @@ Checking test 034 fv3_ccpp_csawmg results .... Test 034 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_satmedmf_prod Checking test 035 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 035 fv3_ccpp_satmedmf results .... Test 035 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_satmedmfq_prod Checking test 036 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1753,8 +1753,8 @@ Checking test 036 fv3_ccpp_satmedmfq results .... Test 036 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfdlmp_32bit_prod Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1801,8 +1801,8 @@ Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Test 037 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1853,8 +1853,8 @@ Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Test 038 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_cpt_prod Checking test 039 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1907,8 +1907,8 @@ Checking test 039 fv3_ccpp_cpt results .... Test 039 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gsd_prod Checking test 040 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1999,8 +1999,8 @@ Checking test 040 fv3_ccpp_gsd results .... Test 040 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_rap_prod Checking test 041 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2067,8 +2067,8 @@ Checking test 041 fv3_ccpp_rap results .... Test 041 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_hrrr_prod Checking test 042 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2135,8 +2135,8 @@ Checking test 042 fv3_ccpp_hrrr results .... Test 042 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_thompson_prod Checking test 043 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2203,8 +2203,8 @@ Checking test 043 fv3_ccpp_thompson results .... Test 043 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_thompson_no_aero_prod Checking test 044 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2271,8 +2271,8 @@ Checking test 044 fv3_ccpp_thompson_no_aero results .... Test 044 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_rrfs_v1beta_prod Checking test 045 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2339,8 +2339,8 @@ Checking test 045 fv3_ccpp_rrfs_v1beta results .... Test 045 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfs_v15p2_prod Checking test 046 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2407,8 +2407,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2 results .... Test 046 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfs_v16beta_prod Checking test 047 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2487,8 +2487,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta results .... Test 047 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfs_v16beta_restart_prod Checking test 048 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2537,8 +2537,8 @@ Checking test 048 fv3_ccpp_gfs_v16beta_restart results .... Test 048 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 049 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2605,8 +2605,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_stochy results .... Test 049 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2673,8 +2673,8 @@ Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 050 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2741,8 +2741,8 @@ Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 051 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 @@ -2789,8 +2789,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Test 052 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 @@ -2837,8 +2837,8 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Test 053 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 @@ -2885,8 +2885,8 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Test 054 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 @@ -2953,8 +2953,8 @@ Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... Test 055 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 @@ -3021,8 +3021,8 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 @@ -3039,8 +3039,8 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 @@ -3107,8 +3107,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 @@ -3175,8 +3175,8 @@ Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... Test 059 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 @@ -3243,8 +3243,8 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 @@ -3311,8 +3311,8 @@ Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 @@ -3379,8 +3379,8 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Test 062 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 @@ -3447,8 +3447,8 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Test 063 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 @@ -3515,8 +3515,8 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Test 064 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 @@ -3583,8 +3583,8 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Test 065 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 @@ -3651,8 +3651,8 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Test 066 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 @@ -3719,8 +3719,8 @@ Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/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 @@ -3737,8 +3737,8 @@ Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3790,8 +3790,8 @@ Checking test 069 cpld_control results .... Test 069 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_2threads_prod Checking test 070 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3843,8 +3843,8 @@ Checking test 070 cpld_2threads results .... Test 070 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_decomp_prod Checking test 071 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3896,8 +3896,8 @@ Checking test 071 cpld_decomp results .... Test 071 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_satmedmf_prod Checking test 072 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3949,8 +3949,8 @@ Checking test 072 cpld_satmedmf results .... Test 072 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_ca_prod Checking test 073 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4002,8 +4002,8 @@ Checking test 073 cpld_ca results .... Test 073 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_control_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_control_mx025_prod Checking test 074 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4058,8 +4058,8 @@ Checking test 074 cpld_control_mx025 results .... Test 074 cpld_control_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_control_mx025_12h_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_12h_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_control_mx025_12h_prod Checking test 075 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4114,8 +4114,8 @@ Checking test 075 cpld_control_mx025_12h results .... Test 075 cpld_control_mx025_12h PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_restart_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_restart_mx025_prod Checking test 076 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4170,8 +4170,8 @@ Checking test 076 cpld_restart_mx025 results .... Test 076 cpld_restart_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4223,8 +4223,8 @@ Checking test 077 cpld_control_c192 results .... Test 077 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_control_c384_prod Checking test 078 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4279,8 +4279,8 @@ Checking test 078 cpld_control_c384 results .... Test 078 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_controlfrac_c384_prod Checking test 079 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4335,8 +4335,8 @@ Checking test 079 cpld_controlfrac_c384 results .... Test 079 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_bmark_prod Checking test 080 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4391,8 +4391,8 @@ Checking test 080 cpld_bmark results .... Test 080 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_bmark_wave_prod Checking test 081 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4450,8 +4450,8 @@ Checking test 081 cpld_bmark_wave results .... Test 081 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/cpld_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_debug_prod Checking test 082 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4503,8 +4503,8 @@ Checking test 082 cpld_debug results .... Test 082 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/datm_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/datm_control_cfsr Checking test 083 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4512,8 +4512,8 @@ Checking test 083 datm_control_cfsr results .... Test 083 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/datm_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/datm_restart_cfsr Checking test 084 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4521,8 +4521,8 @@ Checking test 084 datm_restart_cfsr results .... Test 084 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/datm_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/datm_control_gefs Checking test 085 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4530,8 +4530,8 @@ Checking test 085 datm_control_gefs results .... Test 085 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/datm_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/datm_bulk_cfsr Checking test 086 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4539,8 +4539,8 @@ Checking test 086 datm_bulk_cfsr results .... Test 086 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/datm_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/datm_bulk_gefs Checking test 087 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4548,8 +4548,8 @@ Checking test 087 datm_bulk_gefs results .... Test 087 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/datm_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/datm_mx025_cfsr Checking test 088 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4560,8 +4560,8 @@ Checking test 088 datm_mx025_cfsr results .... Test 088 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/datm_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/datm_mx025_gefs Checking test 089 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4572,8 +4572,8 @@ Checking test 089 datm_mx025_gefs results .... Test 089 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_49420/datm_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/datm_debug_cfsr Checking test 090 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -4582,5 +4582,5 @@ Test 090 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Dec 16 17:55:30 UTC 2020 -Elapsed time: 01h:06m:34s. Have a nice day! +Thu Dec 17 15:23:55 UTC 2020 +Elapsed time: 00h:47m:52s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 1a8e973736..999b0961d0 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Wed Dec 16 11:48:54 CST 2020 +Thu Dec 17 08:10:33 CST 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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-20201215/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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-20201215/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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-20201215/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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-20201215/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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-20201215/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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-20201215/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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-20201215/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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-20201215/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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-20201215/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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-20201215/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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-20201215/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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-20201215/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,8 +883,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1055,8 +1055,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_control_32bit results .... Test 019 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1179,8 +1179,8 @@ Checking test 020 fv3_ccpp_stretched results .... Test 020 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 021 fv3_ccpp_stretched_nest results .... Test 021 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1257,8 +1257,8 @@ Checking test 022 fv3_ccpp_regional_control results .... Test 022 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 023 fv3_ccpp_regional_restart results .... Test 023 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1277,19 +1277,19 @@ Checking test 024 fv3_ccpp_regional_quilt results .... Test 024 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_regional_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1299,8 +1299,8 @@ Checking test 026 fv3_ccpp_regional_c768 results .... Test 026 fv3_ccpp_regional_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1329,8 +1329,8 @@ Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -1349,8 +1349,8 @@ Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1397,8 +1397,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -1445,8 +1445,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -1493,8 +1493,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1541,8 +1541,8 @@ Checking test 032 fv3_ccpp_csawmg results .... Test 032 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1589,8 +1589,8 @@ Checking test 033 fv3_ccpp_satmedmf results .... Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1637,8 +1637,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1689,8 +1689,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1743,8 +1743,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1835,8 +1835,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,8 +1903,8 @@ Checking test 038 fv3_ccpp_thompson results .... Test 038 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1971,8 +1971,8 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2039,8 +2039,8 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfs_v15p2_prod Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,8 +2107,8 @@ Checking test 041 fv3_ccpp_gfs_v15p2 results .... Test 041 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfs_v16beta_prod Checking test 042 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2187,8 +2187,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta results .... Test 042 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfs_v16beta_restart_prod Checking test 043 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2237,8 +2237,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta_restart results .... Test 043 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 044 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2305,8 +2305,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_stochy results .... Test 044 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2373,8 +2373,8 @@ Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 045 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 046 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2441,8 +2441,8 @@ Checking test 046 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 046 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfsv16_csawmg_prod Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2489,8 +2489,8 @@ Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Test 047 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfsv16_csawmgt_prod Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2537,8 +2537,8 @@ Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Test 048 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -2585,8 +2585,8 @@ Checking test 049 fv3_ccpp_gocart_clm results .... Test 049 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -2653,8 +2653,8 @@ Checking test 050 fv3_ccpp_gfs_v16beta_flake results .... Test 050 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -2721,8 +2721,8 @@ Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -2739,8 +2739,8 @@ Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -2807,8 +2807,8 @@ Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... Test 053 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -2875,8 +2875,8 @@ Checking test 054 fv3_ccpp_gfs_v16beta_debug results .... Test 054 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -2943,8 +2943,8 @@ Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -3011,8 +3011,8 @@ Checking test 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -3079,8 +3079,8 @@ Checking test 057 fv3_ccpp_gsd_debug results .... Test 057 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -3147,8 +3147,8 @@ Checking test 058 fv3_ccpp_gsd_diag3d_debug results .... Test 058 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -3215,8 +3215,8 @@ Checking test 059 fv3_ccpp_thompson_debug results .... Test 059 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -3283,8 +3283,8 @@ Checking test 060 fv3_ccpp_thompson_no_aero_debug results .... Test 060 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -3351,8 +3351,8 @@ Checking test 061 fv3_ccpp_rrfs_v1beta_debug results .... Test 061 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -3419,8 +3419,8 @@ Checking test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/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 @@ -3437,8 +3437,8 @@ Checking test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_control_prod Checking test 064 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3490,8 +3490,8 @@ Checking test 064 cpld_control results .... Test 064 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_2threads_prod Checking test 065 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3543,8 +3543,8 @@ Checking test 065 cpld_2threads results .... Test 065 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_decomp_prod Checking test 066 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3596,8 +3596,8 @@ Checking test 066 cpld_decomp results .... Test 066 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_satmedmf_prod Checking test 067 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3649,8 +3649,8 @@ Checking test 067 cpld_satmedmf results .... Test 067 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_ca_prod Checking test 068 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3702,8 +3702,8 @@ Checking test 068 cpld_ca results .... Test 068 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_control_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_control_mx025_prod Checking test 069 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3758,8 +3758,8 @@ Checking test 069 cpld_control_mx025 results .... Test 069 cpld_control_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_control_mx025_12h_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_12h_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_control_mx025_12h_prod Checking test 070 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3814,8 +3814,8 @@ Checking test 070 cpld_control_mx025_12h results .... Test 070 cpld_control_mx025_12h PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_restart_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_restart_mx025_prod Checking test 071 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3870,8 +3870,8 @@ Checking test 071 cpld_restart_mx025 results .... Test 071 cpld_restart_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_control_c192_prod Checking test 072 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3923,8 +3923,8 @@ Checking test 072 cpld_control_c192 results .... Test 072 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_control_c384_prod Checking test 073 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3979,8 +3979,8 @@ Checking test 073 cpld_control_c384 results .... Test 073 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_controlfrac_c384_prod Checking test 074 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4035,8 +4035,8 @@ Checking test 074 cpld_controlfrac_c384 results .... Test 074 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_bmark_prod Checking test 075 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4091,8 +4091,8 @@ Checking test 075 cpld_bmark results .... Test 075 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_bmark_wave_prod Checking test 076 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4150,8 +4150,8 @@ Checking test 076 cpld_bmark_wave results .... Test 076 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/cpld_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_debug_prod Checking test 077 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4203,8 +4203,8 @@ Checking test 077 cpld_debug results .... Test 077 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/datm_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/datm_control_cfsr Checking test 078 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4212,8 +4212,8 @@ Checking test 078 datm_control_cfsr results .... Test 078 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/datm_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/datm_restart_cfsr Checking test 079 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4221,8 +4221,8 @@ Checking test 079 datm_restart_cfsr results .... Test 079 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/datm_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/datm_control_gefs Checking test 080 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4230,8 +4230,8 @@ Checking test 080 datm_control_gefs results .... Test 080 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/datm_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/datm_bulk_cfsr Checking test 081 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4239,8 +4239,8 @@ Checking test 081 datm_bulk_cfsr results .... Test 081 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/datm_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/datm_bulk_gefs Checking test 082 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4248,8 +4248,8 @@ Checking test 082 datm_bulk_gefs results .... Test 082 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/datm_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/datm_mx025_cfsr Checking test 083 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4260,8 +4260,8 @@ Checking test 083 datm_mx025_cfsr results .... Test 083 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/datm_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/datm_mx025_gefs Checking test 084 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4272,8 +4272,8 @@ Checking test 084 datm_mx025_gefs results .... Test 084 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_97724/datm_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/datm_debug_cfsr Checking test 085 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -4282,5 +4282,5 @@ Test 085 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Dec 16 12:54:53 CST 2020 -Elapsed time: 01h:06m:00s. Have a nice day! +Thu Dec 17 09:01:26 CST 2020 +Elapsed time: 00h:50m:53s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 18d614adf0..8d7111b656 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,3040 +1,2907 @@ -Tue Dec 15 15:18:30 UTC 2020 +Thu Dec 17 01:55:25 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control 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 +Moving baseline 001 fv3_ccpp_control files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK Test 001 fv3_ccpp_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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 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 002 fv3_ccpp_decomp PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads 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 003 fv3_ccpp_2threads PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart 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 004 fv3_ccpp_restart PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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 - 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 005 fv3_ccpp_read_inc PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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 - 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.nc .........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 - 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 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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 - 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.nc .........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 - 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 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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 - 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.nc .........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 - 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 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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 - 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.nc .........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 - 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 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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 - 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 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/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 - 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 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_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/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 012 fv3_ccpp_stochy PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_iau_prod -Checking test 013 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 013 fv3_ccpp_iau PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_lheatstrg_prod -Checking test 014 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 014 fv3_ccpp_lheatstrg PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_multigases_prod -Checking test 015 fv3_ccpp_multigases 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 - 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 015 fv3_ccpp_multigases PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_control_32bit_prod -Checking test 016 fv3_ccpp_control_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.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 016 fv3_ccpp_control_32bit PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_stretched_prod -Checking test 017 fv3_ccpp_stretched 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 fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 017 fv3_ccpp_stretched PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_stretched_nest_prod -Checking test 018 fv3_ccpp_stretched_nest 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.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 018 fv3_ccpp_stretched_nest PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_regional_control_prod -Checking test 019 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 - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_regional_restart_prod -Checking test 020 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 - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_regional_quilt_prod -Checking test 021 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 - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 022 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 - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_control_debug_prod -Checking test 023 fv3_ccpp_control_debug results .... - 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 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 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 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 -Test 023 fv3_ccpp_control_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_stretched_nest_debug_prod -Checking test 024 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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - 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 - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfdlmp_prod -Checking test 025 fv3_ccpp_gfdlmp 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 025 fv3_ccpp_gfdlmp PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 026 fv3_ccpp_gfdlmprad_gwd 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 026 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 027 fv3_ccpp_gfdlmprad_noahmp 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 027 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_csawmg_prod -Checking test 028 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 028 fv3_ccpp_csawmg PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_satmedmf_prod -Checking test 029 fv3_ccpp_satmedmf 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 029 fv3_ccpp_satmedmf PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_satmedmfq_prod -Checking test 030 fv3_ccpp_satmedmfq 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 030 fv3_ccpp_satmedmfq PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfdlmp_32bit_prod -Checking test 031 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 031 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 032 fv3_ccpp_gfdlmprad_32bit_post 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 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 - 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 032 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_cpt_prod -Checking test 033 fv3_ccpp_cpt 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 - 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_cpt PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gsd_prod -Checking test 034 fv3_ccpp_gsd 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 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 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 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 034 fv3_ccpp_gsd PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_thompson_prod -Checking test 035 fv3_ccpp_thompson 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 035 fv3_ccpp_thompson PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_thompson_no_aero_prod -Checking test 036 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.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 036 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_rrfs_v1beta_prod -Checking test 037 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 037 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfs_v16beta_prod -Checking test 038 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 038 fv3_ccpp_gfs_v16beta PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 039 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 039 fv3_ccpp_gfs_v16beta_restart PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 040 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 040 fv3_ccpp_gfs_v16beta_stochy PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 041 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 041 fv3_ccpp_gfs_v16beta_RRTMGP PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfsv16_csawmg_prod -Checking test 042 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 042 fv3_ccpp_gfsv16_csawmg PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 043 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 043 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gocart_clm_prod -Checking test 044 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 044 fv3_ccpp_gocart_clm PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 045 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 - 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 045 fv3_ccpp_gfs_v16beta_flake PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 046 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 - 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_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK - 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 - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 048 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 048 fv3_ccpp_gfs_v16beta_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 049 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 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gsd_debug_prod -Checking test 050 fv3_ccpp_gsd_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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 050 fv3_ccpp_gsd_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 051 fv3_ccpp_gsd_diag3d_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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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_gsd_diag3d_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_thompson_debug_prod -Checking test 052 fv3_ccpp_thompson_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_thompson_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 053 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 - 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_thompson_no_aero_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 054 fv3_ccpp_rrfs_v1beta_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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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_rrfs_v1beta_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 055 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 - 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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37298/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK - 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 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_restart_prod +Checking test 002 fv3_ccpp_restart results .... +Moving baseline 002 fv3_ccpp_restart files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf027.tile1.nc .........OK + Moving phyf027.tile2.nc .........OK + Moving phyf027.tile3.nc .........OK + Moving phyf027.tile4.nc .........OK + Moving phyf027.tile5.nc .........OK + Moving phyf027.tile6.nc .........OK + Moving phyf048.tile1.nc .........OK + Moving phyf048.tile2.nc .........OK + Moving phyf048.tile3.nc .........OK + Moving phyf048.tile4.nc .........OK + Moving phyf048.tile5.nc .........OK + Moving phyf048.tile6.nc .........OK + Moving dynf027.tile1.nc .........OK + Moving dynf027.tile2.nc .........OK + Moving dynf027.tile3.nc .........OK + Moving dynf027.tile4.nc .........OK + Moving dynf027.tile5.nc .........OK + Moving dynf027.tile6.nc .........OK + Moving dynf048.tile1.nc .........OK + Moving dynf048.tile2.nc .........OK + Moving dynf048.tile3.nc .........OK + Moving dynf048.tile4.nc .........OK + Moving dynf048.tile5.nc .........OK + Moving dynf048.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 002 fv3_ccpp_restart PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_read_inc_prod +Checking test 003 fv3_ccpp_read_inc results .... +Moving baseline 003 fv3_ccpp_read_inc files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf027.tile1.nc .........OK + Moving phyf027.tile2.nc .........OK + Moving phyf027.tile3.nc .........OK + Moving phyf027.tile4.nc .........OK + Moving phyf027.tile5.nc .........OK + Moving phyf027.tile6.nc .........OK + Moving phyf048.tile1.nc .........OK + Moving phyf048.tile2.nc .........OK + Moving phyf048.tile3.nc .........OK + Moving phyf048.tile4.nc .........OK + Moving phyf048.tile5.nc .........OK + Moving phyf048.tile6.nc .........OK + Moving dynf027.tile1.nc .........OK + Moving dynf027.tile2.nc .........OK + Moving dynf027.tile3.nc .........OK + Moving dynf027.tile4.nc .........OK + Moving dynf027.tile5.nc .........OK + Moving dynf027.tile6.nc .........OK + Moving dynf048.tile1.nc .........OK + Moving dynf048.tile2.nc .........OK + Moving dynf048.tile3.nc .........OK + Moving dynf048.tile4.nc .........OK + Moving dynf048.tile5.nc .........OK + Moving dynf048.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 003 fv3_ccpp_read_inc PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_wrtGauss_netcdf_esmf_prod +Checking test 004 fv3_ccpp_wrtGauss_netcdf_esmf results .... +Moving baseline 004 fv3_ccpp_wrtGauss_netcdf_esmf files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nc .........OK + Moving phyf024.nc .........OK + Moving dynf000.nc .........OK + Moving dynf024.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 004 fv3_ccpp_wrtGauss_netcdf_esmf PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_wrtGauss_netcdf_prod +Checking test 005 fv3_ccpp_wrtGauss_netcdf results .... +Moving baseline 005 fv3_ccpp_wrtGauss_netcdf files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nc .........OK + Moving phyf024.nc .........OK + Moving dynf000.nc .........OK + Moving dynf024.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 005 fv3_ccpp_wrtGauss_netcdf PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_wrtGauss_netcdf_parallel_prod +Checking test 006 fv3_ccpp_wrtGauss_netcdf_parallel results .... +Moving baseline 006 fv3_ccpp_wrtGauss_netcdf_parallel files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nc .........OK + Moving phyf024.nc .........OK + Moving dynf000.nc .........OK + Moving dynf024.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 006 fv3_ccpp_wrtGauss_netcdf_parallel PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_wrtGlatlon_netcdf_prod +Checking test 007 fv3_ccpp_wrtGlatlon_netcdf results .... +Moving baseline 007 fv3_ccpp_wrtGlatlon_netcdf files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nc .........OK + Moving phyf024.nc .........OK + Moving dynf000.nc .........OK + Moving dynf024.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 007 fv3_ccpp_wrtGlatlon_netcdf PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_wrtGauss_nemsio_prod +Checking test 008 fv3_ccpp_wrtGauss_nemsio results .... +Moving baseline 008 fv3_ccpp_wrtGauss_nemsio files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 008 fv3_ccpp_wrtGauss_nemsio PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_wrtGauss_nemsio_c192_prod +Checking test 009 fv3_ccpp_wrtGauss_nemsio_c192 results .... +Moving baseline 009 fv3_ccpp_wrtGauss_nemsio_c192 files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 009 fv3_ccpp_wrtGauss_nemsio_c192 PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_stochy_prod +Checking test 010 fv3_ccpp_stochy results .... +Moving baseline 010 fv3_ccpp_stochy files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf012.tile1.nc .........OK + Moving phyf012.tile2.nc .........OK + Moving phyf012.tile3.nc .........OK + Moving phyf012.tile4.nc .........OK + Moving phyf012.tile5.nc .........OK + Moving phyf012.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf012.tile1.nc .........OK + Moving dynf012.tile2.nc .........OK + Moving dynf012.tile3.nc .........OK + Moving dynf012.tile4.nc .........OK + Moving dynf012.tile5.nc .........OK + Moving dynf012.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 010 fv3_ccpp_stochy PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_iau_prod +Checking test 011 fv3_ccpp_iau results .... +Moving baseline 011 fv3_ccpp_iau files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf027.tile1.nc .........OK + Moving phyf027.tile2.nc .........OK + Moving phyf027.tile3.nc .........OK + Moving phyf027.tile4.nc .........OK + Moving phyf027.tile5.nc .........OK + Moving phyf027.tile6.nc .........OK + Moving phyf048.tile1.nc .........OK + Moving phyf048.tile2.nc .........OK + Moving phyf048.tile3.nc .........OK + Moving phyf048.tile4.nc .........OK + Moving phyf048.tile5.nc .........OK + Moving phyf048.tile6.nc .........OK + Moving dynf027.tile1.nc .........OK + Moving dynf027.tile2.nc .........OK + Moving dynf027.tile3.nc .........OK + Moving dynf027.tile4.nc .........OK + Moving dynf027.tile5.nc .........OK + Moving dynf027.tile6.nc .........OK + Moving dynf048.tile1.nc .........OK + Moving dynf048.tile2.nc .........OK + Moving dynf048.tile3.nc .........OK + Moving dynf048.tile4.nc .........OK + Moving dynf048.tile5.nc .........OK + Moving dynf048.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 011 fv3_ccpp_iau PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_lheatstrg_prod +Checking test 012 fv3_ccpp_lheatstrg results .... +Moving baseline 012 fv3_ccpp_lheatstrg files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 012 fv3_ccpp_lheatstrg PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_multigases_prod +Checking test 013 fv3_ccpp_multigases results .... +Moving baseline 013 fv3_ccpp_multigases files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 013 fv3_ccpp_multigases PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_control_32bit_prod +Checking test 014 fv3_ccpp_control_32bit results .... +Moving baseline 014 fv3_ccpp_control_32bit files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 014 fv3_ccpp_control_32bit PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_stretched_prod +Checking test 015 fv3_ccpp_stretched results .... +Moving baseline 015 fv3_ccpp_stretched files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving fv3_history2d.tile1.nc .........OK + Moving fv3_history2d.tile2.nc .........OK + Moving fv3_history2d.tile3.nc .........OK + Moving fv3_history2d.tile4.nc .........OK + Moving fv3_history2d.tile5.nc .........OK + Moving fv3_history2d.tile6.nc .........OK + Moving fv3_history.tile1.nc .........OK + Moving fv3_history.tile2.nc .........OK + Moving fv3_history.tile3.nc .........OK + Moving fv3_history.tile4.nc .........OK + Moving fv3_history.tile5.nc .........OK + Moving fv3_history.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 015 fv3_ccpp_stretched PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_stretched_nest_prod +Checking test 016 fv3_ccpp_stretched_nest results .... +Moving baseline 016 fv3_ccpp_stretched_nest files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving atmos_4xdaily.nest02.tile7.nc .........OK + Moving fv3_history2d.tile1.nc .........OK + Moving fv3_history2d.tile2.nc .........OK + Moving fv3_history2d.tile3.nc .........OK + Moving fv3_history2d.tile4.nc .........OK + Moving fv3_history2d.tile5.nc .........OK + Moving fv3_history2d.tile6.nc .........OK + Moving fv3_history2d.nest02.tile7.nc .........OK + Moving fv3_history.tile1.nc .........OK + Moving fv3_history.tile2.nc .........OK + Moving fv3_history.tile3.nc .........OK + Moving fv3_history.tile4.nc .........OK + Moving fv3_history.tile5.nc .........OK + Moving fv3_history.tile6.nc .........OK + Moving fv3_history.nest02.tile7.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.nest02.nc .........OK + Moving RESTART/fv_BC_ne.res.nest02.nc .........OK + Moving RESTART/fv_BC_sw.res.nest02.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_core.res.nest02.tile7.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.nest02.tile7.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/phy_data.nest02.tile7.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/sfc_data.nest02.tile7.nc .........OK +Test 016 fv3_ccpp_stretched_nest PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_regional_control_prod +Checking test 017 fv3_ccpp_regional_control results .... +Moving baseline 017 fv3_ccpp_regional_control files .... + Moving atmos_4xdaily.nc .........OK + Moving fv3_history2d.nc .........OK + Moving fv3_history.nc .........OK + Moving RESTART/fv_core.res.tile1_new.nc .........OK + Moving RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 017 fv3_ccpp_regional_control PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_regional_restart_prod +Checking test 018 fv3_ccpp_regional_restart results .... +Moving baseline 018 fv3_ccpp_regional_restart files .... + Moving atmos_4xdaily.nc .........OK + Moving fv3_history2d.nc .........OK + Moving fv3_history.nc .........OK +Test 018 fv3_ccpp_regional_restart PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_regional_quilt_prod +Checking test 019 fv3_ccpp_regional_quilt results .... +Moving baseline 019 fv3_ccpp_regional_quilt files .... + Moving atmos_4xdaily.nc .........OK + Moving dynf000.nc .........OK + Moving dynf024.nc .........OK + Moving phyf000.nc .........OK + Moving phyf024.nc .........OK +Test 019 fv3_ccpp_regional_quilt PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 020 fv3_ccpp_regional_quilt_netcdf_parallel results .... +Moving baseline 020 fv3_ccpp_regional_quilt_netcdf_parallel files .... + Moving atmos_4xdaily.nc .........OK + Moving dynf000.nc .........OK + Moving dynf024.nc .........OK + Moving phyf000.nc .........OK + Moving phyf024.nc .........OK +Test 020 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_control_debug_prod +Checking test 021 fv3_ccpp_control_debug results .... +Moving baseline 021 fv3_ccpp_control_debug files .... + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK +Test 021 fv3_ccpp_control_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_stretched_nest_debug_prod +Checking test 022 fv3_ccpp_stretched_nest_debug results .... +Moving baseline 022 fv3_ccpp_stretched_nest_debug files .... + Moving fv3_history2d.nest02.tile7.nc .........OK + Moving fv3_history2d.tile1.nc .........OK + Moving fv3_history2d.tile2.nc .........OK + Moving fv3_history2d.tile3.nc .........OK + Moving fv3_history2d.tile4.nc .........OK + Moving fv3_history2d.tile5.nc .........OK + Moving fv3_history2d.tile6.nc .........OK + Moving fv3_history.nest02.tile7.nc .........OK + Moving fv3_history.tile1.nc .........OK + Moving fv3_history.tile2.nc .........OK + Moving fv3_history.tile3.nc .........OK + Moving fv3_history.tile4.nc .........OK + Moving fv3_history.tile5.nc .........OK + Moving fv3_history.tile6.nc .........OK +Test 022 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfdlmp_prod +Checking test 023 fv3_ccpp_gfdlmp results .... +Moving baseline 023 fv3_ccpp_gfdlmp files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 023 fv3_ccpp_gfdlmp PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... +Moving baseline 024 fv3_ccpp_gfdlmprad_gwd files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 024 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... +Moving baseline 025 fv3_ccpp_gfdlmprad_noahmp files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 025 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_csawmg_prod +Checking test 026 fv3_ccpp_csawmg results .... +Moving baseline 026 fv3_ccpp_csawmg files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 026 fv3_ccpp_csawmg PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_satmedmf_prod +Checking test 027 fv3_ccpp_satmedmf results .... +Moving baseline 027 fv3_ccpp_satmedmf files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 027 fv3_ccpp_satmedmf PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_satmedmfq_prod +Checking test 028 fv3_ccpp_satmedmfq results .... +Moving baseline 028 fv3_ccpp_satmedmfq files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 028 fv3_ccpp_satmedmfq PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfdlmp_32bit_prod +Checking test 029 fv3_ccpp_gfdlmp_32bit results .... +Moving baseline 029 fv3_ccpp_gfdlmp_32bit files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 029 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 030 fv3_ccpp_gfdlmprad_32bit_post results .... +Moving baseline 030 fv3_ccpp_gfdlmprad_32bit_post files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 030 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_cpt_prod +Checking test 031 fv3_ccpp_cpt results .... +Moving baseline 031 fv3_ccpp_cpt files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 031 fv3_ccpp_cpt PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gsd_prod +Checking test 032 fv3_ccpp_gsd results .... +Moving baseline 032 fv3_ccpp_gsd files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving phyf027.tile1.nc .........OK + Moving phyf027.tile2.nc .........OK + Moving phyf027.tile3.nc .........OK + Moving phyf027.tile4.nc .........OK + Moving phyf027.tile5.nc .........OK + Moving phyf027.tile6.nc .........OK + Moving phyf048.tile1.nc .........OK + Moving phyf048.tile2.nc .........OK + Moving phyf048.tile3.nc .........OK + Moving phyf048.tile4.nc .........OK + Moving phyf048.tile5.nc .........OK + Moving phyf048.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving dynf027.tile1.nc .........OK + Moving dynf027.tile2.nc .........OK + Moving dynf027.tile3.nc .........OK + Moving dynf027.tile4.nc .........OK + Moving dynf027.tile5.nc .........OK + Moving dynf027.tile6.nc .........OK + Moving dynf048.tile1.nc .........OK + Moving dynf048.tile2.nc .........OK + Moving dynf048.tile3.nc .........OK + Moving dynf048.tile4.nc .........OK + Moving dynf048.tile5.nc .........OK + Moving dynf048.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 032 fv3_ccpp_gsd PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_thompson_prod +Checking test 033 fv3_ccpp_thompson results .... +Moving baseline 033 fv3_ccpp_thompson files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 033 fv3_ccpp_thompson PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_thompson_no_aero_prod +Checking test 034 fv3_ccpp_thompson_no_aero results .... +Moving baseline 034 fv3_ccpp_thompson_no_aero files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 034 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_rrfs_v1beta_prod +Checking test 035 fv3_ccpp_rrfs_v1beta results .... +Moving baseline 035 fv3_ccpp_rrfs_v1beta files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 035 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfs_v16beta_prod +Checking test 036 fv3_ccpp_gfs_v16beta results .... +Moving baseline 036 fv3_ccpp_gfs_v16beta files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving phyf048.tile1.nc .........OK + Moving phyf048.tile2.nc .........OK + Moving phyf048.tile3.nc .........OK + Moving phyf048.tile4.nc .........OK + Moving phyf048.tile5.nc .........OK + Moving phyf048.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving dynf048.tile1.nc .........OK + Moving dynf048.tile2.nc .........OK + Moving dynf048.tile3.nc .........OK + Moving dynf048.tile4.nc .........OK + Moving dynf048.tile5.nc .........OK + Moving dynf048.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 036 fv3_ccpp_gfs_v16beta PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 037 fv3_ccpp_gfs_v16beta_stochy results .... +Moving baseline 037 fv3_ccpp_gfs_v16beta_stochy files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf012.tile1.nc .........OK + Moving phyf012.tile2.nc .........OK + Moving phyf012.tile3.nc .........OK + Moving phyf012.tile4.nc .........OK + Moving phyf012.tile5.nc .........OK + Moving phyf012.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf012.tile1.nc .........OK + Moving dynf012.tile2.nc .........OK + Moving dynf012.tile3.nc .........OK + Moving dynf012.tile4.nc .........OK + Moving dynf012.tile5.nc .........OK + Moving dynf012.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 037 fv3_ccpp_gfs_v16beta_stochy PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 038 fv3_ccpp_gfs_v16beta_RRTMGP results .... +Moving baseline 038 fv3_ccpp_gfs_v16beta_RRTMGP files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 038 fv3_ccpp_gfs_v16beta_RRTMGP PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfsv16_csawmg_prod +Checking test 039 fv3_ccpp_gfsv16_csawmg results .... +Moving baseline 039 fv3_ccpp_gfsv16_csawmg files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 039 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 040 fv3_ccpp_gfsv16_csawmgt results .... +Moving baseline 040 fv3_ccpp_gfsv16_csawmgt files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 040 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gocart_clm_prod +Checking test 041 fv3_ccpp_gocart_clm results .... +Moving baseline 041 fv3_ccpp_gocart_clm files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 041 fv3_ccpp_gocart_clm PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 042 fv3_ccpp_gfs_v16beta_flake results .... +Moving baseline 042 fv3_ccpp_gfs_v16beta_flake files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 042 fv3_ccpp_gfs_v16beta_flake PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 043 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +Moving baseline 043 fv3_ccpp_HAFS_v0_hwrf_thompson files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 043 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +Moving baseline 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson files .... + Moving atmos_4xdaily.nc .........OK + Moving phyf000.nc .........OK + Moving phyf012.nc .........OK + Moving dynf000.nc .........OK + Moving dynf012.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/sfc_data.nc .........OK + Moving RESTART/phy_data.nc .........OK +Test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 045 fv3_ccpp_gfs_v16beta_debug results .... +Moving baseline 045 fv3_ccpp_gfs_v16beta_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 045 fv3_ccpp_gfs_v16beta_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 046 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +Moving baseline 046 fv3_ccpp_gfs_v16beta_RRTMGP_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 046 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gsd_debug_prod +Checking test 047 fv3_ccpp_gsd_debug results .... +Moving baseline 047 fv3_ccpp_gsd_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf003.tile1.nc .........OK + Moving phyf003.tile2.nc .........OK + Moving phyf003.tile3.nc .........OK + Moving phyf003.tile4.nc .........OK + Moving phyf003.tile5.nc .........OK + Moving phyf003.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf003.tile1.nc .........OK + Moving dynf003.tile2.nc .........OK + Moving dynf003.tile3.nc .........OK + Moving dynf003.tile4.nc .........OK + Moving dynf003.tile5.nc .........OK + Moving dynf003.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 047 fv3_ccpp_gsd_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... +Moving baseline 048 fv3_ccpp_gsd_diag3d_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf003.tile1.nc .........OK + Moving phyf003.tile2.nc .........OK + Moving phyf003.tile3.nc .........OK + Moving phyf003.tile4.nc .........OK + Moving phyf003.tile5.nc .........OK + Moving phyf003.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf003.tile1.nc .........OK + Moving dynf003.tile2.nc .........OK + Moving dynf003.tile3.nc .........OK + Moving dynf003.tile4.nc .........OK + Moving dynf003.tile5.nc .........OK + Moving dynf003.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 048 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_thompson_debug_prod +Checking test 049 fv3_ccpp_thompson_debug results .... +Moving baseline 049 fv3_ccpp_thompson_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 049 fv3_ccpp_thompson_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... +Moving baseline 050 fv3_ccpp_thompson_no_aero_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 050 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... +Moving baseline 051 fv3_ccpp_rrfs_v1beta_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf003.tile1.nc .........OK + Moving phyf003.tile2.nc .........OK + Moving phyf003.tile3.nc .........OK + Moving phyf003.tile4.nc .........OK + Moving phyf003.tile5.nc .........OK + Moving phyf003.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf003.tile1.nc .........OK + Moving dynf003.tile2.nc .........OK + Moving dynf003.tile3.nc .........OK + Moving dynf003.tile4.nc .........OK + Moving dynf003.tile5.nc .........OK + Moving dynf003.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 051 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +Moving baseline 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf003.tile1.nc .........OK + Moving phyf003.tile2.nc .........OK + Moving phyf003.tile3.nc .........OK + Moving phyf003.tile4.nc .........OK + Moving phyf003.tile5.nc .........OK + Moving phyf003.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf003.tile1.nc .........OK + Moving dynf003.tile2.nc .........OK + Moving dynf003.tile3.nc .........OK + Moving dynf003.tile4.nc .........OK + Moving dynf003.tile5.nc .........OK + Moving dynf003.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +Moving baseline 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug files .... + Moving atmos_4xdaily.nc .........OK + Moving phyf000.nc .........OK + Moving phyf001.nc .........OK + Moving dynf000.nc .........OK + Moving dynf001.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/sfc_data.nc .........OK + Moving RESTART/phy_data.nc .........OK +Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 15 15:58:47 UTC 2020 -Elapsed time: 00h:40m:18s. Have a nice day! +Thu Dec 17 02:34:42 UTC 2020 +Elapsed time: 00h:39m:18s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index f649399289..655b7607ae 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,3993 +1,3710 @@ -Wed Dec 16 17:17:51 UTC 2020 +Thu Dec 17 02:33:12 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control 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 +Moving baseline 001 fv3_ccpp_control files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK Test 001 fv3_ccpp_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 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 002 fv3_ccpp_decomp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads 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 003 fv3_ccpp_2threads PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart 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 004 fv3_ccpp_restart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 - 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 005 fv3_ccpp_read_inc PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 - 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.nc .........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 - 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 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 - 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.nc .........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 - 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 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 - 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.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc ............ALT CHECK......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 - 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 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 - 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.nc .........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 - 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 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 - 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 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 - 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 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_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/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 012 fv3_ccpp_stochy PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_iau_prod -Checking test 013 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 013 fv3_ccpp_iau PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_lheatstrg_prod -Checking test 014 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 014 fv3_ccpp_lheatstrg PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfdlmprad_prod -Checking test 015 fv3_ccpp_gfdlmprad 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 - Comparing out_grd.glo_30m .........OK -Test 015 fv3_ccpp_gfdlmprad PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 016 fv3_ccpp_gfdlmprad_atmwav 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 - Comparing out_grd.glo_30m .........OK -Test 016 fv3_ccpp_gfdlmprad_atmwav PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 - 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 - 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 017 fv3_ccpp_multigases PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 - 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 018 fv3_ccpp_control_32bit PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 019 fv3_ccpp_stretched PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 020 fv3_ccpp_stretched_nest PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 021 fv3_ccpp_regional_control PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 022 fv3_ccpp_regional_restart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 023 fv3_ccpp_regional_quilt PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 phyf024.nc .........OK -Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_regional_c768_prod -Checking test 025 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf003.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf003.nc .........OK -Test 025 fv3_ccpp_regional_c768 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_control_debug_prod -Checking test 026 fv3_ccpp_control_debug results .... - 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 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 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 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 -Test 026 fv3_ccpp_control_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_stretched_nest_debug_prod -Checking test 027 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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - 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 - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfdlmp_prod -Checking test 028 fv3_ccpp_gfdlmp 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 028 fv3_ccpp_gfdlmp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 029 fv3_ccpp_gfdlmprad_gwd 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 029 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 030 fv3_ccpp_gfdlmprad_noahmp 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 030 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_csawmg_prod -Checking test 031 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 031 fv3_ccpp_csawmg PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_satmedmf_prod -Checking test 032 fv3_ccpp_satmedmf 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 032 fv3_ccpp_satmedmf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_satmedmfq_prod -Checking test 033 fv3_ccpp_satmedmfq 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_satmedmfq PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfdlmp_32bit_prod -Checking test 034 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 034 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 035 fv3_ccpp_gfdlmprad_32bit_post 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 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 - 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 035 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_cpt_prod -Checking test 036 fv3_ccpp_cpt 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 - 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 036 fv3_ccpp_cpt PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gsd_prod -Checking test 037 fv3_ccpp_gsd 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 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 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 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 037 fv3_ccpp_gsd PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_thompson_prod -Checking test 038 fv3_ccpp_thompson 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_thompson PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_thompson_no_aero_prod -Checking test 039 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.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 039 fv3_ccpp_thompson_no_aero PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_rrfs_v1beta_prod -Checking test 040 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 040 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfs_v16beta_prod -Checking test 041 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 041 fv3_ccpp_gfs_v16beta PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 042 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 042 fv3_ccpp_gfs_v16beta_restart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 043 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 043 fv3_ccpp_gfs_v16beta_stochy PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 - 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_v16beta_flake PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 - 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_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/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 - Comparing dynf000.nc .........OK - Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 051 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 051 fv3_ccpp_gfs_v16beta_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 052 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 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gsd_debug_prod -Checking test 053 fv3_ccpp_gsd_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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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_gsd_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 054 fv3_ccpp_gsd_diag3d_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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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_gsd_diag3d_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_thompson_debug_prod -Checking test 055 fv3_ccpp_thompson_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_thompson_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 056 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 - 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_thompson_no_aero_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 057 fv3_ccpp_rrfs_v1beta_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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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_rrfs_v1beta_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 058 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 - 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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK - 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 - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_control_prod -Checking test 060 cpld_control results .... - 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 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 - 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 - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_2threads_prod -Checking test 061 cpld_2threads results .... - 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 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 - 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_2threads PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_decomp_prod -Checking test 062 cpld_decomp results .... - 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 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 - 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_decomp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_satmedmf_prod -Checking test 063 cpld_satmedmf results .... - 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 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 - 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_satmedmf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_ca_prod -Checking test 064 cpld_ca results .... - 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 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 - 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_ca PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_control_mx025_prod -Checking test 065 cpld_control_mx025 results .... - 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 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 - 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.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 065 cpld_control_mx025 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_control_mx025_12h_prod -Checking test 066 cpld_control_mx025_12h results .... - 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 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 - 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.2016-10-03-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -Test 066 cpld_control_mx025_12h PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_restart_mx025_prod -Checking test 067 cpld_restart_mx025 results .... - 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 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 - 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.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 067 cpld_restart_mx025 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_control_c192_prod -Checking test 068 cpld_control_c192 results .... - 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 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 - 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_control_c192 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_control_c384_prod -Checking test 069 cpld_control_c384 results .... - 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 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 - 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.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_control_c384 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_controlfrac_c384_prod -Checking test 070 cpld_controlfrac_c384 results .... - 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 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 - 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.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_controlfrac_c384 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_bmark_prod -Checking test 071 cpld_bmark results .... - 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 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 - 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.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 071 cpld_bmark PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_bmark_wave_prod -Checking test 072 cpld_bmark_wave results .... - 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 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 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........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/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.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 072 cpld_bmark_wave PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/cpld_debug_prod -Checking test 073 cpld_debug results .... - 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 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 - 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 073 cpld_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/datm_control_cfsr -Checking test 074 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 074 datm_control_cfsr PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/datm_restart_cfsr -Checking test 075 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 075 datm_restart_cfsr PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/datm_control_gefs -Checking test 076 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 076 datm_control_gefs PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/datm_bulk_cfsr -Checking test 077 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 077 datm_bulk_cfsr PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/datm_bulk_gefs -Checking test 078 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 078 datm_bulk_gefs PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/datm_mx025_cfsr -Checking test 079 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 079 datm_mx025_cfsr PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/datm_mx025_gefs -Checking test 080 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 080 datm_mx025_gefs PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201215/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_134179/datm_debug_cfsr -Checking test 081 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 081 datm_debug_cfsr PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_restart_prod +Checking test 002 fv3_ccpp_restart results .... +Moving baseline 002 fv3_ccpp_restart files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf027.tile1.nc .........OK + Moving phyf027.tile2.nc .........OK + Moving phyf027.tile3.nc .........OK + Moving phyf027.tile4.nc .........OK + Moving phyf027.tile5.nc .........OK + Moving phyf027.tile6.nc .........OK + Moving phyf048.tile1.nc .........OK + Moving phyf048.tile2.nc .........OK + Moving phyf048.tile3.nc .........OK + Moving phyf048.tile4.nc .........OK + Moving phyf048.tile5.nc .........OK + Moving phyf048.tile6.nc .........OK + Moving dynf027.tile1.nc .........OK + Moving dynf027.tile2.nc .........OK + Moving dynf027.tile3.nc .........OK + Moving dynf027.tile4.nc .........OK + Moving dynf027.tile5.nc .........OK + Moving dynf027.tile6.nc .........OK + Moving dynf048.tile1.nc .........OK + Moving dynf048.tile2.nc .........OK + Moving dynf048.tile3.nc .........OK + Moving dynf048.tile4.nc .........OK + Moving dynf048.tile5.nc .........OK + Moving dynf048.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 002 fv3_ccpp_restart PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_read_inc_prod +Checking test 003 fv3_ccpp_read_inc results .... +Moving baseline 003 fv3_ccpp_read_inc files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf027.tile1.nc .........OK + Moving phyf027.tile2.nc .........OK + Moving phyf027.tile3.nc .........OK + Moving phyf027.tile4.nc .........OK + Moving phyf027.tile5.nc .........OK + Moving phyf027.tile6.nc .........OK + Moving phyf048.tile1.nc .........OK + Moving phyf048.tile2.nc .........OK + Moving phyf048.tile3.nc .........OK + Moving phyf048.tile4.nc .........OK + Moving phyf048.tile5.nc .........OK + Moving phyf048.tile6.nc .........OK + Moving dynf027.tile1.nc .........OK + Moving dynf027.tile2.nc .........OK + Moving dynf027.tile3.nc .........OK + Moving dynf027.tile4.nc .........OK + Moving dynf027.tile5.nc .........OK + Moving dynf027.tile6.nc .........OK + Moving dynf048.tile1.nc .........OK + Moving dynf048.tile2.nc .........OK + Moving dynf048.tile3.nc .........OK + Moving dynf048.tile4.nc .........OK + Moving dynf048.tile5.nc .........OK + Moving dynf048.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 003 fv3_ccpp_read_inc PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_wrtGauss_netcdf_esmf_prod +Checking test 004 fv3_ccpp_wrtGauss_netcdf_esmf results .... +Moving baseline 004 fv3_ccpp_wrtGauss_netcdf_esmf files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nc .........OK + Moving phyf024.nc .........OK + Moving dynf000.nc .........OK + Moving dynf024.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 004 fv3_ccpp_wrtGauss_netcdf_esmf PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_wrtGauss_netcdf_prod +Checking test 005 fv3_ccpp_wrtGauss_netcdf results .... +Moving baseline 005 fv3_ccpp_wrtGauss_netcdf files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nc .........OK + Moving phyf024.nc .........OK + Moving dynf000.nc .........OK + Moving dynf024.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 005 fv3_ccpp_wrtGauss_netcdf PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_wrtGauss_netcdf_parallel_prod +Checking test 006 fv3_ccpp_wrtGauss_netcdf_parallel results .... +Moving baseline 006 fv3_ccpp_wrtGauss_netcdf_parallel files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nc .........OK + Moving phyf024.nc .........OK + Moving dynf000.nc .........OK + Moving dynf024.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 006 fv3_ccpp_wrtGauss_netcdf_parallel PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_wrtGlatlon_netcdf_prod +Checking test 007 fv3_ccpp_wrtGlatlon_netcdf results .... +Moving baseline 007 fv3_ccpp_wrtGlatlon_netcdf files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nc .........OK + Moving phyf024.nc .........OK + Moving dynf000.nc .........OK + Moving dynf024.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 007 fv3_ccpp_wrtGlatlon_netcdf PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_wrtGauss_nemsio_prod +Checking test 008 fv3_ccpp_wrtGauss_nemsio results .... +Moving baseline 008 fv3_ccpp_wrtGauss_nemsio files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 008 fv3_ccpp_wrtGauss_nemsio PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_wrtGauss_nemsio_c192_prod +Checking test 009 fv3_ccpp_wrtGauss_nemsio_c192 results .... +Moving baseline 009 fv3_ccpp_wrtGauss_nemsio_c192 files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 009 fv3_ccpp_wrtGauss_nemsio_c192 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_stochy_prod +Checking test 010 fv3_ccpp_stochy results .... +Moving baseline 010 fv3_ccpp_stochy files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf012.tile1.nc .........OK + Moving phyf012.tile2.nc .........OK + Moving phyf012.tile3.nc .........OK + Moving phyf012.tile4.nc .........OK + Moving phyf012.tile5.nc .........OK + Moving phyf012.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf012.tile1.nc .........OK + Moving dynf012.tile2.nc .........OK + Moving dynf012.tile3.nc .........OK + Moving dynf012.tile4.nc .........OK + Moving dynf012.tile5.nc .........OK + Moving dynf012.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 010 fv3_ccpp_stochy PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_iau_prod +Checking test 011 fv3_ccpp_iau results .... +Moving baseline 011 fv3_ccpp_iau files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf027.tile1.nc .........OK + Moving phyf027.tile2.nc .........OK + Moving phyf027.tile3.nc .........OK + Moving phyf027.tile4.nc .........OK + Moving phyf027.tile5.nc .........OK + Moving phyf027.tile6.nc .........OK + Moving phyf048.tile1.nc .........OK + Moving phyf048.tile2.nc .........OK + Moving phyf048.tile3.nc .........OK + Moving phyf048.tile4.nc .........OK + Moving phyf048.tile5.nc .........OK + Moving phyf048.tile6.nc .........OK + Moving dynf027.tile1.nc .........OK + Moving dynf027.tile2.nc .........OK + Moving dynf027.tile3.nc .........OK + Moving dynf027.tile4.nc .........OK + Moving dynf027.tile5.nc .........OK + Moving dynf027.tile6.nc .........OK + Moving dynf048.tile1.nc .........OK + Moving dynf048.tile2.nc .........OK + Moving dynf048.tile3.nc .........OK + Moving dynf048.tile4.nc .........OK + Moving dynf048.tile5.nc .........OK + Moving dynf048.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 011 fv3_ccpp_iau PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_lheatstrg_prod +Checking test 012 fv3_ccpp_lheatstrg results .... +Moving baseline 012 fv3_ccpp_lheatstrg files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 012 fv3_ccpp_lheatstrg PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfdlmprad_prod +Checking test 013 fv3_ccpp_gfdlmprad results .... +Moving baseline 013 fv3_ccpp_gfdlmprad files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving out_grd.glo_30m .........OK +Test 013 fv3_ccpp_gfdlmprad PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 014 fv3_ccpp_gfdlmprad_atmwav results .... +Moving baseline 014 fv3_ccpp_gfdlmprad_atmwav files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving out_grd.glo_30m .........OK +Test 014 fv3_ccpp_gfdlmprad_atmwav PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_multigases_prod +Checking test 015 fv3_ccpp_multigases results .... +Moving baseline 015 fv3_ccpp_multigases files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 015 fv3_ccpp_multigases PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_control_32bit_prod +Checking test 016 fv3_ccpp_control_32bit results .... +Moving baseline 016 fv3_ccpp_control_32bit files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 016 fv3_ccpp_control_32bit PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_stretched_prod +Checking test 017 fv3_ccpp_stretched results .... +Moving baseline 017 fv3_ccpp_stretched files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving fv3_history2d.tile1.nc .........OK + Moving fv3_history2d.tile2.nc .........OK + Moving fv3_history2d.tile3.nc .........OK + Moving fv3_history2d.tile4.nc .........OK + Moving fv3_history2d.tile5.nc .........OK + Moving fv3_history2d.tile6.nc .........OK + Moving fv3_history.tile1.nc .........OK + Moving fv3_history.tile2.nc .........OK + Moving fv3_history.tile3.nc .........OK + Moving fv3_history.tile4.nc .........OK + Moving fv3_history.tile5.nc .........OK + Moving fv3_history.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 017 fv3_ccpp_stretched PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_stretched_nest_prod +Checking test 018 fv3_ccpp_stretched_nest results .... +Moving baseline 018 fv3_ccpp_stretched_nest files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving atmos_4xdaily.nest02.tile7.nc .........OK + Moving fv3_history2d.tile1.nc .........OK + Moving fv3_history2d.tile2.nc .........OK + Moving fv3_history2d.tile3.nc .........OK + Moving fv3_history2d.tile4.nc .........OK + Moving fv3_history2d.tile5.nc .........OK + Moving fv3_history2d.tile6.nc .........OK + Moving fv3_history2d.nest02.tile7.nc .........OK + Moving fv3_history.tile1.nc .........OK + Moving fv3_history.tile2.nc .........OK + Moving fv3_history.tile3.nc .........OK + Moving fv3_history.tile4.nc .........OK + Moving fv3_history.tile5.nc .........OK + Moving fv3_history.tile6.nc .........OK + Moving fv3_history.nest02.tile7.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.nest02.nc .........OK + Moving RESTART/fv_BC_ne.res.nest02.nc .........OK + Moving RESTART/fv_BC_sw.res.nest02.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_core.res.nest02.tile7.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.nest02.tile7.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/phy_data.nest02.tile7.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/sfc_data.nest02.tile7.nc .........OK +Test 018 fv3_ccpp_stretched_nest PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_regional_control_prod +Checking test 019 fv3_ccpp_regional_control results .... +Moving baseline 019 fv3_ccpp_regional_control files .... + Moving atmos_4xdaily.nc .........OK + Moving fv3_history2d.nc .........OK + Moving fv3_history.nc .........OK + Moving RESTART/fv_core.res.tile1_new.nc .........OK + Moving RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 019 fv3_ccpp_regional_control PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_regional_restart_prod +Checking test 020 fv3_ccpp_regional_restart results .... +Moving baseline 020 fv3_ccpp_regional_restart files .... + Moving atmos_4xdaily.nc .........OK + Moving fv3_history2d.nc .........OK + Moving fv3_history.nc .........OK +Test 020 fv3_ccpp_regional_restart PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_regional_quilt_prod +Checking test 021 fv3_ccpp_regional_quilt results .... +Moving baseline 021 fv3_ccpp_regional_quilt files .... + Moving atmos_4xdaily.nc .........OK + Moving dynf000.nc .........OK + Moving dynf024.nc .........OK + Moving phyf000.nc .........OK + Moving phyf024.nc .........OK +Test 021 fv3_ccpp_regional_quilt PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... +Moving baseline 022 fv3_ccpp_regional_quilt_netcdf_parallel files .... + Moving atmos_4xdaily.nc .........OK + Moving dynf000.nc .........OK + Moving dynf024.nc .........OK + Moving phyf000.nc .........OK + Moving phyf024.nc .........OK +Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_regional_c768_prod +Checking test 023 fv3_ccpp_regional_c768 results .... +Moving baseline 023 fv3_ccpp_regional_c768 files .... + Moving atmos_4xdaily.nc .........OK + Moving dynf000.nc .........OK + Moving dynf003.nc .........OK + Moving phyf000.nc .........OK + Moving phyf003.nc .........OK +Test 023 fv3_ccpp_regional_c768 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_control_debug_prod +Checking test 024 fv3_ccpp_control_debug results .... +Moving baseline 024 fv3_ccpp_control_debug files .... + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK +Test 024 fv3_ccpp_control_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_stretched_nest_debug_prod +Checking test 025 fv3_ccpp_stretched_nest_debug results .... +Moving baseline 025 fv3_ccpp_stretched_nest_debug files .... + Moving fv3_history2d.nest02.tile7.nc .........OK + Moving fv3_history2d.tile1.nc .........OK + Moving fv3_history2d.tile2.nc .........OK + Moving fv3_history2d.tile3.nc .........OK + Moving fv3_history2d.tile4.nc .........OK + Moving fv3_history2d.tile5.nc .........OK + Moving fv3_history2d.tile6.nc .........OK + Moving fv3_history.nest02.tile7.nc .........OK + Moving fv3_history.tile1.nc .........OK + Moving fv3_history.tile2.nc .........OK + Moving fv3_history.tile3.nc .........OK + Moving fv3_history.tile4.nc .........OK + Moving fv3_history.tile5.nc .........OK + Moving fv3_history.tile6.nc .........OK +Test 025 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfdlmp_prod +Checking test 026 fv3_ccpp_gfdlmp results .... +Moving baseline 026 fv3_ccpp_gfdlmp files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 026 fv3_ccpp_gfdlmp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... +Moving baseline 027 fv3_ccpp_gfdlmprad_gwd files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 027 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... +Moving baseline 028 fv3_ccpp_gfdlmprad_noahmp files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 028 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_csawmg_prod +Checking test 029 fv3_ccpp_csawmg results .... +Moving baseline 029 fv3_ccpp_csawmg files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 029 fv3_ccpp_csawmg PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_satmedmf_prod +Checking test 030 fv3_ccpp_satmedmf results .... +Moving baseline 030 fv3_ccpp_satmedmf files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 030 fv3_ccpp_satmedmf PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_satmedmfq_prod +Checking test 031 fv3_ccpp_satmedmfq results .... +Moving baseline 031 fv3_ccpp_satmedmfq files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 031 fv3_ccpp_satmedmfq PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfdlmp_32bit_prod +Checking test 032 fv3_ccpp_gfdlmp_32bit results .... +Moving baseline 032 fv3_ccpp_gfdlmp_32bit files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 032 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... +Moving baseline 033 fv3_ccpp_gfdlmprad_32bit_post files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_cpt_prod +Checking test 034 fv3_ccpp_cpt results .... +Moving baseline 034 fv3_ccpp_cpt files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 034 fv3_ccpp_cpt PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gsd_prod +Checking test 035 fv3_ccpp_gsd results .... +Moving baseline 035 fv3_ccpp_gsd files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving phyf027.tile1.nc .........OK + Moving phyf027.tile2.nc .........OK + Moving phyf027.tile3.nc .........OK + Moving phyf027.tile4.nc .........OK + Moving phyf027.tile5.nc .........OK + Moving phyf027.tile6.nc .........OK + Moving phyf048.tile1.nc .........OK + Moving phyf048.tile2.nc .........OK + Moving phyf048.tile3.nc .........OK + Moving phyf048.tile4.nc .........OK + Moving phyf048.tile5.nc .........OK + Moving phyf048.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving dynf027.tile1.nc .........OK + Moving dynf027.tile2.nc .........OK + Moving dynf027.tile3.nc .........OK + Moving dynf027.tile4.nc .........OK + Moving dynf027.tile5.nc .........OK + Moving dynf027.tile6.nc .........OK + Moving dynf048.tile1.nc .........OK + Moving dynf048.tile2.nc .........OK + Moving dynf048.tile3.nc .........OK + Moving dynf048.tile4.nc .........OK + Moving dynf048.tile5.nc .........OK + Moving dynf048.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 035 fv3_ccpp_gsd PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_thompson_prod +Checking test 036 fv3_ccpp_thompson results .... +Moving baseline 036 fv3_ccpp_thompson files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 036 fv3_ccpp_thompson PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_thompson_no_aero_prod +Checking test 037 fv3_ccpp_thompson_no_aero results .... +Moving baseline 037 fv3_ccpp_thompson_no_aero files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 037 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_rrfs_v1beta_prod +Checking test 038 fv3_ccpp_rrfs_v1beta results .... +Moving baseline 038 fv3_ccpp_rrfs_v1beta files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 038 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfs_v16beta_prod +Checking test 039 fv3_ccpp_gfs_v16beta results .... +Moving baseline 039 fv3_ccpp_gfs_v16beta files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving phyf048.tile1.nc .........OK + Moving phyf048.tile2.nc .........OK + Moving phyf048.tile3.nc .........OK + Moving phyf048.tile4.nc .........OK + Moving phyf048.tile5.nc .........OK + Moving phyf048.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving dynf048.tile1.nc .........OK + Moving dynf048.tile2.nc .........OK + Moving dynf048.tile3.nc .........OK + Moving dynf048.tile4.nc .........OK + Moving dynf048.tile5.nc .........OK + Moving dynf048.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 039 fv3_ccpp_gfs_v16beta PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 040 fv3_ccpp_gfs_v16beta_stochy results .... +Moving baseline 040 fv3_ccpp_gfs_v16beta_stochy files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf012.tile1.nc .........OK + Moving phyf012.tile2.nc .........OK + Moving phyf012.tile3.nc .........OK + Moving phyf012.tile4.nc .........OK + Moving phyf012.tile5.nc .........OK + Moving phyf012.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf012.tile1.nc .........OK + Moving dynf012.tile2.nc .........OK + Moving dynf012.tile3.nc .........OK + Moving dynf012.tile4.nc .........OK + Moving dynf012.tile5.nc .........OK + Moving dynf012.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 040 fv3_ccpp_gfs_v16beta_stochy PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 041 fv3_ccpp_gfs_v16beta_RRTMGP results .... +Moving baseline 041 fv3_ccpp_gfs_v16beta_RRTMGP files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 041 fv3_ccpp_gfs_v16beta_RRTMGP PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfsv16_csawmg_prod +Checking test 042 fv3_ccpp_gfsv16_csawmg results .... +Moving baseline 042 fv3_ccpp_gfsv16_csawmg files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 042 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 043 fv3_ccpp_gfsv16_csawmgt results .... +Moving baseline 043 fv3_ccpp_gfsv16_csawmgt files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 043 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gocart_clm_prod +Checking test 044 fv3_ccpp_gocart_clm results .... +Moving baseline 044 fv3_ccpp_gocart_clm files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 044 fv3_ccpp_gocart_clm PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 045 fv3_ccpp_gfs_v16beta_flake results .... +Moving baseline 045 fv3_ccpp_gfs_v16beta_flake files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 045 fv3_ccpp_gfs_v16beta_flake PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +Moving baseline 046 fv3_ccpp_HAFS_v0_hwrf_thompson files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +Moving baseline 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson files .... + Moving atmos_4xdaily.nc .........OK + Moving phyf000.nc .........OK + Moving phyf012.nc .........OK + Moving dynf000.nc .........OK + Moving dynf012.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/sfc_data.nc .........OK + Moving RESTART/phy_data.nc .........OK +Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... +Moving baseline 048 fv3_ccpp_gfs_v16beta_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 048 fv3_ccpp_gfs_v16beta_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +Moving baseline 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gsd_debug_prod +Checking test 050 fv3_ccpp_gsd_debug results .... +Moving baseline 050 fv3_ccpp_gsd_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf003.tile1.nc .........OK + Moving phyf003.tile2.nc .........OK + Moving phyf003.tile3.nc .........OK + Moving phyf003.tile4.nc .........OK + Moving phyf003.tile5.nc .........OK + Moving phyf003.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf003.tile1.nc .........OK + Moving dynf003.tile2.nc .........OK + Moving dynf003.tile3.nc .........OK + Moving dynf003.tile4.nc .........OK + Moving dynf003.tile5.nc .........OK + Moving dynf003.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 050 fv3_ccpp_gsd_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... +Moving baseline 051 fv3_ccpp_gsd_diag3d_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf003.tile1.nc .........OK + Moving phyf003.tile2.nc .........OK + Moving phyf003.tile3.nc .........OK + Moving phyf003.tile4.nc .........OK + Moving phyf003.tile5.nc .........OK + Moving phyf003.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf003.tile1.nc .........OK + Moving dynf003.tile2.nc .........OK + Moving dynf003.tile3.nc .........OK + Moving dynf003.tile4.nc .........OK + Moving dynf003.tile5.nc .........OK + Moving dynf003.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 051 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_thompson_debug_prod +Checking test 052 fv3_ccpp_thompson_debug results .... +Moving baseline 052 fv3_ccpp_thompson_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 052 fv3_ccpp_thompson_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... +Moving baseline 053 fv3_ccpp_thompson_no_aero_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 053 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... +Moving baseline 054 fv3_ccpp_rrfs_v1beta_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf003.tile1.nc .........OK + Moving phyf003.tile2.nc .........OK + Moving phyf003.tile3.nc .........OK + Moving phyf003.tile4.nc .........OK + Moving phyf003.tile5.nc .........OK + Moving phyf003.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf003.tile1.nc .........OK + Moving dynf003.tile2.nc .........OK + Moving dynf003.tile3.nc .........OK + Moving dynf003.tile4.nc .........OK + Moving dynf003.tile5.nc .........OK + Moving dynf003.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 054 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +Moving baseline 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf003.tile1.nc .........OK + Moving phyf003.tile2.nc .........OK + Moving phyf003.tile3.nc .........OK + Moving phyf003.tile4.nc .........OK + Moving phyf003.tile5.nc .........OK + Moving phyf003.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf003.tile1.nc .........OK + Moving dynf003.tile2.nc .........OK + Moving dynf003.tile3.nc .........OK + Moving dynf003.tile4.nc .........OK + Moving dynf003.tile5.nc .........OK + Moving dynf003.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +Moving baseline 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug files .... + Moving atmos_4xdaily.nc .........OK + Moving phyf000.nc .........OK + Moving phyf001.nc .........OK + Moving dynf000.nc .........OK + Moving dynf001.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/sfc_data.nc .........OK + Moving RESTART/phy_data.nc .........OK +Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_control_prod +Checking test 057 cpld_control results .... +Moving baseline 057 cpld_control files .... + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/iced.2016-10-04-00000.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 057 cpld_control PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_satmedmf_prod +Checking test 058 cpld_satmedmf results .... +Moving baseline 058 cpld_satmedmf files .... + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/iced.2016-10-04-00000.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 058 cpld_satmedmf PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_ca_prod +Checking test 059 cpld_ca results .... +Moving baseline 059 cpld_ca files .... + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/iced.2016-10-04-00000.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 059 cpld_ca PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_control_mx025_prod +Checking test 060 cpld_control_mx025 results .... +Moving baseline 060 cpld_control_mx025 files .... + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/MOM.res_1.nc .........OK + Moving RESTART/MOM.res_2.nc .........OK + Moving RESTART/MOM.res_3.nc .........OK + Moving RESTART/iced.2016-10-04-00000.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 060 cpld_control_mx025 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_mx025_12h_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_control_mx025_12h_prod +Checking test 061 cpld_control_mx025_12h results .... +Moving baseline 061 cpld_control_mx025_12h files .... + Moving phyf012.tile1.nc .........OK + Moving phyf012.tile2.nc .........OK + Moving phyf012.tile3.nc .........OK + Moving phyf012.tile4.nc .........OK + Moving phyf012.tile5.nc .........OK + Moving phyf012.tile6.nc .........OK + Moving dynf012.tile1.nc .........OK + Moving dynf012.tile2.nc .........OK + Moving dynf012.tile3.nc .........OK + Moving dynf012.tile4.nc .........OK + Moving dynf012.tile5.nc .........OK + Moving dynf012.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/MOM.res_1.nc .........OK + Moving RESTART/MOM.res_2.nc .........OK + Moving RESTART/MOM.res_3.nc .........OK + Moving RESTART/iced.2016-10-03-43200.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK +Test 061 cpld_control_mx025_12h PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_control_c192_prod +Checking test 062 cpld_control_c192 results .... +Moving baseline 062 cpld_control_c192 files .... + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/iced.2016-10-04-00000.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 062 cpld_control_c192 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_control_c384_prod +Checking test 063 cpld_control_c384 results .... +Moving baseline 063 cpld_control_c384 files .... + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/MOM.res_1.nc .........OK + Moving RESTART/MOM.res_2.nc .........OK + Moving RESTART/MOM.res_3.nc .........OK + Moving RESTART/iced.2016-10-04-00000.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 063 cpld_control_c384 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_controlfrac_c384_prod +Checking test 064 cpld_controlfrac_c384 results .... +Moving baseline 064 cpld_controlfrac_c384 files .... + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/MOM.res_1.nc .........OK + Moving RESTART/MOM.res_2.nc .........OK + Moving RESTART/MOM.res_3.nc .........OK + Moving RESTART/iced.2016-10-04-00000.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 064 cpld_controlfrac_c384 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_bmark_prod +Checking test 065 cpld_bmark results .... +Moving baseline 065 cpld_bmark files .... + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/MOM.res_1.nc .........OK + Moving RESTART/MOM.res_2.nc .........OK + Moving RESTART/MOM.res_3.nc .........OK + Moving RESTART/iced.2013-04-02-00000.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 065 cpld_bmark PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_bmark_wave_prod +Checking test 066 cpld_bmark_wave results .... +Moving baseline 066 cpld_bmark_wave files .... + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving 20130402.000000.out_grd.gwes_30m .........OK + Moving 20130402.000000.out_pnt.points .........OK + Moving 20130402.000000.restart.gwes_30m .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/MOM.res_1.nc .........OK + Moving RESTART/MOM.res_2.nc .........OK + Moving RESTART/MOM.res_3.nc .........OK + Moving RESTART/iced.2013-04-02-00000.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 066 cpld_bmark_wave PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_debug_prod +Checking test 067 cpld_debug results .... +Moving baseline 067 cpld_debug files .... + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/iced.2016-10-03-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 067 cpld_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/datm_control_cfsr +Checking test 068 datm_control_cfsr results .... +Moving baseline 068 datm_control_cfsr files .... + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 068 datm_control_cfsr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/datm_control_gefs +Checking test 069 datm_control_gefs results .... +Moving baseline 069 datm_control_gefs files .... + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 069 datm_control_gefs PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/datm_bulk_cfsr +Checking test 070 datm_bulk_cfsr results .... +Moving baseline 070 datm_bulk_cfsr files .... + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 070 datm_bulk_cfsr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/datm_bulk_gefs +Checking test 071 datm_bulk_gefs results .... +Moving baseline 071 datm_bulk_gefs files .... + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 071 datm_bulk_gefs PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/datm_mx025_cfsr +Checking test 072 datm_mx025_cfsr results .... +Moving baseline 072 datm_mx025_cfsr files .... + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/MOM.res_1.nc .........OK + Moving RESTART/MOM.res_2.nc .........OK + Moving RESTART/MOM.res_3.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 072 datm_mx025_cfsr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/datm_mx025_gefs +Checking test 073 datm_mx025_gefs results .... +Moving baseline 073 datm_mx025_gefs files .... + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/MOM.res_1.nc .........OK + Moving RESTART/MOM.res_2.nc .........OK + Moving RESTART/MOM.res_3.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +Test 073 datm_mx025_gefs PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/datm_debug_cfsr +Checking test 074 datm_debug_cfsr results .... +Moving baseline 074 datm_debug_cfsr files .... + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/iced.2011-10-01-21600.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK +Test 074 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Dec 16 18:58:01 UTC 2020 -Elapsed time: 01h:40m:11s. Have a nice day! +Thu Dec 17 04:24:48 UTC 2020 +Elapsed time: 01h:51m:39s. Have a nice day! diff --git a/tests/parm/ccpp_gsd_rrtmgp.nml.IN b/tests/parm/ccpp_gsd_rrtmgp.nml.IN new file mode 100644 index 0000000000..699a4244a4 --- /dev/null +++ b/tests/parm/ccpp_gsd_rrtmgp.nml.IN @@ -0,0 +1,347 @@ +&amip_interp_nml + interp_oi_sst = .true. + use_ncep_sst = .true. + use_ncep_ice = .false. + no_anom_sst = .false. + data_set = 'reynolds_oi', + date_out_of_range = 'climo', +/ + +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + fdiag = @[FDIAG] + ccpp_suite = '@[CCPP_SUITE]' +/ + +&diag_manager_nml + prepend_date = .F. + max_output_fields = @[MAX_OUTPUT_FIELDS] +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100, + max_files_w = 100, +/ + +&fms_nml + clock_grain = 'ROUTINE', + domains_stack_size = 3000000, + print_memory_usage = .false. +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&fv_core_nml + layout = @[INPES],@[JNPES] + io_layout = 1,1 + npx = @[NPX] + npy = @[NPY] + ntiles = 6, + npz = @[NPZ] + grid_type = -1 + make_nh = @[MAKE_NH] + fv_debug = .F. + range_warn = .F. + reset_eta = .F. + n_sponge = 10 + nudge_qv = .T. + rf_fast = .F. + tau = 10. + rf_cutoff = 7.5e2 + d2_bg_k1 = 0.15 + d2_bg_k2 = 0.02 + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .F. + phys_hydrostatic = .F. + use_hydro_pressure = .F. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 6 + nwat = 6 + na_init = @[NA_INIT] + d_ext = 0. + dnats = @[DNATS] + fv_sg_adj = 450 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.12 + vtdm4 = 0.02 + delt_max = 0.002 + ke_bg = 0. + do_vort_damp = .true. + external_ic = @[EXTERNAL_IC] + external_eta = .T. + gfs_phil = .false. + nggps_ic = @[NGGPS_IC] + mountain = @[MOUNTAIN] + ncep_ic = .F. + d_con = 1. + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 + adjust_dry_mass = .F. + consv_te = 1. + do_sat_adj = @[DO_SAT_ADJ] + consv_am = .F. + fill = .T. + dwind_2d = .F. + print_freq = 6 + warm_start = @[WARM_START] + no_dycore = .false. + z_tracer = .T. + agrid_vel_rst = .true. + read_increment = @[READ_INCREMENT] + res_latlon_dynamics = "fv3_increment.nc" +/ + +&external_ic_nml + filtered_terrain = .true. + levp = @[NPZP] + gfs_dwinds = .true. + checker_tr = .F. + nt_checker = 0 +/ + +&gfs_physics_nml + fhzero = 6. + h2o_phys = .true. + ldiag3d = @[LDIAG3D] + qdiag3d = @[QDIAG3D] + fhcyc = @[FHCYC] + nst_anl = .true. + use_ufo = .true. + pre_rad = .false. + ncld = 5 + imp_physics = @[IMP_PHYSICS] + ltaerosol = @[LTAEROSOL] + lradar = @[LRADAR] + ttendlim = 0.004 + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = 1 + iems = 1 + iaer = 111 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. + shal_cnv = .true. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = @[HYBEDMF] + satmedmf = .false. + lheatstrg = @[LHEATSTRG] + do_mynnedmf = @[DO_MYNNEDMF] + do_mynnsfclay = @[DO_MYNNSFCLAY] + effr_in = .true. + random_clds = .false. + trans_trac = .true. + cnvcld = .true. + imfshalcnv = @[IMFSHALCNV] + imfdeepcnv = @[IMFDEEPCNV] + cdmbgwd = 3.5,0.25 + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + debug = .false. + oz_phys = .false. + oz_phys_2015 = .true. + nstf_name = @[NSTF_NAME] + cplflx = @[CPLFLX] + iau_delthrs = 6 + iaufhrs = 30 + iau_inc_files = @[IAU_INC_FILES] + do_sppt = @[DO_SPPT] + do_shum = @[DO_SHUM] + do_skeb = @[DO_SKEB] + lndp_type = @[LNDP_TYPE] + n_var_lndp = @[N_VAR_LNDP] + lsm = @[LSM] + lsoil_lsm = @[LSOIL_LSM] + iopt_dveg = 2 + iopt_crs = 1 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_alb = 2 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 1 + icloud_bl = 1 + bl_mynn_tkeadvect = .true. + bl_mynn_edmf = 1 + bl_mynn_edmf_mom = 1 + gwd_opt = @[GWD_OPT] + do_RRTMGP = .true. + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = 6 + lw_file_gas = 'rrtmgp-data-lw-g256-2018-12-04.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g224-2018-12-04.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + doGP_cldoptics_LUT = .true. + doGP_lwscat = .true. + use_LW_jacobian = .true. + rrtmgp_ngauss_ang = 3 + rrtmgp_nrghice = 3 +/ + +&gfdl_cloud_microphysics_nml + sedi_transport = .true. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .F. + const_vs = .F. + const_vg = .F. + const_vr = .F. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 300. + tau_l2v = 225. + tau_v2l = 150. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0E-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 150. +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&namsfc + FNGLAC = "global_glacier.2x2.grb", + FNMXIC = "global_maxice.2x2.grb", + FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", + FNSNOC = "global_snoclim.1.875.grb", + FNZORC = "igbp", + FNALBC = @[FNALBC] + FNALBC2 = "global_albedo4.1x1.grb", + FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", + FNTG3C = "global_tg3clim.2.6x1.5.grb", + FNVEGC = "global_vegfrac.0.144.decpercent.grb", + FNVETC = @[FNVETC] + FNSOTC = @[FNSOTC] + FNSMCC = @[FNSMCC] + FNMSKH = "seaice_newland.grb", + FNTSFA = "", + FNACNA = "", + FNSNOA = "", + FNVMNC = "global_shdmin.0.144x0.144.grb", + FNVMXC = "global_shdmax.0.144x0.144.grb", + FNSLPC = "global_slope.1x1.grb", + FNABSC = @[FNABSC] + LDEBUG =.false., + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + FTSFS = 90 + FAISS = 99999 + FSNOL = 99999 + FSICL = 99999 + FTSFL = 99999, + FAISL = 99999, + FVETL = 99999, + FSOTL = 99999, + FvmnL = 99999, + FvmxL = 99999, + FSLPL = 99999, + FABSL = 99999, + FSNOS = 99999, + FSICS = 99999, +/ +&nam_stochy + lon_s=768, + lat_s=384, + ntrunc=382, + SKEBNORM=1, + SKEB_NPASS=30, + SKEB_VDOF=5, + SKEB=@[SKEB], + SKEB_TAU=2.16E4, + SKEB_LSCALE=1000.E3, + SHUM=@[SHUM], + SHUM_TAU=21600, + SHUM_LSCALE=500000, + SPPT=@[SPPT], + SPPT_TAU=21600, + SPPT_LSCALE=500000, + SPPT_LOGIT=.TRUE., + SPPT_SFCLIMIT=.TRUE., + ISEED_SHUM=1, + ISEED_SKEB=2, + ISEED_SPPT=3, +/ +&nam_sfcperts + lndp_type = @[LNDP_TYPE] + LNDP_TAU=21600, + LNDP_LSCALE=500000, + ISEED_LNDP=2010, +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = 0 + launch_level = 25 +/ diff --git a/tests/rt.sh b/tests/rt.sh index 921f158799..bca491af1f 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -423,9 +423,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-20201215/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201217/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201215} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201217} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20201201/} diff --git a/tests/tests/fv3_ccpp_gsd_RRTMGP b/tests/tests/fv3_ccpp_gsd_RRTMGP new file mode 100644 index 0000000000..3d313d3bab --- /dev/null +++ b/tests/tests/fv3_ccpp_gsd_RRTMGP @@ -0,0 +1,125 @@ +############################################################################### +# +# FV3 CCPP GSD RRTMGP (GF CU + Thompson MP + MYNN PBL + RUC LSM + RRTMGP) full (0-48h) test +# +############################################################################### + +export TEST_DESCR="Compare FV3 CCPP GSD RRTMGP results with previous trunk version" + +export CNTL_DIR=fv3_gsd_RRTMGP + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + phyf027.tile1.nc \ + phyf027.tile2.nc \ + phyf027.tile3.nc \ + phyf027.tile4.nc \ + phyf027.tile5.nc \ + phyf027.tile6.nc \ + phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + dynf027.tile1.nc \ + dynf027.tile2.nc \ + dynf027.tile3.nc \ + dynf027.tile4.nc \ + dynf027.tile5.nc \ + dynf027.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + +export_fv3 + +export FHMAX=48 +export FDIAG=3 + +export DT_ATMOS="600" +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.F. +export LRADAR=.T. +export LTAEROSOL=.T. + +export FV3_RUN=ccpp_gsd_RRTMGP_run.IN +export CCPP_SUITE=FV3_GSD_v0_RRTMGP +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_gsd_RRTMGP.nml.IN + +export HYBEDMF=.F. +export DO_MYNNEDMF=.T. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export FHCYC=0 +export LSM=3 +export LSOIL_LSM=9 + + +export WLCLK=30 + diff --git a/tests/tests/fv3_ccpp_gsd_RRTMGP_debug b/tests/tests/fv3_ccpp_gsd_RRTMGP_debug new file mode 100644 index 0000000000..0238caf28e --- /dev/null +++ b/tests/tests/fv3_ccpp_gsd_RRTMGP_debug @@ -0,0 +1,100 @@ +########################################################################################## +# +# FV3 CCPP GSD RRTMGP (GF CU + Thompson MP + MYNN PBL + RUC LSM + RRTMGP) 24h test in DEBUG mode +# +########################################################################################## + +export TEST_DESCR="Compare FV3 CCPP GSD RRTMGP DEBUG results with previous trunk version" + +export CNTL_DIR=fv3_gsd_RRTMGP_debug + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf003.tile1.nc \ + phyf003.tile2.nc \ + phyf003.tile3.nc \ + phyf003.tile4.nc \ + phyf003.tile5.nc \ + phyf003.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf003.tile1.nc \ + dynf003.tile2.nc \ + dynf003.tile3.nc \ + dynf003.tile4.nc \ + dynf003.tile5.nc \ + dynf003.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + +export_fv3 + +export FHMAX=3 +export FDIAG=3 + +export DT_ATMOS="600" +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.F. +export LRADAR=.T. +export LTAEROSOL=.T. + +export FV3_RUN=ccpp_gsd_RRTMGP_run.IN +export CCPP_SUITE=FV3_GSD_v0_RRTMGP +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_gsd_RRTMGP.nml.IN + +export HYBEDMF=.F. +export DO_MYNNEDMF=.T. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export FHCYC=0 +export LSM=3 +export LSOIL_LSM=9 + + +export WLCLK=30 From ffe417a844bc16e9b7168daf15723782798b087d Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Fri, 18 Dec 2020 07:09:31 -0700 Subject: [PATCH 044/109] Regression test log for PR #323 for jet.intel (#336) --- tests/RegressionTests_jet.intel.log | 2497 ++++++++++++++++++++++++++- 1 file changed, 2427 insertions(+), 70 deletions(-) diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 54fe9e6303..e04c30dc2c 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,76 +1,2433 @@ -Sun Dec 13 03:21:37 GMT 2020 +Fri Dec 18 03:08:18 GMT 2020 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201214/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_202574/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 001 fv3_ccpp_gfs_v16beta_stochy results .... -Moving baseline 001 fv3_ccpp_gfs_v16beta_stochy files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf012.tile1.nc .........OK - Moving phyf012.tile2.nc .........OK - Moving phyf012.tile3.nc .........OK - Moving phyf012.tile4.nc .........OK - Moving phyf012.tile5.nc .........OK - Moving phyf012.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf012.tile1.nc .........OK - Moving dynf012.tile2.nc .........OK - Moving dynf012.tile3.nc .........OK - Moving dynf012.tile4.nc .........OK - Moving dynf012.tile5.nc .........OK - Moving dynf012.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 001 fv3_ccpp_gfs_v16beta_stochy PASS +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_control_prod +Checking test 001 fv3_ccpp_control 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 001 fv3_ccpp_control PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/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 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 002 fv3_ccpp_decomp PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_2threads_prod +Checking test 003 fv3_ccpp_2threads 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 003 fv3_ccpp_2threads PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_restart_prod +Checking test 004 fv3_ccpp_restart 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 004 fv3_ccpp_restart PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/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 + 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 005 fv3_ccpp_read_inc PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/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 + 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.nc .........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 + 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 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/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 + 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.nc .........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 + 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 007 fv3_ccpp_wrtGauss_netcdf PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/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 + 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.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.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 + 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 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/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 + 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.nc .........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 + 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 009 fv3_ccpp_wrtGlatlon_netcdf PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/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 + 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 010 fv3_ccpp_wrtGauss_nemsio PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/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 + 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 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_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/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 012 fv3_ccpp_stochy PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_iau_prod +Checking test 013 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 013 fv3_ccpp_iau PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_lheatstrg_prod +Checking test 014 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 014 fv3_ccpp_lheatstrg PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_multigases_prod +Checking test 015 fv3_ccpp_multigases 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 + 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 015 fv3_ccpp_multigases PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_control_32bit_prod +Checking test 016 fv3_ccpp_control_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.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 016 fv3_ccpp_control_32bit PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_stretched_prod +Checking test 017 fv3_ccpp_stretched 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 fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.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 017 fv3_ccpp_stretched PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_stretched_nest_prod +Checking test 018 fv3_ccpp_stretched_nest 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.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK +Test 018 fv3_ccpp_stretched_nest PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_regional_control_prod +Checking test 019 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 + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_regional_restart_prod +Checking test 020 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 + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_regional_quilt_prod +Checking test 021 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 + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK +Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_c768_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_regional_c768_prod +Checking test 023 fv3_ccpp_regional_c768 results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf003.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf003.nc .........OK +Test 023 fv3_ccpp_regional_c768 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_control_debug_prod +Checking test 024 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 024 fv3_ccpp_control_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_stretched_nest_debug_prod +Checking test 025 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + 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 + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gfdlmp_prod +Checking test 026 fv3_ccpp_gfdlmp 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 026 fv3_ccpp_gfdlmp PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 027 fv3_ccpp_gfdlmprad_gwd 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 027 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 028 fv3_ccpp_gfdlmprad_noahmp 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 028 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_csawmg_prod +Checking test 029 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 029 fv3_ccpp_csawmg PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_satmedmf_prod +Checking test 030 fv3_ccpp_satmedmf 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 030 fv3_ccpp_satmedmf PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_satmedmfq_prod +Checking test 031 fv3_ccpp_satmedmfq 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 031 fv3_ccpp_satmedmfq PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gfdlmp_32bit_prod +Checking test 032 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 032 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_cpt_prod +Checking test 033 fv3_ccpp_cpt 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 + 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_cpt PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gsd_prod +Checking test 034 fv3_ccpp_gsd 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 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 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 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 034 fv3_ccpp_gsd PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_thompson_prod +Checking test 035 fv3_ccpp_thompson 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 035 fv3_ccpp_thompson PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_thompson_no_aero_prod +Checking test 036 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.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 036 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gocart_clm_prod +Checking test 037 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 037 fv3_ccpp_gocart_clm PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 038 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 + 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 038 fv3_ccpp_gfs_v16beta_flake PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 039 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 + 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 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gsd_debug_prod +Checking test 041 fv3_ccpp_gsd_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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_gsd_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 042 fv3_ccpp_gsd_diag3d_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 042 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_thompson_debug_prod +Checking test 043 fv3_ccpp_thompson_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 043 fv3_ccpp_thompson_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 044 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 + 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 044 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 045 fv3_ccpp_rrfs_v1beta_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 045 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 046 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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK + 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_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sun Dec 13 03:59:46 GMT 2020 -Elapsed time: 00h:38m:09s. Have a nice day! +Fri Dec 18 05:11:26 GMT 2020 +Elapsed time: 02h:03m:08s. Have a nice day! From 57a825847f51e18705faf5216e93c4ddbb1307a7 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Fri, 18 Dec 2020 15:43:40 -0700 Subject: [PATCH 045/109] Update stochastic_physics submodule to point to NOAA-GSL gsl/develop (#55) Code is identical to original/current code in the authoritative repository (NOAA-PSD, branch master) --- .gitmodules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 4fe3e5911d..9acca404b5 100644 --- a/.gitmodules +++ b/.gitmodules @@ -16,8 +16,8 @@ branch = develop [submodule "stochastic_physics"] path = stochastic_physics - url = https://github.com/noaa-psd/stochastic_physics - branch = master + url = https://github.com/noaa-gsl/stochastic_physics + branch = gsl/develop [submodule "CMakeModules"] path = CMakeModules url = https://github.com/NOAA-EMC/CMakeModules From 27caecf597ce86e1836ec26c5af74c7defa9178c Mon Sep 17 00:00:00 2001 From: Kyle Gerheiser <3209794+kgerheiser@users.noreply.github.com> Date: Fri, 18 Dec 2020 18:02:47 -0500 Subject: [PATCH 046/109] Update modules with hpc-stack v1.1.0 (#319) * Update modules with hpc-stack v1.1.0 * Minor bug fixes to CCPP UGWP Co-authored-by: Dom Heinzeller --- FV3 | 2 +- modulefiles/cheyenne.gnu/fv3 | 4 +- modulefiles/cheyenne.gnu/fv3_debug | 4 +- modulefiles/cheyenne.intel/fv3 | 4 +- modulefiles/cheyenne.intel/fv3_debug | 4 +- modulefiles/gaea.intel/fv3 | 6 +- modulefiles/gaea.intel/fv3_debug | 50 + modulefiles/hera.gnu/fv3 | 4 +- modulefiles/hera.intel/fv3 | 4 +- modulefiles/hera.intel/fv3_debug | 4 +- modulefiles/jet.intel/fv3 | 1 - modulefiles/orion.intel/fv3 | 4 +- modulefiles/orion.intel/fv3_debug | 4 +- modulefiles/wcoss_cray/fv3 | 25 +- modulefiles/wcoss_dell_p3/fv3 | 4 +- modulefiles/wcoss_dell_p3/fv3_debug | 4 +- tests/RegressionTests_cheyenne.gnu.log | 50 +- tests/RegressionTests_cheyenne.intel.log | 126 +- tests/RegressionTests_hera.gnu.log | 50 +- tests/RegressionTests_hera.intel.log | 190 +- tests/RegressionTests_jet.intel.log | 102 +- tests/RegressionTests_orion.intel.log | 178 +- tests/RegressionTests_wcoss_cray.log | 5619 +++++++++-------- tests/RegressionTests_wcoss_dell_p3.log | 7247 +++++++++++----------- 24 files changed, 7078 insertions(+), 6612 deletions(-) create mode 100644 modulefiles/gaea.intel/fv3_debug diff --git a/FV3 b/FV3 index f5a6d1a97e..377c7e5df0 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit f5a6d1a97e0a723b28b6b5a8f4252400296a7b9c +Subproject commit 377c7e5df0d82fd5fb173a4e84b7a7cdda65acc0 diff --git a/modulefiles/cheyenne.gnu/fv3 b/modulefiles/cheyenne.gnu/fv3 index 8e537f777f..b9b86004be 100644 --- a/modulefiles/cheyenne.gnu/fv3 +++ b/modulefiles/cheyenne.gnu/fv3 @@ -19,8 +19,8 @@ module load mpt/2.22 module load ncarcompilers/0.5.0 module unload netcdf -module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-nco-20201113/modulefiles/stack -module load hpc/1.0.0-beta1 +module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-v1.1.0/modulefiles/stack +module load hpc/1.1.0 module load hpc-gnu/9.1.0 module load hpc-mpt/2.22 diff --git a/modulefiles/cheyenne.gnu/fv3_debug b/modulefiles/cheyenne.gnu/fv3_debug index ce689a6dc6..38d0a4a9af 100644 --- a/modulefiles/cheyenne.gnu/fv3_debug +++ b/modulefiles/cheyenne.gnu/fv3_debug @@ -19,8 +19,8 @@ module load mpt/2.22 module load ncarcompilers/0.5.0 module unload netcdf -module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-nco-20201113/modulefiles/stack -module load hpc/1.0.0-beta1 +module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-v1.1.0/modulefiles/stack +module load hpc/1.1.0 module load hpc-gnu/9.1.0 module load hpc-mpt/2.22 diff --git a/modulefiles/cheyenne.intel/fv3 b/modulefiles/cheyenne.intel/fv3 index 0f93963426..830e7c1f10 100644 --- a/modulefiles/cheyenne.intel/fv3 +++ b/modulefiles/cheyenne.intel/fv3 @@ -19,8 +19,8 @@ module load mpt/2.22 module load ncarcompilers/0.5.0 module unload netcdf -module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-nco-20201113/modulefiles/stack -module load hpc/1.0.0-beta1 +module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-v1.1.0/modulefiles/stack +module load hpc/1.1.0 module load hpc-intel/19.1.1 module load hpc-mpt/2.22 diff --git a/modulefiles/cheyenne.intel/fv3_debug b/modulefiles/cheyenne.intel/fv3_debug index e3830bab69..e757b778b3 100644 --- a/modulefiles/cheyenne.intel/fv3_debug +++ b/modulefiles/cheyenne.intel/fv3_debug @@ -19,8 +19,8 @@ module load mpt/2.22 module load ncarcompilers/0.5.0 module unload netcdf -module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-nco-20201113/modulefiles/stack -module load hpc/1.0.0-beta1 +module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-v1.1.0/modulefiles/stack +module load hpc/1.1.0 module load hpc-intel/19.1.1 module load hpc-mpt/2.22 diff --git a/modulefiles/gaea.intel/fv3 b/modulefiles/gaea.intel/fv3 index 7725904836..34b193edbe 100644 --- a/modulefiles/gaea.intel/fv3 +++ b/modulefiles/gaea.intel/fv3 @@ -20,13 +20,13 @@ setenv CMAKE_CXX_COMPILER CC setenv CMAKE_Fortran_COMPILER ftn setenv CMAKE_Platform gaea.intel -module use /lustre/f2/pdata/esrl/gsd/ufs/hpc-stack-nco-20201116/modulefiles/stack +module use /lustre/f2/pdata/esrl/gsd/ufs/hpc-stack-v1.1.0/modulefiles/stack -module load hpc/1.0.0-beta1 +module load hpc/1.1.0 module load hpc-intel/18.0.6.288 module load hpc-cray-mpich/7.7.11 -module load jasper/2.0.15 +module load jasper/2.0.22 module load zlib/1.2.11 module load png/1.6.35 diff --git a/modulefiles/gaea.intel/fv3_debug b/modulefiles/gaea.intel/fv3_debug new file mode 100644 index 0000000000..e74d6f7d9f --- /dev/null +++ b/modulefiles/gaea.intel/fv3_debug @@ -0,0 +1,50 @@ +#%Module + +proc ModulesHelp {} { + puts stderr "\tcit - loads modules required for building and running UFS Model on Gaea/Intel" +} + +module-whatis "loads UFS Model prerequisites for Gaea/Intel" + +module load PrgEnv-intel/6.0.5 +module rm intel +module rm cray-mpich +module rm netcdf +module load intel/18.0.6.288 +module load cray-mpich/7.7.11 +module load cray-python/3.7.3.2 + +module load cmake/3.17.0 +setenv CMAKE_C_COMPILER cc +setenv CMAKE_CXX_COMPILER CC +setenv CMAKE_Fortran_COMPILER ftn +setenv CMAKE_Platform gaea.intel + +module use /lustre/f2/pdata/esrl/gsd/ufs/hpc-stack-v1.1.0/modulefiles/stack + +module load hpc/1.1.0 +module load hpc-intel/18.0.6.288 +module load hpc-cray-mpich/7.7.11 + +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-debug + +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 + +# Needed at runtime: +module load alps diff --git a/modulefiles/hera.gnu/fv3 b/modulefiles/hera.gnu/fv3 index ec83aac5b6..c20b313c4f 100644 --- a/modulefiles/hera.gnu/fv3 +++ b/modulefiles/hera.gnu/fv3 @@ -15,8 +15,8 @@ setenv CMAKE_CXX_COMPILER mpicxx setenv CMAKE_Fortran_COMPILER mpif90 setenv CMAKE_Platform hera.gnu -module use /scratch2/NCEPDEV/nwprod/hpc-stack/test/modulefiles/stack -module load hpc/1.0.0-beta1 +module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack +module load hpc/1.1.0 module load hpc-gnu/9.2.0 module load hpc-mpich/3.3.2 module load mpich/3.3.2 diff --git a/modulefiles/hera.intel/fv3 b/modulefiles/hera.intel/fv3 index 5f72ffe067..cdbfa0e629 100644 --- a/modulefiles/hera.intel/fv3 +++ b/modulefiles/hera.intel/fv3 @@ -15,9 +15,9 @@ setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform hera.intel -module use /scratch2/NCEPDEV/nwprod/hpc-stack/test/modulefiles/stack +module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack -module load hpc/1.0.0-beta1 +module load hpc/1.1.0 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 diff --git a/modulefiles/hera.intel/fv3_debug b/modulefiles/hera.intel/fv3_debug index e6d2ddbd3f..ce6eb2fe40 100644 --- a/modulefiles/hera.intel/fv3_debug +++ b/modulefiles/hera.intel/fv3_debug @@ -15,9 +15,9 @@ setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform hera.intel -module use /scratch2/NCEPDEV/nwprod/hpc-stack/test/modulefiles/stack +module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack -module load hpc/1.0.0-beta1 +module load hpc/1.1.0 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 diff --git a/modulefiles/jet.intel/fv3 b/modulefiles/jet.intel/fv3 index b56733b2c3..e2762bd904 100644 --- a/modulefiles/jet.intel/fv3 +++ b/modulefiles/jet.intel/fv3 @@ -17,7 +17,6 @@ setenv CMAKE_Platform jet.intel module use /lfs4/HFIP/hfv3gfs/nwprod/hpc-stack/libs/modulefiles/stack -# At this time (2020/11/30), this is the pre-release version 1.0.0 module load hpc/1.1.0 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.4.274 diff --git a/modulefiles/orion.intel/fv3 b/modulefiles/orion.intel/fv3 index 2ea5d565cf..f85894efcf 100644 --- a/modulefiles/orion.intel/fv3 +++ b/modulefiles/orion.intel/fv3 @@ -14,9 +14,9 @@ setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform orion.intel -module use /apps/contrib/NCEP/test/hpc-stack-nco/modulefiles/stack +module use /apps/contrib/NCEP/libs/hpc-stack/modulefiles/stack -module load hpc/1.0.0-beta1 +module load hpc/1.1.0 module load hpc-intel/2018.4 module load hpc-impi/2018.4 diff --git a/modulefiles/orion.intel/fv3_debug b/modulefiles/orion.intel/fv3_debug index a95f7b2cf8..fb04a8688e 100644 --- a/modulefiles/orion.intel/fv3_debug +++ b/modulefiles/orion.intel/fv3_debug @@ -14,9 +14,9 @@ setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform orion.intel -module use /apps/contrib/NCEP/test/hpc-stack-nco/modulefiles/stack +module use /apps/contrib/NCEP/libs/hpc-stack/modulefiles/stack -module load hpc/1.0.0-beta1 +module load hpc/1.1.0 module load hpc-intel/2018.4 module load hpc-impi/2018.4 diff --git a/modulefiles/wcoss_cray/fv3 b/modulefiles/wcoss_cray/fv3 index 63761cf9aa..2610523416 100644 --- a/modulefiles/wcoss_cray/fv3 +++ b/modulefiles/wcoss_cray/fv3 @@ -38,22 +38,21 @@ setenv PNG_ROOT /usrx/local/prod//png/1.2.49/intel/sandybridge ## ## NCEP libraries ## -module use /usrx/local/nceplibs/NCEPLIBS/cmake/install/NCEPLIBS_UFS/modules -module load bacio/2.4.0 +module use /usrx/local/nceplibs/NCEPLIBS/cmake/install/NCEPLIBS-v1.3.0/modules +module load bacio/2.4.1 module load crtm/2.3.0 -module load g2/3.4.0 -module load g2tmpl/1.9.0 -module load ip/3.3.0 -module load nemsio/2.5.1 -module load sp/2.3.0 -module load w3emc/2.7.0 -module load w3nco/2.4.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 gfsio/1.4.0 -module load sfcio/1.4.0 -module load sigio/2.3.0 +module load gfsio/1.4.1 +module load sfcio/1.4.1 +module load sigio/2.3.2 -module use /usrx/local/nceplibs/NCEPLIBS/cmake/install/NCEPLIBS_UFS/modules module load upp/10.0.0 ## WCOSS Cray execution prereqs: diff --git a/modulefiles/wcoss_dell_p3/fv3 b/modulefiles/wcoss_dell_p3/fv3 index 376ba6fc3b..94fc924ff0 100644 --- a/modulefiles/wcoss_dell_p3/fv3 +++ b/modulefiles/wcoss_dell_p3/fv3 @@ -17,9 +17,9 @@ setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform wcoss_dell_p3 -module use /usrx/local/nceplibs/dev/hpc-stack/test/hpc-stack/modulefiles/stack +module use /usrx/local/nceplibs/dev/hpc-stack/libs/hpc-stack/modulefiles/stack -module load hpc/1.0.0-beta1 +module load hpc/1.1.0 module load hpc-ips/18.0.1.163 module load hpc-impi/18.0.1 diff --git a/modulefiles/wcoss_dell_p3/fv3_debug b/modulefiles/wcoss_dell_p3/fv3_debug index 56a5e102f0..3fcf0c73cb 100644 --- a/modulefiles/wcoss_dell_p3/fv3_debug +++ b/modulefiles/wcoss_dell_p3/fv3_debug @@ -17,9 +17,9 @@ setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform wcoss_dell_p3 -module use /usrx/local/nceplibs/dev/hpc-stack/test/hpc-stack/modulefiles/stack +module use /usrx/local/nceplibs/dev/hpc-stack/libs/hpc-stack/modulefiles/stack -module load hpc/1.0.0-beta1 +module load hpc/1.1.0 module load hpc-ips/18.0.1.163 module load hpc-impi/18.0.1 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 91fa57735a..a97a900786 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Wed Dec 16 20:51:50 MST 2020 +Fri Dec 18 08:38:09 MST 2020 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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-20201217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40843/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/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 Dec 16 21:08:24 MST 2020 -Elapsed time: 00h:16m:34s. Have a nice day! +Fri Dec 18 08:55:30 MST 2020 +Elapsed time: 00h:17m:21s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 0c7a171d38..9b92814095 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Wed Dec 16 21:09:42 MST 2020 +Fri Dec 18 08:38:31 MST 2020 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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-20201217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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-20201217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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-20201217/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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-20201217/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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-20201217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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-20201217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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-20201217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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 .........OK + Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........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-20201217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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-20201217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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-20201217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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-20201217/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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-20201217/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_iau_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,7 +883,7 @@ Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -957,7 +957,7 @@ Test 016 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1025,7 +1025,7 @@ Test 017 fv3_ccpp_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_stretched_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1081,7 +1081,7 @@ Test 018 fv3_ccpp_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,7 +1148,7 @@ Test 019 fv3_ccpp_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1159,7 +1159,7 @@ Test 020 fv3_ccpp_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1168,7 +1168,7 @@ Test 021 fv3_ccpp_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1179,18 +1179,18 @@ Test 022 fv3_ccpp_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 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 + Comparing phyf024.nc .........OK Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1220,7 +1220,7 @@ Test 024 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_stretched_nest_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1240,7 +1240,7 @@ Test 025 fv3_ccpp_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1288,7 +1288,7 @@ Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1336,7 +1336,7 @@ Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1384,7 +1384,7 @@ Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1432,7 +1432,7 @@ Test 029 fv3_ccpp_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1480,7 +1480,7 @@ Test 030 fv3_ccpp_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,7 +1528,7 @@ Test 031 fv3_ccpp_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1576,7 +1576,7 @@ Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,7 +1628,7 @@ Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_cpt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,7 +1682,7 @@ Test 034 fv3_ccpp_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 035 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 036 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 037 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,7 +1978,7 @@ Test 038 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gocart_clm_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gocart_clm_prod Checking test 045 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2428,7 +2428,7 @@ Test 045 fv3_ccpp_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfs_v16beta_flake_prod Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2496,7 +2496,7 @@ Test 046 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2564,7 +2564,7 @@ Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2582,7 +2582,7 @@ Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfs_v16beta_debug_prod Checking test 049 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2650,7 +2650,7 @@ Test 049 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2718,7 +2718,7 @@ Test 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2786,7 +2786,7 @@ Test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gsd_debug_prod Checking test 052 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2854,7 +2854,7 @@ Test 052 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gsd_diag3d_debug_prod Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2922,7 +2922,7 @@ Test 053 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_thompson_debug_prod Checking test 054 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2990,7 +2990,7 @@ Test 054 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_thompson_no_aero_debug_prod Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3058,7 +3058,7 @@ Test 055 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3126,7 +3126,7 @@ Test 056 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3194,7 +3194,7 @@ Test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37437/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3212,5 +3212,5 @@ Test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Dec 16 21:41:49 MST 2020 -Elapsed time: 00h:32m:07s. Have a nice day! +Fri Dec 18 09:28:55 MST 2020 +Elapsed time: 00h:50m:24s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index f31eccca8d..053a5143de 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Thu Dec 17 12:51:58 UTC 2020 +Fri Dec 18 15:40:46 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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-20201217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_131611/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/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 -Thu Dec 17 13:20:58 UTC 2020 -Elapsed time: 00h:29m:01s. Have a nice day! +Fri Dec 18 16:11:57 UTC 2020 +Elapsed time: 00h:31m:12s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index a3ab538d71..5b578c93c1 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Thu Dec 17 14:36:03 UTC 2020 +Fri Dec 18 15:40:43 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 ............ALT CHECK......OK + Comparing phyf000.nc .........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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_lndp_prod Checking test 015 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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-20201217/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_regional_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_regional_c768_prod Checking test 028 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1416,7 +1416,7 @@ Test 028 fv3_ccpp_regional_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_control_debug_prod Checking test 029 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1446,7 +1446,7 @@ Test 029 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_stretched_nest_debug_prod Checking test 030 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1466,7 +1466,7 @@ Test 030 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfdlmp_prod Checking test 031 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1514,7 +1514,7 @@ Test 031 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfdlmprad_gwd_prod Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1562,7 +1562,7 @@ Test 032 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1610,7 +1610,7 @@ Test 033 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_csawmg_prod Checking test 034 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1658,7 +1658,7 @@ Test 034 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_satmedmf_prod Checking test 035 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1706,7 +1706,7 @@ Test 035 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_satmedmfq_prod Checking test 036 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1754,7 +1754,7 @@ Test 036 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfdlmp_32bit_prod Checking test 037 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1802,7 +1802,7 @@ Test 037 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1854,7 +1854,7 @@ Test 038 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_cpt_prod Checking test 039 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1908,7 +1908,7 @@ Test 039 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gsd_prod Checking test 040 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2000,7 +2000,7 @@ Test 040 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_rap_prod Checking test 041 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2068,7 +2068,7 @@ Test 041 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_hrrr_prod Checking test 042 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2136,7 +2136,7 @@ Test 042 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_thompson_prod Checking test 043 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2204,7 +2204,7 @@ Test 043 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_thompson_no_aero_prod Checking test 044 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2272,7 +2272,7 @@ Test 044 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_rrfs_v1beta_prod Checking test 045 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2340,7 +2340,7 @@ Test 045 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfs_v15p2_prod Checking test 046 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2408,7 +2408,7 @@ Test 046 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfs_v16beta_prod Checking test 047 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2488,7 +2488,7 @@ Test 047 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfs_v16beta_restart_prod Checking test 048 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2538,7 +2538,7 @@ Test 048 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 049 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2606,7 +2606,7 @@ Test 049 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2674,7 +2674,7 @@ Test 050 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2742,7 +2742,7 @@ Test 051 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 @@ -2790,7 +2790,7 @@ Test 052 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 @@ -2838,7 +2838,7 @@ Test 053 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 @@ -2886,7 +2886,7 @@ Test 054 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 @@ -2954,7 +2954,7 @@ Test 055 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 @@ -3022,7 +3022,7 @@ Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 @@ -3040,7 +3040,7 @@ Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 @@ -3108,7 +3108,7 @@ Test 058 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 @@ -3176,7 +3176,7 @@ Test 059 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 @@ -3244,7 +3244,7 @@ Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 @@ -3312,7 +3312,7 @@ Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 @@ -3380,7 +3380,7 @@ Test 062 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 @@ -3448,7 +3448,7 @@ Test 063 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 @@ -3516,7 +3516,7 @@ Test 064 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 @@ -3584,7 +3584,7 @@ Test 065 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 @@ -3652,7 +3652,7 @@ Test 066 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 @@ -3720,7 +3720,7 @@ Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/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 @@ -3738,7 +3738,7 @@ Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3791,7 +3791,7 @@ Test 069 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_2threads_prod Checking test 070 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3844,7 +3844,7 @@ Test 070 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_decomp_prod Checking test 071 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3897,7 +3897,7 @@ Test 071 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_satmedmf_prod Checking test 072 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3950,7 +3950,7 @@ Test 072 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_ca_prod Checking test 073 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4003,7 +4003,7 @@ Test 073 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_control_mx025_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_control_mx025_prod Checking test 074 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4059,7 +4059,7 @@ Test 074 cpld_control_mx025 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_control_mx025_12h_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_control_mx025_12h_prod Checking test 075 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4115,7 +4115,7 @@ Test 075 cpld_control_mx025_12h PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_restart_mx025_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_restart_mx025_prod Checking test 076 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4171,7 +4171,7 @@ Test 076 cpld_restart_mx025 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4224,7 +4224,7 @@ Test 077 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_control_c384_prod Checking test 078 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4280,7 +4280,7 @@ Test 078 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_controlfrac_c384_prod Checking test 079 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4336,7 +4336,7 @@ Test 079 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_bmark_prod Checking test 080 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4392,7 +4392,7 @@ Test 080 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_bmark_wave_prod Checking test 081 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4451,7 +4451,7 @@ Test 081 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_debug_prod Checking test 082 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4504,7 +4504,7 @@ Test 082 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/datm_control_cfsr Checking test 083 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4513,7 +4513,7 @@ Test 083 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/datm_restart_cfsr Checking test 084 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4522,7 +4522,7 @@ Test 084 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/datm_control_gefs Checking test 085 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4531,7 +4531,7 @@ Test 085 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/datm_bulk_cfsr Checking test 086 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4540,7 +4540,7 @@ Test 086 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/datm_bulk_gefs Checking test 087 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4549,7 +4549,7 @@ Test 087 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/datm_mx025_cfsr Checking test 088 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4561,7 +4561,7 @@ Test 088 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/datm_mx025_gefs Checking test 089 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4573,7 +4573,7 @@ Test 089 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_250285/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/datm_debug_cfsr Checking test 090 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -4582,5 +4582,5 @@ Test 090 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 17 15:23:55 UTC 2020 -Elapsed time: 00h:47m:52s. Have a nice day! +Fri Dec 18 16:38:25 UTC 2020 +Elapsed time: 00h:57m:42s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index e04c30dc2c..4dde99467f 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Fri Dec 18 03:08:18 GMT 2020 +Fri Dec 18 15:32:21 GMT 2020 Start Regression test baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/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-20201217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_decomp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_2threads_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/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-20201217/INTEL/fv3_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/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-20201217/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_read_inc_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/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-20201217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/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-20201217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/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-20201217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/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 .........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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/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-20201217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/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-20201217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/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-20201217/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/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-20201217/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_iau_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_lheatstrg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,7 +815,7 @@ Test 014 fv3_ccpp_lheatstrg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_multigases_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -889,7 +889,7 @@ Test 015 fv3_ccpp_multigases PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_control_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -957,7 +957,7 @@ Test 016 fv3_ccpp_control_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_stretched_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1013,7 +1013,7 @@ Test 017 fv3_ccpp_stretched PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_stretched_nest_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,7 +1080,7 @@ Test 018 fv3_ccpp_stretched_nest PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_regional_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1091,7 +1091,7 @@ Test 019 fv3_ccpp_regional_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_regional_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1100,7 +1100,7 @@ Test 020 fv3_ccpp_regional_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_regional_quilt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1111,7 +1111,7 @@ Test 021 fv3_ccpp_regional_quilt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc ............ALT CHECK......OK @@ -1122,7 +1122,7 @@ Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_c768_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_regional_c768_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_regional_c768_prod Checking test 023 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1133,7 +1133,7 @@ Test 023 fv3_ccpp_regional_c768 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_control_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1163,7 +1163,7 @@ Test 024 fv3_ccpp_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_stretched_nest_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1183,7 +1183,7 @@ Test 025 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gfdlmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1231,7 +1231,7 @@ Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,7 +1279,7 @@ Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1327,7 +1327,7 @@ Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,7 +1375,7 @@ Test 029 fv3_ccpp_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_satmedmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1423,7 +1423,7 @@ Test 030 fv3_ccpp_satmedmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_satmedmfq_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1471,7 +1471,7 @@ Test 031 fv3_ccpp_satmedmfq PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1519,7 +1519,7 @@ Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_cpt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1573,7 +1573,7 @@ Test 033 fv3_ccpp_cpt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gsd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1665,7 +1665,7 @@ Test 034 fv3_ccpp_gsd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1733,7 +1733,7 @@ Test 035 fv3_ccpp_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_thompson_no_aero_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1801,7 +1801,7 @@ Test 036 fv3_ccpp_thompson_no_aero PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gocart_clm_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gocart_clm_prod Checking test 037 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1849,7 +1849,7 @@ Test 037 fv3_ccpp_gocart_clm PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gfs_v16beta_flake_prod Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1917,7 +1917,7 @@ Test 038 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1985,7 +1985,7 @@ Test 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2003,7 +2003,7 @@ Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gsd_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2071,7 +2071,7 @@ Test 041 fv3_ccpp_gsd_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2139,7 +2139,7 @@ Test 042 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2207,7 +2207,7 @@ Test 043 fv3_ccpp_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2275,7 +2275,7 @@ Test 044 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2343,7 +2343,7 @@ Test 045 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2411,7 +2411,7 @@ Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_161592/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2429,5 +2429,5 @@ Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 18 05:11:26 GMT 2020 -Elapsed time: 02h:03m:08s. Have a nice day! +Fri Dec 18 17:50:05 GMT 2020 +Elapsed time: 02h:17m:45s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 999b0961d0..d09b932657 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Dec 17 08:10:33 CST 2020 +Fri Dec 18 09:39:49 CST 2020 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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-20201217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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-20201217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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-20201217/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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-20201217/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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-20201217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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-20201217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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-20201217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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-20201217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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-20201217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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-20201217/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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-20201217/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,7 +884,7 @@ Test 015 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1056,7 +1056,7 @@ Test 018 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,7 +1124,7 @@ Test 019 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1180,7 +1180,7 @@ Test 020 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,7 +1247,7 @@ Test 021 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1258,7 +1258,7 @@ Test 022 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1267,7 +1267,7 @@ Test 023 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1278,10 +1278,10 @@ Test 024 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK @@ -1289,7 +1289,7 @@ Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_regional_c768_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1300,7 +1300,7 @@ Test 026 fv3_ccpp_regional_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1330,7 +1330,7 @@ Test 027 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -1350,7 +1350,7 @@ Test 028 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1398,7 +1398,7 @@ Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -1446,7 +1446,7 @@ Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -1494,7 +1494,7 @@ Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1542,7 +1542,7 @@ Test 032 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1590,7 +1590,7 @@ Test 033 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1638,7 +1638,7 @@ Test 034 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1690,7 +1690,7 @@ Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1744,7 +1744,7 @@ Test 036 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1836,7 +1836,7 @@ Test 037 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1904,7 +1904,7 @@ Test 038 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1972,7 +1972,7 @@ Test 039 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2040,7 +2040,7 @@ Test 040 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfs_v15p2_prod Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2108,7 +2108,7 @@ Test 041 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfs_v16beta_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfs_v16beta_prod Checking test 042 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2188,7 +2188,7 @@ Test 042 fv3_ccpp_gfs_v16beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfs_v16beta_restart_prod Checking test 043 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2238,7 +2238,7 @@ Test 043 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 044 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2306,7 +2306,7 @@ Test 044 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2374,7 +2374,7 @@ Test 045 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 046 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2442,7 +2442,7 @@ Test 046 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfsv16_csawmg_prod Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2490,7 +2490,7 @@ Test 047 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfsv16_csawmgt_prod Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2538,7 +2538,7 @@ Test 048 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -2586,7 +2586,7 @@ Test 049 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -2654,7 +2654,7 @@ Test 050 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -2722,7 +2722,7 @@ Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -2740,7 +2740,7 @@ Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -2808,7 +2808,7 @@ Test 053 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -2876,7 +2876,7 @@ Test 054 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -2944,7 +2944,7 @@ Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -3012,7 +3012,7 @@ Test 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -3080,7 +3080,7 @@ Test 057 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -3148,7 +3148,7 @@ Test 058 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -3216,7 +3216,7 @@ Test 059 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -3284,7 +3284,7 @@ Test 060 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -3352,7 +3352,7 @@ Test 061 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -3420,7 +3420,7 @@ Test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/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 @@ -3438,7 +3438,7 @@ Test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_control_prod Checking test 064 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3491,7 +3491,7 @@ Test 064 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_2threads_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_2threads_prod Checking test 065 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3544,7 +3544,7 @@ Test 065 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_decomp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_decomp_prod Checking test 066 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3597,7 +3597,7 @@ Test 066 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_satmedmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_satmedmf_prod Checking test 067 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3650,7 +3650,7 @@ Test 067 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_ca_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_ca_prod Checking test 068 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3703,7 +3703,7 @@ Test 068 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_control_mx025_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_control_mx025_prod Checking test 069 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3759,7 +3759,7 @@ Test 069 cpld_control_mx025 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_control_mx025_12h_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_control_mx025_12h_prod Checking test 070 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3815,7 +3815,7 @@ Test 070 cpld_control_mx025_12h PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_restart_mx025_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_restart_mx025_prod Checking test 071 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3871,7 +3871,7 @@ Test 071 cpld_restart_mx025 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_control_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_control_c192_prod Checking test 072 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3924,7 +3924,7 @@ Test 072 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_control_c384_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_control_c384_prod Checking test 073 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3980,7 +3980,7 @@ Test 073 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_controlfrac_c384_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_controlfrac_c384_prod Checking test 074 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4036,7 +4036,7 @@ Test 074 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_bmark_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_bmark_prod Checking test 075 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4092,7 +4092,7 @@ Test 075 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_bmark_wave_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_bmark_wave_prod Checking test 076 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4151,7 +4151,7 @@ Test 076 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/cpld_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_debug_prod Checking test 077 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4204,7 +4204,7 @@ Test 077 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/datm_control_cfsr Checking test 078 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4213,7 +4213,7 @@ Test 078 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/datm_restart_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/datm_restart_cfsr Checking test 079 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4222,7 +4222,7 @@ Test 079 datm_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/datm_control_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/datm_control_gefs Checking test 080 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4231,7 +4231,7 @@ Test 080 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/datm_bulk_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/datm_bulk_cfsr Checking test 081 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4240,7 +4240,7 @@ Test 081 datm_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/datm_bulk_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/datm_bulk_gefs Checking test 082 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4249,7 +4249,7 @@ Test 082 datm_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/datm_mx025_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/datm_mx025_cfsr Checking test 083 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4261,7 +4261,7 @@ Test 083 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/datm_mx025_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/datm_mx025_gefs Checking test 084 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4273,7 +4273,7 @@ Test 084 datm_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_408698/datm_debug_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/datm_debug_cfsr Checking test 085 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -4282,5 +4282,5 @@ Test 085 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 17 09:01:26 CST 2020 -Elapsed time: 00h:50m:53s. Have a nice day! +Fri Dec 18 10:29:32 CST 2020 +Elapsed time: 00h:49m:44s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 8d7111b656..7051207315 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,2907 +1,3042 @@ -Thu Dec 17 01:55:25 UTC 2020 +Fri Dec 18 17:19:11 UTC 2020 Start Regression test +Test 6 compile FAIL + baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... -Moving baseline 001 fv3_ccpp_control files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK + 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 001 fv3_ccpp_control PASS +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/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 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 002 fv3_ccpp_decomp PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_2threads_prod +Checking test 003 fv3_ccpp_2threads 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 003 fv3_ccpp_2threads PASS + + baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_restart_prod -Checking test 002 fv3_ccpp_restart results .... -Moving baseline 002 fv3_ccpp_restart files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf027.tile1.nc .........OK - Moving phyf027.tile2.nc .........OK - Moving phyf027.tile3.nc .........OK - Moving phyf027.tile4.nc .........OK - Moving phyf027.tile5.nc .........OK - Moving phyf027.tile6.nc .........OK - Moving phyf048.tile1.nc .........OK - Moving phyf048.tile2.nc .........OK - Moving phyf048.tile3.nc .........OK - Moving phyf048.tile4.nc .........OK - Moving phyf048.tile5.nc .........OK - Moving phyf048.tile6.nc .........OK - Moving dynf027.tile1.nc .........OK - Moving dynf027.tile2.nc .........OK - Moving dynf027.tile3.nc .........OK - Moving dynf027.tile4.nc .........OK - Moving dynf027.tile5.nc .........OK - Moving dynf027.tile6.nc .........OK - Moving dynf048.tile1.nc .........OK - Moving dynf048.tile2.nc .........OK - Moving dynf048.tile3.nc .........OK - Moving dynf048.tile4.nc .........OK - Moving dynf048.tile5.nc .........OK - Moving dynf048.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_restart PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_restart_prod +Checking test 004 fv3_ccpp_restart 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 004 fv3_ccpp_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_read_inc_prod -Checking test 003 fv3_ccpp_read_inc results .... -Moving baseline 003 fv3_ccpp_read_inc files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf027.tile1.nc .........OK - Moving phyf027.tile2.nc .........OK - Moving phyf027.tile3.nc .........OK - Moving phyf027.tile4.nc .........OK - Moving phyf027.tile5.nc .........OK - Moving phyf027.tile6.nc .........OK - Moving phyf048.tile1.nc .........OK - Moving phyf048.tile2.nc .........OK - Moving phyf048.tile3.nc .........OK - Moving phyf048.tile4.nc .........OK - Moving phyf048.tile5.nc .........OK - Moving phyf048.tile6.nc .........OK - Moving dynf027.tile1.nc .........OK - Moving dynf027.tile2.nc .........OK - Moving dynf027.tile3.nc .........OK - Moving dynf027.tile4.nc .........OK - Moving dynf027.tile5.nc .........OK - Moving dynf027.tile6.nc .........OK - Moving dynf048.tile1.nc .........OK - Moving dynf048.tile2.nc .........OK - Moving dynf048.tile3.nc .........OK - Moving dynf048.tile4.nc .........OK - Moving dynf048.tile5.nc .........OK - Moving dynf048.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_read_inc PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/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 + 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 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 004 fv3_ccpp_wrtGauss_netcdf_esmf results .... -Moving baseline 004 fv3_ccpp_wrtGauss_netcdf_esmf files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nc .........OK - Moving phyf024.nc .........OK - Moving dynf000.nc .........OK - Moving dynf024.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_wrtGauss_netcdf_esmf PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/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 + 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.nc .........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 + 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 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 005 fv3_ccpp_wrtGauss_netcdf results .... -Moving baseline 005 fv3_ccpp_wrtGauss_netcdf files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nc .........OK - Moving phyf024.nc .........OK - Moving dynf000.nc .........OK - Moving dynf024.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_wrtGauss_netcdf PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/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 + 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.nc .........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 + 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 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_parallel results .... -Moving baseline 006 fv3_ccpp_wrtGauss_netcdf_parallel files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nc .........OK - Moving phyf024.nc .........OK - Moving dynf000.nc .........OK - Moving dynf024.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_parallel PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/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 + 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.nc .........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 + 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 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 007 fv3_ccpp_wrtGlatlon_netcdf results .... -Moving baseline 007 fv3_ccpp_wrtGlatlon_netcdf files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nc .........OK - Moving phyf024.nc .........OK - Moving dynf000.nc .........OK - Moving dynf024.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGlatlon_netcdf PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/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 + 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.nc .........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 + 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 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 008 fv3_ccpp_wrtGauss_nemsio results .... -Moving baseline 008 fv3_ccpp_wrtGauss_nemsio files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_nemsio PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/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 + 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 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 009 fv3_ccpp_wrtGauss_nemsio_c192 results .... -Moving baseline 009 fv3_ccpp_wrtGauss_nemsio_c192 files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGauss_nemsio_c192 PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/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 + 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 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_stochy_prod -Checking test 010 fv3_ccpp_stochy results .... -Moving baseline 010 fv3_ccpp_stochy files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf012.tile1.nc .........OK - Moving phyf012.tile2.nc .........OK - Moving phyf012.tile3.nc .........OK - Moving phyf012.tile4.nc .........OK - Moving phyf012.tile5.nc .........OK - Moving phyf012.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf012.tile1.nc .........OK - Moving dynf012.tile2.nc .........OK - Moving dynf012.tile3.nc .........OK - Moving dynf012.tile4.nc .........OK - Moving dynf012.tile5.nc .........OK - Moving dynf012.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_stochy PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_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/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 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_iau_prod -Checking test 011 fv3_ccpp_iau results .... -Moving baseline 011 fv3_ccpp_iau files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf027.tile1.nc .........OK - Moving phyf027.tile2.nc .........OK - Moving phyf027.tile3.nc .........OK - Moving phyf027.tile4.nc .........OK - Moving phyf027.tile5.nc .........OK - Moving phyf027.tile6.nc .........OK - Moving phyf048.tile1.nc .........OK - Moving phyf048.tile2.nc .........OK - Moving phyf048.tile3.nc .........OK - Moving phyf048.tile4.nc .........OK - Moving phyf048.tile5.nc .........OK - Moving phyf048.tile6.nc .........OK - Moving dynf027.tile1.nc .........OK - Moving dynf027.tile2.nc .........OK - Moving dynf027.tile3.nc .........OK - Moving dynf027.tile4.nc .........OK - Moving dynf027.tile5.nc .........OK - Moving dynf027.tile6.nc .........OK - Moving dynf048.tile1.nc .........OK - Moving dynf048.tile2.nc .........OK - Moving dynf048.tile3.nc .........OK - Moving dynf048.tile4.nc .........OK - Moving dynf048.tile5.nc .........OK - Moving dynf048.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_iau PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_iau_prod +Checking test 013 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 013 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_lheatstrg_prod -Checking test 012 fv3_ccpp_lheatstrg results .... -Moving baseline 012 fv3_ccpp_lheatstrg files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_lheatstrg PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_lheatstrg_prod +Checking test 014 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 014 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_multigases_prod -Checking test 013 fv3_ccpp_multigases results .... -Moving baseline 013 fv3_ccpp_multigases files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 013 fv3_ccpp_multigases PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_multigases_prod +Checking test 015 fv3_ccpp_multigases 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 + 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 015 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_control_32bit_prod -Checking test 014 fv3_ccpp_control_32bit results .... -Moving baseline 014 fv3_ccpp_control_32bit files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_ccpp_control_32bit PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_control_32bit_prod +Checking test 016 fv3_ccpp_control_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.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 016 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_stretched_prod -Checking test 015 fv3_ccpp_stretched results .... -Moving baseline 015 fv3_ccpp_stretched files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving fv3_history2d.tile1.nc .........OK - Moving fv3_history2d.tile2.nc .........OK - Moving fv3_history2d.tile3.nc .........OK - Moving fv3_history2d.tile4.nc .........OK - Moving fv3_history2d.tile5.nc .........OK - Moving fv3_history2d.tile6.nc .........OK - Moving fv3_history.tile1.nc .........OK - Moving fv3_history.tile2.nc .........OK - Moving fv3_history.tile3.nc .........OK - Moving fv3_history.tile4.nc .........OK - Moving fv3_history.tile5.nc .........OK - Moving fv3_history.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_stretched PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_stretched_prod +Checking test 017 fv3_ccpp_stretched 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 fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.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 017 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_stretched_nest_prod -Checking test 016 fv3_ccpp_stretched_nest results .... -Moving baseline 016 fv3_ccpp_stretched_nest files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving atmos_4xdaily.nest02.tile7.nc .........OK - Moving fv3_history2d.tile1.nc .........OK - Moving fv3_history2d.tile2.nc .........OK - Moving fv3_history2d.tile3.nc .........OK - Moving fv3_history2d.tile4.nc .........OK - Moving fv3_history2d.tile5.nc .........OK - Moving fv3_history2d.tile6.nc .........OK - Moving fv3_history2d.nest02.tile7.nc .........OK - Moving fv3_history.tile1.nc .........OK - Moving fv3_history.tile2.nc .........OK - Moving fv3_history.tile3.nc .........OK - Moving fv3_history.tile4.nc .........OK - Moving fv3_history.tile5.nc .........OK - Moving fv3_history.tile6.nc .........OK - Moving fv3_history.nest02.tile7.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.nest02.nc .........OK - Moving RESTART/fv_BC_ne.res.nest02.nc .........OK - Moving RESTART/fv_BC_sw.res.nest02.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_core.res.nest02.tile7.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/phy_data.nest02.tile7.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/sfc_data.nest02.tile7.nc .........OK -Test 016 fv3_ccpp_stretched_nest PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_stretched_nest_prod +Checking test 018 fv3_ccpp_stretched_nest 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.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK +Test 018 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_regional_control_prod -Checking test 017 fv3_ccpp_regional_control results .... -Moving baseline 017 fv3_ccpp_regional_control files .... - Moving atmos_4xdaily.nc .........OK - Moving fv3_history2d.nc .........OK - Moving fv3_history.nc .........OK - Moving RESTART/fv_core.res.tile1_new.nc .........OK - Moving RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 017 fv3_ccpp_regional_control PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_regional_control_prod +Checking test 019 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 baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_regional_restart_prod -Checking test 018 fv3_ccpp_regional_restart results .... -Moving baseline 018 fv3_ccpp_regional_restart files .... - Moving atmos_4xdaily.nc .........OK - Moving fv3_history2d.nc .........OK - Moving fv3_history.nc .........OK -Test 018 fv3_ccpp_regional_restart PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_regional_restart_prod +Checking test 020 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 baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_regional_quilt_prod -Checking test 019 fv3_ccpp_regional_quilt results .... -Moving baseline 019 fv3_ccpp_regional_quilt files .... - Moving atmos_4xdaily.nc .........OK - Moving dynf000.nc .........OK - Moving dynf024.nc .........OK - Moving phyf000.nc .........OK - Moving phyf024.nc .........OK -Test 019 fv3_ccpp_regional_quilt PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_regional_quilt_prod +Checking test 021 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 baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 020 fv3_ccpp_regional_quilt_netcdf_parallel results .... -Moving baseline 020 fv3_ccpp_regional_quilt_netcdf_parallel files .... - Moving atmos_4xdaily.nc .........OK - Moving dynf000.nc .........OK - Moving dynf024.nc .........OK - Moving phyf000.nc .........OK - Moving phyf024.nc .........OK -Test 020 fv3_ccpp_regional_quilt_netcdf_parallel PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 022 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 baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_control_debug_prod -Checking test 021 fv3_ccpp_control_debug results .... -Moving baseline 021 fv3_ccpp_control_debug files .... - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK -Test 021 fv3_ccpp_control_debug PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_control_debug_prod +Checking test 023 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 023 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_stretched_nest_debug_prod -Checking test 022 fv3_ccpp_stretched_nest_debug results .... -Moving baseline 022 fv3_ccpp_stretched_nest_debug files .... - Moving fv3_history2d.nest02.tile7.nc .........OK - Moving fv3_history2d.tile1.nc .........OK - Moving fv3_history2d.tile2.nc .........OK - Moving fv3_history2d.tile3.nc .........OK - Moving fv3_history2d.tile4.nc .........OK - Moving fv3_history2d.tile5.nc .........OK - Moving fv3_history2d.tile6.nc .........OK - Moving fv3_history.nest02.tile7.nc .........OK - Moving fv3_history.tile1.nc .........OK - Moving fv3_history.tile2.nc .........OK - Moving fv3_history.tile3.nc .........OK - Moving fv3_history.tile4.nc .........OK - Moving fv3_history.tile5.nc .........OK - Moving fv3_history.tile6.nc .........OK -Test 022 fv3_ccpp_stretched_nest_debug PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_stretched_nest_debug_prod +Checking test 024 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + 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 baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfdlmp_prod -Checking test 023 fv3_ccpp_gfdlmp results .... -Moving baseline 023 fv3_ccpp_gfdlmp files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 023 fv3_ccpp_gfdlmp PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfdlmp_prod +Checking test 025 fv3_ccpp_gfdlmp 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 025 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... -Moving baseline 024 fv3_ccpp_gfdlmprad_gwd files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 024 fv3_ccpp_gfdlmprad_gwd PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 026 fv3_ccpp_gfdlmprad_gwd 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 026 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... -Moving baseline 025 fv3_ccpp_gfdlmprad_noahmp files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 025 fv3_ccpp_gfdlmprad_noahmp PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 027 fv3_ccpp_gfdlmprad_noahmp 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 027 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_csawmg_prod -Checking test 026 fv3_ccpp_csawmg results .... -Moving baseline 026 fv3_ccpp_csawmg files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 026 fv3_ccpp_csawmg PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_csawmg_prod +Checking test 028 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 028 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_satmedmf_prod -Checking test 027 fv3_ccpp_satmedmf results .... -Moving baseline 027 fv3_ccpp_satmedmf files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 027 fv3_ccpp_satmedmf PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_satmedmf_prod +Checking test 029 fv3_ccpp_satmedmf 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 029 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_satmedmfq_prod -Checking test 028 fv3_ccpp_satmedmfq results .... -Moving baseline 028 fv3_ccpp_satmedmfq files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 028 fv3_ccpp_satmedmfq PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_satmedmfq_prod +Checking test 030 fv3_ccpp_satmedmfq 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 030 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfdlmp_32bit_prod -Checking test 029 fv3_ccpp_gfdlmp_32bit results .... -Moving baseline 029 fv3_ccpp_gfdlmp_32bit files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 029 fv3_ccpp_gfdlmp_32bit PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfdlmp_32bit_prod +Checking test 031 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 031 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 030 fv3_ccpp_gfdlmprad_32bit_post results .... -Moving baseline 030 fv3_ccpp_gfdlmprad_32bit_post files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF24 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmprad_32bit_post PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 032 fv3_ccpp_gfdlmprad_32bit_post 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 GFSFLX.GrbF00 .........OK + Comparing GFSPRS.GrbF00 ............ALT CHECK......OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 ............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/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 032 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_cpt_prod -Checking test 031 fv3_ccpp_cpt results .... -Moving baseline 031 fv3_ccpp_cpt files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_cpt PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_cpt_prod +Checking test 033 fv3_ccpp_cpt 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 + 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_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gsd_prod -Checking test 032 fv3_ccpp_gsd results .... -Moving baseline 032 fv3_ccpp_gsd files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving phyf027.tile1.nc .........OK - Moving phyf027.tile2.nc .........OK - Moving phyf027.tile3.nc .........OK - Moving phyf027.tile4.nc .........OK - Moving phyf027.tile5.nc .........OK - Moving phyf027.tile6.nc .........OK - Moving phyf048.tile1.nc .........OK - Moving phyf048.tile2.nc .........OK - Moving phyf048.tile3.nc .........OK - Moving phyf048.tile4.nc .........OK - Moving phyf048.tile5.nc .........OK - Moving phyf048.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving dynf027.tile1.nc .........OK - Moving dynf027.tile2.nc .........OK - Moving dynf027.tile3.nc .........OK - Moving dynf027.tile4.nc .........OK - Moving dynf027.tile5.nc .........OK - Moving dynf027.tile6.nc .........OK - Moving dynf048.tile1.nc .........OK - Moving dynf048.tile2.nc .........OK - Moving dynf048.tile3.nc .........OK - Moving dynf048.tile4.nc .........OK - Moving dynf048.tile5.nc .........OK - Moving dynf048.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 032 fv3_ccpp_gsd PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gsd_prod +Checking test 034 fv3_ccpp_gsd 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 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 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 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 034 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_thompson_prod -Checking test 033 fv3_ccpp_thompson results .... -Moving baseline 033 fv3_ccpp_thompson files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_thompson PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_thompson_prod +Checking test 035 fv3_ccpp_thompson 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 035 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_thompson_no_aero_prod -Checking test 034 fv3_ccpp_thompson_no_aero results .... -Moving baseline 034 fv3_ccpp_thompson_no_aero files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_thompson_no_aero PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_thompson_no_aero_prod +Checking test 036 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.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 036 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_rrfs_v1beta_prod -Checking test 035 fv3_ccpp_rrfs_v1beta results .... -Moving baseline 035 fv3_ccpp_rrfs_v1beta files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_rrfs_v1beta PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_rrfs_v1beta_prod +Checking test 037 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 037 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfs_v16beta_prod +Checking test 038 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 038 fv3_ccpp_gfs_v16beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfs_v16beta_prod -Checking test 036 fv3_ccpp_gfs_v16beta results .... -Moving baseline 036 fv3_ccpp_gfs_v16beta files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving phyf048.tile1.nc .........OK - Moving phyf048.tile2.nc .........OK - Moving phyf048.tile3.nc .........OK - Moving phyf048.tile4.nc .........OK - Moving phyf048.tile5.nc .........OK - Moving phyf048.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving dynf048.tile1.nc .........OK - Moving dynf048.tile2.nc .........OK - Moving dynf048.tile3.nc .........OK - Moving dynf048.tile4.nc .........OK - Moving dynf048.tile5.nc .........OK - Moving dynf048.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_gfs_v16beta PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfs_v16beta_restart_prod +Checking test 039 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 039 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 037 fv3_ccpp_gfs_v16beta_stochy results .... -Moving baseline 037 fv3_ccpp_gfs_v16beta_stochy files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf012.tile1.nc .........OK - Moving phyf012.tile2.nc .........OK - Moving phyf012.tile3.nc .........OK - Moving phyf012.tile4.nc .........OK - Moving phyf012.tile5.nc .........OK - Moving phyf012.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf012.tile1.nc .........OK - Moving dynf012.tile2.nc .........OK - Moving dynf012.tile3.nc .........OK - Moving dynf012.tile4.nc .........OK - Moving dynf012.tile5.nc .........OK - Moving dynf012.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 037 fv3_ccpp_gfs_v16beta_stochy PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 040 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 040 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 038 fv3_ccpp_gfs_v16beta_RRTMGP results .... -Moving baseline 038 fv3_ccpp_gfs_v16beta_RRTMGP files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 038 fv3_ccpp_gfs_v16beta_RRTMGP PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 041 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 041 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfsv16_csawmg_prod -Checking test 039 fv3_ccpp_gfsv16_csawmg results .... -Moving baseline 039 fv3_ccpp_gfsv16_csawmg files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_gfsv16_csawmg PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfsv16_csawmg_prod +Checking test 042 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 042 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 040 fv3_ccpp_gfsv16_csawmgt results .... -Moving baseline 040 fv3_ccpp_gfsv16_csawmgt files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_gfsv16_csawmgt PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 043 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 043 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gocart_clm_prod -Checking test 041 fv3_ccpp_gocart_clm results .... -Moving baseline 041 fv3_ccpp_gocart_clm files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 041 fv3_ccpp_gocart_clm PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gocart_clm_prod +Checking test 044 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 044 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 042 fv3_ccpp_gfs_v16beta_flake results .... -Moving baseline 042 fv3_ccpp_gfs_v16beta_flake files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfs_v16beta_flake PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 045 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 + 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 045 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 043 fv3_ccpp_HAFS_v0_hwrf_thompson results .... -Moving baseline 043 fv3_ccpp_HAFS_v0_hwrf_thompson files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 046 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 + 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_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... -Moving baseline 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson files .... - Moving atmos_4xdaily.nc .........OK - Moving phyf000.nc .........OK - Moving phyf012.nc .........OK - Moving dynf000.nc .........OK - Moving dynf012.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/sfc_data.nc .........OK - Moving RESTART/phy_data.nc .........OK -Test 044 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK + 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 baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 045 fv3_ccpp_gfs_v16beta_debug results .... -Moving baseline 045 fv3_ccpp_gfs_v16beta_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16beta_debug PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 048 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 048 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 046 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... -Moving baseline 046 fv3_ccpp_gfs_v16beta_RRTMGP_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 049 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 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gsd_debug_prod -Checking test 047 fv3_ccpp_gsd_debug results .... -Moving baseline 047 fv3_ccpp_gsd_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf003.tile1.nc .........OK - Moving phyf003.tile2.nc .........OK - Moving phyf003.tile3.nc .........OK - Moving phyf003.tile4.nc .........OK - Moving phyf003.tile5.nc .........OK - Moving phyf003.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf003.tile1.nc .........OK - Moving dynf003.tile2.nc .........OK - Moving dynf003.tile3.nc .........OK - Moving dynf003.tile4.nc .........OK - Moving dynf003.tile5.nc .........OK - Moving dynf003.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 047 fv3_ccpp_gsd_debug PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gsd_debug_prod +Checking test 050 fv3_ccpp_gsd_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 050 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... -Moving baseline 048 fv3_ccpp_gsd_diag3d_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf003.tile1.nc .........OK - Moving phyf003.tile2.nc .........OK - Moving phyf003.tile3.nc .........OK - Moving phyf003.tile4.nc .........OK - Moving phyf003.tile5.nc .........OK - Moving phyf003.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf003.tile1.nc .........OK - Moving dynf003.tile2.nc .........OK - Moving dynf003.tile3.nc .........OK - Moving dynf003.tile4.nc .........OK - Moving dynf003.tile5.nc .........OK - Moving dynf003.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 048 fv3_ccpp_gsd_diag3d_debug PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 051 fv3_ccpp_gsd_diag3d_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_thompson_debug_prod -Checking test 049 fv3_ccpp_thompson_debug results .... -Moving baseline 049 fv3_ccpp_thompson_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 049 fv3_ccpp_thompson_debug PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_thompson_debug_prod +Checking test 052 fv3_ccpp_thompson_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_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... -Moving baseline 050 fv3_ccpp_thompson_no_aero_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 050 fv3_ccpp_thompson_no_aero_debug PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 053 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 + 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_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... -Moving baseline 051 fv3_ccpp_rrfs_v1beta_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf003.tile1.nc .........OK - Moving phyf003.tile2.nc .........OK - Moving phyf003.tile3.nc .........OK - Moving phyf003.tile4.nc .........OK - Moving phyf003.tile5.nc .........OK - Moving phyf003.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf003.tile1.nc .........OK - Moving dynf003.tile2.nc .........OK - Moving dynf003.tile3.nc .........OK - Moving dynf003.tile4.nc .........OK - Moving dynf003.tile5.nc .........OK - Moving dynf003.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 051 fv3_ccpp_rrfs_v1beta_debug PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 054 fv3_ccpp_rrfs_v1beta_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... -Moving baseline 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf003.tile1.nc .........OK - Moving phyf003.tile2.nc .........OK - Moving phyf003.tile3.nc .........OK - Moving phyf003.tile4.nc .........OK - Moving phyf003.tile5.nc .........OK - Moving phyf003.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf003.tile1.nc .........OK - Moving dynf003.tile2.nc .........OK - Moving dynf003.tile3.nc .........OK - Moving dynf003.tile4.nc .........OK - Moving dynf003.tile5.nc .........OK - Moving dynf003.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 055 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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26722/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... -Moving baseline 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug files .... - Moving atmos_4xdaily.nc .........OK - Moving phyf000.nc .........OK - Moving phyf001.nc .........OK - Moving dynf000.nc .........OK - Moving dynf001.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/sfc_data.nc .........OK - Moving RESTART/phy_data.nc .........OK -Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK + 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 REGRESSION TEST WAS SUCCESSFUL -Thu Dec 17 02:34:42 UTC 2020 -Elapsed time: 00h:39m:18s. Have a nice day! +Fri Dec 18 19:10:42 UTC 2020 +Elapsed time: 01h:51m:32s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 655b7607ae..5778beef74 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,3710 +1,3993 @@ -Thu Dec 17 02:33:12 UTC 2020 +Fri Dec 18 17:18:58 UTC 2020 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... -Moving baseline 001 fv3_ccpp_control files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK + 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 001 fv3_ccpp_control PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 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 002 fv3_ccpp_decomp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_2threads_prod +Checking test 003 fv3_ccpp_2threads 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 003 fv3_ccpp_2threads PASS + + baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_restart_prod -Checking test 002 fv3_ccpp_restart results .... -Moving baseline 002 fv3_ccpp_restart files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf027.tile1.nc .........OK - Moving phyf027.tile2.nc .........OK - Moving phyf027.tile3.nc .........OK - Moving phyf027.tile4.nc .........OK - Moving phyf027.tile5.nc .........OK - Moving phyf027.tile6.nc .........OK - Moving phyf048.tile1.nc .........OK - Moving phyf048.tile2.nc .........OK - Moving phyf048.tile3.nc .........OK - Moving phyf048.tile4.nc .........OK - Moving phyf048.tile5.nc .........OK - Moving phyf048.tile6.nc .........OK - Moving dynf027.tile1.nc .........OK - Moving dynf027.tile2.nc .........OK - Moving dynf027.tile3.nc .........OK - Moving dynf027.tile4.nc .........OK - Moving dynf027.tile5.nc .........OK - Moving dynf027.tile6.nc .........OK - Moving dynf048.tile1.nc .........OK - Moving dynf048.tile2.nc .........OK - Moving dynf048.tile3.nc .........OK - Moving dynf048.tile4.nc .........OK - Moving dynf048.tile5.nc .........OK - Moving dynf048.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_restart PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_restart_prod +Checking test 004 fv3_ccpp_restart 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 004 fv3_ccpp_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_read_inc_prod -Checking test 003 fv3_ccpp_read_inc results .... -Moving baseline 003 fv3_ccpp_read_inc files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf027.tile1.nc .........OK - Moving phyf027.tile2.nc .........OK - Moving phyf027.tile3.nc .........OK - Moving phyf027.tile4.nc .........OK - Moving phyf027.tile5.nc .........OK - Moving phyf027.tile6.nc .........OK - Moving phyf048.tile1.nc .........OK - Moving phyf048.tile2.nc .........OK - Moving phyf048.tile3.nc .........OK - Moving phyf048.tile4.nc .........OK - Moving phyf048.tile5.nc .........OK - Moving phyf048.tile6.nc .........OK - Moving dynf027.tile1.nc .........OK - Moving dynf027.tile2.nc .........OK - Moving dynf027.tile3.nc .........OK - Moving dynf027.tile4.nc .........OK - Moving dynf027.tile5.nc .........OK - Moving dynf027.tile6.nc .........OK - Moving dynf048.tile1.nc .........OK - Moving dynf048.tile2.nc .........OK - Moving dynf048.tile3.nc .........OK - Moving dynf048.tile4.nc .........OK - Moving dynf048.tile5.nc .........OK - Moving dynf048.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_read_inc PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 + 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 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 004 fv3_ccpp_wrtGauss_netcdf_esmf results .... -Moving baseline 004 fv3_ccpp_wrtGauss_netcdf_esmf files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nc .........OK - Moving phyf024.nc .........OK - Moving dynf000.nc .........OK - Moving dynf024.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_wrtGauss_netcdf_esmf PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 + 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.nc .........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 + 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 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 005 fv3_ccpp_wrtGauss_netcdf results .... -Moving baseline 005 fv3_ccpp_wrtGauss_netcdf files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nc .........OK - Moving phyf024.nc .........OK - Moving dynf000.nc .........OK - Moving dynf024.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_wrtGauss_netcdf PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 + 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.nc .........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 + 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 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_parallel results .... -Moving baseline 006 fv3_ccpp_wrtGauss_netcdf_parallel files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nc .........OK - Moving phyf024.nc .........OK - Moving dynf000.nc .........OK - Moving dynf024.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_parallel PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 + 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.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.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 + 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 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 007 fv3_ccpp_wrtGlatlon_netcdf results .... -Moving baseline 007 fv3_ccpp_wrtGlatlon_netcdf files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nc .........OK - Moving phyf024.nc .........OK - Moving dynf000.nc .........OK - Moving dynf024.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGlatlon_netcdf PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 + 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.nc .........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 + 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 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 008 fv3_ccpp_wrtGauss_nemsio results .... -Moving baseline 008 fv3_ccpp_wrtGauss_nemsio files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_nemsio PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 + 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 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 009 fv3_ccpp_wrtGauss_nemsio_c192 results .... -Moving baseline 009 fv3_ccpp_wrtGauss_nemsio_c192 files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGauss_nemsio_c192 PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 + 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 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_stochy_prod -Checking test 010 fv3_ccpp_stochy results .... -Moving baseline 010 fv3_ccpp_stochy files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf012.tile1.nc .........OK - Moving phyf012.tile2.nc .........OK - Moving phyf012.tile3.nc .........OK - Moving phyf012.tile4.nc .........OK - Moving phyf012.tile5.nc .........OK - Moving phyf012.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf012.tile1.nc .........OK - Moving dynf012.tile2.nc .........OK - Moving dynf012.tile3.nc .........OK - Moving dynf012.tile4.nc .........OK - Moving dynf012.tile5.nc .........OK - Moving dynf012.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_stochy PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_stochy_prod +Checking test 012 fv3_ccpp_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/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 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_iau_prod -Checking test 011 fv3_ccpp_iau results .... -Moving baseline 011 fv3_ccpp_iau files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf027.tile1.nc .........OK - Moving phyf027.tile2.nc .........OK - Moving phyf027.tile3.nc .........OK - Moving phyf027.tile4.nc .........OK - Moving phyf027.tile5.nc .........OK - Moving phyf027.tile6.nc .........OK - Moving phyf048.tile1.nc .........OK - Moving phyf048.tile2.nc .........OK - Moving phyf048.tile3.nc .........OK - Moving phyf048.tile4.nc .........OK - Moving phyf048.tile5.nc .........OK - Moving phyf048.tile6.nc .........OK - Moving dynf027.tile1.nc .........OK - Moving dynf027.tile2.nc .........OK - Moving dynf027.tile3.nc .........OK - Moving dynf027.tile4.nc .........OK - Moving dynf027.tile5.nc .........OK - Moving dynf027.tile6.nc .........OK - Moving dynf048.tile1.nc .........OK - Moving dynf048.tile2.nc .........OK - Moving dynf048.tile3.nc .........OK - Moving dynf048.tile4.nc .........OK - Moving dynf048.tile5.nc .........OK - Moving dynf048.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_iau PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_iau_prod +Checking test 013 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 013 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_lheatstrg_prod -Checking test 012 fv3_ccpp_lheatstrg results .... -Moving baseline 012 fv3_ccpp_lheatstrg files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_lheatstrg PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_lheatstrg_prod +Checking test 014 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 014 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfdlmprad_prod -Checking test 013 fv3_ccpp_gfdlmprad results .... -Moving baseline 013 fv3_ccpp_gfdlmprad files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving out_grd.glo_30m .........OK -Test 013 fv3_ccpp_gfdlmprad PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfdlmprad_prod +Checking test 015 fv3_ccpp_gfdlmprad 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 + Comparing out_grd.glo_30m .........OK +Test 015 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 014 fv3_ccpp_gfdlmprad_atmwav results .... -Moving baseline 014 fv3_ccpp_gfdlmprad_atmwav files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving out_grd.glo_30m .........OK -Test 014 fv3_ccpp_gfdlmprad_atmwav PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 016 fv3_ccpp_gfdlmprad_atmwav 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 + Comparing out_grd.glo_30m .........OK +Test 016 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_multigases_prod -Checking test 015 fv3_ccpp_multigases results .... -Moving baseline 015 fv3_ccpp_multigases files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 015 fv3_ccpp_multigases PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 + 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 + 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 017 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_control_32bit_prod -Checking test 016 fv3_ccpp_control_32bit results .... -Moving baseline 016 fv3_ccpp_control_32bit files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_control_32bit PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 + 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 018 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_stretched_prod -Checking test 017 fv3_ccpp_stretched results .... -Moving baseline 017 fv3_ccpp_stretched files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving fv3_history2d.tile1.nc .........OK - Moving fv3_history2d.tile2.nc .........OK - Moving fv3_history2d.tile3.nc .........OK - Moving fv3_history2d.tile4.nc .........OK - Moving fv3_history2d.tile5.nc .........OK - Moving fv3_history2d.tile6.nc .........OK - Moving fv3_history.tile1.nc .........OK - Moving fv3_history.tile2.nc .........OK - Moving fv3_history.tile3.nc .........OK - Moving fv3_history.tile4.nc .........OK - Moving fv3_history.tile5.nc .........OK - Moving fv3_history.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 017 fv3_ccpp_stretched PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.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 019 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_stretched_nest_prod -Checking test 018 fv3_ccpp_stretched_nest results .... -Moving baseline 018 fv3_ccpp_stretched_nest files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving atmos_4xdaily.nest02.tile7.nc .........OK - Moving fv3_history2d.tile1.nc .........OK - Moving fv3_history2d.tile2.nc .........OK - Moving fv3_history2d.tile3.nc .........OK - Moving fv3_history2d.tile4.nc .........OK - Moving fv3_history2d.tile5.nc .........OK - Moving fv3_history2d.tile6.nc .........OK - Moving fv3_history2d.nest02.tile7.nc .........OK - Moving fv3_history.tile1.nc .........OK - Moving fv3_history.tile2.nc .........OK - Moving fv3_history.tile3.nc .........OK - Moving fv3_history.tile4.nc .........OK - Moving fv3_history.tile5.nc .........OK - Moving fv3_history.tile6.nc .........OK - Moving fv3_history.nest02.tile7.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.nest02.nc .........OK - Moving RESTART/fv_BC_ne.res.nest02.nc .........OK - Moving RESTART/fv_BC_sw.res.nest02.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_core.res.nest02.tile7.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/phy_data.nest02.tile7.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/sfc_data.nest02.tile7.nc .........OK -Test 018 fv3_ccpp_stretched_nest PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing atmos_4xdaily.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK +Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_regional_control_prod -Checking test 019 fv3_ccpp_regional_control results .... -Moving baseline 019 fv3_ccpp_regional_control files .... - Moving atmos_4xdaily.nc .........OK - Moving fv3_history2d.nc .........OK - Moving fv3_history.nc .........OK - Moving RESTART/fv_core.res.tile1_new.nc .........OK - Moving RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 019 fv3_ccpp_regional_control PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 021 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_regional_restart_prod -Checking test 020 fv3_ccpp_regional_restart results .... -Moving baseline 020 fv3_ccpp_regional_restart files .... - Moving atmos_4xdaily.nc .........OK - Moving fv3_history2d.nc .........OK - Moving fv3_history.nc .........OK -Test 020 fv3_ccpp_regional_restart PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 022 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_regional_quilt_prod -Checking test 021 fv3_ccpp_regional_quilt results .... -Moving baseline 021 fv3_ccpp_regional_quilt files .... - Moving atmos_4xdaily.nc .........OK - Moving dynf000.nc .........OK - Moving dynf024.nc .........OK - Moving phyf000.nc .........OK - Moving phyf024.nc .........OK -Test 021 fv3_ccpp_regional_quilt PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 023 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... -Moving baseline 022 fv3_ccpp_regional_quilt_netcdf_parallel files .... - Moving atmos_4xdaily.nc .........OK - Moving dynf000.nc .........OK - Moving dynf024.nc .........OK - Moving phyf000.nc .........OK - Moving phyf024.nc .........OK -Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_regional_c768_prod -Checking test 023 fv3_ccpp_regional_c768 results .... -Moving baseline 023 fv3_ccpp_regional_c768 files .... - Moving atmos_4xdaily.nc .........OK - Moving dynf000.nc .........OK - Moving dynf003.nc .........OK - Moving phyf000.nc .........OK - Moving phyf003.nc .........OK -Test 023 fv3_ccpp_regional_c768 PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_regional_c768_prod +Checking test 025 fv3_ccpp_regional_c768 results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf003.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf003.nc .........OK +Test 025 fv3_ccpp_regional_c768 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_control_debug_prod -Checking test 024 fv3_ccpp_control_debug results .... -Moving baseline 024 fv3_ccpp_control_debug files .... - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK -Test 024 fv3_ccpp_control_debug PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_control_debug_prod +Checking test 026 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 026 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_stretched_nest_debug_prod -Checking test 025 fv3_ccpp_stretched_nest_debug results .... -Moving baseline 025 fv3_ccpp_stretched_nest_debug files .... - Moving fv3_history2d.nest02.tile7.nc .........OK - Moving fv3_history2d.tile1.nc .........OK - Moving fv3_history2d.tile2.nc .........OK - Moving fv3_history2d.tile3.nc .........OK - Moving fv3_history2d.tile4.nc .........OK - Moving fv3_history2d.tile5.nc .........OK - Moving fv3_history2d.tile6.nc .........OK - Moving fv3_history.nest02.tile7.nc .........OK - Moving fv3_history.tile1.nc .........OK - Moving fv3_history.tile2.nc .........OK - Moving fv3_history.tile3.nc .........OK - Moving fv3_history.tile4.nc .........OK - Moving fv3_history.tile5.nc .........OK - Moving fv3_history.tile6.nc .........OK -Test 025 fv3_ccpp_stretched_nest_debug PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_stretched_nest_debug_prod +Checking test 027 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + 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 baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfdlmp_prod -Checking test 026 fv3_ccpp_gfdlmp results .... -Moving baseline 026 fv3_ccpp_gfdlmp files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 026 fv3_ccpp_gfdlmp PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfdlmp_prod +Checking test 028 fv3_ccpp_gfdlmp 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 028 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... -Moving baseline 027 fv3_ccpp_gfdlmprad_gwd files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 027 fv3_ccpp_gfdlmprad_gwd PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 029 fv3_ccpp_gfdlmprad_gwd 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 029 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... -Moving baseline 028 fv3_ccpp_gfdlmprad_noahmp files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 028 fv3_ccpp_gfdlmprad_noahmp PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 030 fv3_ccpp_gfdlmprad_noahmp 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 030 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_csawmg_prod -Checking test 029 fv3_ccpp_csawmg results .... -Moving baseline 029 fv3_ccpp_csawmg files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 029 fv3_ccpp_csawmg PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_csawmg_prod +Checking test 031 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 031 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_satmedmf_prod -Checking test 030 fv3_ccpp_satmedmf results .... -Moving baseline 030 fv3_ccpp_satmedmf files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_ccpp_satmedmf PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_satmedmf_prod +Checking test 032 fv3_ccpp_satmedmf 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 032 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_satmedmfq_prod -Checking test 031 fv3_ccpp_satmedmfq results .... -Moving baseline 031 fv3_ccpp_satmedmfq files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 031 fv3_ccpp_satmedmfq PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_satmedmfq_prod +Checking test 033 fv3_ccpp_satmedmfq 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_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfdlmp_32bit_prod -Checking test 032 fv3_ccpp_gfdlmp_32bit results .... -Moving baseline 032 fv3_ccpp_gfdlmp_32bit files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmp_32bit PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfdlmp_32bit_prod +Checking test 034 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 034 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... -Moving baseline 033 fv3_ccpp_gfdlmprad_32bit_post files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF24 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 035 fv3_ccpp_gfdlmprad_32bit_post 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 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 + 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 035 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_cpt_prod -Checking test 034 fv3_ccpp_cpt results .... -Moving baseline 034 fv3_ccpp_cpt files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 034 fv3_ccpp_cpt PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_cpt_prod +Checking test 036 fv3_ccpp_cpt 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 + 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 036 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gsd_prod -Checking test 035 fv3_ccpp_gsd results .... -Moving baseline 035 fv3_ccpp_gsd files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving phyf027.tile1.nc .........OK - Moving phyf027.tile2.nc .........OK - Moving phyf027.tile3.nc .........OK - Moving phyf027.tile4.nc .........OK - Moving phyf027.tile5.nc .........OK - Moving phyf027.tile6.nc .........OK - Moving phyf048.tile1.nc .........OK - Moving phyf048.tile2.nc .........OK - Moving phyf048.tile3.nc .........OK - Moving phyf048.tile4.nc .........OK - Moving phyf048.tile5.nc .........OK - Moving phyf048.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving dynf027.tile1.nc .........OK - Moving dynf027.tile2.nc .........OK - Moving dynf027.tile3.nc .........OK - Moving dynf027.tile4.nc .........OK - Moving dynf027.tile5.nc .........OK - Moving dynf027.tile6.nc .........OK - Moving dynf048.tile1.nc .........OK - Moving dynf048.tile2.nc .........OK - Moving dynf048.tile3.nc .........OK - Moving dynf048.tile4.nc .........OK - Moving dynf048.tile5.nc .........OK - Moving dynf048.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_gsd PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gsd_prod +Checking test 037 fv3_ccpp_gsd 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 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 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 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 037 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_thompson_prod -Checking test 036 fv3_ccpp_thompson results .... -Moving baseline 036 fv3_ccpp_thompson files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 036 fv3_ccpp_thompson PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_thompson_prod +Checking test 038 fv3_ccpp_thompson 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_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_thompson_no_aero_prod -Checking test 037 fv3_ccpp_thompson_no_aero results .... -Moving baseline 037 fv3_ccpp_thompson_no_aero files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_thompson_no_aero PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_thompson_no_aero_prod +Checking test 039 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.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 039 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_rrfs_v1beta_prod -Checking test 038 fv3_ccpp_rrfs_v1beta results .... -Moving baseline 038 fv3_ccpp_rrfs_v1beta files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_rrfs_v1beta PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_rrfs_v1beta_prod +Checking test 040 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 040 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfs_v16beta_prod -Checking test 039 fv3_ccpp_gfs_v16beta results .... -Moving baseline 039 fv3_ccpp_gfs_v16beta files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving phyf048.tile1.nc .........OK - Moving phyf048.tile2.nc .........OK - Moving phyf048.tile3.nc .........OK - Moving phyf048.tile4.nc .........OK - Moving phyf048.tile5.nc .........OK - Moving phyf048.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving dynf048.tile1.nc .........OK - Moving dynf048.tile2.nc .........OK - Moving dynf048.tile3.nc .........OK - Moving dynf048.tile4.nc .........OK - Moving dynf048.tile5.nc .........OK - Moving dynf048.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 039 fv3_ccpp_gfs_v16beta PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfs_v16beta_prod +Checking test 041 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 041 fv3_ccpp_gfs_v16beta PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfs_v16beta_restart_prod +Checking test 042 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 042 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 040 fv3_ccpp_gfs_v16beta_stochy results .... -Moving baseline 040 fv3_ccpp_gfs_v16beta_stochy files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf012.tile1.nc .........OK - Moving phyf012.tile2.nc .........OK - Moving phyf012.tile3.nc .........OK - Moving phyf012.tile4.nc .........OK - Moving phyf012.tile5.nc .........OK - Moving phyf012.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf012.tile1.nc .........OK - Moving dynf012.tile2.nc .........OK - Moving dynf012.tile3.nc .........OK - Moving dynf012.tile4.nc .........OK - Moving dynf012.tile5.nc .........OK - Moving dynf012.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 040 fv3_ccpp_gfs_v16beta_stochy PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 043 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 043 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 041 fv3_ccpp_gfs_v16beta_RRTMGP results .... -Moving baseline 041 fv3_ccpp_gfs_v16beta_RRTMGP files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 041 fv3_ccpp_gfs_v16beta_RRTMGP PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfsv16_csawmg_prod -Checking test 042 fv3_ccpp_gfsv16_csawmg results .... -Moving baseline 042 fv3_ccpp_gfsv16_csawmg files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfsv16_csawmg PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 043 fv3_ccpp_gfsv16_csawmgt results .... -Moving baseline 043 fv3_ccpp_gfsv16_csawmgt files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfsv16_csawmgt PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gocart_clm_prod -Checking test 044 fv3_ccpp_gocart_clm results .... -Moving baseline 044 fv3_ccpp_gocart_clm files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gocart_clm PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 045 fv3_ccpp_gfs_v16beta_flake results .... -Moving baseline 045 fv3_ccpp_gfs_v16beta_flake files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16beta_flake PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 + 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_v16beta_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson results .... -Moving baseline 046 fv3_ccpp_HAFS_v0_hwrf_thompson files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 + 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_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... -Moving baseline 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson files .... - Moving atmos_4xdaily.nc .........OK - Moving phyf000.nc .........OK - Moving phyf012.nc .........OK - Moving dynf000.nc .........OK - Moving dynf012.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/sfc_data.nc .........OK - Moving RESTART/phy_data.nc .........OK -Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/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 + Comparing dynf000.nc .........OK + Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... -Moving baseline 048 fv3_ccpp_gfs_v16beta_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16beta_debug PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 051 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 051 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... -Moving baseline 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 052 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 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gsd_debug_prod -Checking test 050 fv3_ccpp_gsd_debug results .... -Moving baseline 050 fv3_ccpp_gsd_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf003.tile1.nc .........OK - Moving phyf003.tile2.nc .........OK - Moving phyf003.tile3.nc .........OK - Moving phyf003.tile4.nc .........OK - Moving phyf003.tile5.nc .........OK - Moving phyf003.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf003.tile1.nc .........OK - Moving dynf003.tile2.nc .........OK - Moving dynf003.tile3.nc .........OK - Moving dynf003.tile4.nc .........OK - Moving dynf003.tile5.nc .........OK - Moving dynf003.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 050 fv3_ccpp_gsd_debug PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gsd_debug_prod +Checking test 053 fv3_ccpp_gsd_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... -Moving baseline 051 fv3_ccpp_gsd_diag3d_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf003.tile1.nc .........OK - Moving phyf003.tile2.nc .........OK - Moving phyf003.tile3.nc .........OK - Moving phyf003.tile4.nc .........OK - Moving phyf003.tile5.nc .........OK - Moving phyf003.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf003.tile1.nc .........OK - Moving dynf003.tile2.nc .........OK - Moving dynf003.tile3.nc .........OK - Moving dynf003.tile4.nc .........OK - Moving dynf003.tile5.nc .........OK - Moving dynf003.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 051 fv3_ccpp_gsd_diag3d_debug PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 054 fv3_ccpp_gsd_diag3d_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_thompson_debug_prod -Checking test 052 fv3_ccpp_thompson_debug results .... -Moving baseline 052 fv3_ccpp_thompson_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_thompson_debug PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_thompson_debug_prod +Checking test 055 fv3_ccpp_thompson_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_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... -Moving baseline 053 fv3_ccpp_thompson_no_aero_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_thompson_no_aero_debug PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 056 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 + 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_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... -Moving baseline 054 fv3_ccpp_rrfs_v1beta_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf003.tile1.nc .........OK - Moving phyf003.tile2.nc .........OK - Moving phyf003.tile3.nc .........OK - Moving phyf003.tile4.nc .........OK - Moving phyf003.tile5.nc .........OK - Moving phyf003.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf003.tile1.nc .........OK - Moving dynf003.tile2.nc .........OK - Moving dynf003.tile3.nc .........OK - Moving dynf003.tile4.nc .........OK - Moving dynf003.tile5.nc .........OK - Moving dynf003.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 054 fv3_ccpp_rrfs_v1beta_debug PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 057 fv3_ccpp_rrfs_v1beta_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... -Moving baseline 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf003.tile1.nc .........OK - Moving phyf003.tile2.nc .........OK - Moving phyf003.tile3.nc .........OK - Moving phyf003.tile4.nc .........OK - Moving phyf003.tile5.nc .........OK - Moving phyf003.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf003.tile1.nc .........OK - Moving dynf003.tile2.nc .........OK - Moving dynf003.tile3.nc .........OK - Moving dynf003.tile4.nc .........OK - Moving dynf003.tile5.nc .........OK - Moving dynf003.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 058 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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... -Moving baseline 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug files .... - Moving atmos_4xdaily.nc .........OK - Moving phyf000.nc .........OK - Moving phyf001.nc .........OK - Moving dynf000.nc .........OK - Moving dynf001.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/sfc_data.nc .........OK - Moving RESTART/phy_data.nc .........OK -Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK + 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 baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_control_prod -Checking test 057 cpld_control results .... -Moving baseline 057 cpld_control files .... - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2016-10-04-00000.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 057 cpld_control PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_control_prod +Checking test 060 cpld_control results .... + 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 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 + 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 + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_2threads_prod +Checking test 061 cpld_2threads results .... + 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 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 + 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_2threads PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_decomp_prod +Checking test 062 cpld_decomp results .... + 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 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 + 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_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_satmedmf_prod -Checking test 058 cpld_satmedmf results .... -Moving baseline 058 cpld_satmedmf files .... - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2016-10-04-00000.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 058 cpld_satmedmf PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_satmedmf_prod +Checking test 063 cpld_satmedmf results .... + 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 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 + 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_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_ca_prod -Checking test 059 cpld_ca results .... -Moving baseline 059 cpld_ca files .... - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2016-10-04-00000.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 059 cpld_ca PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_ca_prod +Checking test 064 cpld_ca results .... + 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 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 + 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_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_control_mx025_prod -Checking test 060 cpld_control_mx025 results .... -Moving baseline 060 cpld_control_mx025 files .... - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/MOM.res_1.nc .........OK - Moving RESTART/MOM.res_2.nc .........OK - Moving RESTART/MOM.res_3.nc .........OK - Moving RESTART/iced.2016-10-04-00000.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 060 cpld_control_mx025 PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_control_mx025_prod +Checking test 065 cpld_control_mx025 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 065 cpld_control_mx025 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_control_mx025_12h_prod -Checking test 061 cpld_control_mx025_12h results .... -Moving baseline 061 cpld_control_mx025_12h files .... - Moving phyf012.tile1.nc .........OK - Moving phyf012.tile2.nc .........OK - Moving phyf012.tile3.nc .........OK - Moving phyf012.tile4.nc .........OK - Moving phyf012.tile5.nc .........OK - Moving phyf012.tile6.nc .........OK - Moving dynf012.tile1.nc .........OK - Moving dynf012.tile2.nc .........OK - Moving dynf012.tile3.nc .........OK - Moving dynf012.tile4.nc .........OK - Moving dynf012.tile5.nc .........OK - Moving dynf012.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/MOM.res_1.nc .........OK - Moving RESTART/MOM.res_2.nc .........OK - Moving RESTART/MOM.res_3.nc .........OK - Moving RESTART/iced.2016-10-03-43200.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -Test 061 cpld_control_mx025_12h PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_control_mx025_12h_prod +Checking test 066 cpld_control_mx025_12h results .... + 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 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 + 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.2016-10-03-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK +Test 066 cpld_control_mx025_12h PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_restart_mx025_prod +Checking test 067 cpld_restart_mx025 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 067 cpld_restart_mx025 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_control_c192_prod -Checking test 062 cpld_control_c192 results .... -Moving baseline 062 cpld_control_c192 files .... - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2016-10-04-00000.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 062 cpld_control_c192 PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_control_c192_prod +Checking test 068 cpld_control_c192 results .... + 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 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 + 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_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_control_c384_prod -Checking test 063 cpld_control_c384 results .... -Moving baseline 063 cpld_control_c384 files .... - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/MOM.res_1.nc .........OK - Moving RESTART/MOM.res_2.nc .........OK - Moving RESTART/MOM.res_3.nc .........OK - Moving RESTART/iced.2016-10-04-00000.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 063 cpld_control_c384 PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_control_c384_prod +Checking test 069 cpld_control_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 069 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_controlfrac_c384_prod -Checking test 064 cpld_controlfrac_c384 results .... -Moving baseline 064 cpld_controlfrac_c384 files .... - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/MOM.res_1.nc .........OK - Moving RESTART/MOM.res_2.nc .........OK - Moving RESTART/MOM.res_3.nc .........OK - Moving RESTART/iced.2016-10-04-00000.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 064 cpld_controlfrac_c384 PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_controlfrac_c384_prod +Checking test 070 cpld_controlfrac_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 070 cpld_controlfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_bmark_prod -Checking test 065 cpld_bmark results .... -Moving baseline 065 cpld_bmark files .... - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/MOM.res_1.nc .........OK - Moving RESTART/MOM.res_2.nc .........OK - Moving RESTART/MOM.res_3.nc .........OK - Moving RESTART/iced.2013-04-02-00000.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 065 cpld_bmark PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_bmark_prod +Checking test 071 cpld_bmark results .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 071 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_bmark_wave_prod -Checking test 066 cpld_bmark_wave results .... -Moving baseline 066 cpld_bmark_wave files .... - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving 20130402.000000.out_grd.gwes_30m .........OK - Moving 20130402.000000.out_pnt.points .........OK - Moving 20130402.000000.restart.gwes_30m .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/MOM.res_1.nc .........OK - Moving RESTART/MOM.res_2.nc .........OK - Moving RESTART/MOM.res_3.nc .........OK - Moving RESTART/iced.2013-04-02-00000.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 066 cpld_bmark_wave PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_bmark_wave_prod +Checking test 072 cpld_bmark_wave results .... + 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 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 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........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/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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 072 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/cpld_debug_prod -Checking test 067 cpld_debug results .... -Moving baseline 067 cpld_debug files .... - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2016-10-03-21600.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 067 cpld_debug PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_debug_prod +Checking test 073 cpld_debug results .... + 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 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 + 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 073 cpld_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/datm_control_cfsr +Checking test 074 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 074 datm_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/datm_control_cfsr -Checking test 068 datm_control_cfsr results .... -Moving baseline 068 datm_control_cfsr files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2011-10-02-00000.nc .........OK - Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 068 datm_control_cfsr PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/datm_restart_cfsr +Checking test 075 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 075 datm_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/datm_control_gefs -Checking test 069 datm_control_gefs results .... -Moving baseline 069 datm_control_gefs files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2011-10-02-00000.nc .........OK - Moving RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 069 datm_control_gefs PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/datm_control_gefs +Checking test 076 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 076 datm_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/datm_bulk_cfsr -Checking test 070 datm_bulk_cfsr results .... -Moving baseline 070 datm_bulk_cfsr files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2011-10-02-00000.nc .........OK - Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 070 datm_bulk_cfsr PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/datm_bulk_cfsr +Checking test 077 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 077 datm_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/datm_bulk_gefs -Checking test 071 datm_bulk_gefs results .... -Moving baseline 071 datm_bulk_gefs files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2011-10-02-00000.nc .........OK - Moving RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 071 datm_bulk_gefs PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/datm_bulk_gefs +Checking test 078 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 078 datm_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/datm_mx025_cfsr -Checking test 072 datm_mx025_cfsr results .... -Moving baseline 072 datm_mx025_cfsr files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/MOM.res_1.nc .........OK - Moving RESTART/MOM.res_2.nc .........OK - Moving RESTART/MOM.res_3.nc .........OK - Moving RESTART/iced.2011-10-02-00000.nc .........OK - Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 072 datm_mx025_cfsr PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/datm_mx025_cfsr +Checking test 079 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 079 datm_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/datm_mx025_gefs -Checking test 073 datm_mx025_gefs results .... -Moving baseline 073 datm_mx025_gefs files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/MOM.res_1.nc .........OK - Moving RESTART/MOM.res_2.nc .........OK - Moving RESTART/MOM.res_3.nc .........OK - Moving RESTART/iced.2011-10-02-00000.nc .........OK - Moving RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 073 datm_mx025_gefs PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/datm_mx025_gefs +Checking test 080 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 080 datm_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113848/datm_debug_cfsr -Checking test 074 datm_debug_cfsr results .... -Moving baseline 074 datm_debug_cfsr files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2011-10-01-21600.nc .........OK - Moving RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 074 datm_debug_cfsr PASS +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/datm_debug_cfsr +Checking test 081 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 081 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 17 04:24:48 UTC 2020 -Elapsed time: 01h:51m:39s. Have a nice day! +Fri Dec 18 20:06:56 UTC 2020 +Elapsed time: 02h:48m:00s. Have a nice day! From 1c7d2a1cc164da81463c55f2adbad4d7c731ac3a Mon Sep 17 00:00:00 2001 From: RatkoVasic-NOAA <37597874+RatkoVasic-NOAA@users.noreply.github.com> Date: Tue, 22 Dec 2020 18:03:47 -0500 Subject: [PATCH 047/109] Replace old regional SDF with FV3_GFS_v15_thompson_mynn (#333) * Replace old FV3_GFS_2017_gfdlmp_regional SDF for regional tests with FV3_GFS_v15_thompson_mynn. * Final path to IC's and new results. Also, input.nml updated. * Update RegressionTests_wcoss_dell_p3.log * Update RegressionTests_wcoss_cray.log * Update RegressionTests_hera.intel.log * Update RegressionTests_jet.intel.log * Update RegressionTests_orion.intel.log * Update RegressionTests_cheyenne* logs. * Update RegressionTests_hera.gnu.log --- tests/RegressionTests_cheyenne.gnu.log | 94 +-- tests/RegressionTests_cheyenne.intel.log | 246 +++---- tests/RegressionTests_hera.gnu.log | 94 +-- tests/RegressionTests_hera.intel.log | 627 +++++++++--------- tests/RegressionTests_jet.intel.log | 305 ++++----- tests/RegressionTests_orion.intel.log | 593 ++++++++--------- tests/RegressionTests_wcoss_cray.log | 232 ++++--- tests/RegressionTests_wcoss_dell_p3.log | 567 ++++++++-------- tests/parm/ccpp_regional.nml.IN | 95 +-- tests/rt.conf | 12 +- tests/rt.sh | 6 +- tests/tests/fv3_ccpp_regional_control | 3 +- tests/tests/fv3_ccpp_regional_quilt | 3 +- .../fv3_ccpp_regional_quilt_netcdf_parallel | 4 +- tests/tests/fv3_ccpp_regional_restart | 3 +- 15 files changed, 1430 insertions(+), 1454 deletions(-) diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index a97a900786..c953d7b798 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Fri Dec 18 08:38:09 MST 2020 +Tue Dec 22 09:25:35 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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-20201217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_41564/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_46573/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 -Fri Dec 18 08:55:30 MST 2020 -Elapsed time: 00h:17m:21s. Have a nice day! +Tue Dec 22 09:42:54 MST 2020 +Elapsed time: 00h:17m:19s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 9b92814095..3587949070 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Fri Dec 18 08:38:31 MST 2020 +Tue Dec 22 08:18:19 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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-20201217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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-20201217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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-20201217/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_restart_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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-20201217/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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-20201217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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-20201217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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-20201217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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 ............ALT CHECK......OK + Comparing phyf024.nc .........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 @@ -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-20201217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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-20201217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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-20201217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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-20201217/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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-20201217/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -882,8 +882,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1024,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,8 +1080,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1147,8 +1147,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1158,8 +1158,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1167,8 +1167,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1178,19 +1178,19 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 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 dynf024.nc .........OK + Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1239,8 +1239,8 @@ Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1335,8 +1335,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1383,8 +1383,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1431,8 +1431,8 @@ Checking test 029 fv3_ccpp_csawmg results .... Test 029 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,8 +1479,8 @@ Checking test 030 fv3_ccpp_satmedmf results .... Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1527,8 +1527,8 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1575,8 +1575,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,8 +1681,8 @@ Checking test 034 fv3_ccpp_cpt results .... Test 034 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 035 fv3_ccpp_gsd results .... Test 035 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson results .... Test 036 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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 @@ -2045,8 +2045,8 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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 @@ -2125,8 +2125,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Test 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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 @@ -2175,8 +2175,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_restart results .... Test 041 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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 @@ -2243,8 +2243,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_stochy results .... Test 042 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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 @@ -2311,8 +2311,8 @@ Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/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 @@ -2379,8 +2379,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gocart_clm_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gocart_clm_prod Checking test 045 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2427,8 +2427,8 @@ Checking test 045 fv3_ccpp_gocart_clm results .... Test 045 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfs_v16beta_flake_prod Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2495,8 +2495,8 @@ Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... Test 046 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2563,8 +2563,8 @@ Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2581,8 +2581,8 @@ Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfs_v16beta_debug_prod Checking test 049 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2649,8 +2649,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_debug results .... Test 049 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2717,8 +2717,8 @@ Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2785,8 +2785,8 @@ Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gsd_debug_prod Checking test 052 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2853,8 +2853,8 @@ Checking test 052 fv3_ccpp_gsd_debug results .... Test 052 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gsd_diag3d_debug_prod Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2921,8 +2921,8 @@ Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Test 053 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_thompson_debug_prod Checking test 054 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2989,8 +2989,8 @@ Checking test 054 fv3_ccpp_thompson_debug results .... Test 054 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_thompson_no_aero_debug_prod Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3057,8 +3057,8 @@ Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... Test 055 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3125,8 +3125,8 @@ Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Test 056 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3193,8 +3193,8 @@ Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_6719/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3212,5 +3212,5 @@ Test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 18 09:28:55 MST 2020 -Elapsed time: 00h:50m:24s. Have a nice day! +Tue Dec 22 08:53:21 MST 2020 +Elapsed time: 00h:35m:02s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 053a5143de..037b92ba38 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Fri Dec 18 15:40:46 UTC 2020 +Tue Dec 22 18:09:25 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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-20201217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191226/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/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 -Fri Dec 18 16:11:57 UTC 2020 -Elapsed time: 00h:31m:12s. Have a nice day! +Tue Dec 22 18:50:38 UTC 2020 +Elapsed time: 00h:41m:14s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 5b578c93c1..a234a350c2 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Fri Dec 18 15:40:43 UTC 2020 +Mon Dec 21 17:41:13 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_lndp_prod Checking test 015 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_lndp results .... Test 015 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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-20201217/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1393,31 +1393,20 @@ 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-20201217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_regional_c768_prod -Checking test 028 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf003.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf003.nc .........OK -Test 028 fv3_ccpp_regional_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_control_debug_prod -Checking test 029 fv3_ccpp_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -1442,12 +1431,12 @@ Checking test 029 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 029 fv3_ccpp_control_debug PASS +Test 028 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_stretched_nest_debug_prod -Checking test 030 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -1462,12 +1451,12 @@ Checking test 030 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 030 fv3_ccpp_stretched_nest_debug PASS +Test 029 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfdlmp_prod -Checking test 031 fv3_ccpp_gfdlmp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -1510,12 +1499,12 @@ Checking test 031 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 031 fv3_ccpp_gfdlmp PASS +Test 030 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -1558,12 +1547,12 @@ Checking test 032 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 032 fv3_ccpp_gfdlmprad_gwd PASS +Test 031 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -1606,12 +1595,12 @@ Checking test 033 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 033 fv3_ccpp_gfdlmprad_noahmp PASS +Test 032 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_csawmg_prod -Checking test 034 fv3_ccpp_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -1654,12 +1643,12 @@ Checking test 034 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 034 fv3_ccpp_csawmg PASS +Test 033 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_satmedmf_prod -Checking test 035 fv3_ccpp_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -1702,12 +1691,12 @@ Checking test 035 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 035 fv3_ccpp_satmedmf PASS +Test 034 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_satmedmfq_prod -Checking test 036 fv3_ccpp_satmedmfq results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -1750,12 +1739,12 @@ Checking test 036 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 036 fv3_ccpp_satmedmfq PASS +Test 035 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfdlmp_32bit_prod -Checking test 037 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -1798,12 +1787,12 @@ Checking test 037 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 037 fv3_ccpp_gfdlmp_32bit PASS +Test 036 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -1850,12 +1839,12 @@ Checking test 038 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 038 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_cpt_prod -Checking test 039 fv3_ccpp_cpt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -1904,12 +1893,12 @@ Checking test 039 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 039 fv3_ccpp_cpt PASS +Test 038 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gsd_prod -Checking test 040 fv3_ccpp_gsd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -1996,12 +1985,12 @@ Checking test 040 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 040 fv3_ccpp_gsd PASS +Test 039 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_rap_prod -Checking test 041 fv3_ccpp_rap results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -2064,12 +2053,12 @@ Checking test 041 fv3_ccpp_rap 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_rap PASS +Test 040 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_hrrr_prod -Checking test 042 fv3_ccpp_hrrr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -2132,12 +2121,12 @@ Checking test 042 fv3_ccpp_hrrr 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_hrrr PASS +Test 041 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_thompson_prod -Checking test 043 fv3_ccpp_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -2200,12 +2189,12 @@ Checking test 043 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 043 fv3_ccpp_thompson PASS +Test 042 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_thompson_no_aero_prod -Checking test 044 fv3_ccpp_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -2268,12 +2257,12 @@ Checking test 044 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 044 fv3_ccpp_thompson_no_aero PASS +Test 043 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_rrfs_v1beta_prod -Checking test 045 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -2336,12 +2325,12 @@ Checking test 045 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 045 fv3_ccpp_rrfs_v1beta PASS +Test 044 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfs_v15p2_prod -Checking test 046 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -2404,12 +2393,12 @@ Checking test 046 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 046 fv3_ccpp_gfs_v15p2 PASS +Test 045 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfs_v16beta_prod -Checking test 047 fv3_ccpp_gfs_v16beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -2484,12 +2473,12 @@ Checking test 047 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 047 fv3_ccpp_gfs_v16beta PASS +Test 046 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 048 fv3_ccpp_gfs_v16beta_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -2534,12 +2523,12 @@ Checking test 048 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 048 fv3_ccpp_gfs_v16beta_restart PASS +Test 047 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 049 fv3_ccpp_gfs_v16beta_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -2602,12 +2591,12 @@ Checking test 049 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 049 fv3_ccpp_gfs_v16beta_stochy PASS +Test 048 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -2670,12 +2659,12 @@ Checking test 050 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 050 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -2738,12 +2727,12 @@ Checking test 051 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 051 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 050 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfsv16_csawmg_prod -Checking test 052 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -2786,12 +2775,12 @@ Checking test 052 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 052 fv3_ccpp_gfsv16_csawmg PASS +Test 051 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -2834,12 +2823,12 @@ Checking test 053 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 053 fv3_ccpp_gfsv16_csawmgt PASS +Test 052 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gocart_clm_prod -Checking test 054 fv3_ccpp_gocart_clm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -2882,12 +2871,12 @@ Checking test 054 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 054 fv3_ccpp_gocart_clm PASS +Test 053 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -2950,12 +2939,12 @@ Checking test 055 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 055 fv3_ccpp_gfs_v16beta_flake PASS +Test 054 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -3018,12 +3007,12 @@ Checking test 056 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 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -3036,12 +3025,12 @@ Checking test 057 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 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -3104,12 +3093,12 @@ Checking test 058 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 058 fv3_ccpp_gfs_v15p2_debug PASS +Test 057 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -3172,12 +3161,12 @@ Checking test 059 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 059 fv3_ccpp_gfs_v16beta_debug PASS +Test 058 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -3240,12 +3229,12 @@ Checking test 060 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 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -3308,12 +3297,12 @@ Checking test 061 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 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -3376,12 +3365,12 @@ Checking test 062 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 062 fv3_ccpp_gsd_debug PASS +Test 061 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -3444,12 +3433,12 @@ Checking test 063 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 063 fv3_ccpp_gsd_diag3d_debug PASS +Test 062 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -3512,12 +3501,12 @@ Checking test 064 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 064 fv3_ccpp_thompson_debug PASS +Test 063 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -3580,12 +3569,12 @@ Checking test 065 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 065 fv3_ccpp_thompson_no_aero_debug PASS +Test 064 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -3648,12 +3637,12 @@ Checking test 066 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 066 fv3_ccpp_rrfs_v1beta_debug PASS +Test 065 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -3716,12 +3705,12 @@ Checking test 067 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 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/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 @@ -3734,12 +3723,12 @@ Checking test 068 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 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_control_prod -Checking test 069 cpld_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_control_prod +Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3787,12 +3776,12 @@ Checking test 069 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 069 cpld_control PASS +Test 068 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_2threads_prod -Checking test 070 cpld_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_2threads_prod +Checking test 069 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3840,12 +3829,12 @@ Checking test 070 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 070 cpld_2threads PASS +Test 069 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_decomp_prod -Checking test 071 cpld_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_decomp_prod +Checking test 070 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3893,12 +3882,12 @@ Checking test 071 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 071 cpld_decomp PASS +Test 070 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_satmedmf_prod -Checking test 072 cpld_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_satmedmf_prod +Checking test 071 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3946,12 +3935,12 @@ Checking test 072 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 072 cpld_satmedmf PASS +Test 071 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_ca_prod -Checking test 073 cpld_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_ca_prod +Checking test 072 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3999,12 +3988,12 @@ Checking test 073 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 073 cpld_ca PASS +Test 072 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_control_mx025_prod -Checking test 074 cpld_control_mx025 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_control_mx025_prod +Checking test 073 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4055,12 +4044,12 @@ Checking test 074 cpld_control_mx025 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_control_mx025 PASS +Test 073 cpld_control_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_control_mx025_12h_prod -Checking test 075 cpld_control_mx025_12h results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_mx025_12h_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_control_mx025_12h_prod +Checking test 074 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4111,12 +4100,12 @@ Checking test 075 cpld_control_mx025_12h results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -Test 075 cpld_control_mx025_12h PASS +Test 074 cpld_control_mx025_12h PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_restart_mx025_prod -Checking test 076 cpld_restart_mx025 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_restart_mx025_prod +Checking test 075 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4167,12 +4156,12 @@ Checking test 076 cpld_restart_mx025 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_mx025 PASS +Test 075 cpld_restart_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_control_c192_prod -Checking test 077 cpld_control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_control_c192_prod +Checking test 076 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4220,12 +4209,12 @@ Checking test 077 cpld_control_c192 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 077 cpld_control_c192 PASS +Test 076 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_control_c384_prod -Checking test 078 cpld_control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_control_c384_prod +Checking test 077 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4276,12 +4265,12 @@ Checking test 078 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 078 cpld_control_c384 PASS +Test 077 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_controlfrac_c384_prod -Checking test 079 cpld_controlfrac_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_controlfrac_c384_prod +Checking test 078 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4332,12 +4321,12 @@ Checking test 079 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 079 cpld_controlfrac_c384 PASS +Test 078 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_bmark_prod -Checking test 080 cpld_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_bmark_prod +Checking test 079 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4388,12 +4377,12 @@ Checking test 080 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 080 cpld_bmark PASS +Test 079 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_bmark_wave_prod -Checking test 081 cpld_bmark_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_bmark_wave_prod +Checking test 080 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4447,12 +4436,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 080 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/cpld_debug_prod -Checking test 082 cpld_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_debug_prod +Checking test 081 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4500,87 +4489,87 @@ Checking test 082 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 082 cpld_debug PASS +Test 081 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/datm_control_cfsr -Checking test 083 datm_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_control_cfsr +Checking test 082 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 083 datm_control_cfsr PASS +Test 082 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/datm_restart_cfsr -Checking test 084 datm_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_restart_cfsr +Checking test 083 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 084 datm_restart_cfsr PASS +Test 083 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/datm_control_gefs -Checking test 085 datm_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_control_gefs +Checking test 084 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 085 datm_control_gefs PASS +Test 084 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/datm_bulk_cfsr -Checking test 086 datm_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_bulk_cfsr +Checking test 085 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 086 datm_bulk_cfsr PASS +Test 085 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/datm_bulk_gefs -Checking test 087 datm_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_bulk_gefs +Checking test 086 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 087 datm_bulk_gefs PASS +Test 086 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/datm_mx025_cfsr -Checking test 088 datm_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_mx025_cfsr +Checking test 087 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 088 datm_mx025_cfsr PASS +Test 087 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/datm_mx025_gefs -Checking test 089 datm_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_mx025_gefs +Checking test 088 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 089 datm_mx025_gefs PASS +Test 088 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_180549/datm_debug_cfsr -Checking test 090 datm_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_debug_cfsr +Checking test 089 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 090 datm_debug_cfsr PASS +Test 089 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 18 16:38:25 UTC 2020 -Elapsed time: 00h:57m:42s. Have a nice day! +Mon Dec 21 20:15:27 UTC 2020 +Elapsed time: 02h:34m:14s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 4dde99467f..a0eea7a9ea 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Fri Dec 18 15:32:21 GMT 2020 +Tue Dec 22 02:13:23 GMT 2020 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_control_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_decomp_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_2threads_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/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-20201217/INTEL/fv3_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_restart_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_restart_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/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-20201217/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_read_inc_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/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-20201217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/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-20201217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/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-20201217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/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 ............ALT CHECK......OK + Comparing phyf024.nc .........OK Comparing dynf000.nc .........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 @@ -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-20201217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/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-20201217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/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-20201217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/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-20201217/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_stochy_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_iau_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_lheatstrg_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_multigases_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_control_32bit_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_stretched_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,8 +1012,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_stretched_nest_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,8 +1079,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_regional_control_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1090,8 +1090,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_regional_restart_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_regional_quilt_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1110,31 +1110,20 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_c768_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_regional_c768_prod -Checking test 023 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf003.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf003.nc .........OK -Test 023 fv3_ccpp_regional_c768 PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_control_debug_prod -Checking test 024 fv3_ccpp_control_debug results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_control_debug_prod +Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1159,12 +1148,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 023 fv3_ccpp_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_stretched_nest_debug_prod -Checking test 025 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_stretched_nest_debug_prod +Checking test 024 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 @@ -1179,12 +1168,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 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gfdlmp_prod -Checking test 026 fv3_ccpp_gfdlmp results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gfdlmp_prod +Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1227,12 +1216,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 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1275,12 +1264,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 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1323,12 +1312,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 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_csawmg_prod -Checking test 029 fv3_ccpp_csawmg results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_csawmg_prod +Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1371,12 +1360,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 028 fv3_ccpp_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_satmedmf_prod -Checking test 030 fv3_ccpp_satmedmf results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_satmedmf_prod +Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1419,12 +1408,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 029 fv3_ccpp_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_satmedmfq_prod -Checking test 031 fv3_ccpp_satmedmfq results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_satmedmfq_prod +Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1467,12 +1456,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 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gfdlmp_32bit_prod -Checking test 032 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gfdlmp_32bit_prod +Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1515,12 +1504,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 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_cpt_prod -Checking test 033 fv3_ccpp_cpt results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_cpt_prod +Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1569,12 +1558,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 032 fv3_ccpp_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gsd_prod -Checking test 034 fv3_ccpp_gsd results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gsd_prod +Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1661,12 +1650,12 @@ 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 033 fv3_ccpp_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_thompson_prod -Checking test 035 fv3_ccpp_thompson results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_thompson_prod +Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1729,12 +1718,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 034 fv3_ccpp_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_thompson_no_aero_prod -Checking test 036 fv3_ccpp_thompson_no_aero results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_thompson_no_aero_prod +Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1797,12 +1786,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 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gocart_clm_prod -Checking test 037 fv3_ccpp_gocart_clm results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gocart_clm_prod +Checking test 036 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1845,12 +1834,12 @@ Checking test 037 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 037 fv3_ccpp_gocart_clm PASS +Test 036 fv3_ccpp_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1913,12 +1902,12 @@ Checking test 038 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 038 fv3_ccpp_gfs_v16beta_flake PASS +Test 037 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 038 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 @@ -1981,12 +1970,12 @@ Checking test 039 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 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 038 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -1999,12 +1988,12 @@ Checking test 040 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 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gsd_debug_prod -Checking test 041 fv3_ccpp_gsd_debug results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gsd_debug_prod +Checking test 040 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2067,12 +2056,12 @@ Checking test 041 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 041 fv3_ccpp_gsd_debug PASS +Test 040 fv3_ccpp_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 041 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2135,12 +2124,12 @@ Checking test 042 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 042 fv3_ccpp_gsd_diag3d_debug PASS +Test 041 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_thompson_debug_prod -Checking test 043 fv3_ccpp_thompson_debug results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_thompson_debug_prod +Checking test 042 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2203,12 +2192,12 @@ Checking test 043 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 043 fv3_ccpp_thompson_debug PASS +Test 042 fv3_ccpp_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 043 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 @@ -2271,12 +2260,12 @@ Checking test 044 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 044 fv3_ccpp_thompson_no_aero_debug PASS +Test 043 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 044 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2339,12 +2328,12 @@ Checking test 045 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 045 fv3_ccpp_rrfs_v1beta_debug PASS +Test 044 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 045 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 @@ -2407,12 +2396,12 @@ Checking test 046 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 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_126825/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -2425,9 +2414,9 @@ Checking test 047 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 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 18 17:50:05 GMT 2020 -Elapsed time: 02h:17m:45s. Have a nice day! +Tue Dec 22 02:45:14 GMT 2020 +Elapsed time: 00h:31m:52s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index d09b932657..c8ac498990 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Fri Dec 18 09:39:49 CST 2020 +Mon Dec 21 21:33:33 CST 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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-20201217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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-20201217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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-20201217/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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-20201217/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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-20201217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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-20201217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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-20201217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 ............ALT CHECK......OK + Comparing phyf000.nc .........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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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-20201217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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-20201217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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-20201217/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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-20201217/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,8 +883,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1055,8 +1055,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_control_32bit results .... Test 019 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1179,8 +1179,8 @@ Checking test 020 fv3_ccpp_stretched results .... Test 020 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 021 fv3_ccpp_stretched_nest results .... Test 021 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1257,8 +1257,8 @@ Checking test 022 fv3_ccpp_regional_control results .... Test 022 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 023 fv3_ccpp_regional_restart results .... Test 023 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1277,31 +1277,20 @@ Checking test 024 fv3_ccpp_regional_quilt results .... Test 024 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 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 ............ALT CHECK......OK + Comparing phyf024.nc .........OK Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_regional_c768_prod -Checking test 026 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf003.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf003.nc .........OK -Test 026 fv3_ccpp_regional_c768 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_control_debug_prod -Checking test 027 fv3_ccpp_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_control_debug_prod +Checking test 026 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1326,12 +1315,12 @@ Checking test 027 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 027 fv3_ccpp_control_debug PASS +Test 026 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_stretched_nest_debug_prod -Checking test 028 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_stretched_nest_debug_prod +Checking test 027 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 @@ -1346,12 +1335,12 @@ Checking test 028 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 028 fv3_ccpp_stretched_nest_debug PASS +Test 027 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfdlmp_prod -Checking test 029 fv3_ccpp_gfdlmp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfdlmp_prod +Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1394,12 +1383,12 @@ Checking test 029 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 029 fv3_ccpp_gfdlmp PASS +Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1442,12 +1431,12 @@ Checking test 030 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 030 fv3_ccpp_gfdlmprad_gwd PASS +Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1490,12 +1479,12 @@ Checking test 031 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 031 fv3_ccpp_gfdlmprad_noahmp PASS +Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_csawmg_prod -Checking test 032 fv3_ccpp_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_csawmg_prod +Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1538,12 +1527,12 @@ Checking test 032 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 032 fv3_ccpp_csawmg PASS +Test 031 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_satmedmf_prod -Checking test 033 fv3_ccpp_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_satmedmf_prod +Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1586,12 +1575,12 @@ Checking test 033 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 033 fv3_ccpp_satmedmf PASS +Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfdlmp_32bit_prod -Checking test 034 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -1634,12 +1623,12 @@ Checking test 034 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 034 fv3_ccpp_gfdlmp_32bit PASS +Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -1686,12 +1675,12 @@ Checking test 035 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 035 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_cpt_prod -Checking test 036 fv3_ccpp_cpt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -1740,12 +1729,12 @@ Checking test 036 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 036 fv3_ccpp_cpt PASS +Test 035 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gsd_prod -Checking test 037 fv3_ccpp_gsd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -1832,12 +1821,12 @@ Checking test 037 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 037 fv3_ccpp_gsd PASS +Test 036 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_thompson_prod -Checking test 038 fv3_ccpp_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -1900,12 +1889,12 @@ Checking test 038 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 038 fv3_ccpp_thompson PASS +Test 037 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_thompson_no_aero_prod -Checking test 039 fv3_ccpp_thompson_no_aero results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -1968,12 +1957,12 @@ Checking test 039 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 039 fv3_ccpp_thompson_no_aero PASS +Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_rrfs_v1beta_prod -Checking test 040 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_rrfs_v1beta_prod +Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2036,12 +2025,12 @@ Checking test 040 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 040 fv3_ccpp_rrfs_v1beta PASS +Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfs_v15p2_prod -Checking test 041 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfs_v15p2_prod +Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2104,12 +2093,12 @@ Checking test 041 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 041 fv3_ccpp_gfs_v15p2 PASS +Test 040 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfs_v16beta_prod -Checking test 042 fv3_ccpp_gfs_v16beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfs_v16beta_prod +Checking test 041 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2184,12 +2173,12 @@ Checking test 042 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 042 fv3_ccpp_gfs_v16beta PASS +Test 041 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 043 fv3_ccpp_gfs_v16beta_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfs_v16beta_restart_prod +Checking test 042 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2234,12 +2223,12 @@ Checking test 043 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 043 fv3_ccpp_gfs_v16beta_restart PASS +Test 042 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 044 fv3_ccpp_gfs_v16beta_stochy results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 043 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2302,12 +2291,12 @@ Checking test 044 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 044 fv3_ccpp_gfs_v16beta_stochy PASS +Test 043 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2370,12 +2359,12 @@ Checking test 045 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 045 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 046 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 045 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2438,12 +2427,12 @@ Checking test 046 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 046 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 045 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfsv16_csawmg_prod -Checking test 047 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2486,12 +2475,12 @@ Checking test 047 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 047 fv3_ccpp_gfsv16_csawmg PASS +Test 046 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2534,12 +2523,12 @@ Checking test 048 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 048 fv3_ccpp_gfsv16_csawmgt PASS +Test 047 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gocart_clm_prod -Checking test 049 fv3_ccpp_gocart_clm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -2582,12 +2571,12 @@ Checking test 049 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 049 fv3_ccpp_gocart_clm PASS +Test 048 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 050 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -2650,12 +2639,12 @@ Checking test 050 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 050 fv3_ccpp_gfs_v16beta_flake PASS +Test 049 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -2718,12 +2707,12 @@ Checking test 051 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 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -2736,12 +2725,12 @@ Checking test 052 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 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -2804,12 +2793,12 @@ Checking test 053 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 053 fv3_ccpp_gfs_v15p2_debug PASS +Test 052 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 054 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -2872,12 +2861,12 @@ Checking test 054 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 054 fv3_ccpp_gfs_v16beta_debug PASS +Test 053 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -2940,12 +2929,12 @@ Checking test 055 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 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -3008,12 +2997,12 @@ Checking test 056 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 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gsd_debug_prod -Checking test 057 fv3_ccpp_gsd_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -3076,12 +3065,12 @@ Checking test 057 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 057 fv3_ccpp_gsd_debug PASS +Test 056 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 058 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -3144,12 +3133,12 @@ Checking test 058 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 058 fv3_ccpp_gsd_diag3d_debug PASS +Test 057 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_thompson_debug_prod -Checking test 059 fv3_ccpp_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -3212,12 +3201,12 @@ Checking test 059 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 059 fv3_ccpp_thompson_debug PASS +Test 058 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 060 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -3280,12 +3269,12 @@ Checking test 060 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 060 fv3_ccpp_thompson_no_aero_debug PASS +Test 059 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 061 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -3348,12 +3337,12 @@ Checking test 061 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 061 fv3_ccpp_rrfs_v1beta_debug PASS +Test 060 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -3416,12 +3405,12 @@ Checking test 062 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 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/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 @@ -3434,12 +3423,12 @@ Checking test 063 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 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_control_prod -Checking test 064 cpld_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_control_prod +Checking test 063 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3487,12 +3476,12 @@ Checking test 064 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 064 cpld_control PASS +Test 063 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_2threads_prod -Checking test 065 cpld_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_2threads_prod +Checking test 064 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3540,12 +3529,12 @@ Checking test 065 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 065 cpld_2threads PASS +Test 064 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_decomp_prod -Checking test 066 cpld_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_decomp_prod +Checking test 065 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3593,12 +3582,12 @@ Checking test 066 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 066 cpld_decomp PASS +Test 065 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_satmedmf_prod -Checking test 067 cpld_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_satmedmf_prod +Checking test 066 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3646,12 +3635,12 @@ Checking test 067 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 067 cpld_satmedmf PASS +Test 066 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_ca_prod -Checking test 068 cpld_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_ca_prod +Checking test 067 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3699,12 +3688,12 @@ Checking test 068 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 068 cpld_ca PASS +Test 067 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_control_mx025_prod -Checking test 069 cpld_control_mx025 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_control_mx025_prod +Checking test 068 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3755,12 +3744,12 @@ Checking test 069 cpld_control_mx025 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 069 cpld_control_mx025 PASS +Test 068 cpld_control_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_control_mx025_12h_prod -Checking test 070 cpld_control_mx025_12h results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_mx025_12h_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_control_mx025_12h_prod +Checking test 069 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -3811,12 +3800,12 @@ Checking test 070 cpld_control_mx025_12h results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -Test 070 cpld_control_mx025_12h PASS +Test 069 cpld_control_mx025_12h PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_restart_mx025_prod -Checking test 071 cpld_restart_mx025 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_restart_mx025_prod +Checking test 070 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3867,12 +3856,12 @@ Checking test 071 cpld_restart_mx025 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_restart_mx025 PASS +Test 070 cpld_restart_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_control_c192_prod -Checking test 072 cpld_control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_control_c192_prod +Checking test 071 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3920,12 +3909,12 @@ Checking test 072 cpld_control_c192 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 072 cpld_control_c192 PASS +Test 071 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_control_c384_prod -Checking test 073 cpld_control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_control_c384_prod +Checking test 072 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3976,12 +3965,12 @@ Checking test 073 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 073 cpld_control_c384 PASS +Test 072 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_controlfrac_c384_prod -Checking test 074 cpld_controlfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_controlfrac_c384_prod +Checking test 073 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4032,12 +4021,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 073 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_bmark_prod -Checking test 075 cpld_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_bmark_prod +Checking test 074 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4088,12 +4077,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 074 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_bmark_wave_prod -Checking test 076 cpld_bmark_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_bmark_wave_prod +Checking test 075 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4147,12 +4136,12 @@ Checking test 076 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 076 cpld_bmark_wave PASS +Test 075 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/cpld_debug_prod -Checking test 077 cpld_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_debug_prod +Checking test 076 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4200,87 +4189,87 @@ Checking test 077 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 077 cpld_debug PASS +Test 076 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/datm_control_cfsr -Checking test 078 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/datm_control_cfsr +Checking test 077 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 078 datm_control_cfsr PASS +Test 077 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/datm_restart_cfsr -Checking test 079 datm_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/datm_restart_cfsr +Checking test 078 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 079 datm_restart_cfsr PASS +Test 078 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/datm_control_gefs -Checking test 080 datm_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/datm_control_gefs +Checking test 079 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 080 datm_control_gefs PASS +Test 079 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/datm_bulk_cfsr -Checking test 081 datm_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/datm_bulk_cfsr +Checking test 080 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 081 datm_bulk_cfsr PASS +Test 080 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/datm_bulk_gefs -Checking test 082 datm_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/datm_bulk_gefs +Checking test 081 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 082 datm_bulk_gefs PASS +Test 081 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/datm_mx025_cfsr -Checking test 083 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/datm_mx025_cfsr +Checking test 082 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 083 datm_mx025_cfsr PASS +Test 082 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/datm_mx025_gefs -Checking test 084 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/datm_mx025_gefs +Checking test 083 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 084 datm_mx025_gefs PASS +Test 083 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_417686/datm_debug_cfsr -Checking test 085 datm_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/datm_debug_cfsr +Checking test 084 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 085 datm_debug_cfsr PASS +Test 084 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 18 10:29:32 CST 2020 -Elapsed time: 00h:49m:44s. Have a nice day! +Mon Dec 21 22:22:02 CST 2020 +Elapsed time: 00h:48m:29s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 7051207315..5d9454ccf9 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,11 +1,9 @@ -Fri Dec 18 17:19:11 UTC 2020 +Mon Dec 21 17:41:16 UTC 2020 Start Regression test -Test 6 compile FAIL - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -72,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-20201217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -140,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-20201217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -208,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-20201217/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -276,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-20201217/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/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 @@ -344,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-20201217/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/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 @@ -392,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-20201217/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/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 @@ -440,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-20201217/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/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 @@ -488,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-20201217/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/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 @@ -536,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-20201217/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/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 @@ -584,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-20201217/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/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 @@ -632,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-20201217/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -700,8 +698,8 @@ 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-20201217/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -768,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -890,8 +888,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -958,8 +956,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1014,8 +1012,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1081,8 +1079,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1092,8 +1090,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1101,8 +1099,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1112,8 +1110,8 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1123,8 +1121,8 @@ Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1153,8 +1151,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1173,8 +1171,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1221,8 +1219,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1269,8 +1267,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1317,8 +1315,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1365,8 +1363,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1413,8 +1411,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1461,8 +1459,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1509,8 +1507,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,8 +1559,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1615,8 +1613,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1707,8 +1705,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1775,8 +1773,8 @@ Checking test 035 fv3_ccpp_thompson results .... Test 035 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1843,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Test 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_rrfs_v1beta_prod Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1911,8 +1909,8 @@ Checking test 037 fv3_ccpp_rrfs_v1beta results .... Test 037 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfs_v16beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfs_v16beta_prod Checking test 038 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1991,8 +1989,8 @@ Checking test 038 fv3_ccpp_gfs_v16beta results .... Test 038 fv3_ccpp_gfs_v16beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfs_v16beta_restart_prod Checking test 039 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2041,8 +2039,8 @@ Checking test 039 fv3_ccpp_gfs_v16beta_restart results .... Test 039 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 040 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2109,8 +2107,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta_stochy results .... Test 040 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2177,8 +2175,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 041 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfsv16_csawmg_prod Checking test 042 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2225,8 +2223,8 @@ Checking test 042 fv3_ccpp_gfsv16_csawmg results .... Test 042 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfsv16_csawmgt_prod Checking test 043 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2273,8 +2271,8 @@ Checking test 043 fv3_ccpp_gfsv16_csawmgt results .... Test 043 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gocart_clm_prod Checking test 044 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2321,8 +2319,8 @@ Checking test 044 fv3_ccpp_gocart_clm results .... Test 044 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfs_v16beta_flake_prod Checking test 045 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2389,8 +2387,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_flake results .... Test 045 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2457,8 +2455,8 @@ Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2475,8 +2473,8 @@ Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfs_v16beta_debug_prod Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2543,8 +2541,8 @@ Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... Test 048 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2611,8 +2609,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gsd_debug_prod Checking test 050 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2679,8 +2677,8 @@ Checking test 050 fv3_ccpp_gsd_debug results .... Test 050 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gsd_diag3d_debug_prod Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2747,8 +2745,8 @@ Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Test 051 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_thompson_debug_prod Checking test 052 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2815,8 +2813,8 @@ Checking test 052 fv3_ccpp_thompson_debug results .... Test 052 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_thompson_no_aero_debug_prod Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2883,8 +2881,8 @@ Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... Test 053 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2951,8 +2949,8 @@ Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Test 054 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3019,8 +3017,8 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_40728/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3038,5 +3036,5 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 18 19:10:42 UTC 2020 -Elapsed time: 01h:51m:32s. Have a nice day! +Mon Dec 21 18:31:15 UTC 2020 +Elapsed time: 00h:50m:00s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 5778beef74..467dc34ebb 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Fri Dec 18 17:18:58 UTC 2020 +Mon Dec 21 17:41:14 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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-20201217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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-20201217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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-20201217/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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-20201217/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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-20201217/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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-20201217/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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-20201217/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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,9 +447,9 @@ 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 phyf024.nc .........OK - Comparing dynf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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-20201217/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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-20201217/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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-20201217/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -863,8 +863,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -912,8 +912,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -986,8 +986,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -1054,8 +1054,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -1177,8 +1177,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1188,8 +1188,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1197,8 +1197,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -1219,20 +1219,9 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_regional_c768_prod -Checking test 025 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf003.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf003.nc .........OK -Test 025 fv3_ccpp_regional_c768 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_control_debug_prod -Checking test 026 fv3_ccpp_control_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -1257,12 +1246,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 025 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_stretched_nest_debug_prod -Checking test 027 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -1277,12 +1266,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 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfdlmp_prod -Checking test 028 fv3_ccpp_gfdlmp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -1325,12 +1314,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 027 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -1373,12 +1362,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 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -1421,12 +1410,12 @@ 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 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_csawmg_prod -Checking test 031 fv3_ccpp_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -1469,12 +1458,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 030 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_satmedmf_prod -Checking test 032 fv3_ccpp_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -1517,12 +1506,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 031 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_satmedmfq_prod -Checking test 033 fv3_ccpp_satmedmfq results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -1565,12 +1554,12 @@ Checking test 033 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 033 fv3_ccpp_satmedmfq PASS +Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfdlmp_32bit_prod -Checking test 034 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -1613,12 +1602,12 @@ Checking test 034 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 034 fv3_ccpp_gfdlmp_32bit PASS +Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -1665,12 +1654,12 @@ Checking test 035 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 035 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_cpt_prod -Checking test 036 fv3_ccpp_cpt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -1719,12 +1708,12 @@ Checking test 036 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 036 fv3_ccpp_cpt PASS +Test 035 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gsd_prod -Checking test 037 fv3_ccpp_gsd results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -1811,12 +1800,12 @@ Checking test 037 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 037 fv3_ccpp_gsd PASS +Test 036 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_thompson_prod -Checking test 038 fv3_ccpp_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -1879,12 +1868,12 @@ Checking test 038 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 038 fv3_ccpp_thompson PASS +Test 037 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_thompson_no_aero_prod -Checking test 039 fv3_ccpp_thompson_no_aero results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -1947,12 +1936,12 @@ Checking test 039 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 039 fv3_ccpp_thompson_no_aero PASS +Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_rrfs_v1beta_prod -Checking test 040 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_rrfs_v1beta_prod +Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2015,12 +2004,12 @@ Checking test 040 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 040 fv3_ccpp_rrfs_v1beta PASS +Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfs_v16beta_prod -Checking test 041 fv3_ccpp_gfs_v16beta results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -2095,12 +2084,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 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 042 fv3_ccpp_gfs_v16beta_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -2145,12 +2134,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 041 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 043 fv3_ccpp_gfs_v16beta_stochy results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -2213,12 +2202,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 042 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 043 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2281,12 +2270,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 043 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfsv16_csawmg_prod -Checking test 045 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/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 @@ -2329,12 +2318,12 @@ Checking test 045 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 045 fv3_ccpp_gfsv16_csawmg PASS +Test 044 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 045 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2377,12 +2366,12 @@ Checking test 046 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 046 fv3_ccpp_gfsv16_csawmgt PASS +Test 045 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gocart_clm_prod -Checking test 047 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gocart_clm_prod +Checking test 046 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2425,12 +2414,12 @@ Checking test 047 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 047 fv3_ccpp_gocart_clm PASS +Test 046 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 048 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 047 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2493,12 +2482,12 @@ Checking test 048 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 048 fv3_ccpp_gfs_v16beta_flake PASS +Test 047 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 048 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 @@ -2561,12 +2550,12 @@ Checking test 049 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 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 048 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2579,12 +2568,12 @@ Checking test 050 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 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 051 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 050 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2647,12 +2636,12 @@ Checking test 051 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 051 fv3_ccpp_gfs_v16beta_debug PASS +Test 050 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 051 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 @@ -2715,12 +2704,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 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gsd_debug_prod -Checking test 053 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gsd_debug_prod +Checking test 052 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2783,12 +2772,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 052 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2851,12 +2840,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 053 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_thompson_debug_prod -Checking test 055 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_thompson_debug_prod +Checking test 054 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2919,12 +2908,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 054 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 055 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 @@ -2987,12 +2976,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 055 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3055,12 +3044,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 056 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 057 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 @@ -3123,12 +3112,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 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3141,12 +3130,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 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_control_prod -Checking test 060 cpld_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_control_prod +Checking test 059 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3194,12 +3183,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 059 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_2threads_prod -Checking test 061 cpld_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_2threads_prod +Checking test 060 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3247,12 +3236,12 @@ Checking test 061 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 061 cpld_2threads PASS +Test 060 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_decomp_prod -Checking test 062 cpld_decomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_decomp_prod +Checking test 061 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3300,12 +3289,12 @@ Checking test 062 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 062 cpld_decomp PASS +Test 061 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_satmedmf_prod -Checking test 063 cpld_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_satmedmf_prod +Checking test 062 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3353,12 +3342,12 @@ Checking test 063 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 063 cpld_satmedmf PASS +Test 062 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_ca_prod -Checking test 064 cpld_ca results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_ca_prod +Checking test 063 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3406,12 +3395,12 @@ Checking test 064 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 064 cpld_ca PASS +Test 063 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_control_mx025_prod -Checking test 065 cpld_control_mx025 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_control_mx025_prod +Checking test 064 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3462,12 +3451,12 @@ Checking test 065 cpld_control_mx025 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 065 cpld_control_mx025 PASS +Test 064 cpld_control_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_control_mx025_12h_prod -Checking test 066 cpld_control_mx025_12h results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_control_mx025_12h_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_control_mx025_12h_prod +Checking test 065 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -3518,12 +3507,12 @@ Checking test 066 cpld_control_mx025_12h results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -Test 066 cpld_control_mx025_12h PASS +Test 065 cpld_control_mx025_12h PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_restart_mx025_prod -Checking test 067 cpld_restart_mx025 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_restart_mx025_prod +Checking test 066 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3574,12 +3563,12 @@ Checking test 067 cpld_restart_mx025 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 067 cpld_restart_mx025 PASS +Test 066 cpld_restart_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_control_c192_prod -Checking test 068 cpld_control_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_control_c192_prod +Checking test 067 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3627,12 +3616,12 @@ Checking test 068 cpld_control_c192 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_control_c192 PASS +Test 067 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_control_c384_prod -Checking test 069 cpld_control_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_control_c384_prod +Checking test 068 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3683,12 +3672,12 @@ Checking test 069 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 069 cpld_control_c384 PASS +Test 068 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_controlfrac_c384_prod -Checking test 070 cpld_controlfrac_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_controlfrac_c384_prod +Checking test 069 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3739,12 +3728,12 @@ Checking test 070 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 070 cpld_controlfrac_c384 PASS +Test 069 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_bmark_prod -Checking test 071 cpld_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_bmark_prod +Checking test 070 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3795,12 +3784,12 @@ Checking test 071 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 071 cpld_bmark PASS +Test 070 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_bmark_wave_prod -Checking test 072 cpld_bmark_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_bmark_wave_prod +Checking test 071 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3854,12 +3843,12 @@ Checking test 072 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 072 cpld_bmark_wave PASS +Test 071 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/cpld_debug_prod -Checking test 073 cpld_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_debug_prod +Checking test 072 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -3907,87 +3896,87 @@ Checking test 073 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 073 cpld_debug PASS +Test 072 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/datm_control_cfsr -Checking test 074 datm_control_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/datm_control_cfsr +Checking test 073 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 074 datm_control_cfsr PASS +Test 073 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/datm_restart_cfsr -Checking test 075 datm_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/datm_restart_cfsr +Checking test 074 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 075 datm_restart_cfsr PASS +Test 074 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/datm_control_gefs -Checking test 076 datm_control_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/datm_control_gefs +Checking test 075 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 076 datm_control_gefs PASS +Test 075 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/datm_bulk_cfsr -Checking test 077 datm_bulk_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/datm_bulk_cfsr +Checking test 076 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 077 datm_bulk_cfsr PASS +Test 076 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/datm_bulk_gefs -Checking test 078 datm_bulk_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/datm_bulk_gefs +Checking test 077 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 078 datm_bulk_gefs PASS +Test 077 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/datm_mx025_cfsr -Checking test 079 datm_mx025_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/datm_mx025_cfsr +Checking test 078 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 079 datm_mx025_cfsr PASS +Test 078 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/datm_mx025_gefs -Checking test 080 datm_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/datm_mx025_gefs +Checking test 079 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 080 datm_mx025_gefs PASS +Test 079 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201217/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_126077/datm_debug_cfsr -Checking test 081 datm_debug_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/datm_debug_cfsr +Checking test 080 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 081 datm_debug_cfsr PASS +Test 080 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 18 20:06:56 UTC 2020 -Elapsed time: 02h:48m:00s. Have a nice day! +Mon Dec 21 19:28:30 UTC 2020 +Elapsed time: 01h:47m:18s. Have a nice day! diff --git a/tests/parm/ccpp_regional.nml.IN b/tests/parm/ccpp_regional.nml.IN index 3f05bf0f1c..912b81df94 100644 --- a/tests/parm/ccpp_regional.nml.IN +++ b/tests/parm/ccpp_regional.nml.IN @@ -27,7 +27,7 @@ &fms_nml clock_grain = 'ROUTINE', - domains_stack_size = 2000200, + domains_stack_size = 3000000, print_memory_usage = .false. / @@ -41,22 +41,22 @@ npx = 211 npy = 193 ntiles = 1, - npz = 64 + npz = 60 !grid_type = -1 make_nh = @[MAKE_NH] fv_debug = .F. range_warn = .T. reset_eta = .F. - n_sponge = 20 - nudge_qv = .T. - tau = 3.0 - rf_cutoff = 10.e2 - d2_bg_k1 = 0.16 - d2_bg_k2 = 0.02 - kord_tm = -10 - kord_mt = 10 - kord_wz = 10 - kord_tr = 10 + n_sponge = 9 + nudge_qv = .F. + tau = 5.0 + rf_cutoff = 20.e2 + d2_bg_k1 = 0.20 + d2_bg_k2 = 0.04 + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 hydrostatic = .F. phys_hydrostatic = .F. use_hydro_pressure = .F. @@ -68,13 +68,13 @@ nwat = 6 na_init = @[NA_INIT] d_ext = 0.0 - dnats = 1 - fv_sg_adj = 450 + dnats = 0 + fv_sg_adj = 300 d2_bg = 0. nord = 2 dddmp = 0.1 - d4_bg = 0.08 - vtdm4 = 0.0 + d4_bg = 0.15 + vtdm4 = 0.075 delt_max = 0.008 ke_bg = 0. do_vort_damp = .T. @@ -86,13 +86,13 @@ ncep_ic = .F. d_con = 1.0 hord_mt = 6 - hord_vt = -5 - hord_tm = -5 - hord_dp = -5 - hord_tr = 8 + hord_vt = 6 + hord_tm = 6 + hord_dp = 6 + hord_tr = 10 adjust_dry_mass = .F. consv_te = 0. - do_sat_adj = .T. + do_sat_adj = .F. consv_am = .F. fill = .T. dwind_2d = .F. @@ -100,6 +100,7 @@ warm_start = @[WARM_START] no_dycore = .false. z_tracer = .T. + agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = "fv3_increment.nc" @@ -127,15 +128,23 @@ &gfs_physics_nml fhzero = 6. ldiag3d = .false. - fhcyc = 24. + lradar = .true. + avg_max_length = 3600. + nsradar_reset = 3600. + ldiag_ugwp = .F. + do_ugwp = .F. + do_tofd = .F. + fhcyc = 0 nst_anl = .true. use_ufo = .true. pre_rad = .false. ncld = 5 - imp_physics = 11 + imp_physics = 8 + ltaerosol = .F. + ttendlim = -999.0 pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. + fhswr = 900. + fhlwr = 900. ialb = 1 iems = 1 IAER = 111 @@ -147,12 +156,17 @@ swhtr = .true. cnvgwd = .true. shal_cnv = .true. + do_deep = .false. cal_pre = .true. redrag = .true. dspheat = .true. hybedmf = @[HYBEDMF] satmedmf = @[SATMEDMF] lheatstrg = @[LHEATSTRG] + do_mynnedmf = .T. + do_mynnsfclay = .false. + lgfdlmprad = .false. + effr_in = .T. random_clds = .true. trans_trac = .true. cnvcld = .true. @@ -184,11 +198,16 @@ iau_delthrs = 6 iaufhrs = 30 iau_inc_files = @[IAU_INC_FILES] + xkzminv = 0.3 + xkzm_m = 1.0 + xkzm_h = 1.0 do_sppt = @[DO_SPPT] do_shum = @[DO_SHUM] do_skeb = @[DO_SKEB] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] + icloud_bl = 1 + bl_mynn_tkeadvect = .true. + bl_mynn_edmf = 1 + bl_mynn_edmf_mom = 1 / &interpolator_nml @@ -196,27 +215,27 @@ / &namsfc + FNALBC2 = "C96.facsf.tileX.nc", + FNALBC = "C96.snowfree_albedo.tileX.nc", + FNTG3C = "C96.substrate_temperature.tileX.nc", + FNVEGC = "C96.vegetation_greenness.tileX.nc", + FNVETC = "C96.vegetation_type.tileX.nc", + FNSOTC = "C96.soil_type.tileX.nc", + FNVMNC = "C96.vegetation_greenness.tileX.nc", + FNVMXC = "C96.vegetation_greenness.tileX.nc", + FNSLPC = "C96.slope_type.tileX.nc", + FNABSC = "C96.maximum_snow_albedo.tileX.nc", FNGLAC = "global_glacier.2x2.grb", FNMXIC = "global_maxice.2x2.grb", FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", FNSNOC = "global_snoclim.1.875.grb", FNZORC = "igbp" - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", + FNSMCC = "global_soilmgldas.t1534.3072.1536.grb", FNMSKH = "seaice_newland.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", LDEBUG =.false., FSMCL(2) = 99999 FSMCL(3) = 99999 diff --git a/tests/rt.conf b/tests/rt.conf index 3bb33ae825..2a887be7f1 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -57,16 +57,16 @@ RUN | fv3_ccpp_control_32bit RUN | fv3_ccpp_stretched | standard | | fv3 | RUN | fv3_ccpp_stretched_nest | standard | | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | | fv3 | +COMPILE | CCPP=Y 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 | +#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 | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | standard | | fv3 | RUN | fv3_ccpp_control_debug | standard | | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index bca491af1f..9c8f5cd82f 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -423,12 +423,12 @@ 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-20201217/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201220/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201217} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201220} fi -INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20201201/} +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20201220/} shift $((OPTIND-1)) [[ $# -gt 1 ]] && usage diff --git a/tests/tests/fv3_ccpp_regional_control b/tests/tests/fv3_ccpp_regional_control index 9381131b2b..cf26234ea0 100644 --- a/tests/tests/fv3_ccpp_regional_control +++ b/tests/tests/fv3_ccpp_regional_control @@ -23,8 +23,9 @@ export FV3_RUN=ccpp_regional_run.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. +export HYBEDMF=.F. -export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_regional.nml.IN diff --git a/tests/tests/fv3_ccpp_regional_quilt b/tests/tests/fv3_ccpp_regional_quilt index bfb1d72d06..c982320d55 100644 --- a/tests/tests/fv3_ccpp_regional_quilt +++ b/tests/tests/fv3_ccpp_regional_quilt @@ -23,8 +23,9 @@ export FV3_RUN=ccpp_regional_run.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. +export HYBEDMF=.F. -export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_regional.nml.IN diff --git a/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel b/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel index 126305f6ee..f7ebcaf598 100644 --- a/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel +++ b/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel @@ -23,9 +23,9 @@ export FV3_RUN=ccpp_regional_run.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. +export HYBEDMF=.F. - -export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_regional.nml.IN diff --git a/tests/tests/fv3_ccpp_regional_restart b/tests/tests/fv3_ccpp_regional_restart index c369ded8b5..252f2d5493 100644 --- a/tests/tests/fv3_ccpp_regional_restart +++ b/tests/tests/fv3_ccpp_regional_restart @@ -22,8 +22,9 @@ export FV3_RUN=ccpp_regional_run.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. +export HYBEDMF=.F. -export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_regional.nml.IN From fba47b79fa083b8a5f7ec8a16e0d9e1fee451639 Mon Sep 17 00:00:00 2001 From: "Ali.Abdolali" <37336972+aliabdolali@users.noreply.github.com> Date: Mon, 28 Dec 2020 13:35:25 -0500 Subject: [PATCH 048/109] Feature/ww3update (#334) This updates the WW3 submodule pointer to point to the top of the WW3 develop branch. The path to WW3 inputs is changed to input-data-20201201/WW3_input_data_20201207/ --- WW3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 94 +++--- tests/RegressionTests_cheyenne.intel.log | 240 +++++++-------- tests/RegressionTests_gaea.intel.log | 305 +++++++++---------- tests/RegressionTests_hera.gnu.log | 94 +++--- tests/RegressionTests_hera.intel.log | 366 +++++++++++------------ tests/RegressionTests_jet.intel.log | 192 ++++++------ tests/RegressionTests_orion.intel.log | 344 ++++++++++----------- tests/RegressionTests_wcoss_cray.log | 234 +++++++-------- tests/RegressionTests_wcoss_dell_p3.log | 328 ++++++++++---------- tests/fv3_conf/ccpp_control_run.IN | 6 +- tests/fv3_conf/ccpp_gfdlmp_run.IN | 4 +- tests/fv3_conf/ccpp_multigases_run.IN | 6 +- tests/fv3_conf/cpld_bmark_run.IN | 6 +- tests/fv3_conf/fv3_gocart.IN | 4 +- tests/fv3_conf/fv3_run.IN | 6 +- tests/fv3_conf/gfdlmp_run.IN | 4 +- tests/fv3_conf/multigases_run.IN | 6 +- tests/rt.sh | 9 +- 19 files changed, 1121 insertions(+), 1129 deletions(-) diff --git a/WW3 b/WW3 index 9c22b13506..a89e2a6339 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 9c22b13506e797940ebab538fe4a3940dd9e3fc0 +Subproject commit a89e2a6339a016522d3a84188756d0a4bb11be87 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index c953d7b798..930d424d40 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Tue Dec 22 09:25:35 MST 2020 +Wed Dec 23 13:51:50 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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-20201220/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_46573/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_36233/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 Dec 22 09:42:54 MST 2020 -Elapsed time: 00h:17m:19s. Have a nice day! +Wed Dec 23 14:09:19 MST 2020 +Elapsed time: 00h:17m:29s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 3587949070..3583ebeee4 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Tue Dec 22 08:18:19 MST 2020 +Wed Dec 23 13:52:04 MST 2020 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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-20201220/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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-20201220/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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-20201220/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_restart_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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-20201220/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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-20201220/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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-20201220/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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-20201220/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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 .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........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 @@ -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-20201220/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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-20201220/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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-20201220/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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-20201220/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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-20201220/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -882,8 +882,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1024,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,8 +1080,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1147,8 +1147,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1158,8 +1158,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1167,8 +1167,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1178,8 +1178,8 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1189,8 +1189,8 @@ Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1239,8 +1239,8 @@ Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1335,8 +1335,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1383,8 +1383,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1431,8 +1431,8 @@ Checking test 029 fv3_ccpp_csawmg results .... Test 029 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,8 +1479,8 @@ Checking test 030 fv3_ccpp_satmedmf results .... Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1527,8 +1527,8 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1575,8 +1575,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,8 +1681,8 @@ Checking test 034 fv3_ccpp_cpt results .... Test 034 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 035 fv3_ccpp_gsd results .... Test 035 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson results .... Test 036 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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 @@ -2045,8 +2045,8 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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 @@ -2125,8 +2125,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Test 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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 @@ -2175,8 +2175,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_restart results .... Test 041 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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 @@ -2243,8 +2243,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_stochy results .... Test 042 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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 @@ -2311,8 +2311,8 @@ Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/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 @@ -2379,8 +2379,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gocart_clm_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gocart_clm_prod Checking test 045 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2427,8 +2427,8 @@ Checking test 045 fv3_ccpp_gocart_clm results .... Test 045 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfs_v16beta_flake_prod Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2495,8 +2495,8 @@ Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... Test 046 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2563,8 +2563,8 @@ Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2581,8 +2581,8 @@ Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfs_v16beta_debug_prod Checking test 049 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2649,8 +2649,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_debug results .... Test 049 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2717,8 +2717,8 @@ Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2785,8 +2785,8 @@ Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gsd_debug_prod Checking test 052 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2853,8 +2853,8 @@ Checking test 052 fv3_ccpp_gsd_debug results .... Test 052 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gsd_diag3d_debug_prod Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2921,8 +2921,8 @@ Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Test 053 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_thompson_debug_prod Checking test 054 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2989,8 +2989,8 @@ Checking test 054 fv3_ccpp_thompson_debug results .... Test 054 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_thompson_no_aero_debug_prod Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3057,8 +3057,8 @@ Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... Test 055 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3125,8 +3125,8 @@ Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Test 056 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3193,8 +3193,8 @@ Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_53038/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3212,5 +3212,5 @@ Test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 22 08:53:21 MST 2020 -Elapsed time: 00h:35m:02s. Have a nice day! +Wed Dec 23 14:27:02 MST 2020 +Elapsed time: 00h:34m:58s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 104a6f83d4..7ddde9a5bc 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Wed Dec 16 23:07:17 EST 2020 +Mon Dec 28 12:24:25 EST 2020 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/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-20201217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/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-20201217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/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-20201217/INTEL/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/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-20201217/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/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-20201217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/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-20201217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/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-20201217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/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-20201217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/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-20201217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/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-20201217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/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-20201217/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/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 = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -746,8 +746,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -820,8 +820,8 @@ Checking test 014 fv3_ccpp_multigases results .... Test 014 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_control_32bit results .... Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,8 +944,8 @@ Checking test 016 fv3_ccpp_stretched results .... Test 016 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1011,8 +1011,8 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1022,8 +1022,8 @@ Checking test 018 fv3_ccpp_regional_control results .... Test 018 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1031,8 +1031,8 @@ Checking test 019 fv3_ccpp_regional_restart results .... Test 019 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1042,31 +1042,20 @@ Checking test 020 fv3_ccpp_regional_quilt results .... Test 020 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 021 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 ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK Test 021 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_regional_c768_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_regional_c768_prod -Checking test 022 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf003.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf003.nc .........OK -Test 022 fv3_ccpp_regional_c768 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_control_debug_prod -Checking test 023 fv3_ccpp_control_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_control_debug_prod +Checking test 022 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1091,12 +1080,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 022 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_stretched_nest_debug_prod -Checking test 024 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_stretched_nest_debug_prod +Checking test 023 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 @@ -1111,12 +1100,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 023 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gfdlmp_prod -Checking test 025 fv3_ccpp_gfdlmp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gfdlmp_prod +Checking test 024 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1159,12 +1148,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 024 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1207,12 +1196,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 025 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1255,12 +1244,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 026 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_csawmg_prod -Checking test 028 fv3_ccpp_csawmg results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_csawmg_prod +Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1303,12 +1292,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 027 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_satmedmf_prod -Checking test 029 fv3_ccpp_satmedmf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_satmedmf_prod +Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1351,12 +1340,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 028 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_satmedmfq_prod -Checking test 030 fv3_ccpp_satmedmfq results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_satmedmfq_prod +Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1399,12 +1388,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 029 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gfdlmp_32bit_prod -Checking test 031 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gfdlmp_32bit_prod +Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1447,12 +1436,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 030 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_cpt_prod -Checking test 032 fv3_ccpp_cpt results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_cpt_prod +Checking test 031 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1501,12 +1490,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 031 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gsd_prod -Checking test 033 fv3_ccpp_gsd results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gsd_prod +Checking test 032 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1593,12 +1582,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 032 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_thompson_prod -Checking test 034 fv3_ccpp_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_thompson_prod +Checking test 033 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1661,12 +1650,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 033 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_thompson_no_aero_prod -Checking test 035 fv3_ccpp_thompson_no_aero results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_thompson_no_aero_prod +Checking test 034 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1729,12 +1718,12 @@ 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 034 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_rrfs_v1beta_prod -Checking test 036 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_rrfs_v1beta_prod +Checking test 035 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1797,12 +1786,12 @@ Checking test 036 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 036 fv3_ccpp_rrfs_v1beta PASS +Test 035 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gocart_clm_prod -Checking test 037 fv3_ccpp_gocart_clm results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gocart_clm_prod +Checking test 036 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1845,12 +1834,12 @@ Checking test 037 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 037 fv3_ccpp_gocart_clm PASS +Test 036 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1913,12 +1902,12 @@ Checking test 038 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 038 fv3_ccpp_gfs_v16beta_flake PASS +Test 037 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 038 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 @@ -1981,12 +1970,12 @@ Checking test 039 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 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 038 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -1999,12 +1988,12 @@ Checking test 040 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 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gsd_debug_prod -Checking test 041 fv3_ccpp_gsd_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gsd_debug_prod +Checking test 040 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2067,12 +2056,12 @@ Checking test 041 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 041 fv3_ccpp_gsd_debug PASS +Test 040 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 041 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2135,12 +2124,12 @@ Checking test 042 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 042 fv3_ccpp_gsd_diag3d_debug PASS +Test 041 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_thompson_debug_prod -Checking test 043 fv3_ccpp_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_thompson_debug_prod +Checking test 042 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2203,12 +2192,12 @@ Checking test 043 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 043 fv3_ccpp_thompson_debug PASS +Test 042 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 043 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 @@ -2271,12 +2260,12 @@ Checking test 044 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 044 fv3_ccpp_thompson_no_aero_debug PASS +Test 043 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 044 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2339,12 +2328,12 @@ Checking test 045 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 045 fv3_ccpp_rrfs_v1beta_debug PASS +Test 044 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 045 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 @@ -2407,12 +2396,12 @@ Checking test 046 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 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_44347/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -2425,9 +2414,9 @@ Checking test 047 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 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Dec 16 23:37:38 EST 2020 -Elapsed time: 00h:30m:22s. Have a nice day! +Mon Dec 28 12:59:42 EST 2020 +Elapsed time: 00h:35m:18s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 037b92ba38..fa5a55902d 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Tue Dec 22 18:09:25 UTC 2020 +Thu Dec 24 17:08:15 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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-20201220/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_244872/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/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 Dec 22 18:50:38 UTC 2020 -Elapsed time: 00h:41m:14s. Have a nice day! +Thu Dec 24 18:34:24 UTC 2020 +Elapsed time: 01h:26m:10s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index a234a350c2..80c2b5e596 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Mon Dec 21 17:41:13 UTC 2020 +Thu Dec 24 17:06:08 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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 ............ALT CHECK......OK + Comparing phyf000.nc .........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-20201220/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_lndp_prod Checking test 015 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -902,8 +902,8 @@ Checking test 015 fv3_ccpp_lndp results .... Test 015 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1393,19 +1393,19 @@ 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-20201220/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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 .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/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-20201220/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_2threads_prod Checking test 069 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3832,8 +3832,8 @@ Checking test 069 cpld_2threads results .... Test 069 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_decomp_prod Checking test 070 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3885,8 +3885,8 @@ Checking test 070 cpld_decomp results .... Test 070 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_satmedmf_prod Checking test 071 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3938,8 +3938,8 @@ Checking test 071 cpld_satmedmf results .... Test 071 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_ca_prod Checking test 072 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3991,8 +3991,8 @@ Checking test 072 cpld_ca results .... Test 072 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_control_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_control_mx025_prod Checking test 073 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4047,8 +4047,8 @@ Checking test 073 cpld_control_mx025 results .... Test 073 cpld_control_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_control_mx025_12h_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_12h_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_control_mx025_12h_prod Checking test 074 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4103,8 +4103,8 @@ Checking test 074 cpld_control_mx025_12h results .... Test 074 cpld_control_mx025_12h PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_restart_mx025_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_restart_mx025_prod Checking test 075 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4159,8 +4159,8 @@ Checking test 075 cpld_restart_mx025 results .... Test 075 cpld_restart_mx025 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_control_c192_prod Checking test 076 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4212,8 +4212,8 @@ Checking test 076 cpld_control_c192 results .... Test 076 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_control_c384_prod Checking test 077 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4268,8 +4268,8 @@ Checking test 077 cpld_control_c384 results .... Test 077 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_controlfrac_c384_prod Checking test 078 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4324,8 +4324,8 @@ Checking test 078 cpld_controlfrac_c384 results .... Test 078 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_bmark_prod Checking test 079 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4380,8 +4380,8 @@ Checking test 079 cpld_bmark results .... Test 079 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_bmark_wave_prod Checking test 080 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4439,8 +4439,8 @@ Checking test 080 cpld_bmark_wave results .... Test 080 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/cpld_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_debug_prod Checking test 081 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4492,8 +4492,8 @@ Checking test 081 cpld_debug results .... Test 081 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/datm_control_cfsr Checking test 082 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4501,8 +4501,8 @@ Checking test 082 datm_control_cfsr results .... Test 082 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/datm_restart_cfsr Checking test 083 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4510,8 +4510,8 @@ Checking test 083 datm_restart_cfsr results .... Test 083 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/datm_control_gefs Checking test 084 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4519,8 +4519,8 @@ Checking test 084 datm_control_gefs results .... Test 084 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/datm_bulk_cfsr Checking test 085 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4528,8 +4528,8 @@ Checking test 085 datm_bulk_cfsr results .... Test 085 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/datm_bulk_gefs Checking test 086 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4537,8 +4537,8 @@ Checking test 086 datm_bulk_gefs results .... Test 086 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/datm_mx025_cfsr Checking test 087 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4549,8 +4549,8 @@ Checking test 087 datm_mx025_cfsr results .... Test 087 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/datm_mx025_gefs Checking test 088 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4561,8 +4561,8 @@ Checking test 088 datm_mx025_gefs results .... Test 088 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Ratko.Vasic/FV3_RT/rt_236973/datm_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/datm_debug_cfsr Checking test 089 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -4571,5 +4571,5 @@ Test 089 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 21 20:15:27 UTC 2020 -Elapsed time: 02h:34m:14s. Have a nice day! +Thu Dec 24 17:57:01 UTC 2020 +Elapsed time: 00h:50m:54s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index a0eea7a9ea..851d60e185 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Tue Dec 22 02:13:23 GMT 2020 +Wed Dec 23 22:28:46 GMT 2020 Start Regression test -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_control_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/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 = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_decomp_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/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 = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_2threads_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/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/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_restart_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_restart_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_restart_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/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/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_read_inc_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/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/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/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/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/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/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/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 .........OK Comparing phyf024.nc .........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 @@ -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/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/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/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/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/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/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/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_stochy_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/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 = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_iau_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_lheatstrg_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_multigases_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_control_32bit_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_stretched_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,8 +1012,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_stretched_nest_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,8 +1079,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_regional_control_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1090,8 +1090,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_regional_restart_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_regional_quilt_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1121,8 +1121,8 @@ Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_control_debug_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1151,8 +1151,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1171,8 +1171,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gfdlmp_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,8 +1267,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_csawmg_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,8 +1363,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_satmedmf_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,8 +1411,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_satmedmfq_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,8 +1459,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,8 +1507,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_cpt_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,8 +1561,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gsd_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1653,8 +1653,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_thompson_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1721,8 +1721,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1789,8 +1789,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gocart_clm_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gocart_clm_prod Checking test 036 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1837,8 +1837,8 @@ Checking test 036 fv3_ccpp_gocart_clm results .... Test 036 fv3_ccpp_gocart_clm PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gfs_v16beta_flake_prod Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1905,8 +1905,8 @@ Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... Test 037 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 038 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1973,8 +1973,8 @@ Checking test 038 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 038 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1991,8 +1991,8 @@ Checking test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gsd_debug_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gsd_debug_prod Checking test 040 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2059,8 +2059,8 @@ Checking test 040 fv3_ccpp_gsd_debug results .... Test 040 fv3_ccpp_gsd_debug PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gsd_diag3d_debug_prod Checking test 041 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2127,8 +2127,8 @@ Checking test 041 fv3_ccpp_gsd_diag3d_debug results .... Test 041 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_thompson_debug_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_thompson_debug_prod Checking test 042 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2195,8 +2195,8 @@ Checking test 042 fv3_ccpp_thompson_debug results .... Test 042 fv3_ccpp_thompson_debug PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_thompson_no_aero_debug_prod Checking test 043 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2263,8 +2263,8 @@ Checking test 043 fv3_ccpp_thompson_no_aero_debug results .... Test 043 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 044 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2331,8 +2331,8 @@ Checking test 044 fv3_ccpp_rrfs_v1beta_debug results .... Test 044 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2399,8 +2399,8 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_10964/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2418,5 +2418,5 @@ Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 22 02:45:14 GMT 2020 -Elapsed time: 00h:31m:52s. Have a nice day! +Thu Dec 24 00:17:53 GMT 2020 +Elapsed time: 01h:49m:08s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index c8ac498990..1484fb4b04 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Mon Dec 21 21:33:33 CST 2020 +Mon Dec 28 08:39:51 CST 2020 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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-20201220/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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-20201220/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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-20201220/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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-20201220/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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-20201220/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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-20201220/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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-20201220/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 .........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 @@ -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-20201220/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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-20201220/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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-20201220/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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-20201220/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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-20201220/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_ca results .... Test 014 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,8 +883,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1055,8 +1055,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_control_32bit results .... Test 019 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1179,8 +1179,8 @@ Checking test 020 fv3_ccpp_stretched results .... Test 020 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 021 fv3_ccpp_stretched_nest results .... Test 021 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1257,8 +1257,8 @@ Checking test 022 fv3_ccpp_regional_control results .... Test 022 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 023 fv3_ccpp_regional_restart results .... Test 023 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1277,8 +1277,8 @@ Checking test 024 fv3_ccpp_regional_quilt results .... Test 024 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1288,8 +1288,8 @@ Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_control_debug_prod Checking test 026 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1318,8 +1318,8 @@ Checking test 026 fv3_ccpp_control_debug results .... Test 026 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_stretched_nest_debug_prod Checking test 027 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1338,8 +1338,8 @@ Checking test 027 fv3_ccpp_stretched_nest_debug results .... Test 027 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1386,8 +1386,8 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1434,8 +1434,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,8 +1482,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,8 +1530,8 @@ Checking test 031 fv3_ccpp_csawmg results .... Test 031 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,8 +1578,8 @@ Checking test 032 fv3_ccpp_satmedmf results .... Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -1626,8 +1626,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -1678,8 +1678,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,8 +1732,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1824,8 +1824,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1892,8 +1892,8 @@ Checking test 037 fv3_ccpp_thompson results .... Test 037 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -1960,8 +1960,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2028,8 +2028,8 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfs_v15p2_prod Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2096,8 +2096,8 @@ Checking test 040 fv3_ccpp_gfs_v15p2 results .... Test 040 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfs_v16beta_prod Checking test 041 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2176,8 +2176,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta results .... Test 041 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfs_v16beta_restart_prod Checking test 042 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2226,8 +2226,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_restart results .... Test 042 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 043 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2294,8 +2294,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta_stochy results .... Test 043 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2362,8 +2362,8 @@ Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2430,8 +2430,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 045 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -2478,8 +2478,8 @@ Checking test 046 fv3_ccpp_gfsv16_csawmg results .... Test 046 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -2526,8 +2526,8 @@ Checking test 047 fv3_ccpp_gfsv16_csawmgt results .... Test 047 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -2574,8 +2574,8 @@ Checking test 048 fv3_ccpp_gocart_clm results .... Test 048 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -2642,8 +2642,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_flake results .... Test 049 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -2710,8 +2710,8 @@ Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -2728,8 +2728,8 @@ Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -2796,8 +2796,8 @@ Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... Test 052 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -2864,8 +2864,8 @@ Checking test 053 fv3_ccpp_gfs_v16beta_debug results .... Test 053 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -2932,8 +2932,8 @@ Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -3000,8 +3000,8 @@ Checking test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -3068,8 +3068,8 @@ Checking test 056 fv3_ccpp_gsd_debug results .... Test 056 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -3136,8 +3136,8 @@ Checking test 057 fv3_ccpp_gsd_diag3d_debug results .... Test 057 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -3204,8 +3204,8 @@ Checking test 058 fv3_ccpp_thompson_debug results .... Test 058 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -3272,8 +3272,8 @@ Checking test 059 fv3_ccpp_thompson_no_aero_debug results .... Test 059 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -3340,8 +3340,8 @@ Checking test 060 fv3_ccpp_rrfs_v1beta_debug results .... Test 060 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -3408,8 +3408,8 @@ Checking test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/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 @@ -3426,8 +3426,8 @@ Checking test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_control_prod Checking test 063 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3479,8 +3479,8 @@ Checking test 063 cpld_control results .... Test 063 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_2threads_prod Checking test 064 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3532,8 +3532,8 @@ Checking test 064 cpld_2threads results .... Test 064 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_decomp_prod Checking test 065 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3585,8 +3585,8 @@ Checking test 065 cpld_decomp results .... Test 065 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_satmedmf_prod Checking test 066 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3638,8 +3638,8 @@ Checking test 066 cpld_satmedmf results .... Test 066 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_ca_prod Checking test 067 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3691,8 +3691,8 @@ Checking test 067 cpld_ca results .... Test 067 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_control_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_control_mx025_prod Checking test 068 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3747,8 +3747,8 @@ Checking test 068 cpld_control_mx025 results .... Test 068 cpld_control_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_control_mx025_12h_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_12h_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_control_mx025_12h_prod Checking test 069 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3803,8 +3803,8 @@ Checking test 069 cpld_control_mx025_12h results .... Test 069 cpld_control_mx025_12h PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_restart_mx025_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_restart_mx025_prod Checking test 070 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3859,8 +3859,8 @@ Checking test 070 cpld_restart_mx025 results .... Test 070 cpld_restart_mx025 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_control_c192_prod Checking test 071 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3912,8 +3912,8 @@ Checking test 071 cpld_control_c192 results .... Test 071 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_control_c384_prod Checking test 072 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3968,8 +3968,8 @@ Checking test 072 cpld_control_c384 results .... Test 072 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_controlfrac_c384_prod Checking test 073 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4024,8 +4024,8 @@ Checking test 073 cpld_controlfrac_c384 results .... Test 073 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_bmark_prod Checking test 074 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4080,8 +4080,8 @@ Checking test 074 cpld_bmark results .... Test 074 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_bmark_wave_prod Checking test 075 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4139,8 +4139,8 @@ Checking test 075 cpld_bmark_wave results .... Test 075 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/cpld_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_debug_prod Checking test 076 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4192,8 +4192,8 @@ Checking test 076 cpld_debug results .... Test 076 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/datm_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/datm_control_cfsr Checking test 077 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4201,8 +4201,8 @@ Checking test 077 datm_control_cfsr results .... Test 077 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/datm_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/datm_restart_cfsr Checking test 078 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4210,8 +4210,8 @@ Checking test 078 datm_restart_cfsr results .... Test 078 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/datm_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/datm_control_gefs Checking test 079 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4219,8 +4219,8 @@ Checking test 079 datm_control_gefs results .... Test 079 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/datm_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/datm_bulk_cfsr Checking test 080 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4228,8 +4228,8 @@ Checking test 080 datm_bulk_cfsr results .... Test 080 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/datm_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/datm_bulk_gefs Checking test 081 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4237,8 +4237,8 @@ Checking test 081 datm_bulk_gefs results .... Test 081 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/datm_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/datm_mx025_cfsr Checking test 082 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4249,8 +4249,8 @@ Checking test 082 datm_mx025_cfsr results .... Test 082 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/datm_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/datm_mx025_gefs Checking test 083 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4261,8 +4261,8 @@ Checking test 083 datm_mx025_gefs results .... Test 083 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_243233/datm_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/datm_debug_cfsr Checking test 084 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -4271,5 +4271,5 @@ Test 084 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 21 22:22:02 CST 2020 -Elapsed time: 00h:48m:29s. Have a nice day! +Mon Dec 28 09:43:15 CST 2020 +Elapsed time: 01h:03m:34s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 5d9454ccf9..f1d23327e3 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Mon Dec 21 17:41:16 UTC 2020 +Wed Dec 23 20:47:57 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/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-20201220/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/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-20201220/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/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-20201220/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/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-20201220/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/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-20201220/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/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-20201220/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/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-20201220/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/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-20201220/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/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-20201220/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/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-20201220/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/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-20201220/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,8 +1012,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,8 +1079,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1090,8 +1090,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1121,8 +1121,8 @@ Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1151,8 +1151,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1171,8 +1171,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,8 +1267,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,8 +1363,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,8 +1411,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,8 +1459,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,8 +1507,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1521,9 +1521,9 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 ............ALT CHECK......OK + Comparing GFSPRS.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 ............ALT CHECK......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 @@ -1559,8 +1559,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,8 +1613,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 035 fv3_ccpp_thompson results .... Test 035 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Test 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_rrfs_v1beta_prod Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_rrfs_v1beta results .... Test 037 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfs_v16beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfs_v16beta_prod Checking test 038 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1989,8 +1989,8 @@ Checking test 038 fv3_ccpp_gfs_v16beta results .... Test 038 fv3_ccpp_gfs_v16beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfs_v16beta_restart_prod Checking test 039 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2039,8 +2039,8 @@ Checking test 039 fv3_ccpp_gfs_v16beta_restart results .... Test 039 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 040 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,8 +2107,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta_stochy results .... Test 040 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2175,8 +2175,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 041 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfsv16_csawmg_prod Checking test 042 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2223,8 +2223,8 @@ Checking test 042 fv3_ccpp_gfsv16_csawmg results .... Test 042 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfsv16_csawmgt_prod Checking test 043 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2271,8 +2271,8 @@ Checking test 043 fv3_ccpp_gfsv16_csawmgt results .... Test 043 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gocart_clm_prod Checking test 044 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2319,8 +2319,8 @@ Checking test 044 fv3_ccpp_gocart_clm results .... Test 044 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfs_v16beta_flake_prod Checking test 045 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2387,8 +2387,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_flake results .... Test 045 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2455,8 +2455,8 @@ Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2473,8 +2473,8 @@ Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfs_v16beta_debug_prod Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2541,8 +2541,8 @@ Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... Test 048 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2609,8 +2609,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gsd_debug_prod Checking test 050 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2677,8 +2677,8 @@ Checking test 050 fv3_ccpp_gsd_debug results .... Test 050 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gsd_diag3d_debug_prod Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2745,8 +2745,8 @@ Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Test 051 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_thompson_debug_prod Checking test 052 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2813,8 +2813,8 @@ Checking test 052 fv3_ccpp_thompson_debug results .... Test 052 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_thompson_no_aero_debug_prod Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2881,8 +2881,8 @@ Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... Test 053 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2949,8 +2949,8 @@ Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Test 054 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3017,8 +3017,8 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Ratko.Vasic/FV3_RT/rt_44207/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3036,5 +3036,5 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 21 18:31:15 UTC 2020 -Elapsed time: 00h:50m:00s. Have a nice day! +Wed Dec 23 21:27:21 UTC 2020 +Elapsed time: 00h:39m:24s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 467dc34ebb..5b62a5e70b 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Mon Dec 21 17:41:14 UTC 2020 +Wed Dec 23 21:58:26 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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-20201220/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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-20201220/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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-20201220/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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-20201220/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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-20201220/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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-20201220/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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-20201220/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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 ............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 @@ -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-20201220/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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-20201220/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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-20201220/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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-20201220/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -863,8 +863,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -912,8 +912,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -986,8 +986,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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 @@ -1054,8 +1054,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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 @@ -1177,8 +1177,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1188,8 +1188,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1197,8 +1197,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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 @@ -1219,8 +1219,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1249,8 +1249,8 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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 @@ -1269,8 +1269,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1317,8 +1317,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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 @@ -1365,8 +1365,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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 @@ -1413,8 +1413,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1461,8 +1461,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1509,8 +1509,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1557,8 +1557,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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 @@ -1605,8 +1605,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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 @@ -1657,8 +1657,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1711,8 +1711,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1803,8 +1803,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1871,8 +1871,8 @@ Checking test 037 fv3_ccpp_thompson results .... Test 037 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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 @@ -1939,8 +1939,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2007,8 +2007,8 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfs_v16beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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 @@ -2087,8 +2087,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Test 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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 @@ -2137,8 +2137,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_restart results .... Test 041 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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 @@ -2205,8 +2205,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_stochy results .... Test 042 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 043 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2273,8 +2273,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 043 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/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 @@ -2321,8 +2321,8 @@ Checking test 044 fv3_ccpp_gfsv16_csawmg results .... Test 044 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfsv16_csawmgt_prod Checking test 045 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2369,8 +2369,8 @@ Checking test 045 fv3_ccpp_gfsv16_csawmgt results .... Test 045 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gocart_clm_prod Checking test 046 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2417,8 +2417,8 @@ Checking test 046 fv3_ccpp_gocart_clm results .... Test 046 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfs_v16beta_flake_prod Checking test 047 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2485,8 +2485,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_flake results .... Test 047 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2553,8 +2553,8 @@ Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 048 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2571,8 +2571,8 @@ Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfs_v16beta_debug_prod Checking test 050 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2639,8 +2639,8 @@ Checking test 050 fv3_ccpp_gfs_v16beta_debug results .... Test 050 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2707,8 +2707,8 @@ Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gsd_debug_prod Checking test 052 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2775,8 +2775,8 @@ Checking test 052 fv3_ccpp_gsd_debug results .... Test 052 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gsd_diag3d_debug_prod Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2843,8 +2843,8 @@ Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Test 053 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_thompson_debug_prod Checking test 054 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2911,8 +2911,8 @@ Checking test 054 fv3_ccpp_thompson_debug results .... Test 054 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_thompson_no_aero_debug_prod Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2979,8 +2979,8 @@ Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... Test 055 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3047,8 +3047,8 @@ Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Test 056 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3115,8 +3115,8 @@ Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3133,8 +3133,8 @@ Checking test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_control_prod Checking test 059 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3186,8 +3186,8 @@ Checking test 059 cpld_control results .... Test 059 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_2threads_prod Checking test 060 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3239,8 +3239,8 @@ Checking test 060 cpld_2threads results .... Test 060 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_decomp_prod Checking test 061 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3292,8 +3292,8 @@ Checking test 061 cpld_decomp results .... Test 061 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_satmedmf_prod Checking test 062 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3345,8 +3345,8 @@ Checking test 062 cpld_satmedmf results .... Test 062 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_ca_prod Checking test 063 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3398,8 +3398,8 @@ Checking test 063 cpld_ca results .... Test 063 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_control_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_control_mx025_prod Checking test 064 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3454,8 +3454,8 @@ Checking test 064 cpld_control_mx025 results .... Test 064 cpld_control_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_control_mx025_12h_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_mx025_12h_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_control_mx025_12h_prod Checking test 065 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3510,8 +3510,8 @@ Checking test 065 cpld_control_mx025_12h results .... Test 065 cpld_control_mx025_12h PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_restart_mx025_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_mx025_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_restart_mx025_prod Checking test 066 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3566,8 +3566,8 @@ Checking test 066 cpld_restart_mx025 results .... Test 066 cpld_restart_mx025 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_control_c192_prod Checking test 067 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3619,8 +3619,8 @@ Checking test 067 cpld_control_c192 results .... Test 067 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_control_c384_prod Checking test 068 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3675,8 +3675,8 @@ Checking test 068 cpld_control_c384 results .... Test 068 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_controlfrac_c384_prod Checking test 069 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3731,8 +3731,8 @@ Checking test 069 cpld_controlfrac_c384 results .... Test 069 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_bmark_prod Checking test 070 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3787,8 +3787,8 @@ Checking test 070 cpld_bmark results .... Test 070 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_bmark_wave_prod Checking test 071 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3846,8 +3846,8 @@ Checking test 071 cpld_bmark_wave results .... Test 071 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_debug_prod Checking test 072 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3899,8 +3899,8 @@ Checking test 072 cpld_debug results .... Test 072 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/datm_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/datm_control_cfsr Checking test 073 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3908,8 +3908,8 @@ Checking test 073 datm_control_cfsr results .... Test 073 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/datm_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/datm_restart_cfsr Checking test 074 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3917,8 +3917,8 @@ Checking test 074 datm_restart_cfsr results .... Test 074 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/datm_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/datm_control_gefs Checking test 075 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3926,8 +3926,8 @@ Checking test 075 datm_control_gefs results .... Test 075 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/datm_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/datm_bulk_cfsr Checking test 076 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3935,8 +3935,8 @@ Checking test 076 datm_bulk_cfsr results .... Test 076 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/datm_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/datm_bulk_gefs Checking test 077 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3944,8 +3944,8 @@ Checking test 077 datm_bulk_gefs results .... Test 077 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/datm_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/datm_mx025_cfsr Checking test 078 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3956,8 +3956,8 @@ Checking test 078 datm_mx025_cfsr results .... Test 078 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/datm_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/datm_mx025_gefs Checking test 079 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3968,8 +3968,8 @@ Checking test 079 datm_mx025_gefs results .... Test 079 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201220/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Ratko.Vasic/FV3_RT/rt_134208/datm_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/datm_debug_cfsr Checking test 080 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -3978,5 +3978,5 @@ Test 080 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 21 19:28:30 UTC 2020 -Elapsed time: 01h:47m:18s. Have a nice day! +Wed Dec 23 23:33:31 UTC 2020 +Elapsed time: 01h:35m:07s. Have a nice day! diff --git a/tests/fv3_conf/ccpp_control_run.IN b/tests/fv3_conf/ccpp_control_run.IN index 73e03d1bde..2674844a89 100644 --- a/tests/fv3_conf/ccpp_control_run.IN +++ b/tests/fv3_conf/ccpp_control_run.IN @@ -52,7 +52,7 @@ cp @[INPUTDATA_ROOT]/${inputdir}/*_table . cp @[INPUTDATA_ROOT]/${inputdir}/*configure . if [ $CPLWAV = .T. ]; then -cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . +cp @[INPUTDATA_ROOT_WW3]/mod_def.* . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . fi diff --git a/tests/fv3_conf/ccpp_gfdlmp_run.IN b/tests/fv3_conf/ccpp_gfdlmp_run.IN index f0ace7e854..b1ac9a1e49 100644 --- a/tests/fv3_conf/ccpp_gfdlmp_run.IN +++ b/tests/fv3_conf/ccpp_gfdlmp_run.IN @@ -37,6 +37,6 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . if [ $CPLWAV = .T. ]; then -cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT_WW3]/mod_def.* . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . fi diff --git a/tests/fv3_conf/ccpp_multigases_run.IN b/tests/fv3_conf/ccpp_multigases_run.IN index 4f85cffe62..183649bfc9 100644 --- a/tests/fv3_conf/ccpp_multigases_run.IN +++ b/tests/fv3_conf/ccpp_multigases_run.IN @@ -26,7 +26,7 @@ cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_multi_gases diag_table cp @[INPUTDATA_ROOT]/${inputdir}/field_table_multi_gases field_table if [ $CPLWAV = .T. ]; then -cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . +cp @[INPUTDATA_ROOT_WW3]/mod_def.* . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . fi diff --git a/tests/fv3_conf/cpld_bmark_run.IN b/tests/fv3_conf/cpld_bmark_run.IN index 1e790bdbb2..0a423e40fb 100644 --- a/tests/fv3_conf/cpld_bmark_run.IN +++ b/tests/fv3_conf/cpld_bmark_run.IN @@ -43,12 +43,12 @@ cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . # WW3 fix/input if [[ $CPLWAV == .T. && $CPLWAV2ATM == .T. ]]; then - cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . + cp @[INPUTDATA_ROOT_WW3]/mod_def.* . if [[ $RT35D == .T. ]]; then - cp @[INPUTDATA_ROOT]/WW3_input_data/ww3_multi_35d.inp ww3_multi.inp + cp @[INPUTDATA_ROOT_WW3]/ww3_multi_35d.inp ww3_multi.inp cp @[INPUTDATA_ROOT]/${WW3_IC}/*.000000.restart.gwes_30m ./restart.gwes_30m else - cp @[INPUTDATA_ROOT]/WW3_input_data/ww3_multi.inp . + cp @[INPUTDATA_ROOT_WW3]/ww3_multi.inp . fi fi diff --git a/tests/fv3_conf/fv3_gocart.IN b/tests/fv3_conf/fv3_gocart.IN index 0560dd2350..400266ce59 100644 --- a/tests/fv3_conf/fv3_gocart.IN +++ b/tests/fv3_conf/fv3_gocart.IN @@ -30,6 +30,6 @@ cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3 cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat if [ $CPLWAV = .T. ]; then -cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT_WW3]/mod_def.* . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . fi diff --git a/tests/fv3_conf/fv3_run.IN b/tests/fv3_conf/fv3_run.IN index 18d390d7a0..98c6e41d29 100644 --- a/tests/fv3_conf/fv3_run.IN +++ b/tests/fv3_conf/fv3_run.IN @@ -52,7 +52,7 @@ cp @[INPUTDATA_ROOT]/${inputdir}/*_table . cp @[INPUTDATA_ROOT]/${inputdir}/*configure . if [ $CPLWAV = .T. ]; then -cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . +cp @[INPUTDATA_ROOT_WW3]/mod_def.* . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . fi diff --git a/tests/fv3_conf/gfdlmp_run.IN b/tests/fv3_conf/gfdlmp_run.IN index 9e499066f9..fc31ec0208 100644 --- a/tests/fv3_conf/gfdlmp_run.IN +++ b/tests/fv3_conf/gfdlmp_run.IN @@ -36,6 +36,6 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . if [ $CPLWAV = .T. ]; then -cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT_WW3]/mod_def.* . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . fi diff --git a/tests/fv3_conf/multigases_run.IN b/tests/fv3_conf/multigases_run.IN index 4f85cffe62..183649bfc9 100644 --- a/tests/fv3_conf/multigases_run.IN +++ b/tests/fv3_conf/multigases_run.IN @@ -26,7 +26,7 @@ cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_multi_gases diag_table cp @[INPUTDATA_ROOT]/${inputdir}/field_table_multi_gases field_table if [ $CPLWAV = .T. ]; then -cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . +cp @[INPUTDATA_ROOT_WW3]/mod_def.* . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . fi diff --git a/tests/rt.sh b/tests/rt.sh index 9c8f5cd82f..0a18d7c630 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -239,7 +239,7 @@ elif [[ $MACHINE_ID = hera.* ]]; then QUEUE=batch COMPILE_QUEUE=batch -# ACCNR=fv3-cpu + #ACCNR=fv3-cpu PARTITION= dprefix=/scratch1/NCEPDEV DISKNM=$dprefix/nems/emc.nemspara/RT @@ -423,12 +423,13 @@ 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-20201220/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201223/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201220} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201223} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20201220/} +INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20201220/ shift $((OPTIND-1)) [[ $# -gt 1 ]] && usage @@ -507,6 +508,7 @@ if [[ $ROCOTO == true ]]; then + ]> @@ -680,6 +682,7 @@ EOF export RT_COMPILER=${RT_COMPILER} export RTPWD=${RTPWD} export INPUTDATA_ROOT=${INPUTDATA_ROOT} + export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export NEW_BASELINE=${NEW_BASELINE} From cfe6ed2565e0c51d192de3fb0ba7f79721ab96c9 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Tue, 29 Dec 2020 08:34:53 -0700 Subject: [PATCH 049/109] Remove IPD (step 1) (#331) Make CCPP=Y the default in tests/compile.sh. Remove CCPP=Y from tests/rt*.conf and adjust formatting. Update submodule pointer for MOM6 to include PR #341 ("Update MOM6 to GFDL's 20201218 commit") Add modulefiles/wcoss_cray/fv3_debug (identical to modulefiles/wcoss_cray/fv3) Fix broken utest (see #348) --- FV3 | 2 +- MOM6-interface/MOM6 | 2 +- modulefiles/wcoss_cray/fv3_debug | 77 +++ tests/RegressionTests_cheyenne.gnu.log | 50 +- tests/RegressionTests_cheyenne.intel.log | 126 ++--- tests/RegressionTests_gaea.intel.log | 98 ++-- tests/RegressionTests_hera.gnu.log | 50 +- tests/RegressionTests_hera.intel.log | 186 +++---- tests/RegressionTests_jet.intel.log | 204 ++++---- tests/RegressionTests_orion.intel.log | 176 +++---- tests/RegressionTests_wcoss_cray.log | 118 ++--- tests/RegressionTests_wcoss_dell_p3.log | 170 +++---- tests/UnitTests_hera.gnu.log | 464 ++++++++++++++++++ tests/UnitTests_hera.intel.log | 126 +++-- tests/compile.sh | 64 ++- tests/rt.conf | 458 ++++++++--------- tests/rt.sh | 4 +- tests/rt_35d.conf | 4 +- tests/rt_acorn.conf | 104 ++-- tests/rt_ccpp_dev.conf | 68 +-- tests/rt_gnu.conf | 78 +-- tests/rt_stampede.conf | 12 +- tests/tests/fv3_ccpp_regional_quilt | 2 + .../fv3_ccpp_regional_quilt_netcdf_parallel | 2 + tests/utest | 3 + 25 files changed, 1593 insertions(+), 1055 deletions(-) create mode 100644 modulefiles/wcoss_cray/fv3_debug create mode 100644 tests/UnitTests_hera.gnu.log diff --git a/FV3 b/FV3 index 377c7e5df0..846d257301 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 377c7e5df0d82fd5fb173a4e84b7a7cdda65acc0 +Subproject commit 846d257301df00611d5f3b7b9c76199f1cf080b9 diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 18bf38869e..593aecb3be 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 18bf38869eb10b17c442e1384f613b194e07fb26 +Subproject commit 593aecb3be159eca651b727ff3caea2754169118 diff --git a/modulefiles/wcoss_cray/fv3_debug b/modulefiles/wcoss_cray/fv3_debug new file mode 100644 index 0000000000..2610523416 --- /dev/null +++ b/modulefiles/wcoss_cray/fv3_debug @@ -0,0 +1,77 @@ +#%Module###################################################################### +## +## NEMS FV3 Prerequisites: Surge and Luna (WCOSS Cray) + +proc ModulesHelp {} { + puts stderr "\tcit - loads modules required for building and running FV3 under NEMS on the Cray side of WCOSS" +} + +module-whatis "loads NEMS FV3 prerequisites on Surge and Luna" + +# NOTE: the "module purge" and loading of the module command are +# handled by the module-setup.sh (or .csh) script. + +## +## load programming environment +## this typically includes compiler, MPI and job scheduler +## +module load PrgEnv-intel +module rm intel +module load intel/18.1.163 +module rm NetCDF-intel-sandybridge/4.2 +module load xt-lsfhpc/9.1.3 +module load craype-haswell +module load python/3.6.3 +module load cmake/3.16.2 +module load gcc/5.3.0 +# +module use /usrx/local/dev/modulefiles +module load NetCDF-intel-sandybridge/4.7.4 +module load HDF5-parallel-intel-sandybridge/1.10.6 + +## WCOSS cray for WW3 +module load jasper-gnu-sandybridge/1.900.1 +module load png-intel-sandybridge/1.2.49 +module load zlib-intel-sandybridge/1.2.7 +setenv PNG_ROOT /usrx/local/prod//png/1.2.49/intel/sandybridge + +## +## NCEP libraries +## +module use /usrx/local/nceplibs/NCEPLIBS/cmake/install/NCEPLIBS-v1.3.0/modules +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 gfsio/1.4.1 +module load sfcio/1.4.1 +module load sigio/2.3.2 + +module load upp/10.0.0 + +## WCOSS Cray execution prereqs: +module load rca +module load alps +module load xpmem +module load gni-headers +module load udreg +module load ugni + +module use /gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/modulefiles +module load esmf/8.1.0bs27 + +module swap pmi pmi/5.0.11 + +## +## load cmake +## +setenv CMAKE_C_COMPILER cc +setenv CMAKE_CXX_COMPILER CC +setenv CMAKE_Fortran_COMPILER ftn +setenv CMAKE_Platform wcoss_cray diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 930d424d40..8aa42d4b3d 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Wed Dec 23 13:51:50 MST 2020 +Mon Dec 28 14:14:55 MST 2020 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/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 Dec 23 14:09:19 MST 2020 -Elapsed time: 00h:17m:29s. Have a nice day! +Mon Dec 28 14:37:08 MST 2020 +Elapsed time: 00h:22m:14s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 3583ebeee4..8ba36372a4 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Wed Dec 23 13:52:04 MST 2020 +Mon Dec 28 14:14:41 MST 2020 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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-20201223/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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-20201223/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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-20201223/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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 @@ -449,7 +449,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.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-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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-20201223/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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-20201223/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_iau_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,7 +883,7 @@ Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -957,7 +957,7 @@ Test 016 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1025,7 +1025,7 @@ Test 017 fv3_ccpp_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_stretched_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1081,7 +1081,7 @@ Test 018 fv3_ccpp_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,7 +1148,7 @@ Test 019 fv3_ccpp_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1159,7 +1159,7 @@ Test 020 fv3_ccpp_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1168,7 +1168,7 @@ Test 021 fv3_ccpp_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1179,18 +1179,18 @@ Test 022 fv3_ccpp_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 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 phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1220,7 +1220,7 @@ Test 024 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_stretched_nest_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1240,7 +1240,7 @@ Test 025 fv3_ccpp_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1288,7 +1288,7 @@ Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1336,7 +1336,7 @@ Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1384,7 +1384,7 @@ Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1432,7 +1432,7 @@ Test 029 fv3_ccpp_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1480,7 +1480,7 @@ Test 030 fv3_ccpp_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,7 +1528,7 @@ Test 031 fv3_ccpp_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1576,7 +1576,7 @@ Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,7 +1628,7 @@ Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_cpt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,7 +1682,7 @@ Test 034 fv3_ccpp_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 035 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 036 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 037 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,7 +1978,7 @@ Test 038 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gocart_clm_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gocart_clm_prod Checking test 045 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2428,7 +2428,7 @@ Test 045 fv3_ccpp_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfs_v16beta_flake_prod Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2496,7 +2496,7 @@ Test 046 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2564,7 +2564,7 @@ Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2582,7 +2582,7 @@ Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfs_v16beta_debug_prod Checking test 049 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2650,7 +2650,7 @@ Test 049 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2718,7 +2718,7 @@ Test 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2786,7 +2786,7 @@ Test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gsd_debug_prod Checking test 052 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2854,7 +2854,7 @@ Test 052 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gsd_diag3d_debug_prod Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2922,7 +2922,7 @@ Test 053 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_thompson_debug_prod Checking test 054 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2990,7 +2990,7 @@ Test 054 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_thompson_no_aero_debug_prod Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3058,7 +3058,7 @@ Test 055 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3126,7 +3126,7 @@ Test 056 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3194,7 +3194,7 @@ Test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_13456/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3212,5 +3212,5 @@ Test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Dec 23 14:27:02 MST 2020 -Elapsed time: 00h:34m:58s. Have a nice day! +Mon Dec 28 14:50:24 MST 2020 +Elapsed time: 00h:35m:43s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 7ddde9a5bc..cbc94acda5 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Mon Dec 28 12:24:25 EST 2020 +Mon Dec 28 16:11:10 EST 2020 Start Regression test baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/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-20201223/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_decomp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/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-20201223/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_2threads_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/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-20201223/INTEL/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_read_inc_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/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-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/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-20201223/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_stochy_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/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-20201223/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_lheatstrg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -747,7 +747,7 @@ Test 013 fv3_ccpp_lheatstrg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_multigases_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -821,7 +821,7 @@ Test 014 fv3_ccpp_multigases PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_control_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -889,7 +889,7 @@ Test 015 fv3_ccpp_control_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_stretched_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -945,7 +945,7 @@ Test 016 fv3_ccpp_stretched PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_stretched_nest_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,7 +1012,7 @@ Test 017 fv3_ccpp_stretched_nest PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_regional_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1023,7 +1023,7 @@ Test 018 fv3_ccpp_regional_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_regional_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1032,7 +1032,7 @@ Test 019 fv3_ccpp_regional_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_regional_quilt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1043,7 +1043,7 @@ Test 020 fv3_ccpp_regional_quilt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 021 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1054,7 +1054,7 @@ Test 021 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_control_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_control_debug_prod Checking test 022 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1084,7 +1084,7 @@ Test 022 fv3_ccpp_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_stretched_nest_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_stretched_nest_debug_prod Checking test 023 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1104,7 +1104,7 @@ Test 023 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gfdlmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gfdlmp_prod Checking test 024 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1152,7 +1152,7 @@ Test 024 fv3_ccpp_gfdlmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gfdlmprad_gwd_prod Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1200,7 +1200,7 @@ Test 025 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1248,7 +1248,7 @@ Test 026 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_csawmg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1296,7 +1296,7 @@ Test 027 fv3_ccpp_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_satmedmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1344,7 +1344,7 @@ Test 028 fv3_ccpp_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_satmedmfq_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1392,7 +1392,7 @@ Test 029 fv3_ccpp_satmedmfq PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1440,7 +1440,7 @@ Test 030 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_cpt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_cpt_prod Checking test 031 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1494,7 +1494,7 @@ Test 031 fv3_ccpp_cpt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gsd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gsd_prod Checking test 032 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1586,7 +1586,7 @@ Test 032 fv3_ccpp_gsd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_thompson_prod Checking test 033 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1654,7 +1654,7 @@ Test 033 fv3_ccpp_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_thompson_no_aero_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_thompson_no_aero_prod Checking test 034 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,7 +1722,7 @@ Test 034 fv3_ccpp_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_rrfs_v1beta_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_rrfs_v1beta_prod Checking test 035 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1790,7 +1790,7 @@ Test 035 fv3_ccpp_rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gocart_clm_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gocart_clm_prod Checking test 036 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1838,7 +1838,7 @@ Test 036 fv3_ccpp_gocart_clm PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gfs_v16beta_flake_prod Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1906,7 +1906,7 @@ Test 037 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 038 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1974,7 +1974,7 @@ Test 038 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1992,7 +1992,7 @@ Test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gsd_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gsd_debug_prod Checking test 040 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2060,7 +2060,7 @@ Test 040 fv3_ccpp_gsd_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gsd_diag3d_debug_prod Checking test 041 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2128,7 +2128,7 @@ Test 041 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_thompson_debug_prod Checking test 042 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2196,7 +2196,7 @@ Test 042 fv3_ccpp_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_thompson_no_aero_debug_prod Checking test 043 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2264,7 +2264,7 @@ Test 043 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 044 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2332,7 +2332,7 @@ Test 044 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2400,7 +2400,7 @@ Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_46954/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2418,5 +2418,5 @@ Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 28 12:59:42 EST 2020 -Elapsed time: 00h:35m:18s. Have a nice day! +Mon Dec 28 16:55:32 EST 2020 +Elapsed time: 00h:44m:23s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index fa5a55902d..7f11414e77 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Thu Dec 24 17:08:15 UTC 2020 +Mon Dec 28 21:22:00 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_121820/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/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 -Thu Dec 24 18:34:24 UTC 2020 -Elapsed time: 01h:26m:10s. Have a nice day! +Mon Dec 28 21:53:52 UTC 2020 +Elapsed time: 00h:31m:53s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 80c2b5e596..e7f56903d3 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Thu Dec 24 17:06:08 UTC 2020 +Mon Dec 28 23:09:56 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_lndp_prod Checking test 015 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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-20201223/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 @@ -2779,7 +2779,7 @@ Test 051 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 @@ -2827,7 +2827,7 @@ Test 052 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 @@ -2875,7 +2875,7 @@ Test 053 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 @@ -2943,7 +2943,7 @@ Test 054 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 @@ -3011,7 +3011,7 @@ Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 @@ -3029,7 +3029,7 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 @@ -3097,7 +3097,7 @@ Test 057 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 @@ -3165,7 +3165,7 @@ Test 058 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 @@ -3233,7 +3233,7 @@ Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 @@ -3301,7 +3301,7 @@ Test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 @@ -3369,7 +3369,7 @@ Test 061 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 @@ -3437,7 +3437,7 @@ Test 062 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 @@ -3505,7 +3505,7 @@ Test 063 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 @@ -3573,7 +3573,7 @@ Test 064 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 @@ -3641,7 +3641,7 @@ Test 065 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 @@ -3709,7 +3709,7 @@ Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/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 @@ -3727,7 +3727,7 @@ Test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_control_prod Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3780,7 +3780,7 @@ Test 068 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_2threads_prod Checking test 069 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3833,7 +3833,7 @@ Test 069 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_decomp_prod Checking test 070 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3886,7 +3886,7 @@ Test 070 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_satmedmf_prod Checking test 071 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3939,7 +3939,7 @@ Test 071 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_ca_prod Checking test 072 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3992,7 +3992,7 @@ Test 072 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_control_mx025_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_control_mx025_prod Checking test 073 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4048,7 +4048,7 @@ Test 073 cpld_control_mx025 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_control_mx025_12h_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_control_mx025_12h_prod Checking test 074 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4104,7 +4104,7 @@ Test 074 cpld_control_mx025_12h PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_restart_mx025_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_restart_mx025_prod Checking test 075 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4160,7 +4160,7 @@ Test 075 cpld_restart_mx025 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_control_c192_prod Checking test 076 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4213,7 +4213,7 @@ Test 076 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_control_c384_prod Checking test 077 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4269,7 +4269,7 @@ Test 077 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_controlfrac_c384_prod Checking test 078 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4325,7 +4325,7 @@ Test 078 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_bmark_prod Checking test 079 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4381,7 +4381,7 @@ Test 079 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_bmark_wave_prod Checking test 080 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4440,7 +4440,7 @@ Test 080 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_debug_prod Checking test 081 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4493,7 +4493,7 @@ Test 081 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/datm_control_cfsr Checking test 082 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4502,7 +4502,7 @@ Test 082 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/datm_restart_cfsr Checking test 083 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4511,7 +4511,7 @@ Test 083 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/datm_control_gefs Checking test 084 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4520,7 +4520,7 @@ Test 084 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/datm_bulk_cfsr Checking test 085 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4529,7 +4529,7 @@ Test 085 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/datm_bulk_gefs Checking test 086 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4538,7 +4538,7 @@ Test 086 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/datm_mx025_cfsr Checking test 087 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4550,7 +4550,7 @@ Test 087 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/datm_mx025_gefs Checking test 088 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4562,7 +4562,7 @@ Test 088 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Ali.Abdolali/FV3_RT/rt_111783/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/datm_debug_cfsr Checking test 089 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -4571,5 +4571,5 @@ Test 089 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 24 17:57:01 UTC 2020 -Elapsed time: 00h:50m:54s. Have a nice day! +Mon Dec 28 23:57:41 UTC 2020 +Elapsed time: 00h:47m:46s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 851d60e185..4337437621 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Wed Dec 23 22:28:46 GMT 2020 +Mon Dec 28 22:24:32 GMT 2020 Start Regression test -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/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 = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_decomp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/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 = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_2threads_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/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/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_restart_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/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/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_read_inc_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/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/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/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/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/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/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/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 .........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 @@ -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/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/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/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/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/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/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/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_stochy_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/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 = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_iau_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_lheatstrg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_multigases_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_control_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_stretched_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,8 +1012,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_stretched_nest_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,19 +1079,19 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_regional_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_regional_control_prod Checking test 019 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 + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.tile1_new.nc ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1_new.nc ............ALT CHECK......OK Test 019 fv3_ccpp_regional_control PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_regional_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_regional_quilt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1121,8 +1121,8 @@ Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_control_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1151,8 +1151,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1171,8 +1171,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gfdlmp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,8 +1267,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_csawmg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,8 +1363,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_satmedmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,8 +1411,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_satmedmfq_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,8 +1459,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,8 +1507,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_cpt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,8 +1561,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gsd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1653,8 +1653,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1721,8 +1721,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1789,8 +1789,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gocart_clm_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gocart_clm_prod Checking test 036 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1837,8 +1837,8 @@ Checking test 036 fv3_ccpp_gocart_clm results .... Test 036 fv3_ccpp_gocart_clm PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gfs_v16beta_flake_prod Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1905,8 +1905,8 @@ Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... Test 037 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 038 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1973,8 +1973,8 @@ Checking test 038 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 038 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1991,8 +1991,8 @@ Checking test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gsd_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gsd_debug_prod Checking test 040 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2059,8 +2059,8 @@ Checking test 040 fv3_ccpp_gsd_debug results .... Test 040 fv3_ccpp_gsd_debug PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gsd_diag3d_debug_prod Checking test 041 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2127,8 +2127,8 @@ Checking test 041 fv3_ccpp_gsd_diag3d_debug results .... Test 041 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_thompson_debug_prod Checking test 042 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2195,8 +2195,8 @@ Checking test 042 fv3_ccpp_thompson_debug results .... Test 042 fv3_ccpp_thompson_debug PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_thompson_no_aero_debug_prod Checking test 043 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2263,8 +2263,8 @@ Checking test 043 fv3_ccpp_thompson_no_aero_debug results .... Test 043 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 044 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2331,8 +2331,8 @@ Checking test 044 fv3_ccpp_rrfs_v1beta_debug results .... Test 044 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2399,8 +2399,8 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hwrfv3/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hwrfv3/Bin.Liu/RT_RUNDIRS/Bin.Liu/FV3_RT/rt_85858/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2418,5 +2418,5 @@ Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 24 00:17:53 GMT 2020 -Elapsed time: 01h:49m:08s. Have a nice day! +Tue Dec 29 01:14:40 GMT 2020 +Elapsed time: 02h:50m:12s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 1484fb4b04..ffdab13f31 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Mon Dec 28 08:39:51 CST 2020 +Mon Dec 28 15:11:46 CST 2020 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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-20201223/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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-20201223/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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-20201223/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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-20201223/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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-20201223/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_ca_prod Checking test 014 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,7 +884,7 @@ Test 015 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1056,7 +1056,7 @@ Test 018 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,7 +1124,7 @@ Test 019 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1180,7 +1180,7 @@ Test 020 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,7 +1247,7 @@ Test 021 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1258,7 +1258,7 @@ Test 022 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1267,7 +1267,7 @@ Test 023 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1278,7 +1278,7 @@ Test 024 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1289,7 +1289,7 @@ Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_control_debug_prod Checking test 026 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1319,7 +1319,7 @@ Test 026 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_stretched_nest_debug_prod Checking test 027 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1339,7 +1339,7 @@ Test 027 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1387,7 +1387,7 @@ Test 028 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1435,7 +1435,7 @@ Test 029 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1483,7 +1483,7 @@ Test 030 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1531,7 +1531,7 @@ Test 031 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,7 +1579,7 @@ Test 032 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -1627,7 +1627,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -1679,7 +1679,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1733,7 +1733,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1825,7 +1825,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1893,7 +1893,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -1961,7 +1961,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2029,7 +2029,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfs_v15p2_prod Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2097,7 +2097,7 @@ Test 040 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfs_v16beta_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfs_v16beta_prod Checking test 041 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2177,7 +2177,7 @@ Test 041 fv3_ccpp_gfs_v16beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfs_v16beta_restart_prod Checking test 042 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2227,7 +2227,7 @@ Test 042 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 043 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2295,7 +2295,7 @@ Test 043 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2363,7 +2363,7 @@ Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2431,7 +2431,7 @@ Test 045 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -2479,7 +2479,7 @@ Test 046 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -2527,7 +2527,7 @@ Test 047 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -2575,7 +2575,7 @@ Test 048 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -2643,7 +2643,7 @@ Test 049 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -2711,7 +2711,7 @@ Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -2729,7 +2729,7 @@ Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -2797,7 +2797,7 @@ Test 052 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -2865,7 +2865,7 @@ Test 053 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -2933,7 +2933,7 @@ Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -3001,7 +3001,7 @@ Test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -3069,7 +3069,7 @@ Test 056 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -3137,7 +3137,7 @@ Test 057 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -3205,7 +3205,7 @@ Test 058 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -3273,7 +3273,7 @@ Test 059 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -3341,7 +3341,7 @@ Test 060 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -3409,7 +3409,7 @@ Test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/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 @@ -3427,7 +3427,7 @@ Test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_control_prod Checking test 063 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3480,7 +3480,7 @@ Test 063 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_2threads_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_2threads_prod Checking test 064 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3533,7 +3533,7 @@ Test 064 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_decomp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_decomp_prod Checking test 065 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3586,7 +3586,7 @@ Test 065 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_satmedmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_satmedmf_prod Checking test 066 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3639,7 +3639,7 @@ Test 066 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_ca_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_ca_prod Checking test 067 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3692,7 +3692,7 @@ Test 067 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_control_mx025_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_control_mx025_prod Checking test 068 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3748,7 +3748,7 @@ Test 068 cpld_control_mx025 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_control_mx025_12h_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_control_mx025_12h_prod Checking test 069 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3804,7 +3804,7 @@ Test 069 cpld_control_mx025_12h PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_restart_mx025_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_restart_mx025_prod Checking test 070 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3860,7 +3860,7 @@ Test 070 cpld_restart_mx025 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_control_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_control_c192_prod Checking test 071 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3913,7 +3913,7 @@ Test 071 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_control_c384_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_control_c384_prod Checking test 072 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3969,7 +3969,7 @@ Test 072 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_controlfrac_c384_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_controlfrac_c384_prod Checking test 073 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4025,7 +4025,7 @@ Test 073 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_bmark_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_bmark_prod Checking test 074 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4081,7 +4081,7 @@ Test 074 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_bmark_wave_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_bmark_wave_prod Checking test 075 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4140,7 +4140,7 @@ Test 075 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/cpld_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_debug_prod Checking test 076 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4193,7 +4193,7 @@ Test 076 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/datm_control_cfsr Checking test 077 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4202,7 +4202,7 @@ Test 077 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/datm_restart_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/datm_restart_cfsr Checking test 078 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4211,7 +4211,7 @@ Test 078 datm_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/datm_control_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/datm_control_gefs Checking test 079 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4220,7 +4220,7 @@ Test 079 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/datm_bulk_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/datm_bulk_cfsr Checking test 080 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4229,7 +4229,7 @@ Test 080 datm_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/datm_bulk_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/datm_bulk_gefs Checking test 081 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4238,7 +4238,7 @@ Test 081 datm_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/datm_mx025_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/datm_mx025_cfsr Checking test 082 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4250,7 +4250,7 @@ Test 082 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/datm_mx025_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/datm_mx025_gefs Checking test 083 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4262,7 +4262,7 @@ Test 083 datm_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_349356/datm_debug_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/datm_debug_cfsr Checking test 084 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -4271,5 +4271,5 @@ Test 084 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 28 09:43:15 CST 2020 -Elapsed time: 01h:03m:34s. Have a nice day! +Mon Dec 28 16:32:17 CST 2020 +Elapsed time: 01h:20m:32s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index f1d23327e3..1d41512c0e 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Wed Dec 23 20:47:57 UTC 2020 +Tue Dec 29 03:06:52 UTC 2020 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/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-20201223/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/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-20201223/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/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-20201223/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/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-20201223/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/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-20201223/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/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-20201223/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/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-20201223/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/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-20201223/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/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-20201223/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/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-20201223/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/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-20201223/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/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-20201223/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,7 +815,7 @@ Test 014 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -889,7 +889,7 @@ Test 015 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -957,7 +957,7 @@ Test 016 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1013,7 +1013,7 @@ Test 017 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,7 +1080,7 @@ Test 018 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1091,7 +1091,7 @@ Test 019 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1100,7 +1100,7 @@ Test 020 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1111,7 +1111,7 @@ Test 021 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1122,7 +1122,7 @@ Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1152,7 +1152,7 @@ Test 023 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1172,7 +1172,7 @@ Test 024 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1220,7 +1220,7 @@ Test 025 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1268,7 +1268,7 @@ Test 026 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1316,7 +1316,7 @@ Test 027 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1364,7 +1364,7 @@ Test 028 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1412,7 +1412,7 @@ Test 029 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1460,7 +1460,7 @@ Test 030 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1508,7 +1508,7 @@ Test 031 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1560,7 +1560,7 @@ Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1614,7 +1614,7 @@ Test 033 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1706,7 +1706,7 @@ Test 034 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 035 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 036 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_rrfs_v1beta_prod Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 037 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfs_v16beta_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfs_v16beta_prod Checking test 038 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1990,7 +1990,7 @@ Test 038 fv3_ccpp_gfs_v16beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfs_v16beta_restart_prod Checking test 039 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2040,7 +2040,7 @@ Test 039 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 040 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2108,7 +2108,7 @@ Test 040 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2176,7 +2176,7 @@ Test 041 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfsv16_csawmg_prod Checking test 042 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2224,7 +2224,7 @@ Test 042 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfsv16_csawmgt_prod Checking test 043 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2272,7 +2272,7 @@ Test 043 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gocart_clm_prod Checking test 044 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2320,7 +2320,7 @@ Test 044 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfs_v16beta_flake_prod Checking test 045 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2388,7 +2388,7 @@ Test 045 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2456,7 +2456,7 @@ Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2474,7 +2474,7 @@ Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfs_v16beta_debug_prod Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2542,7 +2542,7 @@ Test 048 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2610,7 +2610,7 @@ Test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gsd_debug_prod Checking test 050 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2678,7 +2678,7 @@ Test 050 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gsd_diag3d_debug_prod Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2746,7 +2746,7 @@ Test 051 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_thompson_debug_prod Checking test 052 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2814,7 +2814,7 @@ Test 052 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_thompson_no_aero_debug_prod Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2882,7 +2882,7 @@ Test 053 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2950,7 +2950,7 @@ Test 054 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3018,7 +3018,7 @@ Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_31442/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3036,5 +3036,5 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Dec 23 21:27:21 UTC 2020 -Elapsed time: 00h:39m:24s. Have a nice day! +Tue Dec 29 03:46:10 UTC 2020 +Elapsed time: 00h:39m:18s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 5b62a5e70b..aa2d976549 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Wed Dec 23 21:58:26 UTC 2020 +Mon Dec 28 19:33:47 UTC 2020 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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-20201223/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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-20201223/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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-20201223/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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-20201223/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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-20201223/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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-20201223/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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-20201223/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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,10 +447,10 @@ 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 ............ALT CHECK......OK + Comparing phyf000.nc .........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-20201223/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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-20201223/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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-20201223/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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-20201223/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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-20201223/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,7 +815,7 @@ Test 014 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -864,7 +864,7 @@ Test 015 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -913,7 +913,7 @@ Test 016 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -987,7 +987,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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 @@ -1055,7 +1055,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1111,7 +1111,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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 @@ -1178,7 +1178,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1189,7 +1189,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1198,7 +1198,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1209,7 +1209,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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 @@ -1220,7 +1220,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1250,7 +1250,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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 @@ -1270,7 +1270,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1318,7 +1318,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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 @@ -1366,7 +1366,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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 @@ -1414,7 +1414,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1462,7 +1462,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1510,7 +1510,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1558,7 +1558,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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 @@ -1606,7 +1606,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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 @@ -1658,7 +1658,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1712,7 +1712,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1804,7 +1804,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1872,7 +1872,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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 @@ -1940,7 +1940,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2008,7 +2008,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfs_v16beta_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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 @@ -2088,7 +2088,7 @@ Test 040 fv3_ccpp_gfs_v16beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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 @@ -2138,7 +2138,7 @@ Test 041 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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 @@ -2206,7 +2206,7 @@ Test 042 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 043 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,7 +2274,7 @@ Test 043 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/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 @@ -2322,7 +2322,7 @@ Test 044 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfsv16_csawmgt_prod Checking test 045 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2370,7 +2370,7 @@ Test 045 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gocart_clm_prod Checking test 046 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2418,7 +2418,7 @@ Test 046 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfs_v16beta_flake_prod Checking test 047 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2486,7 +2486,7 @@ Test 047 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2554,7 +2554,7 @@ Test 048 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2572,7 +2572,7 @@ Test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfs_v16beta_debug_prod Checking test 050 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2640,7 +2640,7 @@ Test 050 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2708,7 +2708,7 @@ Test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gsd_debug_prod Checking test 052 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2776,7 +2776,7 @@ Test 052 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gsd_diag3d_debug_prod Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2844,7 +2844,7 @@ Test 053 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_thompson_debug_prod Checking test 054 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2912,7 +2912,7 @@ Test 054 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_thompson_no_aero_debug_prod Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2980,7 +2980,7 @@ Test 055 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3048,7 +3048,7 @@ Test 056 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3116,7 +3116,7 @@ Test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3134,7 +3134,7 @@ Test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_control_prod Checking test 059 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3187,7 +3187,7 @@ Test 059 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_2threads_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_2threads_prod Checking test 060 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3240,7 +3240,7 @@ Test 060 cpld_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_decomp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_decomp_prod Checking test 061 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3293,7 +3293,7 @@ Test 061 cpld_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_satmedmf_prod Checking test 062 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3346,7 +3346,7 @@ Test 062 cpld_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_ca_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_ca_prod Checking test 063 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3399,7 +3399,7 @@ Test 063 cpld_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_control_mx025_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_control_mx025_prod Checking test 064 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3455,7 +3455,7 @@ Test 064 cpld_control_mx025 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_control_mx025_12h_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_control_mx025_12h_prod Checking test 065 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3511,7 +3511,7 @@ Test 065 cpld_control_mx025_12h PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_restart_mx025_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_restart_mx025_prod Checking test 066 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3567,7 +3567,7 @@ Test 066 cpld_restart_mx025 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_control_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_control_c192_prod Checking test 067 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3620,7 +3620,7 @@ Test 067 cpld_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_control_c384_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_control_c384_prod Checking test 068 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3676,7 +3676,7 @@ Test 068 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_controlfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_controlfrac_c384_prod Checking test 069 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3732,7 +3732,7 @@ Test 069 cpld_controlfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_bmark_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_bmark_prod Checking test 070 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3788,7 +3788,7 @@ Test 070 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_bmark_wave_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_bmark_wave_prod Checking test 071 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3847,7 +3847,7 @@ Test 071 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/cpld_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_debug_prod Checking test 072 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3900,7 +3900,7 @@ Test 072 cpld_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/datm_control_cfsr Checking test 073 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3909,7 +3909,7 @@ Test 073 datm_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/datm_restart_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/datm_restart_cfsr Checking test 074 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3918,7 +3918,7 @@ Test 074 datm_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/datm_control_gefs Checking test 075 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3927,7 +3927,7 @@ Test 075 datm_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/datm_bulk_cfsr Checking test 076 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3936,7 +3936,7 @@ Test 076 datm_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/datm_bulk_gefs Checking test 077 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3945,7 +3945,7 @@ Test 077 datm_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/datm_mx025_cfsr Checking test 078 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3957,7 +3957,7 @@ Test 078 datm_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/datm_mx025_gefs Checking test 079 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3969,7 +3969,7 @@ Test 079 datm_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_9624/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/datm_debug_cfsr Checking test 080 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -3978,5 +3978,5 @@ Test 080 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Dec 23 23:33:31 UTC 2020 -Elapsed time: 01h:35m:07s. Have a nice day! +Mon Dec 28 21:06:52 UTC 2020 +Elapsed time: 01h:33m:08s. Have a nice day! diff --git a/tests/UnitTests_hera.gnu.log b/tests/UnitTests_hera.gnu.log new file mode 100644 index 0000000000..6e20934231 --- /dev/null +++ b/tests/UnitTests_hera.gnu.log @@ -0,0 +1,464 @@ + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_control_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_bit_base +Checking test bit_base fv3_ccpp_control results .... +Moving baseline bit_base fv3_ccpp_control files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test bit_base fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_control_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_dbg_base +Checking test dbg_base fv3_ccpp_control results .... +Moving baseline dbg_base fv3_ccpp_control files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test dbg_base fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_dcp +Checking test dcp fv3_ccpp_control 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 ............SKIP for gnu compilers + 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 dcp fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_mpi +Checking test mpi fv3_ccpp_control 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 ............SKIP for gnu compilers + 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 mpi fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_rst +Checking test rst fv3_ccpp_control results .... + 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 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 ............SKIP for gnu compilers + 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 rst fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_std_base +Checking test std_base fv3_ccpp_control results .... +Moving baseline std_base fv3_ccpp_control files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test std_base fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_thr +Checking test thr fv3_ccpp_control 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 ............SKIP for gnu compilers + 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 thr fv3_ccpp_control PASS + +UNIT TEST WAS SUCCESSFUL +Mon Dec 28 21:38:18 UTC 2020 +Elapsed time: 00h:16m:49s. Have a nice day! diff --git a/tests/UnitTests_hera.intel.log b/tests/UnitTests_hera.intel.log index 65a1bd9615..173f385d06 100644 --- a/tests/UnitTests_hera.intel.log +++ b/tests/UnitTests_hera.intel.log @@ -1,9 +1,8 @@ -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200713/INTEL/fv3_control_bit_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_269251/fv3_ccpp_control_bit_base +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_bit_base Checking test bit_base fv3_ccpp_control results .... Moving baseline bit_base fv3_ccpp_control files .... - mkdir -p /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_bit_base/RESTART Moving atmos_4xdaily.tile1.nc .........OK Moving atmos_4xdaily.tile2.nc .........OK Moving atmos_4xdaily.tile3.nc .........OK @@ -69,11 +68,10 @@ Moving baseline bit_base fv3_ccpp_control files .... Test bit_base fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200713/INTEL/fv3_control_dbg_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_269251/fv3_ccpp_control_dbg_base +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_dbg_base Checking test dbg_base fv3_ccpp_control results .... Moving baseline dbg_base fv3_ccpp_control files .... - mkdir -p /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_dbg_base/RESTART Moving atmos_4xdaily.tile1.nc .........OK Moving atmos_4xdaily.tile2.nc .........OK Moving atmos_4xdaily.tile3.nc .........OK @@ -139,8 +137,8 @@ Moving baseline dbg_base fv3_ccpp_control files .... Test dbg_base fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_269251/fv3_ccpp_control_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_dcp Checking test dcp fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,8 +205,8 @@ Checking test dcp fv3_ccpp_control results .... Test dcp fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_269251/fv3_ccpp_control_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_mpi Checking test mpi fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -275,61 +273,60 @@ Checking test mpi fv3_ccpp_control results .... Test mpi fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_269251/fv3_ccpp_control_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_rst Checking test rst fv3_ccpp_control results .... - Comparing phyf024.tile1.nc ............NOT OK - Comparing phyf024.tile2.nc ............NOT OK - Comparing phyf024.tile3.nc ............NOT OK - Comparing phyf024.tile4.nc ............NOT OK - Comparing phyf024.tile5.nc ............NOT OK - Comparing phyf024.tile6.nc ............NOT OK - Comparing dynf024.tile1.nc ............NOT OK - Comparing dynf024.tile2.nc ............NOT OK - Comparing dynf024.tile3.nc ............NOT OK - Comparing dynf024.tile4.nc ............NOT OK - Comparing dynf024.tile5.nc ............NOT OK - Comparing dynf024.tile6.nc ............NOT 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 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 ............NOT OK - Comparing RESTART/fv_core.res.tile2.nc ............NOT OK - Comparing RESTART/fv_core.res.tile3.nc ............NOT OK - Comparing RESTART/fv_core.res.tile4.nc ............NOT OK - Comparing RESTART/fv_core.res.tile5.nc ............NOT OK - Comparing RESTART/fv_core.res.tile6.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile1.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile2.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile3.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile4.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile5.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile6.nc ............NOT OK - Comparing RESTART/phy_data.tile1.nc ............NOT OK - Comparing RESTART/phy_data.tile2.nc ............NOT OK - Comparing RESTART/phy_data.tile3.nc ............NOT OK - Comparing RESTART/phy_data.tile4.nc ............NOT OK - Comparing RESTART/phy_data.tile5.nc ............NOT OK - Comparing RESTART/phy_data.tile6.nc ............NOT OK - Comparing RESTART/sfc_data.tile1.nc ............NOT OK - Comparing RESTART/sfc_data.tile2.nc ............NOT OK - Comparing RESTART/sfc_data.tile3.nc ............NOT OK - Comparing RESTART/sfc_data.tile4.nc ............NOT OK - Comparing RESTART/sfc_data.tile5.nc ............NOT OK - Comparing RESTART/sfc_data.tile6.nc ............NOT OK -Test rst fv3_ccpp_control FAIL + 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 rst fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200713/INTEL/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_269251/fv3_ccpp_control_std_base +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_std_base Checking test std_base fv3_ccpp_control results .... Moving baseline std_base fv3_ccpp_control files .... - mkdir -p /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std_base/RESTART Moving atmos_4xdaily.tile1.nc .........OK Moving atmos_4xdaily.tile2.nc .........OK Moving atmos_4xdaily.tile3.nc .........OK @@ -395,8 +392,8 @@ Moving baseline std_base fv3_ccpp_control files .... Test std_base fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_269251/fv3_ccpp_control_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_thr Checking test thr fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -462,9 +459,6 @@ Checking test thr fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile6.nc .........OK Test thr fv3_ccpp_control PASS -FAILED TESTS: -Test rst fv3_ccpp_control failed -Test rst fv3_ccpp_control failed -UNIT TEST FAILED -Tue Sep 8 20:50:57 UTC 2020 -Elapsed time: 00h:15m:11s. Have a nice day! +UNIT TEST WAS SUCCESSFUL +Mon Dec 28 21:16:09 UTC 2020 +Elapsed time: 00h:14m:46s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index 4e77b4d6d1..839d7031ee 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -100,46 +100,42 @@ else CMAKE_FLAGS="${CMAKE_FLAGS} -DMULTI_GASES=OFF" fi -if [[ "${MAKE_OPT}" == *"CCPP=Y"* ]]; then +# FIXME - create CCPP include directory before building FMS to avoid +# gfortran warnings of non-existent include directory (adding +# -Wno-missing-include-dirs) to the GNU compiler flags does not work, +# see also https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55534); +# this line can be removed once FMS becomes a pre-installed library +mkdir -p $PATHTR/FV3/ccpp/include +# Similar for this directory, which apparently never gets populated +mkdir -p $PATHTR/FMS/fms2_io/include - # FIXME - create CCPP include directory before building FMS to avoid - # gfortran warnings of non-existent include directory (adding - # -Wno-missing-include-dirs) to the GNU compiler flags does not work, - # see also https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55534); - # this line can be removed once FMS becomes a pre-installed library - 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} -DCCPP=ON -DMPI=ON" - - if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Debug" - elif [[ "${MAKE_OPT}" == *"REPRO=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Bitforbit" - else - CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Release" - if [[ "${MACHINE_ID}" == "jet.intel" ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DSIMDMULTIARCH=ON" - fi - fi - - if [[ "${MAKE_OPT}" == *"32BIT=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DDYN32=ON" - else - CMAKE_FLAGS="${CMAKE_FLAGS} -DDYN32=OFF" +if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Debug" +elif [[ "${MAKE_OPT}" == *"REPRO=Y"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Bitforbit" +else + CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Release" + if [[ "${MACHINE_ID}" == "jet.intel" ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DSIMDMULTIARCH=ON" fi +fi - # Check if suites argument is provided or not - set +ex - TEST=$( echo $MAKE_OPT | grep -e "SUITES=" ) - if [[ $? -eq 0 ]]; then - CCPP_SUITES=$( echo $MAKE_OPT | sed 's/.* SUITES=//' | sed 's/ .*//' ) - echo "Compiling suites ${CCPP_SUITES}" - fi - set -ex +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=" ) +if [[ $? -eq 0 ]]; then + CCPP_SUITES=$( echo $MAKE_OPT | sed 's/.*SUITES=//' | sed 's/ .*//' ) + echo "Compiling suites ${CCPP_SUITES}" fi +set -ex if [[ "${MAKE_OPT}" == *"WW3=Y"* ]]; then CMAKE_FLAGS="${CMAKE_FLAGS} -DWW3=Y" diff --git a/tests/rt.conf b/tests/rt.conf index 2a887be7f1..e2c4a36598 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -2,274 +2,274 @@ # CCPP PROD tests # ####################################################################################################################################################################################### -COMPILE | CCPP=Y SUITES=FV3_GFS_2017 | standard | | fv3 | +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_iau | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_iau | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_iau | standard | hera.intel | fv3 | -RUN | fv3_ccpp_iau | standard | orion.intel | fv3 | -RUN | fv3_ccpp_iau | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_ca | standard | hera.intel | fv3 | -RUN | fv3_ccpp_ca | standard | orion.intel | fv3 | -RUN | fv3_ccpp_ca | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_lndp | standard | hera.intel | 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_iau | standard | wcoss_cray | fv3 | +RUN | fv3_ccpp_iau | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_iau | standard | hera.intel | fv3 | +RUN | fv3_ccpp_iau | standard | orion.intel | fv3 | +RUN | fv3_ccpp_iau | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_ca | standard | hera.intel | fv3 | +RUN | fv3_ccpp_ca | standard | orion.intel | fv3 | +RUN | fv3_ccpp_ca | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_lndp | standard | hera.intel | 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_iau | standard | jet.intel | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | hera.intel | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | gaea.intel | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | jet.intel | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | cheyenne.intel | fv3 | +#RUN | fv3_ccpp_iau | standard | gaea.intel | fv3 | +RUN | fv3_ccpp_iau | standard | jet.intel | fv3 | +RUN | fv3_ccpp_lheatstrg | standard | wcoss_cray | fv3 | +RUN | fv3_ccpp_lheatstrg | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_lheatstrg | standard | hera.intel | fv3 | +RUN | fv3_ccpp_lheatstrg | standard | gaea.intel | fv3 | +RUN | fv3_ccpp_lheatstrg | standard | jet.intel | fv3 | +RUN | fv3_ccpp_lheatstrg | standard | cheyenne.intel | fv3 | # WW3 not working on Cheyenne in the past, need to check if it works now -COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | hera.intel | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfdlmprad | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_atmwav | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfdlmprad_atmwav | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_atmwav | standard | orion.intel | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | hera.intel | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | orion.intel | fv3 | -#RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | wcoss_dell_p3 | fv3 | +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | wcoss_dell_p3 | fv3 | +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | hera.intel | fv3 | +COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfdlmprad | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad_atmwav | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfdlmprad_atmwav | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad_atmwav | standard | orion.intel | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | hera.intel | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | orion.intel | fv3 | +#RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y 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 | standard | | fv3 | +RUN | fv3_ccpp_multigases | standard | | fv3 | -COMPILE | CCPP=Y 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_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 | CCPP=Y 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_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 | CCPP=Y 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,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 | CCPP=Y 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_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 | CCPP=Y 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 | wcoss_cray | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | hera.intel | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | gaea.intel | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | jet.intel | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | cheyenne.intel | 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 | wcoss_cray | fv3 | +RUN | fv3_ccpp_satmedmfq | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_satmedmfq | standard | hera.intel | fv3 | +RUN | fv3_ccpp_satmedmfq | standard | gaea.intel | fv3 | +RUN | fv3_ccpp_satmedmfq | standard | jet.intel | fv3 | +RUN | fv3_ccpp_satmedmfq | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y 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 | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_cpt | standard | | fv3 | -RUN | fv3_ccpp_gsd | 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 | wcoss_cray | fv3 | +RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | cheyenne.intel | 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 | -RUN | fv3_ccpp_thompson | standard | | fv3 | -RUN | fv3_ccpp_thompson_no_aero | standard | | fv3 | +RUN | fv3_ccpp_rap | standard | hera.intel | fv3 | +RUN | fv3_ccpp_hrrr | standard | hera.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 | wcoss_cray | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | hera.intel | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | orion.intel | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | gaea.intel | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | standard | wcoss_cray | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | standard | hera.intel | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | standard | orion.intel | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_rrfs_v1beta | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | wcoss_cray | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | hera.intel | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | orion.intel | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2 | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2 | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2 | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_restart | standard | wcoss_dell_p3 | | fv3_ccpp_gfs_v16beta -RUN | fv3_ccpp_gfs_v16beta_restart | standard | wcoss_cray | | fv3_ccpp_gfs_v16beta -RUN | fv3_ccpp_gfs_v16beta_restart | standard | hera.intel | | fv3_ccpp_gfs_v16beta -RUN | fv3_ccpp_gfs_v16beta_restart | standard | orion.intel | | fv3_ccpp_gfs_v16beta -RUN | fv3_ccpp_gfs_v16beta_restart | standard | cheyenne.intel | | fv3_ccpp_gfs_v16beta -RUN | fv3_ccpp_gfs_v16beta_stochy | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfs_v16beta_stochy | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfs_v16beta_stochy | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_stochy | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_stochy | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | cheyenne.intel | fv3 | +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | wcoss_dell_p3 | fv3 | +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | wcoss_cray | fv3 | +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | hera.intel | fv3 | +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | orion.intel | fv3 | +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v15p2 | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfs_v15p2 | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfs_v15p2 | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfs_v16beta | standard | wcoss_cray | fv3 | +RUN | fv3_ccpp_gfs_v16beta | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_restart | standard | wcoss_dell_p3 | | fv3_ccpp_gfs_v16beta +RUN | fv3_ccpp_gfs_v16beta_restart | standard | wcoss_cray | | fv3_ccpp_gfs_v16beta +RUN | fv3_ccpp_gfs_v16beta_restart | standard | hera.intel | | fv3_ccpp_gfs_v16beta +RUN | fv3_ccpp_gfs_v16beta_restart | standard | orion.intel | | fv3_ccpp_gfs_v16beta +RUN | fv3_ccpp_gfs_v16beta_restart | standard | cheyenne.intel | | fv3_ccpp_gfs_v16beta +RUN | fv3_ccpp_gfs_v16beta_stochy | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfs_v16beta_stochy | standard | wcoss_cray | fv3 | +RUN | fv3_ccpp_gfs_v16beta_stochy | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_stochy | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_stochy | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | wcoss_cray | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_v16_csawmg | standard | | fv3 | +COMPILE | SUITES=FV3_GFS_v16_csawmg | standard | | 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 | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfsv16_csawmg | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfsv16_csawmg | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmg | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfsv16_csawmg | standard | wcoss_cray | fv3 | +RUN | fv3_ccpp_gfsv16_csawmg | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfsv16_csawmg | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfsv16_csawmg | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfsv16_csawmgt | standard | wcoss_cray | fv3 | +RUN | fv3_ccpp_gfsv16_csawmgt | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfsv16_csawmgt | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfsv16_csawmgt | standard | orion.intel | fv3 | -COMPILE | CCPP=Y 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 | standard | | fv3 | +RUN | fv3_ccpp_gocart_clm | standard | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_flake | standard | | fv3 | -COMPILE | CCPP=Y 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 | 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 | ####################################################################################################################################################################################### # CCPP DEBUG tests # ####################################################################################################################################################################################### # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -COMPILE | CCPP=Y DEBUG=Y | standard | wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y DEBUG=Y | standard | wcoss_cray | fv3 | -COMPILE | CCPP=Y DEBUG=Y | standard | hera.intel | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP DEBUG=Y | standard | orion.intel | fv3 | -COMPILE | CCPP=Y DEBUG=Y | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | standard | cheeyenne.intel| fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | cheyenne.intel | fv3 | +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 | fv3 | +RUN | fv3_ccpp_gfs_v15p2_debug | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfs_v15p2_debug | standard | cheeyenne.intel| fv3 | +RUN | fv3_ccpp_gfs_v16beta_debug | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfs_v16beta_debug | standard | wcoss_cray | fv3 | +RUN | fv3_ccpp_gfs_v16beta_debug | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_debug | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_debug | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | wcoss_cray | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | hera.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | orion.intel | fv3 | +RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y 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=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 | CCPP=Y 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 | 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 | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | cheyenne.intel | fv3 | -RUN | cpld_control | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | cheyenne.intel | fv3 | +RUN | cpld_control | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | # following two tests are not run on any platform -#RUN | cpld_control_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_restart | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_12h -RUN | cpld_2threads | standard | hera.intel orion.intel wcoss_dell_p3 | | -RUN | cpld_decomp | standard | hera.intel orion.intel wcoss_dell_p3 | | -RUN | cpld_satmedmf | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_ca | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_control | standard | cheyenne.intel | fv3 | -#RUN | cpld_2threads | standard | cheyenne.intel | | -#RUN | cpld_decomp | standard | cheyenne.intel | | -#RUN | cpld_satmedmf | standard | cheyenne.intel | fv3 | -#RUN | cpld_ca | standard | cheyenne.intel | fv3 | +#RUN | cpld_control_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_restart | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_12h +RUN | cpld_2threads | standard | hera.intel orion.intel wcoss_dell_p3 | | +RUN | cpld_decomp | standard | hera.intel orion.intel wcoss_dell_p3 | | +RUN | cpld_satmedmf | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_ca | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control | standard | cheyenne.intel | fv3 | +#RUN | cpld_2threads | standard | cheyenne.intel | | +#RUN | cpld_decomp | standard | cheyenne.intel | | +#RUN | cpld_satmedmf | standard | cheyenne.intel | fv3 | +#RUN | cpld_ca | standard | cheyenne.intel | fv3 | # restart test at c96mx025 -RUN | cpld_control_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_control_mx025_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_restart_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_mx025_12h -#RUN | cpld_control_mx025 | standard | cheyenne.intel | fv3 | -#RUN | cpld_control_mx025_12h | standard | cheyenne.intel | fv3 | -#RUN | cpld_restart_mx025 | standard | cheyenne.intel | | cpld_control_mx025_12h +RUN | cpld_control_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_control_mx025_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_restart_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_mx025_12h +#RUN | cpld_control_mx025 | standard | cheyenne.intel | fv3 | +#RUN | cpld_control_mx025_12h | standard | cheyenne.intel | fv3 | +#RUN | cpld_restart_mx025 | standard | cheyenne.intel | | cpld_control_mx025_12h -RUN | cpld_control_c192 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_control_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_controlfrac_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_bmark | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_control_c192 | standard | cheyenne.intel | fv3 | -#RUN | cpld_control_c384 | standard | cheyenne.intel | fv3 | -#RUN | cpld_controlfrac_c384 | standard | cheyenne.intel | fv3 | -#RUN | cpld_bmark | standard | cheyenne.intel | fv3 | +RUN | cpld_control_c192 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_control_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_controlfrac_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_bmark | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control_c192 | standard | cheyenne.intel | fv3 | +#RUN | cpld_control_c384 | standard | cheyenne.intel | fv3 | +#RUN | cpld_controlfrac_c384 | standard | cheyenne.intel | fv3 | +#RUN | cpld_bmark | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | cheyenne.intel | fv3 | -RUN | cpld_bmark_wave | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_bmark_wave | standard | cheyenne.intel | fv3 | +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | cheyenne.intel | fv3 | +RUN | cpld_bmark_wave | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_bmark_wave | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | cheyenne.intel | fv3 | -RUN | cpld_debug | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_debug | standard | cheyenne.intel | fv3 | +COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | cheyenne.intel | fv3 | +RUN | cpld_debug | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_debug | standard | cheyenne.intel | fv3 | -####################################################################################################################################################################################### -# Data Atmosphere tests -####################################################################################################################################################################################### +################################################################################################################################################################################ +# Data Atmosphere tests # +################################################################################################################################################################################ -COMPILE | DATM=Y S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#COMPILE | DATM=Y S2S=Y | standard | cheyenne.intel | fv3 | -RUN | datm_control_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | datm_restart_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | | datm_control_cfsr -RUN | datm_control_gefs | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | datm_control_cfsr | standard | cheyenne.intel | fv3 | -#RUN | datm_control_gefs | standard | cheyenne.intel | fv3 | +COMPILE | DATM=Y S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#COMPILE | DATM=Y S2S=Y | standard | cheyenne.intel | fv3 | +RUN | datm_control_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | datm_restart_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | | datm_control_cfsr +RUN | datm_control_gefs | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | datm_control_cfsr | standard | cheyenne.intel | fv3 | +#RUN | datm_control_gefs | standard | cheyenne.intel | fv3 | -RUN | datm_bulk_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | datm_bulk_gefs | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | datm_bulk_cfsr | standard | cheyenne.intel | fv3 | -#RUN | datm_bulk_gefs | standard | cheyenne.intel | fv3 | +RUN | datm_bulk_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | datm_bulk_gefs | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | datm_bulk_cfsr | standard | cheyenne.intel | fv3 | +#RUN | datm_bulk_gefs | standard | cheyenne.intel | fv3 | -RUN | datm_mx025_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | datm_mx025_gefs | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | datm_mx025_cfsr | standard | cheyenne.intel | fv3 | -#RUN | datm_mx025_gefs | standard | cheyenne.intel | fv3 | +RUN | datm_mx025_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | datm_mx025_gefs | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | datm_mx025_cfsr | standard | cheyenne.intel | fv3 | +#RUN | datm_mx025_gefs | standard | cheyenne.intel | fv3 | -COMPILE | DATM=Y S2S=Y DEBUG=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | datm_debug_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +COMPILE | DATM=Y S2S=Y DEBUG=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | datm_debug_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 0a18d7c630..6d421315b0 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -616,11 +616,11 @@ EOF fi # Set RT_SUFFIX (regression test run directories and log files) and BL_SUFFIX - # (regression test baseline directories) for REPRO (IPD, CCPP) or PROD (CCPP) runs + # (regression test baseline directories) for REPRO or PROD runs if [[ ${MAKE_OPT^^} =~ "REPRO=Y" ]]; then RT_SUFFIX="_repro" BL_SUFFIX="_repro" - elif [[ ${MAKE_OPT^^} =~ "CCPP=Y" ]]; then + else RT_SUFFIX="_prod" BL_SUFFIX="_ccpp" fi diff --git a/tests/rt_35d.conf b/tests/rt_35d.conf index 2e9ab03950..1b850ec0ee 100644 --- a/tests/rt_35d.conf +++ b/tests/rt_35d.conf @@ -1,4 +1,4 @@ -COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | | hera.intel orion.intel | fv3 | | +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 @@ -8,7 +8,7 @@ RUN | cpld_bmark_35d | | | fv3 | | 2013040100 RUN | cpld_bmark_35d | | | fv3 | | 2013070100 RUN | cpld_bmark_35d | | | fv3 | | 2013100100 -COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | | hera.intel orion.intel | fv3 | | +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 diff --git a/tests/rt_acorn.conf b/tests/rt_acorn.conf index a5df552904..05a3cab240 100644 --- a/tests/rt_acorn.conf +++ b/tests/rt_acorn.conf @@ -1,52 +1,52 @@ -####################################################################################################################################################################################### -# CCPP PROD tests # -####################################################################################################################################################################################### - -COMPILE | CCPP=Y 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 | CCPP=Y 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 | CCPP=Y 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 | CCPP=Y 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 | CCPP=Y 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 | CCPP=Y 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 | 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 | | | diff --git a/tests/rt_ccpp_dev.conf b/tests/rt_ccpp_dev.conf index 89c9eadb34..60b9724f57 100644 --- a/tests/rt_ccpp_dev.conf +++ b/tests/rt_ccpp_dev.conf @@ -2,54 +2,54 @@ # CCPP REPRO tests # ################################################################################################################################################################################# -COMPILE | CCPP=Y 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 | standard | | 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 | 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 | -COMPILE | CCPP=Y 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 | standard | | fv3 | -RUN | fv3_ccpp_gsd_mynnsfc | standard | | fv3 | -RUN | fv3_ccpp_gsd_noah_mynnsfc | standard | | fv3 | +RUN | fv3_ccpp_gsd_mynnsfc | standard | | fv3 | +RUN | fv3_ccpp_gsd_noah_mynnsfc | standard | | fv3 | -COMPILE | CCPP=Y 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 | standard | | 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 | 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 | -COMPILE | CCPP=Y 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 | 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 without suite argument for CAPS physics -COMPILE | CCPP=Y REPRO=Y | standard | | fv3 | +COMPILE | REPRO=Y | standard | | 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 | standard | | fv3 | +RUN | fv3_ccpp_ysu | standard | | fv3 | +RUN | fv3_ccpp_ntiedtke | standard | | fv3 | ################################################################################################################################################################################# # CCPP DEBUG tests # ################################################################################################################################################################################# -COMPILE | CCPP=Y 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 | standard | | 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 | 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 | -COMPILE | 32BIT=Y CCPP=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 | standard | | fv3 | # Run tests -RUN | fv3_ccpp_gsd_sar_debug | standard | | fv3 | +RUN | fv3_ccpp_gsd_sar_debug | standard | | fv3 | diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index c5c0fbf5ac..d43f649dab 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -2,68 +2,68 @@ # CCPP PROD tests # ####################################################################################################################################################################################### -COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp | standard | | fv3 | -RUN | fv3_ccpp_gfdlmp | standard | | fv3 | +COMPILE | SUITES=FV3_GFS_2017_gfdlmp | standard | | fv3 | +RUN | fv3_ccpp_gfdlmp | standard | | fv3 | -COMPILE | CCPP=Y 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 | 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_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 | 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 | -COMPILE | CCPP=Y 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 | 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 | +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 | -COMPILE | CCPP=Y 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 | 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 | ####################################################################################################################################################################################### # CCPP DEBUG tests # ####################################################################################################################################################################################### # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -COMPILE | CCPP=Y 32BIT=Y DEBUG=Y | standard | | fv3 | -RUN | fv3_ccpp_control_debug | standard | | fv3 | +COMPILE | 32BIT=Y DEBUG=Y | standard | | fv3 | +RUN | fv3_ccpp_control_debug | standard | | fv3 | -COMPILE | CCPP=Y 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 | 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 | CCPP=Y 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 | standard | | fv3 | +RUN | fv3_ccpp_multigases | standard | | fv3 | -COMPILE | CCPP=Y 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 | standard | | 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 | 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 | -COMPILE | CCPP=Y 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 | 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 | ####################################################################################################################################################################################### # S2S tests ####################################################################################################################################################################################### -COMPILE | CCPP=Y 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 | hera.gnu | fv3 | ####################################################################################################################################################################################### # Data Atmosphere tests ####################################################################################################################################################################################### -COMPILE | DATM=Y S2S=Y | standard | hera.gnu | fv3 | +COMPILE | DATM=Y S2S=Y | standard | hera.gnu | fv3 | diff --git a/tests/rt_stampede.conf b/tests/rt_stampede.conf index f2859ff45b..3af8895955 100644 --- a/tests/rt_stampede.conf +++ b/tests/rt_stampede.conf @@ -2,12 +2,12 @@ # CCPP PROD tests # ####################################################################################################################################################################################### -COMPILE | CCPP=Y SUITES=FV3_GFS_2017 | standard | | fv3 | +COMPILE | SUITES=FV3_GFS_2017 | standard | | fv3 | -RUN | fv3_ccpp_control | standard | | fv3 | +RUN | fv3_ccpp_control | standard | | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | 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 | +RUN | fv3_ccpp_gfdlmp | standard | | fv3 | +RUN | fv3_ccpp_gfdlmprad_gwd | standard | | fv3 | +RUN | fv3_ccpp_gfdlmprad_noahmp | standard | | fv3 | diff --git a/tests/tests/fv3_ccpp_regional_quilt b/tests/tests/fv3_ccpp_regional_quilt index c982320d55..ed3dba082a 100644 --- a/tests/tests/fv3_ccpp_regional_quilt +++ b/tests/tests/fv3_ccpp_regional_quilt @@ -32,3 +32,5 @@ export INPUT_NML=ccpp_regional.nml.IN export FDIAG=3 export INPES=6 export JNPES=4 + +export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel b/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel index f7ebcaf598..be5a94fd79 100644 --- a/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel +++ b/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel @@ -32,3 +32,5 @@ export INPUT_NML=ccpp_regional.nml.IN export FDIAG=3 export INPES=6 export JNPES=4 + +export WLCLK=30 diff --git a/tests/utest b/tests/utest index a84e7c93e2..a02b3ed08d 100755 --- a/tests/utest +++ b/tests/utest @@ -324,11 +324,13 @@ run_utests() { EOF ;; esac + INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20201220/ cat <<- EOF > ${RUNDIR_ROOT}/run_test${RT_SUFFIX}.env export MACHINE_ID=${MACHINE_ID} export RTPWD=${RTPWD} export INPUTDATA_ROOT=${INPUTDATA_ROOT} + export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export NEW_BASELINE=${NEW_BASELINE} @@ -728,6 +730,7 @@ else fi RTPWD=$baseline_location INPUTDATA_ROOT=$RTPWD +INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20201220/ rm -rf $NEW_BASELINE mkdir -p $NEW_BASELINE From cfe90f92ad970a594208701fb5276920c49db92f Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Wed, 30 Dec 2020 12:32:30 -0500 Subject: [PATCH 050/109] Update the format of rt.conf (#349) Update the format of MACHINES column in rt.conf (and other .conf files). This column can be either empty, which means a test will run on all supported machines, or start with - or + sign to exclude or include specified machines explicitly. --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 50 +-- tests/RegressionTests_cheyenne.intel.log | 344 +++++++++++------- tests/RegressionTests_gaea.intel.log | 104 +++--- tests/RegressionTests_hera.gnu.log | 50 +-- tests/RegressionTests_hera.intel.log | 324 ++++++++--------- tests/RegressionTests_jet.intel.log | 98 ++--- tests/RegressionTests_orion.intel.log | 282 +++++++-------- tests/RegressionTests_wcoss_cray.log | 118 +++--- tests/RegressionTests_wcoss_dell_p3.log | 174 ++++----- tests/rt.conf | 441 ++++++++++------------- tests/rt.sh | 108 +++--- tests/rt_35d.conf | 4 +- tests/rt_gnu.conf | 4 +- 14 files changed, 1057 insertions(+), 1046 deletions(-) diff --git a/FV3 b/FV3 index 846d257301..9c73d9672f 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 846d257301df00611d5f3b7b9c76199f1cf080b9 +Subproject commit 9c73d9672f671437cb5f5adbc4b414c97186a367 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 8aa42d4b3d..9f9f0c6205 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Mon Dec 28 14:14:55 MST 2020 +Tue Dec 29 13:55:14 MST 2020 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_34034/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/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 Dec 28 14:37:08 MST 2020 -Elapsed time: 00h:22m:14s. Have a nice day! +Tue Dec 29 14:15:17 MST 2020 +Elapsed time: 00h:20m:03s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 8ba36372a4..2161bc3d97 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Mon Dec 28 14:14:41 MST 2020 +Tue Dec 29 14:09:42 MST 2020 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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-20201223/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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-20201223/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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-20201223/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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 .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc ............ALT CHECK......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-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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-20201223/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -698,39 +698,39 @@ 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-20201223/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_iau_prod -Checking test 013 fv3_ccpp_iau results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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 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 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 @@ -763,42 +763,42 @@ 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 013 fv3_ccpp_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_ca_prod -Checking test 014 fv3_ccpp_ca results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_iau_prod +Checking test 014 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 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 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 @@ -831,11 +831,11 @@ Checking test 014 fv3_ccpp_ca 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_ca PASS +Test 014 fv3_ccpp_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,7 +883,7 @@ Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -957,7 +957,7 @@ Test 016 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1025,7 +1025,7 @@ Test 017 fv3_ccpp_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_stretched_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1081,7 +1081,7 @@ Test 018 fv3_ccpp_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,7 +1148,7 @@ Test 019 fv3_ccpp_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1159,7 +1159,7 @@ Test 020 fv3_ccpp_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1168,7 +1168,7 @@ Test 021 fv3_ccpp_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1179,18 +1179,18 @@ Test 022 fv3_ccpp_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1220,7 +1220,7 @@ Test 024 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_stretched_nest_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1240,7 +1240,7 @@ Test 025 fv3_ccpp_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1288,7 +1288,7 @@ Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1336,7 +1336,7 @@ Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1384,7 +1384,7 @@ Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1432,7 +1432,7 @@ Test 029 fv3_ccpp_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1480,7 +1480,7 @@ Test 030 fv3_ccpp_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,7 +1528,7 @@ Test 031 fv3_ccpp_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1576,7 +1576,7 @@ Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,7 +1628,7 @@ Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_cpt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,7 +1682,7 @@ Test 034 fv3_ccpp_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 035 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 036 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 037 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,7 +1978,7 @@ Test 038 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gocart_clm_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gocart_clm_prod Checking test 045 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2428,7 +2428,7 @@ Test 045 fv3_ccpp_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfs_v16beta_flake_prod Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2496,7 +2496,7 @@ Test 046 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2564,7 +2564,7 @@ Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2581,9 +2581,77 @@ Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 049 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 049 fv3_ccpp_gfs_v15p2_debug PASS + + baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 049 fv3_ccpp_gfs_v16beta_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 050 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2646,12 +2714,12 @@ Checking test 049 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 049 fv3_ccpp_gfs_v16beta_debug PASS +Test 050 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 051 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 @@ -2714,12 +2782,12 @@ Checking test 050 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 050 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 051 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 052 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 @@ -2782,12 +2850,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 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gsd_debug_prod -Checking test 052 fv3_ccpp_gsd_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gsd_debug_prod +Checking test 053 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2850,12 +2918,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 053 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2918,12 +2986,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 054 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_thompson_debug_prod -Checking test 054 fv3_ccpp_thompson_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_thompson_debug_prod +Checking test 055 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2986,12 +3054,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 055 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 056 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 @@ -3054,12 +3122,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 056 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3122,12 +3190,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 057 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 058 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 @@ -3190,12 +3258,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 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_72233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3208,9 +3276,9 @@ 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 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 28 14:50:24 MST 2020 -Elapsed time: 00h:35m:43s. Have a nice day! +Tue Dec 29 14:44:59 MST 2020 +Elapsed time: 00h:35m:17s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index cbc94acda5..0ff68f0225 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Mon Dec 28 16:11:10 EST 2020 +Tue Dec 29 15:53:59 EST 2020 Start Regression test baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/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-20201223/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_decomp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/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-20201223/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_2threads_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/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-20201223/INTEL/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_read_inc_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/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-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/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-20201223/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_stochy_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/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-20201223/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_lheatstrg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -747,7 +747,7 @@ Test 013 fv3_ccpp_lheatstrg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_multigases_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -821,7 +821,7 @@ Test 014 fv3_ccpp_multigases PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_control_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -889,7 +889,7 @@ Test 015 fv3_ccpp_control_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_stretched_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -945,7 +945,7 @@ Test 016 fv3_ccpp_stretched PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_stretched_nest_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,7 +1012,7 @@ Test 017 fv3_ccpp_stretched_nest PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_regional_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1023,7 +1023,7 @@ Test 018 fv3_ccpp_regional_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_regional_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1032,7 +1032,7 @@ Test 019 fv3_ccpp_regional_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_regional_quilt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1043,18 +1043,18 @@ Test 020 fv3_ccpp_regional_quilt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 021 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 + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK Test 021 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_control_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_control_debug_prod Checking test 022 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1084,7 +1084,7 @@ Test 022 fv3_ccpp_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_stretched_nest_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_stretched_nest_debug_prod Checking test 023 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1104,7 +1104,7 @@ Test 023 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gfdlmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gfdlmp_prod Checking test 024 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1152,7 +1152,7 @@ Test 024 fv3_ccpp_gfdlmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gfdlmprad_gwd_prod Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1200,7 +1200,7 @@ Test 025 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1248,7 +1248,7 @@ Test 026 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_csawmg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1296,7 +1296,7 @@ Test 027 fv3_ccpp_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_satmedmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1344,7 +1344,7 @@ Test 028 fv3_ccpp_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_satmedmfq_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1392,7 +1392,7 @@ Test 029 fv3_ccpp_satmedmfq PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1440,7 +1440,7 @@ Test 030 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_cpt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_cpt_prod Checking test 031 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1494,7 +1494,7 @@ Test 031 fv3_ccpp_cpt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gsd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gsd_prod Checking test 032 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1586,7 +1586,7 @@ Test 032 fv3_ccpp_gsd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_thompson_prod Checking test 033 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1654,7 +1654,7 @@ Test 033 fv3_ccpp_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_thompson_no_aero_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_thompson_no_aero_prod Checking test 034 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,7 +1722,7 @@ Test 034 fv3_ccpp_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_rrfs_v1beta_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_rrfs_v1beta_prod Checking test 035 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1790,7 +1790,7 @@ Test 035 fv3_ccpp_rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gocart_clm_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gocart_clm_prod Checking test 036 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1838,7 +1838,7 @@ Test 036 fv3_ccpp_gocart_clm PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gfs_v16beta_flake_prod Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1906,7 +1906,7 @@ Test 037 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 038 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1974,7 +1974,7 @@ Test 038 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1992,7 +1992,7 @@ Test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gsd_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gsd_debug_prod Checking test 040 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2060,7 +2060,7 @@ Test 040 fv3_ccpp_gsd_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gsd_diag3d_debug_prod Checking test 041 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2128,7 +2128,7 @@ Test 041 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_thompson_debug_prod Checking test 042 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2196,7 +2196,7 @@ Test 042 fv3_ccpp_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_thompson_no_aero_debug_prod Checking test 043 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2264,7 +2264,7 @@ Test 043 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 044 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2332,7 +2332,7 @@ Test 044 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2400,7 +2400,7 @@ Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3163/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2418,5 +2418,5 @@ Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 28 16:55:32 EST 2020 -Elapsed time: 00h:44m:23s. Have a nice day! +Tue Dec 29 16:49:06 EST 2020 +Elapsed time: 00h:55m:08s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 7f11414e77..8905fb8d56 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Mon Dec 28 21:22:00 UTC 2020 +Tue Dec 29 22:41:23 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_112836/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/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 Dec 28 21:53:52 UTC 2020 -Elapsed time: 00h:31m:53s. Have a nice day! +Tue Dec 29 23:05:27 UTC 2020 +Elapsed time: 00h:24m:05s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index e7f56903d3..9b259642b4 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Mon Dec 28 23:09:56 UTC 2020 +Tue Dec 29 21:49:53 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 ............ALT CHECK......OK + Comparing phyf000.nc .........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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -698,39 +698,39 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_iau_prod -Checking test 013 fv3_ccpp_iau results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 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 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 @@ -763,12 +763,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 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_ca_prod -Checking test 014 fv3_ccpp_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -781,24 +781,24 @@ Checking test 014 fv3_ccpp_ca 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 @@ -831,42 +831,42 @@ Checking test 014 fv3_ccpp_ca 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_ca PASS +Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_lndp_prod -Checking test 015 fv3_ccpp_lndp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 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 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 @@ -899,11 +899,11 @@ Checking test 015 fv3_ccpp_lndp 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_lndp PASS +Test 015 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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-20201223/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -2779,7 +2779,7 @@ Test 051 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -2827,7 +2827,7 @@ Test 052 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -2875,7 +2875,7 @@ Test 053 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -2943,7 +2943,7 @@ Test 054 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -3011,7 +3011,7 @@ Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -3029,7 +3029,7 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -3097,7 +3097,7 @@ Test 057 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -3165,7 +3165,7 @@ Test 058 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -3233,7 +3233,7 @@ Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -3301,7 +3301,7 @@ Test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -3369,7 +3369,7 @@ Test 061 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -3437,7 +3437,7 @@ Test 062 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -3505,7 +3505,7 @@ Test 063 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -3573,7 +3573,7 @@ Test 064 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -3641,7 +3641,7 @@ Test 065 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -3709,7 +3709,7 @@ Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/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 @@ -3727,7 +3727,7 @@ Test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_control_prod Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3780,7 +3780,7 @@ Test 068 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_2threads_prod Checking test 069 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3833,7 +3833,7 @@ Test 069 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_decomp_prod Checking test 070 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3886,7 +3886,7 @@ Test 070 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_satmedmf_prod Checking test 071 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3939,7 +3939,7 @@ Test 071 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_ca_prod Checking test 072 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3992,7 +3992,7 @@ Test 072 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_control_mx025_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_control_mx025_prod Checking test 073 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4048,7 +4048,7 @@ Test 073 cpld_control_mx025 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_control_mx025_12h_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_control_mx025_12h_prod Checking test 074 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4104,7 +4104,7 @@ Test 074 cpld_control_mx025_12h PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_restart_mx025_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_restart_mx025_prod Checking test 075 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4160,7 +4160,7 @@ Test 075 cpld_restart_mx025 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_control_c192_prod Checking test 076 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4213,7 +4213,7 @@ Test 076 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_control_c384_prod Checking test 077 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4269,7 +4269,7 @@ Test 077 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_controlfrac_c384_prod Checking test 078 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4325,7 +4325,7 @@ Test 078 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_bmark_prod Checking test 079 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4381,7 +4381,7 @@ Test 079 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_bmark_wave_prod Checking test 080 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4440,7 +4440,7 @@ Test 080 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_debug_prod Checking test 081 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4493,7 +4493,7 @@ Test 081 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/datm_control_cfsr Checking test 082 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4502,7 +4502,7 @@ Test 082 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/datm_restart_cfsr Checking test 083 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4511,7 +4511,7 @@ Test 083 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/datm_control_gefs Checking test 084 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4520,7 +4520,7 @@ Test 084 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/datm_bulk_cfsr Checking test 085 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4529,7 +4529,7 @@ Test 085 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/datm_bulk_gefs Checking test 086 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4538,7 +4538,7 @@ Test 086 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/datm_mx025_cfsr Checking test 087 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4550,7 +4550,7 @@ Test 087 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/datm_mx025_gefs Checking test 088 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4562,7 +4562,7 @@ Test 088 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_252053/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/datm_debug_cfsr Checking test 089 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -4571,5 +4571,5 @@ Test 089 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 28 23:57:41 UTC 2020 -Elapsed time: 00h:47m:46s. Have a nice day! +Tue Dec 29 22:36:32 UTC 2020 +Elapsed time: 00h:46m:39s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 4337437621..d93bfd645e 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Mon Dec 28 22:24:32 GMT 2020 +Tue Dec 29 20:54:38 GMT 2020 Start Regression test baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/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-20201223/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_decomp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_2threads_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/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-20201223/INTEL/fv3_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_read_inc_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/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-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/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-20201223/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/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-20201223/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_iau_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_lheatstrg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,7 +815,7 @@ Test 014 fv3_ccpp_lheatstrg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_multigases_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -889,7 +889,7 @@ Test 015 fv3_ccpp_multigases PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_control_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -957,7 +957,7 @@ Test 016 fv3_ccpp_control_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_stretched_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1013,7 +1013,7 @@ Test 017 fv3_ccpp_stretched PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_stretched_nest_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,7 +1080,7 @@ Test 018 fv3_ccpp_stretched_nest PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_regional_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -1091,7 +1091,7 @@ Test 019 fv3_ccpp_regional_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_regional_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1100,7 +1100,7 @@ Test 020 fv3_ccpp_regional_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_regional_quilt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1111,7 +1111,7 @@ Test 021 fv3_ccpp_regional_quilt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1122,7 +1122,7 @@ Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_control_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1152,7 +1152,7 @@ Test 023 fv3_ccpp_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_stretched_nest_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1172,7 +1172,7 @@ Test 024 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gfdlmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1220,7 +1220,7 @@ Test 025 fv3_ccpp_gfdlmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1268,7 +1268,7 @@ Test 026 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1316,7 +1316,7 @@ Test 027 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1364,7 +1364,7 @@ Test 028 fv3_ccpp_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_satmedmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1412,7 +1412,7 @@ Test 029 fv3_ccpp_satmedmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_satmedmfq_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1460,7 +1460,7 @@ Test 030 fv3_ccpp_satmedmfq PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1508,7 +1508,7 @@ Test 031 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_cpt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1562,7 +1562,7 @@ Test 032 fv3_ccpp_cpt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gsd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1654,7 +1654,7 @@ Test 033 fv3_ccpp_gsd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,7 +1722,7 @@ Test 034 fv3_ccpp_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_thompson_no_aero_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1790,7 +1790,7 @@ Test 035 fv3_ccpp_thompson_no_aero PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gocart_clm_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gocart_clm_prod Checking test 036 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1838,7 +1838,7 @@ Test 036 fv3_ccpp_gocart_clm PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gfs_v16beta_flake_prod Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1906,7 +1906,7 @@ Test 037 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 038 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1974,7 +1974,7 @@ Test 038 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1992,7 +1992,7 @@ Test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gsd_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gsd_debug_prod Checking test 040 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2060,7 +2060,7 @@ Test 040 fv3_ccpp_gsd_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gsd_diag3d_debug_prod Checking test 041 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2128,7 +2128,7 @@ Test 041 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_thompson_debug_prod Checking test 042 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2196,7 +2196,7 @@ Test 042 fv3_ccpp_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_thompson_no_aero_debug_prod Checking test 043 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2264,7 +2264,7 @@ Test 043 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 044 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2332,7 +2332,7 @@ Test 044 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2400,7 +2400,7 @@ Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_299126/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2418,5 +2418,5 @@ Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 29 01:14:40 GMT 2020 -Elapsed time: 02h:50m:12s. Have a nice day! +Tue Dec 29 23:13:57 GMT 2020 +Elapsed time: 02h:19m:20s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index ffdab13f31..e3ed3104d4 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Mon Dec 28 15:11:46 CST 2020 +Tue Dec 29 15:44:52 CST 2020 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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-20201223/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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-20201223/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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-20201223/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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-20201223/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -698,39 +698,39 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_iau_prod -Checking test 013 fv3_ccpp_iau results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 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 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 @@ -763,42 +763,42 @@ 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 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_ca_prod -Checking test 014 fv3_ccpp_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_iau_prod +Checking test 014 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 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 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 @@ -831,11 +831,11 @@ Checking test 014 fv3_ccpp_ca 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_ca PASS +Test 014 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,7 +884,7 @@ Test 015 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1056,7 +1056,7 @@ Test 018 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,7 +1124,7 @@ Test 019 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1180,7 +1180,7 @@ Test 020 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,7 +1247,7 @@ Test 021 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1258,7 +1258,7 @@ Test 022 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1267,7 +1267,7 @@ Test 023 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1278,7 +1278,7 @@ Test 024 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1289,7 +1289,7 @@ Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_control_debug_prod Checking test 026 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1319,7 +1319,7 @@ Test 026 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_stretched_nest_debug_prod Checking test 027 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1339,7 +1339,7 @@ Test 027 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1387,7 +1387,7 @@ Test 028 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1435,7 +1435,7 @@ Test 029 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1483,7 +1483,7 @@ Test 030 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1531,7 +1531,7 @@ Test 031 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,7 +1579,7 @@ Test 032 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -1627,7 +1627,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -1679,7 +1679,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1733,7 +1733,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1825,7 +1825,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1893,7 +1893,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -1961,7 +1961,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2029,7 +2029,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfs_v15p2_prod Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2097,7 +2097,7 @@ Test 040 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfs_v16beta_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfs_v16beta_prod Checking test 041 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2177,7 +2177,7 @@ Test 041 fv3_ccpp_gfs_v16beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfs_v16beta_restart_prod Checking test 042 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2227,7 +2227,7 @@ Test 042 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 043 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2295,7 +2295,7 @@ Test 043 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2363,7 +2363,7 @@ Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2431,7 +2431,7 @@ Test 045 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -2479,7 +2479,7 @@ Test 046 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -2527,7 +2527,7 @@ Test 047 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -2575,7 +2575,7 @@ Test 048 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -2643,7 +2643,7 @@ Test 049 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -2711,7 +2711,7 @@ Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -2729,7 +2729,7 @@ Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -2797,7 +2797,7 @@ Test 052 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -2865,7 +2865,7 @@ Test 053 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -2933,7 +2933,7 @@ Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -3001,7 +3001,7 @@ Test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -3069,7 +3069,7 @@ Test 056 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -3137,7 +3137,7 @@ Test 057 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -3205,7 +3205,7 @@ Test 058 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -3273,7 +3273,7 @@ Test 059 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -3341,7 +3341,7 @@ Test 060 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -3409,7 +3409,7 @@ Test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/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 @@ -3427,7 +3427,7 @@ Test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_control_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_control_prod Checking test 063 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3480,7 +3480,7 @@ Test 063 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_2threads_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_2threads_prod Checking test 064 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3533,7 +3533,7 @@ Test 064 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_decomp_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_decomp_prod Checking test 065 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3586,7 +3586,7 @@ Test 065 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_satmedmf_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_satmedmf_prod Checking test 066 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3639,7 +3639,7 @@ Test 066 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_ca_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_ca_prod Checking test 067 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3692,7 +3692,7 @@ Test 067 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_control_mx025_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_control_mx025_prod Checking test 068 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3748,7 +3748,7 @@ Test 068 cpld_control_mx025 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_control_mx025_12h_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_control_mx025_12h_prod Checking test 069 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3804,7 +3804,7 @@ Test 069 cpld_control_mx025_12h PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_restart_mx025_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_restart_mx025_prod Checking test 070 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3860,7 +3860,7 @@ Test 070 cpld_restart_mx025 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_control_c192_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_control_c192_prod Checking test 071 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3913,7 +3913,7 @@ Test 071 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_control_c384_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_control_c384_prod Checking test 072 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3969,7 +3969,7 @@ Test 072 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_controlfrac_c384_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_controlfrac_c384_prod Checking test 073 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4025,7 +4025,7 @@ Test 073 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_bmark_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_bmark_prod Checking test 074 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4081,7 +4081,7 @@ Test 074 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_bmark_wave_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_bmark_wave_prod Checking test 075 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4140,7 +4140,7 @@ Test 075 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/cpld_debug_prod +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_debug_prod Checking test 076 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4193,7 +4193,7 @@ Test 076 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/datm_control_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/datm_control_cfsr Checking test 077 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4202,7 +4202,7 @@ Test 077 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/datm_restart_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/datm_restart_cfsr Checking test 078 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4211,7 +4211,7 @@ Test 078 datm_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/datm_control_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/datm_control_gefs Checking test 079 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4220,7 +4220,7 @@ Test 079 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/datm_bulk_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/datm_bulk_cfsr Checking test 080 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4229,7 +4229,7 @@ Test 080 datm_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/datm_bulk_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/datm_bulk_gefs Checking test 081 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4238,7 +4238,7 @@ Test 081 datm_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/datm_mx025_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/datm_mx025_cfsr Checking test 082 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4250,7 +4250,7 @@ Test 082 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/datm_mx025_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/datm_mx025_gefs Checking test 083 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4262,7 +4262,7 @@ Test 083 datm_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_354188/datm_debug_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/datm_debug_cfsr Checking test 084 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -4271,5 +4271,5 @@ Test 084 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 28 16:32:17 CST 2020 -Elapsed time: 01h:20m:32s. Have a nice day! +Tue Dec 29 17:06:28 CST 2020 +Elapsed time: 01h:21m:36s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 1d41512c0e..1cb32dafd8 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Tue Dec 29 03:06:52 UTC 2020 +Tue Dec 29 19:47:33 UTC 2020 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/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-20201223/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/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-20201223/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/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-20201223/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/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-20201223/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/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-20201223/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/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-20201223/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/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-20201223/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/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-20201223/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/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-20201223/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/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-20201223/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/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-20201223/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/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-20201223/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,7 +815,7 @@ Test 014 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -889,7 +889,7 @@ Test 015 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -957,7 +957,7 @@ Test 016 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1013,7 +1013,7 @@ Test 017 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,7 +1080,7 @@ Test 018 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1091,7 +1091,7 @@ Test 019 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1100,7 +1100,7 @@ Test 020 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1111,7 +1111,7 @@ Test 021 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1122,7 +1122,7 @@ Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1152,7 +1152,7 @@ Test 023 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1172,7 +1172,7 @@ Test 024 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1220,7 +1220,7 @@ Test 025 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1268,7 +1268,7 @@ Test 026 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1316,7 +1316,7 @@ Test 027 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1364,7 +1364,7 @@ Test 028 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1412,7 +1412,7 @@ Test 029 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1460,7 +1460,7 @@ Test 030 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1508,7 +1508,7 @@ Test 031 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1560,7 +1560,7 @@ Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1614,7 +1614,7 @@ Test 033 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1706,7 +1706,7 @@ Test 034 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 035 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 036 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_rrfs_v1beta_prod Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 037 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfs_v16beta_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfs_v16beta_prod Checking test 038 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1990,7 +1990,7 @@ Test 038 fv3_ccpp_gfs_v16beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfs_v16beta_restart_prod Checking test 039 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2040,7 +2040,7 @@ Test 039 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 040 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2108,7 +2108,7 @@ Test 040 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2176,7 +2176,7 @@ Test 041 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfsv16_csawmg_prod Checking test 042 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2224,7 +2224,7 @@ Test 042 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfsv16_csawmgt_prod Checking test 043 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2272,7 +2272,7 @@ Test 043 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gocart_clm_prod Checking test 044 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2320,7 +2320,7 @@ Test 044 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfs_v16beta_flake_prod Checking test 045 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2388,7 +2388,7 @@ Test 045 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2456,7 +2456,7 @@ Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2474,7 +2474,7 @@ Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfs_v16beta_debug_prod Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2542,7 +2542,7 @@ Test 048 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2610,7 +2610,7 @@ Test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gsd_debug_prod Checking test 050 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2678,7 +2678,7 @@ Test 050 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gsd_diag3d_debug_prod Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2746,7 +2746,7 @@ Test 051 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_thompson_debug_prod Checking test 052 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2814,7 +2814,7 @@ Test 052 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_thompson_no_aero_debug_prod Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2882,7 +2882,7 @@ Test 053 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2950,7 +2950,7 @@ Test 054 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3018,7 +3018,7 @@ Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_35569/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3036,5 +3036,5 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 29 03:46:10 UTC 2020 -Elapsed time: 00h:39m:18s. Have a nice day! +Tue Dec 29 20:28:54 UTC 2020 +Elapsed time: 00h:41m:21s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index aa2d976549..cf9b5db678 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Mon Dec 28 19:33:47 UTC 2020 +Tue Dec 29 19:46:20 UTC 2020 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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-20201223/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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-20201223/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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-20201223/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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-20201223/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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-20201223/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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-20201223/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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-20201223/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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,9 +447,9 @@ 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 phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.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-20201223/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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-20201223/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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-20201223/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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-20201223/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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-20201223/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,7 +815,7 @@ Test 014 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -864,7 +864,7 @@ Test 015 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -913,7 +913,7 @@ Test 016 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -987,7 +987,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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 @@ -1055,7 +1055,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1111,7 +1111,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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 @@ -1178,7 +1178,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1189,7 +1189,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1198,7 +1198,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1209,18 +1209,18 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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 dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1250,7 +1250,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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 @@ -1270,7 +1270,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1318,7 +1318,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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 @@ -1366,7 +1366,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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 @@ -1414,7 +1414,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1462,7 +1462,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1510,7 +1510,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1558,7 +1558,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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 @@ -1606,7 +1606,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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 @@ -1658,7 +1658,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1712,7 +1712,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1804,7 +1804,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1872,7 +1872,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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 @@ -1940,7 +1940,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2008,7 +2008,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfs_v16beta_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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 @@ -2088,7 +2088,7 @@ Test 040 fv3_ccpp_gfs_v16beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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 @@ -2138,7 +2138,7 @@ Test 041 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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 @@ -2206,7 +2206,7 @@ Test 042 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 043 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,7 +2274,7 @@ Test 043 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/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 @@ -2322,7 +2322,7 @@ Test 044 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfsv16_csawmgt_prod Checking test 045 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2370,7 +2370,7 @@ Test 045 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gocart_clm_prod Checking test 046 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2418,7 +2418,7 @@ Test 046 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfs_v16beta_flake_prod Checking test 047 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2486,7 +2486,7 @@ Test 047 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2554,7 +2554,7 @@ Test 048 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2572,7 +2572,7 @@ Test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfs_v16beta_debug_prod Checking test 050 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2640,7 +2640,7 @@ Test 050 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2708,7 +2708,7 @@ Test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gsd_debug_prod Checking test 052 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2776,7 +2776,7 @@ Test 052 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gsd_diag3d_debug_prod Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2844,7 +2844,7 @@ Test 053 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_thompson_debug_prod Checking test 054 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2912,7 +2912,7 @@ Test 054 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_thompson_no_aero_debug_prod Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2980,7 +2980,7 @@ Test 055 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3048,7 +3048,7 @@ Test 056 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3116,7 +3116,7 @@ Test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3134,7 +3134,7 @@ Test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_control_prod Checking test 059 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3187,7 +3187,7 @@ Test 059 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_2threads_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_2threads_prod Checking test 060 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3240,7 +3240,7 @@ Test 060 cpld_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_decomp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_decomp_prod Checking test 061 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3293,7 +3293,7 @@ Test 061 cpld_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_satmedmf_prod Checking test 062 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3346,7 +3346,7 @@ Test 062 cpld_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_ca_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_ca_prod Checking test 063 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3399,7 +3399,7 @@ Test 063 cpld_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_control_mx025_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_control_mx025_prod Checking test 064 cpld_control_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3455,7 +3455,7 @@ Test 064 cpld_control_mx025 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_control_mx025_12h_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_control_mx025_12h_prod Checking test 065 cpld_control_mx025_12h results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -3511,7 +3511,7 @@ Test 065 cpld_control_mx025_12h PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_restart_mx025_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_restart_mx025_prod Checking test 066 cpld_restart_mx025 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3567,7 +3567,7 @@ Test 066 cpld_restart_mx025 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_control_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_control_c192_prod Checking test 067 cpld_control_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3620,7 +3620,7 @@ Test 067 cpld_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_control_c384_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_control_c384_prod Checking test 068 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3676,7 +3676,7 @@ Test 068 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_controlfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_controlfrac_c384_prod Checking test 069 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3732,7 +3732,7 @@ Test 069 cpld_controlfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_bmark_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_bmark_prod Checking test 070 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3788,7 +3788,7 @@ Test 070 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_bmark_wave_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_bmark_wave_prod Checking test 071 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3847,7 +3847,7 @@ Test 071 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/cpld_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_debug_prod Checking test 072 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3900,7 +3900,7 @@ Test 072 cpld_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/datm_control_cfsr Checking test 073 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3909,7 +3909,7 @@ Test 073 datm_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/datm_restart_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/datm_restart_cfsr Checking test 074 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3918,7 +3918,7 @@ Test 074 datm_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/datm_control_gefs Checking test 075 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3927,7 +3927,7 @@ Test 075 datm_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/datm_bulk_cfsr Checking test 076 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3936,7 +3936,7 @@ Test 076 datm_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/datm_bulk_gefs Checking test 077 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3945,7 +3945,7 @@ Test 077 datm_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/datm_mx025_cfsr Checking test 078 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3957,7 +3957,7 @@ Test 078 datm_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/datm_mx025_gefs Checking test 079 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3969,7 +3969,7 @@ Test 079 datm_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_16112/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/datm_debug_cfsr Checking test 080 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -3978,5 +3978,5 @@ Test 080 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 28 21:06:52 UTC 2020 -Elapsed time: 01h:33m:08s. Have a nice day! +Tue Dec 29 21:29:06 UTC 2020 +Elapsed time: 01h:42m:48s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index e2c4a36598..8b0f02b1b9 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -1,275 +1,198 @@ -####################################################################################################################################################################################### -# 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_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_iau | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_iau | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_iau | standard | hera.intel | fv3 | -RUN | fv3_ccpp_iau | standard | orion.intel | fv3 | -RUN | fv3_ccpp_iau | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_ca | standard | hera.intel | fv3 | -RUN | fv3_ccpp_ca | standard | orion.intel | fv3 | -RUN | fv3_ccpp_ca | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_lndp | standard | hera.intel | fv3 | +############################################################################################################################################################################################## +# 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 | + hera.intel orion.intel cheyenne.intel | fv3 | +RUN | fv3_ccpp_lndp | standard | + hera.intel | 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_iau | standard | jet.intel | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | hera.intel | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | gaea.intel | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | jet.intel | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_iau | standard | - gaea.intel | fv3 | +RUN | fv3_ccpp_lheatstrg | standard | - orion.intel | 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 | fv3 | -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | hera.intel | fv3 | -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfdlmprad | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_atmwav | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfdlmprad_atmwav | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_atmwav | standard | orion.intel | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | hera.intel | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | orion.intel | fv3 | -#RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | wcoss_dell_p3 | 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 | wcoss_cray | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | hera.intel | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | gaea.intel | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | jet.intel | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | cheyenne.intel | 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 | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_cpt | standard | | fv3 | -RUN | fv3_ccpp_gsd | standard | | fv3 | +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 | - orion.intel | 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_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 | -RUN | fv3_ccpp_thompson | standard | | fv3 | -RUN | fv3_ccpp_thompson_no_aero | standard | | fv3 | +RUN | fv3_ccpp_rap | standard | + hera.intel | fv3 | +RUN | fv3_ccpp_hrrr | standard | + hera.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 | wcoss_cray | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | hera.intel | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | orion.intel | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | gaea.intel | fv3 | +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 | wcoss_dell_p3 | fv3 | -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | wcoss_cray | fv3 | -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | hera.intel | fv3 | -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | orion.intel | fv3 | -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2 | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2 | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2 | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_restart | standard | wcoss_dell_p3 | | fv3_ccpp_gfs_v16beta -RUN | fv3_ccpp_gfs_v16beta_restart | standard | wcoss_cray | | fv3_ccpp_gfs_v16beta -RUN | fv3_ccpp_gfs_v16beta_restart | standard | hera.intel | | fv3_ccpp_gfs_v16beta -RUN | fv3_ccpp_gfs_v16beta_restart | standard | orion.intel | | fv3_ccpp_gfs_v16beta -RUN | fv3_ccpp_gfs_v16beta_restart | standard | cheyenne.intel | | fv3_ccpp_gfs_v16beta -RUN | fv3_ccpp_gfs_v16beta_stochy | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfs_v16beta_stochy | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfs_v16beta_stochy | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_stochy | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_stochy | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | cheyenne.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_v16_csawmg | 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 | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfsv16_csawmg | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfsv16_csawmg | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmg | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | standard | orion.intel | fv3 | +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_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 | standard | | fv3 | +RUN | fv3_ccpp_gocart_clm | standard | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_flake | standard | | 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 | 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 | -####################################################################################################################################################################################### -# CCPP 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 | 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 | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | standard | cheeyenne.intel| fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | cheyenne.intel | 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 | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | cheyenne.intel | fv3 | -RUN | cpld_control | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +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 | 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 | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +#COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | cheyenne.intel | fv3 | +RUN | cpld_control | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | # following two tests are not run on any platform -#RUN | cpld_control_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_restart | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_12h -RUN | cpld_2threads | standard | hera.intel orion.intel wcoss_dell_p3 | | -RUN | cpld_decomp | standard | hera.intel orion.intel wcoss_dell_p3 | | -RUN | cpld_satmedmf | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_ca | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_control | standard | cheyenne.intel | fv3 | -#RUN | cpld_2threads | standard | cheyenne.intel | | -#RUN | cpld_decomp | standard | cheyenne.intel | | -#RUN | cpld_satmedmf | standard | cheyenne.intel | fv3 | -#RUN | cpld_ca | standard | cheyenne.intel | fv3 | +#RUN | cpld_control_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_restart | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_12h +RUN | cpld_2threads | standard | + hera.intel orion.intel wcoss_dell_p3 | | +RUN | cpld_decomp | standard | + hera.intel orion.intel wcoss_dell_p3 | | +RUN | cpld_satmedmf | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_ca | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control | standard | cheyenne.intel | fv3 | +#RUN | cpld_2threads | standard | cheyenne.intel | | +#RUN | cpld_decomp | standard | cheyenne.intel | | +#RUN | cpld_satmedmf | standard | cheyenne.intel | fv3 | +#RUN | cpld_ca | standard | cheyenne.intel | fv3 | # restart test at c96mx025 -RUN | cpld_control_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_control_mx025_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_restart_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_mx025_12h -#RUN | cpld_control_mx025 | standard | cheyenne.intel | fv3 | -#RUN | cpld_control_mx025_12h | standard | cheyenne.intel | fv3 | -#RUN | cpld_restart_mx025 | standard | cheyenne.intel | | cpld_control_mx025_12h - -RUN | cpld_control_c192 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_control_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_controlfrac_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_bmark | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_control_c192 | standard | cheyenne.intel | fv3 | -#RUN | cpld_control_c384 | standard | cheyenne.intel | fv3 | -#RUN | cpld_controlfrac_c384 | standard | cheyenne.intel | fv3 | -#RUN | cpld_bmark | standard | cheyenne.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | cheyenne.intel | fv3 | -RUN | cpld_bmark_wave | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_bmark_wave | standard | cheyenne.intel | fv3 | - -COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | cheyenne.intel | fv3 | -RUN | cpld_debug | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_debug | standard | cheyenne.intel | fv3 | - -################################################################################################################################################################################ -# Data Atmosphere tests # -################################################################################################################################################################################ - -COMPILE | DATM=Y S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#COMPILE | DATM=Y S2S=Y | standard | cheyenne.intel | fv3 | -RUN | datm_control_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | datm_restart_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | | datm_control_cfsr -RUN | datm_control_gefs | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | datm_control_cfsr | standard | cheyenne.intel | fv3 | -#RUN | datm_control_gefs | standard | cheyenne.intel | fv3 | - -RUN | datm_bulk_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | datm_bulk_gefs | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | datm_bulk_cfsr | standard | cheyenne.intel | fv3 | -#RUN | datm_bulk_gefs | standard | cheyenne.intel | fv3 | - -RUN | datm_mx025_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | datm_mx025_gefs | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | datm_mx025_cfsr | standard | cheyenne.intel | fv3 | -#RUN | datm_mx025_gefs | standard | cheyenne.intel | fv3 | - -COMPILE | DATM=Y S2S=Y DEBUG=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | datm_debug_cfsr | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_control_mx025 | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_control_mx025_12h | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_restart_mx025 | standard | + hera.intel orion.intel wcoss_dell_p3 | | cpld_control_mx025_12h +#RUN | cpld_control_mx025 | standard | cheyenne.intel | fv3 | +#RUN | cpld_control_mx025_12h | standard | cheyenne.intel | fv3 | +#RUN | cpld_restart_mx025 | standard | cheyenne.intel | | cpld_control_mx025_12h + +RUN | cpld_control_c192 | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_control_c384 | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_controlfrac_c384 | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | cpld_bmark | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_control_c192 | standard | cheyenne.intel | fv3 | +#RUN | cpld_control_c384 | standard | cheyenne.intel | fv3 | +#RUN | cpld_controlfrac_c384 | standard | cheyenne.intel | fv3 | +#RUN | cpld_bmark | standard | cheyenne.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +#COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | cheyenne.intel | fv3 | +RUN | cpld_bmark_wave | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_bmark_wave | standard | cheyenne.intel | fv3 | + +COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +#COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | cheyenne.intel | fv3 | +RUN | cpld_debug | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | cpld_debug | standard | cheyenne.intel | fv3 | + +############################################################################################################################################################################################## +# Data Atmosphere tests # +############################################################################################################################################################################################## + +COMPILE | DATM=Y S2S=Y | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +#COMPILE | DATM=Y S2S=Y | standard | cheyenne.intel | fv3 | +RUN | datm_control_cfsr | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | datm_restart_cfsr | standard | + hera.intel orion.intel wcoss_dell_p3 | | datm_control_cfsr +RUN | datm_control_gefs | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | datm_control_cfsr | standard | cheyenne.intel | fv3 | +#RUN | datm_control_gefs | standard | cheyenne.intel | fv3 | + +RUN | datm_bulk_cfsr | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | datm_bulk_gefs | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | datm_bulk_cfsr | standard | cheyenne.intel | fv3 | +#RUN | datm_bulk_gefs | standard | cheyenne.intel | fv3 | + +RUN | datm_mx025_cfsr | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | datm_mx025_gefs | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +#RUN | datm_mx025_cfsr | standard | cheyenne.intel | fv3 | +#RUN | datm_mx025_gefs | standard | cheyenne.intel | fv3 | + +COMPILE | DATM=Y S2S=Y DEBUG=Y | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | +RUN | datm_debug_cfsr | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 6d421315b0..915d2376e6 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -31,7 +31,7 @@ usage() { rt_single() { local compile_line='' local run_line='' - while read -r line; do + while read -r line || [ "$line" ]; do line="${line#"${line%%[![:space:]]*}"}" [[ ${#line} == 0 ]] && continue [[ $line == \#* ]] && continue @@ -573,7 +573,7 @@ in_metatask=false [[ -f $TESTS_FILE ]] || die "$TESTS_FILE does not exist" -while read -r line; do +while read -r line || [ "$line" ]; do line="${line#"${line%%[![:space:]]*}"}" [[ ${#line} == 0 ]] && continue @@ -581,53 +581,63 @@ while read -r 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) - CB=$( echo $line | cut -d'|' -f5) + 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) - [[ $SET_ID != ' ' && $SET != *${SET_ID}* ]] && continue - [[ $MACHINES != ' ' && $MACHINES != *${MACHINE_ID}* ]] && continue - [[ $CREATE_BASELINE == true && $CB != *fv3* ]] && continue + [[ $SET_ID != ' ' && $SET != *${SET_ID}* ]] && continue + [[ $CREATE_BASELINE == true && $CB != *fv3* ]] && continue - (( COMPILE_NR += 1 )) + if [[ ${MACHINES} != '' ]]; then + if [[ ${MACHINES} == -* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] && continue + elif [[ ${MACHINES} == +* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] || continue + else + echo "MACHINES=|${MACHINES}|" + die "MACHINES spec must be either an empty string or start with either '+' or '-'" + fi + fi - cat << EOF > ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env - export MACHINE_ID=${MACHINE_ID} - export RT_COMPILER=${RT_COMPILER} - export PATHRT=${PATHRT} - export PATHTR=${PATHTR} - export SCHEDULER=${SCHEDULER} - export ACCNR=${ACCNR} - export QUEUE=${COMPILE_QUEUE} - export PARTITION=${PARTITION} - export ROCOTO=${ROCOTO} - export ECFLOW=${ECFLOW} - export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG} - export LOG_DIR=${LOG_DIR} + (( COMPILE_NR += 1 )) + + cat << EOF > ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env + export MACHINE_ID=${MACHINE_ID} + export RT_COMPILER=${RT_COMPILER} + export PATHRT=${PATHRT} + export PATHTR=${PATHTR} + export SCHEDULER=${SCHEDULER} + export ACCNR=${ACCNR} + export QUEUE=${COMPILE_QUEUE} + export PARTITION=${PARTITION} + export ROCOTO=${ROCOTO} + export ECFLOW=${ECFLOW} + export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG} + export LOG_DIR=${LOG_DIR} EOF - if [[ $ROCOTO == true ]]; then - rocoto_create_compile_task - elif [[ $ECFLOW == true ]]; then - ecflow_create_compile_task - else - ./compile.sh $MACHINE_ID "${MAKE_OPT}" $COMPILE_NR > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1 - fi + if [[ $ROCOTO == true ]]; then + rocoto_create_compile_task + elif [[ $ECFLOW == true ]]; then + ecflow_create_compile_task + else + ./compile.sh $MACHINE_ID "${MAKE_OPT}" $COMPILE_NR > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1 + fi - # Set RT_SUFFIX (regression test run directories and log files) and BL_SUFFIX - # (regression test baseline directories) for REPRO or PROD runs - if [[ ${MAKE_OPT^^} =~ "REPRO=Y" ]]; then - RT_SUFFIX="_repro" - BL_SUFFIX="_repro" - else - RT_SUFFIX="_prod" - BL_SUFFIX="_ccpp" - fi + # Set RT_SUFFIX (regression test run directories and log files) and BL_SUFFIX + # (regression test baseline directories) for REPRO or PROD runs + if [[ ${MAKE_OPT^^} =~ "REPRO=Y" ]]; then + RT_SUFFIX="_repro" + BL_SUFFIX="_repro" + else + RT_SUFFIX="_prod" + BL_SUFFIX="_ccpp" + fi - if [[ ${MAKE_OPT^^} =~ "WW3=Y" ]]; then - COMPILE_PREV_WW3_NR=${COMPILE_NR} - fi + if [[ ${MAKE_OPT^^} =~ "WW3=Y" ]]; then + COMPILE_PREV_WW3_NR=${COMPILE_NR} + fi continue @@ -635,16 +645,26 @@ EOF TEST_NAME=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') SET=$( echo $line | cut -d'|' -f3) - MACHINES=$( echo $line | cut -d'|' -f4) + 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/ *$//') [[ -e "tests/$TEST_NAME" ]] || die "run test file tests/$TEST_NAME does not exist" [[ $SET_ID != ' ' && $SET != *${SET_ID}* ]] && continue - [[ $MACHINES != ' ' && $MACHINES != *${MACHINE_ID}* ]] && continue [[ $CREATE_BASELINE == true && $CB != *fv3* ]] && continue + if [[ ${MACHINES} != '' ]]; then + if [[ ${MACHINES} == -* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] && continue + elif [[ ${MACHINES} == +* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] || continue + else + echo "MACHINES=|${MACHINES}|" + die "MACHINES spec must be either an empty string or start with either '+' or '-'" + fi + fi + # 35 day tests [[ $TEST_35D == true ]] && rt_35d diff --git a/tests/rt_35d.conf b/tests/rt_35d.conf index 1b850ec0ee..69b2a76b59 100644 --- a/tests/rt_35d.conf +++ b/tests/rt_35d.conf @@ -1,4 +1,4 @@ -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | | hera.intel orion.intel | fv3 | | +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 @@ -8,7 +8,7 @@ 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 | | +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 diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index d43f649dab..3d13d59cab 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -60,10 +60,10 @@ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug # 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 | + hera.gnu | fv3 | ####################################################################################################################################################################################### # Data Atmosphere tests ####################################################################################################################################################################################### -COMPILE | DATM=Y S2S=Y | standard | hera.gnu | fv3 | +COMPILE | DATM=Y S2S=Y | standard | + hera.gnu | fv3 | From 742bf4e1764bf787d257048e6ef9cda5e62b8aca Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Thu, 31 Dec 2020 12:14:46 -0500 Subject: [PATCH 051/109] Add checkpoint restarts for ufs-cpld (#342) * Adds 3 checkpoint restart tests for the ufs-cpld model * Drops the existing c92mx025 restart test * Adds cheyenne.intel as tested configuration for ufs-cpld and ufs-datm * Fixes instances of srf_data* in various fv3_conf files --- tests/RegressionTests_cheyenne.gnu.log | 50 +- tests/RegressionTests_cheyenne.intel.log | 966 ++++++++++++++++-- tests/RegressionTests_gaea.intel.log | 100 +- tests/RegressionTests_hera.gnu.log | 50 +- tests/RegressionTests_hera.intel.log | 288 +++--- tests/RegressionTests_jet.intel.log | 100 +- tests/RegressionTests_orion.intel.log | 278 +++-- tests/RegressionTests_wcoss_cray.log | 118 +-- tests/RegressionTests_wcoss_dell_p3.log | 278 +++-- tests/default_vars.sh | 4 + tests/fv3_conf/ccpp_control_run.IN | 4 +- tests/fv3_conf/ccpp_csawmg_run.IN | 6 +- tests/fv3_conf/ccpp_gfdlmp_run.IN | 4 +- tests/fv3_conf/ccpp_satmedmf_run.IN | 4 +- tests/fv3_conf/cpld_bmark_run.IN | 46 +- tests/fv3_conf/cpld_control_run.IN | 35 +- tests/fv3_conf/csawmg3shoc127_run.IN | 6 +- tests/fv3_conf/csawmg_run.IN | 6 +- tests/fv3_conf/csawmgshoc_run.IN | 6 +- tests/fv3_conf/fv3_run.IN | 4 +- tests/fv3_conf/gfdlmp_run.IN | 4 +- tests/fv3_conf/satmedmf_run.IN | 4 +- tests/fv3_conf/thompson_run.IN | 4 +- tests/fv3_conf/wsm6_run.IN | 6 +- tests/rt.conf | 113 +- tests/tests/cpld_bmark | 5 + tests/tests/cpld_bmark_35d | 2 + tests/tests/cpld_bmark_wave | 2 + tests/tests/cpld_bmark_wave_35d | 2 + tests/tests/cpld_control | 3 + tests/tests/cpld_control_12h | 64 -- tests/tests/cpld_control_c192 | 3 + tests/tests/cpld_control_c384 | 2 + tests/tests/cpld_control_mx025_12h | 109 -- tests/tests/cpld_controlfrac_c384 | 4 +- tests/tests/cpld_restart | 10 +- ...{cpld_control_mx025 => cpld_restart_bmark} | 90 +- .../{cpld_restart_mx025 => cpld_restart_c192} | 71 +- 38 files changed, 1802 insertions(+), 1049 deletions(-) delete mode 100644 tests/tests/cpld_control_12h delete mode 100644 tests/tests/cpld_control_mx025_12h rename tests/tests/{cpld_control_mx025 => cpld_restart_bmark} (61%) rename tests/tests/{cpld_restart_mx025 => cpld_restart_c192} (70%) diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 9f9f0c6205..24039f8087 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Tue Dec 29 13:55:14 MST 2020 +Wed Dec 30 15:40:51 MST 2020 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_gsd_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_multigases_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_46909/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_44876/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 Dec 29 14:15:17 MST 2020 -Elapsed time: 00h:20m:03s. Have a nice day! +Wed Dec 30 15:58:18 MST 2020 +Elapsed time: 00h:17m:27s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 2161bc3d97..ba3e59ec65 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Tue Dec 29 14:09:42 MST 2020 +Wed Dec 30 14:38:17 MST 2020 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_control_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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-20201223/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_decomp_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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-20201223/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_2threads_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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-20201223/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_restart_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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-20201223/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_stochy_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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-20201223/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_ca_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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-20201223/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_iau_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_iau_prod Checking test 014 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,7 +883,7 @@ Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_multigases_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -957,7 +957,7 @@ Test 016 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1025,7 +1025,7 @@ Test 017 fv3_ccpp_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_stretched_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1081,7 +1081,7 @@ Test 018 fv3_ccpp_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,7 +1148,7 @@ Test 019 fv3_ccpp_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1159,7 +1159,7 @@ Test 020 fv3_ccpp_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1168,7 +1168,7 @@ Test 021 fv3_ccpp_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1179,18 +1179,18 @@ Test 022 fv3_ccpp_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 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 phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1220,7 +1220,7 @@ Test 024 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_stretched_nest_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1240,7 +1240,7 @@ Test 025 fv3_ccpp_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1288,7 +1288,7 @@ Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1336,7 +1336,7 @@ Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1384,7 +1384,7 @@ Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1432,7 +1432,7 @@ Test 029 fv3_ccpp_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1480,7 +1480,7 @@ Test 030 fv3_ccpp_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,7 +1528,7 @@ Test 031 fv3_ccpp_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1576,7 +1576,7 @@ Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,7 +1628,7 @@ Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_cpt_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,7 +1682,7 @@ Test 034 fv3_ccpp_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gsd_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 035 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 036 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 037 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,7 +1978,7 @@ Test 038 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gocart_clm_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gocart_clm_prod Checking test 045 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2428,7 +2428,7 @@ Test 045 fv3_ccpp_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfs_v16beta_flake_prod Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2496,7 +2496,7 @@ Test 046 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2564,7 +2564,7 @@ Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2582,7 +2582,7 @@ Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfs_v15p2_debug_prod Checking test 049 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2650,7 +2650,7 @@ Test 049 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfs_v16beta_debug_prod Checking test 050 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2718,7 +2718,7 @@ Test 050 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 051 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2786,7 +2786,7 @@ Test 051 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2854,7 +2854,7 @@ Test 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gsd_debug_prod Checking test 053 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2922,7 +2922,7 @@ Test 053 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gsd_diag3d_debug_prod Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2990,7 +2990,7 @@ Test 054 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_thompson_debug_prod Checking test 055 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3058,7 +3058,7 @@ Test 055 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_thompson_no_aero_debug_prod Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3126,7 +3126,7 @@ Test 056 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3194,7 +3194,7 @@ Test 057 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3262,7 +3262,7 @@ Test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31317/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3279,6 +3279,844 @@ Checking test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_control_prod +Checking test 060 cpld_control results .... + 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 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 + 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 + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_restart_prod +Checking test 061 cpld_restart results .... + 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 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 + 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 + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_2threads_prod +Checking test 062 cpld_2threads results .... + 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 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 + 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_2threads PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_decomp_prod +Checking test 063 cpld_decomp results .... + 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 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 + 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_decomp PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_satmedmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_satmedmf_prod +Checking test 064 cpld_satmedmf results .... + 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 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 + 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_satmedmf PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_ca_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_ca_prod +Checking test 065 cpld_ca results .... + 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 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 + 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_ca PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_control_c192_prod +Checking test 066 cpld_control_c192 results .... + 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 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 + 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_control_c192 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_restart_c192_prod +Checking test 067 cpld_restart_c192 results .... + 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 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 + 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_restart_c192 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_control_c384_prod +Checking test 068 cpld_control_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 068 cpld_control_c384 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_controlfrac_c384_prod +Checking test 069 cpld_controlfrac_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 069 cpld_controlfrac_c384 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_bmark_prod +Checking test 070 cpld_bmark results .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 070 cpld_bmark PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_restart_bmark_prod +Checking test 071 cpld_restart_bmark results .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 071 cpld_restart_bmark PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_wave_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_bmark_wave_prod +Checking test 072 cpld_bmark_wave results .... + 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 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 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........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/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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 072 cpld_bmark_wave PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_debug_prod +Checking test 073 cpld_debug results .... + 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 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 + 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 073 cpld_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/datm_control_cfsr +Checking test 074 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 074 datm_control_cfsr PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/datm_restart_cfsr +Checking test 075 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 075 datm_restart_cfsr PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/datm_control_gefs +Checking test 076 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 076 datm_control_gefs PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/datm_bulk_cfsr +Checking test 077 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 077 datm_bulk_cfsr PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/datm_bulk_gefs +Checking test 078 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 078 datm_bulk_gefs PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/datm_mx025_cfsr +Checking test 079 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 079 datm_mx025_cfsr PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/datm_mx025_gefs +Checking test 080 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 080 datm_mx025_gefs PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_debug_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_30905/datm_debug_cfsr +Checking test 081 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 081 datm_debug_cfsr PASS + + REGRESSION TEST WAS SUCCESSFUL -Tue Dec 29 14:44:59 MST 2020 -Elapsed time: 00h:35m:17s. Have a nice day! +Wed Dec 30 15:37:30 MST 2020 +Elapsed time: 00h:59m:14s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 0ff68f0225..ae3dce9c93 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Tue Dec 29 15:53:59 EST 2020 +Wed Dec 30 16:34:59 EST 2020 Start Regression test baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/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-20201223/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_decomp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/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-20201223/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_2threads_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/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-20201223/INTEL/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_read_inc_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/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-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/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-20201223/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_stochy_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/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-20201223/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_lheatstrg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -747,7 +747,7 @@ Test 013 fv3_ccpp_lheatstrg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_multigases_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -821,7 +821,7 @@ Test 014 fv3_ccpp_multigases PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_control_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -889,7 +889,7 @@ Test 015 fv3_ccpp_control_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_stretched_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -945,7 +945,7 @@ Test 016 fv3_ccpp_stretched PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_stretched_nest_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,7 +1012,7 @@ Test 017 fv3_ccpp_stretched_nest PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_regional_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1023,7 +1023,7 @@ Test 018 fv3_ccpp_regional_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_regional_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1032,7 +1032,7 @@ Test 019 fv3_ccpp_regional_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_regional_quilt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1043,18 +1043,18 @@ Test 020 fv3_ccpp_regional_quilt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 021 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 phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK Test 021 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_control_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_control_debug_prod Checking test 022 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1084,7 +1084,7 @@ Test 022 fv3_ccpp_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_stretched_nest_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_stretched_nest_debug_prod Checking test 023 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1104,7 +1104,7 @@ Test 023 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gfdlmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gfdlmp_prod Checking test 024 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1152,7 +1152,7 @@ Test 024 fv3_ccpp_gfdlmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gfdlmprad_gwd_prod Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1200,7 +1200,7 @@ Test 025 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1248,7 +1248,7 @@ Test 026 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_csawmg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1296,7 +1296,7 @@ Test 027 fv3_ccpp_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_satmedmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1344,7 +1344,7 @@ Test 028 fv3_ccpp_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_satmedmfq_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1392,7 +1392,7 @@ Test 029 fv3_ccpp_satmedmfq PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1440,7 +1440,7 @@ Test 030 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_cpt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_cpt_prod Checking test 031 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1494,7 +1494,7 @@ Test 031 fv3_ccpp_cpt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gsd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gsd_prod Checking test 032 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1586,7 +1586,7 @@ Test 032 fv3_ccpp_gsd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_thompson_prod Checking test 033 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1654,7 +1654,7 @@ Test 033 fv3_ccpp_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_thompson_no_aero_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_thompson_no_aero_prod Checking test 034 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,7 +1722,7 @@ Test 034 fv3_ccpp_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_rrfs_v1beta_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_rrfs_v1beta_prod Checking test 035 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1790,7 +1790,7 @@ Test 035 fv3_ccpp_rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gocart_clm_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gocart_clm_prod Checking test 036 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1838,7 +1838,7 @@ Test 036 fv3_ccpp_gocart_clm PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gfs_v16beta_flake_prod Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1906,7 +1906,7 @@ Test 037 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 038 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1974,7 +1974,7 @@ Test 038 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1992,7 +1992,7 @@ Test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gsd_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gsd_debug_prod Checking test 040 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2060,7 +2060,7 @@ Test 040 fv3_ccpp_gsd_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gsd_diag3d_debug_prod Checking test 041 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2128,7 +2128,7 @@ Test 041 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_thompson_debug_prod Checking test 042 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2196,7 +2196,7 @@ Test 042 fv3_ccpp_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_thompson_no_aero_debug_prod Checking test 043 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2264,7 +2264,7 @@ Test 043 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 044 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2332,7 +2332,7 @@ Test 044 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2400,7 +2400,7 @@ Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13219/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2418,5 +2418,5 @@ Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 29 16:49:06 EST 2020 -Elapsed time: 00h:55m:08s. Have a nice day! +Wed Dec 30 17:11:13 EST 2020 +Elapsed time: 00h:36m:15s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 8905fb8d56..d2ad736b71 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Tue Dec 29 22:41:23 UTC 2020 +Thu Dec 31 13:02:03 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_30433/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/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 Dec 29 23:05:27 UTC 2020 -Elapsed time: 00h:24m:05s. Have a nice day! +Thu Dec 31 13:26:05 UTC 2020 +Elapsed time: 00h:24m:02s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 9b259642b4..0fc59eba9c 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Tue Dec 29 21:49:53 UTC 2020 +Wed Dec 30 21:26:56 UTC 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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-20201223/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -2779,7 +2779,7 @@ Test 051 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -2827,7 +2827,7 @@ Test 052 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -2875,7 +2875,7 @@ Test 053 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -2943,7 +2943,7 @@ Test 054 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -3011,7 +3011,7 @@ Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -3029,7 +3029,7 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -3097,7 +3097,7 @@ Test 057 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -3165,7 +3165,7 @@ Test 058 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -3233,7 +3233,7 @@ Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -3301,7 +3301,7 @@ Test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -3369,7 +3369,7 @@ Test 061 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -3437,7 +3437,7 @@ Test 062 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -3505,7 +3505,7 @@ Test 063 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -3573,7 +3573,7 @@ Test 064 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -3641,7 +3641,7 @@ Test 065 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -3709,7 +3709,7 @@ Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -3727,7 +3727,7 @@ Test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_control_prod Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3780,8 +3780,8 @@ Test 068 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_2threads_prod -Checking test 069 cpld_2threads results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_restart_prod +Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3829,12 +3829,12 @@ Checking test 069 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 069 cpld_2threads PASS +Test 069 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_decomp_prod -Checking test 070 cpld_decomp results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_2threads_prod +Checking test 070 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3882,12 +3882,12 @@ Checking test 070 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 070 cpld_decomp PASS +Test 070 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_satmedmf_prod -Checking test 071 cpld_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_decomp_prod +Checking test 071 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3935,12 +3935,12 @@ Checking test 071 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 071 cpld_satmedmf PASS +Test 071 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_ca_prod -Checking test 072 cpld_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_satmedmf_prod +Checking test 072 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3988,12 +3988,12 @@ Checking test 072 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 072 cpld_ca PASS +Test 072 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_control_mx025_prod -Checking test 073 cpld_control_mx025 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_ca_prod +Checking test 073 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4039,29 +4039,26 @@ Checking test 073 cpld_control_mx025 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_control_mx025 PASS +Test 073 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_control_mx025_12h_prod -Checking test 074 cpld_control_mx025_12h results .... - 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 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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_control_c192_prod +Checking test 074 cpld_control_c192 results .... + 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 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 @@ -4095,17 +4092,14 @@ Checking test 074 cpld_control_mx025_12h results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-03-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -Test 074 cpld_control_mx025_12h PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 074 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_restart_mx025_prod -Checking test 075 cpld_restart_mx025 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_restart_c192_prod +Checking test 075 cpld_restart_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4151,17 +4145,14 @@ Checking test 075 cpld_restart_mx025 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_restart_mx025 PASS +Test 075 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_control_c192_prod -Checking test 076 cpld_control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_control_c384_prod +Checking test 076 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4207,14 +4198,17 @@ Checking test 076 cpld_control_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_control_c192 PASS +Test 076 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_control_c384_prod -Checking test 077 cpld_control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/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 @@ -4265,12 +4259,12 @@ Checking test 077 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 077 cpld_control_c384 PASS +Test 077 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_controlfrac_c384_prod -Checking test 078 cpld_controlfrac_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_bmark_prod +Checking test 078 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4319,14 +4313,14 @@ Checking test 078 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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_controlfrac_c384 PASS + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 078 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_bmark_prod -Checking test 079 cpld_bmark results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_restart_bmark_prod +Checking test 079 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4377,11 +4371,11 @@ 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 079 cpld_restart_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_bmark_wave_prod Checking test 080 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4440,7 +4434,7 @@ Test 080 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_debug_prod Checking test 081 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4493,7 +4487,7 @@ Test 081 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/datm_control_cfsr Checking test 082 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4502,7 +4496,7 @@ Test 082 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/datm_restart_cfsr Checking test 083 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4511,7 +4505,7 @@ Test 083 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/datm_control_gefs Checking test 084 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4520,7 +4514,7 @@ Test 084 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/datm_bulk_cfsr Checking test 085 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4529,7 +4523,7 @@ Test 085 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/datm_bulk_gefs Checking test 086 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4538,7 +4532,7 @@ Test 086 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/datm_mx025_cfsr Checking test 087 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4550,7 +4544,7 @@ Test 087 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/datm_mx025_gefs Checking test 088 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4562,7 +4556,7 @@ Test 088 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_100451/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/datm_debug_cfsr Checking test 089 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -4571,5 +4565,5 @@ Test 089 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 29 22:36:32 UTC 2020 -Elapsed time: 00h:46m:39s. Have a nice day! +Wed Dec 30 22:52:03 UTC 2020 +Elapsed time: 01h:25m:08s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index d93bfd645e..4f8cec76a2 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Tue Dec 29 20:54:38 GMT 2020 +Wed Dec 30 21:35:33 GMT 2020 Start Regression test baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/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-20201223/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_decomp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_2threads_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/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-20201223/INTEL/fv3_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_read_inc_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/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 @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/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-20201223/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/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-20201223/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_iau_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_lheatstrg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,7 +815,7 @@ Test 014 fv3_ccpp_lheatstrg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_multigases_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -889,7 +889,7 @@ Test 015 fv3_ccpp_multigases PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_control_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -957,7 +957,7 @@ Test 016 fv3_ccpp_control_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_stretched_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1013,7 +1013,7 @@ Test 017 fv3_ccpp_stretched PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_stretched_nest_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,7 +1080,7 @@ Test 018 fv3_ccpp_stretched_nest PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_regional_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -1091,7 +1091,7 @@ Test 019 fv3_ccpp_regional_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_regional_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1100,7 +1100,7 @@ Test 020 fv3_ccpp_regional_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_regional_quilt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1111,7 +1111,7 @@ Test 021 fv3_ccpp_regional_quilt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1122,7 +1122,7 @@ Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_control_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1152,7 +1152,7 @@ Test 023 fv3_ccpp_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_stretched_nest_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1172,7 +1172,7 @@ Test 024 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gfdlmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1220,7 +1220,7 @@ Test 025 fv3_ccpp_gfdlmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1268,7 +1268,7 @@ Test 026 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1316,7 +1316,7 @@ Test 027 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1364,7 +1364,7 @@ Test 028 fv3_ccpp_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_satmedmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1412,7 +1412,7 @@ Test 029 fv3_ccpp_satmedmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_satmedmfq_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1460,7 +1460,7 @@ Test 030 fv3_ccpp_satmedmfq PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1508,7 +1508,7 @@ Test 031 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_cpt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1562,7 +1562,7 @@ Test 032 fv3_ccpp_cpt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gsd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1654,7 +1654,7 @@ Test 033 fv3_ccpp_gsd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,7 +1722,7 @@ Test 034 fv3_ccpp_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_thompson_no_aero_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1790,7 +1790,7 @@ Test 035 fv3_ccpp_thompson_no_aero PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gocart_clm_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gocart_clm_prod Checking test 036 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1838,7 +1838,7 @@ Test 036 fv3_ccpp_gocart_clm PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gfs_v16beta_flake_prod Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1906,7 +1906,7 @@ Test 037 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 038 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1974,7 +1974,7 @@ Test 038 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1992,7 +1992,7 @@ Test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gsd_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gsd_debug_prod Checking test 040 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2060,7 +2060,7 @@ Test 040 fv3_ccpp_gsd_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gsd_diag3d_debug_prod Checking test 041 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2128,7 +2128,7 @@ Test 041 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_thompson_debug_prod Checking test 042 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2196,7 +2196,7 @@ Test 042 fv3_ccpp_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_thompson_no_aero_debug_prod Checking test 043 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2264,7 +2264,7 @@ Test 043 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 044 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2332,7 +2332,7 @@ Test 044 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2400,7 +2400,7 @@ Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_253640/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2418,5 +2418,5 @@ Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 29 23:13:57 GMT 2020 -Elapsed time: 02h:19m:20s. Have a nice day! +Wed Dec 30 23:44:18 GMT 2020 +Elapsed time: 02h:08m:51s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index e3ed3104d4..b23c499dc1 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Tue Dec 29 15:44:52 CST 2020 +Wed Dec 30 15:30:05 CST 2020 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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-20201223/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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-20201223/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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-20201223/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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-20201223/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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-20201223/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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-20201223/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_iau_prod Checking test 014 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -835,7 +835,7 @@ Test 014 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,7 +884,7 @@ Test 015 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_multigases_prod Checking test 018 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1056,7 +1056,7 @@ Test 018 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_control_32bit_prod Checking test 019 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,7 +1124,7 @@ Test 019 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_stretched_prod Checking test 020 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1180,7 +1180,7 @@ Test 020 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_stretched_nest_prod Checking test 021 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,7 +1247,7 @@ Test 021 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_regional_control_prod Checking test 022 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1258,7 +1258,7 @@ Test 022 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_regional_restart_prod Checking test 023 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1267,7 +1267,7 @@ Test 023 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_regional_quilt_prod Checking test 024 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1278,7 +1278,7 @@ Test 024 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1289,7 +1289,7 @@ Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_control_debug_prod Checking test 026 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1319,7 +1319,7 @@ Test 026 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_stretched_nest_debug_prod Checking test 027 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1339,7 +1339,7 @@ Test 027 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1387,7 +1387,7 @@ Test 028 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1435,7 +1435,7 @@ Test 029 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1483,7 +1483,7 @@ Test 030 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1531,7 +1531,7 @@ Test 031 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,7 +1579,7 @@ Test 032 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -1627,7 +1627,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -1679,7 +1679,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1733,7 +1733,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1825,7 +1825,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1893,7 +1893,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -1961,7 +1961,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2029,7 +2029,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfs_v15p2_prod Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2097,7 +2097,7 @@ Test 040 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfs_v16beta_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfs_v16beta_prod Checking test 041 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2177,7 +2177,7 @@ Test 041 fv3_ccpp_gfs_v16beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfs_v16beta_restart_prod Checking test 042 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2227,7 +2227,7 @@ Test 042 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 043 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2295,7 +2295,7 @@ Test 043 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2363,7 +2363,7 @@ Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2431,7 +2431,7 @@ Test 045 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -2479,7 +2479,7 @@ Test 046 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -2527,7 +2527,7 @@ Test 047 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -2575,7 +2575,7 @@ Test 048 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -2643,7 +2643,7 @@ Test 049 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -2711,7 +2711,7 @@ Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -2729,7 +2729,7 @@ Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -2797,7 +2797,7 @@ Test 052 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -2865,7 +2865,7 @@ Test 053 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -2933,7 +2933,7 @@ Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -3001,7 +3001,7 @@ Test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -3069,7 +3069,7 @@ Test 056 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -3137,7 +3137,7 @@ Test 057 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -3205,7 +3205,7 @@ Test 058 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -3273,7 +3273,7 @@ Test 059 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -3341,7 +3341,7 @@ Test 060 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -3409,7 +3409,7 @@ Test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/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 @@ -3427,7 +3427,7 @@ Test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_control_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_control_prod Checking test 063 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3480,8 +3480,8 @@ Test 063 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_2threads_prod -Checking test 064 cpld_2threads results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_restart_prod +Checking test 064 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3529,12 +3529,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 064 cpld_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_decomp_prod -Checking test 065 cpld_decomp results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_2threads_prod +Checking test 065 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3582,12 +3582,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 065 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_satmedmf_prod -Checking test 066 cpld_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_decomp_prod +Checking test 066 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3635,12 +3635,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 066 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_ca_prod -Checking test 067 cpld_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_satmedmf_prod +Checking test 067 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3688,12 +3688,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 067 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_control_mx025_prod -Checking test 068 cpld_control_mx025 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_ca_prod +Checking test 068 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3739,29 +3739,26 @@ Checking test 068 cpld_control_mx025 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 068 cpld_control_mx025 PASS +Test 068 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_control_mx025_12h_prod -Checking test 069 cpld_control_mx025_12h results .... - 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 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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_control_c192_prod +Checking test 069 cpld_control_c192 results .... + 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 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 @@ -3795,17 +3792,14 @@ Checking test 069 cpld_control_mx025_12h results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-03-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -Test 069 cpld_control_mx025_12h PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 069 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_restart_mx025_prod -Checking test 070 cpld_restart_mx025 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_restart_c192_prod +Checking test 070 cpld_restart_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3851,17 +3845,14 @@ Checking test 070 cpld_restart_mx025 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_restart_mx025 PASS +Test 070 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_control_c192_prod -Checking test 071 cpld_control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_control_c384_prod +Checking test 071 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3907,14 +3898,17 @@ Checking test 071 cpld_control_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_control_c192 PASS +Test 071 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_control_c384_prod -Checking test 072 cpld_control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_controlfrac_c384_prod +Checking test 072 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3965,12 +3959,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 072 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_controlfrac_c384_prod -Checking test 073 cpld_controlfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_bmark_prod +Checking test 073 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4019,14 +4013,14 @@ Checking test 073 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 073 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_bmark_prod -Checking test 074 cpld_bmark results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_restart_bmark_prod +Checking test 074 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4077,11 +4071,11 @@ Checking test 074 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 074 cpld_bmark PASS +Test 074 cpld_restart_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_bmark_wave_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_bmark_wave_prod Checking test 075 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4140,7 +4134,7 @@ Test 075 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/cpld_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_debug_prod Checking test 076 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4193,7 +4187,7 @@ Test 076 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/datm_control_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/datm_control_cfsr Checking test 077 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4202,7 +4196,7 @@ Test 077 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/datm_restart_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/datm_restart_cfsr Checking test 078 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4211,7 +4205,7 @@ Test 078 datm_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/datm_control_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/datm_control_gefs Checking test 079 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4220,7 +4214,7 @@ Test 079 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/datm_bulk_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/datm_bulk_cfsr Checking test 080 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4229,7 +4223,7 @@ Test 080 datm_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/datm_bulk_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/datm_bulk_gefs Checking test 081 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4238,7 +4232,7 @@ Test 081 datm_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/datm_mx025_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/datm_mx025_cfsr Checking test 082 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4250,7 +4244,7 @@ Test 082 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/datm_mx025_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/datm_mx025_gefs Checking test 083 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4262,7 +4256,7 @@ Test 083 datm_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_392508/datm_debug_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/datm_debug_cfsr Checking test 084 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -4271,5 +4265,5 @@ Test 084 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 29 17:06:28 CST 2020 -Elapsed time: 01h:21m:36s. Have a nice day! +Wed Dec 30 16:38:42 CST 2020 +Elapsed time: 01h:08m:38s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 1cb32dafd8..cdd184b2af 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Tue Dec 29 19:47:33 UTC 2020 +Thu Dec 31 00:03:01 UTC 2020 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/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-20201223/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/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-20201223/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/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-20201223/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/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-20201223/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/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-20201223/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/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-20201223/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/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-20201223/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/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-20201223/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/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-20201223/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/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-20201223/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/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-20201223/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/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-20201223/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,7 +815,7 @@ Test 014 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_multigases_prod Checking test 015 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -889,7 +889,7 @@ Test 015 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_control_32bit_prod Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -957,7 +957,7 @@ Test 016 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_stretched_prod Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1013,7 +1013,7 @@ Test 017 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_stretched_nest_prod Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,7 +1080,7 @@ Test 018 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_regional_control_prod Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1091,7 +1091,7 @@ Test 019 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_regional_restart_prod Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1100,7 +1100,7 @@ Test 020 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_regional_quilt_prod Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1111,7 +1111,7 @@ Test 021 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1122,7 +1122,7 @@ Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_control_debug_prod Checking test 023 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1152,7 +1152,7 @@ Test 023 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_stretched_nest_debug_prod Checking test 024 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1172,7 +1172,7 @@ Test 024 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1220,7 +1220,7 @@ Test 025 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1268,7 +1268,7 @@ Test 026 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1316,7 +1316,7 @@ Test 027 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1364,7 +1364,7 @@ Test 028 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1412,7 +1412,7 @@ Test 029 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1460,7 +1460,7 @@ Test 030 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1508,7 +1508,7 @@ Test 031 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1560,7 +1560,7 @@ Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1614,7 +1614,7 @@ Test 033 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1706,7 +1706,7 @@ Test 034 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 035 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 036 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_rrfs_v1beta_prod Checking test 037 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 037 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfs_v16beta_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfs_v16beta_prod Checking test 038 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1990,7 +1990,7 @@ Test 038 fv3_ccpp_gfs_v16beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfs_v16beta_restart_prod Checking test 039 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2040,7 +2040,7 @@ Test 039 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfs_v16beta_stochy_prod Checking test 040 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2108,7 +2108,7 @@ Test 040 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2176,7 +2176,7 @@ Test 041 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfsv16_csawmg_prod Checking test 042 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2224,7 +2224,7 @@ Test 042 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfsv16_csawmgt_prod Checking test 043 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2272,7 +2272,7 @@ Test 043 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gocart_clm_prod Checking test 044 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2320,7 +2320,7 @@ Test 044 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfs_v16beta_flake_prod Checking test 045 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2388,7 +2388,7 @@ Test 045 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2456,7 +2456,7 @@ Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2474,7 +2474,7 @@ Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfs_v16beta_debug_prod Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2542,7 +2542,7 @@ Test 048 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2610,7 +2610,7 @@ Test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gsd_debug_prod Checking test 050 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2678,7 +2678,7 @@ Test 050 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gsd_diag3d_debug_prod Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2746,7 +2746,7 @@ Test 051 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_thompson_debug_prod Checking test 052 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2814,7 +2814,7 @@ Test 052 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_thompson_no_aero_debug_prod Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2882,7 +2882,7 @@ Test 053 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2950,7 +2950,7 @@ Test 054 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3018,7 +3018,7 @@ Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_13402/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3036,5 +3036,5 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 29 20:28:54 UTC 2020 -Elapsed time: 00h:41m:21s. Have a nice day! +Thu Dec 31 00:44:38 UTC 2020 +Elapsed time: 00h:41m:38s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index cf9b5db678..8dfb4b322f 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Tue Dec 29 19:46:20 UTC 2020 +Wed Dec 30 23:59:07 UTC 2020 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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-20201223/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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-20201223/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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-20201223/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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-20201223/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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-20201223/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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-20201223/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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-20201223/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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 ............ALT CHECK......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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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-20201223/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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-20201223/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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-20201223/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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-20201223/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_iau_prod Checking test 013 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_lheatstrg_prod Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -815,7 +815,7 @@ Test 014 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfdlmprad_prod Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -864,7 +864,7 @@ Test 015 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -913,7 +913,7 @@ Test 016 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -987,7 +987,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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 @@ -1055,7 +1055,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1111,7 +1111,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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 @@ -1178,7 +1178,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1189,7 +1189,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1198,7 +1198,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1209,18 +1209,18 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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 dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1250,7 +1250,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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 @@ -1270,7 +1270,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1318,7 +1318,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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 @@ -1366,7 +1366,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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 @@ -1414,7 +1414,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1462,7 +1462,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1510,7 +1510,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1558,7 +1558,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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 @@ -1606,7 +1606,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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 @@ -1658,7 +1658,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1712,7 +1712,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1804,7 +1804,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1872,7 +1872,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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 @@ -1940,7 +1940,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2008,7 +2008,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfs_v16beta_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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 @@ -2088,7 +2088,7 @@ Test 040 fv3_ccpp_gfs_v16beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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 @@ -2138,7 +2138,7 @@ Test 041 fv3_ccpp_gfs_v16beta_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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 @@ -2206,7 +2206,7 @@ Test 042 fv3_ccpp_gfs_v16beta_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfs_v16beta_RRTMGP_prod Checking test 043 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,7 +2274,7 @@ Test 043 fv3_ccpp_gfs_v16beta_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/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 @@ -2322,7 +2322,7 @@ Test 044 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfsv16_csawmgt_prod Checking test 045 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2370,7 +2370,7 @@ Test 045 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gocart_clm_prod Checking test 046 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2418,7 +2418,7 @@ Test 046 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfs_v16beta_flake_prod Checking test 047 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2486,7 +2486,7 @@ Test 047 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2554,7 +2554,7 @@ Test 048 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2572,7 +2572,7 @@ Test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfs_v16beta_debug_prod Checking test 050 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2640,7 +2640,7 @@ Test 050 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2708,7 +2708,7 @@ Test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gsd_debug_prod Checking test 052 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2776,7 +2776,7 @@ Test 052 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gsd_diag3d_debug_prod Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2844,7 +2844,7 @@ Test 053 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_thompson_debug_prod Checking test 054 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2912,7 +2912,7 @@ Test 054 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_thompson_no_aero_debug_prod Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2980,7 +2980,7 @@ Test 055 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3048,7 +3048,7 @@ Test 056 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3116,7 +3116,7 @@ Test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3134,7 +3134,7 @@ Test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_control_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_control_prod Checking test 059 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3187,8 +3187,8 @@ Test 059 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_2threads_prod -Checking test 060 cpld_2threads results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_restart_prod +Checking test 060 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3236,12 +3236,12 @@ Checking test 060 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 060 cpld_2threads PASS +Test 060 cpld_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_decomp_prod -Checking test 061 cpld_decomp results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_2threads_prod +Checking test 061 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3289,12 +3289,12 @@ Checking test 061 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 061 cpld_decomp PASS +Test 061 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_satmedmf_prod -Checking test 062 cpld_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_decomp_prod +Checking test 062 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3342,12 +3342,12 @@ Checking test 062 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 062 cpld_satmedmf PASS +Test 062 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_ca_prod -Checking test 063 cpld_ca results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_satmedmf_prod +Checking test 063 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3395,12 +3395,12 @@ Checking test 063 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 063 cpld_ca PASS +Test 063 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_control_mx025_prod -Checking test 064 cpld_control_mx025 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_ca_prod +Checking test 064 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3446,29 +3446,26 @@ Checking test 064 cpld_control_mx025 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 064 cpld_control_mx025 PASS +Test 064 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_control_mx025_12h_prod -Checking test 065 cpld_control_mx025_12h results .... - 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 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 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_control_c192_prod +Checking test 065 cpld_control_c192 results .... + 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 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 @@ -3502,17 +3499,14 @@ Checking test 065 cpld_control_mx025_12h results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-03-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -Test 065 cpld_control_mx025_12h PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 065 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_restart_mx025_prod -Checking test 066 cpld_restart_mx025 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_restart_c192_prod +Checking test 066 cpld_restart_c192 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3558,17 +3552,14 @@ Checking test 066 cpld_restart_mx025 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 066 cpld_restart_mx025 PASS +Test 066 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_control_c192_prod -Checking test 067 cpld_control_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_control_c384_prod +Checking test 067 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3614,14 +3605,17 @@ Checking test 067 cpld_control_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 067 cpld_control_c192 PASS +Test 067 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_control_c384_prod -Checking test 068 cpld_control_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_controlfrac_c384_prod +Checking test 068 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3672,12 +3666,12 @@ Checking test 068 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 068 cpld_control_c384 PASS +Test 068 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_controlfrac_c384_prod -Checking test 069 cpld_controlfrac_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_bmark_prod +Checking test 069 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3726,14 +3720,14 @@ Checking test 069 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 069 cpld_controlfrac_c384 PASS + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 069 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_bmark_prod -Checking test 070 cpld_bmark results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_restart_bmark_prod +Checking test 070 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3784,11 +3778,11 @@ Checking test 070 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 070 cpld_bmark PASS +Test 070 cpld_restart_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_bmark_wave_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_bmark_wave_prod Checking test 071 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3847,7 +3841,7 @@ Test 071 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/cpld_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_debug_prod Checking test 072 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3900,7 +3894,7 @@ Test 072 cpld_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/datm_control_cfsr Checking test 073 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3909,7 +3903,7 @@ Test 073 datm_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/datm_restart_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/datm_restart_cfsr Checking test 074 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3918,7 +3912,7 @@ Test 074 datm_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/datm_control_gefs Checking test 075 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3927,7 +3921,7 @@ Test 075 datm_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/datm_bulk_cfsr Checking test 076 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3936,7 +3930,7 @@ Test 076 datm_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/datm_bulk_gefs Checking test 077 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -3945,7 +3939,7 @@ Test 077 datm_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/datm_mx025_cfsr Checking test 078 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3957,7 +3951,7 @@ Test 078 datm_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/datm_mx025_gefs Checking test 079 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3969,7 +3963,7 @@ Test 079 datm_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40119/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/datm_debug_cfsr Checking test 080 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -3978,5 +3972,5 @@ Test 080 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 29 21:29:06 UTC 2020 -Elapsed time: 01h:42m:48s. Have a nice day! +Thu Dec 31 01:29:33 UTC 2020 +Elapsed time: 01h:30m:28s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 50ccfda076..7490a2c292 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -523,6 +523,10 @@ export FRAZIL_FWSALT='.true.' # default to write CICE average history files export CICE_HIST_AVG='.true.' +# checkpoint restarts +export RESTART_FILE_PREFIX='' +export RESTART_FILE_SUFFIX_HRS='' +export RESTART_FILE_SUFFIX_SECS='' export RT35D='' } export_35d_run () diff --git a/tests/fv3_conf/ccpp_control_run.IN b/tests/fv3_conf/ccpp_control_run.IN index 2674844a89..31cea3831d 100644 --- a/tests/fv3_conf/ccpp_control_run.IN +++ b/tests/fv3_conf/ccpp_control_run.IN @@ -24,8 +24,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) diff --git a/tests/fv3_conf/ccpp_csawmg_run.IN b/tests/fv3_conf/ccpp_csawmg_run.IN index c2258f677c..073cdb250c 100644 --- a/tests/fv3_conf/ccpp_csawmg_run.IN +++ b/tests/fv3_conf/ccpp_csawmg_run.IN @@ -14,8 +14,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) @@ -31,7 +31,7 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgrs diag_table #cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgrs field_table diff --git a/tests/fv3_conf/ccpp_gfdlmp_run.IN b/tests/fv3_conf/ccpp_gfdlmp_run.IN index b1ac9a1e49..1a2fbeae9c 100644 --- a/tests/fv3_conf/ccpp_gfdlmp_run.IN +++ b/tests/fv3_conf/ccpp_gfdlmp_run.IN @@ -14,8 +14,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) diff --git a/tests/fv3_conf/ccpp_satmedmf_run.IN b/tests/fv3_conf/ccpp_satmedmf_run.IN index ecd6c52c93..400eca407f 100644 --- a/tests/fv3_conf/ccpp_satmedmf_run.IN +++ b/tests/fv3_conf/ccpp_satmedmf_run.IN @@ -24,8 +24,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) diff --git a/tests/fv3_conf/cpld_bmark_run.IN b/tests/fv3_conf/cpld_bmark_run.IN index 0a423e40fb..eea57f2f27 100644 --- a/tests/fv3_conf/cpld_bmark_run.IN +++ b/tests/fv3_conf/cpld_bmark_run.IN @@ -52,9 +52,43 @@ if [[ $CPLWAV == .T. && $CPLWAV2ATM == .T. ]]; then fi fi -# ICs -cp @[INPUTDATA_ROOT]/${FV3_IC}/sfc_data*.nc ./INPUT -cp @[INPUTDATA_ROOT]/${FV3_IC}/gfs_data*.nc ./INPUT -cp @[INPUTDATA_ROOT]/${MOM6_IC}/MOM*.nc ./INPUT -# the BM ICs are still named cice5 and need to remain so until P5.0 is completed -cp @[INPUTDATA_ROOT]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc +# No restart +if [ $WARM_START = .F. ]; then + # ICs + cp @[INPUTDATA_ROOT]/${FV3_IC}/sfc_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/${FV3_IC}/gfs_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/${MOM6_IC}/MOM*.nc ./INPUT + # the BM ICs are still named cice5 and need to remain so until P5.0 is completed + cp @[INPUTDATA_ROOT]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc +else + # NOTE: bmark-wave model is not currently tested for restart + # Restart files + cp -r ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* + for RFILE in ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + + # Restart files MOM6 mx025 + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00.nc ./INPUT/MOM.res.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_1.nc ./INPUT/MOM.res_1.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_2.nc ./INPUT/MOM.res_2.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_3.nc ./INPUT/MOM.res_3.nc + + # CMEPS restart and pointer files + RFILE="ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc" + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RFILE} . + ls -1 ${RFILE}>rpointer.cpl + + # CICE restart and pointer files + RFILE="iced.${RESTART_FILE_SUFFIX_SECS}.nc" + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RFILE} ./INPUT + ls -1 "./INPUT/"${RFILE}>ice.restart_file +fi diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index 35c4e42d73..5ee7a6ec43 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -55,19 +55,36 @@ if [ $WARM_START = .F. ]; then # Restart else # Restart files - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/coupler.res ./INPUT - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/fv_*.nc ./INPUT - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/sfc_data*.nc ./INPUT - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/phy_data*.nc ./INPUT - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM*.nc ./INPUT + cp -r ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* + for RFILE in ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + + #if not mx025, then mom6 restart is a single file + if [[ $OCNRES == '025' ]]; then + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00.nc ./INPUT/MOM.res.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_1.nc ./INPUT/MOM.res_1.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_2.nc ./INPUT/MOM.res_2.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_3.nc ./INPUT/MOM.res_3.nc + else + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00.nc ./INPUT/MOM.res.nc + fi # CMEPS restart and pointer files - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc . - RFILE="ufs.cpld.cpl.r.2016-10-03-43200.nc" + RFILE="ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc" + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RFILE} . ls -1 ${RFILE}>rpointer.cpl # CICE restart and pointer files - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/iced.2016-10-03-43200.nc ./INPUT - RFILE="iced.2016-10-03-43200.nc" + RFILE="iced.${RESTART_FILE_SUFFIX_SECS}.nc" + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RFILE} ./INPUT ls -1 "./INPUT/"${RFILE}>ice.restart_file fi diff --git a/tests/fv3_conf/csawmg3shoc127_run.IN b/tests/fv3_conf/csawmg3shoc127_run.IN index c9b60d7a1f..bc57248a2e 100644 --- a/tests/fv3_conf/csawmg3shoc127_run.IN +++ b/tests/fv3_conf/csawmg3shoc127_run.IN @@ -13,8 +13,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) @@ -30,7 +30,7 @@ cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 cp @[INPUTDATA_ROOT]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . cp @[INPUTDATA_ROOT]/${inputdir}/*_table . cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_mg3tke diag_table cp @[INPUTDATA_ROOT]/${inputdir}/field_table_csawmg3shoc field_table diff --git a/tests/fv3_conf/csawmg_run.IN b/tests/fv3_conf/csawmg_run.IN index 3440732bd7..28b700f31d 100644 --- a/tests/fv3_conf/csawmg_run.IN +++ b/tests/fv3_conf/csawmg_run.IN @@ -12,8 +12,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) @@ -29,7 +29,7 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgrs diag_table #cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgrs field_table diff --git a/tests/fv3_conf/csawmgshoc_run.IN b/tests/fv3_conf/csawmgshoc_run.IN index 60b20c5336..2be94b3c25 100644 --- a/tests/fv3_conf/csawmgshoc_run.IN +++ b/tests/fv3_conf/csawmgshoc_run.IN @@ -12,8 +12,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) @@ -29,7 +29,7 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgtkers diag_table #cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgtkers field_table diff --git a/tests/fv3_conf/fv3_run.IN b/tests/fv3_conf/fv3_run.IN index 98c6e41d29..b7746cb402 100644 --- a/tests/fv3_conf/fv3_run.IN +++ b/tests/fv3_conf/fv3_run.IN @@ -24,8 +24,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) diff --git a/tests/fv3_conf/gfdlmp_run.IN b/tests/fv3_conf/gfdlmp_run.IN index fc31ec0208..92a19ba1c7 100644 --- a/tests/fv3_conf/gfdlmp_run.IN +++ b/tests/fv3_conf/gfdlmp_run.IN @@ -13,8 +13,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) diff --git a/tests/fv3_conf/satmedmf_run.IN b/tests/fv3_conf/satmedmf_run.IN index 566667e696..c62aa9ce79 100644 --- a/tests/fv3_conf/satmedmf_run.IN +++ b/tests/fv3_conf/satmedmf_run.IN @@ -24,8 +24,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) diff --git a/tests/fv3_conf/thompson_run.IN b/tests/fv3_conf/thompson_run.IN index fa7fdca24f..d9a0649dd0 100644 --- a/tests/fv3_conf/thompson_run.IN +++ b/tests/fv3_conf/thompson_run.IN @@ -13,8 +13,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) diff --git a/tests/fv3_conf/wsm6_run.IN b/tests/fv3_conf/wsm6_run.IN index 9f6f1065e2..00e8aeeb52 100644 --- a/tests/fv3_conf/wsm6_run.IN +++ b/tests/fv3_conf/wsm6_run.IN @@ -12,8 +12,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) @@ -28,7 +28,7 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . -cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_wsm6 diag_table cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_wsm6 field_table diff --git a/tests/rt.conf b/tests/rt.conf index 8b0f02b1b9..313aa7cc14 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -125,74 +125,45 @@ 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 | -############################################################################################################################################################################################## -# CPLD tests # -############################################################################################################################################################################################## - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -#COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | cheyenne.intel | fv3 | -RUN | cpld_control | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -# following two tests are not run on any platform -#RUN | cpld_control_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_restart | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_12h -RUN | cpld_2threads | standard | + hera.intel orion.intel wcoss_dell_p3 | | -RUN | cpld_decomp | standard | + hera.intel orion.intel wcoss_dell_p3 | | -RUN | cpld_satmedmf | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_ca | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_control | standard | cheyenne.intel | fv3 | -#RUN | cpld_2threads | standard | cheyenne.intel | | -#RUN | cpld_decomp | standard | cheyenne.intel | | -#RUN | cpld_satmedmf | standard | cheyenne.intel | fv3 | -#RUN | cpld_ca | standard | cheyenne.intel | fv3 | - -# restart test at c96mx025 -RUN | cpld_control_mx025 | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_control_mx025_12h | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_restart_mx025 | standard | + hera.intel orion.intel wcoss_dell_p3 | | cpld_control_mx025_12h -#RUN | cpld_control_mx025 | standard | cheyenne.intel | fv3 | -#RUN | cpld_control_mx025_12h | standard | cheyenne.intel | fv3 | -#RUN | cpld_restart_mx025 | standard | cheyenne.intel | | cpld_control_mx025_12h - -RUN | cpld_control_c192 | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_control_c384 | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_controlfrac_c384 | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | cpld_bmark | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_control_c192 | standard | cheyenne.intel | fv3 | -#RUN | cpld_control_c384 | standard | cheyenne.intel | fv3 | -#RUN | cpld_controlfrac_c384 | standard | cheyenne.intel | fv3 | -#RUN | cpld_bmark | standard | cheyenne.intel | fv3 | - -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -#COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | cheyenne.intel | fv3 | -RUN | cpld_bmark_wave | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_bmark_wave | standard | cheyenne.intel | fv3 | - -COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -#COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | cheyenne.intel | fv3 | -RUN | cpld_debug | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_debug | standard | cheyenne.intel | fv3 | - -############################################################################################################################################################################################## -# Data Atmosphere tests # -############################################################################################################################################################################################## - -COMPILE | DATM=Y S2S=Y | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -#COMPILE | DATM=Y S2S=Y | standard | cheyenne.intel | fv3 | -RUN | datm_control_cfsr | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | datm_restart_cfsr | standard | + hera.intel orion.intel wcoss_dell_p3 | | datm_control_cfsr -RUN | datm_control_gefs | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | datm_control_cfsr | standard | cheyenne.intel | fv3 | -#RUN | datm_control_gefs | standard | cheyenne.intel | fv3 | - -RUN | datm_bulk_cfsr | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | datm_bulk_gefs | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | datm_bulk_cfsr | standard | cheyenne.intel | fv3 | -#RUN | datm_bulk_gefs | standard | cheyenne.intel | fv3 | - -RUN | datm_mx025_cfsr | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | datm_mx025_gefs | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | datm_mx025_cfsr | standard | cheyenne.intel | fv3 | -#RUN | datm_mx025_gefs | standard | cheyenne.intel | fv3 | - -COMPILE | DATM=Y S2S=Y DEBUG=Y | standard | + hera.intel orion.intel wcoss_dell_p3 | fv3 | -RUN | datm_debug_cfsr | standard | + hera.intel orion.intel wcoss_dell_p3 | 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 | diff --git a/tests/tests/cpld_bmark b/tests/tests/cpld_bmark index 1f6586ef04..921920dccc 100644 --- a/tests/tests/cpld_bmark +++ b/tests/tests/cpld_bmark @@ -1,6 +1,7 @@ # # cpld_bmark test # + export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test" export CNTL_DIR="cpld_bmark" @@ -59,6 +60,9 @@ export LIST_FILES="phyf024.tile1.nc \ export_fv3 export_cpl +export RESTART_INTERVAL="6" +export RESTART_N=${RESTART_INTERVAL} + export SYEAR="2013" export SMONTH="04" export SDAY="01" @@ -101,6 +105,7 @@ export CPL_FAST=${DT_ATMOS} export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} +#TODO: Remove when BM Frac grid input is added export FRAC_GRID_INPUT='.F.' # resolution dependent files diff --git a/tests/tests/cpld_bmark_35d b/tests/tests/cpld_bmark_35d index 16f2b94a21..9eee16eaaf 100644 --- a/tests/tests/cpld_bmark_35d +++ b/tests/tests/cpld_bmark_35d @@ -54,6 +54,7 @@ export CPL_FAST=${DT_ATMOS} export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} +#TODO: Remove when BM Frac grid input is added export FRAC_GRID_INPUT='.F.' # resolution dependent files @@ -74,6 +75,7 @@ export OZ_PHYS_NEW=".T." export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" +#TODO: must remove for restart repro export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_bmark_wave b/tests/tests/cpld_bmark_wave index 8dd049fea8..52fa194415 100644 --- a/tests/tests/cpld_bmark_wave +++ b/tests/tests/cpld_bmark_wave @@ -108,6 +108,7 @@ export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} +#TODO: Remove when BM Frac grid input is added export FRAC_GRID_INPUT='.F.' export CPLWAV='.T.' @@ -132,6 +133,7 @@ export OZ_PHYS_NEW=".T." export MOM6_USE_WAVES='True' export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" +#TODO: must remove for restart repro export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_bmark_wave_35d b/tests/tests/cpld_bmark_wave_35d index 3179e6bef5..0b12bd5bd5 100644 --- a/tests/tests/cpld_bmark_wave_35d +++ b/tests/tests/cpld_bmark_wave_35d @@ -69,6 +69,7 @@ export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} +#TODO: Remove when BM Frac grid input is added export FRAC_GRID_INPUT='.F.' export CPLWAV='.T.' @@ -93,6 +94,7 @@ export OZ_PHYS_NEW=".T." export MOM6_USE_WAVES='True' export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" +#TODO: must remove for restart repro export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_control b/tests/tests/cpld_control index 529b6e8ffc..08ea8070ef 100644 --- a/tests/tests/cpld_control +++ b/tests/tests/cpld_control @@ -57,4 +57,7 @@ export LIST_FILES="phyf024.tile1.nc \ export_fv3 export_cpl +export RESTART_INTERVAL="12" +export RESTART_N=${RESTART_INTERVAL} + export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_12h b/tests/tests/cpld_control_12h deleted file mode 100644 index 4e367dbcfc..0000000000 --- a/tests/tests/cpld_control_12h +++ /dev/null @@ -1,64 +0,0 @@ -# -# cpld_control 12h test -# NOTE: test is not currently used; restarts are tested at c96mx025 - -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 12h" - -export CNTL_DIR="cpld_control_12h" - -export LIST_FILES="phyf012.tile1.nc \ - phyf012.tile2.nc \ - phyf012.tile3.nc \ - phyf012.tile4.nc \ - phyf012.tile5.nc \ - phyf012.tile6.nc \ - dynf012.tile1.nc \ - dynf012.tile2.nc \ - dynf012.tile3.nc \ - dynf012.tile4.nc \ - dynf012.tile5.nc \ - dynf012.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/iced.2016-10-03-43200.nc \ - RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc" - -export_fv3 -export_cpl - -export DAYS="0.50" -export FHMAX="12" -export RESTART_N=${FHMAX} - -export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_c192 b/tests/tests/cpld_control_c192 index 95751a6191..e2bb50b779 100644 --- a/tests/tests/cpld_control_c192 +++ b/tests/tests/cpld_control_c192 @@ -56,6 +56,9 @@ export LIST_FILES="phyf024.tile1.nc \ export_fv3 export_cpl +export RESTART_INTERVAL="6" +export RESTART_N=${RESTART_INTERVAL} + export TASKS=$TASKS_cpl_c192 export TPN=$TPN_cpl_c192 export INPES=$INPES_cpl_c192 diff --git a/tests/tests/cpld_control_c384 b/tests/tests/cpld_control_c384 index 94e2333f32..de72bf8097 100644 --- a/tests/tests/cpld_control_c384 +++ b/tests/tests/cpld_control_c384 @@ -98,6 +98,7 @@ export CPL_FAST=${DT_ATMOS} export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} +#TODO: Should remove export FRAC_GRID_INPUT='.F.' # resolution dependent files @@ -115,6 +116,7 @@ export FNSMCC="'global_soilmgldas.t766.1536.768.grb'," export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," export MOM6_RIVER_RUNOFF='True' +#TODO: must remove for restart repro export MOM6_REPRO_LA='True' export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_mx025_12h b/tests/tests/cpld_control_mx025_12h deleted file mode 100644 index 490b360f25..0000000000 --- a/tests/tests/cpld_control_mx025_12h +++ /dev/null @@ -1,109 +0,0 @@ -# -# cpld_control 12h test -# -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX025 12h" - -export CNTL_DIR="cpld_control_mx025_12h" - -export LIST_FILES="phyf012.tile1.nc \ - phyf012.tile2.nc \ - phyf012.tile3.nc \ - phyf012.tile4.nc \ - phyf012.tile5.nc \ - phyf012.tile6.nc \ - dynf012.tile1.nc \ - dynf012.tile2.nc \ - dynf012.tile3.nc \ - dynf012.tile4.nc \ - dynf012.tile5.nc \ - dynf012.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-03-43200.nc \ - RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc" - -export_fv3 -export_cpl - -export DAYS="0.50" -export FHMAX="12" -export RESTART_N=${FHMAX} - -# replicate current tests; explicitly set values for c96/mx025 -export TASKS=$TASKS_cpl_c384 -export TPN=$TPN_cpl_c384 -export INPES=$INPES_cpl_c384 -export JNPES=$JNPES_cpl_c384 -export THRD=$THRD_cpl_c384 - -export WRTTASK_PER_GROUP=$WPG_cpl_c384 -export med_petlist_bounds=$MPB_cpl_c384 -export atm_petlist_bounds=$APB_cpl_c384 -export ocn_petlist_bounds=$OPB_cpl_c384 -export ice_petlist_bounds=$IPB_cpl_c384 - -# atm/ocn/ice resolution -export OCNRES='025' -export ICERES='0.25' -export NX_GLB=1440 -export NY_GLB=1080 - -export NPROC_ICE='48' - -# set component and coupling timesteps -export DT_DYNAM_MOM6='900' -export DT_THERM_MOM6='1800' -export CPL_SLOW=${DT_THERM_MOM6} -export CPL_FAST=${DT_ATMOS} - -export FRAC_GRID_INPUT='.F.' - -# nems.configure -export coupling_interval_slow_sec=${CPL_SLOW} -export coupling_interval_fast_sec=${CPL_FAST} - -# resolution dependent files -export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" -export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" -export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" -export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" -export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" - -export MOM6_RIVER_RUNOFF='True' - -export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_controlfrac_c384 b/tests/tests/cpld_controlfrac_c384 index 4df558d65c..abdcb3846f 100644 --- a/tests/tests/cpld_controlfrac_c384 +++ b/tests/tests/cpld_controlfrac_c384 @@ -1,7 +1,7 @@ # # cpld_controlfrac_c384 frac grid test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025, frac grid " +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - frac grid " export CNTL_DIR="cpld_controlfrac_c384" @@ -97,7 +97,6 @@ export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} export FRAC_GRID='.T.' -export FRAC_GRID_INPUT='.T.' export CPLMODE="nems_frac" # resolution dependent files @@ -115,6 +114,7 @@ export FNSMCC="'global_soilmgldas.t766.1536.768.grb'," export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," export MOM6_RIVER_RUNOFF='True' +#TODO: must remove for restart repro export MOM6_REPRO_LA='True' export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart b/tests/tests/cpld_restart index 9bd6f8d86e..8fe08388a7 100644 --- a/tests/tests/cpld_restart +++ b/tests/tests/cpld_restart @@ -1,8 +1,8 @@ # # cpld_restart test -# NOTE: test is not currently used; restarts are tested at c96mx025 +# -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - 12h restart" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - restart" export CNTL_DIR="cpld_control" @@ -57,11 +57,13 @@ export LIST_FILES="phyf024.tile1.nc \ export_fv3 export_cpl -export DAYS="0.50" -export FHMAX="24" export FHROT='12' export RESTART_N=$((FHMAX-$FHROT)) +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" + # ATM warm start WARM_START='.T.' MAKE_NH='.F.' diff --git a/tests/tests/cpld_control_mx025 b/tests/tests/cpld_restart_bmark similarity index 61% rename from tests/tests/cpld_control_mx025 rename to tests/tests/cpld_restart_bmark index 2212c0a6b8..793c6b00b6 100644 --- a/tests/tests/cpld_control_mx025 +++ b/tests/tests/cpld_restart_bmark @@ -1,9 +1,9 @@ # -# cpld_control test +# cpld_restart_bmark test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX025" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - restart" -export CNTL_DIR="cpld_control_mx025" +export CNTL_DIR="cpld_bmark" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ @@ -53,45 +53,64 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-04-00000.nc \ - RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + RESTART/iced.2013-04-02-00000.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc" export_fv3 export_cpl -# replicate current tests; explicitly set values for c96/mx025 -export TASKS=$TASKS_cpl_c384 -export TPN=$TPN_cpl_c384 -export INPES=$INPES_cpl_c384 -export JNPES=$JNPES_cpl_c384 -export THRD=$THRD_cpl_c384 +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" -export WRTTASK_PER_GROUP=$WPG_cpl_c384 -export med_petlist_bounds=$MPB_cpl_c384 -export atm_petlist_bounds=$APB_cpl_c384 -export ocn_petlist_bounds=$OPB_cpl_c384 -export ice_petlist_bounds=$IPB_cpl_c384 +export FHROT='12' +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" + +export TASKS=$TASKS_cpl_bmrk +export TPN=$TPN_cpl_bmrk +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export THRD=$THRD_cpl_bmrk +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk + +export med_petlist_bounds=$MPB_cpl_bmrk +export atm_petlist_bounds=$APB_cpl_bmrk +export ocn_petlist_bounds=$OPB_cpl_bmrk +export ice_petlist_bounds=$IPB_cpl_bmrk # atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + export OCNRES='025' export ICERES='0.25' export NX_GLB=1440 export NY_GLB=1080 - export NPROC_ICE='48' # set component and coupling timesteps +export DT_ATMOS='450' +export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' export CPL_SLOW=${DT_THERM_MOM6} export CPL_FAST=${DT_ATMOS} -export FRAC_GRID_INPUT='.F.' - # nems.configure export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} +#TODO: Remove when BM Frac grid input is added +export FRAC_GRID_INPUT='.F.' + # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" export MESHICE="mesh.mx${OCNRES}.nc" @@ -100,5 +119,36 @@ export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + export MOM6_RIVER_RUNOFF='True' -export FV3_RUN=cpld_control_run.IN + +export RUNID="cpcice" + +# ATM warm start +WARM_START='.T.' +MAKE_NH='.F.' +NA_INIT='0' +EXTERNAL_IC='.F.' +NGGPS_IC='.F.' +MOUNTAIN='.T.' + +# ICE warm start +RUNTYPE='continue' +export USE_RESTART_TIME='.true.' + +# MOM6 warm start +export MOM6_RESTART_SETTING="r" + +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_mx025 b/tests/tests/cpld_restart_c192 similarity index 70% rename from tests/tests/cpld_restart_mx025 rename to tests/tests/cpld_restart_c192 index 997ded5e0e..1ad2f81ac5 100644 --- a/tests/tests/cpld_restart_mx025 +++ b/tests/tests/cpld_restart_c192 @@ -1,10 +1,9 @@ # -# cpld_restart test +# cpld_restart_c192 test # +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - restart" -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX025 - 12h restart" - -export CNTL_DIR="cpld_control_mx025" +export CNTL_DIR="cpld_control_c192" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ @@ -51,49 +50,53 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ RESTART/iced.2016-10-04-00000.nc \ RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl -export DAYS="0.50" -export FHMAX="24" -export FHROT='12' +export FHROT='6' export RESTART_N=$((FHMAX-$FHROT)) -# replicate current tests; explicitly set values for c96/mx025 -export TASKS=$TASKS_cpl_c384 -export TPN=$TPN_cpl_c384 -export INPES=$INPES_cpl_c384 -export JNPES=$JNPES_cpl_c384 -export THRD=$THRD_cpl_c384 +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" -export WRTTASK_PER_GROUP=$WPG_cpl_c384 -export med_petlist_bounds=$MPB_cpl_c384 -export atm_petlist_bounds=$APB_cpl_c384 -export ocn_petlist_bounds=$OPB_cpl_c384 -export ice_petlist_bounds=$IPB_cpl_c384 +export TASKS=$TASKS_cpl_c192 +export TPN=$TPN_cpl_c192 +export INPES=$INPES_cpl_c192 +export JNPES=$JNPES_cpl_c192 +export THRD=$THRD_cpl_c192 +export WRTTASK_PER_GROUP=$WPG_cpl_c192 +export WRITE_GROUP=1 -# atm/ocn/ice resolution -export OCNRES='025' -export ICERES='0.25' -export NX_GLB=1440 -export NY_GLB=1080 +export med_petlist_bounds=$MPB_cpl_c192 +export atm_petlist_bounds=$APB_cpl_c192 +export ocn_petlist_bounds=$OPB_cpl_c192 +export ice_petlist_bounds=$IPB_cpl_c192 -export NPROC_ICE='48' +# atm/ocn/ice resolution +export ATMRES='C192' +export NPX=193 +export NPY=193 +export IMO=768 +export JMO=384 + +export OCNRES='050' +export ICERES='0.50' +export NX_GLB=720 +export NY_GLB=576 +export NPROC_ICE='24' # set component and coupling timesteps -export DT_DYNAM_MOM6='900' -export DT_THERM_MOM6='1800' +export DT_ATMOS='900' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='1800' +export DT_THERM_MOM6='3600' export CPL_SLOW=${DT_THERM_MOM6} export CPL_FAST=${DT_ATMOS} -export FRAC_GRID_INPUT='.F.' - # nems.configure export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} @@ -106,6 +109,12 @@ export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FNALBC="'global_snowfree_albedo.bosu.t382.768.384.rg.grb'," +export FNVETC="'global_vegtype.igbp.t382.768.384.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," +export FNSMCC="'global_soilmgldas.t382.768.384.grb'," +export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," + export MOM6_RIVER_RUNOFF='True' # ATM warm start From 63b155b883eacf470cec54f62bdd90bf441652ca Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Wed, 6 Jan 2021 10:16:59 -0500 Subject: [PATCH 052/109] add frac grid input, update and add additional cpld tests (#354) * Updates FV3_input_frac to add both benchmark dates and L127 files * Adds additional tests and restart tests for coupled model * Sets all cpld tests to use frac grid input by default * Removes all instances of USE_LA_LI2016=True except for benchmark+wave configurations --- tests/RegressionTests_cheyenne.gnu.log | 94 +- tests/RegressionTests_cheyenne.intel.log | 1145 +++++++++++++++++---- tests/RegressionTests_gaea.intel.log | 194 ++-- tests/RegressionTests_hera.gnu.log | 94 +- tests/RegressionTests_hera.intel.log | 1169 +++++++++++++++++----- tests/RegressionTests_jet.intel.log | 202 ++-- tests/RegressionTests_orion.intel.log | 1149 +++++++++++++++++---- tests/RegressionTests_wcoss_cray.log | 230 ++--- tests/RegressionTests_wcoss_dell_p3.log | 1141 +++++++++++++++++---- tests/fv3_conf/cpld_bmark_run.IN | 23 +- tests/fv3_conf/cpld_control_run.IN | 24 +- tests/parm/MOM_input_template_100 | 7 - tests/parm/input.benchmark_v16.nml.IN | 330 ++++++ tests/rt.conf | 25 +- tests/rt.sh | 8 +- tests/rt_35d.conf | 30 + tests/tests/cpld_bmark | 5 +- tests/tests/cpld_bmark_35d | 5 - tests/tests/cpld_bmark_wave | 5 +- tests/tests/cpld_bmark_wave_35d | 5 +- tests/tests/cpld_bmarkfrac | 137 +++ tests/tests/cpld_bmarkfrac_v16 | 142 +++ tests/tests/cpld_bmarkfrac_wave | 146 +++ tests/tests/cpld_bmarkfrac_wave_35d | 108 ++ tests/tests/cpld_bmarkfrac_wave_v16 | 153 +++ tests/tests/cpld_bmarkfrac_wave_v16_35d | 121 +++ tests/tests/cpld_control_c192 | 32 +- tests/tests/cpld_control_c384 | 8 +- tests/tests/cpld_controlfrac | 66 ++ tests/tests/cpld_controlfrac_c192 | 121 +++ tests/tests/cpld_controlfrac_c384 | 7 +- tests/tests/cpld_debugfrac | 71 ++ tests/tests/cpld_restart_bmark | 7 +- tests/tests/cpld_restart_bmarkfrac | 152 +++ tests/tests/cpld_restart_bmarkfrac_v16 | 158 +++ tests/tests/cpld_restart_c192 | 34 +- tests/tests/cpld_restart_c384 | 137 +++ tests/tests/cpld_restartfrac | 85 ++ tests/tests/cpld_restartfrac_c192 | 141 +++ tests/tests/cpld_restartfrac_c384 | 140 +++ 40 files changed, 6496 insertions(+), 1355 deletions(-) create mode 100644 tests/parm/input.benchmark_v16.nml.IN create mode 100644 tests/tests/cpld_bmarkfrac create mode 100644 tests/tests/cpld_bmarkfrac_v16 create mode 100644 tests/tests/cpld_bmarkfrac_wave create mode 100644 tests/tests/cpld_bmarkfrac_wave_35d create mode 100644 tests/tests/cpld_bmarkfrac_wave_v16 create mode 100644 tests/tests/cpld_bmarkfrac_wave_v16_35d create mode 100644 tests/tests/cpld_controlfrac create mode 100644 tests/tests/cpld_controlfrac_c192 create mode 100644 tests/tests/cpld_debugfrac create mode 100644 tests/tests/cpld_restart_bmarkfrac create mode 100644 tests/tests/cpld_restart_bmarkfrac_v16 create mode 100644 tests/tests/cpld_restart_c384 create mode 100644 tests/tests/cpld_restartfrac create mode 100644 tests/tests/cpld_restartfrac_c192 create mode 100644 tests/tests/cpld_restartfrac_c384 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 24039f8087..9a7d72489c 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Wed Dec 30 15:40:51 MST 2020 +Tue Jan 5 15:50:37 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_gfdlmp_prod +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 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-20201223/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_gfs_v15p2_prod +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 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-20201223/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_gfs_v16beta_prod +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 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-20201223/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_gfs_v16beta_restart_prod +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 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-20201223/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_gfs_v16beta_stochy_prod +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 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-20201223/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_gfs_v16beta_flake_prod +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 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-20201223/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_gfs_v15p2_RRTMGP_prod +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 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-20201223/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_gfs_v16beta_RRTMGP_prod +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 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-20201223/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_gsd_prod +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 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-20201223/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_thompson_prod +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 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-20201223/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_thompson_no_aero_prod +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 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-20201223/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_rrfs_v1beta_prod +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 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-20201223/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +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 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-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +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 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-20201223/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_control_debug_prod +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 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-20201223/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_gfs_v15p2_debug_prod +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 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-20201223/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_gfs_v16beta_debug_prod +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 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-20201223/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +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 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-20201223/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +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 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-20201223/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_multigases_prod +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 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-20201223/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +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 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-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_44876/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +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 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 Dec 30 15:58:18 MST 2020 -Elapsed time: 00h:17m:27s. Have a nice day! +Tue Jan 5 16:08:06 MST 2021 +Elapsed time: 00h:17m:30s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index ba3e59ec65..56754bc4ff 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Wed Dec 30 14:38:17 MST 2020 +Tue Jan 5 15:52:27 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_control_prod +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 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-20201223/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_decomp_prod +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 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-20201223/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_2threads_prod +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 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-20201223/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_restart_prod +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 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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_read_inc_prod +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 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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_wrtGauss_netcdf_esmf_prod +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 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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_wrtGauss_netcdf_prod +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 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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_wrtGauss_netcdf_parallel_prod +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 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 .........OK + Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc .........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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_wrtGlatlon_netcdf_prod +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 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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_wrtGauss_nemsio_prod +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 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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_wrtGauss_nemsio_c192_prod +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 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-20201223/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_stochy_prod +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 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-20201223/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_ca_prod +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 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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_iau_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_iau results .... Test 014 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_lheatstrg_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -882,8 +882,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_multigases_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_control_32bit_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1024,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_stretched_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1080,8 +1080,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_stretched_nest_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1147,8 +1147,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_regional_control_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1158,8 +1158,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_regional_restart_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1167,8 +1167,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_regional_quilt_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1178,19 +1178,19 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_regional_quilt_netcdf_parallel_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_control_debug_prod +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 .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_stretched_nest_debug_prod +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 .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1239,8 +1239,8 @@ Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfdlmp_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfdlmprad_gwd_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1335,8 +1335,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfdlmprad_noahmp_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1383,8 +1383,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_csawmg_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1431,8 +1431,8 @@ Checking test 029 fv3_ccpp_csawmg results .... Test 029 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_satmedmf_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,8 +1479,8 @@ Checking test 030 fv3_ccpp_satmedmf results .... Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_satmedmfq_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1527,8 +1527,8 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfdlmp_32bit_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1575,8 +1575,8 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfdlmprad_32bit_post_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_cpt_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,8 +1681,8 @@ Checking test 034 fv3_ccpp_cpt results .... Test 034 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gsd_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 035 fv3_ccpp_gsd results .... Test 035 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_thompson_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson results .... Test 036 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_thompson_no_aero_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_thompson_no_aero results .... Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_rrfs_v1beta_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 038 fv3_ccpp_rrfs_v1beta results .... Test 038 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfs_v15p2_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2045,8 +2045,8 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfs_v16beta_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2125,8 +2125,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Test 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfs_v16beta_restart_prod +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 .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2175,8 +2175,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_restart results .... Test 041 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfs_v16beta_stochy_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,8 +2243,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_stochy results .... Test 042 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfs_v15p2_RRTMGP_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2311,8 +2311,8 @@ Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfs_v16beta_RRTMGP_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2379,8 +2379,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 044 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gocart_clm_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2427,8 +2427,8 @@ Checking test 045 fv3_ccpp_gocart_clm results .... Test 045 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfs_v16beta_flake_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2495,8 +2495,8 @@ Checking test 046 fv3_ccpp_gfs_v16beta_flake results .... Test 046 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2563,8 +2563,8 @@ Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2581,8 +2581,8 @@ Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfs_v15p2_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2649,8 +2649,8 @@ Checking test 049 fv3_ccpp_gfs_v15p2_debug results .... Test 049 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfs_v16beta_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2717,8 +2717,8 @@ Checking test 050 fv3_ccpp_gfs_v16beta_debug results .... Test 050 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2785,8 +2785,8 @@ Checking test 051 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 051 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2853,8 +2853,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 052 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gsd_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2921,8 +2921,8 @@ Checking test 053 fv3_ccpp_gsd_debug results .... Test 053 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_gsd_diag3d_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2989,8 +2989,8 @@ Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Test 054 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_thompson_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3057,8 +3057,8 @@ Checking test 055 fv3_ccpp_thompson_debug results .... Test 055 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_thompson_no_aero_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3125,8 +3125,8 @@ Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Test 056 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_rrfs_v1beta_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3193,8 +3193,8 @@ Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Test 057 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3261,8 +3261,8 @@ Checking test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 058 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3279,8 +3279,8 @@ Checking test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 059 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_control_prod +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3332,8 +3332,8 @@ Checking test 060 cpld_control results .... Test 060 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_restart_prod +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3385,9 +3385,62 @@ Checking test 061 cpld_restart results .... Test 061 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_2threads_prod -Checking test 062 cpld_2threads results .... +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 .... + 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 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 + 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 + + +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3435,12 +3488,12 @@ Checking test 062 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 062 cpld_2threads PASS +Test 063 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_decomp_prod -Checking test 063 cpld_decomp results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3488,12 +3541,12 @@ Checking test 063 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 063 cpld_decomp PASS +Test 064 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_satmedmf_prod -Checking test 064 cpld_satmedmf results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3541,12 +3594,12 @@ Checking test 064 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 064 cpld_satmedmf PASS +Test 065 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_ca_prod -Checking test 065 cpld_ca results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3594,12 +3647,12 @@ Checking test 065 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 065 cpld_ca PASS +Test 066 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_control_c192_prod -Checking test 066 cpld_control_c192 results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3647,12 +3700,224 @@ Checking test 066 cpld_control_c192 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_control_c192 PASS +Test 067 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 .... + 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/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/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 + + +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 .... + 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/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/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 + + +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 .... + 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/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/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 + + +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 .... + 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/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/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 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_restart_c192_prod -Checking test 067 cpld_restart_c192 results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3698,14 +3963,17 @@ Checking test 067 cpld_restart_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 067 cpld_restart_c192 PASS +Test 072 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_control_c384_prod -Checking test 068 cpld_control_c384 results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3756,12 +4024,12 @@ Checking test 068 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 068 cpld_control_c384 PASS +Test 073 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_controlfrac_c384_prod -Checking test 069 cpld_controlfrac_c384 results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3812,12 +4080,12 @@ Checking test 069 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 069 cpld_controlfrac_c384 PASS +Test 074 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_bmark_prod -Checking test 070 cpld_bmark results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3866,14 +4134,14 @@ Checking test 070 cpld_bmark results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 070 cpld_bmark PASS + 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 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_restart_bmark_prod -Checking test 071 cpld_restart_bmark results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3924,12 +4192,12 @@ Checking test 071 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 071 cpld_restart_bmark PASS +Test 076 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_bmark_wave_prod -Checking test 072 cpld_bmark_wave results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3942,9 +4210,6 @@ Checking test 072 cpld_bmark_wave results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -3983,12 +4248,466 @@ Checking test 072 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 072 cpld_bmark_wave PASS +Test 077 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 .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 078 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 .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 079 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 .... + 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 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 + 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.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 080 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 .... + 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 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 + 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.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 + + +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 .... + 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 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 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........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/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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 082 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 .... + 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 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 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........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/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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 083 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 .... + 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 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 20130401.120000.out_grd.gwes_30m .........OK + Comparing 20130401.120000.out_pnt.points .........OK + Comparing 20130401.120000.restart.gwes_30m .........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/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.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 + + +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 .... + 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 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 + 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 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/cpld_debug_prod -Checking test 073 cpld_debug results .... +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 .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4036,87 +4755,87 @@ Checking test 073 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 073 cpld_debug PASS +Test 086 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/datm_control_cfsr -Checking test 074 datm_control_cfsr results .... +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 .... 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 074 datm_control_cfsr PASS +Test 087 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/datm_restart_cfsr -Checking test 075 datm_restart_cfsr results .... +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 .... 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 075 datm_restart_cfsr PASS +Test 088 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/datm_control_gefs -Checking test 076 datm_control_gefs results .... +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 .... 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 076 datm_control_gefs PASS +Test 089 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/datm_bulk_cfsr -Checking test 077 datm_bulk_cfsr results .... +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 .... 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 077 datm_bulk_cfsr PASS +Test 090 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/datm_bulk_gefs -Checking test 078 datm_bulk_gefs results .... +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 .... 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 078 datm_bulk_gefs PASS +Test 091 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/datm_mx025_cfsr -Checking test 079 datm_mx025_cfsr results .... +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 .... 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 079 datm_mx025_cfsr PASS +Test 092 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/datm_mx025_gefs -Checking test 080 datm_mx025_gefs results .... +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 .... 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 080 datm_mx025_gefs PASS +Test 093 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_debug_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_30905/datm_debug_cfsr -Checking test 081 datm_debug_cfsr results .... +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 .... 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 081 datm_debug_cfsr PASS +Test 094 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Dec 30 15:37:30 MST 2020 -Elapsed time: 00h:59m:14s. Have a nice day! +Tue Jan 5 17:08:05 MST 2021 +Elapsed time: 01h:15m:39s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index ae3dce9c93..6363d7a789 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Wed Dec 30 16:34:59 EST 2020 +Tue Jan 5 17:16:23 EST 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_control_prod +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 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-20201223/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_decomp_prod +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 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-20201223/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_2threads_prod +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 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-20201223/INTEL/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_restart_prod +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 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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_read_inc_prod +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 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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_wrtGauss_netcdf_esmf_prod +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 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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_wrtGauss_netcdf_prod +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 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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_wrtGauss_netcdf_parallel_prod +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 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-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_wrtGlatlon_netcdf_prod +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 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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_wrtGauss_nemsio_prod +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 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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_wrtGauss_nemsio_c192_prod +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 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-20201223/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_stochy_prod +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 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 = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_lheatstrg_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -746,8 +746,8 @@ Checking test 013 fv3_ccpp_lheatstrg results .... Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_multigases_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -820,8 +820,8 @@ Checking test 014 fv3_ccpp_multigases results .... Test 014 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_control_32bit_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_control_32bit results .... Test 015 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_stretched_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,8 +944,8 @@ Checking test 016 fv3_ccpp_stretched results .... Test 016 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_stretched_nest_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1011,8 +1011,8 @@ Checking test 017 fv3_ccpp_stretched_nest results .... Test 017 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_regional_control_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1022,8 +1022,8 @@ Checking test 018 fv3_ccpp_regional_control results .... Test 018 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_regional_restart_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1031,8 +1031,8 @@ Checking test 019 fv3_ccpp_regional_restart results .... Test 019 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_regional_quilt_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1042,19 +1042,19 @@ Checking test 020 fv3_ccpp_regional_quilt results .... Test 020 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_regional_quilt_netcdf_parallel_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK Test 021 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_control_debug_prod +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 .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1083,8 +1083,8 @@ Checking test 022 fv3_ccpp_control_debug results .... Test 022 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_stretched_nest_debug_prod +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 .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1103,8 +1103,8 @@ Checking test 023 fv3_ccpp_stretched_nest_debug results .... Test 023 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gfdlmp_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1151,8 +1151,8 @@ Checking test 024 fv3_ccpp_gfdlmp results .... Test 024 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gfdlmprad_gwd_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1199,8 +1199,8 @@ Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Test 025 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gfdlmprad_noahmp_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,8 +1247,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Test 026 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_csawmg_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1295,8 +1295,8 @@ Checking test 027 fv3_ccpp_csawmg results .... Test 027 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_satmedmf_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1343,8 +1343,8 @@ Checking test 028 fv3_ccpp_satmedmf results .... Test 028 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_satmedmfq_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1391,8 +1391,8 @@ Checking test 029 fv3_ccpp_satmedmfq results .... Test 029 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gfdlmp_32bit_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1439,8 +1439,8 @@ Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Test 030 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_cpt_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1493,8 +1493,8 @@ Checking test 031 fv3_ccpp_cpt results .... Test 031 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gsd_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1585,8 +1585,8 @@ Checking test 032 fv3_ccpp_gsd results .... Test 032 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_thompson_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1653,8 +1653,8 @@ Checking test 033 fv3_ccpp_thompson results .... Test 033 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_thompson_no_aero_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1721,8 +1721,8 @@ Checking test 034 fv3_ccpp_thompson_no_aero results .... Test 034 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_rrfs_v1beta_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1789,8 +1789,8 @@ Checking test 035 fv3_ccpp_rrfs_v1beta results .... Test 035 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gocart_clm_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1837,8 +1837,8 @@ Checking test 036 fv3_ccpp_gocart_clm results .... Test 036 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gfs_v16beta_flake_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1905,8 +1905,8 @@ Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... Test 037 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1973,8 +1973,8 @@ Checking test 038 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 038 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1991,8 +1991,8 @@ Checking test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gsd_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2059,8 +2059,8 @@ Checking test 040 fv3_ccpp_gsd_debug results .... Test 040 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_gsd_diag3d_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2127,8 +2127,8 @@ Checking test 041 fv3_ccpp_gsd_diag3d_debug results .... Test 041 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_thompson_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2195,8 +2195,8 @@ Checking test 042 fv3_ccpp_thompson_debug results .... Test 042 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_thompson_no_aero_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2263,8 +2263,8 @@ Checking test 043 fv3_ccpp_thompson_no_aero_debug results .... Test 043 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_rrfs_v1beta_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2331,8 +2331,8 @@ Checking test 044 fv3_ccpp_rrfs_v1beta_debug results .... Test 044 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2399,8 +2399,8 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_43455/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2418,5 +2418,5 @@ Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Dec 30 17:11:13 EST 2020 -Elapsed time: 00h:36m:15s. Have a nice day! +Tue Jan 5 17:53:51 EST 2021 +Elapsed time: 00h:37m:29s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index d2ad736b71..896fa2a7ed 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Thu Dec 31 13:02:03 UTC 2020 +Wed Jan 6 12:04:41 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_gfdlmp_prod +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 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-20201223/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_gfs_v15p2_prod +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 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-20201223/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_gfs_v16beta_prod +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 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-20201223/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_gfs_v16beta_restart_prod +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 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-20201223/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_gfs_v16beta_stochy_prod +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 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-20201223/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_gfs_v16beta_flake_prod +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 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-20201223/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_gfs_v15p2_RRTMGP_prod +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 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-20201223/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_gfs_v16beta_RRTMGP_prod +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 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-20201223/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_gsd_prod +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 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-20201223/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_thompson_prod +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 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-20201223/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_thompson_no_aero_prod +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 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-20201223/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_rrfs_v1beta_prod +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 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-20201223/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +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 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-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +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 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-20201223/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_control_debug_prod +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 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-20201223/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_gfs_v15p2_debug_prod +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 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-20201223/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_gfs_v16beta_debug_prod +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 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-20201223/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +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 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-20201223/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +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 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-20201223/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_multigases_prod +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 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-20201223/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +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 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-20201223/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_63041/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +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 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 -Thu Dec 31 13:26:05 UTC 2020 -Elapsed time: 00h:24m:02s. Have a nice day! +Wed Jan 6 12:27:58 UTC 2021 +Elapsed time: 00h:23m:18s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 0fc59eba9c..4fbd7f60f6 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Wed Dec 30 21:26:56 UTC 2020 +Wed Jan 6 11:02:33 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_control_prod +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 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-20201223/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_decomp_prod +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 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-20201223/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_2threads_prod +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 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-20201223/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_restart_prod +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 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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_read_inc_prod +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 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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_wrtGauss_netcdf_esmf_prod +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 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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_wrtGauss_netcdf_prod +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 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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_wrtGauss_netcdf_parallel_prod +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 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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_wrtGlatlon_netcdf_prod +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 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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_wrtGauss_nemsio_prod +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 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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_wrtGauss_nemsio_c192_prod +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 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-20201223/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_stochy_prod +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 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-20201223/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_ca_prod +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 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-20201223/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_lndp_prod +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 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-20201223/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_iau_prod +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 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-20201223/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_lheatstrg_prod +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 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-20201223/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfdlmprad_prod +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 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-20201223/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfdlmprad_atmwav_prod +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 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-20201223/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_wrtGauss_nemsio_c768_prod +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 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-20201223/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_multigases_prod +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 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-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_control_32bit_prod +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 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-20201223/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_stretched_prod +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 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-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_stretched_nest_prod +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 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-20201223/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_regional_control_prod +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 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-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_regional_restart_prod +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 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-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_regional_quilt_prod +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 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-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_regional_quilt_netcdf_parallel_prod +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 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-20201223/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_control_debug_prod +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 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-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_stretched_nest_debug_prod +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 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-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfdlmp_prod +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 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-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfdlmprad_gwd_prod +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 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-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfdlmprad_noahmp_prod +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 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-20201223/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_csawmg_prod +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 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-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_satmedmf_prod +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 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-20201223/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_satmedmfq_prod +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 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-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfdlmp_32bit_prod +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 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-20201223/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfdlmprad_32bit_post_prod +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 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-20201223/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_cpt_prod +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 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-20201223/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gsd_prod +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 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-20201223/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_rap_prod +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 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-20201223/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_hrrr_prod +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 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-20201223/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_thompson_prod +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 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-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_thompson_no_aero_prod +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 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-20201223/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_rrfs_v1beta_prod +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 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-20201223/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfs_v15p2_prod +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 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-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfs_v16beta_prod +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 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-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfs_v16beta_restart_prod +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 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-20201223/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfs_v16beta_stochy_prod +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 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-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfs_v15p2_RRTMGP_prod +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 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-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfs_v16beta_RRTMGP_prod +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 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-20201223/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfsv16_csawmg_prod +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 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-20201223/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfsv16_csawmgt_prod +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 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-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gocart_clm_prod +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 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-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfs_v16beta_flake_prod +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 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-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +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 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-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +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 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-20201223/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfs_v15p2_debug_prod +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 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-20201223/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfs_v16beta_debug_prod +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 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-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +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 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-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +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 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-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gsd_debug_prod +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 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-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_gsd_diag3d_debug_prod +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 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-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_thompson_debug_prod +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 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-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_thompson_no_aero_debug_prod +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 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-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_rrfs_v1beta_debug_prod +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 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-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +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 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-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +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 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-20201223/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_control_prod +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 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-20201223/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_restart_prod +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 Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3832,9 +3832,9 @@ Checking test 069 cpld_restart results .... Test 069 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_2threads_prod -Checking test 070 cpld_2threads results .... +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 +Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3882,12 +3882,12 @@ Checking test 070 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 070 cpld_2threads PASS +Test 070 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_decomp_prod -Checking test 071 cpld_decomp results .... +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 +Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3935,12 +3935,12 @@ Checking test 071 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 071 cpld_decomp PASS +Test 071 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_satmedmf_prod -Checking test 072 cpld_satmedmf results .... +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 +Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3988,12 +3988,12 @@ Checking test 072 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 072 cpld_satmedmf PASS +Test 072 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_ca_prod -Checking test 073 cpld_ca results .... +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 +Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4041,12 +4041,12 @@ Checking test 073 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 073 cpld_ca PASS +Test 073 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_control_c192_prod -Checking test 074 cpld_control_c192 results .... +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 +Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4094,12 +4094,12 @@ Checking test 074 cpld_control_c192 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 074 cpld_control_c192 PASS +Test 074 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_restart_c192_prod -Checking test 075 cpld_restart_c192 results .... +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 +Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4147,12 +4147,504 @@ Checking test 075 cpld_restart_c192 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 075 cpld_restart_c192 PASS +Test 075 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_control_c384_prod -Checking test 076 cpld_control_c384 results .... +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 +Checking test 076 cpld_control_c192 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/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/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 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 +Checking test 077 cpld_restart_c192 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/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/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 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 +Checking test 078 cpld_controlfrac_c192 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/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/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 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 +Checking test 079 cpld_restartfrac_c192 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/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/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 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 +Checking test 080 cpld_control_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +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 +Checking test 081 cpld_restart_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +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 +Checking test 082 cpld_controlfrac_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +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 +Checking test 083 cpld_restartfrac_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +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 +Checking test 084 cpld_bmark results .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +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 +Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4201,14 +4693,14 @@ Checking test 076 cpld_control_c384 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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_control_c384 PASS + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 085 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_controlfrac_c384_prod -Checking test 077 cpld_controlfrac_c384 results .... +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 +Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4257,14 +4749,14 @@ Checking test 077 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 + 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 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_bmark_prod -Checking test 078 cpld_bmark results .... +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 +Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4315,12 +4807,124 @@ Checking test 078 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 078 cpld_bmark PASS +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 +Checking test 088 cpld_bmarkfrac_v16 results .... + 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 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 + 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.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +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 +Checking test 089 cpld_restart_bmarkfrac_v16 results .... + 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 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 + 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.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 089 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_restart_bmark_prod -Checking test 079 cpld_restart_bmark results .... +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 +Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4333,6 +4937,9 @@ Checking test 079 cpld_restart_bmark results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK + Comparing 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -4371,12 +4978,12 @@ Checking test 079 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 079 cpld_restart_bmark PASS +Test 090 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_bmark_wave_prod -Checking test 080 cpld_bmark_wave results .... +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 +Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4430,12 +5037,124 @@ Checking test 080 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 080 cpld_bmark_wave PASS +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 +Checking test 092 cpld_bmarkfrac_wave_v16 results .... + 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 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 20130401.120000.out_grd.gwes_30m .........OK + Comparing 20130401.120000.out_pnt.points .........OK + Comparing 20130401.120000.restart.gwes_30m .........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/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.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +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 +Checking test 093 cpld_debug results .... + 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 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 + 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 093 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/cpld_debug_prod -Checking test 081 cpld_debug results .... +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 +Checking test 094 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4483,87 +5202,87 @@ Checking test 081 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 081 cpld_debug PASS +Test 094 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/datm_control_cfsr -Checking test 082 datm_control_cfsr results .... +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 +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 082 datm_control_cfsr PASS +Test 095 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/datm_restart_cfsr -Checking test 083 datm_restart_cfsr results .... +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 +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 083 datm_restart_cfsr PASS +Test 096 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/datm_control_gefs -Checking test 084 datm_control_gefs results .... +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 +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 084 datm_control_gefs PASS +Test 097 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/datm_bulk_cfsr -Checking test 085 datm_bulk_cfsr results .... +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 +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 085 datm_bulk_cfsr PASS +Test 098 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/datm_bulk_gefs -Checking test 086 datm_bulk_gefs results .... +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 +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 086 datm_bulk_gefs PASS +Test 099 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/datm_mx025_cfsr -Checking test 087 datm_mx025_cfsr results .... +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 +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 087 datm_mx025_cfsr PASS +Test 100 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/datm_mx025_gefs -Checking test 088 datm_mx025_gefs results .... +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 +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 088 datm_mx025_gefs PASS +Test 101 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257297/datm_debug_cfsr -Checking test 089 datm_debug_cfsr results .... +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 +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 089 datm_debug_cfsr PASS +Test 102 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Dec 30 22:52:03 UTC 2020 -Elapsed time: 01h:25m:08s. Have a nice day! +Wed Jan 6 12:02:42 UTC 2021 +Elapsed time: 01h:00m:11s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 4f8cec76a2..1845709f95 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Wed Dec 30 21:35:33 GMT 2020 +Wed Jan 6 00:16:23 GMT 2021 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_control_prod +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 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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_decomp_prod +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 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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_2threads_prod +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 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-20201223/INTEL/fv3_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_restart_prod +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 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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_read_inc_prod +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 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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_wrtGauss_netcdf_esmf_prod +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 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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_wrtGauss_netcdf_prod +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 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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_wrtGauss_netcdf_parallel_prod +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 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 .........OK + Comparing phyf024.nc ............ALT CHECK......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-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_wrtGlatlon_netcdf_prod +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 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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_wrtGauss_nemsio_prod +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 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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_wrtGauss_nemsio_c192_prod +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 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-20201223/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_stochy_prod +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 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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_iau_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_lheatstrg_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_multigases_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_control_32bit_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_stretched_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,8 +1012,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_stretched_nest_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,19 +1079,19 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_regional_control_prod +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 .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.tile1_new.nc ............ALT CHECK......OK - Comparing RESTART/fv_tracer.res.tile1_new.nc ............ALT CHECK......OK + 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 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_regional_restart_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_regional_quilt_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_regional_quilt_netcdf_parallel_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1121,8 +1121,8 @@ Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_control_debug_prod +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 .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1151,8 +1151,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_stretched_nest_debug_prod +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 .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1171,8 +1171,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gfdlmp_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gfdlmprad_gwd_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,8 +1267,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gfdlmprad_noahmp_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_csawmg_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,8 +1363,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_satmedmf_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,8 +1411,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_satmedmfq_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,8 +1459,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gfdlmp_32bit_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,8 +1507,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_cpt_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,8 +1561,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gsd_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1653,8 +1653,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_thompson_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1721,8 +1721,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_thompson_no_aero_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1789,8 +1789,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gocart_clm_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1837,8 +1837,8 @@ Checking test 036 fv3_ccpp_gocart_clm results .... Test 036 fv3_ccpp_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gfs_v16beta_flake_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1905,8 +1905,8 @@ Checking test 037 fv3_ccpp_gfs_v16beta_flake results .... Test 037 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1973,8 +1973,8 @@ Checking test 038 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 038 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1991,8 +1991,8 @@ Checking test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 039 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gsd_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2059,8 +2059,8 @@ Checking test 040 fv3_ccpp_gsd_debug results .... Test 040 fv3_ccpp_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_gsd_diag3d_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2127,8 +2127,8 @@ Checking test 041 fv3_ccpp_gsd_diag3d_debug results .... Test 041 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_thompson_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2195,8 +2195,8 @@ Checking test 042 fv3_ccpp_thompson_debug results .... Test 042 fv3_ccpp_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_thompson_no_aero_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2263,8 +2263,8 @@ Checking test 043 fv3_ccpp_thompson_no_aero_debug results .... Test 043 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_rrfs_v1beta_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2331,8 +2331,8 @@ Checking test 044 fv3_ccpp_rrfs_v1beta_debug results .... Test 044 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2399,8 +2399,8 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 045 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_61520/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2418,5 +2418,5 @@ Test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Dec 30 23:44:18 GMT 2020 -Elapsed time: 02h:08m:51s. Have a nice day! +Wed Jan 6 03:14:49 GMT 2021 +Elapsed time: 02h:58m:26s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index b23c499dc1..82e2740810 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Wed Dec 30 15:30:05 CST 2020 +Tue Jan 5 18:53:18 CST 2021 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_control_prod +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 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-20201223/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_decomp_prod +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 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-20201223/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_2threads_prod +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 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-20201223/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_restart_prod +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 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-20201223/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_read_inc_prod +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 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-20201223/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_wrtGauss_netcdf_esmf_prod +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 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-20201223/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_wrtGauss_netcdf_prod +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 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-20201223/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_wrtGauss_netcdf_parallel_prod +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 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-20201223/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_wrtGlatlon_netcdf_prod +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 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-20201223/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_wrtGauss_nemsio_prod +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 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-20201223/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_wrtGauss_nemsio_c192_prod +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 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-20201223/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_stochy_prod +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 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-20201223/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_ca_prod +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 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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_iau_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -834,8 +834,8 @@ Checking test 014 fv3_ccpp_iau results .... Test 014 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfdlmprad_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -883,8 +883,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfdlmprad_atmwav_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_wrtGauss_nemsio_c768_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_multigases_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1055,8 +1055,8 @@ Checking test 018 fv3_ccpp_multigases results .... Test 018 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_control_32bit_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,8 +1123,8 @@ Checking test 019 fv3_ccpp_control_32bit results .... Test 019 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_stretched_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1179,8 +1179,8 @@ Checking test 020 fv3_ccpp_stretched results .... Test 020 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_stretched_nest_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 021 fv3_ccpp_stretched_nest results .... Test 021 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_regional_control_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1257,8 +1257,8 @@ Checking test 022 fv3_ccpp_regional_control results .... Test 022 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_regional_restart_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,8 +1266,8 @@ Checking test 023 fv3_ccpp_regional_restart results .... Test 023 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_regional_quilt_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1277,8 +1277,8 @@ Checking test 024 fv3_ccpp_regional_quilt results .... Test 024 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_regional_quilt_netcdf_parallel_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1288,8 +1288,8 @@ Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_control_debug_prod +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 .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1318,8 +1318,8 @@ Checking test 026 fv3_ccpp_control_debug results .... Test 026 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_stretched_nest_debug_prod +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 .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1338,8 +1338,8 @@ Checking test 027 fv3_ccpp_stretched_nest_debug results .... Test 027 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfdlmp_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1386,8 +1386,8 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfdlmprad_gwd_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1434,8 +1434,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfdlmprad_noahmp_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,8 +1482,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_csawmg_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,8 +1530,8 @@ Checking test 031 fv3_ccpp_csawmg results .... Test 031 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_satmedmf_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,8 +1578,8 @@ Checking test 032 fv3_ccpp_satmedmf results .... Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfdlmp_32bit_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1626,8 +1626,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfdlmprad_32bit_post_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1678,8 +1678,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_cpt_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,8 +1732,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gsd_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1824,8 +1824,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_thompson_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1892,8 +1892,8 @@ Checking test 037 fv3_ccpp_thompson results .... Test 037 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_thompson_no_aero_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1960,8 +1960,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_rrfs_v1beta_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2028,8 +2028,8 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfs_v15p2_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2096,8 +2096,8 @@ Checking test 040 fv3_ccpp_gfs_v15p2 results .... Test 040 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfs_v16beta_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2176,8 +2176,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta results .... Test 041 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfs_v16beta_restart_prod +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 .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2226,8 +2226,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_restart results .... Test 042 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfs_v16beta_stochy_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2294,8 +2294,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta_stochy results .... Test 043 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfs_v15p2_RRTMGP_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2362,8 +2362,8 @@ Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfs_v16beta_RRTMGP_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2430,8 +2430,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 045 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfsv16_csawmg_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2478,8 +2478,8 @@ Checking test 046 fv3_ccpp_gfsv16_csawmg results .... Test 046 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfsv16_csawmgt_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2526,8 +2526,8 @@ Checking test 047 fv3_ccpp_gfsv16_csawmgt results .... Test 047 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gocart_clm_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2574,8 +2574,8 @@ Checking test 048 fv3_ccpp_gocart_clm results .... Test 048 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfs_v16beta_flake_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2642,8 +2642,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_flake results .... Test 049 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2710,8 +2710,8 @@ Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2728,8 +2728,8 @@ Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfs_v15p2_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2796,8 +2796,8 @@ Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... Test 052 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfs_v16beta_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2864,8 +2864,8 @@ Checking test 053 fv3_ccpp_gfs_v16beta_debug results .... Test 053 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2932,8 +2932,8 @@ Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3000,8 +3000,8 @@ Checking test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gsd_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3068,8 +3068,8 @@ Checking test 056 fv3_ccpp_gsd_debug results .... Test 056 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_gsd_diag3d_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3136,8 +3136,8 @@ Checking test 057 fv3_ccpp_gsd_diag3d_debug results .... Test 057 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_thompson_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3204,8 +3204,8 @@ Checking test 058 fv3_ccpp_thompson_debug results .... Test 058 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_thompson_no_aero_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3272,8 +3272,8 @@ Checking test 059 fv3_ccpp_thompson_no_aero_debug results .... Test 059 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_rrfs_v1beta_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3340,8 +3340,8 @@ Checking test 060 fv3_ccpp_rrfs_v1beta_debug results .... Test 060 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3408,8 +3408,8 @@ Checking test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3426,8 +3426,8 @@ Checking test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_control_prod +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3479,8 +3479,8 @@ Checking test 063 cpld_control results .... Test 063 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_restart_prod +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3532,9 +3532,9 @@ Checking test 064 cpld_restart results .... Test 064 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_2threads_prod -Checking test 065 cpld_2threads results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3582,12 +3582,12 @@ Checking test 065 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 065 cpld_2threads PASS +Test 065 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_decomp_prod -Checking test 066 cpld_decomp results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3635,12 +3635,12 @@ Checking test 066 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 066 cpld_decomp PASS +Test 066 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_satmedmf_prod -Checking test 067 cpld_satmedmf results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3688,12 +3688,12 @@ Checking test 067 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 067 cpld_satmedmf PASS +Test 067 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_ca_prod -Checking test 068 cpld_ca results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3741,12 +3741,12 @@ Checking test 068 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 068 cpld_ca PASS +Test 068 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_control_c192_prod -Checking test 069 cpld_control_c192 results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3794,12 +3794,12 @@ Checking test 069 cpld_control_c192 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_control_c192 PASS +Test 069 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_restart_c192_prod -Checking test 070 cpld_restart_c192 results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3847,12 +3847,504 @@ Checking test 070 cpld_restart_c192 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_restart_c192 PASS +Test 070 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_control_c384_prod -Checking test 071 cpld_control_c384 results .... +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 .... + 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/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/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 + + +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 .... + 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/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/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 + + +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 .... + 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/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/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 + + +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 .... + 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/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/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 + + +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 .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 075 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 .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 076 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 .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 077 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 .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 078 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 .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 079 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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3901,14 +4393,14 @@ Checking test 071 cpld_control_c384 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 + 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 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_controlfrac_c384_prod -Checking test 072 cpld_controlfrac_c384 results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3957,14 +4449,14 @@ Checking test 072 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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_controlfrac_c384 PASS + 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 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_bmark_prod -Checking test 073 cpld_bmark results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4015,12 +4507,124 @@ Checking test 073 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 073 cpld_bmark PASS +Test 082 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 .... + 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 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 + 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.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 083 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 .... + 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 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 + 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.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 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_restart_bmark_prod -Checking test 074 cpld_restart_bmark results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4033,6 +4637,9 @@ Checking test 074 cpld_restart_bmark results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK + Comparing 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -4071,12 +4678,12 @@ Checking test 074 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 074 cpld_restart_bmark PASS +Test 085 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_bmark_wave_prod -Checking test 075 cpld_bmark_wave results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4130,12 +4737,124 @@ Checking test 075 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 075 cpld_bmark_wave PASS +Test 086 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 .... + 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 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 20130401.120000.out_grd.gwes_30m .........OK + Comparing 20130401.120000.out_pnt.points .........OK + Comparing 20130401.120000.restart.gwes_30m .........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/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.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 + + +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 .... + 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 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 + 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 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/cpld_debug_prod -Checking test 076 cpld_debug results .... +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 .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4183,87 +4902,87 @@ Checking test 076 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 076 cpld_debug PASS +Test 089 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/datm_control_cfsr -Checking test 077 datm_control_cfsr results .... +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 .... 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 077 datm_control_cfsr PASS +Test 090 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/datm_restart_cfsr -Checking test 078 datm_restart_cfsr results .... +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 .... 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 078 datm_restart_cfsr PASS +Test 091 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/datm_control_gefs -Checking test 079 datm_control_gefs results .... +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 .... 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 079 datm_control_gefs PASS +Test 092 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/datm_bulk_cfsr -Checking test 080 datm_bulk_cfsr results .... +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 .... 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 080 datm_bulk_cfsr PASS +Test 093 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/datm_bulk_gefs -Checking test 081 datm_bulk_gefs results .... +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 .... 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 081 datm_bulk_gefs PASS +Test 094 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/datm_mx025_cfsr -Checking test 082 datm_mx025_cfsr results .... +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 .... 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 082 datm_mx025_cfsr PASS +Test 095 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/datm_mx025_gefs -Checking test 083 datm_mx025_gefs results .... +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 .... 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 083 datm_mx025_gefs PASS +Test 096 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_109510/datm_debug_cfsr -Checking test 084 datm_debug_cfsr results .... +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 .... 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 084 datm_debug_cfsr PASS +Test 097 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Dec 30 16:38:42 CST 2020 -Elapsed time: 01h:08m:38s. Have a nice day! +Tue Jan 5 20:02:13 CST 2021 +Elapsed time: 01h:08m:56s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index cdd184b2af..0441c81170 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Thu Dec 31 00:03:01 UTC 2020 +Tue Jan 5 21:06:41 UTC 2021 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_control_prod +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 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-20201223/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_decomp_prod +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 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-20201223/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_2threads_prod +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 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-20201223/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_restart_prod +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 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-20201223/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_read_inc_prod +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 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-20201223/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_wrtGauss_netcdf_esmf_prod +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 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-20201223/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_wrtGauss_netcdf_prod +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 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-20201223/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_wrtGauss_netcdf_parallel_prod +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 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-20201223/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_wrtGlatlon_netcdf_prod +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 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-20201223/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_wrtGauss_nemsio_prod +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 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-20201223/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_wrtGauss_nemsio_c192_prod +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 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-20201223/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_stochy_prod +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 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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_iau_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_lheatstrg_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_multigases_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,8 +888,8 @@ Checking test 015 fv3_ccpp_multigases results .... Test 015 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_control_32bit_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,8 +956,8 @@ Checking test 016 fv3_ccpp_control_32bit results .... Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_stretched_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1012,8 +1012,8 @@ Checking test 017 fv3_ccpp_stretched results .... Test 017 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_stretched_nest_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,8 +1079,8 @@ Checking test 018 fv3_ccpp_stretched_nest results .... Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_regional_control_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1090,8 +1090,8 @@ Checking test 019 fv3_ccpp_regional_control results .... Test 019 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_regional_restart_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1099,8 +1099,8 @@ Checking test 020 fv3_ccpp_regional_restart results .... Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_regional_quilt_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 021 fv3_ccpp_regional_quilt results .... Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_regional_quilt_netcdf_parallel_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1121,8 +1121,8 @@ Checking test 022 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_control_debug_prod +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 .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1151,8 +1151,8 @@ Checking test 023 fv3_ccpp_control_debug results .... Test 023 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_stretched_nest_debug_prod +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 .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1171,8 +1171,8 @@ Checking test 024 fv3_ccpp_stretched_nest_debug results .... Test 024 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfdlmp_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfdlmprad_gwd_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,8 +1267,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfdlmprad_noahmp_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_csawmg_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,8 +1363,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_satmedmf_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,8 +1411,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_satmedmfq_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,8 +1459,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfdlmp_32bit_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,8 +1507,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfdlmprad_32bit_post_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,8 +1559,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_cpt_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,8 +1613,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gsd_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_thompson_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 035 fv3_ccpp_thompson results .... Test 035 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_thompson_no_aero_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Test 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_rrfs_v1beta_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_rrfs_v1beta results .... Test 037 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfs_v16beta_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1989,8 +1989,8 @@ Checking test 038 fv3_ccpp_gfs_v16beta results .... Test 038 fv3_ccpp_gfs_v16beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfs_v16beta_restart_prod +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 .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2039,8 +2039,8 @@ Checking test 039 fv3_ccpp_gfs_v16beta_restart results .... Test 039 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfs_v16beta_stochy_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,8 +2107,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta_stochy results .... Test 040 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfs_v16beta_RRTMGP_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2175,8 +2175,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 041 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfsv16_csawmg_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2223,8 +2223,8 @@ Checking test 042 fv3_ccpp_gfsv16_csawmg results .... Test 042 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfsv16_csawmgt_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2271,8 +2271,8 @@ Checking test 043 fv3_ccpp_gfsv16_csawmgt results .... Test 043 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gocart_clm_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2319,8 +2319,8 @@ Checking test 044 fv3_ccpp_gocart_clm results .... Test 044 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfs_v16beta_flake_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2387,8 +2387,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_flake results .... Test 045 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2455,8 +2455,8 @@ Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 046 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2473,8 +2473,8 @@ Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfs_v16beta_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2541,8 +2541,8 @@ Checking test 048 fv3_ccpp_gfs_v16beta_debug results .... Test 048 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2609,8 +2609,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gsd_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2677,8 +2677,8 @@ Checking test 050 fv3_ccpp_gsd_debug results .... Test 050 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_gsd_diag3d_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2745,8 +2745,8 @@ Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... Test 051 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_thompson_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2813,8 +2813,8 @@ Checking test 052 fv3_ccpp_thompson_debug results .... Test 052 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_thompson_no_aero_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2881,8 +2881,8 @@ Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... Test 053 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_rrfs_v1beta_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2949,8 +2949,8 @@ Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... Test 054 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3017,8 +3017,8 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_29645/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3036,5 +3036,5 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 31 00:44:38 UTC 2020 -Elapsed time: 00h:41m:38s. Have a nice day! +Tue Jan 5 21:52:04 UTC 2021 +Elapsed time: 00h:45m:23s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 8dfb4b322f..c2e18a6909 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Wed Dec 30 23:59:07 UTC 2020 +Wed Jan 6 00:46:52 UTC 2021 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_control_prod +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 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-20201223/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_decomp_prod +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 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-20201223/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_2threads_prod +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 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-20201223/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_restart_prod +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 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-20201223/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_read_inc_prod +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 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-20201223/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_wrtGauss_netcdf_esmf_prod +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 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-20201223/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_wrtGauss_netcdf_prod +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 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-20201223/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_wrtGauss_netcdf_parallel_prod +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 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 ............ALT CHECK......OK + Comparing phyf000.nc .........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-20201223/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_wrtGlatlon_netcdf_prod +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 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-20201223/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_wrtGauss_nemsio_prod +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 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-20201223/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_wrtGauss_nemsio_c192_prod +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 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-20201223/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_stochy_prod +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 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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_iau_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -766,8 +766,8 @@ Checking test 013 fv3_ccpp_iau results .... Test 013 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_lheatstrg_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -814,8 +814,8 @@ Checking test 014 fv3_ccpp_lheatstrg results .... Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfdlmprad_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -863,8 +863,8 @@ Checking test 015 fv3_ccpp_gfdlmprad results .... Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfdlmprad_atmwav_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -912,8 +912,8 @@ Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_multigases_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -986,8 +986,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_control_32bit_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1054,8 +1054,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_stretched_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1110,8 +1110,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_stretched_nest_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1177,8 +1177,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_regional_control_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1188,8 +1188,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_regional_restart_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1197,8 +1197,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_regional_quilt_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1208,19 +1208,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_regional_quilt_netcdf_parallel_prod +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 .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_control_debug_prod +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 .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1249,8 +1249,8 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_stretched_nest_debug_prod +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 .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -1269,8 +1269,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfdlmp_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1317,8 +1317,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfdlmprad_gwd_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1365,8 +1365,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfdlmprad_noahmp_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1413,8 +1413,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_csawmg_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1461,8 +1461,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_satmedmf_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1509,8 +1509,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_satmedmfq_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1557,8 +1557,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfdlmp_32bit_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1605,8 +1605,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfdlmprad_32bit_post_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,8 +1657,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_cpt_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1711,8 +1711,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gsd_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1803,8 +1803,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_thompson_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1871,8 +1871,8 @@ Checking test 037 fv3_ccpp_thompson results .... Test 037 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_thompson_no_aero_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1939,8 +1939,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_rrfs_v1beta_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2007,8 +2007,8 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfs_v16beta_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2087,8 +2087,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... Test 040 fv3_ccpp_gfs_v16beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfs_v16beta_restart_prod +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 @@ -2137,8 +2137,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_restart results .... Test 041 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfs_v16beta_stochy_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2205,8 +2205,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_stochy results .... Test 042 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfs_v16beta_RRTMGP_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2273,8 +2273,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 043 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfsv16_csawmg_prod +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 @@ -2321,8 +2321,8 @@ Checking test 044 fv3_ccpp_gfsv16_csawmg results .... Test 044 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfsv16_csawmgt_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2369,8 +2369,8 @@ Checking test 045 fv3_ccpp_gfsv16_csawmgt results .... Test 045 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gocart_clm_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2417,8 +2417,8 @@ Checking test 046 fv3_ccpp_gocart_clm results .... Test 046 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfs_v16beta_flake_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2485,8 +2485,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_flake results .... Test 047 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2553,8 +2553,8 @@ Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 048 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2571,8 +2571,8 @@ Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfs_v16beta_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2639,8 +2639,8 @@ Checking test 050 fv3_ccpp_gfs_v16beta_debug results .... Test 050 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2707,8 +2707,8 @@ Checking test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 051 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gsd_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2775,8 +2775,8 @@ Checking test 052 fv3_ccpp_gsd_debug results .... Test 052 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_gsd_diag3d_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2843,8 +2843,8 @@ Checking test 053 fv3_ccpp_gsd_diag3d_debug results .... Test 053 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_thompson_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2911,8 +2911,8 @@ Checking test 054 fv3_ccpp_thompson_debug results .... Test 054 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_thompson_no_aero_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2979,8 +2979,8 @@ Checking test 055 fv3_ccpp_thompson_no_aero_debug results .... Test 055 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_rrfs_v1beta_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3047,8 +3047,8 @@ Checking test 056 fv3_ccpp_rrfs_v1beta_debug results .... Test 056 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +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 .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3115,8 +3115,8 @@ Checking test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 057 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +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 .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3133,8 +3133,8 @@ Checking test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 058 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_control_prod +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3186,8 +3186,8 @@ Checking test 059 cpld_control results .... Test 059 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_restart_prod +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3239,9 +3239,62 @@ Checking test 060 cpld_restart results .... Test 060 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_2threads_prod -Checking test 061 cpld_2threads results .... +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 .... + 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 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 + 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 + + +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3289,12 +3342,12 @@ Checking test 061 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 061 cpld_2threads PASS +Test 062 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_decomp_prod -Checking test 062 cpld_decomp results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3342,12 +3395,12 @@ Checking test 062 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 062 cpld_decomp PASS +Test 063 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_satmedmf_prod -Checking test 063 cpld_satmedmf results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3395,12 +3448,12 @@ Checking test 063 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 063 cpld_satmedmf PASS +Test 064 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_ca_prod -Checking test 064 cpld_ca results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3448,12 +3501,12 @@ Checking test 064 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 064 cpld_ca PASS +Test 065 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_control_c192_prod -Checking test 065 cpld_control_c192 results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3501,12 +3554,224 @@ Checking test 065 cpld_control_c192 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_control_c192 PASS +Test 066 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 .... + 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/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/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 + + +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 .... + 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/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/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 + + +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 .... + 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/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/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 + + +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 .... + 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/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/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 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_restart_c192_prod -Checking test 066 cpld_restart_c192 results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3552,14 +3817,17 @@ Checking test 066 cpld_restart_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 066 cpld_restart_c192 PASS +Test 071 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_control_c384_prod -Checking test 067 cpld_control_c384 results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3610,12 +3878,12 @@ Checking test 067 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 067 cpld_control_c384 PASS +Test 072 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_controlfrac_c384_prod -Checking test 068 cpld_controlfrac_c384 results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3666,12 +3934,12 @@ Checking test 068 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 068 cpld_controlfrac_c384 PASS +Test 073 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_bmark_prod -Checking test 069 cpld_bmark results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3720,14 +3988,14 @@ Checking test 069 cpld_bmark results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 069 cpld_bmark PASS + 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 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_restart_bmark_prod -Checking test 070 cpld_restart_bmark results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3778,12 +4046,12 @@ Checking test 070 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 070 cpld_restart_bmark PASS +Test 075 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_bmark_wave_prod -Checking test 071 cpld_bmark_wave results .... +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 .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3796,9 +4064,6 @@ Checking test 071 cpld_bmark_wave results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -3837,12 +4102,466 @@ Checking test 071 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 071 cpld_bmark_wave PASS +Test 076 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 .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 077 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 .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 078 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 .... + 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 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 + 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.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 079 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 .... + 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 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 + 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.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 + + +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 .... + 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 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 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........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/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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 081 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 .... + 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 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 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........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/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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 082 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 .... + 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 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 20130401.120000.out_grd.gwes_30m .........OK + Comparing 20130401.120000.out_pnt.points .........OK + Comparing 20130401.120000.restart.gwes_30m .........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/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.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 + + +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 .... + 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 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 + 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 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/cpld_debug_prod -Checking test 072 cpld_debug results .... +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 .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -3890,87 +4609,87 @@ Checking test 072 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 072 cpld_debug PASS +Test 085 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/datm_control_cfsr -Checking test 073 datm_control_cfsr results .... +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 .... 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 073 datm_control_cfsr PASS +Test 086 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/datm_restart_cfsr -Checking test 074 datm_restart_cfsr results .... +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 .... 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 074 datm_restart_cfsr PASS +Test 087 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/datm_control_gefs -Checking test 075 datm_control_gefs results .... +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 .... 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 075 datm_control_gefs PASS +Test 088 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/datm_bulk_cfsr -Checking test 076 datm_bulk_cfsr results .... +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 .... 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 076 datm_bulk_cfsr PASS +Test 089 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/datm_bulk_gefs -Checking test 077 datm_bulk_gefs results .... +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 .... 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 077 datm_bulk_gefs PASS +Test 090 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/datm_mx025_cfsr -Checking test 078 datm_mx025_cfsr results .... +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 .... 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 078 datm_mx025_cfsr PASS +Test 091 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/datm_mx025_gefs -Checking test 079 datm_mx025_gefs results .... +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 .... 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 079 datm_mx025_gefs PASS +Test 092 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201223/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_1255/datm_debug_cfsr -Checking test 080 datm_debug_cfsr results .... +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 .... 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 080 datm_debug_cfsr PASS +Test 093 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Dec 31 01:29:33 UTC 2020 -Elapsed time: 01h:30m:28s. Have a nice day! +Wed Jan 6 04:25:55 UTC 2021 +Elapsed time: 03h:39m:05s. Have a nice day! diff --git a/tests/fv3_conf/cpld_bmark_run.IN b/tests/fv3_conf/cpld_bmark_run.IN index eea57f2f27..443e09fd39 100644 --- a/tests/fv3_conf/cpld_bmark_run.IN +++ b/tests/fv3_conf/cpld_bmark_run.IN @@ -9,7 +9,13 @@ fi ICERES="${OCNRES:0:1}.${OCNRES:1}" BM_IC=BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR} -FV3_IC=${BM_IC}/gfs/@[ATMRES]/INPUT +if [[ ${FRAC_GRID_INPUT} = .F. ]]; then + FV3_IC=${BM_IC}/gfs/@[ATMRES]/INPUT +elif [[ @[NPZ] == '127' ]]; then + FV3_IC=FV3_input_frac/${BM_IC}/gfs/@[ATMRES]_L@[NPZ]/INPUT +else + FV3_IC=FV3_input_frac/${BM_IC}/gfs/@[ATMRES]/INPUT +fi MOM6_IC=${BM_IC}/mom6_da CICE_IC=${BM_IC}/cpc WW3_IC=${BM_IC}/ww3 @@ -29,9 +35,20 @@ cp @[INPUTDATA_ROOT]/${FV3_DIR}/*grb . cp @[INPUTDATA_ROOT]/${FV3_DIR}/@[FIELD_TABLE] ./field_table cp @[INPUTDATA_ROOT]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT -cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT +# NOTE: No L127 FV3_DIR input for non-frac grid input except for C96 +if [ ${FRAC_GRID_INPUT} = .F. ]; then + cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT +else + if [[ $NPZ == '127' ]]; then + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_l127.mx@[OCNRES]_frac/oro_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_l127.mx@[OCNRES]_frac/gfs_ctrl.nc ./INPUT + else + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/oro_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/gfs_ctrl.nc ./INPUT + fi +fi cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc -cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT # MOM6 fixed input cp @[INPUTDATA_ROOT]/MOM6_FIX/@[OCNRES]/* ./INPUT diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index 5ee7a6ec43..08747fcae5 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -1,7 +1,11 @@ mkdir INPUT RESTART history MOM6_OUTPUT if [[ $ATMRES == 'C96' ]]; then + if [[ $NPZ == '127' ]]; then + FV3_DIR=FV3_input_data_127 + else FV3_DIR=FV3_input_data + fi else FV3_DIR=FV3_input_data${ATMRES#C} fi @@ -14,7 +18,7 @@ cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/co2historicaldata_201*.txt . cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . if [ $OZ_PHYS_NEW = .T. ]; then - cp @[INPUTDATA_ROOT]/${FV3_DIR}/ozprdlos_2015_new_sbuv03_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/${FV3_DIR}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . fi @@ -23,13 +27,20 @@ cp @[INPUTDATA_ROOT]/${FV3_DIR}/*grb . cp @[INPUTDATA_ROOT]/${FV3_DIR}/@[FIELD_TABLE] ./field_table cp @[INPUTDATA_ROOT]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT +# NOTE: No L127 FV3_DIR for non-frac grid input except for C96 if [ ${FRAC_GRID_INPUT} = .F. ]; then cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT else + if [[ $NPZ == '127' ]]; then + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_l127.mx@[OCNRES]_frac/oro_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_l127.mx@[OCNRES]_frac/gfs_ctrl.nc ./INPUT + else cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/oro_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/gfs_ctrl.nc ./INPUT + fi fi cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc -cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT # MOM6 fixed input cp @[INPUTDATA_ROOT]/MOM6_FIX/@[OCNRES]/* ./INPUT @@ -46,8 +57,13 @@ if [ $WARM_START = .F. ]; then cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/sfc_data*.nc ./INPUT cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/gfs_data*.nc ./INPUT else - cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/sfc_data*.nc ./INPUT - cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/gfs_data*.nc ./INPUT + if [[ $NPZ == '127' ]]; then + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_l127.mx@[OCNRES]_frac/sfc_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_l127.mx@[OCNRES]_frac/gfs_data*.nc ./INPUT + else + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/sfc_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/gfs_data*.nc ./INPUT + fi fi cp @[INPUTDATA_ROOT]/MOM6_IC/MOM*.nc ./INPUT cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].res_2016100300.nc ./cice_model.res.nc diff --git a/tests/parm/MOM_input_template_100 b/tests/parm/MOM_input_template_100 index d5af4cccd2..ffb4c7de5e 100644 --- a/tests/parm/MOM_input_template_100 +++ b/tests/parm/MOM_input_template_100 @@ -167,13 +167,6 @@ CHANNEL_CONFIG = "list" ! default = "none" ! NetCDF file on the model grid. CHANNEL_LIST_FILE = "MOM_channels_SPEAR" ! default = "MOM_channel_list" ! The file from which the list of narrowed channels is read. -GRID_ROTATION_ANGLE_BUGS = False ! [Boolean] default = False - ! If true, use an older algorithm to calculate the sine and cosines needed - ! rotate between grid-oriented directions and true north and east. Differences - ! arise at the tripolar fold. -USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = False - ! If true, use older code that incorrectly sets the longitude in some points - ! along the tripolar fold to be off by 360 degrees. ! === module MOM_verticalGrid === ! Parameters providing information about the vertical grid. diff --git a/tests/parm/input.benchmark_v16.nml.IN b/tests/parm/input.benchmark_v16.nml.IN new file mode 100644 index 0000000000..c9aefb8d6e --- /dev/null +++ b/tests/parm/input.benchmark_v16.nml.IN @@ -0,0 +1,330 @@ +&amip_interp_nml + interp_oi_sst = .true. + use_ncep_sst = .true. + use_ncep_ice = .false. + no_anom_sst = .false. + data_set = 'reynolds_oi' + date_out_of_range = 'climo' + +/ + +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + fdiag = 6 + fhmax = 840 + fhout = 6 + fhmaxhf = 0 + fhouthf = -1 + ccpp_suite = '@[SUITE_NAME]' + +/ + +&diag_manager_nml + prepend_date = .false. + +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 + +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = 3000000 + print_memory_usage = .false. + +/ + +&fv_core_nml + layout = @[INPES],@[JNPES] + io_layout = 1,1 + npx = @[NPX] + npy = @[NPY] + ntiles = 6, + npz = @[NPZ] + grid_type = -1 + make_nh = @[MAKE_NH] + fv_debug = .false. + range_warn = .false. + reset_eta = .false. + n_sponge = 42 + nudge_qv = .true. + nudge_dz = .false. + tau = 10. + rf_cutoff = 7.5e2 + d2_bg_k1 = 0.20 + d2_bg_k2 = 0.04 + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .false. + phys_hydrostatic = .false. + use_hydro_pressure = .false. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 6 + nwat = 6 + na_init = @[NA_INIT] + d_ext = 0. + dnats = 1 + fv_sg_adj = 450 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.12 + vtdm4 = 0.02 + delt_max = 0.002 + ke_bg = 0. + do_vort_damp = .true. + external_ic = @[EXTERNAL_IC] + external_eta = .true. + gfs_phil = .false. + nggps_ic = @[NGGPS_IC] + mountain = @[MOUNTAIN] + ncep_ic = .false. + d_con = 1. + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 + adjust_dry_mass = .false. + consv_te = 1. + do_sat_adj = .true. + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = 6 + warm_start = @[WARM_START] + no_dycore = .false. + z_tracer = .true. + agrid_vel_rst = .true. + read_increment = .false. + res_latlon_dynamics = "" + +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = 0 + launch_level = 54 +/ + +&external_ic_nml + filtered_terrain = .true. + levp = 128 + gfs_dwinds = .true. + checker_tr = .false. + nt_checker = 0 + +/ + +&gfs_physics_nml + fhzero = 6 + oz_phys = .false. + oz_phys_2015 = .true. + h2o_phys = .true. + ldiag3d = .false. + fhcyc = 24 + use_ufo = .true. + pre_rad = .false. + ncld = 5 + imp_physics = 11 + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = 1 + iems = 1 + iaer = 5111 + icliq_sw = 2 + iovr = 3 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. + shal_cnv = .true. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = .false. + satmedmf = .true. + isatmedmf = 1 + lheatstrg = .false. + random_clds = .false. + trans_trac = .true. + cnvcld = .true. + imfshalcnv = 2 + imfdeepcnv = 2 + cdmbgwd = 1.1,0.72,1.0,1.0 + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsoil = 4 + lsm = 1 + iopt_dveg = 1 + iopt_crs = 1 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_alb = 2 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 1 + debug = .false. + nstf_name = 0,0,0,0,0 + frac_grid = @[FRAC_GRID] + nst_anl = .false. + psautco = 0.0008,0.0005 + prautco = 0.00015,0.00015 + lgfdlmprad = .true. + effr_in = .true. + ldiag_ugwp = .false. + do_ugwp = .false. + do_tofd = .true. + cplflx = .T. + cplwav = @[CPLWAV] + cplwav2atm = @[CPLWAV2ATM] + +/ + +&gfdl_cloud_microphysics_nml + sedi_transport = .true. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .F. + const_vs = .F. + const_vg = .F. + const_vr = .F. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 225. + tau_v2l = 150. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0E-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 150. + reiflag = 2 + +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' + +/ + +&namsfc + FNGLAC = "global_glacier.2x2.grb", + FNMXIC = "global_maxice.2x2.grb", + FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", + FNSNOC = "global_snoclim.1.875.grb", + FNZORC = "igbp", + FNALBC = @[FNALBC] + FNALBC2 = "global_albedo4.1x1.grb", + FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", + FNTG3C = "global_tg3clim.2.6x1.5.grb", + FNVEGC = "global_vegfrac.0.144.decpercent.grb", + FNVETC = @[FNVETC] + FNSOTC = @[FNSOTC] + FNSMCC = @[FNSMCC] + FNMSKH = "seaice_newland.grb", + FNTSFA = "", + FNACNA = "", + FNSNOA = "", + FNVMNC = "global_shdmin.0.144x0.144.grb", + FNVMXC = "global_shdmax.0.144x0.144.grb", + FNSLPC = "global_slope.1x1.grb", + FNABSC = @[FNABSC] + LDEBUG =.false., + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + LANDICE = .true. + FTSFS = 90 + FAISL = 99999 + FAISS = 99999 + FSNOL = 99999 + FSNOS = 99999 + FSICL = 99999 + FSICS = 99999 + FTSFL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 + +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' + +/ + +&nam_stochy +/ +&nam_sfcperts +/ + + &MOM_input_nml + output_directory = 'MOM6_OUTPUT/', + input_filename = '@[MOM6_RESTART_SETTING]' + restart_input_dir = 'INPUT/', + restart_output_dir = 'RESTART/', + parameter_filename = 'INPUT/MOM_input', + 'INPUT/MOM_override' / + diff --git a/tests/rt.conf b/tests/rt.conf index 313aa7cc14..c4c7323615 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -129,26 +129,45 @@ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug # 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 | +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_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_controlfrac | standard | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restartfrac | standard | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac + 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 | +#12h/36h/48h restart tests 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_controlfrac_c192 | standard | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restartfrac_c192 | standard | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c192 + RUN | cpld_control_c384 | standard | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_c384 | standard | - wcoss_cray gaea.intel jet.intel | | cpld_control_c384 RUN | cpld_controlfrac_c384 | standard | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restartfrac_c384 | standard | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c384 + RUN | cpld_bmark | standard | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_restart_bmark | standard | - wcoss_cray gaea.intel jet.intel | | cpld_bmark +RUN | cpld_bmarkfrac | standard | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac | standard | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac + +#6h/6h/12h restart test +RUN | cpld_bmarkfrac_v16 | standard | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac_v16 | standard | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 -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 | +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_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 | +RUN | cpld_bmarkfrac_wave | standard | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmarkfrac_wave_v16 | 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 | +COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y | standard | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_debug | standard | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_debugfrac | standard | - wcoss_cray gaea.intel jet.intel | fv3 | ################################################################################################################################################################################ # Data Atmosphere tests # diff --git a/tests/rt.sh b/tests/rt.sh index 915d2376e6..9ca040525e 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -423,13 +423,13 @@ 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-20201223/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210105/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201223} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210105} fi -INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20201220/} -INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20201220/ +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210107} +INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20201220 shift $((OPTIND-1)) [[ $# -gt 1 ]] && usage diff --git a/tests/rt_35d.conf b/tests/rt_35d.conf index 69b2a76b59..655b74509f 100644 --- a/tests/rt_35d.conf +++ b/tests/rt_35d.conf @@ -17,3 +17,33 @@ 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 | | + hera.intel orion.intel | fv3 | | +RUN | cpld_bmarkfrac_35d | | | fv3 | | 2012010100 +RUN | cpld_bmarkfrac_35d | | | fv3 | | 2012040100 +RUN | cpld_bmarkfrac_35d | | | fv3 | | 2012070100 +RUN | cpld_bmarkfrac_35d | | | fv3 | | 2012100100 +RUN | cpld_bmarkfrac_35d | | | fv3 | | 2013010100 +RUN | cpld_bmarkfrac_35d | | | fv3 | | 2013040100 +RUN | cpld_bmarkfrac_35d | | | fv3 | | 2013070100 +RUN | cpld_bmarkfrac_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_bmarkfrac_wave_35d | | | fv3 | | 2012010100 +RUN | cpld_bmarkfrac_wave_35d | | | fv3 | | 2012040100 +RUN | cpld_bmarkfrac_wave_35d | | | fv3 | | 2012070100 +RUN | cpld_bmarkfrac_wave_35d | | | fv3 | | 2012100100 +RUN | cpld_bmarkfrac_wave_35d | | | fv3 | | 2013010100 +RUN | cpld_bmarkfrac_wave_35d | | | fv3 | | 2013040100 +RUN | cpld_bmarkfrac_wave_35d | | | fv3 | | 2013070100 +RUN | cpld_bmarkfrac_wave_35d | | | fv3 | | 2013100100 + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y WW3=Y | | + hera.intel orion.intel | fv3 | | +RUN | cpld_bmarkfrac_wave_v16_35d | | | fv3 | | 2012010100 +RUN | cpld_bmarkfrac_wave_v16_35d | | | fv3 | | 2012040100 +RUN | cpld_bmarkfrac_wave_v16_35d | | | fv3 | | 2012070100 +RUN | cpld_bmarkfrac_wave_v16_35d | | | fv3 | | 2012100100 +RUN | cpld_bmarkfrac_wave_v16_35d | | | fv3 | | 2013010100 +RUN | cpld_bmarkfrac_wave_v16_35d | | | fv3 | | 2013040100 +RUN | cpld_bmarkfrac_wave_v16_35d | | | fv3 | | 2013070100 +RUN | cpld_bmarkfrac_wave_v16_35d | | | fv3 | | 2013100100 diff --git a/tests/tests/cpld_bmark b/tests/tests/cpld_bmark index 921920dccc..e2365ce510 100644 --- a/tests/tests/cpld_bmark +++ b/tests/tests/cpld_bmark @@ -60,7 +60,7 @@ export LIST_FILES="phyf024.tile1.nc \ export_fv3 export_cpl -export RESTART_INTERVAL="6" +export RESTART_INTERVAL="12" export RESTART_N=${RESTART_INTERVAL} export SYEAR="2013" @@ -105,9 +105,6 @@ export CPL_FAST=${DT_ATMOS} export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -#TODO: Remove when BM Frac grid input is added -export FRAC_GRID_INPUT='.F.' - # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" export MESHICE="mesh.mx${OCNRES}.nc" diff --git a/tests/tests/cpld_bmark_35d b/tests/tests/cpld_bmark_35d index 9eee16eaaf..475eb34c97 100644 --- a/tests/tests/cpld_bmark_35d +++ b/tests/tests/cpld_bmark_35d @@ -54,9 +54,6 @@ export CPL_FAST=${DT_ATMOS} export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -#TODO: Remove when BM Frac grid input is added -export FRAC_GRID_INPUT='.F.' - # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" export MESHICE="mesh.mx${OCNRES}.nc" @@ -75,8 +72,6 @@ export OZ_PHYS_NEW=".T." export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" -#TODO: must remove for restart repro -export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_bmark_wave b/tests/tests/cpld_bmark_wave index 52fa194415..5d30e786b1 100644 --- a/tests/tests/cpld_bmark_wave +++ b/tests/tests/cpld_bmark_wave @@ -108,9 +108,6 @@ export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -#TODO: Remove when BM Frac grid input is added -export FRAC_GRID_INPUT='.F.' - export CPLWAV='.T.' export CPLWAV2ATM='.T.' @@ -133,7 +130,7 @@ export OZ_PHYS_NEW=".T." export MOM6_USE_WAVES='True' export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" -#TODO: must remove for restart repro +#TODO: must remove for restart repro. This setting is used in bmark+wave configurations only export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_bmark_wave_35d b/tests/tests/cpld_bmark_wave_35d index 0b12bd5bd5..8b078b7614 100644 --- a/tests/tests/cpld_bmark_wave_35d +++ b/tests/tests/cpld_bmark_wave_35d @@ -69,9 +69,6 @@ export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -#TODO: Remove when BM Frac grid input is added -export FRAC_GRID_INPUT='.F.' - export CPLWAV='.T.' export CPLWAV2ATM='.T.' @@ -94,7 +91,7 @@ export OZ_PHYS_NEW=".T." export MOM6_USE_WAVES='True' export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" -#TODO: must remove for restart repro +#TODO: must remove for restart repro. This setting is used in bmark+wave configurations only export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_bmarkfrac b/tests/tests/cpld_bmarkfrac new file mode 100644 index 0000000000..5ddc272d15 --- /dev/null +++ b/tests/tests/cpld_bmarkfrac @@ -0,0 +1,137 @@ +# +# cpld_bmarkfrac test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - frac grid" + +export CNTL_DIR="cpld_bmarkfrac" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-02-00000.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc" + +export_fv3 +export_cpl + +export RESTART_INTERVAL="12" +export RESTART_N=${RESTART_INTERVAL} + +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export TASKS=$TASKS_cpl_bmrk +export TPN=$TPN_cpl_bmrk +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export THRD=$THRD_cpl_bmrk +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk + +export med_petlist_bounds=$MPB_cpl_bmrk +export atm_petlist_bounds=$APB_cpl_bmrk +export ocn_petlist_bounds=$OPB_cpl_bmrk +export ice_petlist_bounds=$IPB_cpl_bmrk + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# set component and coupling timesteps +export DT_ATMOS='450' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" + +export RUNID="cpcice" + +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_v16 b/tests/tests/cpld_bmarkfrac_v16 new file mode 100644 index 0000000000..905c160b96 --- /dev/null +++ b/tests/tests/cpld_bmarkfrac_v16 @@ -0,0 +1,142 @@ +# +# cpld_bmarkfrac_v16 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - frac grid - v16" + +export CNTL_DIR="cpld_bmarkfrac_v16" + +export LIST_FILES="phyf012.tile1.nc \ + phyf012.tile2.nc \ + phyf012.tile3.nc \ + phyf012.tile4.nc \ + phyf012.tile5.nc \ + phyf012.tile6.nc \ + dynf012.tile1.nc \ + dynf012.tile2.nc \ + dynf012.tile3.nc \ + dynf012.tile4.nc \ + dynf012.tile5.nc \ + dynf012.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-01-43200.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc" + +export_fv3 +export_cpl + +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export DAYS="0.5" +export FHMAX="12" +export RESTART_INTERVAL="6" +export RESTART_N=${RESTART_INTERVAL} + +export TASKS=$TASKS_cpl_bmrk +export TPN=$TPN_cpl_bmrk +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export THRD=$THRD_cpl_bmrk +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk + +export med_petlist_bounds=$MPB_cpl_bmrk +export atm_petlist_bounds=$APB_cpl_bmrk +export ocn_petlist_bounds=$OPB_cpl_bmrk +export ice_petlist_bounds=$IPB_cpl_bmrk + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# set component and coupling timesteps +export DT_ATMOS='300' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +export NPZ=127 +export NPZP=128 + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" + +export RUNID="cpcice" + +export INPUT_NML=input.benchmark_v16.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v16beta_coupled" + +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave b/tests/tests/cpld_bmarkfrac_wave new file mode 100644 index 0000000000..ba80bd862b --- /dev/null +++ b/tests/tests/cpld_bmarkfrac_wave @@ -0,0 +1,146 @@ +# +# cpld_bmarkfrac_wave test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384 MX025 - Benchmark test with waves - frac grid" + +export CNTL_DIR="cpld_bmarkfrac_wave" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + 20130402.000000.out_grd.gwes_30m \ + 20130402.000000.out_pnt.points \ + 20130402.000000.restart.gwes_30m \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-02-00000.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc" + +export_fv3 +export_cpl + +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export WLCLK=60 + +export TASKS=$TASKS_cpl_wwav +export TPN=$TPN_cpl_wwav +export INPES=$INPES_cpl_wwav +export JNPES=$JNPES_cpl_wwav +export THRD=$THRD_cpl_wwav +export WRTTASK_PER_GROUP=$WPG_cpl_wwav + +export med_petlist_bounds=$MPB_cpl_wwav +export atm_petlist_bounds=$APB_cpl_wwav +export ocn_petlist_bounds=$OPB_cpl_wwav +export ice_petlist_bounds=$IPB_cpl_wwav +export wav_petlist_bounds=$WPB_cpl_wwav + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# set component and coupling timesteps +export DT_ATMOS='450' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +export CPLWAV='.T.' +export CPLWAV2ATM='.T.' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_USE_WAVES='True' +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +#TODO: must remove for restart repro. This setting is used in bmark+wave configurations only +export MOM6_REPRO_LA='True' + +export RUNID="cpcice" + +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_35d b/tests/tests/cpld_bmarkfrac_wave_35d new file mode 100644 index 0000000000..a6088708bc --- /dev/null +++ b/tests/tests/cpld_bmarkfrac_wave_35d @@ -0,0 +1,108 @@ +# +# cpld_bmarkfrac_wave 35D +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384 MX025 - Benchmark 35d test with waves - frac grid" + +export_35d_run +export_fv3 +export_cpl + +export SYEAR +export SMONTH +export SDAY="01" +export SHOUR="00" + +export DAYS="35" +export FHMAX="840" +export RESTART_N=${FHMAX} +export WLCLK=480 + +#export TASKS=$TASKS_cpl_wwav +#export TPN=$TPN_cpl_wwav +#export INPES=$INPES_cpl_wwav +#export JNPES=$JNPES_cpl_wwav +#export THRD=$THRD_cpl_wwav +#export WRTTASK_PER_GROUP=$WPG_cpl_wwav + +#export med_petlist_bounds=$MPB_cpl_wwav +#export atm_petlist_bounds=$APB_cpl_wwav +#export ocn_petlist_bounds=$OPB_cpl_wwav +#export ice_petlist_bounds=$IPB_cpl_wwav +#export wav_petlist_bounds=$WPB_cpl_wwav + +export TASKS=866 +export TPN=40 +export INPES=6 +export JNPES=12 +export THRD=1 +export WRTTASK_PER_GROUP=24 + +export med_petlist_bounds="0 431" +export atm_petlist_bounds="0 455" +export ocn_petlist_bounds="456 695" +export ice_petlist_bounds="696 743" +export wav_petlist_bounds="744 865" + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# set component and coupling timesteps +export DT_ATMOS='450' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +export CPLWAV='.T.' +export CPLWAV2ATM='.T.' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_USE_WAVES='True' +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +#TODO: must remove for restart repro. This setting is used in bmark+wave configurations only +export MOM6_REPRO_LA='True' + +export RUNID="cpcice" + +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export RT35D='.T.' +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_v16 b/tests/tests/cpld_bmarkfrac_wave_v16 new file mode 100644 index 0000000000..8c51b1c5ce --- /dev/null +++ b/tests/tests/cpld_bmarkfrac_wave_v16 @@ -0,0 +1,153 @@ +# +# cpld_bmarkfrac_wave_v16 test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark test with waves-frac grid - v16" + +export CNTL_DIR="cpld_bmarkfrac_wave_v16" + +export LIST_FILES="phyf012.tile1.nc \ + phyf012.tile2.nc \ + phyf012.tile3.nc \ + phyf012.tile4.nc \ + phyf012.tile5.nc \ + phyf012.tile6.nc \ + dynf012.tile1.nc \ + dynf012.tile2.nc \ + dynf012.tile3.nc \ + dynf012.tile4.nc \ + dynf012.tile5.nc \ + dynf012.tile6.nc \ + 20130401.120000.out_grd.gwes_30m \ + 20130401.120000.out_pnt.points \ + 20130401.120000.restart.gwes_30m \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-01-43200.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc" + +export_fv3 +export_cpl + +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export DAYS="0.5" +export FHMAX="12" +export RESTART_INTERVAL=${FHMAX} +export RESTART_N=${RESTART_INTERVAL} + +#export WLCLK=60 + +export TASKS=$TASKS_cpl_wwav +export TPN=$TPN_cpl_wwav +export INPES=$INPES_cpl_wwav +export JNPES=$JNPES_cpl_wwav +export THRD=$THRD_cpl_wwav +export WRTTASK_PER_GROUP=$WPG_cpl_wwav + +export med_petlist_bounds=$MPB_cpl_wwav +export atm_petlist_bounds=$APB_cpl_wwav +export ocn_petlist_bounds=$OPB_cpl_wwav +export ice_petlist_bounds=$IPB_cpl_wwav +export wav_petlist_bounds=$WPB_cpl_wwav + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# set component and coupling timesteps +export DT_ATMOS='300' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +export NPZ=127 +export NPZP=128 + +export CPLWAV='.T.' +export CPLWAV2ATM='.T.' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_USE_WAVES='True' +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +#TODO: must remove for restart repro. This setting is used in bmark+wave configurations only +export MOM6_REPRO_LA='True' + +export RUNID="cpcice" + +export INPUT_NML=input.benchmark_v16.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v16beta_coupled" +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_v16_35d b/tests/tests/cpld_bmarkfrac_wave_v16_35d new file mode 100644 index 0000000000..e0fc9d781a --- /dev/null +++ b/tests/tests/cpld_bmarkfrac_wave_v16_35d @@ -0,0 +1,121 @@ +# +# cpld_bmark_v16beta 35D +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark 35d test with v16beta" + +export_35d_run +export_fv3 +export_cpl + +export SYEAR +export SMONTH +export SDAY="01" +export SHOUR="00" + +export DAYS="35" +export FHMAX="840" +export RESTART_N=${FHMAX} +export WLCLK=480 + +#export TASKS=$TASKS_cpl_wwav +#export TPN=$TPN_cpl_wwav +#export INPES=$INPES_cpl_wwav +#export JNPES=$JNPES_cpl_wwav +#export THRD=$THRD_cpl_wwav +#export WRTTASK_PER_GROUP=$WPG_cpl_wwav + +#export med_petlist_bounds=$MPB_cpl_wwav +#export atm_petlist_bounds=$APB_cpl_wwav +#export ocn_petlist_bounds=$OPB_cpl_wwav +#export ice_petlist_bounds=$IPB_cpl_wwav +#export wav_petlist_bounds=$WPB_cpl_wwav + +export TPN=40 +export THRD=1 +export WRTTASK_PER_GROUP=24 + +# 6x12 setting +#export TASKS=866 +#export INPES=6 +#export JNPES=12 +#export med_petlist_bounds="0 431" +#export atm_petlist_bounds="0 455" +#export ocn_petlist_bounds="456 695" +#export ice_petlist_bounds="696 743" +#export wav_petlist_bounds="744 865" + +# 8x12 setting +export TASKS=1010 +export INPES=8 +export JNPES=12 +export med_petlist_bounds="0 575" +export atm_petlist_bounds="0 599" +export ocn_petlist_bounds="600 839" +export ice_petlist_bounds="840 887" +export wav_petlist_bounds="888 1009" + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# set component and coupling timesteps +export DT_ATMOS='300' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +export NPZ=127 +export NPZP=128 + +export CPLWAV='.T.' +export CPLWAV2ATM='.T.' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_USE_WAVES='True' +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +#TODO: must remove for restart repro. This setting is used in bmark+wave configurations only +export MOM6_REPRO_LA='True' + +export RUNID="cpcice" + +export INPUT_NML=input.benchmark_v16.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v16beta_coupled" +export RT35D='.T.' +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_control_c192 b/tests/tests/cpld_control_c192 index e2bb50b779..353d6a4398 100644 --- a/tests/tests/cpld_control_c192 +++ b/tests/tests/cpld_control_c192 @@ -5,18 +5,18 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050" export CNTL_DIR="cpld_control_c192" -export LIST_FILES="phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ +export LIST_FILES="phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -50,13 +50,15 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-04-00000.nc \ - RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + RESTART/iced.2016-10-05-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc" export_fv3 export_cpl -export RESTART_INTERVAL="6" +export DAYS="2" +export FHMAX="48" +export RESTART_INTERVAL="12" export RESTART_N=${RESTART_INTERVAL} export TASKS=$TASKS_cpl_c192 diff --git a/tests/tests/cpld_control_c384 b/tests/tests/cpld_control_c384 index de72bf8097..b68958ce7a 100644 --- a/tests/tests/cpld_control_c384 +++ b/tests/tests/cpld_control_c384 @@ -59,7 +59,8 @@ export LIST_FILES="phyf024.tile1.nc \ export_fv3 export_cpl -export WLCLK=60 +export RESTART_INTERVAL="12" +export RESTART_N=${RESTART_INTERVAL} export TASKS=$TASKS_cpl_c384 export TPN=$TPN_cpl_c384 @@ -98,9 +99,6 @@ export CPL_FAST=${DT_ATMOS} export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -#TODO: Should remove -export FRAC_GRID_INPUT='.F.' - # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" export MESHICE="mesh.mx${OCNRES}.nc" @@ -116,7 +114,5 @@ export FNSMCC="'global_soilmgldas.t766.1536.768.grb'," export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," export MOM6_RIVER_RUNOFF='True' -#TODO: must remove for restart repro -export MOM6_REPRO_LA='True' export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_controlfrac b/tests/tests/cpld_controlfrac new file mode 100644 index 0000000000..e1379fbd91 --- /dev/null +++ b/tests/tests/cpld_controlfrac @@ -0,0 +1,66 @@ +# +# cpld_controlfrac test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - frac grid" + +export CNTL_DIR="cpld_controlfrac" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + +export_fv3 +export_cpl + +export RESTART_INTERVAL="12" +export RESTART_N=${RESTART_INTERVAL} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_controlfrac_c192 b/tests/tests/cpld_controlfrac_c192 new file mode 100644 index 0000000000..1eaf7c5f2e --- /dev/null +++ b/tests/tests/cpld_controlfrac_c192 @@ -0,0 +1,121 @@ +# +# cpld_controlfrac_c192 test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - frac grid" + +export CNTL_DIR="cpld_controlfrac_c192" + +export LIST_FILES="phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/iced.2016-10-05-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc" + +export_fv3 +export_cpl + +export DAYS="2" +export FHMAX="48" +export RESTART_INTERVAL="12" +export RESTART_N=${RESTART_INTERVAL} + +export TASKS=$TASKS_cpl_c192 +export TPN=$TPN_cpl_c192 +export INPES=$INPES_cpl_c192 +export JNPES=$JNPES_cpl_c192 +export THRD=$THRD_cpl_c192 +export WRTTASK_PER_GROUP=$WPG_cpl_c192 +export WRITE_GROUP=1 + +export med_petlist_bounds=$MPB_cpl_c192 +export atm_petlist_bounds=$APB_cpl_c192 +export ocn_petlist_bounds=$OPB_cpl_c192 +export ice_petlist_bounds=$IPB_cpl_c192 + +# atm/ocn/ice resolution +export ATMRES='C192' +export NPX=193 +export NPY=193 +export IMO=768 +export JMO=384 + +export OCNRES='050' +export ICERES='0.50' +export NX_GLB=720 +export NY_GLB=576 +export NPROC_ICE='24' + +# set component and coupling timesteps +export DT_ATMOS='900' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='1800' +export DT_THERM_MOM6='3600' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t382.768.384.rg.grb'," +export FNVETC="'global_vegtype.igbp.t382.768.384.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," +export FNSMCC="'global_soilmgldas.t382.768.384.grb'," +export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," + +export MOM6_RIVER_RUNOFF='True' + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_controlfrac_c384 b/tests/tests/cpld_controlfrac_c384 index abdcb3846f..0002b0f5cd 100644 --- a/tests/tests/cpld_controlfrac_c384 +++ b/tests/tests/cpld_controlfrac_c384 @@ -59,6 +59,9 @@ export LIST_FILES="phyf024.tile1.nc \ export_fv3 export_cpl +export RESTART_INTERVAL="12" +export RESTART_N=${RESTART_INTERVAL} + export TASKS=$TASKS_cpl_c384 export TPN=$TPN_cpl_c384 export INPES=$INPES_cpl_c384 @@ -97,7 +100,7 @@ export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} export FRAC_GRID='.T.' -export CPLMODE="nems_frac" +export CPLMODE='nems_frac' # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" @@ -114,7 +117,5 @@ export FNSMCC="'global_soilmgldas.t766.1536.768.grb'," export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," export MOM6_RIVER_RUNOFF='True' -#TODO: must remove for restart repro -export MOM6_REPRO_LA='True' export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_debugfrac b/tests/tests/cpld_debugfrac new file mode 100644 index 0000000000..2eccfb9629 --- /dev/null +++ b/tests/tests/cpld_debugfrac @@ -0,0 +1,71 @@ +# +# cpld_debugfrac test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - debug - frac grid" + +export CNTL_DIR="cpld_debugfrac" + +export LIST_FILES="phyf006.tile1.nc \ + phyf006.tile2.nc \ + phyf006.tile3.nc \ + phyf006.tile4.nc \ + phyf006.tile5.nc \ + phyf006.tile6.nc \ + dynf006.tile1.nc \ + dynf006.tile2.nc \ + dynf006.tile3.nc \ + dynf006.tile4.nc \ + dynf006.tile5.nc \ + dynf006.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/iced.2016-10-03-21600.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc" + +export_fv3 +export_cpl + +export DAYS="0.25" +export FHMAX="6" +export NFHOUT_HF="1" +# requires extra time +export WLCLK=60 + +export RESTART_N=${FHMAX} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_bmark b/tests/tests/cpld_restart_bmark index 793c6b00b6..0986772341 100644 --- a/tests/tests/cpld_restart_bmark +++ b/tests/tests/cpld_restart_bmark @@ -108,9 +108,6 @@ export CPL_FAST=${DT_ATMOS} export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -#TODO: Remove when BM Frac grid input is added -export FRAC_GRID_INPUT='.F.' - # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" export MESHICE="mesh.mx${OCNRES}.nc" @@ -128,6 +125,7 @@ export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," export OZ_PHYS_NEW=".T." export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" export RUNID="cpcice" @@ -143,9 +141,6 @@ MOUNTAIN='.T.' RUNTYPE='continue' export USE_RESTART_TIME='.true.' -# MOM6 warm start -export MOM6_RESTART_SETTING="r" - export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" diff --git a/tests/tests/cpld_restart_bmarkfrac b/tests/tests/cpld_restart_bmarkfrac new file mode 100644 index 0000000000..90668e346a --- /dev/null +++ b/tests/tests/cpld_restart_bmarkfrac @@ -0,0 +1,152 @@ +# +# cpld_restart_bmarkfrac test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - restart - frac grid" + +export CNTL_DIR="cpld_bmarkfrac" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-02-00000.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc" + +export_fv3 +export_cpl + +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export FHROT='12' +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" + +export TASKS=$TASKS_cpl_bmrk +export TPN=$TPN_cpl_bmrk +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export THRD=$THRD_cpl_bmrk +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk + +export med_petlist_bounds=$MPB_cpl_bmrk +export atm_petlist_bounds=$APB_cpl_bmrk +export ocn_petlist_bounds=$OPB_cpl_bmrk +export ice_petlist_bounds=$IPB_cpl_bmrk + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# set component and coupling timesteps +export DT_ATMOS='450' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" + +export RUNID="cpcice" + +# ATM warm start +WARM_START='.T.' +MAKE_NH='.F.' +NA_INIT='0' +EXTERNAL_IC='.F.' +NGGPS_IC='.F.' +MOUNTAIN='.T.' + +# ICE warm start +RUNTYPE='continue' +export USE_RESTART_TIME='.true.' + +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_bmarkfrac_v16 b/tests/tests/cpld_restart_bmarkfrac_v16 new file mode 100644 index 0000000000..7b073fd563 --- /dev/null +++ b/tests/tests/cpld_restart_bmarkfrac_v16 @@ -0,0 +1,158 @@ +# +# cpld_restart_bmarkfrac_v16 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - restart - frac grid - v16" + +export CNTL_DIR="cpld_bmarkfrac_v16" + +export LIST_FILES="phyf012.tile1.nc \ + phyf012.tile2.nc \ + phyf012.tile3.nc \ + phyf012.tile4.nc \ + phyf012.tile5.nc \ + phyf012.tile6.nc \ + dynf012.tile1.nc \ + dynf012.tile2.nc \ + dynf012.tile3.nc \ + dynf012.tile4.nc \ + dynf012.tile5.nc \ + dynf012.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-01-43200.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc" + +export_fv3 +export_cpl + +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export DAYS="0.5" +export FHMAX="12" +export FHROT='6' +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" + +export TASKS=$TASKS_cpl_bmrk +export TPN=$TPN_cpl_bmrk +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export THRD=$THRD_cpl_bmrk +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk + +export med_petlist_bounds=$MPB_cpl_bmrk +export atm_petlist_bounds=$APB_cpl_bmrk +export ocn_petlist_bounds=$OPB_cpl_bmrk +export ice_petlist_bounds=$IPB_cpl_bmrk + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# set component and coupling timesteps +export DT_ATMOS='300' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +export NPZ=127 +export NPZP=128 + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" + +export RUNID="cpcice" + +# ATM warm start +WARM_START='.T.' +MAKE_NH='.F.' +NA_INIT='0' +EXTERNAL_IC='.F.' +NGGPS_IC='.F.' +MOUNTAIN='.T.' + +# ICE warm start +RUNTYPE='continue' +export USE_RESTART_TIME='.true.' + +export INPUT_NML=input.benchmark_v16.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v16beta_coupled" + +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_c192 b/tests/tests/cpld_restart_c192 index 1ad2f81ac5..36bc961bb5 100644 --- a/tests/tests/cpld_restart_c192 +++ b/tests/tests/cpld_restart_c192 @@ -1,22 +1,22 @@ # # cpld_restart_c192 test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - restart" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - 36h restart" export CNTL_DIR="cpld_control_c192" -export LIST_FILES="phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ +export LIST_FILES="phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -50,13 +50,15 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-04-00000.nc \ - RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + RESTART/iced.2016-10-05-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc" export_fv3 export_cpl -export FHROT='6' +export DAYS="2" +export FHMAX="48" +export FHROT='12' export RESTART_N=$((FHMAX-$FHROT)) export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" diff --git a/tests/tests/cpld_restart_c384 b/tests/tests/cpld_restart_c384 new file mode 100644 index 0000000000..0beebf5907 --- /dev/null +++ b/tests/tests/cpld_restart_c384 @@ -0,0 +1,137 @@ +# +# cpld_restart_c384 test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - restart" + +export CNTL_DIR="cpld_control_c384" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + +export_fv3 +export_cpl + +export FHROT='12' +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" + +export TASKS=$TASKS_cpl_c384 +export TPN=$TPN_cpl_c384 +export INPES=$INPES_cpl_c384 +export JNPES=$JNPES_cpl_c384 +export THRD=$THRD_cpl_c384 +export WRTTASK_PER_GROUP=$WPG_cpl_c384 + +export med_petlist_bounds=$MPB_cpl_c384 +export atm_petlist_bounds=$APB_cpl_c384 +export ocn_petlist_bounds=$OPB_cpl_c384 +export ice_petlist_bounds=$IPB_cpl_c384 + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# set component and coupling timesteps +export DT_ATMOS='450' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export MOM6_RIVER_RUNOFF='True' + +# ATM warm start +WARM_START='.T.' +MAKE_NH='.F.' +NA_INIT='0' +EXTERNAL_IC='.F.' +NGGPS_IC='.F.' +MOUNTAIN='.T.' + +# ICE warm start +RUNTYPE='continue' +export USE_RESTART_TIME='.true.' + +# MOM6 warm start +export MOM6_RESTART_SETTING="r" + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restartfrac b/tests/tests/cpld_restartfrac new file mode 100644 index 0000000000..392ddc3f93 --- /dev/null +++ b/tests/tests/cpld_restartfrac @@ -0,0 +1,85 @@ +# +# cpld_restartfrac test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - restart - frac grid" + +export CNTL_DIR="cpld_controlfrac" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + +export_fv3 +export_cpl + +export FHROT='12' +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +# ATM warm start +WARM_START='.T.' +MAKE_NH='.F.' +NA_INIT='0' +EXTERNAL_IC='.F.' +NGGPS_IC='.F.' +MOUNTAIN='.T.' + +# ICE warm start +RUNTYPE='continue' +export USE_RESTART_TIME='.true.' + +# MOM6 warm start +export MOM6_RESTART_SETTING="r" + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restartfrac_c192 b/tests/tests/cpld_restartfrac_c192 new file mode 100644 index 0000000000..4a8c1fc903 --- /dev/null +++ b/tests/tests/cpld_restartfrac_c192 @@ -0,0 +1,141 @@ +# +# cpld_restartfrac_c192 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - 36h restart - frac grid" + +export CNTL_DIR="cpld_controlfrac_c192" + +export LIST_FILES="phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/iced.2016-10-05-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc" + +export_fv3 +export_cpl + +export DAYS="2" +export FHMAX="48" +export FHROT='12' +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" + +export TASKS=$TASKS_cpl_c192 +export TPN=$TPN_cpl_c192 +export INPES=$INPES_cpl_c192 +export JNPES=$JNPES_cpl_c192 +export THRD=$THRD_cpl_c192 +export WRTTASK_PER_GROUP=$WPG_cpl_c192 +export WRITE_GROUP=1 + +export med_petlist_bounds=$MPB_cpl_c192 +export atm_petlist_bounds=$APB_cpl_c192 +export ocn_petlist_bounds=$OPB_cpl_c192 +export ice_petlist_bounds=$IPB_cpl_c192 + +# atm/ocn/ice resolution +export ATMRES='C192' +export NPX=193 +export NPY=193 +export IMO=768 +export JMO=384 + +export OCNRES='050' +export ICERES='0.50' +export NX_GLB=720 +export NY_GLB=576 +export NPROC_ICE='24' + +# set component and coupling timesteps +export DT_ATMOS='900' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='1800' +export DT_THERM_MOM6='3600' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t382.768.384.rg.grb'," +export FNVETC="'global_vegtype.igbp.t382.768.384.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," +export FNSMCC="'global_soilmgldas.t382.768.384.grb'," +export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," + +export MOM6_RIVER_RUNOFF='True' + +# ATM warm start +WARM_START='.T.' +MAKE_NH='.F.' +NA_INIT='0' +EXTERNAL_IC='.F.' +NGGPS_IC='.F.' +MOUNTAIN='.T.' + +# ICE warm start +RUNTYPE='continue' +export USE_RESTART_TIME='.true.' + +# MOM6 warm start +export MOM6_RESTART_SETTING="r" + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restartfrac_c384 b/tests/tests/cpld_restartfrac_c384 new file mode 100644 index 0000000000..71d798fbde --- /dev/null +++ b/tests/tests/cpld_restartfrac_c384 @@ -0,0 +1,140 @@ +# +# cpld_restartfrac_c384 test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - restart - frac grid" + +export CNTL_DIR="cpld_controlfrac_c384" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + +export_fv3 +export_cpl + +export FHROT='12' +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" + +export TASKS=$TASKS_cpl_c384 +export TPN=$TPN_cpl_c384 +export INPES=$INPES_cpl_c384 +export JNPES=$JNPES_cpl_c384 +export THRD=$THRD_cpl_c384 +export WRTTASK_PER_GROUP=$WPG_cpl_c384 + +export med_petlist_bounds=$MPB_cpl_c384 +export atm_petlist_bounds=$APB_cpl_c384 +export ocn_petlist_bounds=$OPB_cpl_c384 +export ice_petlist_bounds=$IPB_cpl_c384 + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# set component and coupling timesteps +export DT_ATMOS='450' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export MOM6_RIVER_RUNOFF='True' + +# ATM warm start +WARM_START='.T.' +MAKE_NH='.F.' +NA_INIT='0' +EXTERNAL_IC='.F.' +NGGPS_IC='.F.' +MOUNTAIN='.T.' + +# ICE warm start +RUNTYPE='continue' +export USE_RESTART_TIME='.true.' + +# MOM6 warm start +export MOM6_RESTART_SETTING="r" + +export FV3_RUN=cpld_control_run.IN From 5adf1d8672368ada53726cde9de10cfeccfe5b68 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Thu, 7 Jan 2021 08:45:22 -0700 Subject: [PATCH 053/109] Remove unnecessary SIMD instruction sets for Jet, first round of cleanup in rt.conf, initialize cld_amt to zero for regional runs (dycore) (#353) * Reduce SIMDMULTIARCH sets from four to two in cmake/Intel.cmake * First cleanup of regression test config tests/rt.conf * tests/rt.sh: reduce number of build jobs on jet.intel from 10 to 5 * Remove flags -f and -s from rt.sh, remove SET logic, remove corresponding column in all rt*conf files * Remove tests/rt_acorn.conf and run GFS v15p2 and GFS v16beta DEBUG tests on all platforms --- FV3 | 2 +- cmake/Intel.cmake | 4 +- modulefiles/jet.intel/fv3_debug | 42 + 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 +++++++++++++------ tests/rt.conf | 334 +++-- tests/rt.sh | 49 +- tests/rt_35d.conf | 90 +- tests/rt_acorn.conf | 52 - tests/rt_ccpp_dev.conf | 80 +- tests/rt_gnu.conf | 102 +- tests/rt_stampede.conf | 13 - 19 files changed, 6124 insertions(+), 2446 deletions(-) create mode 100644 modulefiles/jet.intel/fv3_debug delete mode 100644 tests/rt_acorn.conf delete mode 100644 tests/rt_stampede.conf diff --git a/FV3 b/FV3 index 9c73d9672f..45618a9b7e 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 9c73d9672f671437cb5f5adbc4b414c97186a367 +Subproject commit 45618a9b7e7f6829f37af55499431a5dcab6c215 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/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/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! diff --git a/tests/rt.conf b/tests/rt.conf index c4c7323615..b9fbd51782 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -1,188 +1,184 @@ -############################################################################################################################################################################################## -# 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 | + hera.intel orion.intel cheyenne.intel | fv3 | -RUN | fv3_ccpp_lndp | standard | + hera.intel | 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 | - gaea.intel | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | - orion.intel | 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 | - orion.intel | 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_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 | -RUN | fv3_ccpp_thompson | standard | | fv3 | -RUN | fv3_ccpp_thompson_no_aero | 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 | - 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 | - -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_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_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=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 | - -############################################################################################################################################################################################## -# DEBUG tests # -############################################################################################################################################################################################## +RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | 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 | | fv3 | +# fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests +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 | | fv3 | +RUN | fv3_ccpp_gocart_clm | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_flake | | 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 # +################################################################################################################################################################################### # 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 | 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,FV3_GFS_v16beta_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_controlfrac | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac | standard | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac - -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 | +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,FV3_GFS_v16beta_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_controlfrac | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restartfrac | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac + +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 | #12h/36h/48h restart tests -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_controlfrac_c192 | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac_c192 | standard | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c192 +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_controlfrac_c192 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restartfrac_c192 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c192 -RUN | cpld_control_c384 | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_c384 | standard | - wcoss_cray gaea.intel jet.intel | | cpld_control_c384 -RUN | cpld_controlfrac_c384 | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac_c384 | standard | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c384 +RUN | cpld_control_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_control_c384 +RUN | cpld_controlfrac_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restartfrac_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c384 -RUN | cpld_bmark | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmark | standard | - wcoss_cray gaea.intel jet.intel | | cpld_bmark -RUN | cpld_bmarkfrac | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmarkfrac | standard | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac +RUN | cpld_bmark | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmark | - wcoss_cray gaea.intel jet.intel | | cpld_bmark +RUN | cpld_bmarkfrac | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac #6h/6h/12h restart test -RUN | cpld_bmarkfrac_v16 | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmarkfrac_v16 | standard | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 +RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_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 | -RUN | cpld_bmarkfrac_wave | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_bmarkfrac_wave_v16 | standard | - wcoss_cray gaea.intel jet.intel | fv3 | +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | -COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_debug | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_debugfrac | 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,FV3_GFS_v16beta_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_debug | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_debugfrac | - wcoss_cray gaea.intel jet.intel | fv3 | -################################################################################################################################################################################ -# Data Atmosphere tests # -################################################################################################################################################################################ +################################################################################################################################################################################### +# 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 | +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 | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_bulk_gefs | standard | - 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 | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_mx025_gefs | standard | - 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 | standard | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | datm_debug_cfsr | standard | - 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 9ca040525e..5f59a58421 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 @@ -362,22 +360,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 +375,6 @@ while getopts ":cfsl:mn:kreh" opt; do n) SINGLE_NAME=$OPTARG TESTS_FILE='rt.conf.single' - SET_ID=' ' rm -f $TESTS_FILE ;; k) @@ -423,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} @@ -521,6 +509,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 +532,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 @@ -582,11 +579,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 @@ -644,14 +639,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 655b74509f..ecf56d651d 100644 --- a/tests/rt_35d.conf +++ b/tests/rt_35d.conf @@ -1,49 +1,49 @@ -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 -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | | + hera.intel orion.intel | fv3 | | -RUN | cpld_bmarkfrac_35d | | | fv3 | | 2012010100 -RUN | cpld_bmarkfrac_35d | | | fv3 | | 2012040100 -RUN | cpld_bmarkfrac_35d | | | fv3 | | 2012070100 -RUN | cpld_bmarkfrac_35d | | | fv3 | | 2012100100 -RUN | cpld_bmarkfrac_35d | | | fv3 | | 2013010100 -RUN | cpld_bmarkfrac_35d | | | fv3 | | 2013040100 -RUN | cpld_bmarkfrac_35d | | | fv3 | | 2013070100 -RUN | cpld_bmarkfrac_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_bmarkfrac_35d | | fv3 | | 2012010100 +RUN | cpld_bmarkfrac_35d | | fv3 | | 2012040100 +RUN | cpld_bmarkfrac_35d | | fv3 | | 2012070100 +RUN | cpld_bmarkfrac_35d | | fv3 | | 2012100100 +RUN | cpld_bmarkfrac_35d | | fv3 | | 2013010100 +RUN | cpld_bmarkfrac_35d | | fv3 | | 2013040100 +RUN | cpld_bmarkfrac_35d | | fv3 | | 2013070100 +RUN | cpld_bmarkfrac_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_bmarkfrac_wave_35d | | | fv3 | | 2012010100 -RUN | cpld_bmarkfrac_wave_35d | | | fv3 | | 2012040100 -RUN | cpld_bmarkfrac_wave_35d | | | fv3 | | 2012070100 -RUN | cpld_bmarkfrac_wave_35d | | | fv3 | | 2012100100 -RUN | cpld_bmarkfrac_wave_35d | | | fv3 | | 2013010100 -RUN | cpld_bmarkfrac_wave_35d | | | fv3 | | 2013040100 -RUN | cpld_bmarkfrac_wave_35d | | | fv3 | | 2013070100 -RUN | cpld_bmarkfrac_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_bmarkfrac_wave_35d | | fv3 | | 2012010100 +RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2012040100 +RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2012070100 +RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2012100100 +RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2013010100 +RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2013040100 +RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2013070100 +RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2013100100 -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y WW3=Y | | + hera.intel orion.intel | fv3 | | -RUN | cpld_bmarkfrac_wave_v16_35d | | | fv3 | | 2012010100 -RUN | cpld_bmarkfrac_wave_v16_35d | | | fv3 | | 2012040100 -RUN | cpld_bmarkfrac_wave_v16_35d | | | fv3 | | 2012070100 -RUN | cpld_bmarkfrac_wave_v16_35d | | | fv3 | | 2012100100 -RUN | cpld_bmarkfrac_wave_v16_35d | | | fv3 | | 2013010100 -RUN | cpld_bmarkfrac_wave_v16_35d | | | fv3 | | 2013040100 -RUN | cpld_bmarkfrac_wave_v16_35d | | | fv3 | | 2013070100 -RUN | cpld_bmarkfrac_wave_v16_35d | | | fv3 | | 2013100100 +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y WW3=Y | + hera.intel orion.intel | fv3 | | +RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012010100 +RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012040100 +RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012070100 +RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012100100 +RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2013010100 +RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2013040100 +RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2013070100 +RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2013100100 diff --git a/tests/rt_acorn.conf b/tests/rt_acorn.conf deleted file mode 100644 index 05a3cab240..0000000000 --- a/tests/rt_acorn.conf +++ /dev/null @@ -1,52 +0,0 @@ -################################################################################################################################################################################ -# 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 | | | diff --git a/tests/rt_ccpp_dev.conf b/tests/rt_ccpp_dev.conf index 60b9724f57..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 3d13d59cab..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 | + hera.gnu | 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 | + hera.gnu | fv3 | +COMPILE | DATM=Y S2S=Y | | fv3 | 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 e7bcc2d0884392e4069d5b542fc4714b0ddb003c Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Fri, 8 Jan 2021 17:13:07 -0700 Subject: [PATCH 054/109] Implementation of CCPP timestep_init and timestep_final phases (#337) * Update .gitmodules and submodule pointer for fv3atm for code review and testing * Update submodule pointer for fv3atm; skip-ci * Don't try to compile all suites in DEBUG mode on cheyenne.intel, weird bug on compute nodes; skip-ci * Don't try to compile all suites in DEBUG mode on wcoss_cray; skip-ci * Regression test logs for cheyenne.gnu, cheyenne.intel, gaea.intel, hera.gnu, hera.intel, jet.intel, orion.intel; skip-ci * Don't try to compile all suites in DEBUG mode on wcoss_dell_p3; skip-ci * Regression test logs for wcoss_cray and wcoss_dell_p3 * Revert change to .gitmodules and update submodule pointer for fv3atm --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 50 +++--- tests/RegressionTests_cheyenne.intel.log | 202 ++++++++++----------- tests/RegressionTests_gaea.intel.log | 136 +++++++------- tests/RegressionTests_hera.gnu.log | 50 +++--- tests/RegressionTests_hera.intel.log | 212 +++++++++++----------- tests/RegressionTests_jet.intel.log | 140 +++++++-------- tests/RegressionTests_orion.intel.log | 210 +++++++++++----------- tests/RegressionTests_wcoss_cray.log | 134 +++++++------- tests/RegressionTests_wcoss_dell_p3.log | 216 +++++++++++------------ tests/rt.conf | 4 +- 11 files changed, 679 insertions(+), 677 deletions(-) diff --git a/FV3 b/FV3 index 45618a9b7e..ae4c8bf894 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 45618a9b7e7f6829f37af55499431a5dcab6c215 +Subproject commit ae4c8bf894604b41a6bebd0bfec3cd2e61c1f337 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 2a9bf73d87..508786d301 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Wed Jan 6 10:18:55 MST 2021 +Thu Jan 7 14:10:30 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_23958/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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_23958/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_62180/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 10:36:57 MST 2021 -Elapsed time: 00h:18m:02s. Have a nice day! +Thu Jan 7 14:28:33 MST 2021 +Elapsed time: 00h:18m:04s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 584d1a7685..97656662e5 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Wed Jan 6 10:34:23 MST 2021 +Thu Jan 7 16:45:27 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_48369/fv3_ccpp_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -449,7 +449,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.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_48369/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_lndp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_iau_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_stretched_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 = /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 +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 = /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 +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_stretched_nest_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_cpt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_rap_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_hrrr_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_48369/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_48369/fv3_ccpp_gocart_clm_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -2632,7 +2632,7 @@ Test 048 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_48369/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -2700,7 +2700,7 @@ Test 049 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_48369/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -2768,7 +2768,7 @@ Test 050 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_48369/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -2786,7 +2786,7 @@ Test 051 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_48369/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -2854,7 +2854,7 @@ Test 052 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_48369/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -2922,7 +2922,7 @@ Test 053 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_48369/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -2990,7 +2990,7 @@ Test 054 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_48369/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -3058,7 +3058,7 @@ Test 055 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_48369/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -3126,7 +3126,7 @@ Test 056 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_48369/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -3194,7 +3194,7 @@ Test 057 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_48369/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -3262,7 +3262,7 @@ Test 058 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_48369/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -3330,7 +3330,7 @@ Test 059 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_48369/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -3398,7 +3398,7 @@ Test 060 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_48369/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -3466,7 +3466,7 @@ Test 061 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_48369/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -3484,7 +3484,7 @@ Test 062 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_48369/cpld_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_control_prod Checking test 063 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3537,7 +3537,7 @@ Test 063 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_48369/cpld_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_restart_prod Checking test 064 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3590,7 +3590,7 @@ Test 064 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_48369/cpld_controlfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_controlfrac_prod Checking test 065 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3643,7 +3643,7 @@ Test 065 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_48369/cpld_restartfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_restartfrac_prod Checking test 066 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3696,7 +3696,7 @@ Test 066 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_48369/cpld_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_2threads_prod Checking test 067 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3749,7 +3749,7 @@ Test 067 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_48369/cpld_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_decomp_prod Checking test 068 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3802,7 +3802,7 @@ Test 068 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_48369/cpld_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_satmedmf_prod Checking test 069 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3855,7 +3855,7 @@ Test 069 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_48369/cpld_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_ca_prod Checking test 070 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3908,7 +3908,7 @@ Test 070 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_48369/cpld_control_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_control_c192_prod Checking test 071 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3961,7 +3961,7 @@ Test 071 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_48369/cpld_restart_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_restart_c192_prod Checking test 072 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4014,7 +4014,7 @@ Test 072 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_48369/cpld_controlfrac_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_controlfrac_c192_prod Checking test 073 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4067,7 +4067,7 @@ Test 073 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_48369/cpld_restartfrac_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_restartfrac_c192_prod Checking test 074 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4120,7 +4120,7 @@ Test 074 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_48369/cpld_control_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_control_c384_prod Checking test 075 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4176,7 +4176,7 @@ Test 075 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_48369/cpld_restart_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_restart_c384_prod Checking test 076 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4232,7 +4232,7 @@ Test 076 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_48369/cpld_controlfrac_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_controlfrac_c384_prod Checking test 077 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4288,7 +4288,7 @@ Test 077 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_48369/cpld_restartfrac_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_restartfrac_c384_prod Checking test 078 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4344,7 +4344,7 @@ Test 078 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_48369/cpld_bmark_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_bmark_prod Checking test 079 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4400,7 +4400,7 @@ Test 079 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_48369/cpld_restart_bmark_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_restart_bmark_prod Checking test 080 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4456,7 +4456,7 @@ Test 080 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_48369/cpld_bmarkfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_bmarkfrac_prod Checking test 081 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4512,7 +4512,7 @@ Test 081 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_48369/cpld_restart_bmarkfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_restart_bmarkfrac_prod Checking test 082 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4568,7 +4568,7 @@ Test 082 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_48369/cpld_bmarkfrac_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_bmarkfrac_v16_prod Checking test 083 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4624,7 +4624,7 @@ Test 083 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_48369/cpld_restart_bmarkfrac_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_restart_bmarkfrac_v16_prod Checking test 084 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4680,7 +4680,7 @@ Test 084 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_48369/cpld_bmark_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_bmark_wave_prod Checking test 085 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4739,7 +4739,7 @@ Test 085 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_48369/cpld_bmarkfrac_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_bmarkfrac_wave_prod Checking test 086 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4798,7 +4798,7 @@ Test 086 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_48369/cpld_bmarkfrac_wave_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_bmarkfrac_wave_v16_prod Checking test 087 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4857,7 +4857,7 @@ Test 087 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_48369/cpld_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_debug_prod Checking test 088 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4910,7 +4910,7 @@ Test 088 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_48369/cpld_debugfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/cpld_debugfrac_prod Checking test 089 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4963,7 +4963,7 @@ Test 089 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_48369/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -4972,7 +4972,7 @@ Test 090 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_48369/datm_restart_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -4981,7 +4981,7 @@ Test 091 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_48369/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -4990,7 +4990,7 @@ Test 092 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_48369/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -4999,7 +4999,7 @@ Test 093 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_48369/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -5008,7 +5008,7 @@ Test 094 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_48369/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/datm_mx025_cfsr Checking test 095 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5020,7 +5020,7 @@ Test 095 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_48369/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/datm_mx025_gefs Checking test 096 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5032,7 +5032,7 @@ Test 096 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_48369/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_47838/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 @@ -5041,5 +5041,5 @@ Test 097 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 6 11:50:40 MST 2021 -Elapsed time: 01h:16m:17s. Have a nice day! +Thu Jan 7 18:25:35 MST 2021 +Elapsed time: 01h:40m:08s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index e824f4cf02..b0b369e45a 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Wed Jan 6 16:07:10 EST 2021 +Thu Jan 7 17:04:09 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_3647/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_decomp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_2threads_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_read_inc_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_stochy_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_ca_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_lndp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_iau_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_lheatstrg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_multigases_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_control_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_stretched_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_stretched_nest_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_regional_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_regional_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_regional_quilt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 = /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 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 phyf000.nc ............ALT CHECK......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-20210106/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_control_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_stretched_nest_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_gfdlmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_csawmg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_satmedmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_satmedmfq_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_cpt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_gsd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_rap_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_hrrr_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_thompson_no_aero_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_rrfs_v1beta_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_gfs_v15p2_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_gfs_v16beta_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_3647/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_3647/fv3_ccpp_gfsv16_csawmg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 @@ -2632,7 +2632,7 @@ 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 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 @@ -2680,7 +2680,7 @@ 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 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 @@ -2728,7 +2728,7 @@ Test 050 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_3647/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 @@ -2796,7 +2796,7 @@ Test 051 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_3647/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 @@ -2864,7 +2864,7 @@ Test 052 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_3647/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 @@ -2882,7 +2882,7 @@ 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 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 @@ -2950,7 +2950,7 @@ 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 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 @@ -3018,7 +3018,7 @@ 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 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 @@ -3086,7 +3086,7 @@ 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 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 @@ -3154,7 +3154,7 @@ Test 057 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_3647/fv3_ccpp_gsd_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 @@ -3222,7 +3222,7 @@ Test 058 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_3647/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 @@ -3290,7 +3290,7 @@ Test 059 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_3647/fv3_ccpp_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 @@ -3358,7 +3358,7 @@ Test 060 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_3647/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 @@ -3426,7 +3426,7 @@ Test 061 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_3647/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 @@ -3494,7 +3494,7 @@ Test 062 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_3647/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 @@ -3562,7 +3562,7 @@ Test 063 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_3647/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/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 @@ -3580,5 +3580,5 @@ Test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 6 16:42:58 EST 2021 -Elapsed time: 00h:35m:50s. Have a nice day! +Thu Jan 7 17:40:03 EST 2021 +Elapsed time: 00h:35m:55s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index b49ab210c6..a39bab5453 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Wed Jan 6 16:39:25 UTC 2021 +Thu Jan 7 16:23:58 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_150851/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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_150851/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_121119/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 17:27:38 UTC 2021 -Elapsed time: 00h:48m:14s. Have a nice day! +Thu Jan 7 17:57:15 UTC 2021 +Elapsed time: 01h:33m:17s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 0d10c21220..2a17002026 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Wed Jan 6 16:38:30 UTC 2021 +Thu Jan 7 16:23:37 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_3299/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 .........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 = /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 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_3299/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_3299/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -2779,7 +2779,7 @@ Test 051 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_3299/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -2827,7 +2827,7 @@ Test 052 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_3299/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -2875,7 +2875,7 @@ Test 053 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_3299/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -2943,7 +2943,7 @@ Test 054 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_3299/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -3011,7 +3011,7 @@ Test 055 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_3299/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -3029,7 +3029,7 @@ Test 056 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_3299/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -3097,7 +3097,7 @@ Test 057 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_3299/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -3165,7 +3165,7 @@ Test 058 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_3299/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -3233,7 +3233,7 @@ Test 059 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_3299/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -3301,7 +3301,7 @@ Test 060 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_3299/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -3369,7 +3369,7 @@ Test 061 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_3299/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -3437,7 +3437,7 @@ Test 062 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_3299/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -3505,7 +3505,7 @@ Test 063 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_3299/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -3573,7 +3573,7 @@ Test 064 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_3299/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -3641,7 +3641,7 @@ Test 065 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_3299/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -3709,7 +3709,7 @@ Test 066 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_3299/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -3727,7 +3727,7 @@ Test 067 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_3299/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_control_prod Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3780,7 +3780,7 @@ Test 068 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_3299/cpld_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restart_prod Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3833,7 +3833,7 @@ Test 069 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_3299/cpld_controlfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_controlfrac_prod Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3886,7 +3886,7 @@ Test 070 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_3299/cpld_restartfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restartfrac_prod Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3939,7 +3939,7 @@ Test 071 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_3299/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_2threads_prod Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3992,7 +3992,7 @@ Test 072 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_3299/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_decomp_prod Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4045,7 +4045,7 @@ Test 073 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_3299/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_satmedmf_prod Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4098,7 +4098,7 @@ Test 074 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_3299/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_ca_prod Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4151,7 +4151,7 @@ Test 075 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_3299/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_control_c192_prod Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4204,7 +4204,7 @@ Test 076 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_3299/cpld_restart_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restart_c192_prod Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4257,7 +4257,7 @@ Test 077 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_3299/cpld_controlfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_controlfrac_c192_prod Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4310,7 +4310,7 @@ Test 078 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_3299/cpld_restartfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restartfrac_c192_prod Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4363,7 +4363,7 @@ Test 079 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_3299/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_control_c384_prod Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4419,7 +4419,7 @@ Test 080 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_3299/cpld_restart_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restart_c384_prod Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4475,7 +4475,7 @@ Test 081 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_3299/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_controlfrac_c384_prod Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4531,7 +4531,7 @@ Test 082 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_3299/cpld_restartfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restartfrac_c384_prod Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4587,7 +4587,7 @@ Test 083 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_3299/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_bmark_prod Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4643,7 +4643,7 @@ Test 084 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_3299/cpld_restart_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restart_bmark_prod Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4699,7 +4699,7 @@ Test 085 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_3299/cpld_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_bmarkfrac_prod Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4755,7 +4755,7 @@ Test 086 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_3299/cpld_restart_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restart_bmarkfrac_prod Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4811,7 +4811,7 @@ Test 087 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_3299/cpld_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_bmarkfrac_v16_prod Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4867,7 +4867,7 @@ Test 088 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_3299/cpld_restart_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_restart_bmarkfrac_v16_prod Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4923,7 +4923,7 @@ Test 089 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_3299/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_bmark_wave_prod Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4982,7 +4982,7 @@ Test 090 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_3299/cpld_bmarkfrac_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_bmarkfrac_wave_prod Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5041,7 +5041,7 @@ Test 091 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_3299/cpld_bmarkfrac_wave_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_bmarkfrac_wave_v16_prod Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5100,7 +5100,7 @@ Test 092 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_3299/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_debug_prod Checking test 093 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5153,7 +5153,7 @@ Test 093 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_3299/cpld_debugfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/cpld_debugfrac_prod Checking test 094 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5206,7 +5206,7 @@ Test 094 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_3299/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -5215,7 +5215,7 @@ Test 095 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_3299/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -5224,7 +5224,7 @@ Test 096 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_3299/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -5233,7 +5233,7 @@ Test 097 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_3299/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -5242,7 +5242,7 @@ Test 098 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_3299/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 @@ -5251,7 +5251,7 @@ Test 099 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_3299/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/datm_mx025_cfsr Checking test 100 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5263,7 +5263,7 @@ Test 100 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_3299/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/datm_mx025_gefs Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5275,7 +5275,7 @@ Test 101 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_3299/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/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 18:05:46 UTC 2021 -Elapsed time: 01h:27m:17s. Have a nice day! +Thu Jan 7 19:17:41 UTC 2021 +Elapsed time: 02h:54m:04s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index cbd6d628b2..e7644750b8 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Wed Jan 6 22:03:47 GMT 2021 +Thu Jan 7 22:03:11 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_205832/fv3_ccpp_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_decomp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_2threads_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_read_inc_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 .........OK Comparing phyf024.nc .........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 = /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 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_ca_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_lndp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_iau_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_lheatstrg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_multigases_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_control_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_stretched_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_stretched_nest_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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,18 +1216,18 @@ 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_205832/fv3_ccpp_regional_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc ............ALT CHECK......OK 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_205832/fv3_ccpp_regional_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_regional_quilt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 = /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 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK 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_205832/fv3_ccpp_control_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_stretched_nest_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_gfdlmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_satmedmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_satmedmfq_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_cpt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_gsd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_thompson_no_aero_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_gfs_v15p2_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_gfs_v16beta_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_205832/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_205832/fv3_ccpp_gfsv16_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 @@ -2428,7 +2428,7 @@ 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 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 @@ -2476,7 +2476,7 @@ 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 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 @@ -2524,7 +2524,7 @@ 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 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 @@ -2592,7 +2592,7 @@ Test 048 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_205832/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 @@ -2660,7 +2660,7 @@ Test 049 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_205832/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 @@ -2678,7 +2678,7 @@ 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 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 @@ -2746,7 +2746,7 @@ 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 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 @@ -2814,7 +2814,7 @@ 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 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 @@ -2882,7 +2882,7 @@ 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 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 @@ -2950,7 +2950,7 @@ Test 054 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_205832/fv3_ccpp_gsd_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 @@ -3018,7 +3018,7 @@ Test 055 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_205832/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 @@ -3086,7 +3086,7 @@ Test 056 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_205832/fv3_ccpp_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 @@ -3154,7 +3154,7 @@ Test 057 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_205832/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 @@ -3222,7 +3222,7 @@ Test 058 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_205832/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 @@ -3290,7 +3290,7 @@ Test 059 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_205832/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 @@ -3358,7 +3358,7 @@ Test 060 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_205832/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_304085/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 @@ -3376,5 +3376,5 @@ Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 6 23:41:16 GMT 2021 -Elapsed time: 01h:37m:29s. Have a nice day! +Thu Jan 7 23:40:47 GMT 2021 +Elapsed time: 01h:37m:37s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 5374c2bca9..3e6c4d6410 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Wed Jan 6 15:41:05 CST 2021 +Thu Jan 7 15:36:40 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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 = /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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_lndp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_lheatstrg_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 = /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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 = /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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_satmedmfq_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_rap_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_hrrr_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v16beta_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -2779,7 +2779,7 @@ Test 051 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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -2827,7 +2827,7 @@ Test 052 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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -2875,7 +2875,7 @@ Test 053 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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -2943,7 +2943,7 @@ Test 054 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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -3011,7 +3011,7 @@ Test 055 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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -3029,7 +3029,7 @@ Test 056 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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -3097,7 +3097,7 @@ Test 057 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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -3165,7 +3165,7 @@ Test 058 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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -3233,7 +3233,7 @@ Test 059 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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -3301,7 +3301,7 @@ Test 060 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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -3369,7 +3369,7 @@ Test 061 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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -3437,7 +3437,7 @@ Test 062 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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -3505,7 +3505,7 @@ Test 063 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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -3573,7 +3573,7 @@ Test 064 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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -3641,7 +3641,7 @@ Test 065 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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -3709,7 +3709,7 @@ Test 066 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/djovic/stmp/djovic/FV3_RT/rt_299167/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -3727,7 +3727,7 @@ Test 067 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/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_control_prod Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3780,7 +3780,7 @@ Test 068 cpld_control PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restart_prod Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3833,7 +3833,7 @@ Test 069 cpld_restart PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_controlfrac_prod Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3886,7 +3886,7 @@ Test 070 cpld_controlfrac PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restartfrac_prod Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3939,7 +3939,7 @@ Test 071 cpld_restartfrac PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_2threads_prod Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3992,7 +3992,7 @@ Test 072 cpld_2threads PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_decomp_prod Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4045,7 +4045,7 @@ Test 073 cpld_decomp PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_satmedmf_prod Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4098,7 +4098,7 @@ Test 074 cpld_satmedmf PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_ca_prod Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4151,7 +4151,7 @@ Test 075 cpld_ca PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_control_c192_prod Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4204,7 +4204,7 @@ Test 076 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/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_restart_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restart_c192_prod Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4257,7 +4257,7 @@ Test 077 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/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_controlfrac_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_controlfrac_c192_prod Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4310,7 +4310,7 @@ Test 078 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/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_restartfrac_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restartfrac_c192_prod Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4363,7 +4363,7 @@ Test 079 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/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_control_c384_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_control_c384_prod Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4419,7 +4419,7 @@ Test 080 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/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_restart_c384_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restart_c384_prod Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4475,7 +4475,7 @@ Test 081 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/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_controlfrac_c384_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_controlfrac_c384_prod Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4531,7 +4531,7 @@ Test 082 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/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_restartfrac_c384_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restartfrac_c384_prod Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4587,7 +4587,7 @@ Test 083 cpld_restartfrac_c384 PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_bmark_prod Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4643,7 +4643,7 @@ Test 084 cpld_bmark PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restart_bmark_prod Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4699,7 +4699,7 @@ Test 085 cpld_restart_bmark PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_bmarkfrac_prod Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4755,7 +4755,7 @@ Test 086 cpld_bmarkfrac PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restart_bmarkfrac_prod Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4811,7 +4811,7 @@ Test 087 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/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_bmarkfrac_v16_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_bmarkfrac_v16_prod Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4867,7 +4867,7 @@ Test 088 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/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_restart_bmarkfrac_v16_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restart_bmarkfrac_v16_prod Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4923,7 +4923,7 @@ Test 089 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/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_bmark_wave_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_bmark_wave_prod Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4982,7 +4982,7 @@ Test 090 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/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_bmarkfrac_wave_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_bmarkfrac_wave_prod Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5041,7 +5041,7 @@ Test 091 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/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_bmarkfrac_wave_v16_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_bmarkfrac_wave_v16_prod Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5100,7 +5100,7 @@ Test 092 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/djovic/stmp/djovic/FV3_RT/rt_299167/cpld_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_debug_prod Checking test 093 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5153,7 +5153,7 @@ Test 093 cpld_debug PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_debugfrac_prod Checking test 094 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5206,7 +5206,7 @@ Test 094 cpld_debugfrac PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -5215,7 +5215,7 @@ Test 095 datm_control_cfsr PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -5224,7 +5224,7 @@ Test 096 datm_restart_cfsr PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -5233,7 +5233,7 @@ Test 097 datm_control_gefs PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -5242,7 +5242,7 @@ Test 098 datm_bulk_cfsr PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 @@ -5251,7 +5251,7 @@ Test 099 datm_bulk_gefs PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/datm_mx025_cfsr Checking test 100 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5263,7 +5263,7 @@ Test 100 datm_mx025_cfsr PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/datm_mx025_gefs Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5275,7 +5275,7 @@ Test 101 datm_mx025_gefs PASS 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 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/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 17:01:22 CST 2021 -Elapsed time: 01h:20m:17s. Have a nice day! +Thu Jan 7 16:59:10 CST 2021 +Elapsed time: 01h:22m:31s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 12d4a55510..48124d6641 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Wed Jan 6 18:17:45 UTC 2021 +Fri Jan 8 14:11:04 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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_ca_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_lndp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_rap_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_hrrr_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v16beta_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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 @@ -2632,7 +2632,7 @@ Test 048 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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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 @@ -2680,7 +2680,7 @@ Test 049 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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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 @@ -2728,7 +2728,7 @@ Test 050 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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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 @@ -2796,7 +2796,7 @@ Test 051 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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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 @@ -2864,7 +2864,7 @@ Test 052 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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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 @@ -2882,7 +2882,7 @@ 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 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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 @@ -2950,7 +2950,7 @@ 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 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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 @@ -3018,7 +3018,7 @@ Test 055 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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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 @@ -3086,7 +3086,7 @@ Test 056 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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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 @@ -3154,7 +3154,7 @@ Test 057 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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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 @@ -3222,7 +3222,7 @@ Test 058 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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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 @@ -3290,7 +3290,7 @@ Test 059 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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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 @@ -3358,7 +3358,7 @@ Test 060 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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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 @@ -3426,7 +3426,7 @@ Test 061 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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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 @@ -3494,7 +3494,7 @@ Test 062 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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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 @@ -3562,7 +3562,7 @@ Test 063 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/Dusan.Jovic/FV3_RT/rt_30423/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_11930/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 @@ -3580,5 +3580,5 @@ Test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 6 18:59:33 UTC 2021 -Elapsed time: 00h:41m:49s. Have a nice day! +Fri Jan 8 14:51:01 UTC 2021 +Elapsed time: 00h:39m:58s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 4836d83c92..d59eed317c 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Wed Jan 6 19:39:15 UTC 2021 +Fri Jan 8 14:15:55 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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_ca_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_lndp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 ............ALT CHECK......OK + Comparing dynf024.nc .........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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_rap_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_hrrr_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v16beta_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -2730,7 +2730,7 @@ Test 050 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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -2778,7 +2778,7 @@ Test 051 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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -2826,7 +2826,7 @@ Test 052 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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -2894,7 +2894,7 @@ Test 053 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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -2962,7 +2962,7 @@ Test 054 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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -2980,7 +2980,7 @@ 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 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -3048,7 +3048,7 @@ 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 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -3116,7 +3116,7 @@ Test 057 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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -3184,7 +3184,7 @@ Test 058 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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -3252,7 +3252,7 @@ Test 059 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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -3320,7 +3320,7 @@ Test 060 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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -3388,7 +3388,7 @@ Test 061 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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -3456,7 +3456,7 @@ Test 062 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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -3524,7 +3524,7 @@ Test 063 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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -3592,7 +3592,7 @@ Test 064 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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -3660,7 +3660,7 @@ Test 065 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/Dusan.Jovic/FV3_RT/rt_36675/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -3678,7 +3678,7 @@ Test 066 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/Dusan.Jovic/FV3_RT/rt_36675/cpld_control_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_control_prod Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3731,7 +3731,7 @@ Test 067 cpld_control PASS 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 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_restart_prod Checking test 068 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3784,7 +3784,7 @@ Test 068 cpld_restart PASS 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 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_controlfrac_prod Checking test 069 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3837,7 +3837,7 @@ Test 069 cpld_controlfrac PASS 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 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_restartfrac_prod Checking test 070 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3890,7 +3890,7 @@ Test 070 cpld_restartfrac PASS 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 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_2threads_prod Checking test 071 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3943,7 +3943,7 @@ Test 071 cpld_2threads PASS 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 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_decomp_prod Checking test 072 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3996,7 +3996,7 @@ Test 072 cpld_decomp PASS 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 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_satmedmf_prod Checking test 073 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4049,7 +4049,7 @@ Test 073 cpld_satmedmf PASS 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 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_ca_prod Checking test 074 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4102,7 +4102,7 @@ Test 074 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/Dusan.Jovic/FV3_RT/rt_36675/cpld_control_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_control_c192_prod Checking test 075 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4155,7 +4155,7 @@ Test 075 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/Dusan.Jovic/FV3_RT/rt_36675/cpld_restart_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_restart_c192_prod Checking test 076 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4208,7 +4208,7 @@ Test 076 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/Dusan.Jovic/FV3_RT/rt_36675/cpld_controlfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_controlfrac_c192_prod Checking test 077 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4261,7 +4261,7 @@ Test 077 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/Dusan.Jovic/FV3_RT/rt_36675/cpld_restartfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_restartfrac_c192_prod Checking test 078 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4314,7 +4314,7 @@ Test 078 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/Dusan.Jovic/FV3_RT/rt_36675/cpld_control_c384_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_control_c384_prod Checking test 079 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4370,7 +4370,7 @@ Test 079 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/Dusan.Jovic/FV3_RT/rt_36675/cpld_restart_c384_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_restart_c384_prod Checking test 080 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4426,7 +4426,7 @@ Test 080 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/Dusan.Jovic/FV3_RT/rt_36675/cpld_controlfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_controlfrac_c384_prod Checking test 081 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4482,7 +4482,7 @@ Test 081 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/Dusan.Jovic/FV3_RT/rt_36675/cpld_restartfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_restartfrac_c384_prod Checking test 082 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4538,7 +4538,7 @@ Test 082 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/Dusan.Jovic/FV3_RT/rt_36675/cpld_bmark_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_bmark_prod Checking test 083 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4594,7 +4594,7 @@ Test 083 cpld_bmark PASS 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 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_restart_bmark_prod Checking test 084 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4650,7 +4650,7 @@ Test 084 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/Dusan.Jovic/FV3_RT/rt_36675/cpld_bmarkfrac_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_bmarkfrac_prod Checking test 085 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4706,7 +4706,7 @@ Test 085 cpld_bmarkfrac PASS 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 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_restart_bmarkfrac_prod Checking test 086 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4762,7 +4762,7 @@ Test 086 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/Dusan.Jovic/FV3_RT/rt_36675/cpld_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_bmarkfrac_v16_prod Checking test 087 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4818,7 +4818,7 @@ Test 087 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/Dusan.Jovic/FV3_RT/rt_36675/cpld_restart_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_restart_bmarkfrac_v16_prod Checking test 088 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4874,7 +4874,7 @@ Test 088 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/Dusan.Jovic/FV3_RT/rt_36675/cpld_bmark_wave_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_bmark_wave_prod Checking test 089 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4933,7 +4933,7 @@ Test 089 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/Dusan.Jovic/FV3_RT/rt_36675/cpld_bmarkfrac_wave_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_bmarkfrac_wave_prod Checking test 090 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4992,7 +4992,7 @@ Test 090 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/Dusan.Jovic/FV3_RT/rt_36675/cpld_bmarkfrac_wave_v16_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_bmarkfrac_wave_v16_prod Checking test 091 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5051,7 +5051,7 @@ Test 091 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/Dusan.Jovic/FV3_RT/rt_36675/cpld_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_debug_prod Checking test 092 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5104,7 +5104,7 @@ Test 092 cpld_debug PASS 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 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/cpld_debugfrac_prod Checking test 093 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5157,7 +5157,7 @@ Test 093 cpld_debugfrac PASS 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 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -5166,7 +5166,7 @@ Test 094 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/Dusan.Jovic/FV3_RT/rt_36675/datm_restart_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -5175,7 +5175,7 @@ Test 095 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/Dusan.Jovic/FV3_RT/rt_36675/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -5184,7 +5184,7 @@ Test 096 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/Dusan.Jovic/FV3_RT/rt_36675/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -5193,7 +5193,7 @@ Test 097 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/Dusan.Jovic/FV3_RT/rt_36675/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -5202,7 +5202,7 @@ Test 098 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/Dusan.Jovic/FV3_RT/rt_36675/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/datm_mx025_cfsr Checking test 099 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5214,7 +5214,7 @@ Test 099 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/Dusan.Jovic/FV3_RT/rt_36675/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/datm_mx025_gefs Checking test 100 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5226,7 +5226,7 @@ Test 100 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/Dusan.Jovic/FV3_RT/rt_36675/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_127401/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 @@ -5235,5 +5235,5 @@ Test 101 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 6 21:48:35 UTC 2021 -Elapsed time: 02h:09m:23s. Have a nice day! +Fri Jan 8 17:04:49 UTC 2021 +Elapsed time: 02h:48m:56s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index b9fbd51782..08826467aa 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -103,7 +103,9 @@ 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 | | fv3 | +# Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 +COMPILE | DEBUG=Y | - cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +COMPILE | DEBUG=Y SUITES='FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta,FV3_GFS_v16beta_RRTMGP' | + cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | RUN | fv3_ccpp_gfs_v16beta_debug | | fv3 | RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | From 72d48f347831f1af910e67a4a04db08482f38827 Mon Sep 17 00:00:00 2001 From: DomHeinzeller <58610420+DomHeinzeller@users.noreply.github.com> Date: Fri, 8 Jan 2021 19:54:33 -0700 Subject: [PATCH 055/109] Land stochastic perturbations (#57) * Add regression tests with stochastic land perturbations for suites FV3_GSD_v0 and FV3_GSD_noah Co-authored-by: Dom Heinzeller --- FV3 | 2 +- stochastic_physics | 2 +- tests/default_vars.sh | 1 + tests/parm/ccpp_gsd.nml.IN | 3 + tests/parm/ccpp_lndp.nml.IN | 1 + tests/rt_ccpp_dev.conf | 2 + tests/tests/fv3_ccpp_gsd_lndp | 100 +++++++++++++++++++++++++++++ tests/tests/fv3_ccpp_gsd_noah_lndp | 99 ++++++++++++++++++++++++++++ 8 files changed, 208 insertions(+), 2 deletions(-) create mode 100644 tests/tests/fv3_ccpp_gsd_lndp create mode 100644 tests/tests/fv3_ccpp_gsd_noah_lndp diff --git a/FV3 b/FV3 index b1e98cf2b9..6ecee94d0c 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit b1e98cf2b91a593203637115b85882c0ba198aa4 +Subproject commit 6ecee94d0cdc82def576d56633a8a1ec93da39bd diff --git a/stochastic_physics b/stochastic_physics index e4913c062b..aeb543dbc4 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit e4913c062b520cf8d76d9c82f90636aee19cbddb +Subproject commit aeb543dbc4eadb3e140db8246dee96877b69576f diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 19f4fc20de..4764fa1fdd 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -322,6 +322,7 @@ export DO_SHUM=.F. export DO_SKEB=.F. export LNDP_TYPE=0 export N_VAR_LNDP=0 +export LNDP_EACH_STEP=.F. export SKEB=-999. export SPPT=-999. export SHUM=-999. diff --git a/tests/parm/ccpp_gsd.nml.IN b/tests/parm/ccpp_gsd.nml.IN index 67e880a656..f4a2713f07 100644 --- a/tests/parm/ccpp_gsd.nml.IN +++ b/tests/parm/ccpp_gsd.nml.IN @@ -174,6 +174,7 @@ do_skeb = @[DO_SKEB] lndp_type = @[LNDP_TYPE] n_var_lndp = @[N_VAR_LNDP] + lndp_each_step = @[LNDP_EACH_STEP] lsm = @[LSM] lsoil_lsm = @[LSOIL_LSM] kice = @[KICE] @@ -325,6 +326,8 @@ LNDP_TAU=21600, LNDP_LSCALE=500000, ISEED_LNDP=2010, + lndp_var_list = 'vgf','alb','sal' + lndp_prt_list = 0.02,0.01,0.01 / &cires_ugwp_nml diff --git a/tests/parm/ccpp_lndp.nml.IN b/tests/parm/ccpp_lndp.nml.IN index 428be0fc23..8b6c0e2881 100644 --- a/tests/parm/ccpp_lndp.nml.IN +++ b/tests/parm/ccpp_lndp.nml.IN @@ -194,6 +194,7 @@ do_skeb = @[DO_SKEB] lndp_type = @[LNDP_TYPE] n_var_lndp = @[N_VAR_LNDP] + lndp_each_step = @[LNDP_EACH_STEP] do_ca = .false. ca_sgs = .false. nca = 1 diff --git a/tests/rt_ccpp_dev.conf b/tests/rt_ccpp_dev.conf index 89c9eadb34..47633dc20c 100644 --- a/tests/rt_ccpp_dev.conf +++ b/tests/rt_ccpp_dev.conf @@ -9,7 +9,9 @@ RUN | fv3_ccpp_gf_thompson 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_lndp | standard | | fv3 | RUN | fv3_ccpp_gsd_noah | standard | | fv3 | +RUN | fv3_ccpp_gsd_noah_lndp | standard | | fv3 | COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | standard | | fv3 | diff --git a/tests/tests/fv3_ccpp_gsd_lndp b/tests/tests/fv3_ccpp_gsd_lndp new file mode 100644 index 0000000000..1f2ee29b9b --- /dev/null +++ b/tests/tests/fv3_ccpp_gsd_lndp @@ -0,0 +1,100 @@ +######################################################################################### +# +# FV3 CCPP GSD (GF CU + Thompson MP + MYNN PBL + RUC LSM) with land stochastic pert test +# +######################################################################################### + +export TEST_DESCR="Compare FV3 CCPP GSD lndp results with previous trunk version" + +export CNTL_DIR=fv3_gsd_lndp + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + +export_fv3 + +export DT_ATMOS="600" +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.F. +export LRADAR=.T. +export LTAEROSOL=.T. + +export FV3_RUN=ccpp_gsd_run.IN +export CCPP_SUITE=FV3_GSD_v0 +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_gsd.nml.IN + +export HYBEDMF=.F. +export DO_MYNNEDMF=.T. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export LNDP_TYPE=2 +export N_VAR_LNDP=3 +export LNDP_EACH_STEP=.T. + +#export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_noah_lndp b/tests/tests/fv3_ccpp_gsd_noah_lndp new file mode 100644 index 0000000000..deb060e09e --- /dev/null +++ b/tests/tests/fv3_ccpp_gsd_noah_lndp @@ -0,0 +1,99 @@ +########################################################################################## +# +# FV3 CCPP GSD (GF CU + Thompson MP + MYNN PBL + NOAH LSM) with land stochastic pert test +# +########################################################################################## + +export TEST_DESCR="Compare FV3 CCPP GSD lndp results with previous trunk version" + +export CNTL_DIR=fv3_gsd_noah_lndp + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + +export_fv3 + +export DT_ATMOS="600" +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.F. +export LRADAR=.T. +export LTAEROSOL=.T. + +export FV3_RUN=ccpp_gsd_run.IN +export CCPP_SUITE=FV3_GSD_noah +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_gsd.nml.IN + +export HYBEDMF=.F. +export DO_MYNNEDMF=.T. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LSM=1 +export LSOIL_LSM=4 + +export LNDP_TYPE=2 +export N_VAR_LNDP=3 +export LNDP_EACH_STEP=.T. + +#export WLCLK=30 From 6daad90ca7a337a313e90a616e1c872b56647029 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Tue, 12 Jan 2021 13:09:16 -0500 Subject: [PATCH 056/109] Update CMEPS (#345) * Update CMEPS for recent changes, including addition of new run "post" run phases to eliminate redundant mapping, multiple ice sheet capability and ocn->land ice dynamic mapping * Add a new test fv3_gfs_v16_RRTMGP_c192L127 Co-authored-by: Jun Wang --- CMEPS-interface/CMEPS | 2 +- CMEPS-interface/CMakeLists.txt | 9 +- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 50 +- tests/RegressionTests_cheyenne.intel.log | 470 ++++++++++-------- tests/RegressionTests_gaea.intel.log | 266 ++++++---- tests/RegressionTests_hera.gnu.log | 50 +- tests/RegressionTests_hera.intel.log | 482 +++++++++++-------- tests/RegressionTests_jet.intel.log | 270 +++++++---- tests/RegressionTests_orion.intel.log | 480 ++++++++++-------- tests/RegressionTests_wcoss_cray.log | 264 ++++++---- tests/RegressionTests_wcoss_dell_p3.log | 480 ++++++++++-------- tests/fv3_conf/ccpp_gfs_v16_run_c192L127.IN | 23 + tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN | 337 +++++++++++++ tests/parm/nems.configure.cpld.IN | 11 +- tests/parm/nems.configure.cpld_wave.IN | 11 +- tests/parm/nems.configure.datm.IN | 10 +- tests/rt.conf | 1 + tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 | 103 ++++ 19 files changed, 2112 insertions(+), 1209 deletions(-) create mode 100644 tests/fv3_conf/ccpp_gfs_v16_run_c192L127.IN create mode 100644 tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN create mode 100644 tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 47dcaf1e85..1f6757124a 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 47dcaf1e85831181a44c7067a24fcf9ef176b48c +Subproject commit 1f6757124acf51f01d8c665d7d1b0f58afc4f76e diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index 7fa97094df..aa4fccdc29 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -56,7 +56,14 @@ list(APPEND _mediator_files CMEPS/mediator/med_fraction_mod.F90 CMEPS/mediator/med_phases_aofluxes_mod.F90 CMEPS/mediator/med_io_mod.F90 - CMEPS/mediator/med_diag_mod.F90) + CMEPS/mediator/med_diag_mod.F90 + CMEPS/mediator/med_phases_post_atm_mod.F90 + CMEPS/mediator/med_phases_post_ice_mod.F90 + CMEPS/mediator/med_phases_post_ocn_mod.F90 + CMEPS/mediator/med_phases_post_lnd_mod.F90 + CMEPS/mediator/med_phases_post_glc_mod.F90 + CMEPS/mediator/med_phases_post_rof_mod.F90 + CMEPS/mediator/med_phases_post_wav_mod.F90) list(APPEND _mediator_defs ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR} ESMF_VERSION_MINOR=${ESMF_VERSION_MINOR} diff --git a/FV3 b/FV3 index ae4c8bf894..c697af2ba3 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit ae4c8bf894604b41a6bebd0bfec3cd2e61c1f337 +Subproject commit c697af2ba3985d08c96cb0baa51b47117fb98a49 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 508786d301..a39a5d4845 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Thu Jan 7 14:10:30 MST 2021 +Mon Jan 11 11:12:01 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_62180/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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_62180/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_13499/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 -Thu Jan 7 14:28:33 MST 2021 -Elapsed time: 00h:18m:04s. Have a nice day! +Mon Jan 11 11:29:36 MST 2021 +Elapsed time: 00h:17m:35s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 97656662e5..eacbee2122 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Thu Jan 7 16:45:27 MST 2021 +Mon Jan 11 11:11:47 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_47838/fv3_ccpp_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 @@ -449,8 +449,8 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc .........OK + Comparing dynf000.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 = /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_47838/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_lndp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_iau_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_stretched_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......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_47838/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_stretched_nest_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_cpt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_rap_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_hrrr_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_gfs_v16beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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_47838/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 @@ -2583,9 +2583,71 @@ Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... 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 +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + 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_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_47838/fv3_ccpp_gocart_clm_prod -Checking test 048 fv3_ccpp_gocart_clm results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2628,12 +2690,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 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_47838/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 049 fv3_ccpp_gfs_v16beta_flake results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2696,12 +2758,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 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_47838/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2764,12 +2826,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 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_47838/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing phyf012.nc .........OK @@ -2782,12 +2844,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 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_47838/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2850,12 +2912,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 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_47838/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 053 fv3_ccpp_gfs_v16beta_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2918,12 +2980,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 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_47838/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2986,12 +3048,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 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_47838/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3054,12 +3116,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 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_47838/fv3_ccpp_gsd_debug_prod -Checking test 056 fv3_ccpp_gsd_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3122,12 +3184,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 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_47838/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 057 fv3_ccpp_gsd_diag3d_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3190,12 +3252,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 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_47838/fv3_ccpp_thompson_debug_prod -Checking test 058 fv3_ccpp_thompson_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3258,12 +3320,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 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_47838/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 059 fv3_ccpp_thompson_no_aero_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3326,12 +3388,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 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_47838/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 060 fv3_ccpp_rrfs_v1beta_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3394,12 +3456,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 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_47838/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3462,12 +3524,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 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_47838/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing phyf001.nc .........OK @@ -3480,12 +3542,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 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_47838/cpld_control_prod -Checking test 063 cpld_control results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_control_prod +Checking test 064 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3533,12 +3595,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 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_47838/cpld_restart_prod -Checking test 064 cpld_restart results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restart_prod +Checking test 065 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3586,12 +3648,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 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_47838/cpld_controlfrac_prod -Checking test 065 cpld_controlfrac results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_controlfrac_prod +Checking test 066 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3639,12 +3701,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 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_47838/cpld_restartfrac_prod -Checking test 066 cpld_restartfrac results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restartfrac_prod +Checking test 067 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3692,12 +3754,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 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_47838/cpld_2threads_prod -Checking test 067 cpld_2threads results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_2threads_prod +Checking test 068 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3745,12 +3807,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 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_47838/cpld_decomp_prod -Checking test 068 cpld_decomp results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_decomp_prod +Checking test 069 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3798,12 +3860,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 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_47838/cpld_satmedmf_prod -Checking test 069 cpld_satmedmf results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_satmedmf_prod +Checking test 070 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3851,12 +3913,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 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_47838/cpld_ca_prod -Checking test 070 cpld_ca results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_ca_prod +Checking test 071 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3904,12 +3966,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 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_47838/cpld_control_c192_prod -Checking test 071 cpld_control_c192 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_control_c192_prod +Checking test 072 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -3957,12 +4019,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 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_47838/cpld_restart_c192_prod -Checking test 072 cpld_restart_c192 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restart_c192_prod +Checking test 073 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4010,12 +4072,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 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_47838/cpld_controlfrac_c192_prod -Checking test 073 cpld_controlfrac_c192 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_controlfrac_c192_prod +Checking test 074 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4063,12 +4125,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 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_47838/cpld_restartfrac_c192_prod -Checking test 074 cpld_restartfrac_c192 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restartfrac_c192_prod +Checking test 075 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4116,12 +4178,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 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_47838/cpld_control_c384_prod -Checking test 075 cpld_control_c384 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_control_c384_prod +Checking test 076 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4172,12 +4234,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 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_47838/cpld_restart_c384_prod -Checking test 076 cpld_restart_c384 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restart_c384_prod +Checking test 077 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4228,12 +4290,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 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_47838/cpld_controlfrac_c384_prod -Checking test 077 cpld_controlfrac_c384 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_controlfrac_c384_prod +Checking test 078 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4284,12 +4346,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 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_47838/cpld_restartfrac_c384_prod -Checking test 078 cpld_restartfrac_c384 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restartfrac_c384_prod +Checking test 079 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4340,12 +4402,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 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_47838/cpld_bmark_prod -Checking test 079 cpld_bmark results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_bmark_prod +Checking test 080 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4396,12 +4458,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 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_47838/cpld_restart_bmark_prod -Checking test 080 cpld_restart_bmark results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restart_bmark_prod +Checking test 081 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4452,12 +4514,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 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_47838/cpld_bmarkfrac_prod -Checking test 081 cpld_bmarkfrac results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_bmarkfrac_prod +Checking test 082 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4508,12 +4570,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 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_47838/cpld_restart_bmarkfrac_prod -Checking test 082 cpld_restart_bmarkfrac results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restart_bmarkfrac_prod +Checking test 083 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4564,12 +4626,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 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_47838/cpld_bmarkfrac_v16_prod -Checking test 083 cpld_bmarkfrac_v16 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_bmarkfrac_v16_prod +Checking test 084 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4620,12 +4682,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 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_47838/cpld_restart_bmarkfrac_v16_prod -Checking test 084 cpld_restart_bmarkfrac_v16 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_restart_bmarkfrac_v16_prod +Checking test 085 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4676,12 +4738,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 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_47838/cpld_bmark_wave_prod -Checking test 085 cpld_bmark_wave results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_bmark_wave_prod +Checking test 086 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4735,12 +4797,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 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_47838/cpld_bmarkfrac_wave_prod -Checking test 086 cpld_bmarkfrac_wave results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_bmarkfrac_wave_prod +Checking test 087 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4794,12 +4856,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 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_47838/cpld_bmarkfrac_wave_v16_prod -Checking test 087 cpld_bmarkfrac_wave_v16 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_bmarkfrac_wave_v16_prod +Checking test 088 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4853,12 +4915,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 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_47838/cpld_debug_prod -Checking test 088 cpld_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_debug_prod +Checking test 089 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4906,12 +4968,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 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_47838/cpld_debugfrac_prod -Checking test 089 cpld_debugfrac results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/cpld_debugfrac_prod +Checking test 090 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4959,87 +5021,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 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_47838/datm_control_cfsr -Checking test 090 datm_control_cfsr results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 090 datm_control_cfsr PASS +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_47838/datm_restart_cfsr -Checking test 091 datm_restart_cfsr results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 091 datm_restart_cfsr PASS +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_47838/datm_control_gefs -Checking test 092 datm_control_gefs results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 092 datm_control_gefs PASS +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_47838/datm_bulk_cfsr -Checking test 093 datm_bulk_cfsr results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 093 datm_bulk_cfsr PASS +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_47838/datm_bulk_gefs -Checking test 094 datm_bulk_gefs results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 094 datm_bulk_gefs PASS +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_47838/datm_mx025_cfsr -Checking test 095 datm_mx025_cfsr results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/datm_mx025_cfsr +Checking test 096 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 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_47838/datm_mx025_gefs -Checking test 096 datm_mx025_gefs results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/datm_mx025_gefs +Checking test 097 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 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_47838/datm_debug_cfsr -Checking test 097 datm_debug_cfsr results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_39682/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 097 datm_debug_cfsr PASS +Test 098 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jan 7 18:25:35 MST 2021 -Elapsed time: 01h:40m:08s. Have a nice day! +Mon Jan 11 12:28:13 MST 2021 +Elapsed time: 01h:16m:27s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index b0b369e45a..68365835fc 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Thu Jan 7 17:04:09 EST 2021 +Mon Jan 11 13:11:35 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_42823/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_decomp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_2threads_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_read_inc_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_stochy_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_ca_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_lndp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_iau_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_lheatstrg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_multigases_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_control_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_stretched_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_stretched_nest_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_regional_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_regional_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_regional_quilt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 = /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_42823/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 ............ALT CHECK......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-20210106/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_42823/fv3_ccpp_control_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_stretched_nest_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_gfdlmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_csawmg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_satmedmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_satmedmfq_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_cpt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_gsd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_rap_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_hrrr_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_thompson_no_aero_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_rrfs_v1beta_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_gfs_v15p2_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_gfs_v16beta_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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_42823/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 @@ -2583,9 +2583,71 @@ Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... 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 +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + 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_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_42823/fv3_ccpp_gfsv16_csawmg_prod -Checking test 048 fv3_ccpp_gfsv16_csawmg results .... +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2628,12 +2690,12 @@ Checking test 048 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 048 fv3_ccpp_gfsv16_csawmg PASS +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_42823/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 049 fv3_ccpp_gfsv16_csawmgt results .... +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2676,12 +2738,12 @@ Checking test 049 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 049 fv3_ccpp_gfsv16_csawmgt PASS +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_42823/fv3_ccpp_gocart_clm_prod -Checking test 050 fv3_ccpp_gocart_clm results .... +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2724,12 +2786,12 @@ Checking test 050 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 050 fv3_ccpp_gocart_clm PASS +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_42823/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 051 fv3_ccpp_gfs_v16beta_flake results .... +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2792,12 +2854,12 @@ Checking test 051 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 051 fv3_ccpp_gfs_v16beta_flake PASS +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_42823/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2860,12 +2922,12 @@ Checking test 052 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 052 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +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_42823/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 Comparing phyf012.nc .........OK @@ -2878,12 +2940,12 @@ Checking test 053 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 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +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_42823/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 054 fv3_ccpp_gfs_v15p2_debug results .... +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2946,12 +3008,12 @@ Checking test 054 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 054 fv3_ccpp_gfs_v15p2_debug PASS +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_42823/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 055 fv3_ccpp_gfs_v16beta_debug results .... +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3014,12 +3076,12 @@ Checking test 055 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 055 fv3_ccpp_gfs_v16beta_debug PASS +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_42823/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 056 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3082,12 +3144,12 @@ Checking test 056 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 056 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +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_42823/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 057 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3150,12 +3212,12 @@ Checking test 057 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 057 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +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_42823/fv3_ccpp_gsd_debug_prod -Checking test 058 fv3_ccpp_gsd_debug results .... +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3218,12 +3280,12 @@ Checking test 058 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 058 fv3_ccpp_gsd_debug PASS +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_42823/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 059 fv3_ccpp_gsd_diag3d_debug results .... +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3286,12 +3348,12 @@ Checking test 059 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 059 fv3_ccpp_gsd_diag3d_debug PASS +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_42823/fv3_ccpp_thompson_debug_prod -Checking test 060 fv3_ccpp_thompson_debug results .... +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3354,12 +3416,12 @@ Checking test 060 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 060 fv3_ccpp_thompson_debug PASS +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_42823/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 061 fv3_ccpp_thompson_no_aero_debug results .... +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3422,12 +3484,12 @@ Checking test 061 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 061 fv3_ccpp_thompson_no_aero_debug PASS +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_42823/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 062 fv3_ccpp_rrfs_v1beta_debug results .... +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3490,12 +3552,12 @@ Checking test 062 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 062 fv3_ccpp_rrfs_v1beta_debug PASS +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_42823/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3558,12 +3620,12 @@ Checking test 063 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 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +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_42823/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12694/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 Comparing phyf001.nc .........OK @@ -3576,9 +3638,9 @@ Checking test 064 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 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jan 7 17:40:03 EST 2021 -Elapsed time: 00h:35m:55s. Have a nice day! +Mon Jan 11 14:04:47 EST 2021 +Elapsed time: 00h:53m:13s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index a39bab5453..323b7ed950 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Thu Jan 7 16:23:58 UTC 2021 +Mon Jan 11 17:12:39 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_121119/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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_121119/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_257242/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 -Thu Jan 7 17:57:15 UTC 2021 -Elapsed time: 01h:33m:17s. Have a nice day! +Mon Jan 11 17:46:38 UTC 2021 +Elapsed time: 00h:34m:00s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 2a17002026..1d5fddd2a4 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Thu Jan 7 16:23:37 UTC 2021 +Mon Jan 11 17:02:49 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_186263/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 .........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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_186263/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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_186263/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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,9 +2730,71 @@ 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-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 +Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + 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 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_186263/fv3_ccpp_gfsv16_csawmg_prod -Checking test 051 fv3_ccpp_gfsv16_csawmg results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2775,12 +2837,12 @@ Checking test 051 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 051 fv3_ccpp_gfsv16_csawmg PASS +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_186263/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2823,12 +2885,12 @@ Checking test 052 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 052 fv3_ccpp_gfsv16_csawmgt PASS +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_186263/fv3_ccpp_gocart_clm_prod -Checking test 053 fv3_ccpp_gocart_clm results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2871,12 +2933,12 @@ Checking test 053 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 053 fv3_ccpp_gocart_clm PASS +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_186263/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 054 fv3_ccpp_gfs_v16beta_flake results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2939,12 +3001,12 @@ Checking test 054 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 054 fv3_ccpp_gfs_v16beta_flake PASS +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_186263/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3007,12 +3069,12 @@ Checking test 055 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 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +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_186263/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing phyf012.nc .........OK @@ -3025,12 +3087,12 @@ Checking test 056 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 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +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_186263/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3093,12 +3155,12 @@ Checking test 057 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 057 fv3_ccpp_gfs_v15p2_debug PASS +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_186263/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 058 fv3_ccpp_gfs_v16beta_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3161,12 +3223,12 @@ Checking test 058 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 058 fv3_ccpp_gfs_v16beta_debug PASS +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_186263/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3229,12 +3291,12 @@ Checking test 059 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 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +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_186263/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3297,12 +3359,12 @@ Checking test 060 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 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +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_186263/fv3_ccpp_gsd_debug_prod -Checking test 061 fv3_ccpp_gsd_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3365,12 +3427,12 @@ Checking test 061 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 061 fv3_ccpp_gsd_debug PASS +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_186263/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3433,12 +3495,12 @@ Checking test 062 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 062 fv3_ccpp_gsd_diag3d_debug PASS +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_186263/fv3_ccpp_thompson_debug_prod -Checking test 063 fv3_ccpp_thompson_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3501,12 +3563,12 @@ Checking test 063 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 063 fv3_ccpp_thompson_debug PASS +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_186263/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3569,12 +3631,12 @@ Checking test 064 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 064 fv3_ccpp_thompson_no_aero_debug PASS +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_186263/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3637,12 +3699,12 @@ Checking test 065 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 065 fv3_ccpp_rrfs_v1beta_debug PASS +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_186263/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3705,12 +3767,12 @@ Checking test 066 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 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +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_186263/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing phyf001.nc .........OK @@ -3723,12 +3785,12 @@ Checking test 067 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 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +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_186263/cpld_control_prod -Checking test 068 cpld_control results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_control_prod +Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3776,12 +3838,12 @@ Checking test 068 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 068 cpld_control PASS +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_186263/cpld_restart_prod -Checking test 069 cpld_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restart_prod +Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3829,12 +3891,12 @@ Checking test 069 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 069 cpld_restart PASS +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_186263/cpld_controlfrac_prod -Checking test 070 cpld_controlfrac results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_controlfrac_prod +Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3882,12 +3944,12 @@ Checking test 070 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 070 cpld_controlfrac PASS +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_186263/cpld_restartfrac_prod -Checking test 071 cpld_restartfrac results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restartfrac_prod +Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3935,12 +3997,12 @@ Checking test 071 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 071 cpld_restartfrac PASS +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_186263/cpld_2threads_prod -Checking test 072 cpld_2threads results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_2threads_prod +Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3988,12 +4050,12 @@ Checking test 072 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 072 cpld_2threads PASS +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_186263/cpld_decomp_prod -Checking test 073 cpld_decomp results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_decomp_prod +Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4041,12 +4103,12 @@ Checking test 073 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 073 cpld_decomp PASS +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_186263/cpld_satmedmf_prod -Checking test 074 cpld_satmedmf results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_satmedmf_prod +Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4094,12 +4156,12 @@ Checking test 074 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 074 cpld_satmedmf PASS +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_186263/cpld_ca_prod -Checking test 075 cpld_ca results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_ca_prod +Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4147,12 +4209,12 @@ Checking test 075 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 075 cpld_ca PASS +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_186263/cpld_control_c192_prod -Checking test 076 cpld_control_c192 results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_control_c192_prod +Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4200,12 +4262,12 @@ Checking test 076 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 076 cpld_control_c192 PASS +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_186263/cpld_restart_c192_prod -Checking test 077 cpld_restart_c192 results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restart_c192_prod +Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4253,12 +4315,12 @@ Checking test 077 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 077 cpld_restart_c192 PASS +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_186263/cpld_controlfrac_c192_prod -Checking test 078 cpld_controlfrac_c192 results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_controlfrac_c192_prod +Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4306,12 +4368,12 @@ Checking test 078 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 078 cpld_controlfrac_c192 PASS +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_186263/cpld_restartfrac_c192_prod -Checking test 079 cpld_restartfrac_c192 results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restartfrac_c192_prod +Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4359,12 +4421,12 @@ Checking test 079 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 079 cpld_restartfrac_c192 PASS +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_186263/cpld_control_c384_prod -Checking test 080 cpld_control_c384 results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_control_c384_prod +Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4415,12 +4477,12 @@ Checking test 080 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 080 cpld_control_c384 PASS +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_186263/cpld_restart_c384_prod -Checking test 081 cpld_restart_c384 results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restart_c384_prod +Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4471,12 +4533,12 @@ Checking test 081 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 081 cpld_restart_c384 PASS +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_186263/cpld_controlfrac_c384_prod -Checking test 082 cpld_controlfrac_c384 results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_controlfrac_c384_prod +Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4527,12 +4589,12 @@ Checking test 082 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 082 cpld_controlfrac_c384 PASS +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_186263/cpld_restartfrac_c384_prod -Checking test 083 cpld_restartfrac_c384 results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restartfrac_c384_prod +Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4583,12 +4645,12 @@ Checking test 083 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 083 cpld_restartfrac_c384 PASS +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_186263/cpld_bmark_prod -Checking test 084 cpld_bmark results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_bmark_prod +Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4639,12 +4701,12 @@ Checking test 084 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 084 cpld_bmark PASS +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_186263/cpld_restart_bmark_prod -Checking test 085 cpld_restart_bmark results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restart_bmark_prod +Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4695,12 +4757,12 @@ Checking test 085 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 085 cpld_restart_bmark PASS +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_186263/cpld_bmarkfrac_prod -Checking test 086 cpld_bmarkfrac results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_bmarkfrac_prod +Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4751,12 +4813,12 @@ Checking test 086 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 086 cpld_bmarkfrac PASS +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_186263/cpld_restart_bmarkfrac_prod -Checking test 087 cpld_restart_bmarkfrac results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restart_bmarkfrac_prod +Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4807,12 +4869,12 @@ Checking test 087 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 087 cpld_restart_bmarkfrac PASS +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_186263/cpld_bmarkfrac_v16_prod -Checking test 088 cpld_bmarkfrac_v16 results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_bmarkfrac_v16_prod +Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4863,12 +4925,12 @@ Checking test 088 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 088 cpld_bmarkfrac_v16 PASS +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_186263/cpld_restart_bmarkfrac_v16_prod -Checking test 089 cpld_restart_bmarkfrac_v16 results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_restart_bmarkfrac_v16_prod +Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4919,12 +4981,12 @@ Checking test 089 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 089 cpld_restart_bmarkfrac_v16 PASS +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_186263/cpld_bmark_wave_prod -Checking test 090 cpld_bmark_wave results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_bmark_wave_prod +Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4978,12 +5040,12 @@ Checking test 090 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 090 cpld_bmark_wave PASS +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_186263/cpld_bmarkfrac_wave_prod -Checking test 091 cpld_bmarkfrac_wave results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_bmarkfrac_wave_prod +Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5037,12 +5099,12 @@ Checking test 091 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 091 cpld_bmarkfrac_wave PASS +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_186263/cpld_bmarkfrac_wave_v16_prod -Checking test 092 cpld_bmarkfrac_wave_v16 results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_bmarkfrac_wave_v16_prod +Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5096,12 +5158,12 @@ Checking test 092 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 092 cpld_bmarkfrac_wave_v16 PASS +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_186263/cpld_debug_prod -Checking test 093 cpld_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_debug_prod +Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5149,12 +5211,12 @@ Checking test 093 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 093 cpld_debug PASS +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_186263/cpld_debugfrac_prod -Checking test 094 cpld_debugfrac results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/cpld_debugfrac_prod +Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5202,87 +5264,87 @@ Checking test 094 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 094 cpld_debugfrac PASS +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_186263/datm_control_cfsr -Checking test 095 datm_control_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 095 datm_control_cfsr PASS +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_186263/datm_restart_cfsr -Checking test 096 datm_restart_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 096 datm_restart_cfsr PASS +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_186263/datm_control_gefs -Checking test 097 datm_control_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_control_gefs PASS +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_186263/datm_bulk_cfsr -Checking test 098 datm_bulk_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_bulk_cfsr PASS +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_186263/datm_bulk_gefs -Checking test 099 datm_bulk_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 099 datm_bulk_gefs PASS +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_186263/datm_mx025_cfsr -Checking test 100 datm_mx025_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/datm_mx025_cfsr +Checking test 101 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 100 datm_mx025_cfsr PASS +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_186263/datm_mx025_gefs -Checking test 101 datm_mx025_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/datm_mx025_gefs +Checking test 102 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 101 datm_mx025_gefs PASS +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_186263/datm_debug_cfsr -Checking test 102 datm_debug_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_189936/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 102 datm_debug_cfsr PASS +Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jan 7 19:17:41 UTC 2021 -Elapsed time: 02h:54m:04s. Have a nice day! +Mon Jan 11 18:22:24 UTC 2021 +Elapsed time: 01h:19m:36s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index e7644750b8..d7dfc495c5 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Thu Jan 7 22:03:11 GMT 2021 +Mon Jan 11 18:11:41 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_304085/fv3_ccpp_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_decomp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_2threads_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_read_inc_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 .........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 = /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_304085/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_ca_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_lndp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_iau_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_lheatstrg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_multigases_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_control_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_stretched_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_stretched_nest_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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,18 +1216,18 @@ 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_304085/fv3_ccpp_regional_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + 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 ............ALT CHECK......OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK 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_304085/fv3_ccpp_regional_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_regional_quilt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_control_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_stretched_nest_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_gfdlmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_satmedmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_satmedmfq_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_cpt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_gsd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_thompson_no_aero_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_gfs_v15p2_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_gfs_v16beta_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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_304085/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 @@ -2379,9 +2379,71 @@ Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... 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 +Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + 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 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_304085/fv3_ccpp_gfsv16_csawmg_prod -Checking test 045 fv3_ccpp_gfsv16_csawmg results .... +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2424,12 +2486,12 @@ Checking test 045 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 045 fv3_ccpp_gfsv16_csawmg PASS +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_304085/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2472,12 +2534,12 @@ Checking test 046 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 046 fv3_ccpp_gfsv16_csawmgt PASS +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_304085/fv3_ccpp_gocart_clm_prod -Checking test 047 fv3_ccpp_gocart_clm results .... +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 @@ -2520,12 +2582,12 @@ Checking test 047 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 047 fv3_ccpp_gocart_clm PASS +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_304085/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 048 fv3_ccpp_gfs_v16beta_flake results .... +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 @@ -2588,12 +2650,12 @@ Checking test 048 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 048 fv3_ccpp_gfs_v16beta_flake PASS +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_304085/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 @@ -2656,12 +2718,12 @@ Checking test 049 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 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +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_304085/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 @@ -2674,12 +2736,12 @@ Checking test 050 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 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +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_304085/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 @@ -2742,12 +2804,12 @@ Checking test 051 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 051 fv3_ccpp_gfs_v15p2_debug PASS +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_304085/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 052 fv3_ccpp_gfs_v16beta_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 @@ -2810,12 +2872,12 @@ Checking test 052 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 052 fv3_ccpp_gfs_v16beta_debug PASS +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_304085/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 @@ -2878,12 +2940,12 @@ Checking test 053 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 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +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_304085/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 @@ -2946,12 +3008,12 @@ Checking test 054 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 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +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_304085/fv3_ccpp_gsd_debug_prod -Checking test 055 fv3_ccpp_gsd_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 @@ -3014,12 +3076,12 @@ Checking test 055 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 055 fv3_ccpp_gsd_debug PASS +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_304085/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 056 fv3_ccpp_gsd_diag3d_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 @@ -3082,12 +3144,12 @@ Checking test 056 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 056 fv3_ccpp_gsd_diag3d_debug PASS +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_304085/fv3_ccpp_thompson_debug_prod -Checking test 057 fv3_ccpp_thompson_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 @@ -3150,12 +3212,12 @@ Checking test 057 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 057 fv3_ccpp_thompson_debug PASS +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_304085/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 @@ -3218,12 +3280,12 @@ Checking test 058 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 058 fv3_ccpp_thompson_no_aero_debug PASS +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_304085/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 @@ -3286,12 +3348,12 @@ Checking test 059 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 059 fv3_ccpp_rrfs_v1beta_debug PASS +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_304085/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 @@ -3354,12 +3416,12 @@ Checking test 060 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 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +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_304085/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_153854/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 @@ -3372,9 +3434,9 @@ Checking test 061 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 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jan 7 23:40:47 GMT 2021 -Elapsed time: 01h:37m:37s. Have a nice day! +Mon Jan 11 19:50:10 GMT 2021 +Elapsed time: 01h:38m:31s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 3e6c4d6410..bf99704fce 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Jan 7 15:36:40 CST 2021 +Mon Jan 11 11:03:32 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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_lndp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_lheatstrg_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_satmedmfq_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_rap_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_hrrr_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfs_v16beta_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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,9 +2730,71 @@ Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... 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 +Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + 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 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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfsv16_csawmg_prod -Checking test 051 fv3_ccpp_gfsv16_csawmg results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2775,12 +2837,12 @@ Checking test 051 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 051 fv3_ccpp_gfsv16_csawmg PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2823,12 +2885,12 @@ Checking test 052 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 052 fv3_ccpp_gfsv16_csawmgt PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gocart_clm_prod -Checking test 053 fv3_ccpp_gocart_clm results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2871,12 +2933,12 @@ Checking test 053 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 053 fv3_ccpp_gocart_clm PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 054 fv3_ccpp_gfs_v16beta_flake results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2939,12 +3001,12 @@ Checking test 054 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 054 fv3_ccpp_gfs_v16beta_flake PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3007,12 +3069,12 @@ Checking test 055 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 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing phyf012.nc .........OK @@ -3025,12 +3087,12 @@ Checking test 056 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 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3093,12 +3155,12 @@ Checking test 057 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 057 fv3_ccpp_gfs_v15p2_debug PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 058 fv3_ccpp_gfs_v16beta_debug results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3161,12 +3223,12 @@ Checking test 058 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 058 fv3_ccpp_gfs_v16beta_debug PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3229,12 +3291,12 @@ Checking test 059 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 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3297,12 +3359,12 @@ Checking test 060 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 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gsd_debug_prod -Checking test 061 fv3_ccpp_gsd_debug results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3365,12 +3427,12 @@ Checking test 061 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 061 fv3_ccpp_gsd_debug PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3433,12 +3495,12 @@ Checking test 062 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 062 fv3_ccpp_gsd_diag3d_debug PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_thompson_debug_prod -Checking test 063 fv3_ccpp_thompson_debug results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3501,12 +3563,12 @@ Checking test 063 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 063 fv3_ccpp_thompson_debug PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3569,12 +3631,12 @@ Checking test 064 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 064 fv3_ccpp_thompson_no_aero_debug PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3637,12 +3699,12 @@ Checking test 065 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 065 fv3_ccpp_rrfs_v1beta_debug PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3705,12 +3767,12 @@ Checking test 066 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 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing phyf001.nc .........OK @@ -3723,12 +3785,12 @@ Checking test 067 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 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_control_prod -Checking test 068 cpld_control results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_control_prod +Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3776,12 +3838,12 @@ Checking test 068 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 068 cpld_control PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restart_prod -Checking test 069 cpld_restart results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restart_prod +Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3829,12 +3891,12 @@ Checking test 069 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 069 cpld_restart PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_controlfrac_prod -Checking test 070 cpld_controlfrac results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_controlfrac_prod +Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3882,12 +3944,12 @@ Checking test 070 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 070 cpld_controlfrac PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restartfrac_prod -Checking test 071 cpld_restartfrac results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restartfrac_prod +Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3935,12 +3997,12 @@ Checking test 071 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 071 cpld_restartfrac PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_2threads_prod -Checking test 072 cpld_2threads results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_2threads_prod +Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3988,12 +4050,12 @@ Checking test 072 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 072 cpld_2threads PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_decomp_prod -Checking test 073 cpld_decomp results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_decomp_prod +Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4041,12 +4103,12 @@ Checking test 073 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 073 cpld_decomp PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_satmedmf_prod -Checking test 074 cpld_satmedmf results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_satmedmf_prod +Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4094,12 +4156,12 @@ Checking test 074 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 074 cpld_satmedmf PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_ca_prod -Checking test 075 cpld_ca results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_ca_prod +Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4147,12 +4209,12 @@ Checking test 075 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 075 cpld_ca PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_control_c192_prod -Checking test 076 cpld_control_c192 results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_control_c192_prod +Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4200,12 +4262,12 @@ Checking test 076 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 076 cpld_control_c192 PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restart_c192_prod -Checking test 077 cpld_restart_c192 results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restart_c192_prod +Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4253,12 +4315,12 @@ Checking test 077 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 077 cpld_restart_c192 PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_controlfrac_c192_prod -Checking test 078 cpld_controlfrac_c192 results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_controlfrac_c192_prod +Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4306,12 +4368,12 @@ Checking test 078 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 078 cpld_controlfrac_c192 PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restartfrac_c192_prod -Checking test 079 cpld_restartfrac_c192 results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restartfrac_c192_prod +Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4359,12 +4421,12 @@ Checking test 079 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 079 cpld_restartfrac_c192 PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_control_c384_prod -Checking test 080 cpld_control_c384 results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_control_c384_prod +Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4415,12 +4477,12 @@ Checking test 080 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 080 cpld_control_c384 PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restart_c384_prod -Checking test 081 cpld_restart_c384 results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restart_c384_prod +Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4471,12 +4533,12 @@ Checking test 081 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 081 cpld_restart_c384 PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_controlfrac_c384_prod -Checking test 082 cpld_controlfrac_c384 results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_controlfrac_c384_prod +Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4527,12 +4589,12 @@ Checking test 082 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 082 cpld_controlfrac_c384 PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restartfrac_c384_prod -Checking test 083 cpld_restartfrac_c384 results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restartfrac_c384_prod +Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4583,12 +4645,12 @@ Checking test 083 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 083 cpld_restartfrac_c384 PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_bmark_prod -Checking test 084 cpld_bmark results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_bmark_prod +Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4639,12 +4701,12 @@ Checking test 084 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 084 cpld_bmark PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restart_bmark_prod -Checking test 085 cpld_restart_bmark results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restart_bmark_prod +Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4695,12 +4757,12 @@ Checking test 085 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 085 cpld_restart_bmark PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_bmarkfrac_prod -Checking test 086 cpld_bmarkfrac results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_bmarkfrac_prod +Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4751,12 +4813,12 @@ Checking test 086 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 086 cpld_bmarkfrac PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restart_bmarkfrac_prod -Checking test 087 cpld_restart_bmarkfrac results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restart_bmarkfrac_prod +Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4807,12 +4869,12 @@ Checking test 087 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 087 cpld_restart_bmarkfrac PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_bmarkfrac_v16_prod -Checking test 088 cpld_bmarkfrac_v16 results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_bmarkfrac_v16_prod +Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4863,12 +4925,12 @@ Checking test 088 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 088 cpld_bmarkfrac_v16 PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_restart_bmarkfrac_v16_prod -Checking test 089 cpld_restart_bmarkfrac_v16 results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_restart_bmarkfrac_v16_prod +Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4919,12 +4981,12 @@ Checking test 089 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 089 cpld_restart_bmarkfrac_v16 PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_bmark_wave_prod -Checking test 090 cpld_bmark_wave results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_bmark_wave_prod +Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4978,12 +5040,12 @@ Checking test 090 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 090 cpld_bmark_wave PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_bmarkfrac_wave_prod -Checking test 091 cpld_bmarkfrac_wave results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_bmarkfrac_wave_prod +Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5037,12 +5099,12 @@ Checking test 091 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 091 cpld_bmarkfrac_wave PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_bmarkfrac_wave_v16_prod -Checking test 092 cpld_bmarkfrac_wave_v16 results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_bmarkfrac_wave_v16_prod +Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5096,12 +5158,12 @@ Checking test 092 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 092 cpld_bmarkfrac_wave_v16 PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_debug_prod -Checking test 093 cpld_debug results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_debug_prod +Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5149,12 +5211,12 @@ Checking test 093 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 093 cpld_debug PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/cpld_debugfrac_prod -Checking test 094 cpld_debugfrac results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/cpld_debugfrac_prod +Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5202,87 +5264,87 @@ Checking test 094 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 094 cpld_debugfrac PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/datm_control_cfsr -Checking test 095 datm_control_cfsr results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 095 datm_control_cfsr PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/datm_restart_cfsr -Checking test 096 datm_restart_cfsr results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 096 datm_restart_cfsr PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/datm_control_gefs -Checking test 097 datm_control_gefs results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_control_gefs PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/datm_bulk_cfsr -Checking test 098 datm_bulk_cfsr results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_bulk_cfsr PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/datm_bulk_gefs -Checking test 099 datm_bulk_gefs results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 099 datm_bulk_gefs PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/datm_mx025_cfsr -Checking test 100 datm_mx025_cfsr results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/datm_mx025_cfsr +Checking test 101 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 100 datm_mx025_cfsr PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/datm_mx025_gefs -Checking test 101 datm_mx025_gefs results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/datm_mx025_gefs +Checking test 102 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 101 datm_mx025_gefs PASS +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/dheinzel/stmp/dheinzel/FV3_RT/rt_111651/datm_debug_cfsr -Checking test 102 datm_debug_cfsr results .... +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_391380/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 102 datm_debug_cfsr PASS +Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jan 7 16:59:10 CST 2021 -Elapsed time: 01h:22m:31s. Have a nice day! +Mon Jan 11 12:22:56 CST 2021 +Elapsed time: 01h:19m:24s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 48124d6641..3f8c61e1c5 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Fri Jan 8 14:11:04 UTC 2021 +Mon Jan 11 17:08:55 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_11930/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_ca_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_lndp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_rap_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_hrrr_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_gfs_v16beta_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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_11930/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 @@ -2583,9 +2583,71 @@ Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... 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 +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + 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_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_11930/fv3_ccpp_gfsv16_csawmg_prod -Checking test 048 fv3_ccpp_gfsv16_csawmg results .... +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2628,12 +2690,12 @@ Checking test 048 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 048 fv3_ccpp_gfsv16_csawmg PASS +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_11930/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 049 fv3_ccpp_gfsv16_csawmgt results .... +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2676,12 +2738,12 @@ Checking test 049 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 049 fv3_ccpp_gfsv16_csawmgt PASS +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_11930/fv3_ccpp_gocart_clm_prod -Checking test 050 fv3_ccpp_gocart_clm results .... +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2724,12 +2786,12 @@ Checking test 050 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 050 fv3_ccpp_gocart_clm PASS +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_11930/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 051 fv3_ccpp_gfs_v16beta_flake results .... +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2792,12 +2854,12 @@ Checking test 051 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 051 fv3_ccpp_gfs_v16beta_flake PASS +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_11930/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2860,12 +2922,12 @@ Checking test 052 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 052 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +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_11930/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 Comparing phyf012.nc .........OK @@ -2878,12 +2940,12 @@ Checking test 053 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 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +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_11930/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 054 fv3_ccpp_gfs_v15p2_debug results .... +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2946,12 +3008,12 @@ Checking test 054 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 054 fv3_ccpp_gfs_v15p2_debug PASS +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_11930/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 055 fv3_ccpp_gfs_v16beta_debug results .... +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3014,12 +3076,12 @@ Checking test 055 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 055 fv3_ccpp_gfs_v16beta_debug PASS +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_11930/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 056 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3082,12 +3144,12 @@ Checking test 056 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 056 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +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_11930/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 057 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3150,12 +3212,12 @@ Checking test 057 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 057 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +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_11930/fv3_ccpp_gsd_debug_prod -Checking test 058 fv3_ccpp_gsd_debug results .... +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3218,12 +3280,12 @@ Checking test 058 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 058 fv3_ccpp_gsd_debug PASS +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_11930/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 059 fv3_ccpp_gsd_diag3d_debug results .... +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3286,12 +3348,12 @@ Checking test 059 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 059 fv3_ccpp_gsd_diag3d_debug PASS +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_11930/fv3_ccpp_thompson_debug_prod -Checking test 060 fv3_ccpp_thompson_debug results .... +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3354,12 +3416,12 @@ Checking test 060 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 060 fv3_ccpp_thompson_debug PASS +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_11930/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 061 fv3_ccpp_thompson_no_aero_debug results .... +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3422,12 +3484,12 @@ Checking test 061 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 061 fv3_ccpp_thompson_no_aero_debug PASS +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_11930/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 062 fv3_ccpp_rrfs_v1beta_debug results .... +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3490,12 +3552,12 @@ Checking test 062 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 062 fv3_ccpp_rrfs_v1beta_debug PASS +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_11930/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3558,12 +3620,12 @@ Checking test 063 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 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +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_11930/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_37786/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 Comparing phyf001.nc .........OK @@ -3576,9 +3638,9 @@ Checking test 064 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 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jan 8 14:51:01 UTC 2021 -Elapsed time: 00h:39m:58s. Have a nice day! +Mon Jan 11 17:56:32 UTC 2021 +Elapsed time: 00h:47m:38s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index d59eed317c..5e8cd6f9d5 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Fri Jan 8 14:15:55 UTC 2021 +Mon Jan 11 21:38:23 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_127401/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........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_127401/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_ca_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_lndp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1345,7 +1345,7 @@ 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_127401/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -1356,7 +1356,7 @@ 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_127401/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_rap_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_hrrr_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_gfs_v16beta_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_gfs_v16beta_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_gfs_v16beta_stochy_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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_127401/fv3_ccpp_gfs_v16beta_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -2681,9 +2681,71 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP results .... 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 +Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + 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 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_127401/fv3_ccpp_gfsv16_csawmg_prod -Checking test 050 fv3_ccpp_gfsv16_csawmg results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -2726,12 +2788,12 @@ Checking test 050 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 050 fv3_ccpp_gfsv16_csawmg PASS +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_127401/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -2774,12 +2836,12 @@ Checking test 051 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 051 fv3_ccpp_gfsv16_csawmgt PASS +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_127401/fv3_ccpp_gocart_clm_prod -Checking test 052 fv3_ccpp_gocart_clm results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -2822,12 +2884,12 @@ Checking test 052 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 052 fv3_ccpp_gocart_clm PASS +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_127401/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 053 fv3_ccpp_gfs_v16beta_flake results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -2890,12 +2952,12 @@ Checking test 053 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 053 fv3_ccpp_gfs_v16beta_flake PASS +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_127401/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -2958,12 +3020,12 @@ Checking test 054 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 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +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_127401/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -2976,12 +3038,12 @@ Checking test 055 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 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +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_127401/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 056 fv3_ccpp_gfs_v15p2_debug results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -3044,12 +3106,12 @@ Checking test 056 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 056 fv3_ccpp_gfs_v15p2_debug PASS +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_127401/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 057 fv3_ccpp_gfs_v16beta_debug results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -3112,12 +3174,12 @@ Checking test 057 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 057 fv3_ccpp_gfs_v16beta_debug PASS +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_127401/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -3180,12 +3242,12 @@ Checking test 058 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 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +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_127401/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -3248,12 +3310,12 @@ Checking test 059 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 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +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_127401/fv3_ccpp_gsd_debug_prod -Checking test 060 fv3_ccpp_gsd_debug results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -3316,12 +3378,12 @@ Checking test 060 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 060 fv3_ccpp_gsd_debug PASS +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_127401/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -3384,12 +3446,12 @@ Checking test 061 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 061 fv3_ccpp_gsd_diag3d_debug PASS +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_127401/fv3_ccpp_thompson_debug_prod -Checking test 062 fv3_ccpp_thompson_debug results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -3452,12 +3514,12 @@ Checking test 062 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 062 fv3_ccpp_thompson_debug PASS +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_127401/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -3520,12 +3582,12 @@ Checking test 063 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 063 fv3_ccpp_thompson_no_aero_debug PASS +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_127401/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -3588,12 +3650,12 @@ Checking test 064 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 064 fv3_ccpp_rrfs_v1beta_debug PASS +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_127401/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -3656,12 +3718,12 @@ Checking test 065 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 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +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_127401/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -3674,12 +3736,12 @@ Checking test 066 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 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +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_127401/cpld_control_prod -Checking test 067 cpld_control results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_control_prod +Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3727,12 +3789,12 @@ Checking test 067 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 067 cpld_control PASS +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_127401/cpld_restart_prod -Checking test 068 cpld_restart results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_restart_prod +Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3780,12 +3842,12 @@ Checking test 068 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 068 cpld_restart PASS +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_127401/cpld_controlfrac_prod -Checking test 069 cpld_controlfrac results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_controlfrac_prod +Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3833,12 +3895,12 @@ Checking test 069 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 069 cpld_controlfrac PASS +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_127401/cpld_restartfrac_prod -Checking test 070 cpld_restartfrac results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_restartfrac_prod +Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3886,12 +3948,12 @@ Checking test 070 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 070 cpld_restartfrac PASS +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_127401/cpld_2threads_prod -Checking test 071 cpld_2threads results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_2threads_prod +Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3939,12 +4001,12 @@ Checking test 071 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 071 cpld_2threads PASS +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_127401/cpld_decomp_prod -Checking test 072 cpld_decomp results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_decomp_prod +Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3992,12 +4054,12 @@ Checking test 072 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 072 cpld_decomp PASS +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_127401/cpld_satmedmf_prod -Checking test 073 cpld_satmedmf results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_satmedmf_prod +Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4045,12 +4107,12 @@ Checking test 073 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 073 cpld_satmedmf PASS +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_127401/cpld_ca_prod -Checking test 074 cpld_ca results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_ca_prod +Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4098,12 +4160,12 @@ Checking test 074 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 074 cpld_ca PASS +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_127401/cpld_control_c192_prod -Checking test 075 cpld_control_c192 results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -4151,12 +4213,12 @@ Checking test 075 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 075 cpld_control_c192 PASS +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_127401/cpld_restart_c192_prod -Checking test 076 cpld_restart_c192 results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -4204,12 +4266,12 @@ Checking test 076 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 076 cpld_restart_c192 PASS +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_127401/cpld_controlfrac_c192_prod -Checking test 077 cpld_controlfrac_c192 results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -4257,12 +4319,12 @@ Checking test 077 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 077 cpld_controlfrac_c192 PASS +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_127401/cpld_restartfrac_c192_prod -Checking test 078 cpld_restartfrac_c192 results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -4310,12 +4372,12 @@ Checking test 078 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 078 cpld_restartfrac_c192 PASS +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_127401/cpld_control_c384_prod -Checking test 079 cpld_control_c384 results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -4366,12 +4428,12 @@ Checking test 079 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 079 cpld_control_c384 PASS +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_127401/cpld_restart_c384_prod -Checking test 080 cpld_restart_c384 results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -4422,12 +4484,12 @@ Checking test 080 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 080 cpld_restart_c384 PASS +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_127401/cpld_controlfrac_c384_prod -Checking test 081 cpld_controlfrac_c384 results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -4478,12 +4540,12 @@ Checking test 081 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 081 cpld_controlfrac_c384 PASS +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_127401/cpld_restartfrac_c384_prod -Checking test 082 cpld_restartfrac_c384 results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -4534,12 +4596,12 @@ Checking test 082 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 082 cpld_restartfrac_c384 PASS +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_127401/cpld_bmark_prod -Checking test 083 cpld_bmark results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_bmark_prod +Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4590,12 +4652,12 @@ Checking test 083 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 083 cpld_bmark PASS +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_127401/cpld_restart_bmark_prod -Checking test 084 cpld_restart_bmark results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -4646,12 +4708,12 @@ Checking test 084 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 084 cpld_restart_bmark PASS +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_127401/cpld_bmarkfrac_prod -Checking test 085 cpld_bmarkfrac results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_bmarkfrac_prod +Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4702,12 +4764,12 @@ Checking test 085 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 085 cpld_bmarkfrac PASS +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_127401/cpld_restart_bmarkfrac_prod -Checking test 086 cpld_restart_bmarkfrac results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -4758,12 +4820,12 @@ Checking test 086 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 086 cpld_restart_bmarkfrac PASS +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_127401/cpld_bmarkfrac_v16_prod -Checking test 087 cpld_bmarkfrac_v16 results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -4814,12 +4876,12 @@ Checking test 087 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 087 cpld_bmarkfrac_v16 PASS +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_127401/cpld_restart_bmarkfrac_v16_prod -Checking test 088 cpld_restart_bmarkfrac_v16 results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -4870,12 +4932,12 @@ Checking test 088 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 088 cpld_restart_bmarkfrac_v16 PASS +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_127401/cpld_bmark_wave_prod -Checking test 089 cpld_bmark_wave results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -4929,12 +4991,12 @@ Checking test 089 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 089 cpld_bmark_wave PASS +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_127401/cpld_bmarkfrac_wave_prod -Checking test 090 cpld_bmarkfrac_wave results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -4988,12 +5050,12 @@ Checking test 090 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 090 cpld_bmarkfrac_wave PASS +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_127401/cpld_bmarkfrac_wave_v16_prod -Checking test 091 cpld_bmarkfrac_wave_v16 results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 @@ -5047,12 +5109,12 @@ Checking test 091 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 091 cpld_bmarkfrac_wave_v16 PASS +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_127401/cpld_debug_prod -Checking test 092 cpld_debug results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_debug_prod +Checking test 093 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5100,12 +5162,12 @@ Checking test 092 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 092 cpld_debug PASS +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_127401/cpld_debugfrac_prod -Checking test 093 cpld_debugfrac results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/cpld_debugfrac_prod +Checking test 094 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5153,87 +5215,87 @@ Checking test 093 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 093 cpld_debugfrac PASS +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_127401/datm_control_cfsr -Checking test 094 datm_control_cfsr results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 094 datm_control_cfsr PASS +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_127401/datm_restart_cfsr -Checking test 095 datm_restart_cfsr results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 095 datm_restart_cfsr PASS +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_127401/datm_control_gefs -Checking test 096 datm_control_gefs results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 096 datm_control_gefs PASS +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_127401/datm_bulk_cfsr -Checking test 097 datm_bulk_cfsr results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 097 datm_bulk_cfsr PASS +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_127401/datm_bulk_gefs -Checking test 098 datm_bulk_gefs results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 098 datm_bulk_gefs PASS +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_127401/datm_mx025_cfsr -Checking test 099 datm_mx025_cfsr results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 099 datm_mx025_cfsr PASS +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_127401/datm_mx025_gefs -Checking test 100 datm_mx025_gefs results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 100 datm_mx025_gefs PASS +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_127401/datm_debug_cfsr -Checking test 101 datm_debug_cfsr results .... +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_103960/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 101 datm_debug_cfsr PASS +Test 102 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jan 8 17:04:49 UTC 2021 -Elapsed time: 02h:48m:56s. Have a nice day! +Mon Jan 11 23:32:54 UTC 2021 +Elapsed time: 01h:54m:34s. Have a nice day! diff --git a/tests/fv3_conf/ccpp_gfs_v16_run_c192L127.IN b/tests/fv3_conf/ccpp_gfs_v16_run_c192L127.IN new file mode 100644 index 0000000000..53dd35df26 --- /dev/null +++ b/tests/fv3_conf/ccpp_gfs_v16_run_c192L127.IN @@ -0,0 +1,23 @@ +rm -fr INPUT RESTART +rsync -arv @[INPUTDATA_ROOT]/FV3_input_data_c192L127/INPUT/ INPUT/ +mkdir RESTART +if [ $WARM_START = .T. ]; then + rsync -arv ../fv3_ccpp_gfs_v16_c192L127${RT_SUFFIX}/RESTART/ INPUT/ + cd INPUT + rename 20190120.000000. '' 20190120.000000.* + cd .. +fi + +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/global_o3prdlos.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/*configure . + +if [ $DO_RRTMGP = .T. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/rrtmgp* . +fi diff --git a/tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN b/tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN new file mode 100644 index 0000000000..524468a15e --- /dev/null +++ b/tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN @@ -0,0 +1,337 @@ +&amip_interp_nml + interp_oi_sst = .true. + use_ncep_sst = .true. + use_ncep_ice = .false. + no_anom_sst = .false. + data_set = 'reynolds_oi' + date_out_of_range = 'climo' +/ + +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + fdiag = 1 + fhmax = 384 + fhout = 3 + fhmaxhf = 120 + fhouthf = 1 + ccpp_suite = '@[CCPP_SUITE]' +/ + +&diag_manager_nml + prepend_date = .false. +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 +/ + +&mpp_io_nml +shuffle=1 +deflate_level=1 +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = 3000000 + print_memory_usage = .false. +/ + +&fv_core_nml + layout = 3,8 + io_layout = 1,1 + npx = @[NPX] + npy = @[NPY] + ntiles = 6 + npz = @[NPZ] + grid_type = -1 + make_nh = .true. + fv_debug = .false. + range_warn = .false. + reset_eta = .false. + n_sponge = 42 + nudge_qv = .true. + nudge_dz = .false. + tau = 10. + rf_cutoff = 7.5e2 + d2_bg_k1 = 0.20 + d2_bg_k2 = 0.04 + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .false. + phys_hydrostatic = .false. + use_hydro_pressure = .false. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 6 + nwat = 6 + na_init = 1 + d_ext = 0. + dnats = 1 + fv_sg_adj = 450 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.12 + vtdm4 = 0.02 + delt_max = 0.002 + ke_bg = 0. + do_vort_damp = .true. + external_ic = .true. + external_eta = .true. + gfs_phil = .false. + nggps_ic = .true. + mountain = .false. + ncep_ic = .false. + d_con = 1. + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = 5 + hord_tr = 8 + adjust_dry_mass = .false. + consv_te = 1. + do_sat_adj = .true. + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = 6 + warm_start = .false. + no_dycore = .false. + z_tracer = .true. + agrid_vel_rst = .true. + read_increment = .false. + res_latlon_dynamics = "" +/ + +&external_ic_nml + filtered_terrain = .true. + levp = @[NPZP] + gfs_dwinds = .true. + checker_tr = .false. + nt_checker = 0 +/ + +&gfs_physics_nml + fhzero = 6 + h2o_phys = .true. + ldiag3d = .false. + fhcyc = 24 + use_ufo = .true. + pre_rad = .false. + ncld = 5 + imp_physics = 11 + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = 1 + iems = 1 + iaer = 5111 + icliq_sw = 2 + iovr = 3 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. + shal_cnv = .true. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = .false. + satmedmf = .true. + isatmedmf = 1 + lheatstrg = .false. + random_clds = .false. + trans_trac = .true. + cnvcld = .true. + imfshalcnv = 2 + imfdeepcnv = 2 + cdmbgwd = 0.23,1.5,1.0,1.0 + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsoil = 4 + lsm = 1 + iopt_dveg = 1 + iopt_crs = 1 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_alb = 2 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 1 + debug = .false. + oz_phys = .F. + oz_phys_2015 = .T. + nstf_name = 2,0,0,0,0 + nst_anl = .true. + psautco = 0.0008,0.0005 + prautco = 0.00015,0.00015 + lgfdlmprad = .true. + effr_in = .true. + ldiag_ugwp = .false. + do_ugwp = .false. + do_tofd = .true. + do_sppt = .false. + do_shum = .false. + do_skeb = .false. + lndp_type = @[LNDP_TYPE] + n_var_lndp = @[N_VAR_LNDP] + do_RRTMGP = .true. + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = 6 + lw_file_gas = 'rrtmgp-data-lw-g256-2018-12-04.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g224-2018-12-04.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + doG_cldoptics = .true. + rrtmgp_ngauss_ang = 3 + rrtmgp_nrghice = 3 + lsoil_lsm = 4 + do_mynnedmf = .false. + do_mynnsfclay = .false. + icloud_bl = 1 + bl_mynn_edmf = 1 + bl_mynn_tkeadvect = .false. + bl_mynn_edmf_mom = 1 + min_lakeice = 0.15 + min_seaice = 0.15 + +/ + +&gfdl_cloud_microphysics_nml + sedi_transport = .true. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .F. + const_vs = .F. + const_vg = .F. + const_vr = .F. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 225. + tau_v2l = 150. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0E-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 150. + reiflag = 2 +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&namsfc + FNGLAC = 'global_glacier.2x2.grb' + FNMXIC = 'global_maxice.2x2.grb' + FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' + FNSNOC = 'global_snoclim.1.875.grb' + FNZORC = 'igbp' + FNALBC = @[FNALBC] + FNALBC2 = 'global_albedo4.1x1.grb' + FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' + FNTG3C = 'global_tg3clim.2.6x1.5.grb' + FNVEGC = 'global_vegfrac.0.144.decpercent.grb' + FNVETC = @[FNVETC] + FNSOTC = @[FNSOTC] + FNSMCC = @[FNSMCC] + FNMSKH = 'seaice_newland.grb' + FNTSFA = '' + FNACNA = '' + FNSNOA = '' + FNVMNC = 'global_shdmin.0.144x0.144.grb' + FNVMXC = 'global_shdmax.0.144x0.144.grb' + FNSLPC = 'global_slope.1x1.grb' + FNABSC = @[FNABSC] + LDEBUG = .false. + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + LANDICE = .true. + FTSFS = 90 + FAISL = 99999 + FAISS = 99999 + FSNOL = 99999 + FSNOS = 99999 + FSICL = 99999 + FSICS = 99999 + FTSFL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&nam_stochy +/ + +&nam_sfcperts +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = 0 + launch_level = 54 +/ + diff --git a/tests/parm/nems.configure.cpld.IN b/tests/parm/nems.configure.cpld.IN index 42bc0d7981..3ea6ce5182 100644 --- a/tests/parm/nems.configure.cpld.IN +++ b/tests/parm/nems.configure.cpld.IN @@ -50,7 +50,7 @@ ICE_attributes:: # CMEPS warm run sequence runSeq:: @@[coupling_interval_slow_sec] - MED med_phases_prep_ocn_accum_avg + MED med_phases_prep_ocn_avg MED -> OCN :remapMethod=redist OCN @@[coupling_interval_fast_sec] @@ -61,14 +61,13 @@ runSeq:: ATM ICE ATM -> MED :remapMethod=redist + MED med_phases_post_atm ICE -> MED :remapMethod=redist - MED med_fraction_set - MED med_phases_prep_ocn_map - MED med_phases_prep_ocn_merge - MED med_phases_prep_ocn_accum_fast - MED med_phases_profile + MED med_phases_post_ice + MED med_phases_prep_ocn_accum @ OCN -> MED :remapMethod=redist + MED med_phases_post_ocn MED med_phases_restart_write @ :: diff --git a/tests/parm/nems.configure.cpld_wave.IN b/tests/parm/nems.configure.cpld_wave.IN index 8b85ac02a2..2c88540816 100644 --- a/tests/parm/nems.configure.cpld_wave.IN +++ b/tests/parm/nems.configure.cpld_wave.IN @@ -58,7 +58,7 @@ WAV_attributes:: # CMEPS warm run sequence runSeq:: @@[coupling_interval_slow_sec] - MED med_phases_prep_ocn_accum_avg + MED med_phases_prep_ocn_avg MED -> OCN :remapMethod=redist OCN -> WAV WAV -> OCN :srcMaskValues=1 @@ -75,14 +75,13 @@ runSeq:: ICE WAV ATM -> MED :remapMethod=redist + MED med_phases_post_atm ICE -> MED :remapMethod=redist - MED med_fraction_set - MED med_phases_prep_ocn_map - MED med_phases_prep_ocn_merge - MED med_phases_prep_ocn_accum_fast - MED med_phases_profile + MED med_phases_post_ice + MED med_phases_prep_ocn_accum @ OCN -> MED :remapMethod=redist + MED med_phases_post_ocn MED med_phases_restart_write @ :: diff --git a/tests/parm/nems.configure.datm.IN b/tests/parm/nems.configure.datm.IN index d8cefcc131..4d610cd7fd 100644 --- a/tests/parm/nems.configure.datm.IN +++ b/tests/parm/nems.configure.datm.IN @@ -51,7 +51,7 @@ ICE_attributes:: runSeq:: @@[coupling_interval_slow_sec] - MED med_phases_prep_ocn_accum_avg + MED med_phases_prep_ocn_avg MED -> OCN :remapMethod=redist OCN @@[coupling_interval_fast_sec] @@ -60,14 +60,14 @@ runSeq:: ATM ICE ATM -> MED :remapMethod=redist + MED med_phases_post_atm ICE -> MED :remapMethod=redist - MED med_fraction_set - MED med_phases_prep_ocn_map + MED med_phases_post_ice MED med_phases_aofluxes_run - MED med_phases_prep_ocn_merge - MED med_phases_prep_ocn_accum_fast + MED med_phases_prep_ocn_accum @ OCN -> MED :remapMethod=redist + MED med_phases_post_ocn MED med_phases_restart_write @ :: diff --git a/tests/rt.conf b/tests/rt.conf index 08826467aa..e13e0072f8 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -83,6 +83,7 @@ RUN | fv3_ccpp_gfs_v16beta_restart RUN | fv3_ccpp_gfs_v16beta_stochy | | fv3 | RUN | fv3_ccpp_gfs_v15p2_RRTMGP | | fv3 | RUN | fv3_ccpp_gfs_v16beta_RRTMGP | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | # fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests diff --git a/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 new file mode 100644 index 0000000000..1be7d60ad9 --- /dev/null +++ b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 @@ -0,0 +1,103 @@ +############################################################################### +# +# FV3 CCPP GFS v16 w/ RRTMGP test +# +############################################################################### + +export TEST_DESCR="Compare FV3 c192L217 CCPP GFS v16 w/ RRTMGP results with previous trunk version" + +export CNTL_DIR=fv3_gfs_v16_RRTMGP_c192L127 + +export LIST_FILES="phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 + +export DO_RRTMGP=.T. +export TASKS=150 +export INPES=3 +export JNPES=8 +export NPX=193 +export NPY=193 +export NPZ=127 +export NPZP=128 +export SYEAR=2019 +export SMONTH=01 +export SDAY=20 +export DT_ATMOS=450 +export FHMAX=24 +export WLCLK=30 +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export OUTPUT_GRID="'cubed_sphere_grid'" +export OUTPUT_FILE="'netcdf'" +export WRITE_NEMSIOFLIP=.true. +export WRITE_FSYNCFLAG=.true. +export IMO=768 +export JMO=384 +export FNALBC="'global_snowfree_albedo.bosu.t382.768.384.rg.grb'," +export FNVETC="'global_vegtype.igbp.t382.768.384.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t382.768.384.grb'," +export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," + +export FV3_RUN=ccpp_gfs_v16_run_c192L127.IN +export CCPP_SUITE=FV3_GFS_v16beta_RRTMGP +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_v16_c192L127_rrtmgp.nml.IN + From d4a36a28c4ad73ca4b97126a4006f37fc8a3db81 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Thu, 14 Jan 2021 18:02:19 -0700 Subject: [PATCH 057/109] Remove IPD steps 3 and 5 (#357) Reduce SIMDMULTIARCH sets from four to two in cmake/Intel.cmake * First cleanup of regression test config tests/rt.conf * tests/rt.sh: reduce number of build jobs on jet.intel from 10 to 5; skip-ci * Remove flags -f and -s from rt.sh, remove SET logic, remove corresponding column in all rt*conf files * Update usage in rt.sh, add modulefiles/jet.intel/fv3_debug; skip-ci * CCPP is default in cmake build * Add debug modulefiles for linux.gnu and macosx.gnu * Update submodule pointer for fv3atm * Change logic in CMakeLists.txt and tests/compile.sh so that 32BIT=ON automatically sets DYN32=ON; skip-ci * Move logic to set DYN32 - depending on 32BIT setting - to fv3atm * Remove -DCCPP=ON from tests/compile.sh; update submodule pointer for fv3atm; skip-ci --- .gitmodules | 6 +- CMakeLists.txt | 14 +- FV3 | 2 +- NEMS | 2 +- modulefiles/linux.gnu/fv3 | 2 +- modulefiles/linux.gnu/fv3_debug | 50 ++++++ modulefiles/macosx.gnu/fv3 | 2 +- modulefiles/macosx.gnu/fv3_debug | 44 +++++ 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 +++++++------- tests/RegressionTests_wcoss_dell_p3.log | 214 +++++++++++----------- tests/compile.sh | 8 +- 18 files changed, 785 insertions(+), 697 deletions(-) create mode 100755 modulefiles/linux.gnu/fv3_debug create mode 100755 modulefiles/macosx.gnu/fv3_debug diff --git a/.gitmodules b/.gitmodules index 6e63f4576f..00e1e60e2b 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 = remove_ipd_step3_and_5 [submodule "NEMS"] path = NEMS url = https://github.com/NOAA-EMC/NEMS diff --git a/CMakeLists.txt b/CMakeLists.txt index 2de3ef22d7..7c778d43b3 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 @@ -152,6 +149,7 @@ if(32BIT) list(APPEND _fms_defs_private OVERLOAD_R4 OVERLOAD_R8) endif() + target_compile_definitions(fms PRIVATE "${_fms_defs_private}") target_include_directories(fms PUBLIC $ diff --git a/FV3 b/FV3 index c697af2ba3..e763de061f 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c697af2ba3985d08c96cb0baa51b47117fb98a49 +Subproject commit e763de061fdd3dfa7221546b5db39fb025e657c1 diff --git a/NEMS b/NEMS index b800b340f8..f7fb973f8d 160000 --- a/NEMS +++ b/NEMS @@ -1 +1 @@ -Subproject commit b800b340f8c7ba7852f13077b9957370ee60874a +Subproject commit f7fb973f8d6c9f2fc88c5a2742bfc8ef37c49320 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 new file mode 100755 index 0000000000..40b281000b --- /dev/null +++ b/modulefiles/linux.gnu/fv3_debug @@ -0,0 +1,50 @@ +#!/bin/bash + +#%Module###################################################################### +## +## UFS 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 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 new file mode 100755 index 0000000000..f99e07ad70 --- /dev/null +++ b/modulefiles/macosx.gnu/fv3_debug @@ -0,0 +1,44 @@ +#!/bin/bash + +#%Module###################################################################### +## +## UFS 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" 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..9849f59f3c 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 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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/Denise.Worthen/FV3_RT/rt_257242/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/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_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 -Mon Jan 11 17:46:38 UTC 2021 -Elapsed time: 00h:34m:00s. 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 1d5fddd2a4..09bc946e3e 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 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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/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_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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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/Denise.Worthen/FV3_RT/rt_189936/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 -Mon Jan 11 18:22:24 UTC 2021 -Elapsed time: 01h:19m:36s. 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_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! 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! diff --git a/tests/compile.sh b/tests/compile.sh index 839d7031ee..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" @@ -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 4f69ddfff64c91ff67c281000d8cc5ccd13dfe65 Mon Sep 17 00:00:00 2001 From: Jun Wang <37633869+junwang-noaa@users.noreply.github.com> Date: Thu, 14 Jan 2021 21:49:10 -0500 Subject: [PATCH 058/109] point fv3 to EMC develop branch (#377) --- .gitmodules | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitmodules b/.gitmodules index 00e1e60e2b..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 = remove_ipd_step3_and_5 + url = https://github.com/NOAA-EMC/fv3atm + branch = develop [submodule "NEMS"] path = NEMS url = https://github.com/NOAA-EMC/NEMS From 77f56a445c44d047837788e4082a2ccaa371f389 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Tue, 19 Jan 2021 13:04:55 -0700 Subject: [PATCH 059/109] Stochastic land perturbations: add roughness length over land to the perturbed variables (#61) * Updates to regression tests fv3_ccpp_gsd_lndp and fv3_ccpp_gsd_noah_lndp * Bug fix for tests/parm/ccpp_gsd_sar.nml.IN --- FV3 | 2 +- stochastic_physics | 2 +- tests/parm/ccpp_gsd.nml.IN | 4 ++-- tests/parm/ccpp_gsd_sar.nml.IN | 2 ++ tests/rt_ccpp_dev.conf | 2 ++ tests/tests/fv3_ccpp_gsd_lndp | 2 +- tests/tests/fv3_ccpp_gsd_noah_lndp | 2 +- 7 files changed, 10 insertions(+), 6 deletions(-) diff --git a/FV3 b/FV3 index 6ecee94d0c..fa070c8349 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 6ecee94d0cdc82def576d56633a8a1ec93da39bd +Subproject commit fa070c83497debb2c34e310f7f6cdb767d282a80 diff --git a/stochastic_physics b/stochastic_physics index aeb543dbc4..b6c12628d6 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit aeb543dbc4eadb3e140db8246dee96877b69576f +Subproject commit b6c12628d64266134d39066d6e65ec8ddd5b5a22 diff --git a/tests/parm/ccpp_gsd.nml.IN b/tests/parm/ccpp_gsd.nml.IN index f4a2713f07..7d2a9e7782 100644 --- a/tests/parm/ccpp_gsd.nml.IN +++ b/tests/parm/ccpp_gsd.nml.IN @@ -326,8 +326,8 @@ LNDP_TAU=21600, LNDP_LSCALE=500000, ISEED_LNDP=2010, - lndp_var_list = 'vgf','alb','sal' - lndp_prt_list = 0.02,0.01,0.01 + lndp_var_list = 'smc', 'vgf', 'alb', 'sal', 'emi', 'zol' + lndp_prt_list = 0.200, 0.001, 0.001, 0.001, 0.001, 0.001 / &cires_ugwp_nml diff --git a/tests/parm/ccpp_gsd_sar.nml.IN b/tests/parm/ccpp_gsd_sar.nml.IN index ec5c0869f2..d101d6f84f 100644 --- a/tests/parm/ccpp_gsd_sar.nml.IN +++ b/tests/parm/ccpp_gsd_sar.nml.IN @@ -277,6 +277,7 @@ FABSL = 99999, FSNOS = 99999, FSICS = 99999, +/ &nam_stochy lon_s=768, @@ -300,6 +301,7 @@ ISEED_SKEB=2, ISEED_SPPT=3, / + &nam_sfcperts lndp_type = @[LNDP_TYPE] LNDP_TAU=21600, diff --git a/tests/rt_ccpp_dev.conf b/tests/rt_ccpp_dev.conf index 47633dc20c..109c9b0e44 100644 --- a/tests/rt_ccpp_dev.conf +++ b/tests/rt_ccpp_dev.conf @@ -1,4 +1,6 @@ ################################################################################################################################################################################# +# Note: this file has been used for testing additional physics on Hera and Cheyenne with both Intel and GNU # +# # # CCPP REPRO tests # ################################################################################################################################################################################# diff --git a/tests/tests/fv3_ccpp_gsd_lndp b/tests/tests/fv3_ccpp_gsd_lndp index 1f2ee29b9b..ab71cc1fb5 100644 --- a/tests/tests/fv3_ccpp_gsd_lndp +++ b/tests/tests/fv3_ccpp_gsd_lndp @@ -94,7 +94,7 @@ export LSOIL_LSM=9 export KICE=9 export LNDP_TYPE=2 -export N_VAR_LNDP=3 +export N_VAR_LNDP=6 export LNDP_EACH_STEP=.T. #export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_noah_lndp b/tests/tests/fv3_ccpp_gsd_noah_lndp index deb060e09e..777c159993 100644 --- a/tests/tests/fv3_ccpp_gsd_noah_lndp +++ b/tests/tests/fv3_ccpp_gsd_noah_lndp @@ -93,7 +93,7 @@ export LSM=1 export LSOIL_LSM=4 export LNDP_TYPE=2 -export N_VAR_LNDP=3 +export N_VAR_LNDP=6 export LNDP_EACH_STEP=.T. #export WLCLK=30 From 62991a1c11f450c59b0e953aac5e7306f1157f7e Mon Sep 17 00:00:00 2001 From: Jun Wang <37633869+junwang-noaa@users.noreply.github.com> Date: Wed, 20 Jan 2021 11:31:32 -0500 Subject: [PATCH 060/109] update cpl gfsv16 tests, rrtmgp fix and bug fixes in cmeps (#378) * update CMEPS, fix character length error for gnu compile * add Dusan's fix for rt_utils.sh * update cpl gfsv16 tests, replace seaice_newland.grb with global_slmask.t1534.3072.1536.grb, recover input.mom6.nml.IN, update input directory, update global thread and decomp tests, update fdiag for global control * point to Dustins rrtmgp fix branch * update input directory Co-authored-by: denise.worthen Co-authored-by: Jun Wang --- CMEPS-interface/CMEPS | 2 +- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 94 ++-- tests/RegressionTests_cheyenne.intel.log | 440 +++++++++---------- tests/RegressionTests_gaea.intel.log | 306 ++++++------- tests/RegressionTests_hera.gnu.log | 94 ++-- tests/RegressionTests_hera.intel.log | 456 +++++++++---------- tests/RegressionTests_jet.intel.log | 294 ++++++------- tests/RegressionTests_orion.intel.log | 458 ++++++++++---------- tests/RegressionTests_wcoss_cray.log | 302 ++++++------- tests/RegressionTests_wcoss_dell_p3.log | 456 +++++++++---------- tests/default_vars.sh | 2 +- tests/fv3_conf/ccpp_control_run.IN | 34 +- tests/parm/ccpp.gocart.nml.IN | 2 +- tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN | 2 +- tests/parm/ccpp_ca.nml.IN | 2 +- tests/parm/ccpp_control.nml.IN | 2 +- tests/parm/ccpp_cpt.nml.IN | 2 +- tests/parm/ccpp_csawmg.nml.IN | 2 +- tests/parm/ccpp_csawmg3shoc127.nml.IN | 2 +- tests/parm/ccpp_csawmgshoc.nml.IN | 2 +- tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN | 2 +- tests/parm/ccpp_gfdlmp.nml.IN | 2 +- tests/parm/ccpp_gfsv16_csawmg.nml.IN | 2 +- tests/parm/ccpp_gsd.nml.IN | 2 +- tests/parm/ccpp_gsd_rrtmgp.nml.IN | 2 +- tests/parm/ccpp_gsd_sar.nml.IN | 2 +- tests/parm/ccpp_input_nest02.nml.IN | 2 +- tests/parm/ccpp_lndp.nml.IN | 2 +- tests/parm/ccpp_multi_gases.nml.IN | 2 +- tests/parm/ccpp_regional.nml.IN | 2 +- tests/parm/ccpp_regional_c768.nml.IN | 2 +- tests/parm/ccpp_stretched-input.nml.IN | 2 +- tests/parm/ccpp_stretched-nest-input.nml.IN | 2 +- tests/parm/ccpp_v15p2_c96.nml.IN | 2 +- tests/parm/ccpp_v15p2_c96_rrtmgp.nml.IN | 2 +- tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN | 2 +- tests/parm/ccpp_v16beta_c96.nml.IN | 2 +- tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN | 2 +- tests/parm/ccpp_v16beta_flake_c96.nml.IN | 2 +- tests/parm/cpt.nml.IN | 2 +- tests/parm/csawmg.nml.IN | 2 +- tests/parm/csawmg3shoc127.nml.IN | 2 +- tests/parm/csawmgshoc.nml.IN | 2 +- tests/parm/fv3.gocart.nml.IN | 311 ------------- tests/parm/gfdlmp.nml.IN | 312 ------------- tests/parm/gfsv16_csawmg.nml.IN | 302 ------------- tests/parm/input.benchmark.nml.IN | 325 -------------- tests/parm/input.benchmark_ccpp.nml.IN | 2 +- tests/parm/input.benchmark_v16.nml.IN | 36 +- tests/parm/input.mom6_ccpp.nml.IN | 2 +- tests/parm/input.nml.IN | 303 ------------- tests/parm/input_nest02.nml.IN | 2 +- tests/parm/multi_gases.nml.IN | 291 ------------- tests/parm/rasmgshoc.nml.IN | 304 ------------- tests/parm/regional.nml.IN | 298 ------------- tests/parm/regional_c768-model_configure.IN | 60 --- tests/parm/regional_c768.nml.IN | 295 ------------- tests/parm/stretched-input.nml.IN | 292 ------------- tests/parm/stretched-nest-input.nml.IN | 300 ------------- tests/parm/thompson.nml.IN | 273 ------------ tests/parm/v15p2_c96.nml.IN | 307 ------------- tests/parm/v16beta_c96.nml.IN | 335 -------------- tests/parm/wsm6.nml.IN | 273 ------------ tests/rt.conf | 6 +- tests/rt.sh | 6 +- tests/rt_utils.sh | 3 + tests/tests/cpld_bmarkfrac_v16 | 3 +- tests/tests/cpld_bmarkfrac_wave_v16 | 3 +- tests/tests/cpld_bmarkfrac_wave_v16_35d | 3 +- tests/tests/cpld_restart_bmarkfrac_v16 | 3 +- tests/tests/fv3_2threads | 82 ---- tests/tests/fv3_appbuild | 76 ---- tests/tests/fv3_ca | 81 ---- tests/tests/fv3_ccpp_2threads | 1 + tests/tests/fv3_ccpp_control | 14 + tests/tests/fv3_ccpp_decomp | 1 + tests/tests/fv3_ccpp_restart | 14 +- tests/tests/fv3_control | 76 ---- tests/tests/fv3_control_32bit | 76 ---- tests/tests/fv3_control_debug | 16 - tests/tests/fv3_cpt | 89 ---- tests/tests/fv3_csawmg | 66 --- tests/tests/fv3_csawmg3shoc127 | 79 ---- tests/tests/fv3_csawmgshoc | 66 --- tests/tests/fv3_decomp | 79 ---- tests/tests/fv3_gfdlmp | 65 --- tests/tests/fv3_gfdlmp_32bit | 65 --- tests/tests/fv3_gfdlmprad | 80 ---- tests/tests/fv3_gfdlmprad_32bit_post | 75 ---- tests/tests/fv3_gfdlmprad_atmwav | 81 ---- tests/tests/fv3_gfdlmprad_gwd | 70 --- tests/tests/fv3_gfdlmprad_noahmp | 71 --- tests/tests/fv3_gfs_v15p2 | 81 ---- tests/tests/fv3_gfs_v16beta | 81 ---- tests/tests/fv3_gfsv16_csawmg | 67 --- tests/tests/fv3_gfsv16_csawmgt | 67 --- tests/tests/fv3_gocart_clm | 69 --- tests/tests/fv3_h2ophys | 81 ---- tests/tests/fv3_iau | 89 ---- tests/tests/fv3_lheatstrg | 62 --- tests/tests/fv3_multigases | 93 ---- tests/tests/fv3_ozphys_2015 | 81 ---- tests/tests/fv3_read_inc | 88 ---- tests/tests/fv3_regional_c768 | 22 - tests/tests/fv3_regional_control | 28 -- tests/tests/fv3_regional_quilt | 27 -- tests/tests/fv3_regional_restart | 37 -- tests/tests/fv3_restart | 87 ---- tests/tests/fv3_sas | 67 --- tests/tests/fv3_satmedmf | 66 --- tests/tests/fv3_satmedmfq | 67 --- tests/tests/fv3_stochy | 85 ---- tests/tests/fv3_stretched | 88 ---- tests/tests/fv3_stretched_nest | 108 ----- tests/tests/fv3_stretched_nest_debug | 46 -- tests/tests/fv3_stretched_nest_quilt | 102 ----- tests/tests/fv3_thompson | 86 ---- tests/tests/fv3_wrtGauss_nemsio | 61 --- tests/tests/fv3_wrtGauss_nemsio_c192 | 83 ---- tests/tests/fv3_wrtGauss_nemsio_c768 | 104 ----- tests/tests/fv3_wrtGauss_netcdf | 59 --- tests/tests/fv3_wrtGauss_netcdf_debug | 18 - tests/tests/fv3_wrtGauss_netcdf_esmf | 59 --- tests/tests/fv3_wrtGlatlon_netcdf | 59 --- tests/tests/fv3_wsm6 | 82 ---- 126 files changed, 1556 insertions(+), 9719 deletions(-) delete mode 100644 tests/parm/fv3.gocart.nml.IN delete mode 100644 tests/parm/gfdlmp.nml.IN delete mode 100644 tests/parm/gfsv16_csawmg.nml.IN delete mode 100644 tests/parm/input.benchmark.nml.IN delete mode 100644 tests/parm/input.nml.IN delete mode 100644 tests/parm/multi_gases.nml.IN delete mode 100644 tests/parm/rasmgshoc.nml.IN delete mode 100644 tests/parm/regional.nml.IN delete mode 100644 tests/parm/regional_c768-model_configure.IN delete mode 100644 tests/parm/regional_c768.nml.IN delete mode 100644 tests/parm/stretched-input.nml.IN delete mode 100644 tests/parm/stretched-nest-input.nml.IN delete mode 100644 tests/parm/thompson.nml.IN delete mode 100644 tests/parm/v15p2_c96.nml.IN delete mode 100644 tests/parm/v16beta_c96.nml.IN delete mode 100644 tests/parm/wsm6.nml.IN delete mode 100644 tests/tests/fv3_2threads delete mode 100644 tests/tests/fv3_appbuild delete mode 100644 tests/tests/fv3_ca delete mode 100644 tests/tests/fv3_control delete mode 100644 tests/tests/fv3_control_32bit delete mode 100644 tests/tests/fv3_control_debug delete mode 100644 tests/tests/fv3_cpt delete mode 100644 tests/tests/fv3_csawmg delete mode 100644 tests/tests/fv3_csawmg3shoc127 delete mode 100644 tests/tests/fv3_csawmgshoc delete mode 100644 tests/tests/fv3_decomp delete mode 100644 tests/tests/fv3_gfdlmp delete mode 100644 tests/tests/fv3_gfdlmp_32bit delete mode 100644 tests/tests/fv3_gfdlmprad delete mode 100644 tests/tests/fv3_gfdlmprad_32bit_post delete mode 100644 tests/tests/fv3_gfdlmprad_atmwav delete mode 100644 tests/tests/fv3_gfdlmprad_gwd delete mode 100644 tests/tests/fv3_gfdlmprad_noahmp delete mode 100644 tests/tests/fv3_gfs_v15p2 delete mode 100644 tests/tests/fv3_gfs_v16beta delete mode 100644 tests/tests/fv3_gfsv16_csawmg delete mode 100644 tests/tests/fv3_gfsv16_csawmgt delete mode 100644 tests/tests/fv3_gocart_clm delete mode 100644 tests/tests/fv3_h2ophys delete mode 100644 tests/tests/fv3_iau delete mode 100644 tests/tests/fv3_lheatstrg delete mode 100644 tests/tests/fv3_multigases delete mode 100644 tests/tests/fv3_ozphys_2015 delete mode 100644 tests/tests/fv3_read_inc delete mode 100644 tests/tests/fv3_regional_c768 delete mode 100644 tests/tests/fv3_regional_control delete mode 100644 tests/tests/fv3_regional_quilt delete mode 100644 tests/tests/fv3_regional_restart delete mode 100644 tests/tests/fv3_restart delete mode 100644 tests/tests/fv3_sas delete mode 100644 tests/tests/fv3_satmedmf delete mode 100644 tests/tests/fv3_satmedmfq delete mode 100644 tests/tests/fv3_stochy delete mode 100644 tests/tests/fv3_stretched delete mode 100644 tests/tests/fv3_stretched_nest delete mode 100644 tests/tests/fv3_stretched_nest_debug delete mode 100644 tests/tests/fv3_stretched_nest_quilt delete mode 100644 tests/tests/fv3_thompson delete mode 100644 tests/tests/fv3_wrtGauss_nemsio delete mode 100644 tests/tests/fv3_wrtGauss_nemsio_c192 delete mode 100644 tests/tests/fv3_wrtGauss_nemsio_c768 delete mode 100644 tests/tests/fv3_wrtGauss_netcdf delete mode 100644 tests/tests/fv3_wrtGauss_netcdf_debug delete mode 100644 tests/tests/fv3_wrtGauss_netcdf_esmf delete mode 100644 tests/tests/fv3_wrtGlatlon_netcdf delete mode 100644 tests/tests/fv3_wsm6 diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 1f6757124a..850d2ea278 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 1f6757124acf51f01d8c665d7d1b0f58afc4f76e +Subproject commit 850d2ea2783cb19789052ab71f30e5366f9b102c diff --git a/FV3 b/FV3 index e763de061f..a4cf6db526 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit e763de061fdd3dfa7221546b5db39fb025e657c1 +Subproject commit a4cf6db5264d31c665f8a9839b4c5c1a81333c58 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 05953af978..680902f75e 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Wed Jan 13 10:33:50 MST 2021 +Tue Jan 19 11:54:40 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_22108/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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-20210106/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_22108/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/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 10:57:35 MST 2021 -Elapsed time: 00h:23m:45s. Have a nice day! +Tue Jan 19 12:13:10 MST 2021 +Elapsed time: 00h:18m:30s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 7144cf2f3e..72773919c8 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Wed Jan 13 10:08:19 MST 2021 +Tue Jan 19 13:35:06 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_67620/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -23,6 +23,12 @@ Checking test 001 fv3_ccpp_control 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 @@ -35,6 +41,12 @@ Checking test 001 fv3_ccpp_control 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 @@ -70,8 +82,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-20210106/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 +150,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-20210106/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,33 +218,21 @@ 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-20210106/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart 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 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 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 @@ -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-20210106/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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-20210106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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-20210106/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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-20210106/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc ............ALT CHECK......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 @@ -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-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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-20210106/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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-20210106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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-20210106/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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-20210106/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_lndp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lndp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67620/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1024,8 @@ Checking test 017 fv3_ccpp_multigases results .... 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_67620/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -1092,8 +1092,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... 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_67620/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 019 fv3_ccpp_stretched results .... 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_67620/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -1215,8 +1215,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... 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_67620/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1226,8 +1226,8 @@ Checking test 021 fv3_ccpp_regional_control results .... 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_67620/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1235,8 +1235,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... 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_67620/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... 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_67620/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -1257,8 +1257,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... 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_67620/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 025 fv3_ccpp_control_debug results .... 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_67620/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -1307,8 +1307,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... 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_67620/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,8 +1355,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... 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_67620/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -1403,8 +1403,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... 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_67620/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -1451,8 +1451,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... 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_67620/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1499,8 +1499,8 @@ Checking test 030 fv3_ccpp_csawmg results .... 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_67620/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1547,8 +1547,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... 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_67620/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1595,8 +1595,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... 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_67620/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -1643,8 +1643,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... 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_67620/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -1695,8 +1695,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... 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_67620/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1749,8 +1749,8 @@ Checking test 035 fv3_ccpp_cpt results .... 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_67620/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_gsd results .... 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_67620/fv3_ccpp_rap_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rap_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_rap results .... 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_67620/fv3_ccpp_hrrr_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_hrrr_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 038 fv3_ccpp_hrrr results .... 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_67620/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2045,8 +2045,8 @@ Checking test 039 fv3_ccpp_thompson results .... 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_67620/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -2113,8 +2113,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... 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_67620/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -2181,8 +2181,8 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... 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_67620/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -2249,8 +2249,8 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... 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_67620/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -2329,8 +2329,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta results .... 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_67620/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -2379,8 +2379,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... 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_67620/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -2447,8 +2447,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... 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_67620/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -2515,8 +2515,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... 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_67620/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -2583,8 +2583,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... 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_67620/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -2645,8 +2645,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... 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_67620/fv3_ccpp_gocart_clm_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -2693,8 +2693,8 @@ Checking test 049 fv3_ccpp_gocart_clm results .... 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_67620/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -2761,8 +2761,8 @@ Checking test 050 fv3_ccpp_gfs_v16beta_flake results .... 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_67620/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -2829,8 +2829,8 @@ Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... 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_67620/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -2847,8 +2847,8 @@ Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... 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_67620/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -2915,8 +2915,8 @@ Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... 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_67620/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -2983,8 +2983,8 @@ Checking test 054 fv3_ccpp_gfs_v16beta_debug results .... 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_67620/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -3051,8 +3051,8 @@ Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... 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_67620/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -3119,8 +3119,8 @@ Checking test 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... 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_67620/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -3187,8 +3187,8 @@ Checking test 057 fv3_ccpp_gsd_debug results .... 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_67620/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -3255,8 +3255,8 @@ Checking test 058 fv3_ccpp_gsd_diag3d_debug results .... 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_67620/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -3323,8 +3323,8 @@ Checking test 059 fv3_ccpp_thompson_debug results .... 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_67620/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -3391,8 +3391,8 @@ Checking test 060 fv3_ccpp_thompson_no_aero_debug results .... 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_67620/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -3459,8 +3459,8 @@ Checking test 061 fv3_ccpp_rrfs_v1beta_debug results .... 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_67620/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -3527,8 +3527,8 @@ Checking test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... 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_67620/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -3545,8 +3545,8 @@ Checking test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... 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_67620/cpld_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_control_prod Checking test 064 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3598,8 +3598,8 @@ Checking test 064 cpld_control results .... 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_67620/cpld_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restart_prod Checking test 065 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3651,8 +3651,8 @@ Checking test 065 cpld_restart results .... 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_67620/cpld_controlfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_controlfrac_prod Checking test 066 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3704,8 +3704,8 @@ Checking test 066 cpld_controlfrac results .... 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_67620/cpld_restartfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restartfrac_prod Checking test 067 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3757,8 +3757,8 @@ Checking test 067 cpld_restartfrac results .... 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_67620/cpld_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_2threads_prod Checking test 068 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3810,8 +3810,8 @@ Checking test 068 cpld_2threads results .... 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_67620/cpld_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_decomp_prod Checking test 069 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3863,8 +3863,8 @@ Checking test 069 cpld_decomp results .... 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_67620/cpld_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_satmedmf_prod Checking test 070 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3916,8 +3916,8 @@ Checking test 070 cpld_satmedmf results .... 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_67620/cpld_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_ca_prod Checking test 071 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3969,8 +3969,8 @@ Checking test 071 cpld_ca results .... 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_67620/cpld_control_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_control_c192_prod Checking test 072 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4022,8 +4022,8 @@ Checking test 072 cpld_control_c192 results .... 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_67620/cpld_restart_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restart_c192_prod Checking test 073 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4075,8 +4075,8 @@ Checking test 073 cpld_restart_c192 results .... 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_67620/cpld_controlfrac_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_controlfrac_c192_prod Checking test 074 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4128,8 +4128,8 @@ Checking test 074 cpld_controlfrac_c192 results .... 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_67620/cpld_restartfrac_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restartfrac_c192_prod Checking test 075 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4181,8 +4181,8 @@ Checking test 075 cpld_restartfrac_c192 results .... 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_67620/cpld_control_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_control_c384_prod Checking test 076 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4237,8 +4237,8 @@ Checking test 076 cpld_control_c384 results .... 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_67620/cpld_restart_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restart_c384_prod Checking test 077 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4293,8 +4293,8 @@ Checking test 077 cpld_restart_c384 results .... 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_67620/cpld_controlfrac_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_controlfrac_c384_prod Checking test 078 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4349,8 +4349,8 @@ Checking test 078 cpld_controlfrac_c384 results .... 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_67620/cpld_restartfrac_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restartfrac_c384_prod Checking test 079 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4405,8 +4405,8 @@ Checking test 079 cpld_restartfrac_c384 results .... 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_67620/cpld_bmark_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_bmark_prod Checking test 080 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4461,8 +4461,8 @@ Checking test 080 cpld_bmark results .... 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_67620/cpld_restart_bmark_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restart_bmark_prod Checking test 081 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4517,8 +4517,8 @@ Checking test 081 cpld_restart_bmark results .... 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_67620/cpld_bmarkfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_bmarkfrac_prod Checking test 082 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4573,8 +4573,8 @@ Checking test 082 cpld_bmarkfrac results .... 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_67620/cpld_restart_bmarkfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restart_bmarkfrac_prod Checking test 083 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4629,8 +4629,8 @@ Checking test 083 cpld_restart_bmarkfrac results .... 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_67620/cpld_bmarkfrac_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_bmarkfrac_v16_prod Checking test 084 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4685,8 +4685,8 @@ Checking test 084 cpld_bmarkfrac_v16 results .... 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_67620/cpld_restart_bmarkfrac_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restart_bmarkfrac_v16_prod Checking test 085 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4741,8 +4741,8 @@ Checking test 085 cpld_restart_bmarkfrac_v16 results .... 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_67620/cpld_bmark_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_bmark_wave_prod Checking test 086 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4800,8 +4800,8 @@ Checking test 086 cpld_bmark_wave results .... 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_67620/cpld_bmarkfrac_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_bmarkfrac_wave_prod Checking test 087 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4859,8 +4859,8 @@ Checking test 087 cpld_bmarkfrac_wave results .... 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_67620/cpld_bmarkfrac_wave_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_bmarkfrac_wave_v16_prod Checking test 088 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4918,8 +4918,8 @@ Checking test 088 cpld_bmarkfrac_wave_v16 results .... 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_67620/cpld_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_debug_prod Checking test 089 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4971,8 +4971,8 @@ Checking test 089 cpld_debug results .... 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_67620/cpld_debugfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_debugfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_debugfrac_prod Checking test 090 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5024,8 +5024,8 @@ Checking test 090 cpld_debugfrac results .... 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_67620/datm_control_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -5033,8 +5033,8 @@ Checking test 091 datm_control_cfsr results .... 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_67620/datm_restart_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -5042,8 +5042,8 @@ Checking test 092 datm_restart_cfsr results .... 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_67620/datm_control_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -5051,8 +5051,8 @@ Checking test 093 datm_control_gefs results .... 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_67620/datm_bulk_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -5060,8 +5060,8 @@ Checking test 094 datm_bulk_cfsr results .... 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_67620/datm_bulk_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 @@ -5069,8 +5069,8 @@ Checking test 095 datm_bulk_gefs results .... 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_67620/datm_mx025_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/datm_mx025_cfsr Checking test 096 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5081,8 +5081,8 @@ Checking test 096 datm_mx025_cfsr results .... 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_67620/datm_mx025_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/datm_mx025_gefs Checking test 097 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5093,8 +5093,8 @@ Checking test 097 datm_mx025_gefs results .... 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_67620/datm_debug_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/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 -Wed Jan 13 11:34:05 MST 2021 -Elapsed time: 01h:25m:47s. Have a nice day! +Tue Jan 19 15:08:10 MST 2021 +Elapsed time: 01h:33m:05s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index f6888aac65..afe35c6f3b 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Wed Jan 13 12:05:25 EST 2021 +Tue Jan 19 15:28:35 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_41069/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -23,6 +23,12 @@ Checking test 001 fv3_ccpp_control 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 @@ -35,6 +41,12 @@ Checking test 001 fv3_ccpp_control 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 @@ -70,8 +82,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-20210106/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 +150,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-20210106/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,33 +218,21 @@ 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-20210106/INTEL/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart 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 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 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 @@ -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-20210106/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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-20210106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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-20210106/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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-20210106/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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-20210106/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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-20210106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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-20210106/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_41069/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 = /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_41069/fv3_ccpp_ca_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_ca_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 = /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_41069/fv3_ccpp_lndp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lndp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 = /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_41069/fv3_ccpp_iau_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_iau_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 = /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_41069/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 = /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_41069/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1024,8 @@ Checking test 017 fv3_ccpp_multigases results .... 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_41069/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -1092,8 +1092,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... 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_41069/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 019 fv3_ccpp_stretched results .... 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_41069/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -1215,8 +1215,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... 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_41069/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1226,8 +1226,8 @@ Checking test 021 fv3_ccpp_regional_control results .... 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_41069/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1235,8 +1235,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... 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_41069/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1246,19 +1246,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... 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_41069/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK 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_41069/fv3_ccpp_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 025 fv3_ccpp_control_debug results .... 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_41069/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -1307,8 +1307,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... 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_41069/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,8 +1355,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... 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_41069/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -1403,8 +1403,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... 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_41069/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -1451,8 +1451,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... 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_41069/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1499,8 +1499,8 @@ Checking test 030 fv3_ccpp_csawmg results .... 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_41069/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1547,8 +1547,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... 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_41069/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1595,8 +1595,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... 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_41069/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -1643,8 +1643,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... 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_41069/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -1695,8 +1695,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... 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_41069/fv3_ccpp_cpt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1749,8 +1749,8 @@ Checking test 035 fv3_ccpp_cpt results .... 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_41069/fv3_ccpp_gsd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_gsd results .... 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_41069/fv3_ccpp_rap_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rap_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_rap results .... 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_41069/fv3_ccpp_hrrr_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_hrrr_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 038 fv3_ccpp_hrrr results .... 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_41069/fv3_ccpp_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2045,8 +2045,8 @@ Checking test 039 fv3_ccpp_thompson results .... 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_41069/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -2113,8 +2113,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... 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_41069/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -2181,8 +2181,8 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... 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_41069/fv3_ccpp_gfs_v15p2_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -2249,8 +2249,8 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... 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_41069/fv3_ccpp_gfs_v16beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -2329,8 +2329,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta results .... 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_41069/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -2379,8 +2379,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... 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_41069/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -2447,8 +2447,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... 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_41069/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -2515,8 +2515,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... 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_41069/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -2583,8 +2583,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... 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_41069/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -2645,8 +2645,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... 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_41069/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -2693,8 +2693,8 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... 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_41069/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -2741,8 +2741,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... 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_41069/fv3_ccpp_gocart_clm_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -2789,8 +2789,8 @@ Checking test 051 fv3_ccpp_gocart_clm results .... 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_41069/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -2857,8 +2857,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_flake results .... 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_41069/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -2925,8 +2925,8 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... 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_41069/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -2943,8 +2943,8 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... 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_41069/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -3011,8 +3011,8 @@ Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... 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_41069/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -3079,8 +3079,8 @@ Checking test 056 fv3_ccpp_gfs_v16beta_debug results .... 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_41069/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -3147,8 +3147,8 @@ Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... 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_41069/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -3215,8 +3215,8 @@ Checking test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... 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_41069/fv3_ccpp_gsd_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -3283,8 +3283,8 @@ Checking test 059 fv3_ccpp_gsd_debug results .... 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_41069/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -3351,8 +3351,8 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... 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_41069/fv3_ccpp_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -3419,8 +3419,8 @@ Checking test 061 fv3_ccpp_thompson_debug results .... 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_41069/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -3487,8 +3487,8 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... 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_41069/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -3555,8 +3555,8 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... 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_41069/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 @@ -3623,8 +3623,8 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... 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_41069/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/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 -Wed Jan 13 12:55:22 EST 2021 -Elapsed time: 00h:49m:59s. Have a nice day! +Tue Jan 19 16:17:34 EST 2021 +Elapsed time: 00h:49m:00s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 9849f59f3c..b8df6fa0ef 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Wed Jan 13 22:35:16 UTC 2021 +Wed Jan 20 04:15:51 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_114909/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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-20210106/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_114909/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/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 23:59:43 UTC 2021 -Elapsed time: 01h:24m:28s. Have a nice day! +Wed Jan 20 04:41:10 UTC 2021 +Elapsed time: 00h:25m:20s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 09bc946e3e..c5c1698940 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Wed Jan 13 22:35:12 UTC 2021 +Tue Jan 19 15:52:05 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_50103/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -23,6 +23,12 @@ Checking test 001 fv3_ccpp_control 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 @@ -35,6 +41,12 @@ Checking test 001 fv3_ccpp_control 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 @@ -70,8 +82,8 @@ Checking test 001 fv3_ccpp_control results .... 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_50103/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 +150,8 @@ Checking test 002 fv3_ccpp_decomp results .... 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_50103/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,33 +218,21 @@ Checking test 003 fv3_ccpp_2threads results .... 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_50103/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart 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 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 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 @@ -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-20210106/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 ............ALT CHECK......OK + Comparing phyf000.nc .........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-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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-20210106/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_50103/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -2792,8 +2792,8 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... 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_50103/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -2840,8 +2840,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... 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_50103/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -2888,8 +2888,8 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... 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_50103/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -2936,8 +2936,8 @@ Checking test 054 fv3_ccpp_gocart_clm results .... 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_50103/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -3004,8 +3004,8 @@ Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... 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_50103/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -3072,8 +3072,8 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... 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_50103/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -3090,8 +3090,8 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... 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_50103/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -3158,8 +3158,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... 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_50103/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -3226,8 +3226,8 @@ Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... 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_50103/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -3294,8 +3294,8 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... 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_50103/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -3362,8 +3362,8 @@ Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... 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_50103/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -3430,8 +3430,8 @@ Checking test 062 fv3_ccpp_gsd_debug results .... 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_50103/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -3498,8 +3498,8 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... 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_50103/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -3566,8 +3566,8 @@ Checking test 064 fv3_ccpp_thompson_debug results .... 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_50103/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -3634,8 +3634,8 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... 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_50103/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -3702,8 +3702,8 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... 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_50103/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -3770,8 +3770,8 @@ Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... 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_50103/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -3788,8 +3788,8 @@ Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... 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_50103/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3841,8 +3841,8 @@ Checking test 069 cpld_control results .... 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_50103/cpld_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3894,8 +3894,8 @@ Checking test 070 cpld_restart results .... 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_50103/cpld_controlfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3947,8 +3947,8 @@ Checking test 071 cpld_controlfrac results .... 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_50103/cpld_restartfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4000,8 +4000,8 @@ Checking test 072 cpld_restartfrac results .... 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_50103/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4053,8 +4053,8 @@ Checking test 073 cpld_2threads results .... 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_50103/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4106,8 +4106,8 @@ Checking test 074 cpld_decomp results .... 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_50103/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4159,8 +4159,8 @@ Checking test 075 cpld_satmedmf results .... 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_50103/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4212,8 +4212,8 @@ Checking test 076 cpld_ca results .... 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_50103/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4265,8 +4265,8 @@ Checking test 077 cpld_control_c192 results .... 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_50103/cpld_restart_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4318,8 +4318,8 @@ Checking test 078 cpld_restart_c192 results .... 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_50103/cpld_controlfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4371,8 +4371,8 @@ Checking test 079 cpld_controlfrac_c192 results .... 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_50103/cpld_restartfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4424,8 +4424,8 @@ Checking test 080 cpld_restartfrac_c192 results .... 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_50103/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4480,8 +4480,8 @@ Checking test 081 cpld_control_c384 results .... 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_50103/cpld_restart_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4536,8 +4536,8 @@ Checking test 082 cpld_restart_c384 results .... 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_50103/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4592,8 +4592,8 @@ Checking test 083 cpld_controlfrac_c384 results .... 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_50103/cpld_restartfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4648,8 +4648,8 @@ Checking test 084 cpld_restartfrac_c384 results .... 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_50103/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4704,8 +4704,8 @@ Checking test 085 cpld_bmark results .... 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_50103/cpld_restart_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4760,8 +4760,8 @@ Checking test 086 cpld_restart_bmark results .... 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_50103/cpld_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4816,8 +4816,8 @@ Checking test 087 cpld_bmarkfrac results .... 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_50103/cpld_restart_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4872,8 +4872,8 @@ Checking test 088 cpld_restart_bmarkfrac results .... 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_50103/cpld_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4928,8 +4928,8 @@ Checking test 089 cpld_bmarkfrac_v16 results .... 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_50103/cpld_restart_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4984,8 +4984,8 @@ Checking test 090 cpld_restart_bmarkfrac_v16 results .... 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_50103/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5043,8 +5043,8 @@ Checking test 091 cpld_bmark_wave results .... 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_50103/cpld_bmarkfrac_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5102,8 +5102,8 @@ Checking test 092 cpld_bmarkfrac_wave results .... 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_50103/cpld_bmarkfrac_wave_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5161,8 +5161,8 @@ Checking test 093 cpld_bmarkfrac_wave_v16 results .... 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_50103/cpld_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_debug_prod Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5214,8 +5214,8 @@ Checking test 094 cpld_debug results .... 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_50103/cpld_debugfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_debugfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_debugfrac_prod Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5267,8 +5267,8 @@ Checking test 095 cpld_debugfrac results .... 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_50103/datm_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -5276,8 +5276,8 @@ Checking test 096 datm_control_cfsr results .... 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_50103/datm_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -5285,8 +5285,8 @@ Checking test 097 datm_restart_cfsr results .... 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_50103/datm_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -5294,8 +5294,8 @@ Checking test 098 datm_control_gefs results .... 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_50103/datm_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -5303,8 +5303,8 @@ Checking test 099 datm_bulk_cfsr results .... 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_50103/datm_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 @@ -5312,8 +5312,8 @@ Checking test 100 datm_bulk_gefs results .... 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_50103/datm_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5324,8 +5324,8 @@ Checking test 101 datm_mx025_cfsr results .... 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_50103/datm_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5336,8 +5336,8 @@ Checking test 102 datm_mx025_gefs results .... 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_50103/datm_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/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 -Thu Jan 14 00:38:02 UTC 2021 -Elapsed time: 02h:02m:51s. Have a nice day! +Tue Jan 19 16:55:03 UTC 2021 +Elapsed time: 01h:02m:59s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 3d628ccdb8..c72a93a68f 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Wed Jan 13 16:59:56 GMT 2021 +Tue Jan 19 20:34:44 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_37828/fv3_ccpp_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -23,6 +23,12 @@ Checking test 001 fv3_ccpp_control 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 @@ -35,6 +41,12 @@ Checking test 001 fv3_ccpp_control 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 @@ -70,8 +82,8 @@ Checking test 001 fv3_ccpp_control results .... 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_37828/fv3_ccpp_decomp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -138,8 +150,8 @@ Checking test 002 fv3_ccpp_decomp results .... 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_37828/fv3_ccpp_2threads_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,33 +218,21 @@ Checking test 003 fv3_ccpp_2threads results .... 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_37828/fv3_ccpp_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart 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 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 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 @@ -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-20210106/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_read_inc_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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-20210106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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-20210106/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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-20210106/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 ............ALT CHECK......OK + Comparing phyf024.nc .........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 @@ -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-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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-20210106/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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-20210106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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-20210106/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_37828/fv3_ccpp_stochy_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 = /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_37828/fv3_ccpp_ca_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_ca_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 = /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_37828/fv3_ccpp_lndp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lndp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 = /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_37828/fv3_ccpp_iau_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 = /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_37828/fv3_ccpp_lheatstrg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 = /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_37828/fv3_ccpp_multigases_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1024,8 @@ Checking test 017 fv3_ccpp_multigases results .... 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_37828/fv3_ccpp_control_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -1092,8 +1092,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... 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_37828/fv3_ccpp_stretched_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 019 fv3_ccpp_stretched results .... 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_37828/fv3_ccpp_stretched_nest_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -1215,8 +1215,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... 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_37828/fv3_ccpp_regional_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1226,8 +1226,8 @@ Checking test 021 fv3_ccpp_regional_control results .... 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_37828/fv3_ccpp_regional_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1235,8 +1235,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... 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_37828/fv3_ccpp_regional_quilt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... 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_37828/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -1257,8 +1257,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... 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_37828/fv3_ccpp_control_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 025 fv3_ccpp_control_debug results .... 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_37828/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -1307,8 +1307,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... 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_37828/fv3_ccpp_gfdlmp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,8 +1355,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... 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_37828/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -1403,8 +1403,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... 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_37828/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -1451,8 +1451,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... 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_37828/fv3_ccpp_csawmg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1499,8 +1499,8 @@ Checking test 030 fv3_ccpp_csawmg results .... 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_37828/fv3_ccpp_satmedmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1547,8 +1547,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... 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_37828/fv3_ccpp_satmedmfq_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1595,8 +1595,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... 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_37828/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -1643,8 +1643,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... 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_37828/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -1695,8 +1695,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... 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_37828/fv3_ccpp_cpt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1749,8 +1749,8 @@ Checking test 035 fv3_ccpp_cpt results .... 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_37828/fv3_ccpp_gsd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_gsd results .... 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_37828/fv3_ccpp_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_thompson results .... 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_37828/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -1977,8 +1977,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... 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_37828/fv3_ccpp_gfs_v15p2_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -2045,8 +2045,8 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... 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_37828/fv3_ccpp_gfs_v16beta_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -2125,8 +2125,8 @@ Checking test 040 fv3_ccpp_gfs_v16beta results .... 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_37828/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -2175,8 +2175,8 @@ Checking test 041 fv3_ccpp_gfs_v16beta_restart results .... 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_37828/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -2243,8 +2243,8 @@ Checking test 042 fv3_ccpp_gfs_v16beta_stochy results .... 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_37828/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -2311,8 +2311,8 @@ Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... 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_37828/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -2379,8 +2379,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... 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_37828/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -2441,8 +2441,8 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... 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_37828/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -2489,8 +2489,8 @@ Checking test 046 fv3_ccpp_gfsv16_csawmg results .... 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_37828/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -2537,8 +2537,8 @@ Checking test 047 fv3_ccpp_gfsv16_csawmgt results .... 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_37828/fv3_ccpp_gocart_clm_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -2585,8 +2585,8 @@ Checking test 048 fv3_ccpp_gocart_clm results .... 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_37828/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -2653,8 +2653,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_flake results .... 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_37828/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -2721,8 +2721,8 @@ Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson results .... 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_37828/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -2739,8 +2739,8 @@ Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... 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_37828/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -2807,8 +2807,8 @@ Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... 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_37828/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -2875,8 +2875,8 @@ Checking test 053 fv3_ccpp_gfs_v16beta_debug results .... 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_37828/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -2943,8 +2943,8 @@ Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... 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_37828/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -3011,8 +3011,8 @@ Checking test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... 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_37828/fv3_ccpp_gsd_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -3079,8 +3079,8 @@ Checking test 056 fv3_ccpp_gsd_debug results .... 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_37828/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -3147,8 +3147,8 @@ Checking test 057 fv3_ccpp_gsd_diag3d_debug results .... 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_37828/fv3_ccpp_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -3215,8 +3215,8 @@ Checking test 058 fv3_ccpp_thompson_debug results .... 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_37828/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -3283,8 +3283,8 @@ Checking test 059 fv3_ccpp_thompson_no_aero_debug results .... 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_37828/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -3351,8 +3351,8 @@ Checking test 060 fv3_ccpp_rrfs_v1beta_debug results .... 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_37828/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 @@ -3419,8 +3419,8 @@ Checking test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... 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_37828/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/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 -Wed Jan 13 19:30:14 GMT 2021 -Elapsed time: 02h:30m:19s. Have a nice day! +Tue Jan 19 22:31:15 GMT 2021 +Elapsed time: 01h:56m:31s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 7d31312a0f..eed8786b48 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Wed Jan 13 10:59:03 CST 2021 +Tue Jan 19 11:06:40 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -23,6 +23,12 @@ Checking test 001 fv3_ccpp_control 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 @@ -35,6 +41,12 @@ Checking test 001 fv3_ccpp_control 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 @@ -70,8 +82,8 @@ Checking test 001 fv3_ccpp_control results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 +150,8 @@ Checking test 002 fv3_ccpp_decomp results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,33 +218,21 @@ Checking test 003 fv3_ccpp_2threads results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart 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 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 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 @@ -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-20210106/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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-20210106/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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-20210106/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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-20210106/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 ............ALT CHECK......OK + Comparing phyf000.nc .........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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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-20210106/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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-20210106/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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-20210106/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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-20210106/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_lndp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_lheatstrg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1393,19 +1393,19 @@ Checking test 026 fv3_ccpp_regional_quilt results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 .........OK + Comparing dynf024.nc ............ALT CHECK......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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_satmedmfq_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_rap_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_hrrr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -2792,8 +2792,8 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -2840,8 +2840,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -2888,8 +2888,8 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -2936,8 +2936,8 @@ Checking test 054 fv3_ccpp_gocart_clm results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -3004,8 +3004,8 @@ Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -3072,8 +3072,8 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -3090,8 +3090,8 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -3158,8 +3158,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -3226,8 +3226,8 @@ Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -3294,8 +3294,8 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -3362,8 +3362,8 @@ Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -3430,8 +3430,8 @@ Checking test 062 fv3_ccpp_gsd_debug results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -3498,8 +3498,8 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -3566,8 +3566,8 @@ Checking test 064 fv3_ccpp_thompson_debug results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -3634,8 +3634,8 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -3702,8 +3702,8 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -3770,8 +3770,8 @@ Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -3788,8 +3788,8 @@ Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3841,8 +3841,8 @@ Checking test 069 cpld_control results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3894,8 +3894,8 @@ Checking test 070 cpld_restart results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_controlfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3947,8 +3947,8 @@ Checking test 071 cpld_controlfrac results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restartfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4000,8 +4000,8 @@ Checking test 072 cpld_restartfrac results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4053,8 +4053,8 @@ Checking test 073 cpld_2threads results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4106,8 +4106,8 @@ Checking test 074 cpld_decomp results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4159,8 +4159,8 @@ Checking test 075 cpld_satmedmf results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4212,8 +4212,8 @@ Checking test 076 cpld_ca results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4265,8 +4265,8 @@ Checking test 077 cpld_control_c192 results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restart_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4318,8 +4318,8 @@ Checking test 078 cpld_restart_c192 results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_controlfrac_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4371,8 +4371,8 @@ Checking test 079 cpld_controlfrac_c192 results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restartfrac_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4424,8 +4424,8 @@ Checking test 080 cpld_restartfrac_c192 results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4480,8 +4480,8 @@ Checking test 081 cpld_control_c384 results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restart_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4536,8 +4536,8 @@ Checking test 082 cpld_restart_c384 results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4592,8 +4592,8 @@ Checking test 083 cpld_controlfrac_c384 results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restartfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4648,8 +4648,8 @@ Checking test 084 cpld_restartfrac_c384 results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4704,8 +4704,8 @@ Checking test 085 cpld_bmark results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restart_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4760,8 +4760,8 @@ Checking test 086 cpld_restart_bmark results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_bmarkfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4816,8 +4816,8 @@ Checking test 087 cpld_bmarkfrac results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restart_bmarkfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4872,8 +4872,8 @@ Checking test 088 cpld_restart_bmarkfrac results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_bmarkfrac_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4928,8 +4928,8 @@ Checking test 089 cpld_bmarkfrac_v16 results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_restart_bmarkfrac_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4984,8 +4984,8 @@ Checking test 090 cpld_restart_bmarkfrac_v16 results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5043,8 +5043,8 @@ Checking test 091 cpld_bmark_wave results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_bmarkfrac_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5102,8 +5102,8 @@ Checking test 092 cpld_bmarkfrac_wave results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_bmarkfrac_wave_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5161,8 +5161,8 @@ Checking test 093 cpld_bmarkfrac_wave_v16 results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_debug_prod Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5214,8 +5214,8 @@ Checking test 094 cpld_debug results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/cpld_debugfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_debugfrac_prod Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5267,8 +5267,8 @@ Checking test 095 cpld_debugfrac results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/datm_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -5276,8 +5276,8 @@ Checking test 096 datm_control_cfsr results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/datm_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -5285,8 +5285,8 @@ Checking test 097 datm_restart_cfsr results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/datm_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -5294,8 +5294,8 @@ Checking test 098 datm_control_gefs results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/datm_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -5303,8 +5303,8 @@ Checking test 099 datm_bulk_cfsr results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/datm_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 @@ -5312,8 +5312,8 @@ Checking test 100 datm_bulk_gefs results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/datm_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5324,8 +5324,8 @@ Checking test 101 datm_mx025_cfsr results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/datm_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5336,8 +5336,8 @@ Checking test 102 datm_mx025_gefs results .... 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/dheinzel/stmp/dheinzel/FV3_RT/rt_448930/datm_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/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 12:26:06 CST 2021 -Elapsed time: 01h:27m:03s. Have a nice day! +Tue Jan 19 12:48:55 CST 2021 +Elapsed time: 01h:42m:16s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 7c2cb62ba0..a7e577df23 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Wed Jan 13 17:15:10 UTC 2021 +Tue Jan 19 17:36:58 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_20336/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -23,6 +23,12 @@ Checking test 001 fv3_ccpp_control 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 @@ -35,6 +41,12 @@ Checking test 001 fv3_ccpp_control 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 @@ -70,8 +82,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-20210106/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 +150,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-20210106/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,33 +218,21 @@ 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-20210106/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart 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 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 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 @@ -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-20210106/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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-20210106/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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-20210106/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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-20210106/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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-20210106/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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-20210106/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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-20210106/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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-20210106/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_ca_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_ca_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_lndp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_lndp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20336/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1024,8 @@ Checking test 017 fv3_ccpp_multigases results .... 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_20336/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -1092,8 +1092,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... 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_20336/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 019 fv3_ccpp_stretched results .... 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_20336/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -1215,8 +1215,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... 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_20336/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1226,8 +1226,8 @@ Checking test 021 fv3_ccpp_regional_control results .... 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_20336/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1235,8 +1235,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... 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_20336/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... 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_20336/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -1257,8 +1257,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... 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_20336/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 025 fv3_ccpp_control_debug results .... 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_20336/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -1307,8 +1307,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... 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_20336/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,8 +1355,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... 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_20336/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -1403,8 +1403,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... 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_20336/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -1451,8 +1451,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... 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_20336/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1499,8 +1499,8 @@ Checking test 030 fv3_ccpp_csawmg results .... 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_20336/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1547,8 +1547,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... 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_20336/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1595,8 +1595,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... 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_20336/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -1643,8 +1643,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... 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_20336/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -1695,8 +1695,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... 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_20336/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1749,8 +1749,8 @@ Checking test 035 fv3_ccpp_cpt results .... 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_20336/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_gsd results .... 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_20336/fv3_ccpp_rap_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_rap_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_rap results .... 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_20336/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_hrrr_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 038 fv3_ccpp_hrrr results .... 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_20336/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2045,8 +2045,8 @@ Checking test 039 fv3_ccpp_thompson results .... 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_20336/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -2113,8 +2113,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... 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_20336/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -2181,8 +2181,8 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... 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_20336/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v15p2_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -2249,8 +2249,8 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... 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_20336/fv3_ccpp_gfs_v16beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -2329,8 +2329,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta results .... 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_20336/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -2379,8 +2379,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... 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_20336/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -2447,8 +2447,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... 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_20336/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -2515,8 +2515,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... 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_20336/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -2583,8 +2583,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... 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_20336/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -2645,8 +2645,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... 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_20336/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -2693,8 +2693,8 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... 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_20336/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -2741,8 +2741,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... 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_20336/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -2789,8 +2789,8 @@ Checking test 051 fv3_ccpp_gocart_clm results .... 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_20336/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -2857,8 +2857,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_flake results .... 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_20336/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -2925,8 +2925,8 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... 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_20336/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -2943,8 +2943,8 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... 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_20336/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -3011,8 +3011,8 @@ Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... 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_20336/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -3079,8 +3079,8 @@ Checking test 056 fv3_ccpp_gfs_v16beta_debug results .... 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_20336/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -3147,8 +3147,8 @@ Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... 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_20336/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -3215,8 +3215,8 @@ Checking test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... 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_20336/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -3283,8 +3283,8 @@ Checking test 059 fv3_ccpp_gsd_debug results .... 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_20336/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -3351,8 +3351,8 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... 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_20336/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -3419,8 +3419,8 @@ Checking test 061 fv3_ccpp_thompson_debug results .... 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_20336/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -3487,8 +3487,8 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... 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_20336/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -3555,8 +3555,8 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... 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_20336/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 @@ -3623,8 +3623,8 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... 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_20336/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/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 -Wed Jan 13 18:00:56 UTC 2021 -Elapsed time: 00h:45m:48s. Have a nice day! +Tue Jan 19 18:19:33 UTC 2021 +Elapsed time: 00h:42m:36s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 57f631d387..ecd11a672b 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Wed Jan 13 21:49:40 UTC 2021 +Tue Jan 19 22:06:09 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -23,6 +23,12 @@ Checking test 001 fv3_ccpp_control 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 @@ -35,6 +41,12 @@ Checking test 001 fv3_ccpp_control 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 @@ -70,8 +82,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-20210106/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 +150,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-20210106/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,33 +218,21 @@ 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-20210106/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart 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 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 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 @@ -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-20210106/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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-20210106/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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-20210106/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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-20210106/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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,8 +447,8 @@ 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 ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK Comparing dynf000.nc ............ALT CHECK......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 = /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_188737/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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-20210106/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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-20210106/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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-20210106/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_ca_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_lndp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_lndp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 = /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_188737/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1122,8 +1122,8 @@ Checking test 019 fv3_ccpp_multigases results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -1190,8 +1190,8 @@ Checking test 020 fv3_ccpp_control_32bit results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 021 fv3_ccpp_stretched results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -1313,8 +1313,8 @@ Checking test 022 fv3_ccpp_stretched_nest results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1324,8 +1324,8 @@ Checking test 023 fv3_ccpp_regional_control results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1333,8 +1333,8 @@ Checking test 024 fv3_ccpp_regional_restart results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1344,19 +1344,19 @@ Checking test 025 fv3_ccpp_regional_quilt results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 dynf000.nc ............ALT CHECK......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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1385,8 +1385,8 @@ Checking test 027 fv3_ccpp_control_debug results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -1405,8 +1405,8 @@ Checking test 028 fv3_ccpp_stretched_nest_debug results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1453,8 +1453,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -1501,8 +1501,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -1549,8 +1549,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1597,8 +1597,8 @@ Checking test 032 fv3_ccpp_csawmg results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1645,8 +1645,8 @@ Checking test 033 fv3_ccpp_satmedmf results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_satmedmfq_prod Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1693,8 +1693,8 @@ Checking test 034 fv3_ccpp_satmedmfq results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -1741,8 +1741,8 @@ Checking test 035 fv3_ccpp_gfdlmp_32bit results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -1793,8 +1793,8 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_cpt_prod Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1847,8 +1847,8 @@ Checking test 037 fv3_ccpp_cpt results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gsd_prod Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1939,8 +1939,8 @@ Checking test 038 fv3_ccpp_gsd results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_rap_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_rap_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_rap_prod Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2007,8 +2007,8 @@ Checking test 039 fv3_ccpp_rap results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_hrrr_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_hrrr_prod Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2075,8 +2075,8 @@ Checking test 040 fv3_ccpp_hrrr results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_thompson_prod Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2143,8 +2143,8 @@ Checking test 041 fv3_ccpp_thompson results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -2211,8 +2211,8 @@ Checking test 042 fv3_ccpp_thompson_no_aero results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -2279,8 +2279,8 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v15p2_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -2347,8 +2347,8 @@ Checking test 044 fv3_ccpp_gfs_v15p2 results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v16beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -2427,8 +2427,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -2477,8 +2477,8 @@ Checking test 046 fv3_ccpp_gfs_v16beta_restart results .... 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_188737/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -2545,8 +2545,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_stochy results .... 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_188737/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -2613,8 +2613,8 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... 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_188737/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -2681,8 +2681,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -2743,8 +2743,8 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -2791,8 +2791,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmg results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -2839,8 +2839,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -2887,8 +2887,8 @@ Checking test 053 fv3_ccpp_gocart_clm results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -2955,8 +2955,8 @@ Checking test 054 fv3_ccpp_gfs_v16beta_flake results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -3023,8 +3023,8 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -3041,8 +3041,8 @@ Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -3109,8 +3109,8 @@ Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -3177,8 +3177,8 @@ Checking test 058 fv3_ccpp_gfs_v16beta_debug results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -3245,8 +3245,8 @@ Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -3313,8 +3313,8 @@ Checking test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -3381,8 +3381,8 @@ Checking test 061 fv3_ccpp_gsd_debug results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -3449,8 +3449,8 @@ Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -3517,8 +3517,8 @@ Checking test 063 fv3_ccpp_thompson_debug results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -3585,8 +3585,8 @@ Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -3653,8 +3653,8 @@ Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -3721,8 +3721,8 @@ Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... 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/Dusan.Jovic/FV3_RT/rt_188737/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -3739,8 +3739,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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210106/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_188737/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_control_prod Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3792,8 +3792,8 @@ Checking test 068 cpld_control results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restart_prod Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3845,8 +3845,8 @@ Checking test 069 cpld_restart results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_controlfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_controlfrac_prod Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3898,8 +3898,8 @@ Checking test 070 cpld_controlfrac results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_restartfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restartfrac_prod Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3951,8 +3951,8 @@ Checking test 071 cpld_restartfrac results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_2threads_prod Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4004,8 +4004,8 @@ Checking test 072 cpld_2threads results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_decomp_prod Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4057,8 +4057,8 @@ Checking test 073 cpld_decomp results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_satmedmf_prod Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4110,8 +4110,8 @@ Checking test 074 cpld_satmedmf results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_ca_prod Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4163,8 +4163,8 @@ Checking test 075 cpld_ca results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_control_c192_prod Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4216,8 +4216,8 @@ Checking test 076 cpld_control_c192 results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_restart_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restart_c192_prod Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4269,8 +4269,8 @@ Checking test 077 cpld_restart_c192 results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_controlfrac_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_controlfrac_c192_prod Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4322,8 +4322,8 @@ Checking test 078 cpld_controlfrac_c192 results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_restartfrac_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restartfrac_c192_prod Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4375,8 +4375,8 @@ Checking test 079 cpld_restartfrac_c192 results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_control_c384_prod Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4431,8 +4431,8 @@ Checking test 080 cpld_control_c384 results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_restart_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restart_c384_prod Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4487,8 +4487,8 @@ Checking test 081 cpld_restart_c384 results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_controlfrac_c384_prod Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4543,8 +4543,8 @@ Checking test 082 cpld_controlfrac_c384 results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_restartfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restartfrac_c384_prod Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4599,8 +4599,8 @@ Checking test 083 cpld_restartfrac_c384 results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_bmark_prod Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4655,8 +4655,8 @@ Checking test 084 cpld_bmark results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_restart_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restart_bmark_prod Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4711,8 +4711,8 @@ Checking test 085 cpld_restart_bmark results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_bmarkfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_bmarkfrac_prod Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4767,8 +4767,8 @@ Checking test 086 cpld_bmarkfrac results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_restart_bmarkfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restart_bmarkfrac_prod Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4823,8 +4823,8 @@ Checking test 087 cpld_restart_bmarkfrac results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_bmarkfrac_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_bmarkfrac_v16_prod Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4879,8 +4879,8 @@ Checking test 088 cpld_bmarkfrac_v16 results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_restart_bmarkfrac_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restart_bmarkfrac_v16_prod Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4935,8 +4935,8 @@ Checking test 089 cpld_restart_bmarkfrac_v16 results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_bmark_wave_prod Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4994,8 +4994,8 @@ Checking test 090 cpld_bmark_wave results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_bmarkfrac_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmarkfrac_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_bmarkfrac_wave_prod Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5053,8 +5053,8 @@ Checking test 091 cpld_bmarkfrac_wave results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_bmarkfrac_wave_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmarkfrac_wave_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_bmarkfrac_wave_v16_prod Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5112,8 +5112,8 @@ Checking test 092 cpld_bmarkfrac_wave_v16 results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_debug_prod Checking test 093 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5165,8 +5165,8 @@ Checking test 093 cpld_debug results .... 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/Dusan.Jovic/FV3_RT/rt_188737/cpld_debugfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_debugfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_debugfrac_prod Checking test 094 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5218,8 +5218,8 @@ Checking test 094 cpld_debugfrac results .... 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/Dusan.Jovic/FV3_RT/rt_188737/datm_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -5227,8 +5227,8 @@ Checking test 095 datm_control_cfsr results .... 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/Dusan.Jovic/FV3_RT/rt_188737/datm_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -5236,8 +5236,8 @@ Checking test 096 datm_restart_cfsr results .... 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/Dusan.Jovic/FV3_RT/rt_188737/datm_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -5245,8 +5245,8 @@ Checking test 097 datm_control_gefs results .... 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/Dusan.Jovic/FV3_RT/rt_188737/datm_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -5254,8 +5254,8 @@ Checking test 098 datm_bulk_cfsr results .... 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/Dusan.Jovic/FV3_RT/rt_188737/datm_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 @@ -5263,8 +5263,8 @@ Checking test 099 datm_bulk_gefs results .... 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/Dusan.Jovic/FV3_RT/rt_188737/datm_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/datm_mx025_cfsr Checking test 100 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5275,8 +5275,8 @@ Checking test 100 datm_mx025_cfsr results .... 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/Dusan.Jovic/FV3_RT/rt_188737/datm_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/datm_mx025_gefs Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5287,8 +5287,8 @@ Checking test 101 datm_mx025_gefs results .... 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/Dusan.Jovic/FV3_RT/rt_188737/datm_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/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 -Thu Jan 14 03:13:51 UTC 2021 -Elapsed time: 05h:24m:14s. Have a nice day! +Wed Jan 20 00:45:11 UTC 2021 +Elapsed time: 02h:39m:04s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 7490a2c292..1924c9f937 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -356,7 +356,7 @@ export NPY=97 export NPZ=64 export NPZP=65 export NSTF_NAME=2,1,1,0,5 -export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24 +export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48 export NFHOUT=3 export NFHMAX_HF=12 export NFHOUT_HF=1 diff --git a/tests/fv3_conf/ccpp_control_run.IN b/tests/fv3_conf/ccpp_control_run.IN index 31cea3831d..033d7e8925 100644 --- a/tests/fv3_conf/ccpp_control_run.IN +++ b/tests/fv3_conf/ccpp_control_run.IN @@ -2,9 +2,9 @@ rm -fr INPUT RESTART if [ $NPX = 97 ]; then inputdir=FV3_input_data elif [ $NPX = 193 ]; then - inputdir=FV3_input_data_c192 + inputdir=FV3_input_data192 elif [ $NPX = 385 ]; then - inputdir=FV3_input_data_c384 + inputdir=FV3_input_data384 elif [ $NPX = 769 ]; then inputdir=FV3_input_data_c768 fi @@ -17,22 +17,22 @@ if [ $WARM_START = .F. ]; then else mkdir INPUT RESTART - if [[ ${UNIT_TEST} == false ]]; then - cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT - else - cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT - rm -f INPUT/fv_core.res.* - rm -f INPUT/fv_srf_wnd.res.* - rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.* - rm -f INPUT/sfc_data.* - for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do - [ -e $RFILE ] || exit 1 - RFILE_OLD=$(basename $RFILE) - RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" - cp $RFILE INPUT/${RFILE_NEW} - done + rsync -arv ../fv3_ccpp_control${RT_SUFFIX}/RESTART/ INPUT/ + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* + cd INPUT + rename 20161004.000000. '' 20161004.000000.* + cp ../../fv3_ccpp_control${RT_SUFFIX}/INPUT/grid_spec.nc . + cp ../../fv3_ccpp_control${RT_SUFFIX}/INPUT/*_grid.tile*.nc . + cp ../../fv3_ccpp_control${RT_SUFFIX}/INPUT/oro_data.tile*.nc . + if [[ $IAU_INC_FILES != '' ]] || [[ $READ_INCREMENT = '.T.' ]]; then + cp ../../fv3_ccpp_control${RT_SUFFIX}/INPUT/fv3_increment.nc . fi + cd .. + fi cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . diff --git a/tests/parm/ccpp.gocart.nml.IN b/tests/parm/ccpp.gocart.nml.IN index 9c6ea71100..fc2d8e7655 100644 --- a/tests/parm/ccpp.gocart.nml.IN +++ b/tests/parm/ccpp.gocart.nml.IN @@ -272,7 +272,7 @@ FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN b/tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN index cca4a292d8..3a0900df95 100644 --- a/tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN +++ b/tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN @@ -215,7 +215,7 @@ FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' FNSMCC = 'global_soilmgldas.t126.384.190.grb' - FNMSKH = 'seaice_newland.grb' + FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' FNACNA = '' FNSNOA = '' diff --git a/tests/parm/ccpp_ca.nml.IN b/tests/parm/ccpp_ca.nml.IN index 5f825c56f3..ecba1d4616 100644 --- a/tests/parm/ccpp_ca.nml.IN +++ b/tests/parm/ccpp_ca.nml.IN @@ -233,7 +233,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_control.nml.IN b/tests/parm/ccpp_control.nml.IN index 02be1792c6..26c6bd740b 100644 --- a/tests/parm/ccpp_control.nml.IN +++ b/tests/parm/ccpp_control.nml.IN @@ -235,7 +235,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_cpt.nml.IN b/tests/parm/ccpp_cpt.nml.IN index 1ce6b91ffb..ccc61c8f06 100644 --- a/tests/parm/ccpp_cpt.nml.IN +++ b/tests/parm/ccpp_cpt.nml.IN @@ -287,7 +287,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_csawmg.nml.IN b/tests/parm/ccpp_csawmg.nml.IN index 931adad584..68c3688586 100644 --- a/tests/parm/ccpp_csawmg.nml.IN +++ b/tests/parm/ccpp_csawmg.nml.IN @@ -237,7 +237,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_csawmg3shoc127.nml.IN b/tests/parm/ccpp_csawmg3shoc127.nml.IN index 1805a4eca7..2f01b488f1 100644 --- a/tests/parm/ccpp_csawmg3shoc127.nml.IN +++ b/tests/parm/ccpp_csawmg3shoc127.nml.IN @@ -237,7 +237,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_csawmgshoc.nml.IN b/tests/parm/ccpp_csawmgshoc.nml.IN index 7c9063c693..472cbf4da4 100644 --- a/tests/parm/ccpp_csawmgshoc.nml.IN +++ b/tests/parm/ccpp_csawmgshoc.nml.IN @@ -236,7 +236,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN b/tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN index 998ee93401..5be2ac8a2f 100644 --- a/tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN +++ b/tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN @@ -217,7 +217,7 @@ fnalbc = 'C401.snowfree_albedo.tile7.nc' fnalbc2 = 'C401.facsf.tile7.nc' fnglac = 'global_glacier.2x2.grb' - fnmskh = 'seaice_newland.grb' + fnmskh = 'global_slmask.t1534.3072.1536.grb' fnmxic = 'global_maxice.2x2.grb' fnslpc = 'C401.slope_type.tile7.nc' fnsmcc = 'global_soilmgldas.t126.384.190.grb' diff --git a/tests/parm/ccpp_gfdlmp.nml.IN b/tests/parm/ccpp_gfdlmp.nml.IN index c70ff52454..dac3f57557 100644 --- a/tests/parm/ccpp_gfdlmp.nml.IN +++ b/tests/parm/ccpp_gfdlmp.nml.IN @@ -277,7 +277,7 @@ FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_gfsv16_csawmg.nml.IN b/tests/parm/ccpp_gfsv16_csawmg.nml.IN index 5591f9a27b..141507e7be 100644 --- a/tests/parm/ccpp_gfsv16_csawmg.nml.IN +++ b/tests/parm/ccpp_gfsv16_csawmg.nml.IN @@ -237,7 +237,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_gsd.nml.IN b/tests/parm/ccpp_gsd.nml.IN index 92623f50a9..fd7b2c3cde 100644 --- a/tests/parm/ccpp_gsd.nml.IN +++ b/tests/parm/ccpp_gsd.nml.IN @@ -270,7 +270,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_gsd_rrtmgp.nml.IN b/tests/parm/ccpp_gsd_rrtmgp.nml.IN index 699a4244a4..87e21d210e 100644 --- a/tests/parm/ccpp_gsd_rrtmgp.nml.IN +++ b/tests/parm/ccpp_gsd_rrtmgp.nml.IN @@ -275,7 +275,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_gsd_sar.nml.IN b/tests/parm/ccpp_gsd_sar.nml.IN index 39d40f8162..ee580caf96 100644 --- a/tests/parm/ccpp_gsd_sar.nml.IN +++ b/tests/parm/ccpp_gsd_sar.nml.IN @@ -250,7 +250,7 @@ FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_input_nest02.nml.IN b/tests/parm/ccpp_input_nest02.nml.IN index 3cb847c24a..0052e17e74 100644 --- a/tests/parm/ccpp_input_nest02.nml.IN +++ b/tests/parm/ccpp_input_nest02.nml.IN @@ -244,7 +244,7 @@ FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_lndp.nml.IN b/tests/parm/ccpp_lndp.nml.IN index 428be0fc23..96e70f20be 100644 --- a/tests/parm/ccpp_lndp.nml.IN +++ b/tests/parm/ccpp_lndp.nml.IN @@ -235,7 +235,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_multi_gases.nml.IN b/tests/parm/ccpp_multi_gases.nml.IN index 5125ba6493..66aaf44e3b 100644 --- a/tests/parm/ccpp_multi_gases.nml.IN +++ b/tests/parm/ccpp_multi_gases.nml.IN @@ -212,7 +212,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_regional.nml.IN b/tests/parm/ccpp_regional.nml.IN index 912b81df94..f3d822a143 100644 --- a/tests/parm/ccpp_regional.nml.IN +++ b/tests/parm/ccpp_regional.nml.IN @@ -232,7 +232,7 @@ FNZORC = "igbp" FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", FNSMCC = "global_soilmgldas.t1534.3072.1536.grb", - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_regional_c768.nml.IN b/tests/parm/ccpp_regional_c768.nml.IN index a7da51e57e..01fa4c98f7 100644 --- a/tests/parm/ccpp_regional_c768.nml.IN +++ b/tests/parm/ccpp_regional_c768.nml.IN @@ -206,7 +206,7 @@ FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_stretched-input.nml.IN b/tests/parm/ccpp_stretched-input.nml.IN index ff01ca775d..f1ed84a605 100644 --- a/tests/parm/ccpp_stretched-input.nml.IN +++ b/tests/parm/ccpp_stretched-input.nml.IN @@ -245,7 +245,7 @@ FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_stretched-nest-input.nml.IN b/tests/parm/ccpp_stretched-nest-input.nml.IN index dc788b2a6f..e6bc9be787 100644 --- a/tests/parm/ccpp_stretched-nest-input.nml.IN +++ b/tests/parm/ccpp_stretched-nest-input.nml.IN @@ -253,7 +253,7 @@ FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_v15p2_c96.nml.IN b/tests/parm/ccpp_v15p2_c96.nml.IN index afe5f03933..fbab3b32b6 100644 --- a/tests/parm/ccpp_v15p2_c96.nml.IN +++ b/tests/parm/ccpp_v15p2_c96.nml.IN @@ -233,7 +233,7 @@ FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' FNSMCC = 'global_soilmgldas.t126.384.190.grb' - FNMSKH = 'seaice_newland.grb' + FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' FNACNA = '' FNSNOA = '' diff --git a/tests/parm/ccpp_v15p2_c96_rrtmgp.nml.IN b/tests/parm/ccpp_v15p2_c96_rrtmgp.nml.IN index 0db38a0da4..a98ec352f7 100644 --- a/tests/parm/ccpp_v15p2_c96_rrtmgp.nml.IN +++ b/tests/parm/ccpp_v15p2_c96_rrtmgp.nml.IN @@ -243,7 +243,7 @@ FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' FNSMCC = 'global_soilmgldas.t126.384.190.grb' - FNMSKH = 'seaice_newland.grb' + FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' FNACNA = '' FNSNOA = '' diff --git a/tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN b/tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN index 524468a15e..76f58067e0 100644 --- a/tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN +++ b/tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN @@ -281,7 +281,7 @@ deflate_level=1 FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = 'seaice_newland.grb' + FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' FNACNA = '' FNSNOA = '' diff --git a/tests/parm/ccpp_v16beta_c96.nml.IN b/tests/parm/ccpp_v16beta_c96.nml.IN index d9e3c7269d..f4826d08d0 100644 --- a/tests/parm/ccpp_v16beta_c96.nml.IN +++ b/tests/parm/ccpp_v16beta_c96.nml.IN @@ -261,7 +261,7 @@ deflate_level=1 FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' FNSMCC = 'global_soilmgldas.t126.384.190.grb' - FNMSKH = 'seaice_newland.grb' + FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' FNACNA = '' FNSNOA = '' diff --git a/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN b/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN index 3dc87afba3..8426d354fe 100644 --- a/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN +++ b/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN @@ -271,7 +271,7 @@ deflate_level=1 FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' FNSMCC = 'global_soilmgldas.t126.384.190.grb' - FNMSKH = 'seaice_newland.grb' + FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' FNACNA = '' FNSNOA = '' diff --git a/tests/parm/ccpp_v16beta_flake_c96.nml.IN b/tests/parm/ccpp_v16beta_flake_c96.nml.IN index b7681eece7..d75e866ed9 100644 --- a/tests/parm/ccpp_v16beta_flake_c96.nml.IN +++ b/tests/parm/ccpp_v16beta_flake_c96.nml.IN @@ -261,7 +261,7 @@ deflate_level=1 FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' FNSMCC = 'global_soilmgldas.t126.384.190.grb' - FNMSKH = 'seaice_newland.grb' + FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' FNACNA = '' FNSNOA = '' diff --git a/tests/parm/cpt.nml.IN b/tests/parm/cpt.nml.IN index cffd0346b0..6f05ac8223 100644 --- a/tests/parm/cpt.nml.IN +++ b/tests/parm/cpt.nml.IN @@ -284,7 +284,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/csawmg.nml.IN b/tests/parm/csawmg.nml.IN index 40daa3f769..09b9ce71ce 100644 --- a/tests/parm/csawmg.nml.IN +++ b/tests/parm/csawmg.nml.IN @@ -234,7 +234,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/csawmg3shoc127.nml.IN b/tests/parm/csawmg3shoc127.nml.IN index c1c6afc666..4eff370829 100644 --- a/tests/parm/csawmg3shoc127.nml.IN +++ b/tests/parm/csawmg3shoc127.nml.IN @@ -234,7 +234,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/csawmgshoc.nml.IN b/tests/parm/csawmgshoc.nml.IN index dd7181538d..c6c44b1d2f 100644 --- a/tests/parm/csawmgshoc.nml.IN +++ b/tests/parm/csawmgshoc.nml.IN @@ -233,7 +233,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/fv3.gocart.nml.IN b/tests/parm/fv3.gocart.nml.IN deleted file mode 100644 index fb58915445..0000000000 --- a/tests/parm/fv3.gocart.nml.IN +++ /dev/null @@ -1,311 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = 97 - npy = 97 - ntiles = 6, - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 30 - nudge_qv = .T. - rf_fast = .F. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 1 - n_split = 8 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 1 - fv_sg_adj = 600 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 1. - do_sat_adj = .T. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - no_dycore = .false. - z_tracer = .T. -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - ldiag_ugwp = @[LDIAG_UGWP] - do_ugwp = @[DO_UGWP] - do_tofd = @[DO_TOFD] - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = @[IAER] - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - isatmedmf = 1 - lheatstrg = @[LHEATSTRG] - lgfdlmprad = @[LGFDLMPRAD] - effr_in = @[EFFR_IN] - random_clds = .false. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = @[LSM] - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - h2o_phys = @[H2O_PHYS] - nstf_name = @[NSTF_NAME] - cplflx = @[CPLFLX] - cplwav = @[CPLWAV] - xkzminv = 0.3 - xkzm_m = 1.0 - xkzm_h = 1.0 -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 300. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, - LANDICE = @[LANDICE] -/ -&nam_stochy -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/gfdlmp.nml.IN b/tests/parm/gfdlmp.nml.IN deleted file mode 100644 index f9eed249a6..0000000000 --- a/tests/parm/gfdlmp.nml.IN +++ /dev/null @@ -1,312 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = 97 - npy = 97 - ntiles = 6, - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 30 - nudge_qv = .T. - rf_fast = .F. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 1 - n_split = 8 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 1 - fv_sg_adj = 600 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 1. - do_sat_adj = .T. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - no_dycore = .false. - z_tracer = .T. -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - ldiag_ugwp = @[LDIAG_UGWP] - do_ugwp = @[DO_UGWP] - do_tofd = @[DO_TOFD] - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - lgfdlmprad = @[LGFDLMPRAD] - effr_in = @[EFFR_IN] - random_clds = .false. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = @[IMFSHALCNV] - imfdeepcnv = @[IMFDEEPCNV] - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = @[LSM] - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - h2o_phys = @[H2O_PHYS] - nstf_name = @[NSTF_NAME] - iau_drymassfixer = @[IAU_DRYMASSFIXER] - cplflx = @[CPLFLX] - cplwav = @[CPLWAV] - cplwav2atm = @[CPLWAV2ATM] - xkzminv = 0.3 - xkzm_m = 1.0 - xkzm_h = 1.0 -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 300. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, - LANDICE = @[LANDICE] -/ -&nam_stochy -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/gfsv16_csawmg.nml.IN b/tests/parm/gfsv16_csawmg.nml.IN deleted file mode 100644 index fee1b56c52..0000000000 --- a/tests/parm/gfsv16_csawmg.nml.IN +++ /dev/null @@ -1,302 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .F. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 13 - adjust_dry_mass = .F. - consv_te = 1. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - -/ - -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - crtrh = 0.93,0.90,0.95 - ncld = 2 - imp_physics = 10 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = @[IAER] - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .false. - hybedmf = .false. - satmedmf = .true. - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .true. - cnvcld = .false. - imfshalcnv = 2 - imfdeepcnv = -1 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - - ras = .false. - cscnv = .true. - do_shoc = .false. - shoc_parm = 7000.0,1.0,2.0,0.7,-999.0 - do_aw = .true. - shoc_cld = .false. - h2o_phys = .true. - shcnvcw = .false. - xkzm_h = 0.5 - xkzm_m = 0.5 - xkzm_s = 1.0 - ccwf = 1.0,1.0 - dlqf = 0.25,0.05 - mg_dcs = 200.0 - mg_ts_auto_ice = 180.0,900.0 - mg_qcvar = 1.0 - fprcp = 2 - pdfflag = 4 - iccn = 2 - mg_do_graupel = .true. - mg_do_hail = .false. - do_sb_physics = .true. - mg_do_ice_gmao = .false. - mg_do_liq_liu = .true. - cs_parm = 8.0,4.0,1.0e3,3.5e3,20.0,1.0,0.0,1.0,0.6,0.0 - ctei_rm = 0.60,0.23 - max_lon = 8000 - max_lat = 4000 - rhcmax = 0.9999999 - effr_in = .true. - - nstf_name = @[NSTF_NAME] - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/input.benchmark.nml.IN b/tests/parm/input.benchmark.nml.IN deleted file mode 100644 index 4ccd06337b..0000000000 --- a/tests/parm/input.benchmark.nml.IN +++ /dev/null @@ -1,325 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi' - date_out_of_range = 'climo' - -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = 6 - fhmax = 840 - fhout = 6 - fhmaxhf = 0 - fhouthf = -1 - -/ - -&diag_manager_nml - prepend_date = .false. - -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 - -/ - -&fms_nml - clock_grain = 'ROUTINE' - domains_stack_size = 3000000 - print_memory_usage = .false. - -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6, - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .false. - reset_eta = .false. - n_sponge = 10 - nudge_qv = .true. - nudge_dz = .false. - tau = 10. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0. - dnats = 1 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1. - hord_mt = 5 - hord_vt = 5 - hord_tm = 5 - hord_dp = -5 - hord_tr = 8 - adjust_dry_mass = .false. - consv_te = 1. - do_sat_adj = .true. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = .false. - res_latlon_dynamics = "" - -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 27 -/ - -&external_ic_nml - filtered_terrain = .true. - levp = 65 - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 - -/ - -&gfs_physics_nml - fhzero = 6 - h2o_phys = .true. - ldiag3d = .false. - fhcyc = 24 - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - iaer = 111 - icliq_sw = 1 - iovr = 1 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .true. - satmedmf = .false. - isatmedmf = 0 - lheatstrg = .false. - random_clds = .false. - trans_trac = .true. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 1.0,1.2 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsoil = 4 - lsm = 1 - iopt_dveg = 1 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - nstf_name = 0,0,0,0,0 - nst_anl = .false. - psautco = 0.0008,0.0005 - prautco = 0.00015,0.00015 - lgfdlmprad = .true. - effr_in = .true. - ldiag_ugwp = .false. - do_ugwp = .false. - do_tofd = .false. - cplflx = .T. - cplwav = @[CPLWAV] - cplwav2atm = @[CPLWAV2ATM] - -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. - -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' - -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - LANDICE = .true. - FTSFS = 90 - FAISL = 99999 - FAISS = 99999 - FSNOL = 99999 - FSNOS = 99999 - FSICL = 99999 - FSICS = 99999 - FTSFL = 99999 - FVETL = 99999 - FSOTL = 99999 - FvmnL = 99999 - FvmxL = 99999 - FSLPL = 99999 - FABSL = 99999 - -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' - -/ - -&nam_stochy -/ -&nam_sfcperts -/ - - &MOM_input_nml - output_directory = 'MOM6_OUTPUT/', - input_filename = '@[MOM6_RESTART_SETTING]' - restart_input_dir = 'INPUT/', - restart_output_dir = 'RESTART/', - parameter_filename = 'INPUT/MOM_input', - 'INPUT/MOM_override' / - diff --git a/tests/parm/input.benchmark_ccpp.nml.IN b/tests/parm/input.benchmark_ccpp.nml.IN index 5507810b77..4ddfc5dfd5 100644 --- a/tests/parm/input.benchmark_ccpp.nml.IN +++ b/tests/parm/input.benchmark_ccpp.nml.IN @@ -279,7 +279,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/input.benchmark_v16.nml.IN b/tests/parm/input.benchmark_v16.nml.IN index c9aefb8d6e..27ef85de4d 100644 --- a/tests/parm/input.benchmark_v16.nml.IN +++ b/tests/parm/input.benchmark_v16.nml.IN @@ -94,7 +94,7 @@ hord_mt = 5 hord_vt = 5 hord_tm = 5 - hord_dp = -5 + hord_dp = 5 hord_tr = 8 adjust_dry_mass = .false. consv_te = 1. @@ -112,21 +112,6 @@ / -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 54 -/ - &external_ic_nml filtered_terrain = .true. levp = 128 @@ -175,7 +160,7 @@ cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 1.1,0.72,1.0,1.0 + cdmbgwd = 0.23,1.5,1.0,1.0 prslrd0 = 0. ivegsrc = 1 isot = 1 @@ -280,7 +265,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", @@ -320,6 +305,21 @@ &nam_sfcperts / +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = 0 + launch_level = 54 +/ + &MOM_input_nml output_directory = 'MOM6_OUTPUT/', input_filename = '@[MOM6_RESTART_SETTING]' diff --git a/tests/parm/input.mom6_ccpp.nml.IN b/tests/parm/input.mom6_ccpp.nml.IN index 88c6ce1fb5..af3d12bb11 100644 --- a/tests/parm/input.mom6_ccpp.nml.IN +++ b/tests/parm/input.mom6_ccpp.nml.IN @@ -238,7 +238,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/input.nml.IN b/tests/parm/input.nml.IN deleted file mode 100644 index 873abac045..0000000000 --- a/tests/parm/input.nml.IN +++ /dev/null @@ -1,303 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6, - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .T. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 2 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 1. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" -/ - -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 1 - imp_physics = 99 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .true. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - isatmedmf = @[ISATMEDMF] - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - h2o_phys = @[H2O_PHYS] - nstf_name = @[NSTF_NAME] - cplflx = @[CPLFLX] - cplwav = @[CPLWAV] - cplwav2atm = @[CPLWAV2ATM] - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] - iau_drymassfixer = @[IAU_DRYMASSFIXER] - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] - do_ca = @[DO_CA] - ca_sgs = @[CA_SGS] - nca = 1 - ncells = 5 - nlives = 24 - nseed = 100 - nfracseed = 0.5 - nthresh = 8 - ca_trigger = .True. - ca_entr = .False. - ca_closure = .False. - nca_g = 1 - ncells_g = 1 - nlives_g = 100 - nseed_g = 100 - ca_smooth = .True. - nspinup = 100 - iseed_ca = 12345 - nsmooth = 100 - ca_amplitude = 0.35 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010, -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/input_nest02.nml.IN b/tests/parm/input_nest02.nml.IN index e8648b19dc..fdefdf3ae2 100644 --- a/tests/parm/input_nest02.nml.IN +++ b/tests/parm/input_nest02.nml.IN @@ -243,7 +243,7 @@ FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/multi_gases.nml.IN b/tests/parm/multi_gases.nml.IN deleted file mode 100644 index d762d8ca1b..0000000000 --- a/tests/parm/multi_gases.nml.IN +++ /dev/null @@ -1,291 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6, - npz = @[NPZ] - grid_type = -1 - ncnst = 5 - make_nh = @[MAKE_NH] - fv_debug = .F. - - range_warn = .F. - reset_eta = .F. - n_sponge = -1 - nudge_qv = .T. - tau = 0.015 - rf_cutoff = 2.e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.005 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 2 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 1800 - d2_bg = 0. - nord = 1 - dddmp = 0.1 - d4_bg = 0.20 - vtdm4 = 0.07 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 1. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" -/ - -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 1 - imp_physics = 99 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .true. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - isatmedmf = @[ISATMEDMF] - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - h2o_phys = @[H2O_PHYS] - nstf_name = @[NSTF_NAME] - cplflx = @[CPLFLX] - cplwav = @[CPLWAV] - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010, -/ - -&sat_vapor_pres_nml - use_exact_qs = .true. - show_all_bad_values=.false. -/ -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ -&multi_gases_nml - ri = 287.050, 461.50, 0.0, 173.2247, 0.0, 0.0 - cpi = 1004.600, 1846.00, 0.0, 820.2391, 0.0, 0.0 -/ diff --git a/tests/parm/rasmgshoc.nml.IN b/tests/parm/rasmgshoc.nml.IN deleted file mode 100644 index 57da39c4e3..0000000000 --- a/tests/parm/rasmgshoc.nml.IN +++ /dev/null @@ -1,304 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .F. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 13 - adjust_dry_mass = .F. - consv_te = 1. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - - fhouri = 2.0 - fac_n_spl = 2.0 -/ - -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - crtrh = 1.00,1.00,0.95 - ncld = 2 - imp_physics = 10 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .false.. - cal_pre = .false. - redrag = .true. - dspheat = .false. - hybedmf = @[HYBEDMF] - satmedmf = .false. - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .true. - cnvcld = .false. - imfshalcnv = -1 - imfdeepcnv = -1 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - - ras = .true. - cscnv = .false. - do_shoc = .true. - shoc_parm = 7000.0,1.0,2.0,0.7,-999.0 - do_aw = .false. - shoc_cld = .true. - h2o_phys = .true. - shcnvcw = .false. - xkzm_h = 1.0 - xkzm_m = 1.0 - xkzm_s = 1.0 - ccwf = 1.0,1.0 - dlqf = 0.25,0.05 - mg_dcs = 200.0 - mg_ts_auto_ice = 180.0,900.0 - mg_qcvar = 1.0 - fprcp = 2 - pdfflag = 4 - iccn = 0 - mg_do_graupel = .true. - mg_do_hail = .false. - do_sb_physics = .true. - mg_do_ice_gmao = .false. - mg_do_liq_liu = .true. - cs_parm = 8.0,4.0,1.0e3,3.5e3,20.0,1.0,0.0,1.0,0.6,0.0 - ctei_rm = 0.60,0.23 - max_lon = 8000 - max_lat = 4000 - rhcmax = 0.9999999 - effr_in = .true. - - nstf_name = @[NSTF_NAME] - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/regional.nml.IN b/tests/parm/regional.nml.IN deleted file mode 100644 index d854127859..0000000000 --- a/tests/parm/regional.nml.IN +++ /dev/null @@ -1,298 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - - &atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - - &fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - - &fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 2000200, - print_memory_usage = .false. -/ - - &fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - - &fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = 211 - npy = 193 - ntiles = 1, - npz = 64 - !grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .T. - reset_eta = .F. - n_sponge = 20 - nudge_qv = .T. - tau = 3.0 - rf_cutoff = 10.e2 - d2_bg_k1 = 0.16 - d2_bg_k2 = 0.02 - kord_tm = -10 - kord_mt = 10 - kord_wz = 10 - kord_tr = 10 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 1 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.08 - vtdm4 = 0.0 - delt_max = 0.008 - ke_bg = 0. - do_vort_damp = .T. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1.0 - hord_mt = 6 - hord_vt = -5 - hord_tm = -5 - hord_dp = -5 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 0. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - - do_schmidt = .true. - target_lat = 35.5 - target_lon = -97.5 - stretch_fac = 1.5 -!! nord_zs_filter = 4 - n_zs_filter = 0 - regional = .true. - bc_update_interval = 6 - regional_bcs_from_gsi = .false. - write_restart_with_bcs = @[WRITE_RESTART_WITH_BCS] - nrows_blend = 0 -/ - - &external_ic_nml - filtered_terrain = .true. - levp = 65 - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - - &gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .true. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .true. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 2.0, 0.25 ! NCEP default - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - nstf_name = 1,1,1,0,5 - cplflx = .F. - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] -/ - - &interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp" - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ - - &gfdl_cloud_microphysics_nml - sedi_transport = .false. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 180. - tau_v2l = 90. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 90. -/ - -&nam_stochy -/ - -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/regional_c768-model_configure.IN b/tests/parm/regional_c768-model_configure.IN deleted file mode 100644 index 25d43c0540..0000000000 --- a/tests/parm/regional_c768-model_configure.IN +++ /dev/null @@ -1,60 +0,0 @@ -print_esmf: .true. - -total_member: 1 -PE_MEMBER01: 480 - -start_year: 2018 -start_month: 10 -start_day: 15 -start_hour: 00 -start_minute: 0 -start_second: 0 -nhours_fcst: 3 -RUN_CONTINUE: .false. -ENS_SPS: .false. -dt_atmos: 90 -cpl: .false. -calendar: 'julian' -memuse_verbose: .false. -atmos_nthreads: 1 -use_hyper_thread: .false. -ncores_per_node: 24 -debug_affinity: .true. -restart_interval: 0 -output_1st_tstep_rst: .false. - -quilting: .true. -write_groups: 2 -write_tasks_per_group: 24 -num_files: 2 -filename_base: 'dyn' 'phy' -output_file: 'netcdf' -write_nemsioflip: .false. -write_fsyncflag: .false. - -# output_grid: 'gaussian_grid' -# imo: 384 -# jmo: 190 - - output_grid: 'regional_latlon' - lon1: 225.0 - lon2: 300.0 - lat1: 10.0 - lat2: 60.0 - dlon: 0.2 - dlat: 0.2 - -# output_grid: 'rotated_latlon' -# cen_lon: -97.5 # central longitude -# cen_lat: 34.5 # central latitude -# lon1: -24.0 # longitude of lower-left point in rotated coordinate system (in degrees) -# lat1: -22.0 # latitude of lower-left . . . . -# lon2: 24.0 # longitude of upper-right . . . . -# lat2: 22.0 # latitude of upper-right . . . . -# dlon: 0.2 -# dlat: 0.2 - -nfhout: 3 -nfhmax_hf: 0 -nfhout_hf: 1 -nsout: -1 diff --git a/tests/parm/regional_c768.nml.IN b/tests/parm/regional_c768.nml.IN deleted file mode 100644 index 7b24731482..0000000000 --- a/tests/parm/regional_c768.nml.IN +++ /dev/null @@ -1,295 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - - &atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = 1 -/ - -&diag_manager_nml - prepend_date = .F. -/ - - &fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - - &fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - - &fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - - &fv_core_nml - layout = 24,20 - io_layout = 1,1 - npx = 1729 - npy = 1441 - ntiles = 1, - npz = 64 - !grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .T. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .T. - tau = 5. - rf_cutoff = 20.e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.04 - kord_tm = -11 - kord_mt = 11 - kord_wz = 11 - kord_tr = 11 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 4 - n_split = 5 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 1 - fv_sg_adj = 300 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.008 - ke_bg = 0. - do_vort_damp = .T. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1.0 - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 0. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - - do_schmidt = .true. - target_lat = 35.5 - target_lon = -97.5 - stretch_fac = 1.5 -!! nord_zs_filter = 4 - n_zs_filter = 0 - regional = .true. - bc_update_interval = 6 -/ - - &external_ic_nml - filtered_terrain = .true. - levp = 65 - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - - &gfs_physics_nml - fhzero = 3. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .false. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .false. - trans_trac = .true. - cnvcld = .false. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5, 0.25 ! NCEP default - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - nstf_name = 1,1,1,0,5 - cplflx = .F. - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] -/ - - &interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp" - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ - - &gfdl_cloud_microphysics_nml - sedi_transport = .false. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 180. - tau_v2l = 90. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 90. -/ - -&nam_stochy -/ - -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/stretched-input.nml.IN b/tests/parm/stretched-input.nml.IN deleted file mode 100644 index 412c9e8f3d..0000000000 --- a/tests/parm/stretched-input.nml.IN +++ /dev/null @@ -1,292 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = 97 - npy = 97 - ntiles = 6, - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 30 - nudge_qv = .T. - rf_fast = .F. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 1 - n_split = 8 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 1 - fv_sg_adj = 600 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 1. - do_sat_adj = .T. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - no_dycore = .false. - z_tracer = .T. - - do_schmidt = .true. - target_lat = 35.5 - target_lon = -97.5 - stretch_fac = 1.5 - -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .false. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - nstf_name = @[NSTF_NAME] - xkzminv = 0.3 - xkzm_m = 1.0 - xkzm_h = 1.0 -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 300. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/stretched-nest-input.nml.IN b/tests/parm/stretched-nest-input.nml.IN deleted file mode 100644 index a7c8e4749e..0000000000 --- a/tests/parm/stretched-nest-input.nml.IN +++ /dev/null @@ -1,300 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 24 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml -! grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = 97 - npy = 97 - ntiles = 6, - npz = @[NPZ] -! grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 30 - nudge_qv = .T. - rf_fast = .F. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 1 - n_split = 8 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 1 - fv_sg_adj = 600 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 1. - do_sat_adj = .T. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - no_dycore = .false. - z_tracer = .T. - - do_schmidt = .true. - target_lat = 35.5 - target_lon = -97.5 - stretch_fac = 1.5 - -/ -&fv_nest_nml - grid_pes = 48, 48 - grid_coarse = 0, 1 - tile_coarse = 0, 6 - nest_refine = 0, 3 - nest_ioffsets= 1, 14 - nest_joffsets= 1, 19 -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .false. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - nstf_name = @[NSTF_NAME] - xkzminv = 0.3 - xkzm_m = 1.0 - xkzm_h = 1.0 -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 300. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/thompson.nml.IN b/tests/parm/thompson.nml.IN deleted file mode 100644 index 4e6ee49127..0000000000 --- a/tests/parm/thompson.nml.IN +++ /dev/null @@ -1,273 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6, - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .T. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 1. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" -/ - -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 2 - imp_physics = 8 - lradar = @[LRADAR] - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .true. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - nstf_name = @[NSTF_NAME] - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010, -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/v15p2_c96.nml.IN b/tests/parm/v15p2_c96.nml.IN deleted file mode 100644 index e39dfc2dcf..0000000000 --- a/tests/parm/v15p2_c96.nml.IN +++ /dev/null @@ -1,307 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi' - date_out_of_range = 'climo' -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = 1 - fhmax = 384 - fhout = 3 - fhmaxhf = 120 - fhouthf = 1 -/ - -&diag_manager_nml - prepend_date = .false. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&fms_nml - clock_grain = 'ROUTINE' - domains_stack_size = 3000000 - print_memory_usage = .false. -/ - -&fv_core_nml - layout = 3,8 - io_layout = 1,1 - npx = 97 - npy = 97 - ntiles = 6 - npz = 64 - grid_type = -1 - make_nh = .false. - fv_debug = .false. - range_warn = .false. - reset_eta = .false. - n_sponge = 10 - nudge_qv = .true. - nudge_dz = .false. - tau = 10. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = 0 - d_ext = 0. - dnats = 1 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = .true. - external_eta = .true. - gfs_phil = .false. - nggps_ic = .true. - mountain = .false. - ncep_ic = .false. - d_con = 1. - hord_mt = 5 - hord_vt = 5 - hord_tm = 5 - hord_dp = -5 - hord_tr = 8 - adjust_dry_mass = .false. - consv_te = 1. - do_sat_adj = .true. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = .false. - no_dycore = .false. - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = .false. - res_latlon_dynamics = "" -/ - -&external_ic_nml - filtered_terrain = .true. - levp = 65 - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6 - h2o_phys = .true. - ldiag3d = .false. - fhcyc = 24 - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - iaer = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .true. - random_clds = .false. - trans_trac = .true. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - debug = .false. - nstf_name = 2,1,0,0,0 - nst_anl = .true. - psautco = 0.0008,0.0005 - prautco = 0.00015,0.00015 - lgfdlmprad = .true. - effr_in = .true. - do_sppt = .true. - do_shum = .true. - do_skeb = .true. - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = 'global_glacier.2x2.grb' - FNMXIC = 'global_maxice.2x2.grb' - FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' - FNSNOC = 'global_snoclim.1.875.grb' - FNZORC = 'igbp' - FNALBC = 'global_snowfree_albedo.bosu.t126.384.190.rg.grb' - FNALBC2 = 'global_albedo4.1x1.grb' - FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' - FNTG3C = 'global_tg3clim.2.6x1.5.grb' - FNVEGC = 'global_vegfrac.0.144.decpercent.grb' - FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' - FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' - FNSMCC = 'global_soilmgldas.t126.384.190.grb' - FNMSKH = 'seaice_newland.grb' - FNTSFA = '' - FNACNA = '' - FNSNOA = '' - FNVMNC = 'global_shdmin.0.144x0.144.grb' - FNVMXC = 'global_shdmax.0.144x0.144.grb' - FNSLPC = 'global_slope.1x1.grb' - FNABSC = 'global_mxsnoalb.uariz.t126.384.190.rg.grb' - LDEBUG = .false. - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - LANDICE = .true. - FTSFS = 90 - FAISL = 99999 - FAISS = 99999 - FSNOL = 99999 - FSNOS = 99999 - FSICL = 99999 - FSICS = 99999 - FTSFL = 99999 - FVETL = 99999 - FSOTL = 99999 - FvmnL = 99999 - FvmxL = 99999 - FSLPL = 99999 - FABSL = 99999 -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&nam_stochy - ntrunc = 766 - lon_s = 1536 - lat_s = 768 - skeb = 0.3 - iseed_skeb = 2019102712451 - iseed_shum = 2019102712452 - iseed_sppt = 2019102712453 - skeb_tau = 21600. - skeb_lscale = 500000. - skebnorm = 0 - skeb_npass = 30 - skeb_vdof = 5 - shum = 0.005 - shum_tau = 21600. - shum_lscale = 500000. - sppt = 0.5 - sppt_tau = 21600. - sppt_lscale = 500000. - sppt_logit = .true. - sppt_sfclimit = .true. - use_zmtnblck = .true. -/ - -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ - diff --git a/tests/parm/v16beta_c96.nml.IN b/tests/parm/v16beta_c96.nml.IN deleted file mode 100644 index 3462ffc509..0000000000 --- a/tests/parm/v16beta_c96.nml.IN +++ /dev/null @@ -1,335 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi' - date_out_of_range = 'climo' -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = 1 - fhmax = 384 - fhout = 3 - fhmaxhf = 120 - fhouthf = 1 -/ - -&diag_manager_nml - prepend_date = .false. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&mpp_io_nml -shuffle=1 -deflate_level=1 -/ - -&fms_nml - clock_grain = 'ROUTINE' - domains_stack_size = 3000000 - print_memory_usage = .false. -/ - -&fv_core_nml - layout = 3,8 - io_layout = 1,1 - npx = 97 - npy = 97 - ntiles = 6 - npz = 64 - grid_type = -1 - make_nh = .false. - fv_debug = .false. - range_warn = .false. - reset_eta = .false. - n_sponge = 10 - nudge_qv = .true. - nudge_dz = .false. - tau = 10. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.0 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = 0 - d_ext = 0. - dnats = 1 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = .true. - external_eta = .true. - gfs_phil = .false. - nggps_ic = .true. - mountain = .false. - ncep_ic = .false. - d_con = 1. - hord_mt = 5 - hord_vt = 5 - hord_tm = 5 - hord_dp = -5 - hord_tr = 8 - adjust_dry_mass = .false. - consv_te = 1. - do_sat_adj = .true. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = .false. - no_dycore = .false. - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = .false. - res_latlon_dynamics = "" -/ - -&external_ic_nml - filtered_terrain = .true. - levp = 65 - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6 - h2o_phys = .true. - ldiag3d = .false. - fhcyc = 24 - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - iaer = 5111 - icliq_sw = 2 - iovr = 3 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .false. - satmedmf = .true. - isatmedmf = 1 - lheatstrg = .true. - random_clds = .false. - trans_trac = .true. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 4.0,0.15,1.0,1.0 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsoil = 4 - lsm = 1 - iopt_dveg = 1 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - nstf_name = 2,1,0,0,0 - nst_anl = .true. - psautco = 0.0008,0.0005 - prautco = 0.00015,0.00015 - lgfdlmprad = .true. - effr_in = .true. - ldiag_ugwp = .false. - do_ugwp = .false. - do_tofd = .true. - do_sppt = .true. - do_shum = .true. - do_skeb = .true. - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. - reiflag = 2 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = 'global_glacier.2x2.grb' - FNMXIC = 'global_maxice.2x2.grb' - FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' - FNSNOC = 'global_snoclim.1.875.grb' - FNZORC = 'igbp' - FNALBC = 'global_snowfree_albedo.bosu.t126.384.190.rg.grb' - FNALBC2 = 'global_albedo4.1x1.grb' - FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' - FNTG3C = 'global_tg3clim.2.6x1.5.grb' - FNVEGC = 'global_vegfrac.0.144.decpercent.grb' - FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' - FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' - FNSMCC = 'global_soilmgldas.t126.384.190.grb' - FNMSKH = 'seaice_newland.grb' - FNTSFA = '' - FNACNA = '' - FNSNOA = '' - FNVMNC = 'global_shdmin.0.144x0.144.grb' - FNVMXC = 'global_shdmax.0.144x0.144.grb' - FNSLPC = 'global_slope.1x1.grb' - FNABSC = 'global_mxsnoalb.uariz.t126.384.190.rg.grb' - LDEBUG = .false. - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - LANDICE = .true. - FTSFS = 90 - FAISL = 99999 - FAISS = 99999 - FSNOL = 99999 - FSNOS = 99999 - FSICL = 99999 - FSICS = 99999 - FTSFL = 99999 - FVETL = 99999 - FSOTL = 99999 - FvmnL = 99999 - FvmxL = 99999 - FSLPL = 99999 - FABSL = 99999 -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&nam_stochy - ntrunc = 766 - lon_s = 1536 - lat_s = 768 - skeb = 0.3 - iseed_skeb = 2019102712451 - iseed_shum = 2019102712452 - iseed_sppt = 2019102712453 - skeb_tau = 21600. - skeb_lscale = 500000. - skebnorm = 0 - skeb_npass = 30 - skeb_vdof = 5 - shum = 0.005 - shum_tau = 21600. - shum_lscale = 500000. - sppt = 0.5 - sppt_tau = 21600. - sppt_lscale = 500000. - sppt_logit = .true. - sppt_sfclimit = .true. - use_zmtnblck = .true. -/ - -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 27 -/ - diff --git a/tests/parm/wsm6.nml.IN b/tests/parm/wsm6.nml.IN deleted file mode 100644 index 6510881f21..0000000000 --- a/tests/parm/wsm6.nml.IN +++ /dev/null @@ -1,273 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6, - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .T. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 1. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" -/ - -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 2 - imp_physics = 6 - lradar = @[LRADAR] - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .true. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - nstf_name = @[NSTF_NAME] - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010, -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/rt.conf b/tests/rt.conf index e13e0072f8..0178f2886c 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -7,8 +7,8 @@ COMPILE | SUITES=FV3_GFS_2017 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_restart | | | fv3_ccpp_control +RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control RUN | fv3_ccpp_wrtGauss_netcdf_esmf | | fv3 | RUN | fv3_ccpp_wrtGauss_netcdf | | fv3 | RUN | fv3_ccpp_wrtGauss_netcdf_parallel | | fv3 | @@ -19,7 +19,7 @@ RUN | fv3_ccpp_stochy 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 | | fv3 | +RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control RUN | fv3_ccpp_lheatstrg | | fv3 | # WW3 not working on Cheyenne in the past, need to check if it works now diff --git a/tests/rt.sh b/tests/rt.sh index 5f59a58421..14096de9ae 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -411,12 +411,12 @@ 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-20210106/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210115/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210106} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210115} fi -INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210107} +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210115} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20201220 shift $((OPTIND-1)) diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index acb1b8745b..c58d775039 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -154,6 +154,9 @@ submit_and_wait() { echo "Slurm unknown status ${status}. Check sacct ..." sacct -n -j ${slurm_id} --format=JobID,state%20,Jobname%20 status_label=$( sacct -n -j ${slurm_id} --format=JobID,state%20,Jobname%20 | grep "^${slurm_id}" | grep ${JBNME} | awk '{print $2}' ) + if [[ $status_label = 'FAILED' ]]; then + test_status='FAIL' + fi fi elif [[ $SCHEDULER = 'lsf' ]]; then diff --git a/tests/tests/cpld_bmarkfrac_v16 b/tests/tests/cpld_bmarkfrac_v16 index 905c160b96..9d228b69ae 100644 --- a/tests/tests/cpld_bmarkfrac_v16 +++ b/tests/tests/cpld_bmarkfrac_v16 @@ -136,7 +136,8 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_v16.nml.IN -export FIELD_TABLE="field_table.gfdlmp" +export FIELD_TABLE="field_table_gfsv16" +export DIAG_TABLE="diag_table_gfsv16" export SUITE_NAME="FV3_GFS_v16beta_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_v16 b/tests/tests/cpld_bmarkfrac_wave_v16 index 8c51b1c5ce..cbe745757c 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16 +++ b/tests/tests/cpld_bmarkfrac_wave_v16 @@ -148,6 +148,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_v16.nml.IN -export FIELD_TABLE="field_table.gfdlmp" +export FIELD_TABLE="field_table_gfsv16" +export DIAG_TABLE="diag_table_gfsv16" export SUITE_NAME="FV3_GFS_v16beta_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_v16_35d b/tests/tests/cpld_bmarkfrac_wave_v16_35d index e0fc9d781a..05789051b3 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16_35d +++ b/tests/tests/cpld_bmarkfrac_wave_v16_35d @@ -115,7 +115,8 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_v16.nml.IN -export FIELD_TABLE="field_table.gfdlmp" +export FIELD_TABLE="field_table_gfsv16" +export DIAG_TABLE="diag_table_gfsv16" export SUITE_NAME="FV3_GFS_v16beta_coupled" export RT35D='.T.' export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_bmarkfrac_v16 b/tests/tests/cpld_restart_bmarkfrac_v16 index 7b073fd563..6c1f7526a1 100644 --- a/tests/tests/cpld_restart_bmarkfrac_v16 +++ b/tests/tests/cpld_restart_bmarkfrac_v16 @@ -152,7 +152,8 @@ export USE_RESTART_TIME='.true.' export INPUT_NML=input.benchmark_v16.nml.IN -export FIELD_TABLE="field_table.gfdlmp" +export FIELD_TABLE="field_table_gfsv16" +export DIAG_TABLE="diag_table_gfsv16" export SUITE_NAME="FV3_GFS_v16beta_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/fv3_2threads b/tests/tests/fv3_2threads deleted file mode 100644 index c9363d96b6..0000000000 --- a/tests/tests/fv3_2threads +++ /dev/null @@ -1,82 +0,0 @@ -############################################################################### -# -# FV3 2 threads test -# -############################################################################### - -export TEST_DESCR="Compare FV3 2 threads results with previous trunk version" - -export CNTL_DIR=fv3_control - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 -export THRD=2 -export TASKS=$TASKS_thrd -export TPN=$TPN_thrd -export INPES=$INPES_thrd -export JNPES=$JNPES_thrd -export WRTTASK_PER_GROUP=12 - diff --git a/tests/tests/fv3_appbuild b/tests/tests/fv3_appbuild deleted file mode 100644 index 2411077f08..0000000000 --- a/tests/tests/fv3_appbuild +++ /dev/null @@ -1,76 +0,0 @@ -############################################################################### -# -# FV3 control test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control results with previous trunk version using NEMSAppBuilder" - -export CNTL_DIR=fv3_control - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - diff --git a/tests/tests/fv3_ca b/tests/tests/fv3_ca deleted file mode 100644 index 759d0c2284..0000000000 --- a/tests/tests/fv3_ca +++ /dev/null @@ -1,81 +0,0 @@ -############################################################################### -# -# FV3 cellular automata test -# -############################################################################### - -export TEST_DESCR="Compare FV3 cellular automata results with previous trunk version (sub-grid and global)" - -export CNTL_DIR=fv3_ca - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf012.tile1.nc \ - phyf012.tile2.nc \ - phyf012.tile3.nc \ - phyf012.tile4.nc \ - phyf012.tile5.nc \ - phyf012.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf012.tile1.nc \ - dynf012.tile2.nc \ - dynf012.tile3.nc \ - dynf012.tile4.nc \ - dynf012.tile5.nc \ - dynf012.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export DO_CA=.T. -export CA_SGS=.T. -export CA_GLOBAL=.T. -export FHMAX=12 - diff --git a/tests/tests/fv3_ccpp_2threads b/tests/tests/fv3_ccpp_2threads index fe0c77a406..0a37b1c15c 100644 --- a/tests/tests/fv3_ccpp_2threads +++ b/tests/tests/fv3_ccpp_2threads @@ -73,6 +73,7 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 +export FHMAX=48 export THRD=2 export TASKS=$TASKS_thrd export TPN=$TPN_thrd diff --git a/tests/tests/fv3_ccpp_control b/tests/tests/fv3_ccpp_control index 16c99d8284..2f056493d9 100644 --- a/tests/tests/fv3_ccpp_control +++ b/tests/tests/fv3_ccpp_control @@ -26,6 +26,12 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ phyf024.tile4.nc \ phyf024.tile5.nc \ phyf024.tile6.nc \ + phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ dynf000.tile1.nc \ dynf000.tile2.nc \ dynf000.tile3.nc \ @@ -38,6 +44,12 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ dynf024.tile4.nc \ dynf024.tile5.nc \ dynf024.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -73,6 +85,8 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 +export FHMAX=48 +export RESTART_INTERVAL=24 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 diff --git a/tests/tests/fv3_ccpp_decomp b/tests/tests/fv3_ccpp_decomp index 6843ae6a6f..96b5535945 100644 --- a/tests/tests/fv3_ccpp_decomp +++ b/tests/tests/fv3_ccpp_decomp @@ -73,6 +73,7 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 +export FHMAX=48 export INPES=6 export JNPES=4 diff --git a/tests/tests/fv3_ccpp_restart b/tests/tests/fv3_ccpp_restart index 2d1d34e98e..ddf0cec3f5 100644 --- a/tests/tests/fv3_ccpp_restart +++ b/tests/tests/fv3_ccpp_restart @@ -6,7 +6,7 @@ export TEST_DESCR="Compare FV3 CCPP restart results with previous trunk version" -export CNTL_DIR=fv3_restart +export CNTL_DIR=fv3_control export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ @@ -14,24 +14,12 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile4.nc \ atmos_4xdaily.tile5.nc \ atmos_4xdaily.tile6.nc \ - phyf027.tile1.nc \ - phyf027.tile2.nc \ - phyf027.tile3.nc \ - phyf027.tile4.nc \ - phyf027.tile5.nc \ - phyf027.tile6.nc \ phyf048.tile1.nc \ phyf048.tile2.nc \ phyf048.tile3.nc \ phyf048.tile4.nc \ phyf048.tile5.nc \ phyf048.tile6.nc \ - dynf027.tile1.nc \ - dynf027.tile2.nc \ - dynf027.tile3.nc \ - dynf027.tile4.nc \ - dynf027.tile5.nc \ - dynf027.tile6.nc \ dynf048.tile1.nc \ dynf048.tile2.nc \ dynf048.tile3.nc \ diff --git a/tests/tests/fv3_control b/tests/tests/fv3_control deleted file mode 100644 index 5e0e322878..0000000000 --- a/tests/tests/fv3_control +++ /dev/null @@ -1,76 +0,0 @@ -############################################################################### -# -# FV3 control test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control results with previous trunk version" - -export CNTL_DIR=fv3_control - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - diff --git a/tests/tests/fv3_control_32bit b/tests/tests/fv3_control_32bit deleted file mode 100644 index ef2468808a..0000000000 --- a/tests/tests/fv3_control_32bit +++ /dev/null @@ -1,76 +0,0 @@ -############################################################################### -# -# FV3 control compiled with 32-bit dynamics test -# -############################################################################### - -export TEST_DESCR="Compare FV3 32bit control results with previous trunk version" - -export CNTL_DIR=fv3_control_32bit - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - diff --git a/tests/tests/fv3_control_debug b/tests/tests/fv3_control_debug deleted file mode 100644 index be1e7098b9..0000000000 --- a/tests/tests/fv3_control_debug +++ /dev/null @@ -1,16 +0,0 @@ -############################################################################### -# -# FV3 control test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control results with previous trunk version" - -export CNTL_DIR=fv3_control - -export LIST_FILES="" - -export_fv3 - -export FHMAX="06" - diff --git a/tests/tests/fv3_cpt b/tests/tests/fv3_cpt deleted file mode 100644 index 776789a2c6..0000000000 --- a/tests/tests/fv3_cpt +++ /dev/null @@ -1,89 +0,0 @@ -############################################################################### -# -# FV3 CPT test -# -############################################################################### - -export TEST_DESCR="Compare FV3 CPT results with previous trunk version" - -export CNTL_DIR=fv3_cpt - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -export SATMEDMF=.F. -export HYBEDMF=.T. - -export DT_ATMOS="300" -export SYEAR='2017' -export SMONTH='08' -export SDAY='22' -export SHOUR='00' -export TASKS=204 -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=12 - - -export INPES='4' -export JNPES='8' - -export NPZ='127' -export NPZP='128' - - -export INPUT_NML=cpt.nml.IN -export FV3_RUN=cpt_run.IN -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - diff --git a/tests/tests/fv3_csawmg b/tests/tests/fv3_csawmg deleted file mode 100644 index ec0c0ec414..0000000000 --- a/tests/tests/fv3_csawmg +++ /dev/null @@ -1,66 +0,0 @@ -############################################################################### -# -# FV3 CSAWMG test -# -############################################################################### - -export TEST_DESCR="Compare FV3 csawmg results with previous trunk version" - -export CNTL_DIR=fv3_csawmg - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="600" - -export INPUT_NML=csawmg.nml.IN -export FV3_RUN=csawmg_run.IN -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - - diff --git a/tests/tests/fv3_csawmg3shoc127 b/tests/tests/fv3_csawmg3shoc127 deleted file mode 100644 index 04866b2fd2..0000000000 --- a/tests/tests/fv3_csawmg3shoc127 +++ /dev/null @@ -1,79 +0,0 @@ -############################################################################### -# -# FV3 CSAWMG3SHOC127 test -# -############################################################################### - -export TEST_DESCR="Compare 127 L FV3 with CSAW MG3 and SHOC results with previous trunk version" - -export CNTL_DIR=fv3_csawmg3shoc127 - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export DT_ATMOS="300" -export SYEAR='2017' -export SMONTH='08' -export SDAY='22' -export SHOUR='00' -export TASKS=204 -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=12 - - -export INPES='4' -export JNPES='8' - -export NPZ='127' -export NPZP='128' - -export INPUT_NML=csawmg3shoc127.nml.IN -export FV3_RUN=csawmg3shoc127_run.IN -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - diff --git a/tests/tests/fv3_csawmgshoc b/tests/tests/fv3_csawmgshoc deleted file mode 100644 index 5ac1c10cca..0000000000 --- a/tests/tests/fv3_csawmgshoc +++ /dev/null @@ -1,66 +0,0 @@ -############################################################################### -# -# FV3 CSAWMGSHOC test -# -############################################################################### - -export TEST_DESCR="Compare FV3 csawmgshoc results with previous trunk version" - -export CNTL_DIR=fv3_csawmgshoc - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="600" - -export INPUT_NML=csawmgshoc.nml.IN -export FV3_RUN=csawmgshoc_run.IN -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - - diff --git a/tests/tests/fv3_decomp b/tests/tests/fv3_decomp deleted file mode 100644 index fbcb05426f..0000000000 --- a/tests/tests/fv3_decomp +++ /dev/null @@ -1,79 +0,0 @@ -############################################################################### -# -# FV3 domain decomposition test with different PEs -# -############################################################################### - -export TEST_DESCR="Compare FV3 decomp results with previous trunk version" - -export CNTL_DIR=fv3_control - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export INPES=6 -export JNPES=4 - diff --git a/tests/tests/fv3_gfdlmp b/tests/tests/fv3_gfdlmp deleted file mode 100644 index 58e176d08b..0000000000 --- a/tests/tests/fv3_gfdlmp +++ /dev/null @@ -1,65 +0,0 @@ -############################################################################### -# -# FV3 GFDL-MP test -# -############################################################################### - -export TEST_DESCR="Compare FV3 GFDL-MP results with previous trunk version" - -export CNTL_DIR=fv3_gfdlmp - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="1200" -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - -export INPUT_NML=gfdlmp.nml.IN -export FV3_RUN=gfdlmp_run.IN - diff --git a/tests/tests/fv3_gfdlmp_32bit b/tests/tests/fv3_gfdlmp_32bit deleted file mode 100644 index b4a11f0ef6..0000000000 --- a/tests/tests/fv3_gfdlmp_32bit +++ /dev/null @@ -1,65 +0,0 @@ -############################################################################### -# -# FV3 GFDL-MP compiled with 32-bit dynamics test -# -############################################################################### - -export TEST_DESCR="Compare FV3 32bit GFDL-MP results with previous trunk version" - -export CNTL_DIR=fv3_gfdlmp_32bit - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="1200" -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - -export INPUT_NML=gfdlmp.nml.IN -export FV3_RUN=gfdlmp_run.IN - diff --git a/tests/tests/fv3_gfdlmprad b/tests/tests/fv3_gfdlmprad deleted file mode 100644 index 47c4748d9c..0000000000 --- a/tests/tests/fv3_gfdlmprad +++ /dev/null @@ -1,80 +0,0 @@ -############################################################################### -# -# FV3 GFDL-MPrad test -# -############################################################################### - -export TEST_DESCR="Compare FV3 GFDL-MP radiation interaction option with the control" - -export CNTL_DIR=fv3_gfdlmprad - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - out_grd.glo_30m" - - -export_fv3 - -export TASKS=192 - -DT_ATMOS="1200" -export LGFDLMPRAD=.true. -export EFFR_IN=.true. - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - -export CPL=.true. -export CPLWAV=.T. -export atm_model='fv3' -export atm_petlist_bounds="0 149" -export wav_model='ww3' -export wav_petlist_bounds="150 191" -export coupling_interval_sec=3600.0 #coupling time step, want it to be multiple of 1800 and FV3 time step -export NEMS_CONFIGURE="nems.configure.blocked_atm_wav.IN" - -export INPUT_NML=gfdlmp.nml.IN -export FV3_RUN=gfdlmp_run.IN - diff --git a/tests/tests/fv3_gfdlmprad_32bit_post b/tests/tests/fv3_gfdlmprad_32bit_post deleted file mode 100644 index 2a9db85ab1..0000000000 --- a/tests/tests/fv3_gfdlmprad_32bit_post +++ /dev/null @@ -1,75 +0,0 @@ -############################################################################### -# -# FV3 GFDL-MPrad test -# -############################################################################### - -export TEST_DESCR="Compare FV3 GFDL-MP radiation interaction option with the control" - -export CNTL_DIR=fv3_gfdlmprad_32bit_post - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - GFSFLX.GrbF00 \ - GFSPRS.GrbF00 \ - GFSFLX.GrbF24 \ - GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="1200" -export LGFDLMPRAD=.true. -export EFFR_IN=.true. - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export OUTPUT_HISTORY=.true. -export WRITE_DOPOST=.true. -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - - -export INPUT_NML=gfdlmp.nml.IN -export FV3_RUN=gfdlmp_run.IN - diff --git a/tests/tests/fv3_gfdlmprad_atmwav b/tests/tests/fv3_gfdlmprad_atmwav deleted file mode 100644 index 57d1a101e0..0000000000 --- a/tests/tests/fv3_gfdlmprad_atmwav +++ /dev/null @@ -1,81 +0,0 @@ -############################################################################### -# -# FV3 GFDL-MPrad 2way atm-way coupling test -# -############################################################################### - -export TEST_DESCR="Compare FV3 GFDL-MP radiation interaction 2way atm-way coupling option with the control" - -export CNTL_DIR=fv3_gfdlmprad_atmwav - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - out_grd.glo_30m" - - -export_fv3 - -export TASKS=192 - -DT_ATMOS="1200" -export LGFDLMPRAD=.true. -export EFFR_IN=.true. - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - -export CPL=.true. -export CPLWAV=.T. -export CPLWAV2ATM=.T. -export atm_model='fv3' -export atm_petlist_bounds="0 149" -export wav_model='ww3' -export wav_petlist_bounds="150 191" -export coupling_interval_sec=1200.0 #coupling time step, want it to be multiple of 1800 and FV3 time step -export NEMS_CONFIGURE="nems.configure.blocked_atm_wav_2way.IN" - -export INPUT_NML=gfdlmp.nml.IN -export FV3_RUN=gfdlmp_run.IN - diff --git a/tests/tests/fv3_gfdlmprad_gwd b/tests/tests/fv3_gfdlmprad_gwd deleted file mode 100644 index a3e8e59dc2..0000000000 --- a/tests/tests/fv3_gfdlmprad_gwd +++ /dev/null @@ -1,70 +0,0 @@ -############################################################################### -# -# FV3 GFDL-MPrad gravity wave drag test -# -############################################################################### - -export TEST_DESCR="Compare FV3 GFDL-MP radiation interaction option and gravity wave drag with the control" - -export CNTL_DIR=fv3_gfdlmprad_gwd - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="1200" -export LGFDLMPRAD=.true. -export EFFR_IN=.true. -export DO_UGWP=.true. -export DO_TOFD=.true. - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - -export INPUT_NML=gfdlmp.nml.IN -export FV3_RUN=gfdlmp_run.IN - diff --git a/tests/tests/fv3_gfdlmprad_noahmp b/tests/tests/fv3_gfdlmprad_noahmp deleted file mode 100644 index 8c507c858b..0000000000 --- a/tests/tests/fv3_gfdlmprad_noahmp +++ /dev/null @@ -1,71 +0,0 @@ -############################################################################### -# -# FV3 GFDL-MPrad Noah MP test -# -############################################################################### - -export TEST_DESCR="Compare FV3 GFDL-MP radiation interaction and Noah MP with the control" - -export CNTL_DIR=fv3_gfdlmprad_noahmp - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="1200" -export LGFDLMPRAD=.true. -export EFFR_IN=.true. -export LSM=2 -export LANDICE=.false. - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - - -export INPUT_NML=gfdlmp.nml.IN -export FV3_RUN=gfdlmp_run.IN - diff --git a/tests/tests/fv3_gfs_v15p2 b/tests/tests/fv3_gfs_v15p2 deleted file mode 100644 index a2b6faf962..0000000000 --- a/tests/tests/fv3_gfs_v15p2 +++ /dev/null @@ -1,81 +0,0 @@ -############################################################################### -# -# FV3 GFS v15.2 compiled with 32-bit dynamics test -# -############################################################################### - -export TEST_DESCR="Compare FV3 32bit GFS v15.2 results with previous trunk version" - -export CNTL_DIR=fv3_gfs_v15p2 - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="1200" - -export FV3_RUN=gfs_v15_run.IN -export INPUT_NML=v15p2_c96.nml.IN - diff --git a/tests/tests/fv3_gfs_v16beta b/tests/tests/fv3_gfs_v16beta deleted file mode 100644 index 66816ff08e..0000000000 --- a/tests/tests/fv3_gfs_v16beta +++ /dev/null @@ -1,81 +0,0 @@ -############################################################################### -# -# FV3 GFS v16beta compiled with 32-bit dynamics test -# -############################################################################### - -export TEST_DESCR="Compare FV3 32bit GFS v16beta results with previous trunk version" - -export CNTL_DIR=fv3_gfs_v16beta - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="1200" - -export FV3_RUN=gfs_v16_run.IN -export INPUT_NML=v16beta_c96.nml.IN - diff --git a/tests/tests/fv3_gfsv16_csawmg b/tests/tests/fv3_gfsv16_csawmg deleted file mode 100644 index 329296f167..0000000000 --- a/tests/tests/fv3_gfsv16_csawmg +++ /dev/null @@ -1,67 +0,0 @@ -############################################################################### -# -# FV3 gfsv16_csawmg test -# -############################################################################### - -export TEST_DESCR="Compare FV3 gfsv16 csawmg results with previous trunk version" - -export CNTL_DIR=fv3_gfsv16_csawmg - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="600" - -export INPUT_NML=gfsv16_csawmg.nml.IN -export FV3_RUN=gfsv16_csawmg_run.IN -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. -export IAER=1111 - - diff --git a/tests/tests/fv3_gfsv16_csawmgt b/tests/tests/fv3_gfsv16_csawmgt deleted file mode 100644 index 540f7f6ec1..0000000000 --- a/tests/tests/fv3_gfsv16_csawmgt +++ /dev/null @@ -1,67 +0,0 @@ -############################################################################### -# -# FV3 gfsv16_csawmgt test -# -############################################################################### - -export TEST_DESCR="Compare FV3 gfsv16 csawmgt results with previous trunk version" - -export CNTL_DIR=fv3_gfsv16_csawmgt - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="600" - -export INPUT_NML=gfsv16_csawmg.nml.IN -export FV3_RUN=gfsv16_csawmg_run.IN -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. -export IAER=111 - - diff --git a/tests/tests/fv3_gocart_clm b/tests/tests/fv3_gocart_clm deleted file mode 100644 index 4edc8b8892..0000000000 --- a/tests/tests/fv3_gocart_clm +++ /dev/null @@ -1,69 +0,0 @@ -############################################################################### -# -# FV3 gocart_clm test -# -############################################################################### - -export TEST_DESCR="Compare FV3 gocart_clm results with previous trunk version" - -export CNTL_DIR=fv3_gocart_clm - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="1200" -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. -export IAER=1111 -export HYBEDMF=.true. -export SATMEDMF=.false. - - -export INPUT_NML=fv3.gocart.nml.IN -export FV3_RUN=fv3_gocart.IN - diff --git a/tests/tests/fv3_h2ophys b/tests/tests/fv3_h2ophys deleted file mode 100644 index c24e25828d..0000000000 --- a/tests/tests/fv3_h2ophys +++ /dev/null @@ -1,81 +0,0 @@ -############################################################################### -# -# FV3 H2O physics test -# -############################################################################### - -export TEST_DESCR="Compare FV3 H2O physics results with previous trunk version" - -export CNTL_DIR=fv3_h2ophys - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export FV3_RUN=fv3_run.IN -export INPUT_NML=input.nml.IN - -export H2O_PHYS=.T. - diff --git a/tests/tests/fv3_iau b/tests/tests/fv3_iau deleted file mode 100644 index 3a0065eb1a..0000000000 --- a/tests/tests/fv3_iau +++ /dev/null @@ -1,89 +0,0 @@ -############################################################################### -# -# FV3 IAU test -# -############################################################################### - -export TEST_DESCR="Compare FV3 IAU results with previous trunk version" - -export CNTL_DIR=fv3_iau - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf027.tile1.nc \ - phyf027.tile2.nc \ - phyf027.tile3.nc \ - phyf027.tile4.nc \ - phyf027.tile5.nc \ - phyf027.tile6.nc \ - phyf048.tile1.nc \ - phyf048.tile2.nc \ - phyf048.tile3.nc \ - phyf048.tile4.nc \ - phyf048.tile5.nc \ - phyf048.tile6.nc \ - dynf027.tile1.nc \ - dynf027.tile2.nc \ - dynf027.tile3.nc \ - dynf027.tile4.nc \ - dynf027.tile5.nc \ - dynf027.tile6.nc \ - dynf048.tile1.nc \ - dynf048.tile2.nc \ - dynf048.tile3.nc \ - dynf048.tile4.nc \ - dynf048.tile5.nc \ - dynf048.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export WARM_START=.T. -export NGGPS_IC=.F. -export EXTERNAL_IC=.F. -export MAKE_NH=.F. -export MOUNTAIN=.T. -export NA_INIT=0 -export FHMAX=48 -export FDIAG=3 -export NSTF_NAME=2,0,1,0,5 -export IAU_INC_FILES="fv3_increment.nc" -export IAU_DRYMASSFIXER=.true. - - diff --git a/tests/tests/fv3_lheatstrg b/tests/tests/fv3_lheatstrg deleted file mode 100644 index 093173f650..0000000000 --- a/tests/tests/fv3_lheatstrg +++ /dev/null @@ -1,62 +0,0 @@ -############################################################################### -# -# FV3 lheatstrg test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control with lheatstrg on Gaussian grid nemsio output results with previous trunk version" - -export CNTL_DIR=fv3_lheatstrg - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export LHEATSTRG=.T. -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - diff --git a/tests/tests/fv3_multigases b/tests/tests/fv3_multigases deleted file mode 100644 index b48993ef27..0000000000 --- a/tests/tests/fv3_multigases +++ /dev/null @@ -1,93 +0,0 @@ -############################################################################### -# -# FV3 multi-gases test -# -############################################################################### - -export TEST_DESCR="Compare FV3 multi-gases results with previous trunk version" - -export CNTL_DIR=fv3_multigases - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf006.tile1.nc \ - phyf006.tile2.nc \ - phyf006.tile3.nc \ - phyf006.tile4.nc \ - phyf006.tile5.nc \ - phyf006.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf006.tile1.nc \ - dynf006.tile2.nc \ - dynf006.tile3.nc \ - dynf006.tile4.nc \ - dynf006.tile5.nc \ - dynf006.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 -export NPZ=149 -export NPZP=150 -DT_ATMOS="225" -SYEAR="2017" -SMONTH="01" -SDAY="19" -SHOUR="06" -export FHMAX=06 -export FDIAG=0,1,2,3,4,5,6 -export NSTF_NAME=0,0,1,0,5 -export INPUT_NML=multi_gases.nml.IN -export FV3_RUN=multigases_run.IN diff --git a/tests/tests/fv3_ozphys_2015 b/tests/tests/fv3_ozphys_2015 deleted file mode 100644 index 9bcb51bb9f..0000000000 --- a/tests/tests/fv3_ozphys_2015 +++ /dev/null @@ -1,81 +0,0 @@ -############################################################################### -# -# FV3 ozone physics 2015 test -# -############################################################################### - -export TEST_DESCR="Compare FV3 ozone physics 2015 results with previous trunk version" - -export CNTL_DIR=fv3_ozphys_2015 - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export FV3_RUN=fv3_run.IN - -export OZ_PHYS_OLD=.F. -export OZ_PHYS_NEW=.T. - diff --git a/tests/tests/fv3_read_inc b/tests/tests/fv3_read_inc deleted file mode 100644 index 4e6706aab7..0000000000 --- a/tests/tests/fv3_read_inc +++ /dev/null @@ -1,88 +0,0 @@ -############################################################################### -# -# FV3 read_inc test -# -############################################################################### - -export TEST_DESCR="Compare FV3 read_inc results with previous trunk version" - -export CNTL_DIR=fv3_read_inc - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf027.tile1.nc \ - phyf027.tile2.nc \ - phyf027.tile3.nc \ - phyf027.tile4.nc \ - phyf027.tile5.nc \ - phyf027.tile6.nc \ - phyf048.tile1.nc \ - phyf048.tile2.nc \ - phyf048.tile3.nc \ - phyf048.tile4.nc \ - phyf048.tile5.nc \ - phyf048.tile6.nc \ - dynf027.tile1.nc \ - dynf027.tile2.nc \ - dynf027.tile3.nc \ - dynf027.tile4.nc \ - dynf027.tile5.nc \ - dynf027.tile6.nc \ - dynf048.tile1.nc \ - dynf048.tile2.nc \ - dynf048.tile3.nc \ - dynf048.tile4.nc \ - dynf048.tile5.nc \ - dynf048.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export WARM_START=.T. -export NGGPS_IC=.F. -export EXTERNAL_IC=.F. -export MAKE_NH=.F. -export MOUNTAIN=.T. -export NA_INIT=0 -export FHMAX=48 -export FDIAG=3 -export READ_INCREMENT=.T. -export NSTF_NAME=2,0,1,0,5 - - diff --git a/tests/tests/fv3_regional_c768 b/tests/tests/fv3_regional_c768 deleted file mode 100644 index 348196c5da..0000000000 --- a/tests/tests/fv3_regional_c768 +++ /dev/null @@ -1,22 +0,0 @@ -############################################################################### -# -# FV3 regional c768 test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional c768 results with previous trunk version" - -export CNTL_DIR=fv3_regional_c768 - -export LIST_FILES=" atmos_4xdaily.nc \ - fv3_history2d.nc \ - fv3_history.nc " - -export_fv3 - -export TASKS=480 -export WLCLK=30 - -export FV3_RUN=fv3_regional_run.IN - -export INPUT_NML=regional_c768.nml.IN \ No newline at end of file diff --git a/tests/tests/fv3_regional_control b/tests/tests/fv3_regional_control deleted file mode 100644 index df60ffb255..0000000000 --- a/tests/tests/fv3_regional_control +++ /dev/null @@ -1,28 +0,0 @@ -############################################################################### -# -# FV3 regional control test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional control results with previous trunk version" - -export CNTL_DIR=fv3_regional_control - -export LIST_FILES=" atmos_4xdaily.nc \ - fv3_history2d.nc \ - fv3_history.nc \ - RESTART/fv_core.res.tile1_new.nc \ - RESTART/fv_tracer.res.tile1_new.nc" - -export_fv3 - -export TASKS=24 - -export FV3_RUN=fv3_regional_run.IN - -export INPUT_NML=regional.nml.IN - -export FDIAG=3 -export INPES=4 -export JNPES=6 -export WRITE_RESTART_WITH_BCS=.true. diff --git a/tests/tests/fv3_regional_quilt b/tests/tests/fv3_regional_quilt deleted file mode 100644 index 2b46afbc52..0000000000 --- a/tests/tests/fv3_regional_quilt +++ /dev/null @@ -1,27 +0,0 @@ -############################################################################### -# -# FV3 regional control test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional quilt results with previous trunk version" - -export CNTL_DIR=fv3_regional_quilt - -export LIST_FILES=" atmos_4xdaily.nc \ - dynf000.nc \ - dynf024.nc \ - phyf000.nc \ - phyf024.nc " - -export_fv3 - -export TASKS=28 - -export FV3_RUN=fv3_regional_run.IN - -export INPUT_NML=regional.nml.IN - -export FDIAG=3 -export INPES=6 -export JNPES=4 diff --git a/tests/tests/fv3_regional_restart b/tests/tests/fv3_regional_restart deleted file mode 100644 index d6c84732be..0000000000 --- a/tests/tests/fv3_regional_restart +++ /dev/null @@ -1,37 +0,0 @@ -############################################################################### -# -# FV3 regional restart test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional restart results with previous trunk version" - -export CNTL_DIR=fv3_regional_restart - -export LIST_FILES=" atmos_4xdaily.nc \ - fv3_history2d.nc \ - fv3_history.nc " - -export_fv3 - -export TASKS=24 -export WARM_START=.T. - -export FV3_RUN=fv3_regional_run.IN - -export INPUT_NML=regional.nml.IN - -export FDIAG=3 -export INPES=4 -export JNPES=6 - -export WARM_START=.T. -export NGGPS_IC=.F. -export EXTERNAL_IC=.F. -# DH* The correct setting would be .F.? However the official -# regression test baseline uses MAKE_NH=.T. -#export MAKE_NH=.F. -export MAKE_NH=.T. -# *DH -export MOUNTAIN=.T. -export NA_INIT=0 diff --git a/tests/tests/fv3_restart b/tests/tests/fv3_restart deleted file mode 100644 index 11f312f336..0000000000 --- a/tests/tests/fv3_restart +++ /dev/null @@ -1,87 +0,0 @@ -############################################################################### -# -# FV3 restart test -# -############################################################################### - -export TEST_DESCR="Compare FV3 restart results with previous trunk version" - -export CNTL_DIR=fv3_restart - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf027.tile1.nc \ - phyf027.tile2.nc \ - phyf027.tile3.nc \ - phyf027.tile4.nc \ - phyf027.tile5.nc \ - phyf027.tile6.nc \ - phyf048.tile1.nc \ - phyf048.tile2.nc \ - phyf048.tile3.nc \ - phyf048.tile4.nc \ - phyf048.tile5.nc \ - phyf048.tile6.nc \ - dynf027.tile1.nc \ - dynf027.tile2.nc \ - dynf027.tile3.nc \ - dynf027.tile4.nc \ - dynf027.tile5.nc \ - dynf027.tile6.nc \ - dynf048.tile1.nc \ - dynf048.tile2.nc \ - dynf048.tile3.nc \ - dynf048.tile4.nc \ - dynf048.tile5.nc \ - dynf048.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export WARM_START=.T. -export NGGPS_IC=.F. -export EXTERNAL_IC=.F. -export MAKE_NH=.F. -export MOUNTAIN=.T. -export NA_INIT=0 -export FHMAX=48 -export FDIAG=3 -export NSTF_NAME=2,0,1,0,5 - - diff --git a/tests/tests/fv3_sas b/tests/tests/fv3_sas deleted file mode 100644 index 0c86ddc372..0000000000 --- a/tests/tests/fv3_sas +++ /dev/null @@ -1,67 +0,0 @@ -############################################################################### -# -# FV3 SAS test -# -############################################################################### - -export TEST_DESCR="Compare FV3 SAS results with previous trunk version" - -export CNTL_DIR=fv3_sas - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="1200" -export IMFSHALCNV=1 -export IMFDEEPCNV=1 -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - -export INPUT_NML=gfdlmp.nml.IN -export FV3_RUN=gfdlmp_run.IN - diff --git a/tests/tests/fv3_satmedmf b/tests/tests/fv3_satmedmf deleted file mode 100644 index da8a7ed947..0000000000 --- a/tests/tests/fv3_satmedmf +++ /dev/null @@ -1,66 +0,0 @@ -############################################################################### -# -# FV3 satmedmf test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control with satmedmf on Gaussian grid nemsio output results with previous trunk version" - -export CNTL_DIR=fv3_satmedmf - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export DT_ATMOS="1200" - -export SATMEDMF=.T. -export HYBEDMF=.F. -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. -export FV3_RUN=satmedmf_run.IN - diff --git a/tests/tests/fv3_satmedmfq b/tests/tests/fv3_satmedmfq deleted file mode 100644 index eb2c3b2e24..0000000000 --- a/tests/tests/fv3_satmedmfq +++ /dev/null @@ -1,67 +0,0 @@ -############################################################################### -# -# FV3 satmedmfq test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control with satmedmfq on Gaussian grid nemsio output results with previous trunk version" - -export CNTL_DIR=fv3_satmedmfq - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export DT_ATMOS="1200" - -export SATMEDMF=.T. -export ISATMEDMF=1 -export HYBEDMF=.F. -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. -export FV3_RUN=satmedmf_run.IN - diff --git a/tests/tests/fv3_stochy b/tests/tests/fv3_stochy deleted file mode 100644 index 08910eb079..0000000000 --- a/tests/tests/fv3_stochy +++ /dev/null @@ -1,85 +0,0 @@ -############################################################################### -# -# FV3 stochastic test -# -############################################################################### - -export TEST_DESCR="Compare FV3 stochastic results with previous trunk version" - -export CNTL_DIR=fv3_stochy - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf012.tile1.nc \ - phyf012.tile2.nc \ - phyf012.tile3.nc \ - phyf012.tile4.nc \ - phyf012.tile5.nc \ - phyf012.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf012.tile1.nc \ - dynf012.tile2.nc \ - dynf012.tile3.nc \ - dynf012.tile4.nc \ - dynf012.tile5.nc \ - dynf012.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export DO_SPPT=.T. -export DO_SHUM=.T. -export DO_SKEB=.T. -export SKEB=0.3 -export SHUM=0.003 -export SPPT=0.2 -export DT_ATMOS=600 -export FHMAX=12 - diff --git a/tests/tests/fv3_stretched b/tests/tests/fv3_stretched deleted file mode 100644 index 94ccbb2936..0000000000 --- a/tests/tests/fv3_stretched +++ /dev/null @@ -1,88 +0,0 @@ -############################################################################### -# -# FV3 control test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control results with previous trunk version" - -export CNTL_DIR=fv3_stretched -export LIST_FILES=" atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - fv3_history2d.tile1.nc \ - fv3_history2d.tile2.nc \ - fv3_history2d.tile3.nc \ - fv3_history2d.tile4.nc \ - fv3_history2d.tile5.nc \ - fv3_history2d.tile6.nc \ - fv3_history.tile1.nc \ - fv3_history.tile2.nc \ - fv3_history.tile3.nc \ - fv3_history.tile4.nc \ - fv3_history.tile5.nc \ - fv3_history.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - -export_fv3 - -INPES=$INPES_stretch -JNPES=$JNPES_stretch -TPN=$TPN_stretch -TASKS=$TASKS_stretch - -MAKE_NH='.T.' -NA_INIT='1' -EXTERNAL_IC='.T.' -NGGPS_IC='.T.' -MOUNTAIN='.F.' -WARM_START='.F.' -FDIAG='3' - -HYBEDMF='.T.' -SATMEDMF='.F.' - -SYEAR="2018" -SMONTH="10" -SDAY="15" -SHOUR="00" -FHMAX="48" -DT_ATMOS="450" -QUILTING=.false. - -export INPUT_NML=stretched-input.nml.IN -export FV3_RUN=fv3_stretched_run.IN diff --git a/tests/tests/fv3_stretched_nest b/tests/tests/fv3_stretched_nest deleted file mode 100644 index 4107db9b07..0000000000 --- a/tests/tests/fv3_stretched_nest +++ /dev/null @@ -1,108 +0,0 @@ -############################################################################### -# -# FV3 control test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control results with previous trunk version" - -export CNTL_DIR=fv3_stretched_nest -export LIST_FILES=" atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - atmos_4xdaily.nest02.nc \ - fv3_history2d.tile1.nc \ - fv3_history2d.tile2.nc \ - fv3_history2d.tile3.nc \ - fv3_history2d.tile4.nc \ - fv3_history2d.tile5.nc \ - fv3_history2d.tile6.nc \ - fv3_history2d.nest02.nc \ - fv3_history.tile1.nc \ - fv3_history.tile2.nc \ - fv3_history.tile3.nc \ - fv3_history.tile4.nc \ - fv3_history.tile5.nc \ - fv3_history.tile6.nc \ - fv3_history.nest02.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.nest02.nc \ - RESTART/fv_BC_ne.res.nest02.nc \ - RESTART/fv_BC_sw.res.nest02.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_core.res.nest02.tile7.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_srf_wnd.res.nest02.tile7.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/fv_tracer.res.nest02.tile7.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/phy_data.nest02.tile7.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/sfc_data.nest02.tile7.nc" - -export_fv3 - -INPES=$INPES_strnest -JNPES=$JNPES_strnest -TPN=$TPN_strnest -TASKS=$TASKS_strnest - -export INPES_NEST='6' -export JNPES_NEST='8' -export MAKE_NH_NEST='.F.' - -export MAKE_NH='.T.' -export NA_INIT='1' -export EXTERNAL_IC='.T.' -export NGGPS_IC='.T.' -export MOUNTAIN='.F.' -export WARM_START='.F.' -export FDIAG='3' - -export HYBEDMF='.T.' -export SATMEDMF='.F.' - -export SYEAR="2018" -export SMONTH="10" -export SDAY="15" -export SHOUR="00" -export FHMAX="48" -export DT_ATMOS="450" -QUILTING=.false. - -export INPUT_NML=stretched-nest-input.nml.IN -export INPUT_NEST02_NML=input_nest02.nml.IN -export FV3_RUN=fv3_stretched_run.IN - -if [[ $MACHINE_ID = *.gnu ]]; then - export WLCLK=30 -fi diff --git a/tests/tests/fv3_stretched_nest_debug b/tests/tests/fv3_stretched_nest_debug deleted file mode 100644 index 446ee9502c..0000000000 --- a/tests/tests/fv3_stretched_nest_debug +++ /dev/null @@ -1,46 +0,0 @@ -############################################################################### -# -# FV3 control test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control results with previous trunk version" - -export CNTL_DIR=fv3_stretched_nest -export LIST_FILES= - -export_fv3 - -INPES=$INPES_strnest -JNPES=$JNPES_strnest -TPN=$TPN_strnest -TASKS=$TASKS_strnest - -export INPES_NEST='6' -export JNPES_NEST='8' -export MAKE_NH_NEST='.F.' - -export MAKE_NH='.T.' -export NA_INIT='1' -export EXTERNAL_IC='.T.' -export NGGPS_IC='.T.' -export MOUNTAIN='.F.' -export WARM_START='.F.' -export FDIAG='3' - -export HYBEDMF='.T.' -export SATMEDMF='.F.' - -export SYEAR="2018" -export SMONTH="10" -export SDAY="15" -export SHOUR="00" -export FHMAX="03" -export DT_ATMOS="450" -QUILTING=.false. - -export WLCLK=30 - -export INPUT_NML=stretched-nest-input.nml.IN -export INPUT_NEST02_NML=input_nest02.nml.IN -export FV3_RUN=fv3_stretched_run.IN diff --git a/tests/tests/fv3_stretched_nest_quilt b/tests/tests/fv3_stretched_nest_quilt deleted file mode 100644 index 4b9a79ba43..0000000000 --- a/tests/tests/fv3_stretched_nest_quilt +++ /dev/null @@ -1,102 +0,0 @@ -############################################################################### -# -# FV3 control test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control results with previous trunk version" - -export CNTL_DIR=fv3_stretched_nest_quilt -export LIST_FILES=" atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - atmos_4xdaily.nest02.nc \ - dynf000.nc \ - dynf001.nc \ - dynf006.nc \ - dynf012.nc \ - dynf024.nc \ - dynf048.nc \ - phyf000.nc \ - phyf001.nc \ - phyf006.nc \ - phyf012.nc \ - phyf024.nc \ - phyf048.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.nest02.nc \ - RESTART/fv_BC_ne.res.nest02.nc \ - RESTART/fv_BC_sw.res.nest02.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_core.res.nest02.tile7.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_srf_wnd.res.nest02.tile7.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/fv_tracer.res.nest02.tile7.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/phy_data.nest02.tile7.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/sfc_data.nest02.tile7.nc" - -export_fv3 - -INPES=$INPES_strnest -JNPES=$JNPES_strnest -TPN=$TPN_strnest -TASKS=108 - -export INPES_NEST='6' -export JNPES_NEST='8' -export MAKE_NH_NEST='.F.' - -export MAKE_NH='.T.' -export NA_INIT='1' -export EXTERNAL_IC='.T.' -export NGGPS_IC='.T.' -export MOUNTAIN='.F.' -export WARM_START='.F.' -export FDIAG='3' - -export HYBEDMF='.T.' -export SATMEDMF='.F.' - -export SYEAR="2018" -export SMONTH="10" -export SDAY="15" -export SHOUR="00" -export FHMAX="48" -export DT_ATMOS="450" - -export INPUT_NML=stretched-nest-input.nml.IN -export INPUT_NEST02_NML=input_nest02.nml.IN -export MODEL_CONFIGURE=stretched-nest-quilt-model_configure.IN -export FV3_RUN=fv3_stretched_run.IN diff --git a/tests/tests/fv3_thompson b/tests/tests/fv3_thompson deleted file mode 100644 index fdb367122c..0000000000 --- a/tests/tests/fv3_thompson +++ /dev/null @@ -1,86 +0,0 @@ -############################################################################### -# -# FV3 Thompson MP test -# -############################################################################### - -export TEST_DESCR="Compare FV3 Thompson MP results with previous trunk version" - -export CNTL_DIR=fv3_thompson - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -export DT_ATMOS="1200" -export LRADAR=.T. - -export INPUT_NML=thompson.nml.IN -export FV3_RUN=thompson_run.IN - - -if [[ $MACHINE_ID = cheyenne.intel ]]; then - export WLCLK=30 -fi \ No newline at end of file diff --git a/tests/tests/fv3_wrtGauss_nemsio b/tests/tests/fv3_wrtGauss_nemsio deleted file mode 100644 index 20d2362686..0000000000 --- a/tests/tests/fv3_wrtGauss_nemsio +++ /dev/null @@ -1,61 +0,0 @@ -############################################################################### -# -# FV3 Gaussian grid nemsio output test -# -############################################################################### - -export TEST_DESCR="Compare FV3 Gaussian grid nemsio output results with previous trunk version" - -export CNTL_DIR=fv3_wrtGauss_nemsio - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - diff --git a/tests/tests/fv3_wrtGauss_nemsio_c192 b/tests/tests/fv3_wrtGauss_nemsio_c192 deleted file mode 100644 index 3adc298761..0000000000 --- a/tests/tests/fv3_wrtGauss_nemsio_c192 +++ /dev/null @@ -1,83 +0,0 @@ -############################################################################### -# -# FV3 c192 Gaussian grid nemsio output test -# -################################################################################ - -export TEST_DESCR="Compare FV3 c192 Gaussian grid nemsio output results with previous trunk version" - -export CNTL_DIR=fv3_wrtGauss_nemsio_c192 - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 -export TASKS=300 -export INPES=6 -export JNPES=8 -export NPX=193 -export NPY=193 -export NPZ=64 -export NPZP=65 -export SYEAR=2017 -export SMONTH=11 -export SDAY=01 -export DT_ATMOS=900 -export FHMAX=24 -export WLCLK=30 -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=12 -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. -export IMO=768 -export JMO=384 -export FNALBC="'global_snowfree_albedo.bosu.t382.768.384.rg.grb'," -export FNVETC="'global_vegtype.igbp.t382.768.384.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," -export FNSMCC="'global_soilmgldas.t382.768.384.grb'," -export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," - -# diff --git a/tests/tests/fv3_wrtGauss_nemsio_c768 b/tests/tests/fv3_wrtGauss_nemsio_c768 deleted file mode 100644 index 566c744e48..0000000000 --- a/tests/tests/fv3_wrtGauss_nemsio_c768 +++ /dev/null @@ -1,104 +0,0 @@ -############################################################################### -# -# FV3 c768 Gaussian grid nemsio output test -# -################################################################################ - -export TEST_DESCR="Compare FV3 c768 Gaussian grid nemsio output results with previous trunk version" - -export CNTL_DIR=fv3_wrtGauss_nemsio_c768 - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf006.nemsio \ - dynf006.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - out_grd.glo_10m - out_grd.ant_9km - out_grd.aoc_9km" - - -export_fv3 - -export TASKS=1470 -if [[ $MACHINE_ID = cheyenne.* ]]; then - export TPN=36 -elif [[ $MACHINE_ID = hera.* ]]; then - export TPN=10 -elif [[ $MACHINE_ID = wcoss_cray ]]; then - export TPN=6 -else - export TPN=12 -fi - -export INPES=16 -export JNPES=12 -export NPX=769 -export NPY=769 -export NPZ=64 -export NPZP=65 -export SYEAR=2017 -export SMONTH=01 -export SDAY=06 -export DT_ATMOS=225 -export FHMAX=06 -export WLCLK=30 -export WRITE_GROUP=3 -export WRTTASK_PER_GROUP=36 -export FDIAG=0,1,2,3,4,5,6 -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. -export IMO=3072 -export JMO=1536 -export FNALBC="'global_snowfree_albedo.bosu.t1534.3072.1536.rg.grb'," -export FNVETC="'global_vegtype.igbp.t1534.3072.1536.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t1534.3072.1536.rg.grb'," -export FNSMCC="'global_soilmgldas.t1534.3072.1536.grb'," -export FNABSC="'global_mxsnoalb.uariz.t1534.3072.1536.rg.grb'," - -export CPL=.true. -export CPLWAV=.T. -export atm_model='fv3' -export atm_petlist_bounds="0 1259" -export wav_model='ww3' -export wav_petlist_bounds="1260 1469" -export coupling_interval_sec=1800.0 #coupling time step, want it to be multiple of 1800 and FV3 time step -export NEMS_CONFIGURE="nems.configure.blocked_atm_wav.IN" - diff --git a/tests/tests/fv3_wrtGauss_netcdf b/tests/tests/fv3_wrtGauss_netcdf deleted file mode 100644 index c0690ec0e3..0000000000 --- a/tests/tests/fv3_wrtGauss_netcdf +++ /dev/null @@ -1,59 +0,0 @@ -############################################################################### -# -# FV3 Gaussian grid netcdf output test -# -############################################################################### - -export TEST_DESCR="Compare FV3 Gaussian grid netcdf output results with previous trunk version" - -export CNTL_DIR=fv3_wrtGauss_netcdf - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nc \ - phyf024.nc \ - dynf000.nc \ - dynf024.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'netcdf'" - diff --git a/tests/tests/fv3_wrtGauss_netcdf_debug b/tests/tests/fv3_wrtGauss_netcdf_debug deleted file mode 100644 index fe2799abe9..0000000000 --- a/tests/tests/fv3_wrtGauss_netcdf_debug +++ /dev/null @@ -1,18 +0,0 @@ -############################################################################### -# -# FV3 Gaussian grid netcdf output test -# -############################################################################### - -export TEST_DESCR="Compare FV3 Gaussian grid netcdf output results with previous trunk version" - -export CNTL_DIR=fv3_wrtGauss_netcdf - -export LIST_FILES="" - -export_fv3 - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'netcdf'" -export FHMAX="03" - diff --git a/tests/tests/fv3_wrtGauss_netcdf_esmf b/tests/tests/fv3_wrtGauss_netcdf_esmf deleted file mode 100644 index 63c5713f1f..0000000000 --- a/tests/tests/fv3_wrtGauss_netcdf_esmf +++ /dev/null @@ -1,59 +0,0 @@ -############################################################################### -# -# FV3 Gaussian grid netcdf output test -# -############################################################################### - -export TEST_DESCR="Compare FV3 Gaussian grid netcdf output results with previous trunk version" - -export CNTL_DIR=fv3_wrtGauss_netcdf_esmf - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nc \ - phyf024.nc \ - dynf000.nc \ - dynf024.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'netcdf_esmf'" - diff --git a/tests/tests/fv3_wrtGlatlon_netcdf b/tests/tests/fv3_wrtGlatlon_netcdf deleted file mode 100644 index 1c38e65078..0000000000 --- a/tests/tests/fv3_wrtGlatlon_netcdf +++ /dev/null @@ -1,59 +0,0 @@ -############################################################################### -# -# FV3 Global latlon grid netcdf output test -# -############################################################################### - -export TEST_DESCR="Compare FV3 global latlon grid netcdf output results with previous trunk version" - -export CNTL_DIR=fv3_wrtGlatlon_netcdf - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nc \ - phyf024.nc \ - dynf000.nc \ - dynf024.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export OUTPUT_GRID="'global_latlon'" -export OUTPUT_FILE="'netcdf'" - diff --git a/tests/tests/fv3_wsm6 b/tests/tests/fv3_wsm6 deleted file mode 100644 index a6ac835a1a..0000000000 --- a/tests/tests/fv3_wsm6 +++ /dev/null @@ -1,82 +0,0 @@ -############################################################################### -# -# FV3 WSM6 MP test -# -############################################################################### - -export TEST_DESCR="Compare FV3 WSM6 MP results with previous trunk version" - -export CNTL_DIR=fv3_wsm6 - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -export DT_ATMOS="1200" -export LRADAR=.T. - -export INPUT_NML=wsm6.nml.IN -export FV3_RUN=wsm6_run.IN - From ea8a7aa9a8c6b8f85f50c20b7567a846c7e81fd9 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Fri, 22 Jan 2021 07:36:25 -0700 Subject: [PATCH 061/109] Update develop from NOAA-GSL: RUC ice, MYNN sfclay, stochastic land perturbations (#386) * Update .gitmodules and submodule pointer for fv3atm for gsl/develop branch * RUC ice for gsl/develop (replaces #47) (#49)Implementation of RUC LSM ice model in CCPP * Squash-merge climbfuji:rucice_gfsv16dzmin into gsl/develop * Add kice=9 to tests/tests/fv3_ccpp_rap and tests/tests/fv3_ccpp_hrrr * Change NEW_BASELINE directory for gsl/develop to avoid conflicts with development work on the authoritative branches * Add KICE=9 to tests/tests/fv3_ccpp_gsd_unified_ugwp and tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp * Revert change to .gitmodules and update submodule pointer for fv3atm * Update gsl/develop from develop 2020/12/08 (#50) * Updates to stochastic_physics_wrapper (#280) Fix to stochastic_physics_wrapper to allow for random patterns to update at a longer time-step than model * Update for Jet, bug fixes in running with frac_grid=T and GFDL MP, and in restarting with frac_grid=T (#304) Update the modulefile for jet.intel to enable UPP v10.0.0. The hpc-stack v1.0.0 pre-release is used for this. Small changes are made to tests.rt.sh for jet.intel and gaea.intel (consistency with other platforms). The submodule pointer update for fv3atm addresses bugs in the ufs-weather-model with frac_grid=T and GFDL microphysics, and with restarting the model when frac_grid=T (from @shansun6 and @SMoorthi-emc). * Land stochastic perturbations (#57) --- FV3 | 2 +- stochastic_physics | 2 +- tests/RegressionTests_cheyenne.gnu.log | 94 ++-- tests/RegressionTests_cheyenne.intel.log | 402 ++++++++--------- tests/RegressionTests_gaea.intel.log | 270 +++++------ tests/RegressionTests_hera.gnu.log | 94 ++-- tests/RegressionTests_hera.intel.log | 418 ++++++++--------- tests/RegressionTests_orion.intel.log | 418 ++++++++--------- tests/RegressionTests_wcoss_cray.log | 266 +++++------ tests/RegressionTests_wcoss_dell_p3.log | 424 +++++++++--------- tests/default_vars.sh | 2 + tests/parm/ccpp_gsd.nml.IN | 4 + tests/parm/ccpp_gsd_sar.nml.IN | 3 + tests/parm/ccpp_lndp.nml.IN | 1 + tests/rt.conf | 4 +- tests/rt.sh | 4 +- tests/rt_ccpp_dev.conf | 4 + tests/tests/fv3_ccpp_gsd | 2 +- tests/tests/fv3_ccpp_gsd_coldstart | 2 +- tests/tests/fv3_ccpp_gsd_debug | 2 +- tests/tests/fv3_ccpp_gsd_diag3d_debug | 2 +- tests/tests/fv3_ccpp_gsd_drag_suite | 1 + .../fv3_ccpp_gsd_drag_suite_unified_ugwp | 2 + tests/tests/fv3_ccpp_gsd_lndp | 100 +++++ tests/tests/fv3_ccpp_gsd_mynnsfc | 1 + tests/tests/fv3_ccpp_gsd_mynnsfc_debug | 1 + tests/tests/fv3_ccpp_gsd_noah_lndp | 99 ++++ tests/tests/fv3_ccpp_gsd_unified_ugwp | 2 + tests/tests/fv3_ccpp_gsd_warmstart | 2 +- tests/tests/fv3_ccpp_hrrr | 2 + tests/tests/fv3_ccpp_rap | 2 + 31 files changed, 1428 insertions(+), 1204 deletions(-) create mode 100644 tests/tests/fv3_ccpp_gsd_lndp create mode 100644 tests/tests/fv3_ccpp_gsd_noah_lndp diff --git a/FV3 b/FV3 index a4cf6db526..34c326c0c0 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit a4cf6db5264d31c665f8a9839b4c5c1a81333c58 +Subproject commit 34c326c0c041a86cc253cf76ccc7d874a571c766 diff --git a/stochastic_physics b/stochastic_physics index e4913c062b..c39bb8a09a 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit e4913c062b520cf8d76d9c82f90636aee19cbddb +Subproject commit c39bb8a09a196a9dd17ea3fb52152b61ef2881ae diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 680902f75e..5272ad7200 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Tue Jan 19 11:54:40 MST 2021 +Thu Jan 21 12:09:03 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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-20210115/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20312/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19090/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 19 12:13:10 MST 2021 -Elapsed time: 00h:18m:30s. Have a nice day! +Thu Jan 21 12:26:44 MST 2021 +Elapsed time: 00h:17m:41s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 72773919c8..fb0ca045de 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Tue Jan 19 13:35:06 MST 2021 +Thu Jan 21 13:41:41 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -82,8 +82,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-20210115/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -150,8 +150,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-20210115/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -218,8 +218,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-20210115/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......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-20210115/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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-20210115/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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-20210115/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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-20210115/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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-20210115/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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-20210115/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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-20210115/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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-20210115/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_lndp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lndp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1024,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -1092,8 +1092,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -1215,8 +1215,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1226,8 +1226,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1235,8 +1235,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1246,19 +1246,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........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-20210115/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -1307,8 +1307,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,8 +1355,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -1403,8 +1403,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -1451,8 +1451,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1499,8 +1499,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1547,8 +1547,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1595,8 +1595,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -1643,8 +1643,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -1695,8 +1695,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1749,8 +1749,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_rap_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rap_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_hrrr_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_hrrr_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2045,8 +2045,8 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -2113,8 +2113,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -2181,8 +2181,8 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -2249,8 +2249,8 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -2329,8 +2329,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta results .... Test 043 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -2379,8 +2379,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... Test 044 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -2447,8 +2447,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... Test 045 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -2515,8 +2515,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -2583,8 +2583,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -2645,8 +2645,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gocart_clm_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -2693,8 +2693,8 @@ Checking test 049 fv3_ccpp_gocart_clm results .... Test 049 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -2761,8 +2761,8 @@ Checking test 050 fv3_ccpp_gfs_v16beta_flake results .... Test 050 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -2829,8 +2829,8 @@ Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -2847,8 +2847,8 @@ Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -2915,8 +2915,8 @@ Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... Test 053 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -2983,8 +2983,8 @@ Checking test 054 fv3_ccpp_gfs_v16beta_debug results .... Test 054 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -3051,8 +3051,8 @@ Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -3119,8 +3119,8 @@ Checking test 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -3187,8 +3187,8 @@ Checking test 057 fv3_ccpp_gsd_debug results .... Test 057 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -3255,8 +3255,8 @@ Checking test 058 fv3_ccpp_gsd_diag3d_debug results .... Test 058 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -3323,8 +3323,8 @@ Checking test 059 fv3_ccpp_thompson_debug results .... Test 059 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -3391,8 +3391,8 @@ Checking test 060 fv3_ccpp_thompson_no_aero_debug results .... Test 060 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -3459,8 +3459,8 @@ Checking test 061 fv3_ccpp_rrfs_v1beta_debug results .... Test 061 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -3527,8 +3527,8 @@ Checking test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -3545,8 +3545,8 @@ Checking test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_control_prod Checking test 064 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3598,8 +3598,8 @@ Checking test 064 cpld_control results .... Test 064 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restart_prod Checking test 065 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3651,8 +3651,8 @@ Checking test 065 cpld_restart results .... Test 065 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_controlfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_controlfrac_prod Checking test 066 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3704,8 +3704,8 @@ Checking test 066 cpld_controlfrac results .... Test 066 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restartfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restartfrac_prod Checking test 067 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3757,8 +3757,8 @@ Checking test 067 cpld_restartfrac results .... Test 067 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_2threads_prod Checking test 068 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3810,8 +3810,8 @@ Checking test 068 cpld_2threads results .... Test 068 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_decomp_prod Checking test 069 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3863,8 +3863,8 @@ Checking test 069 cpld_decomp results .... Test 069 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_satmedmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_satmedmf_prod Checking test 070 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3916,8 +3916,8 @@ Checking test 070 cpld_satmedmf results .... Test 070 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_ca_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_ca_prod Checking test 071 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3969,8 +3969,8 @@ Checking test 071 cpld_ca results .... Test 071 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_control_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_control_c192_prod Checking test 072 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4022,8 +4022,8 @@ Checking test 072 cpld_control_c192 results .... Test 072 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restart_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restart_c192_prod Checking test 073 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4075,8 +4075,8 @@ Checking test 073 cpld_restart_c192 results .... Test 073 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_controlfrac_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_controlfrac_c192_prod Checking test 074 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4128,8 +4128,8 @@ Checking test 074 cpld_controlfrac_c192 results .... Test 074 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restartfrac_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restartfrac_c192_prod Checking test 075 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4181,8 +4181,8 @@ Checking test 075 cpld_restartfrac_c192 results .... Test 075 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_control_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_control_c384_prod Checking test 076 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4237,8 +4237,8 @@ Checking test 076 cpld_control_c384 results .... Test 076 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restart_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restart_c384_prod Checking test 077 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4293,8 +4293,8 @@ Checking test 077 cpld_restart_c384 results .... Test 077 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_controlfrac_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_controlfrac_c384_prod Checking test 078 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4349,8 +4349,8 @@ Checking test 078 cpld_controlfrac_c384 results .... Test 078 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restartfrac_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restartfrac_c384_prod Checking test 079 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4405,8 +4405,8 @@ Checking test 079 cpld_restartfrac_c384 results .... Test 079 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_bmark_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_bmark_prod Checking test 080 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4461,8 +4461,8 @@ Checking test 080 cpld_bmark results .... Test 080 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restart_bmark_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restart_bmark_prod Checking test 081 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4517,8 +4517,8 @@ Checking test 081 cpld_restart_bmark results .... Test 081 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_bmarkfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_bmarkfrac_prod Checking test 082 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4573,8 +4573,8 @@ Checking test 082 cpld_bmarkfrac results .... Test 082 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restart_bmarkfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restart_bmarkfrac_prod Checking test 083 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4629,8 +4629,8 @@ Checking test 083 cpld_restart_bmarkfrac results .... Test 083 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_bmarkfrac_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_bmarkfrac_v16_prod Checking test 084 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4685,8 +4685,8 @@ Checking test 084 cpld_bmarkfrac_v16 results .... Test 084 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_restart_bmarkfrac_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restart_bmarkfrac_v16_prod Checking test 085 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4741,8 +4741,8 @@ Checking test 085 cpld_restart_bmarkfrac_v16 results .... Test 085 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_bmark_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_wave_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_bmark_wave_prod Checking test 086 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4800,8 +4800,8 @@ Checking test 086 cpld_bmark_wave results .... Test 086 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_bmarkfrac_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_bmarkfrac_wave_prod Checking test 087 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4859,8 +4859,8 @@ Checking test 087 cpld_bmarkfrac_wave results .... Test 087 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_bmarkfrac_wave_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_bmarkfrac_wave_v16_prod Checking test 088 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4918,8 +4918,8 @@ Checking test 088 cpld_bmarkfrac_wave_v16 results .... Test 088 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_debug_prod Checking test 089 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4971,8 +4971,8 @@ Checking test 089 cpld_debug results .... Test 089 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/cpld_debugfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_debugfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_debugfrac_prod Checking test 090 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5024,8 +5024,8 @@ Checking test 090 cpld_debugfrac results .... Test 090 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/datm_control_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -5033,8 +5033,8 @@ Checking test 091 datm_control_cfsr results .... Test 091 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/datm_restart_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -5042,8 +5042,8 @@ Checking test 092 datm_restart_cfsr results .... Test 092 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/datm_control_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -5051,8 +5051,8 @@ Checking test 093 datm_control_gefs results .... Test 093 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/datm_bulk_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -5060,8 +5060,8 @@ Checking test 094 datm_bulk_cfsr results .... Test 094 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/datm_bulk_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_bulk_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 @@ -5069,8 +5069,8 @@ Checking test 095 datm_bulk_gefs results .... Test 095 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/datm_mx025_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/datm_mx025_cfsr Checking test 096 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5081,8 +5081,8 @@ Checking test 096 datm_mx025_cfsr results .... Test 096 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/datm_mx025_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_mx025_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/datm_mx025_gefs Checking test 097 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5093,8 +5093,8 @@ Checking test 097 datm_mx025_gefs results .... Test 097 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_62377/datm_debug_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_debug_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_55242/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 -Tue Jan 19 15:08:10 MST 2021 -Elapsed time: 01h:33m:05s. Have a nice day! +Thu Jan 21 15:03:37 MST 2021 +Elapsed time: 01h:21m:56s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index afe35c6f3b..599e9fd718 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Tue Jan 19 15:28:35 EST 2021 +Thu Jan 21 13:49:15 EST 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -82,8 +82,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-20210115/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -150,8 +150,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-20210115/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -218,8 +218,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-20210115/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......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-20210115/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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-20210115/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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-20210115/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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-20210115/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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-20210115/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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-20210115/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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-20210115/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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-20210115/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_ca_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_ca_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_lndp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lndp_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_iau_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_iau_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1024,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -1092,8 +1092,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -1215,8 +1215,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1226,8 +1226,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1235,8 +1235,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1246,19 +1246,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 ............ALT CHECK......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-20210115/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -1307,8 +1307,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,8 +1355,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -1403,8 +1403,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -1451,8 +1451,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1499,8 +1499,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1547,8 +1547,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1595,8 +1595,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -1643,8 +1643,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -1695,8 +1695,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_cpt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1749,8 +1749,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gsd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_rap_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rap_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_hrrr_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_hrrr_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2045,8 +2045,8 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -2113,8 +2113,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -2181,8 +2181,8 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfs_v15p2_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -2249,8 +2249,8 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfs_v16beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -2329,8 +2329,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta results .... Test 043 fv3_ccpp_gfs_v16beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -2379,8 +2379,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... Test 044 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -2447,8 +2447,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... Test 045 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -2515,8 +2515,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -2583,8 +2583,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -2645,8 +2645,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -2693,8 +2693,8 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Test 049 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -2741,8 +2741,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Test 050 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gocart_clm_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -2789,8 +2789,8 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Test 051 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -2857,8 +2857,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_flake results .... Test 052 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -2925,8 +2925,8 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -2943,8 +2943,8 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -3011,8 +3011,8 @@ Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... Test 055 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -3079,8 +3079,8 @@ Checking test 056 fv3_ccpp_gfs_v16beta_debug results .... Test 056 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -3147,8 +3147,8 @@ Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -3215,8 +3215,8 @@ Checking test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gsd_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -3283,8 +3283,8 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Test 059 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -3351,8 +3351,8 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Test 060 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -3419,8 +3419,8 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Test 061 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -3487,8 +3487,8 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Test 062 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -3555,8 +3555,8 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Test 063 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 @@ -3623,8 +3623,8 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_25228/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/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 -Tue Jan 19 16:17:34 EST 2021 -Elapsed time: 00h:49m:00s. Have a nice day! +Thu Jan 21 15:02:59 EST 2021 +Elapsed time: 01h:13m:44s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index b8df6fa0ef..4a3d8e5c20 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Wed Jan 20 04:15:51 UTC 2021 +Thu Jan 21 18:57:26 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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-20210115/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_81031/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/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 20 04:41:10 UTC 2021 -Elapsed time: 00h:25m:20s. Have a nice day! +Thu Jan 21 19:22:42 UTC 2021 +Elapsed time: 00h:25m:16s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index c5c1698940..9f8210f655 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Tue Jan 19 15:52:05 UTC 2021 +Thu Jan 21 18:57:51 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -82,8 +82,8 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -150,8 +150,8 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -218,8 +218,8 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......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-20210115/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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-20210115/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -2792,8 +2792,8 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -2840,8 +2840,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Test 052 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -2888,8 +2888,8 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Test 053 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -2936,8 +2936,8 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Test 054 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -3004,8 +3004,8 @@ Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... Test 055 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -3072,8 +3072,8 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -3090,8 +3090,8 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -3158,8 +3158,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -3226,8 +3226,8 @@ Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... Test 059 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -3294,8 +3294,8 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -3362,8 +3362,8 @@ Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -3430,8 +3430,8 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Test 062 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -3498,8 +3498,8 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Test 063 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -3566,8 +3566,8 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Test 064 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -3634,8 +3634,8 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Test 065 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -3702,8 +3702,8 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Test 066 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -3770,8 +3770,8 @@ Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -3788,8 +3788,8 @@ Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3841,8 +3841,8 @@ Checking test 069 cpld_control results .... Test 069 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3894,8 +3894,8 @@ Checking test 070 cpld_restart results .... Test 070 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_controlfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3947,8 +3947,8 @@ Checking test 071 cpld_controlfrac results .... Test 071 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restartfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4000,8 +4000,8 @@ Checking test 072 cpld_restartfrac results .... Test 072 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4053,8 +4053,8 @@ Checking test 073 cpld_2threads results .... Test 073 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4106,8 +4106,8 @@ Checking test 074 cpld_decomp results .... Test 074 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4159,8 +4159,8 @@ Checking test 075 cpld_satmedmf results .... Test 075 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4212,8 +4212,8 @@ Checking test 076 cpld_ca results .... Test 076 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4265,8 +4265,8 @@ Checking test 077 cpld_control_c192 results .... Test 077 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4318,8 +4318,8 @@ Checking test 078 cpld_restart_c192 results .... Test 078 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_controlfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4371,8 +4371,8 @@ Checking test 079 cpld_controlfrac_c192 results .... Test 079 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restartfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4424,8 +4424,8 @@ Checking test 080 cpld_restartfrac_c192 results .... Test 080 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4480,8 +4480,8 @@ Checking test 081 cpld_control_c384 results .... Test 081 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4536,8 +4536,8 @@ Checking test 082 cpld_restart_c384 results .... Test 082 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4592,8 +4592,8 @@ Checking test 083 cpld_controlfrac_c384 results .... Test 083 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restartfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4648,8 +4648,8 @@ Checking test 084 cpld_restartfrac_c384 results .... Test 084 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4704,8 +4704,8 @@ Checking test 085 cpld_bmark results .... Test 085 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4760,8 +4760,8 @@ Checking test 086 cpld_restart_bmark results .... Test 086 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4816,8 +4816,8 @@ Checking test 087 cpld_bmarkfrac results .... Test 087 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4872,8 +4872,8 @@ Checking test 088 cpld_restart_bmarkfrac results .... Test 088 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4928,8 +4928,8 @@ Checking test 089 cpld_bmarkfrac_v16 results .... Test 089 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_restart_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4984,8 +4984,8 @@ Checking test 090 cpld_restart_bmarkfrac_v16 results .... Test 090 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5043,8 +5043,8 @@ Checking test 091 cpld_bmark_wave results .... Test 091 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmarkfrac_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5102,8 +5102,8 @@ Checking test 092 cpld_bmarkfrac_wave results .... Test 092 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_bmarkfrac_wave_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5161,8 +5161,8 @@ Checking test 093 cpld_bmarkfrac_wave_v16 results .... Test 093 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_debug_prod Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5214,8 +5214,8 @@ Checking test 094 cpld_debug results .... Test 094 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/cpld_debugfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_debugfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_debugfrac_prod Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5267,8 +5267,8 @@ Checking test 095 cpld_debugfrac results .... Test 095 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -5276,8 +5276,8 @@ Checking test 096 datm_control_cfsr results .... Test 096 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -5285,8 +5285,8 @@ Checking test 097 datm_restart_cfsr results .... Test 097 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -5294,8 +5294,8 @@ Checking test 098 datm_control_gefs results .... Test 098 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -5303,8 +5303,8 @@ Checking test 099 datm_bulk_cfsr results .... Test 099 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 @@ -5312,8 +5312,8 @@ Checking test 100 datm_bulk_gefs results .... Test 100 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5324,8 +5324,8 @@ Checking test 101 datm_mx025_cfsr results .... Test 101 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5336,8 +5336,8 @@ Checking test 102 datm_mx025_gefs results .... Test 102 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_308982/datm_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/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 -Tue Jan 19 16:55:03 UTC 2021 -Elapsed time: 01h:02m:59s. Have a nice day! +Thu Jan 21 20:05:03 UTC 2021 +Elapsed time: 01h:07m:12s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index eed8786b48..f5b1d5fbd7 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Tue Jan 19 11:06:40 CST 2021 +Thu Jan 21 12:55:28 CST 2021 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -82,8 +82,8 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -150,8 +150,8 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -218,8 +218,8 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......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-20210115/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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-20210115/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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-20210115/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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-20210115/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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-20210115/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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-20210115/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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-20210115/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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-20210115/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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-20210115/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_lndp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_lheatstrg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_satmedmfq_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_rap_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_hrrr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -2792,8 +2792,8 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -2840,8 +2840,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Test 052 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -2888,8 +2888,8 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Test 053 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -2936,8 +2936,8 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Test 054 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -3004,8 +3004,8 @@ Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... Test 055 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -3072,8 +3072,8 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -3090,8 +3090,8 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -3158,8 +3158,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -3226,8 +3226,8 @@ Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... Test 059 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -3294,8 +3294,8 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -3362,8 +3362,8 @@ Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -3430,8 +3430,8 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Test 062 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -3498,8 +3498,8 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Test 063 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -3566,8 +3566,8 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Test 064 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -3634,8 +3634,8 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Test 065 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -3702,8 +3702,8 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Test 066 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -3770,8 +3770,8 @@ Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -3788,8 +3788,8 @@ Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3841,8 +3841,8 @@ Checking test 069 cpld_control results .... Test 069 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3894,8 +3894,8 @@ Checking test 070 cpld_restart results .... Test 070 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_controlfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3947,8 +3947,8 @@ Checking test 071 cpld_controlfrac results .... Test 071 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restartfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4000,8 +4000,8 @@ Checking test 072 cpld_restartfrac results .... Test 072 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4053,8 +4053,8 @@ Checking test 073 cpld_2threads results .... Test 073 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4106,8 +4106,8 @@ Checking test 074 cpld_decomp results .... Test 074 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4159,8 +4159,8 @@ Checking test 075 cpld_satmedmf results .... Test 075 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4212,8 +4212,8 @@ Checking test 076 cpld_ca results .... Test 076 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4265,8 +4265,8 @@ Checking test 077 cpld_control_c192 results .... Test 077 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restart_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4318,8 +4318,8 @@ Checking test 078 cpld_restart_c192 results .... Test 078 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_controlfrac_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4371,8 +4371,8 @@ Checking test 079 cpld_controlfrac_c192 results .... Test 079 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restartfrac_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4424,8 +4424,8 @@ Checking test 080 cpld_restartfrac_c192 results .... Test 080 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4480,8 +4480,8 @@ Checking test 081 cpld_control_c384 results .... Test 081 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restart_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4536,8 +4536,8 @@ Checking test 082 cpld_restart_c384 results .... Test 082 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4592,8 +4592,8 @@ Checking test 083 cpld_controlfrac_c384 results .... Test 083 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restartfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4648,8 +4648,8 @@ Checking test 084 cpld_restartfrac_c384 results .... Test 084 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4704,8 +4704,8 @@ Checking test 085 cpld_bmark results .... Test 085 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restart_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4760,8 +4760,8 @@ Checking test 086 cpld_restart_bmark results .... Test 086 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_bmarkfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4816,8 +4816,8 @@ Checking test 087 cpld_bmarkfrac results .... Test 087 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restart_bmarkfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4872,8 +4872,8 @@ Checking test 088 cpld_restart_bmarkfrac results .... Test 088 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_bmarkfrac_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4928,8 +4928,8 @@ Checking test 089 cpld_bmarkfrac_v16 results .... Test 089 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_restart_bmarkfrac_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4984,8 +4984,8 @@ Checking test 090 cpld_restart_bmarkfrac_v16 results .... Test 090 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5043,8 +5043,8 @@ Checking test 091 cpld_bmark_wave results .... Test 091 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_bmarkfrac_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5102,8 +5102,8 @@ Checking test 092 cpld_bmarkfrac_wave results .... Test 092 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_bmarkfrac_wave_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5161,8 +5161,8 @@ Checking test 093 cpld_bmarkfrac_wave_v16 results .... Test 093 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_debug_prod Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5214,8 +5214,8 @@ Checking test 094 cpld_debug results .... Test 094 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/cpld_debugfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_debugfrac_prod Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5267,8 +5267,8 @@ Checking test 095 cpld_debugfrac results .... Test 095 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/datm_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -5276,8 +5276,8 @@ Checking test 096 datm_control_cfsr results .... Test 096 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/datm_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -5285,8 +5285,8 @@ Checking test 097 datm_restart_cfsr results .... Test 097 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/datm_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -5294,8 +5294,8 @@ Checking test 098 datm_control_gefs results .... Test 098 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/datm_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -5303,8 +5303,8 @@ Checking test 099 datm_bulk_cfsr results .... Test 099 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/datm_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 @@ -5312,8 +5312,8 @@ Checking test 100 datm_bulk_gefs results .... Test 100 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/datm_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5324,8 +5324,8 @@ Checking test 101 datm_mx025_cfsr results .... Test 101 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/datm_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5336,8 +5336,8 @@ Checking test 102 datm_mx025_gefs results .... Test 102 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_224967/datm_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/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 -Tue Jan 19 12:48:55 CST 2021 -Elapsed time: 01h:42m:16s. Have a nice day! +Thu Jan 21 14:27:59 CST 2021 +Elapsed time: 01h:32m:32s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index a7e577df23..b70ec3f67b 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Tue Jan 19 17:36:58 UTC 2021 +Fri Jan 22 13:41:33 UTC 2021 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -82,8 +82,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-20210115/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -150,8 +150,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-20210115/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -218,8 +218,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-20210115/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......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-20210115/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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-20210115/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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-20210115/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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-20210115/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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-20210115/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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-20210115/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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-20210115/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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-20210115/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_ca_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_ca_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_lndp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_lndp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1024,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -1092,8 +1092,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1148,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -1215,8 +1215,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1226,8 +1226,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1235,8 +1235,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -1257,8 +1257,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -1307,8 +1307,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,8 +1355,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -1403,8 +1403,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -1451,8 +1451,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1499,8 +1499,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1547,8 +1547,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1595,8 +1595,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -1643,8 +1643,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -1695,8 +1695,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1749,8 +1749,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_rap_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_rap_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_hrrr_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2045,8 +2045,8 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -2113,8 +2113,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -2181,8 +2181,8 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v15p2_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -2249,8 +2249,8 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfs_v16beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -2329,8 +2329,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta results .... Test 043 fv3_ccpp_gfs_v16beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -2379,8 +2379,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... Test 044 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -2447,8 +2447,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... Test 045 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -2515,8 +2515,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -2583,8 +2583,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -2645,8 +2645,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -2693,8 +2693,8 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Test 049 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -2741,8 +2741,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Test 050 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -2789,8 +2789,8 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Test 051 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -2857,8 +2857,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_flake results .... Test 052 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -2925,8 +2925,8 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -2943,8 +2943,8 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -3011,8 +3011,8 @@ Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... Test 055 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -3079,8 +3079,8 @@ Checking test 056 fv3_ccpp_gfs_v16beta_debug results .... Test 056 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -3147,8 +3147,8 @@ Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -3215,8 +3215,8 @@ Checking test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -3283,8 +3283,8 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Test 059 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -3351,8 +3351,8 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Test 060 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -3419,8 +3419,8 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Test 061 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -3487,8 +3487,8 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Test 062 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -3555,8 +3555,8 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Test 063 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 @@ -3623,8 +3623,8 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30993/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/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 -Tue Jan 19 18:19:33 UTC 2021 -Elapsed time: 00h:42m:36s. Have a nice day! +Fri Jan 22 14:22:03 UTC 2021 +Elapsed time: 00h:40m:30s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index ecd11a672b..fc76d15d91 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Tue Jan 19 22:06:09 UTC 2021 +Thu Jan 21 19:02:39 UTC 2021 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -82,8 +82,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-20210115/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -150,8 +150,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-20210115/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -218,8 +218,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-20210115/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......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-20210115/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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-20210115/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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-20210115/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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-20210115/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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,10 +447,10 @@ 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 .........OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf000.nc .........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 @@ -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-20210115/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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-20210115/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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-20210115/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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-20210115/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_ca_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_lndp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_lndp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1122,8 +1122,8 @@ Checking test 019 fv3_ccpp_multigases results .... Test 019 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -1190,8 +1190,8 @@ Checking test 020 fv3_ccpp_control_32bit results .... Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1246,8 +1246,8 @@ Checking test 021 fv3_ccpp_stretched results .... Test 021 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -1313,8 +1313,8 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1324,8 +1324,8 @@ Checking test 023 fv3_ccpp_regional_control results .... Test 023 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1333,8 +1333,8 @@ Checking test 024 fv3_ccpp_regional_restart results .... Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1344,19 +1344,19 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........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-20210115/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1385,8 +1385,8 @@ Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -1405,8 +1405,8 @@ Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1453,8 +1453,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -1501,8 +1501,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -1549,8 +1549,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1597,8 +1597,8 @@ Checking test 032 fv3_ccpp_csawmg results .... Test 032 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1645,8 +1645,8 @@ Checking test 033 fv3_ccpp_satmedmf results .... Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_satmedmfq_prod Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1693,8 +1693,8 @@ Checking test 034 fv3_ccpp_satmedmfq results .... Test 034 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -1741,8 +1741,8 @@ Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Test 035 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -1793,8 +1793,8 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_cpt_prod Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1847,8 +1847,8 @@ Checking test 037 fv3_ccpp_cpt results .... Test 037 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gsd_prod Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1939,8 +1939,8 @@ Checking test 038 fv3_ccpp_gsd results .... Test 038 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_rap_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_rap_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_rap_prod Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2007,8 +2007,8 @@ Checking test 039 fv3_ccpp_rap results .... Test 039 fv3_ccpp_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_hrrr_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_hrrr_prod Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2075,8 +2075,8 @@ Checking test 040 fv3_ccpp_hrrr results .... Test 040 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_thompson_prod Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2143,8 +2143,8 @@ Checking test 041 fv3_ccpp_thompson results .... Test 041 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -2211,8 +2211,8 @@ Checking test 042 fv3_ccpp_thompson_no_aero results .... Test 042 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -2279,8 +2279,8 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... Test 043 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v15p2_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -2347,8 +2347,8 @@ Checking test 044 fv3_ccpp_gfs_v15p2 results .... Test 044 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfs_v16beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -2427,8 +2427,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta results .... Test 045 fv3_ccpp_gfs_v16beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -2477,8 +2477,8 @@ Checking test 046 fv3_ccpp_gfs_v16beta_restart results .... Test 046 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -2545,8 +2545,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_stochy results .... Test 047 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -2613,8 +2613,8 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -2681,8 +2681,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 049 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -2743,8 +2743,8 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -2791,8 +2791,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Test 051 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -2839,8 +2839,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Test 052 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -2887,8 +2887,8 @@ Checking test 053 fv3_ccpp_gocart_clm results .... Test 053 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -2955,8 +2955,8 @@ Checking test 054 fv3_ccpp_gfs_v16beta_flake results .... Test 054 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -3023,8 +3023,8 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -3041,8 +3041,8 @@ Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -3109,8 +3109,8 @@ Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Test 057 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -3177,8 +3177,8 @@ Checking test 058 fv3_ccpp_gfs_v16beta_debug results .... Test 058 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -3245,8 +3245,8 @@ Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -3313,8 +3313,8 @@ Checking test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -3381,8 +3381,8 @@ Checking test 061 fv3_ccpp_gsd_debug results .... Test 061 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -3449,8 +3449,8 @@ Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... Test 062 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -3517,8 +3517,8 @@ Checking test 063 fv3_ccpp_thompson_debug results .... Test 063 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -3585,8 +3585,8 @@ Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... Test 064 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -3653,8 +3653,8 @@ Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... Test 065 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -3721,8 +3721,8 @@ Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -3739,8 +3739,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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_control_prod Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3792,8 +3792,8 @@ Checking test 068 cpld_control results .... Test 068 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restart_prod Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3845,8 +3845,8 @@ Checking test 069 cpld_restart results .... Test 069 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_controlfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_controlfrac_prod Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3898,8 +3898,8 @@ Checking test 070 cpld_controlfrac results .... Test 070 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restartfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restartfrac_prod Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3951,8 +3951,8 @@ Checking test 071 cpld_restartfrac results .... Test 071 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_2threads_prod Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4004,8 +4004,8 @@ Checking test 072 cpld_2threads results .... Test 072 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_decomp_prod Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4057,8 +4057,8 @@ Checking test 073 cpld_decomp results .... Test 073 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_satmedmf_prod Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4110,8 +4110,8 @@ Checking test 074 cpld_satmedmf results .... Test 074 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_ca_prod Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4163,8 +4163,8 @@ Checking test 075 cpld_ca results .... Test 075 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_control_c192_prod Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4216,8 +4216,8 @@ Checking test 076 cpld_control_c192 results .... Test 076 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restart_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restart_c192_prod Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4269,8 +4269,8 @@ Checking test 077 cpld_restart_c192 results .... Test 077 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_controlfrac_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_controlfrac_c192_prod Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4322,8 +4322,8 @@ Checking test 078 cpld_controlfrac_c192 results .... Test 078 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restartfrac_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restartfrac_c192_prod Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4375,8 +4375,8 @@ Checking test 079 cpld_restartfrac_c192 results .... Test 079 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_control_c384_prod Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4431,8 +4431,8 @@ Checking test 080 cpld_control_c384 results .... Test 080 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restart_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restart_c384_prod Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4487,8 +4487,8 @@ Checking test 081 cpld_restart_c384 results .... Test 081 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_controlfrac_c384_prod Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4543,8 +4543,8 @@ Checking test 082 cpld_controlfrac_c384 results .... Test 082 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restartfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restartfrac_c384_prod Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4599,8 +4599,8 @@ Checking test 083 cpld_restartfrac_c384 results .... Test 083 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_bmark_prod Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4655,8 +4655,8 @@ Checking test 084 cpld_bmark results .... Test 084 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restart_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restart_bmark_prod Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4711,8 +4711,8 @@ Checking test 085 cpld_restart_bmark results .... Test 085 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_bmarkfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_bmarkfrac_prod Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4767,8 +4767,8 @@ Checking test 086 cpld_bmarkfrac results .... Test 086 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restart_bmarkfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restart_bmarkfrac_prod Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4823,8 +4823,8 @@ Checking test 087 cpld_restart_bmarkfrac results .... Test 087 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_bmarkfrac_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_bmarkfrac_v16_prod Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4879,8 +4879,8 @@ Checking test 088 cpld_bmarkfrac_v16 results .... Test 088 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_restart_bmarkfrac_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restart_bmarkfrac_v16_prod Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4935,8 +4935,8 @@ Checking test 089 cpld_restart_bmarkfrac_v16 results .... Test 089 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_bmark_wave_prod Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4994,8 +4994,8 @@ Checking test 090 cpld_bmark_wave results .... Test 090 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_bmarkfrac_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmarkfrac_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_bmarkfrac_wave_prod Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5053,8 +5053,8 @@ Checking test 091 cpld_bmarkfrac_wave results .... Test 091 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_bmarkfrac_wave_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmarkfrac_wave_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_bmarkfrac_wave_v16_prod Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5112,8 +5112,8 @@ Checking test 092 cpld_bmarkfrac_wave_v16 results .... Test 092 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_debug_prod Checking test 093 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5165,8 +5165,8 @@ Checking test 093 cpld_debug results .... Test 093 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/cpld_debugfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_debugfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_debugfrac_prod Checking test 094 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5218,8 +5218,8 @@ Checking test 094 cpld_debugfrac results .... Test 094 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/datm_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -5227,8 +5227,8 @@ Checking test 095 datm_control_cfsr results .... Test 095 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/datm_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -5236,8 +5236,8 @@ Checking test 096 datm_restart_cfsr results .... Test 096 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/datm_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -5245,8 +5245,8 @@ Checking test 097 datm_control_gefs results .... Test 097 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/datm_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -5254,8 +5254,8 @@ Checking test 098 datm_bulk_cfsr results .... Test 098 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/datm_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 @@ -5263,8 +5263,8 @@ Checking test 099 datm_bulk_gefs results .... Test 099 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/datm_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/datm_mx025_cfsr Checking test 100 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5275,8 +5275,8 @@ Checking test 100 datm_mx025_cfsr results .... Test 100 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/datm_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/datm_mx025_gefs Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5287,8 +5287,8 @@ Checking test 101 datm_mx025_gefs results .... Test 101 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210115/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_32657/datm_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/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 -Wed Jan 20 00:45:11 UTC 2021 -Elapsed time: 02h:39m:04s. Have a nice day! +Thu Jan 21 21:28:32 UTC 2021 +Elapsed time: 02h:25m:56s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 1924c9f937..3caced65fa 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -340,6 +340,7 @@ export DO_MYNNSFCLAY=.F. export LSM=1 export LSOIL_LSM=4 export LANDICE=.T. +export KICE=2 # Ozone / stratospheric H2O export OZ_PHYS_OLD=.T. @@ -386,6 +387,7 @@ export DO_SHUM=.F. export DO_SKEB=.F. export LNDP_TYPE=0 export N_VAR_LNDP=0 +export LNDP_EACH_STEP=.F. export SKEB=-999. export SPPT=-999. export SHUM=-999. diff --git a/tests/parm/ccpp_gsd.nml.IN b/tests/parm/ccpp_gsd.nml.IN index fd7b2c3cde..17f5982063 100644 --- a/tests/parm/ccpp_gsd.nml.IN +++ b/tests/parm/ccpp_gsd.nml.IN @@ -174,8 +174,10 @@ do_skeb = @[DO_SKEB] lndp_type = @[LNDP_TYPE] n_var_lndp = @[N_VAR_LNDP] + lndp_each_step = @[LNDP_EACH_STEP] lsm = @[LSM] lsoil_lsm = @[LSOIL_LSM] + kice = @[KICE] iopt_dveg = 2 iopt_crs = 1 iopt_btr = 1 @@ -324,6 +326,8 @@ LNDP_TAU=21600, LNDP_LSCALE=500000, ISEED_LNDP=2010, + lndp_var_list = 'smc', 'vgf', 'alb', 'sal', 'emi', 'zol' + lndp_prt_list = 0.200, 0.001, 0.001, 0.001, 0.001, 0.001 / &cires_ugwp_nml diff --git a/tests/parm/ccpp_gsd_sar.nml.IN b/tests/parm/ccpp_gsd_sar.nml.IN index ee580caf96..fbab92345e 100644 --- a/tests/parm/ccpp_gsd_sar.nml.IN +++ b/tests/parm/ccpp_gsd_sar.nml.IN @@ -199,6 +199,7 @@ lsm = 3 lsoil = 9 lsoil_lsm = 9 + kice = 9 iopt_dveg = 2 iopt_crs = 1 iopt_btr = 1 @@ -276,6 +277,7 @@ FABSL = 99999, FSNOS = 99999, FSICS = 99999, +/ &nam_stochy lon_s=768, @@ -299,6 +301,7 @@ ISEED_SKEB=2, ISEED_SPPT=3, / + &nam_sfcperts lndp_type = @[LNDP_TYPE] LNDP_TAU=21600, diff --git a/tests/parm/ccpp_lndp.nml.IN b/tests/parm/ccpp_lndp.nml.IN index 96e70f20be..cc9f245c1b 100644 --- a/tests/parm/ccpp_lndp.nml.IN +++ b/tests/parm/ccpp_lndp.nml.IN @@ -194,6 +194,7 @@ do_skeb = @[DO_SKEB] lndp_type = @[LNDP_TYPE] n_var_lndp = @[N_VAR_LNDP] + lndp_each_step = @[LNDP_EACH_STEP] do_ca = .false. ca_sgs = .false. nca = 1 diff --git a/tests/rt.conf b/tests/rt.conf index 0178f2886c..198093defb 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -105,8 +105,8 @@ 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) # Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 -COMPILE | DEBUG=Y | - cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -COMPILE | DEBUG=Y SUITES='FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta,FV3_GFS_v16beta_RRTMGP' | + cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +COMPILE | DEBUG=Y SUITES='FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta,FV3_GFS_v16beta_RRTMGP' | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | RUN | fv3_ccpp_gfs_v16beta_debug | | fv3 | RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 14096de9ae..547d570495 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-20210115/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210120/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210115} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210120} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210115} diff --git a/tests/rt_ccpp_dev.conf b/tests/rt_ccpp_dev.conf index ce08c70213..a690e1c8db 100644 --- a/tests/rt_ccpp_dev.conf +++ b/tests/rt_ccpp_dev.conf @@ -1,4 +1,6 @@ ############################################################################################################################################################ +# Note: this file has been used for testing additional physics on Hera and Cheyenne with both Intel and GNU # +# # # CCPP REPRO tests # ############################################################################################################################################################ @@ -9,7 +11,9 @@ RUN | fv3_ccpp_gf_thompson RUN | fv3_ccpp_gsd | | fv3 | RUN | fv3_ccpp_gsd_coldstart | | | RUN | fv3_ccpp_gsd_warmstart | | | fv3_ccpp_gsd_coldstart +RUN | fv3_ccpp_gsd_lndp | | fv3 | RUN | fv3_ccpp_gsd_noah | | fv3 | +RUN | fv3_ccpp_gsd_noah_lndp | | fv3 | COMPILE | REPRO=Y SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | | fv3 | diff --git a/tests/tests/fv3_ccpp_gsd b/tests/tests/fv3_ccpp_gsd index 442117df57..077446b405 100644 --- a/tests/tests/fv3_ccpp_gsd +++ b/tests/tests/fv3_ccpp_gsd @@ -118,7 +118,7 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 - +export KICE=9 export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_coldstart b/tests/tests/fv3_ccpp_gsd_coldstart index e43553acb8..d1343f0b9b 100644 --- a/tests/tests/fv3_ccpp_gsd_coldstart +++ b/tests/tests/fv3_ccpp_gsd_coldstart @@ -56,4 +56,4 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 - +export KICE=9 diff --git a/tests/tests/fv3_ccpp_gsd_debug b/tests/tests/fv3_ccpp_gsd_debug index 2e2d073d4d..e665bbf9e3 100644 --- a/tests/tests/fv3_ccpp_gsd_debug +++ b/tests/tests/fv3_ccpp_gsd_debug @@ -94,6 +94,6 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 - +export KICE=9 export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_diag3d_debug b/tests/tests/fv3_ccpp_gsd_diag3d_debug index 2f46c151e6..cade76ed3e 100644 --- a/tests/tests/fv3_ccpp_gsd_diag3d_debug +++ b/tests/tests/fv3_ccpp_gsd_diag3d_debug @@ -98,7 +98,7 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 - +export KICE=9 export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_drag_suite b/tests/tests/fv3_ccpp_gsd_drag_suite index 0091c90558..e7f7cdfc0a 100644 --- a/tests/tests/fv3_ccpp_gsd_drag_suite +++ b/tests/tests/fv3_ccpp_gsd_drag_suite @@ -94,6 +94,7 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 +export KICE=9 export GWD_OPT=3 export DO_UGWP_V0=.F. export DO_UGWP_V0_OROG_ONLY=.F. diff --git a/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp b/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp index 44ddf4fcfd..022cd47b69 100644 --- a/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp +++ b/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp @@ -94,6 +94,8 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 +export KICE=9 + export GWD_OPT=2 export DO_UGWP_V0=.F. export DO_UGWP_V0_OROG_ONLY=.F. diff --git a/tests/tests/fv3_ccpp_gsd_lndp b/tests/tests/fv3_ccpp_gsd_lndp new file mode 100644 index 0000000000..ab71cc1fb5 --- /dev/null +++ b/tests/tests/fv3_ccpp_gsd_lndp @@ -0,0 +1,100 @@ +######################################################################################### +# +# FV3 CCPP GSD (GF CU + Thompson MP + MYNN PBL + RUC LSM) with land stochastic pert test +# +######################################################################################### + +export TEST_DESCR="Compare FV3 CCPP GSD lndp results with previous trunk version" + +export CNTL_DIR=fv3_gsd_lndp + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + +export_fv3 + +export DT_ATMOS="600" +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.F. +export LRADAR=.T. +export LTAEROSOL=.T. + +export FV3_RUN=ccpp_gsd_run.IN +export CCPP_SUITE=FV3_GSD_v0 +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_gsd.nml.IN + +export HYBEDMF=.F. +export DO_MYNNEDMF=.T. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export LNDP_TYPE=2 +export N_VAR_LNDP=6 +export LNDP_EACH_STEP=.T. + +#export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_mynnsfc b/tests/tests/fv3_ccpp_gsd_mynnsfc index 8d39c21413..fae4d8512b 100644 --- a/tests/tests/fv3_ccpp_gsd_mynnsfc +++ b/tests/tests/fv3_ccpp_gsd_mynnsfc @@ -120,6 +120,7 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 +export KICE=9 RUN_SCRIPT=rt_fv3.sh diff --git a/tests/tests/fv3_ccpp_gsd_mynnsfc_debug b/tests/tests/fv3_ccpp_gsd_mynnsfc_debug index a394908ad7..21d9901715 100644 --- a/tests/tests/fv3_ccpp_gsd_mynnsfc_debug +++ b/tests/tests/fv3_ccpp_gsd_mynnsfc_debug @@ -96,6 +96,7 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 +export KICE=9 RUN_SCRIPT=rt_fv3.sh diff --git a/tests/tests/fv3_ccpp_gsd_noah_lndp b/tests/tests/fv3_ccpp_gsd_noah_lndp new file mode 100644 index 0000000000..777c159993 --- /dev/null +++ b/tests/tests/fv3_ccpp_gsd_noah_lndp @@ -0,0 +1,99 @@ +########################################################################################## +# +# FV3 CCPP GSD (GF CU + Thompson MP + MYNN PBL + NOAH LSM) with land stochastic pert test +# +########################################################################################## + +export TEST_DESCR="Compare FV3 CCPP GSD lndp results with previous trunk version" + +export CNTL_DIR=fv3_gsd_noah_lndp + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + +export_fv3 + +export DT_ATMOS="600" +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.F. +export LRADAR=.T. +export LTAEROSOL=.T. + +export FV3_RUN=ccpp_gsd_run.IN +export CCPP_SUITE=FV3_GSD_noah +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_gsd.nml.IN + +export HYBEDMF=.F. +export DO_MYNNEDMF=.T. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LSM=1 +export LSOIL_LSM=4 + +export LNDP_TYPE=2 +export N_VAR_LNDP=6 +export LNDP_EACH_STEP=.T. + +#export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_unified_ugwp b/tests/tests/fv3_ccpp_gsd_unified_ugwp index f9387b81d9..1425c0c4aa 100644 --- a/tests/tests/fv3_ccpp_gsd_unified_ugwp +++ b/tests/tests/fv3_ccpp_gsd_unified_ugwp @@ -118,6 +118,8 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 +export KICE=9 + export GWD_OPT=2 export DO_UGWP_V0=.T. export DO_UGWP_V0_OROG_ONLY=.F. diff --git a/tests/tests/fv3_ccpp_gsd_warmstart b/tests/tests/fv3_ccpp_gsd_warmstart index 3904d145b9..0d9d28950d 100644 --- a/tests/tests/fv3_ccpp_gsd_warmstart +++ b/tests/tests/fv3_ccpp_gsd_warmstart @@ -96,4 +96,4 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 - +export KICE=9 diff --git a/tests/tests/fv3_ccpp_hrrr b/tests/tests/fv3_ccpp_hrrr index be2a1f9c2f..70c67c1afc 100644 --- a/tests/tests/fv3_ccpp_hrrr +++ b/tests/tests/fv3_ccpp_hrrr @@ -95,6 +95,8 @@ export IMFSHALCNV=-1 export IMFDEEPCNV=-1 export LSM=3 export LSOIL_LSM=9 +export KICE=9 + export GWD_OPT=3 export DO_UGWP_V0=.F. export DO_UGWP_V0_OROG_ONLY=.F. diff --git a/tests/tests/fv3_ccpp_rap b/tests/tests/fv3_ccpp_rap index f87f7034b2..d3b2ab7df5 100644 --- a/tests/tests/fv3_ccpp_rap +++ b/tests/tests/fv3_ccpp_rap @@ -95,6 +95,8 @@ export IMFSHALCNV=3 export IMFDEEPCNV=3 export LSM=3 export LSOIL_LSM=9 +export KICE=9 + export GWD_OPT=3 export DO_UGWP_V0=.F. export DO_UGWP_V0_OROG_ONLY=.F. From 06bc77ba3640358b54b6ff03f542e2ce0d3242be Mon Sep 17 00:00:00 2001 From: XiaqiongZhou-NOAA <48254930+XiaqiongZhou-NOAA@users.noreply.github.com> Date: Mon, 25 Jan 2021 23:02:35 -0500 Subject: [PATCH 062/109] dycore options to add zero-gradient BC to reconstruct interface u/v and change dz_min as input (#369) * Update fv3atm * update ccpp control test forecast length to 24h * remove rename command * Add CI related changes * Update RT logs * Update RT log files * Add the gaea RT log file * Update the point of fv3atm * Update fv3atm Co-authored-by: Jun Wang Co-authored-by: MinsukJi-NOAA Co-authored-by: Jun Wang <37633869+junwang-noaa@users.noreply.github.com> --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 94 ++--- tests/RegressionTests_cheyenne.intel.log | 448 ++++++++++---------- tests/RegressionTests_gaea.intel.log | 312 +++++++------- tests/RegressionTests_hera.gnu.log | 94 ++--- tests/RegressionTests_hera.intel.log | 496 +++++++++++------------ tests/RegressionTests_orion.intel.log | 496 +++++++++++------------ tests/RegressionTests_wcoss_cray.log | 308 +++++++------- tests/RegressionTests_wcoss_dell_p3.log | 462 ++++++++++----------- tests/ci/Dockerfile | 2 +- tests/ci/ci.sh | 4 +- tests/fv3_conf/ccpp_control_run.IN | 40 +- tests/rt.sh | 4 +- tests/tests/fv3_ccpp_2threads | 1 - tests/tests/fv3_ccpp_control | 15 +- tests/tests/fv3_ccpp_decomp | 1 - tests/tests/fv3_ccpp_restart | 33 +- tests/utest | 31 +- 18 files changed, 1351 insertions(+), 1492 deletions(-) diff --git a/FV3 b/FV3 index 34c326c0c0..307f00124f 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 34c326c0c041a86cc253cf76ccc7d874a571c766 +Subproject commit 307f00124f1b95dd39a993006e25dfeb83a314b7 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 5272ad7200..aa68aed849 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Thu Jan 21 12:09:03 MST 2021 +Mon Jan 25 06:17:26 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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-20210120/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19090/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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 -Thu Jan 21 12:26:44 MST 2021 -Elapsed time: 00h:17m:41s. Have a nice day! +Mon Jan 25 06:35:43 MST 2021 +Elapsed time: 00h:18m:17s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index fb0ca045de..340bcb1148 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Thu Jan 21 13:41:41 MST 2021 +Mon Jan 25 07:12:54 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -23,12 +23,6 @@ Checking test 001 fv3_ccpp_control 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 @@ -41,12 +35,6 @@ Checking test 001 fv3_ccpp_control 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 @@ -82,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-20210120/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -150,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-20210120/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -218,27 +206,21 @@ 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-20210120/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... - 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 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 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 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 @@ -274,8 +256,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-20210120/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 +324,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-20210120/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 +372,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-20210120/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 +420,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-20210120/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -449,8 +431,8 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf000.nc .........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 @@ -486,8 +468,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-20210120/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 +516,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-20210120/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 +564,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-20210120/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 +612,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-20210120/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 +680,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-20210120/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 +748,8 @@ 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-20210120/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_lndp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lndp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -1092,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -1215,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1226,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1235,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1246,19 +1228,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 ............ALT CHECK......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 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1287,8 +1269,8 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -1307,8 +1289,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,8 +1337,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -1403,8 +1385,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -1451,8 +1433,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1499,8 +1481,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1547,8 +1529,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1595,8 +1577,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -1643,8 +1625,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -1695,8 +1677,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1749,8 +1731,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1823,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_rap_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rap_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1891,8 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_hrrr_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_hrrr_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1959,8 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2045,8 +2027,8 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -2113,8 +2095,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -2181,8 +2163,8 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -2249,8 +2231,8 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -2329,8 +2311,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta results .... Test 043 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -2379,8 +2361,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... Test 044 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -2447,8 +2429,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... Test 045 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -2515,8 +2497,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -2583,8 +2565,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -2645,8 +2627,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gocart_clm_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -2693,8 +2675,8 @@ Checking test 049 fv3_ccpp_gocart_clm results .... Test 049 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -2761,8 +2743,8 @@ Checking test 050 fv3_ccpp_gfs_v16beta_flake results .... Test 050 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -2829,8 +2811,8 @@ Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -2847,8 +2829,8 @@ Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -2915,8 +2897,8 @@ Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... Test 053 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -2983,8 +2965,8 @@ Checking test 054 fv3_ccpp_gfs_v16beta_debug results .... Test 054 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -3051,8 +3033,8 @@ Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -3119,8 +3101,8 @@ Checking test 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -3187,8 +3169,8 @@ Checking test 057 fv3_ccpp_gsd_debug results .... Test 057 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -3255,8 +3237,8 @@ Checking test 058 fv3_ccpp_gsd_diag3d_debug results .... Test 058 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -3323,8 +3305,8 @@ Checking test 059 fv3_ccpp_thompson_debug results .... Test 059 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -3391,8 +3373,8 @@ Checking test 060 fv3_ccpp_thompson_no_aero_debug results .... Test 060 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -3459,8 +3441,8 @@ Checking test 061 fv3_ccpp_rrfs_v1beta_debug results .... Test 061 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -3527,8 +3509,8 @@ Checking test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -3545,8 +3527,8 @@ Checking test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_control_prod Checking test 064 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3598,8 +3580,8 @@ Checking test 064 cpld_control results .... Test 064 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restart_prod Checking test 065 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3651,8 +3633,8 @@ Checking test 065 cpld_restart results .... Test 065 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_controlfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_controlfrac_prod Checking test 066 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3704,8 +3686,8 @@ Checking test 066 cpld_controlfrac results .... Test 066 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restartfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restartfrac_prod Checking test 067 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3757,8 +3739,8 @@ Checking test 067 cpld_restartfrac results .... Test 067 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_2threads_prod Checking test 068 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3810,8 +3792,8 @@ Checking test 068 cpld_2threads results .... Test 068 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_decomp_prod Checking test 069 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3863,8 +3845,8 @@ Checking test 069 cpld_decomp results .... Test 069 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_satmedmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_satmedmf_prod Checking test 070 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3916,8 +3898,8 @@ Checking test 070 cpld_satmedmf results .... Test 070 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_ca_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_ca_prod Checking test 071 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3969,8 +3951,8 @@ Checking test 071 cpld_ca results .... Test 071 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_control_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_control_c192_prod Checking test 072 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4022,8 +4004,8 @@ Checking test 072 cpld_control_c192 results .... Test 072 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restart_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restart_c192_prod Checking test 073 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4075,8 +4057,8 @@ Checking test 073 cpld_restart_c192 results .... Test 073 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_controlfrac_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_controlfrac_c192_prod Checking test 074 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4128,8 +4110,8 @@ Checking test 074 cpld_controlfrac_c192 results .... Test 074 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restartfrac_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restartfrac_c192_prod Checking test 075 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4181,8 +4163,8 @@ Checking test 075 cpld_restartfrac_c192 results .... Test 075 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_control_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_control_c384_prod Checking test 076 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4237,8 +4219,8 @@ Checking test 076 cpld_control_c384 results .... Test 076 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restart_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restart_c384_prod Checking test 077 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4293,8 +4275,8 @@ Checking test 077 cpld_restart_c384 results .... Test 077 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_controlfrac_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_controlfrac_c384_prod Checking test 078 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4349,8 +4331,8 @@ Checking test 078 cpld_controlfrac_c384 results .... Test 078 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restartfrac_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restartfrac_c384_prod Checking test 079 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4405,8 +4387,8 @@ Checking test 079 cpld_restartfrac_c384 results .... Test 079 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_bmark_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_bmark_prod Checking test 080 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4461,8 +4443,8 @@ Checking test 080 cpld_bmark results .... Test 080 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restart_bmark_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restart_bmark_prod Checking test 081 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4517,8 +4499,8 @@ Checking test 081 cpld_restart_bmark results .... Test 081 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_bmarkfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_bmarkfrac_prod Checking test 082 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4573,8 +4555,8 @@ Checking test 082 cpld_bmarkfrac results .... Test 082 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restart_bmarkfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restart_bmarkfrac_prod Checking test 083 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4629,8 +4611,8 @@ Checking test 083 cpld_restart_bmarkfrac results .... Test 083 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_bmarkfrac_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_bmarkfrac_v16_prod Checking test 084 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4685,8 +4667,8 @@ Checking test 084 cpld_bmarkfrac_v16 results .... Test 084 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_restart_bmarkfrac_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restart_bmarkfrac_v16_prod Checking test 085 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4741,8 +4723,8 @@ Checking test 085 cpld_restart_bmarkfrac_v16 results .... Test 085 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_bmark_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_wave_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_bmark_wave_prod Checking test 086 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4800,8 +4782,8 @@ Checking test 086 cpld_bmark_wave results .... Test 086 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_bmarkfrac_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_bmarkfrac_wave_prod Checking test 087 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4859,8 +4841,8 @@ Checking test 087 cpld_bmarkfrac_wave results .... Test 087 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_bmarkfrac_wave_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_bmarkfrac_wave_v16_prod Checking test 088 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4918,8 +4900,8 @@ Checking test 088 cpld_bmarkfrac_wave_v16 results .... Test 088 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_debug_prod Checking test 089 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4971,8 +4953,8 @@ Checking test 089 cpld_debug results .... Test 089 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/cpld_debugfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_debugfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_debugfrac_prod Checking test 090 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5024,8 +5006,8 @@ Checking test 090 cpld_debugfrac results .... Test 090 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/datm_control_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -5033,8 +5015,8 @@ Checking test 091 datm_control_cfsr results .... Test 091 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/datm_restart_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -5042,8 +5024,8 @@ Checking test 092 datm_restart_cfsr results .... Test 092 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/datm_control_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -5051,8 +5033,8 @@ Checking test 093 datm_control_gefs results .... Test 093 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/datm_bulk_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -5060,8 +5042,8 @@ Checking test 094 datm_bulk_cfsr results .... Test 094 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_bulk_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/datm_bulk_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_bulk_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 @@ -5069,8 +5051,8 @@ Checking test 095 datm_bulk_gefs results .... Test 095 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/datm_mx025_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/datm_mx025_cfsr Checking test 096 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5081,8 +5063,8 @@ Checking test 096 datm_mx025_cfsr results .... Test 096 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_mx025_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/datm_mx025_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_mx025_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/datm_mx025_gefs Checking test 097 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5093,8 +5075,8 @@ Checking test 097 datm_mx025_gefs results .... Test 097 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_debug_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_55242/datm_debug_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_debug_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 +5085,5 @@ Test 098 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jan 21 15:03:37 MST 2021 -Elapsed time: 01h:21m:56s. Have a nice day! +Mon Jan 25 08:33:07 MST 2021 +Elapsed time: 01h:20m:14s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 599e9fd718..26908ff125 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Thu Jan 21 13:49:15 EST 2021 +Mon Jan 25 13:13:12 EST 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -23,12 +23,6 @@ Checking test 001 fv3_ccpp_control 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 @@ -41,12 +35,6 @@ Checking test 001 fv3_ccpp_control 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 @@ -82,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-20210120/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -150,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-20210120/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -218,27 +206,21 @@ 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-20210120/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... - 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 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 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 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 @@ -274,8 +256,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-20210120/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 +324,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-20210120/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 +372,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-20210120/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 +420,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-20210120/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 +468,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-20210120/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 +516,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-20210120/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 +564,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-20210120/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 +612,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-20210120/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 +680,8 @@ 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-20210120/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_ca_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_ca_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_lndp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lndp_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_iau_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_iau_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -1092,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -1215,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1226,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1235,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1246,19 +1228,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1287,8 +1269,8 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -1307,8 +1289,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,8 +1337,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -1403,8 +1385,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -1451,8 +1433,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1499,8 +1481,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1547,8 +1529,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1595,8 +1577,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -1643,8 +1625,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -1695,8 +1677,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_cpt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1749,8 +1731,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gsd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1823,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_rap_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rap_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1891,8 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_hrrr_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_hrrr_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1959,8 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2045,8 +2027,8 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -2113,8 +2095,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -2181,8 +2163,8 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfs_v15p2_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -2249,8 +2231,8 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfs_v16beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -2329,8 +2311,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta results .... Test 043 fv3_ccpp_gfs_v16beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -2379,8 +2361,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... Test 044 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -2447,8 +2429,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... Test 045 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -2515,8 +2497,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -2583,8 +2565,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -2645,8 +2627,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -2693,8 +2675,8 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Test 049 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -2741,8 +2723,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Test 050 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gocart_clm_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -2789,8 +2771,8 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Test 051 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -2857,8 +2839,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_flake results .... Test 052 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -2925,8 +2907,8 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -2943,8 +2925,8 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -3011,8 +2993,8 @@ Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... Test 055 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -3079,8 +3061,8 @@ Checking test 056 fv3_ccpp_gfs_v16beta_debug results .... Test 056 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -3147,8 +3129,8 @@ Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -3215,8 +3197,8 @@ Checking test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gsd_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -3283,8 +3265,8 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Test 059 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -3351,8 +3333,8 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Test 060 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -3419,8 +3401,8 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Test 061 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -3487,8 +3469,8 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Test 062 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -3555,8 +3537,8 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Test 063 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 @@ -3623,8 +3605,8 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_30330/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/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 +3624,5 @@ Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jan 21 15:02:59 EST 2021 -Elapsed time: 01h:13m:44s. Have a nice day! +Mon Jan 25 14:03:57 EST 2021 +Elapsed time: 00h:50m:46s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 4a3d8e5c20..6f46c39c54 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Thu Jan 21 18:57:26 UTC 2021 +Sun Jan 24 19:52:02 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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-20210120/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_103873/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/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 -Thu Jan 21 19:22:42 UTC 2021 -Elapsed time: 00h:25m:16s. Have a nice day! +Sun Jan 24 20:16:13 UTC 2021 +Elapsed time: 00h:24m:11s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 9f8210f655..231562e809 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,16 +1,16 @@ -Thu Jan 21 18:57:51 UTC 2021 +Sun Jan 24 02:36:12 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control 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 @@ -23,12 +23,6 @@ Checking test 001 fv3_ccpp_control 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 @@ -41,12 +35,6 @@ Checking test 001 fv3_ccpp_control 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 @@ -82,15 +70,15 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -150,15 +138,15 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads 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 @@ -218,27 +206,21 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... - 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 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 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 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 @@ -274,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +324,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-20210120/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +372,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-20210120/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +420,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-20210120/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +468,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-20210120/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +516,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-20210120/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +564,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-20210120/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +612,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-20210120/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +680,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1030,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-20210120/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1079,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-20210120/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1153,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1221,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-20210120/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1277,8 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1344,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-20210120/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1355,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-20210120/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1364,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-20210120/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1393,8 +1375,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-20210120/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1386,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-20210120/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1416,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-20210120/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1436,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-20210120/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1484,8 @@ Checking test 030 fv3_ccpp_gfdlmp results .... Test 030 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1532,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-20210120/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1580,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-20210120/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1628,8 @@ Checking test 033 fv3_ccpp_csawmg results .... Test 033 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1676,8 @@ Checking test 034 fv3_ccpp_satmedmf results .... Test 034 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1724,8 @@ Checking test 035 fv3_ccpp_satmedmfq results .... Test 035 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1772,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-20210120/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1824,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-20210120/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1878,8 @@ Checking test 038 fv3_ccpp_cpt results .... Test 038 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +1970,8 @@ Checking test 039 fv3_ccpp_gsd results .... Test 039 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +2038,8 @@ Checking test 040 fv3_ccpp_rap results .... Test 040 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +2106,8 @@ Checking test 041 fv3_ccpp_hrrr results .... Test 041 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +2174,8 @@ Checking test 042 fv3_ccpp_thompson results .... Test 042 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +2242,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-20210120/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +2310,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-20210120/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +2378,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-20210120/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +2458,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-20210120/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +2508,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-20210120/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +2576,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-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +2644,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-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +2712,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-20210120/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -2792,8 +2774,8 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -2840,8 +2822,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Test 052 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -2888,8 +2870,8 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Test 053 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -2936,8 +2918,8 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Test 054 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -3004,8 +2986,8 @@ Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... Test 055 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -3072,8 +3054,8 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -3090,8 +3072,8 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -3158,8 +3140,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -3226,8 +3208,8 @@ Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... Test 059 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -3294,8 +3276,8 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -3362,8 +3344,8 @@ Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -3430,8 +3412,8 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Test 062 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -3498,8 +3480,8 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Test 063 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -3566,8 +3548,8 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Test 064 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -3634,8 +3616,8 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Test 065 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -3702,8 +3684,8 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Test 066 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -3770,8 +3752,8 @@ Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -3788,8 +3770,8 @@ Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3841,8 +3823,8 @@ Checking test 069 cpld_control results .... Test 069 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3894,8 +3876,8 @@ Checking test 070 cpld_restart results .... Test 070 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_controlfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3947,8 +3929,8 @@ Checking test 071 cpld_controlfrac results .... Test 071 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restartfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4000,8 +3982,8 @@ Checking test 072 cpld_restartfrac results .... Test 072 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4053,8 +4035,8 @@ Checking test 073 cpld_2threads results .... Test 073 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4106,8 +4088,8 @@ Checking test 074 cpld_decomp results .... Test 074 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4159,8 +4141,8 @@ Checking test 075 cpld_satmedmf results .... Test 075 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4212,8 +4194,8 @@ Checking test 076 cpld_ca results .... Test 076 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4265,8 +4247,8 @@ Checking test 077 cpld_control_c192 results .... Test 077 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4318,8 +4300,8 @@ Checking test 078 cpld_restart_c192 results .... Test 078 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_controlfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4371,8 +4353,8 @@ Checking test 079 cpld_controlfrac_c192 results .... Test 079 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restartfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4424,8 +4406,8 @@ Checking test 080 cpld_restartfrac_c192 results .... Test 080 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4480,8 +4462,8 @@ Checking test 081 cpld_control_c384 results .... Test 081 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4536,8 +4518,8 @@ Checking test 082 cpld_restart_c384 results .... Test 082 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4592,8 +4574,8 @@ Checking test 083 cpld_controlfrac_c384 results .... Test 083 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restartfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4648,8 +4630,8 @@ Checking test 084 cpld_restartfrac_c384 results .... Test 084 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4704,8 +4686,8 @@ Checking test 085 cpld_bmark results .... Test 085 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4760,8 +4742,8 @@ Checking test 086 cpld_restart_bmark results .... Test 086 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4816,8 +4798,8 @@ Checking test 087 cpld_bmarkfrac results .... Test 087 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4872,8 +4854,8 @@ Checking test 088 cpld_restart_bmarkfrac results .... Test 088 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4928,8 +4910,8 @@ Checking test 089 cpld_bmarkfrac_v16 results .... Test 089 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_restart_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4984,8 +4966,8 @@ Checking test 090 cpld_restart_bmarkfrac_v16 results .... Test 090 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5043,8 +5025,8 @@ Checking test 091 cpld_bmark_wave results .... Test 091 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmarkfrac_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5102,8 +5084,8 @@ Checking test 092 cpld_bmarkfrac_wave results .... Test 092 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_bmarkfrac_wave_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5161,8 +5143,8 @@ Checking test 093 cpld_bmarkfrac_wave_v16 results .... Test 093 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_debug_prod Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5214,8 +5196,8 @@ Checking test 094 cpld_debug results .... Test 094 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/cpld_debugfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_debugfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_debugfrac_prod Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5267,8 +5249,8 @@ Checking test 095 cpld_debugfrac results .... Test 095 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -5276,8 +5258,8 @@ Checking test 096 datm_control_cfsr results .... Test 096 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -5285,8 +5267,8 @@ Checking test 097 datm_restart_cfsr results .... Test 097 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -5294,8 +5276,8 @@ Checking test 098 datm_control_gefs results .... Test 098 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -5303,8 +5285,8 @@ Checking test 099 datm_bulk_cfsr results .... Test 099 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 @@ -5312,8 +5294,8 @@ Checking test 100 datm_bulk_gefs results .... Test 100 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5324,8 +5306,8 @@ Checking test 101 datm_mx025_cfsr results .... Test 101 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5336,8 +5318,8 @@ Checking test 102 datm_mx025_gefs results .... Test 102 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_105397/datm_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/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 +5328,5 @@ Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jan 21 20:05:03 UTC 2021 -Elapsed time: 01h:07m:12s. Have a nice day! +Sun Jan 24 03:40:50 UTC 2021 +Elapsed time: 01h:04m:39s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index f5b1d5fbd7..d9b857a95c 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,16 +1,16 @@ -Thu Jan 21 12:55:28 CST 2021 +Sat Jan 23 20:38:55 CST 2021 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control 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 @@ -23,12 +23,6 @@ Checking test 001 fv3_ccpp_control 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 @@ -41,12 +35,6 @@ Checking test 001 fv3_ccpp_control 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 @@ -82,15 +70,15 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -150,15 +138,15 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads 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 @@ -218,27 +206,21 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... - 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 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 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 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 @@ -274,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +324,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-20210120/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +372,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-20210120/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +420,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-20210120/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +468,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-20210120/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +516,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-20210120/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +564,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-20210120/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +612,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-20210120/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +680,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_lndp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_lheatstrg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1030,8 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1079,8 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1153,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1221,8 @@ Checking test 021 fv3_ccpp_control_32bit results .... Test 021 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1277,8 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1344,8 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Test 023 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1355,8 @@ Checking test 024 fv3_ccpp_regional_control results .... Test 024 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1364,8 @@ Checking test 025 fv3_ccpp_regional_restart results .... Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1393,8 +1375,8 @@ Checking test 026 fv3_ccpp_regional_quilt results .... Test 026 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1386,8 @@ Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1416,8 @@ Checking test 028 fv3_ccpp_control_debug results .... Test 028 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1436,8 @@ Checking test 029 fv3_ccpp_stretched_nest_debug results .... Test 029 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1484,8 @@ Checking test 030 fv3_ccpp_gfdlmp results .... Test 030 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1532,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... Test 031 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1580,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... Test 032 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1628,8 @@ Checking test 033 fv3_ccpp_csawmg results .... Test 033 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1676,8 @@ Checking test 034 fv3_ccpp_satmedmf results .... Test 034 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_satmedmfq_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1724,8 @@ Checking test 035 fv3_ccpp_satmedmfq results .... Test 035 fv3_ccpp_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1772,8 @@ Checking test 036 fv3_ccpp_gfdlmp_32bit results .... Test 036 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1824,8 @@ Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1878,8 @@ Checking test 038 fv3_ccpp_cpt results .... Test 038 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +1970,8 @@ Checking test 039 fv3_ccpp_gsd results .... Test 039 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_rap_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +2038,8 @@ Checking test 040 fv3_ccpp_rap results .... Test 040 fv3_ccpp_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_hrrr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +2106,8 @@ Checking test 041 fv3_ccpp_hrrr results .... Test 041 fv3_ccpp_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +2174,8 @@ Checking test 042 fv3_ccpp_thompson results .... Test 042 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +2242,8 @@ Checking test 043 fv3_ccpp_thompson_no_aero results .... Test 043 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +2310,8 @@ Checking test 044 fv3_ccpp_rrfs_v1beta results .... Test 044 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +2378,8 @@ Checking test 045 fv3_ccpp_gfs_v15p2 results .... Test 045 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +2458,8 @@ Checking test 046 fv3_ccpp_gfs_v16beta results .... Test 046 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +2508,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_restart results .... Test 047 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +2576,8 @@ Checking test 048 fv3_ccpp_gfs_v16beta_stochy results .... Test 048 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +2644,8 @@ Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +2712,8 @@ Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 050 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -2792,8 +2774,8 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -2840,8 +2822,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Test 052 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -2888,8 +2870,8 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Test 053 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -2936,8 +2918,8 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Test 054 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -3004,8 +2986,8 @@ Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... Test 055 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -3072,8 +3054,8 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -3090,8 +3072,8 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -3158,8 +3140,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -3226,8 +3208,8 @@ Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... Test 059 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -3294,8 +3276,8 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -3362,8 +3344,8 @@ Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -3430,8 +3412,8 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Test 062 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -3498,8 +3480,8 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Test 063 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -3566,8 +3548,8 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Test 064 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -3634,8 +3616,8 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Test 065 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -3702,8 +3684,8 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Test 066 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -3770,8 +3752,8 @@ Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -3788,8 +3770,8 @@ Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3841,8 +3823,8 @@ Checking test 069 cpld_control results .... Test 069 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3894,8 +3876,8 @@ Checking test 070 cpld_restart results .... Test 070 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_controlfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3947,8 +3929,8 @@ Checking test 071 cpld_controlfrac results .... Test 071 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restartfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4000,8 +3982,8 @@ Checking test 072 cpld_restartfrac results .... Test 072 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4053,8 +4035,8 @@ Checking test 073 cpld_2threads results .... Test 073 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4106,8 +4088,8 @@ Checking test 074 cpld_decomp results .... Test 074 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4159,8 +4141,8 @@ Checking test 075 cpld_satmedmf results .... Test 075 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4212,8 +4194,8 @@ Checking test 076 cpld_ca results .... Test 076 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4265,8 +4247,8 @@ Checking test 077 cpld_control_c192 results .... Test 077 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4318,8 +4300,8 @@ Checking test 078 cpld_restart_c192 results .... Test 078 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_controlfrac_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4371,8 +4353,8 @@ Checking test 079 cpld_controlfrac_c192 results .... Test 079 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restartfrac_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4424,8 +4406,8 @@ Checking test 080 cpld_restartfrac_c192 results .... Test 080 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4480,8 +4462,8 @@ Checking test 081 cpld_control_c384 results .... Test 081 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4536,8 +4518,8 @@ Checking test 082 cpld_restart_c384 results .... Test 082 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4592,8 +4574,8 @@ Checking test 083 cpld_controlfrac_c384 results .... Test 083 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restartfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4648,8 +4630,8 @@ Checking test 084 cpld_restartfrac_c384 results .... Test 084 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4704,8 +4686,8 @@ Checking test 085 cpld_bmark results .... Test 085 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4760,8 +4742,8 @@ Checking test 086 cpld_restart_bmark results .... Test 086 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmarkfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4816,8 +4798,8 @@ Checking test 087 cpld_bmarkfrac results .... Test 087 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_bmarkfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4872,8 +4854,8 @@ Checking test 088 cpld_restart_bmarkfrac results .... Test 088 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmarkfrac_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4928,8 +4910,8 @@ Checking test 089 cpld_bmarkfrac_v16 results .... Test 089 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_restart_bmarkfrac_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4984,8 +4966,8 @@ Checking test 090 cpld_restart_bmarkfrac_v16 results .... Test 090 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5043,8 +5025,8 @@ Checking test 091 cpld_bmark_wave results .... Test 091 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmarkfrac_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5102,8 +5084,8 @@ Checking test 092 cpld_bmarkfrac_wave results .... Test 092 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_bmarkfrac_wave_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5161,8 +5143,8 @@ Checking test 093 cpld_bmarkfrac_wave_v16 results .... Test 093 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_debug_prod Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5214,8 +5196,8 @@ Checking test 094 cpld_debug results .... Test 094 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/cpld_debugfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_debugfrac_prod Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5267,8 +5249,8 @@ Checking test 095 cpld_debugfrac results .... Test 095 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -5276,8 +5258,8 @@ Checking test 096 datm_control_cfsr results .... Test 096 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -5285,8 +5267,8 @@ Checking test 097 datm_restart_cfsr results .... Test 097 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -5294,8 +5276,8 @@ Checking test 098 datm_control_gefs results .... Test 098 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -5303,8 +5285,8 @@ Checking test 099 datm_bulk_cfsr results .... Test 099 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 @@ -5312,8 +5294,8 @@ Checking test 100 datm_bulk_gefs results .... Test 100 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5324,8 +5306,8 @@ Checking test 101 datm_mx025_cfsr results .... Test 101 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5336,8 +5318,8 @@ Checking test 102 datm_mx025_gefs results .... Test 102 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_410437/datm_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/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 +5328,5 @@ Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jan 21 14:27:59 CST 2021 -Elapsed time: 01h:32m:32s. Have a nice day! +Sat Jan 23 22:05:47 CST 2021 +Elapsed time: 01h:26m:53s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index b70ec3f67b..48f4f39e66 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Fri Jan 22 13:41:33 UTC 2021 +Sun Jan 24 04:17:22 UTC 2021 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -23,12 +23,6 @@ Checking test 001 fv3_ccpp_control 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 @@ -41,12 +35,6 @@ Checking test 001 fv3_ccpp_control 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 @@ -82,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-20210120/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -150,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-20210120/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -218,27 +206,21 @@ 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-20210120/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... - 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 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 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 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 @@ -274,8 +256,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-20210120/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 +324,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-20210120/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 +372,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-20210120/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 +420,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-20210120/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 +468,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-20210120/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 +516,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-20210120/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 +564,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-20210120/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 +612,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-20210120/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 +680,8 @@ 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-20210120/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_ca_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_ca_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_lndp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_lndp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -1092,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -1215,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1226,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1235,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1246,8 +1228,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -1257,8 +1239,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1287,8 +1269,8 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -1307,8 +1289,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,8 +1337,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -1403,8 +1385,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -1451,8 +1433,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1499,8 +1481,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1547,8 +1529,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1595,8 +1577,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -1643,8 +1625,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -1695,8 +1677,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1749,8 +1731,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1823,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_rap_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_rap_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1891,8 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_hrrr_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1959,8 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2045,8 +2027,8 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -2113,8 +2095,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -2181,8 +2163,8 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v15p2_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -2249,8 +2231,8 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfs_v16beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -2329,8 +2311,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta results .... Test 043 fv3_ccpp_gfs_v16beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -2379,8 +2361,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... Test 044 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -2447,8 +2429,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... Test 045 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -2515,8 +2497,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -2583,8 +2565,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -2645,8 +2627,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -2693,8 +2675,8 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Test 049 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -2741,8 +2723,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Test 050 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -2789,8 +2771,8 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Test 051 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -2857,8 +2839,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_flake results .... Test 052 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -2925,8 +2907,8 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -2943,8 +2925,8 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -3011,8 +2993,8 @@ Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... Test 055 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -3079,8 +3061,8 @@ Checking test 056 fv3_ccpp_gfs_v16beta_debug results .... Test 056 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -3147,8 +3129,8 @@ Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -3215,8 +3197,8 @@ Checking test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -3283,8 +3265,8 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Test 059 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -3351,8 +3333,8 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Test 060 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -3419,8 +3401,8 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Test 061 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -3487,8 +3469,8 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Test 062 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -3555,8 +3537,8 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Test 063 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 @@ -3623,8 +3605,8 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_30408/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/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 +3624,5 @@ Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jan 22 14:22:03 UTC 2021 -Elapsed time: 00h:40m:30s. Have a nice day! +Sun Jan 24 05:01:04 UTC 2021 +Elapsed time: 00h:43m:42s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index fc76d15d91..5b46978e49 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Thu Jan 21 19:02:39 UTC 2021 +Sun Jan 24 19:49:31 UTC 2021 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -23,12 +23,6 @@ Checking test 001 fv3_ccpp_control 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 @@ -41,12 +35,6 @@ Checking test 001 fv3_ccpp_control 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 @@ -82,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-20210120/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -150,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-20210120/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -218,27 +206,21 @@ 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-20210120/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... - 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 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 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 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 @@ -274,8 +256,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-20210120/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 +324,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-20210120/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 +372,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-20210120/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 +420,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-20210120/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 +430,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 ............ALT CHECK......OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.nc ............ALT CHECK......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 @@ -486,8 +468,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-20210120/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 +516,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-20210120/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 +564,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-20210120/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 +612,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-20210120/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 +680,8 @@ 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-20210120/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_ca_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_lndp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_lndp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 +1030,8 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1122,8 +1104,8 @@ Checking test 019 fv3_ccpp_multigases results .... Test 019 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -1190,8 +1172,8 @@ Checking test 020 fv3_ccpp_control_32bit results .... Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1246,8 +1228,8 @@ Checking test 021 fv3_ccpp_stretched results .... Test 021 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -1313,8 +1295,8 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1324,8 +1306,8 @@ Checking test 023 fv3_ccpp_regional_control results .... Test 023 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1333,8 +1315,8 @@ Checking test 024 fv3_ccpp_regional_restart results .... Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1344,8 +1326,8 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -1355,8 +1337,8 @@ Checking test 026 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 026 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1385,8 +1367,8 @@ Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -1405,8 +1387,8 @@ Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1453,8 +1435,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -1501,8 +1483,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -1549,8 +1531,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1597,8 +1579,8 @@ Checking test 032 fv3_ccpp_csawmg results .... Test 032 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1645,8 +1627,8 @@ Checking test 033 fv3_ccpp_satmedmf results .... Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_satmedmfq_prod Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1693,8 +1675,8 @@ Checking test 034 fv3_ccpp_satmedmfq results .... Test 034 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -1741,8 +1723,8 @@ Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Test 035 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -1793,8 +1775,8 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_cpt_prod Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1847,8 +1829,8 @@ Checking test 037 fv3_ccpp_cpt results .... Test 037 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gsd_prod Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1939,8 +1921,8 @@ Checking test 038 fv3_ccpp_gsd results .... Test 038 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_rap_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_rap_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_rap_prod Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2007,8 +1989,8 @@ Checking test 039 fv3_ccpp_rap results .... Test 039 fv3_ccpp_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_hrrr_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_hrrr_prod Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2075,8 +2057,8 @@ Checking test 040 fv3_ccpp_hrrr results .... Test 040 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_thompson_prod Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2143,8 +2125,8 @@ Checking test 041 fv3_ccpp_thompson results .... Test 041 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -2211,8 +2193,8 @@ Checking test 042 fv3_ccpp_thompson_no_aero results .... Test 042 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -2279,8 +2261,8 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... Test 043 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v15p2_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -2347,8 +2329,8 @@ Checking test 044 fv3_ccpp_gfs_v15p2 results .... Test 044 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfs_v16beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -2427,8 +2409,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta results .... Test 045 fv3_ccpp_gfs_v16beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -2477,8 +2459,8 @@ Checking test 046 fv3_ccpp_gfs_v16beta_restart results .... Test 046 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -2545,8 +2527,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_stochy results .... Test 047 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -2613,8 +2595,8 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -2681,8 +2663,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 049 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -2743,8 +2725,8 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -2791,8 +2773,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Test 051 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -2839,8 +2821,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Test 052 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -2887,8 +2869,8 @@ Checking test 053 fv3_ccpp_gocart_clm results .... Test 053 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -2955,8 +2937,8 @@ Checking test 054 fv3_ccpp_gfs_v16beta_flake results .... Test 054 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -3023,8 +3005,8 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -3041,8 +3023,8 @@ Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -3109,8 +3091,8 @@ Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Test 057 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -3177,8 +3159,8 @@ Checking test 058 fv3_ccpp_gfs_v16beta_debug results .... Test 058 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -3245,8 +3227,8 @@ Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -3313,8 +3295,8 @@ Checking test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -3381,8 +3363,8 @@ Checking test 061 fv3_ccpp_gsd_debug results .... Test 061 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -3449,8 +3431,8 @@ Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... Test 062 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -3517,8 +3499,8 @@ Checking test 063 fv3_ccpp_thompson_debug results .... Test 063 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -3585,8 +3567,8 @@ Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... Test 064 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -3653,8 +3635,8 @@ Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... Test 065 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -3721,8 +3703,8 @@ Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -3739,8 +3721,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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_control_prod Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3792,8 +3774,8 @@ Checking test 068 cpld_control results .... Test 068 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restart_prod Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3845,8 +3827,8 @@ Checking test 069 cpld_restart results .... Test 069 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_controlfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_controlfrac_prod Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3898,8 +3880,8 @@ Checking test 070 cpld_controlfrac results .... Test 070 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restartfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restartfrac_prod Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3951,8 +3933,8 @@ Checking test 071 cpld_restartfrac results .... Test 071 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_2threads_prod Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4004,8 +3986,8 @@ Checking test 072 cpld_2threads results .... Test 072 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_decomp_prod Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4057,8 +4039,8 @@ Checking test 073 cpld_decomp results .... Test 073 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_satmedmf_prod Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4110,8 +4092,8 @@ Checking test 074 cpld_satmedmf results .... Test 074 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_ca_prod Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4163,8 +4145,8 @@ Checking test 075 cpld_ca results .... Test 075 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_control_c192_prod Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4216,8 +4198,8 @@ Checking test 076 cpld_control_c192 results .... Test 076 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restart_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restart_c192_prod Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4269,8 +4251,8 @@ Checking test 077 cpld_restart_c192 results .... Test 077 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_controlfrac_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_controlfrac_c192_prod Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4322,8 +4304,8 @@ Checking test 078 cpld_controlfrac_c192 results .... Test 078 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restartfrac_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restartfrac_c192_prod Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4375,8 +4357,8 @@ Checking test 079 cpld_restartfrac_c192 results .... Test 079 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_control_c384_prod Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4431,8 +4413,8 @@ Checking test 080 cpld_control_c384 results .... Test 080 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restart_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restart_c384_prod Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4487,8 +4469,8 @@ Checking test 081 cpld_restart_c384 results .... Test 081 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_controlfrac_c384_prod Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4543,8 +4525,8 @@ Checking test 082 cpld_controlfrac_c384 results .... Test 082 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restartfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restartfrac_c384_prod Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4599,8 +4581,8 @@ Checking test 083 cpld_restartfrac_c384 results .... Test 083 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_bmark_prod Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4655,8 +4637,8 @@ Checking test 084 cpld_bmark results .... Test 084 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restart_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restart_bmark_prod Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4711,8 +4693,8 @@ Checking test 085 cpld_restart_bmark results .... Test 085 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_bmarkfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_bmarkfrac_prod Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4767,8 +4749,8 @@ Checking test 086 cpld_bmarkfrac results .... Test 086 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restart_bmarkfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restart_bmarkfrac_prod Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4823,8 +4805,8 @@ Checking test 087 cpld_restart_bmarkfrac results .... Test 087 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_bmarkfrac_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_bmarkfrac_v16_prod Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4879,8 +4861,8 @@ Checking test 088 cpld_bmarkfrac_v16 results .... Test 088 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_restart_bmarkfrac_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restart_bmarkfrac_v16_prod Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4935,8 +4917,8 @@ Checking test 089 cpld_restart_bmarkfrac_v16 results .... Test 089 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_bmark_wave_prod Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4994,8 +4976,8 @@ Checking test 090 cpld_bmark_wave results .... Test 090 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_bmarkfrac_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmarkfrac_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_bmarkfrac_wave_prod Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5053,8 +5035,8 @@ Checking test 091 cpld_bmarkfrac_wave results .... Test 091 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_bmarkfrac_wave_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmarkfrac_wave_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_bmarkfrac_wave_v16_prod Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5112,8 +5094,8 @@ Checking test 092 cpld_bmarkfrac_wave_v16 results .... Test 092 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_debug_prod Checking test 093 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5165,8 +5147,8 @@ Checking test 093 cpld_debug results .... Test 093 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/cpld_debugfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_debugfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_debugfrac_prod Checking test 094 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5218,8 +5200,8 @@ Checking test 094 cpld_debugfrac results .... Test 094 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/datm_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -5227,8 +5209,8 @@ Checking test 095 datm_control_cfsr results .... Test 095 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/datm_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -5236,8 +5218,8 @@ Checking test 096 datm_restart_cfsr results .... Test 096 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/datm_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -5245,8 +5227,8 @@ Checking test 097 datm_control_gefs results .... Test 097 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/datm_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -5254,8 +5236,8 @@ Checking test 098 datm_bulk_cfsr results .... Test 098 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/datm_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 @@ -5263,8 +5245,8 @@ Checking test 099 datm_bulk_gefs results .... Test 099 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/datm_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/datm_mx025_cfsr Checking test 100 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5275,8 +5257,8 @@ Checking test 100 datm_mx025_cfsr results .... Test 100 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/datm_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/datm_mx025_gefs Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5287,8 +5269,8 @@ Checking test 101 datm_mx025_gefs results .... Test 101 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210120/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_112461/datm_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/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 +5279,5 @@ Test 102 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jan 21 21:28:32 UTC 2021 -Elapsed time: 02h:25m:56s. Have a nice day! +Sun Jan 24 22:00:45 UTC 2021 +Elapsed time: 02h:11m:17s. Have a nice day! diff --git a/tests/ci/Dockerfile b/tests/ci/Dockerfile index 3a8bd8ebf0..c685eafbad 100644 --- a/tests/ci/Dockerfile +++ b/tests/ci/Dockerfile @@ -1,4 +1,4 @@ -From noaaemc/ubuntu-hpc:v1 +From noaaemc/ubuntu-hpc:v1.1 ENV HOME=/home/builder COPY --chown=builder:builder . $HOME/ufs-weather-model diff --git a/tests/ci/ci.sh b/tests/ci/ci.sh index f37cbde0f8..c2a093832a 100755 --- a/tests/ci/ci.sh +++ b/tests/ci/ci.sh @@ -74,8 +74,8 @@ if [ $BUILD = "true" ]; then elif [ $RUN == "true" ]; then - sudo docker run -d --rm -v DataVolume:/tmp minsukjinoaa/fv3-input-data:develop-20200713 - sudo docker run -d -e test_case=${TEST_CASE} -v DataVolume:/home/builder/data/NEMSfv3gfs/develop-20201118 --name my-container ${IMG_NAME} + sudo docker run -d --rm -v DataVolume:/tmp minsukjinoaa/fv3-input-data:input-data-20210115 + sudo docker run -d -e test_case=${TEST_CASE} -v DataVolume:/home/builder/data/NEMSfv3gfs/input-data-20210115 --name my-container ${IMG_NAME} echo 'cache,rss,shmem' >memory_stat sleep 3 diff --git a/tests/fv3_conf/ccpp_control_run.IN b/tests/fv3_conf/ccpp_control_run.IN index 033d7e8925..68b3a1b1fc 100644 --- a/tests/fv3_conf/ccpp_control_run.IN +++ b/tests/fv3_conf/ccpp_control_run.IN @@ -11,26 +11,40 @@ fi echo "inputdir=$inputdir,NPX=$NPX" UNIT_TEST=${UNIT_TEST:-false} +SUFFIX=${RT_SUFFIX} if [ $WARM_START = .F. ]; then cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - rsync -arv ../fv3_ccpp_control${RT_SUFFIX}/RESTART/ INPUT/ - rm -f INPUT/fv_core.res.* - rm -f INPUT/fv_srf_wnd.res.* - rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.* - rm -f INPUT/sfc_data.* - cd INPUT - rename 20161004.000000. '' 20161004.000000.* - cp ../../fv3_ccpp_control${RT_SUFFIX}/INPUT/grid_spec.nc . - cp ../../fv3_ccpp_control${RT_SUFFIX}/INPUT/*_grid.tile*.nc . - cp ../../fv3_ccpp_control${RT_SUFFIX}/INPUT/oro_data.tile*.nc . - if [[ $IAU_INC_FILES != '' ]] || [[ $READ_INCREMENT = '.T.' ]]; then - cp ../../fv3_ccpp_control${RT_SUFFIX}/INPUT/fv3_increment.nc . + if [[ ${UNIT_TEST} == true ]]; then + SUFFIX=${BL_SUFFIX} fi + + rsync -arv ../fv3_ccpp_control${SUFFIX}/RESTART/ INPUT/ + if [[ $IAU_INC_FILES = 'fv3_increment.nc' ]] || [[ $READ_INCREMENT = '.T.' ]]; then + #read_inc and iau tests restart from fh=24 + cp ../fv3_ccpp_control${SUFFIX}/RESTART/coupler.res INPUT/. + cp ../fv3_ccpp_control${SUFFIX}/RESTART/fv_core.res.* INPUT/. + cp ../fv3_ccpp_control${SUFFIX}/RESTART/fv_srf_wnd.res.* INPUT/. + cp ../fv3_ccpp_control${SUFFIX}/RESTART/fv_tracer.* INPUT/. + cp ../fv3_ccpp_control${SUFFIX}/RESTART/phy_data.* INPUT/. + cp ../fv3_ccpp_control${SUFFIX}/RESTART/sfc_data.* INPUT/. + cp ../fv3_ccpp_control${SUFFIX}/INPUT/fv3_increment.nc INPUT/. + cd INPUT + else + #restart test start from fh=12 + cp ../fv3_ccpp_control${SUFFIX}/RESTART/20161003.120000.* INPUT/. + cd INPUT + for RFILE in 20161003.120000.*; do + [ -e $RFILE ] || exit 1 + mv $RFILE ${RFILE#20161003.120000.} + done + fi + cp ../../fv3_ccpp_control${SUFFIX}/INPUT/grid_spec.nc . + cp ../../fv3_ccpp_control${SUFFIX}/INPUT/*_grid.tile*.nc . + cp ../../fv3_ccpp_control${SUFFIX}/INPUT/oro_data.tile*.nc . cd .. fi diff --git a/tests/rt.sh b/tests/rt.sh index 547d570495..5e027a7892 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-20210120/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210125/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210120} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210125} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210115} diff --git a/tests/tests/fv3_ccpp_2threads b/tests/tests/fv3_ccpp_2threads index 0a37b1c15c..fe0c77a406 100644 --- a/tests/tests/fv3_ccpp_2threads +++ b/tests/tests/fv3_ccpp_2threads @@ -73,7 +73,6 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 -export FHMAX=48 export THRD=2 export TASKS=$TASKS_thrd export TPN=$TPN_thrd diff --git a/tests/tests/fv3_ccpp_control b/tests/tests/fv3_ccpp_control index 2f056493d9..51c284c773 100644 --- a/tests/tests/fv3_ccpp_control +++ b/tests/tests/fv3_ccpp_control @@ -26,12 +26,6 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ phyf024.tile4.nc \ phyf024.tile5.nc \ phyf024.tile6.nc \ - phyf048.tile1.nc \ - phyf048.tile2.nc \ - phyf048.tile3.nc \ - phyf048.tile4.nc \ - phyf048.tile5.nc \ - phyf048.tile6.nc \ dynf000.tile1.nc \ dynf000.tile2.nc \ dynf000.tile3.nc \ @@ -44,12 +38,6 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ dynf024.tile4.nc \ dynf024.tile5.nc \ dynf024.tile6.nc \ - dynf048.tile1.nc \ - dynf048.tile2.nc \ - dynf048.tile3.nc \ - dynf048.tile4.nc \ - dynf048.tile5.nc \ - dynf048.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -85,8 +73,7 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 -export FHMAX=48 -export RESTART_INTERVAL=24 +export RESTART_INTERVAL=12 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 diff --git a/tests/tests/fv3_ccpp_decomp b/tests/tests/fv3_ccpp_decomp index 96b5535945..6843ae6a6f 100644 --- a/tests/tests/fv3_ccpp_decomp +++ b/tests/tests/fv3_ccpp_decomp @@ -73,7 +73,6 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 -export FHMAX=48 export INPES=6 export JNPES=4 diff --git a/tests/tests/fv3_ccpp_restart b/tests/tests/fv3_ccpp_restart index ddf0cec3f5..1f7c8b3905 100644 --- a/tests/tests/fv3_ccpp_restart +++ b/tests/tests/fv3_ccpp_restart @@ -8,24 +8,18 @@ export TEST_DESCR="Compare FV3 CCPP restart results with previous trunk version" export CNTL_DIR=fv3_control -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf048.tile1.nc \ - phyf048.tile2.nc \ - phyf048.tile3.nc \ - phyf048.tile4.nc \ - phyf048.tile5.nc \ - phyf048.tile6.nc \ - dynf048.tile1.nc \ - dynf048.tile2.nc \ - dynf048.tile3.nc \ - dynf048.tile4.nc \ - dynf048.tile5.nc \ - dynf048.tile6.nc \ +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -61,6 +55,8 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 +export FHROT=12 +export FHMAX=24 export WARM_START=.T. export NGGPS_IC=.F. @@ -68,7 +64,6 @@ export EXTERNAL_IC=.F. export MAKE_NH=.F. export MOUNTAIN=.T. export NA_INIT=0 -export FHMAX=48 export FDIAG=3 export NSTF_NAME=2,0,1,0,5 diff --git a/tests/utest b/tests/utest index a02b3ed08d..e9dcc83413 100755 --- a/tests/utest +++ b/tests/utest @@ -136,8 +136,6 @@ run_utests() { case $rc in std_base) CREATE_BASELINE=true - RTPWD=$baseline_location - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env export UNIT_TEST=true @@ -147,8 +145,6 @@ run_utests() { ;; std) CREATE_BASELINE=false - RTPWD=$NEW_BASELINE - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env export UNIT_TEST=true @@ -157,8 +153,6 @@ run_utests() { ;; thr) CREATE_BASELINE=false - RTPWD=$NEW_BASELINE - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base THRD=2 # INPES is sometimes odd, so use JNPES. Make sure JNPES is divisible by THRD @@ -178,8 +172,6 @@ run_utests() { ;; mpi) CREATE_BASELINE=false - RTPWD=$NEW_BASELINE - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base JNPES=$(( JNPES/2 )) WRITE_GROUP=2 @@ -198,8 +190,6 @@ run_utests() { ;; dcp) CREATE_BASELINE=false - RTPWD=$NEW_BASELINE - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base temp=$INPES INPES=$JNPES @@ -213,8 +203,6 @@ run_utests() { ;; rst) # this is not going to work for regional model CREATE_BASELINE=false - RTPWD=$NEW_BASELINE - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base # Set up date and time of restart files for restart run RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( SHOUR + FHMAX/2 )))0000" @@ -277,8 +265,6 @@ run_utests() { ;; bit_base) CREATE_BASELINE=true - RTPWD=$baseline_location - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_bit_base comp_nm=bit cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env @@ -288,8 +274,6 @@ run_utests() { ;; bit) CREATE_BASELINE=false - RTPWD=$NEW_BASELINE - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_bit_base comp_nm=bit cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env @@ -299,8 +283,6 @@ run_utests() { ;; dbg_base) CREATE_BASELINE=true - RTPWD=$baseline_location - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_dbg_base comp_nm=dbg WLCLK=30 @@ -312,8 +294,6 @@ run_utests() { ;; dbg) CREATE_BASELINE=false - RTPWD=$NEW_BASELINE - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_dbg_base comp_nm=dbg WLCLK=30 @@ -324,7 +304,6 @@ run_utests() { EOF ;; esac - INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20201220/ cat <<- EOF > ${RUNDIR_ROOT}/run_test${RT_SUFFIX}.env export MACHINE_ID=${MACHINE_ID} @@ -723,18 +702,12 @@ fi mkdir -p ${STMP}/${USER} NEW_BASELINE=${STMP}/${USER}/FV3_UT/UNIT_TEST -if [[ $MACHINE_ID == hera.* || $MACHINE_ID == orion.* ]]; then - baseline_location=$DISKNM/NEMSfv3gfs/develop-20201118/${RT_COMPILER^^} -else - baseline_location=$DISKNM/NEMSfv3gfs/develop-20201118 -fi -RTPWD=$baseline_location -INPUTDATA_ROOT=$RTPWD +RTPWD=${NEW_BASELINE} +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210115} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20201220/ rm -rf $NEW_BASELINE mkdir -p $NEW_BASELINE -ln -s ${RTPWD}/FV3_input_data ${NEW_BASELINE} rm -f fail_unit_test ${unittest_log} From 6a4c30762764637c361b310645a4fb3abd93feca Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Wed, 27 Jan 2021 12:18:08 -0500 Subject: [PATCH 063/109] MOM6 bugfixes, GFDL update, update CDMBGWD settings; fix for restart reproducibility (without waves) when USE_LA_LI2016=True, sign error on fprec passed to ocean, GFDL update, resolution dependent cdmbgwd settings (#379) * implements two MOM6 bugfixes in the NUOPC MOM6 cap to allow restart reproducibility when USE_LA_LI2016=True and to change the sign of the latent heat flux associated with frozen precipitation (fprec) exported to MOM6 * updates MOM6 to include the GFDL 20210120 main branch which contains EMC's wave coupling code, alone with some minor code standardization and documentation * updates the cdmbgwd namelist settings for FV3 standalone tests at C96 and implements resolution dependent values for ufs-cpld tests Co-authored-by: Ali --- MOM6-interface/MOM6 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 2605 ++++++++++---------- tests/RegressionTests_cheyenne.intel.log | 812 +++--- tests/RegressionTests_gaea.intel.log | 266 +- tests/RegressionTests_hera.gnu.log | 94 +- tests/RegressionTests_hera.intel.log | 552 +++-- tests/RegressionTests_orion.intel.log | 550 +++-- tests/RegressionTests_wcoss_cray.log | 266 +- tests/RegressionTests_wcoss_dell_p3.log | 512 ++-- tests/default_vars.sh | 30 + tests/fv3_conf/cpld_control_run.IN | 6 + tests/parm/ccpp_v15p2_c96.nml.IN | 2 +- tests/parm/ccpp_v15p2_c96_rrtmgp.nml.IN | 2 +- tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN | 2 +- tests/parm/ccpp_v16beta_c96.nml.IN | 2 +- tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN | 2 +- tests/parm/ccpp_v16beta_flake_c96.nml.IN | 2 +- tests/parm/input.benchmark_ccpp.nml.IN | 4 +- tests/parm/input.benchmark_v16.nml.IN | 6 +- tests/parm/input.mom6_ccpp.nml.IN | 4 +- tests/rt.conf | 6 +- tests/rt.sh | 4 +- tests/tests/cpld_bmark | 4 + tests/tests/cpld_bmark_35d | 4 + tests/tests/cpld_bmark_wave | 4 +- tests/tests/cpld_bmark_wave_35d | 4 +- tests/tests/cpld_bmarkfrac | 4 + tests/tests/cpld_bmarkfrac_v16 | 4 + tests/tests/cpld_bmarkfrac_wave | 4 +- tests/tests/cpld_bmarkfrac_wave_35d | 4 +- tests/tests/cpld_bmarkfrac_wave_v16 | 4 +- tests/tests/cpld_bmarkfrac_wave_v16_35d | 4 +- tests/tests/cpld_control_c192 | 3 + tests/tests/cpld_control_c384 | 3 + tests/tests/cpld_control_wave | 81 + tests/tests/cpld_controlfrac_c192 | 3 + tests/tests/cpld_controlfrac_c384 | 3 + tests/tests/cpld_restart_bmark | 4 + tests/tests/cpld_restart_bmarkfrac | 4 + tests/tests/cpld_restart_bmarkfrac_v16 | 4 + tests/tests/cpld_restart_c192 | 3 + tests/tests/cpld_restart_c384 | 3 + tests/tests/cpld_restartfrac_c192 | 3 + tests/tests/cpld_restartfrac_c384 | 3 + 44 files changed, 3065 insertions(+), 2823 deletions(-) create mode 100644 tests/tests/cpld_control_wave diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 593aecb3be..d531a324a9 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 593aecb3be159eca651b727ff3caea2754169118 +Subproject commit d531a324a91f5de652055cbd8adfd84c4e75be30 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index aa68aed849..593fb82853 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,1369 +1,1340 @@ -Mon Jan 25 06:17:26 MST 2021 +Tue Jan 26 10:50:35 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp 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 ............SKIP for gnu compilers - 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 +Moving baseline 001 fv3_ccpp_gfdlmp files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.nemsio .........OK + Moving phyf024.nemsio .........OK + Moving dynf000.nemsio .........OK + Moving dynf024.nemsio .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK Test 001 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/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 - 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 ............SKIP for gnu compilers - 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 +Moving baseline 002 fv3_ccpp_gfs_v15p2 files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK Test 002 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/fv3_ccpp_gfs_v16beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/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 - 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 ............SKIP for gnu compilers - 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 +Moving baseline 003 fv3_ccpp_gfs_v16beta files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving phyf048.tile1.nc .........OK + Moving phyf048.tile2.nc .........OK + Moving phyf048.tile3.nc .........OK + Moving phyf048.tile4.nc .........OK + Moving phyf048.tile5.nc .........OK + Moving phyf048.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving dynf048.tile1.nc .........OK + Moving dynf048.tile2.nc .........OK + Moving dynf048.tile3.nc .........OK + Moving dynf048.tile4.nc .........OK + Moving dynf048.tile5.nc .........OK + Moving dynf048.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK Test 003 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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 - 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 ............SKIP for gnu compilers - 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 004 fv3_ccpp_gfs_v16beta_restart PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 004 fv3_ccpp_gfs_v16beta_stochy results .... +Moving baseline 004 fv3_ccpp_gfs_v16beta_stochy files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf012.tile1.nc .........OK + Moving phyf012.tile2.nc .........OK + Moving phyf012.tile3.nc .........OK + Moving phyf012.tile4.nc .........OK + Moving phyf012.tile5.nc .........OK + Moving phyf012.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf012.tile1.nc .........OK + Moving dynf012.tile2.nc .........OK + Moving dynf012.tile3.nc .........OK + Moving dynf012.tile4.nc .........OK + Moving dynf012.tile5.nc .........OK + Moving dynf012.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 004 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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 - 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 ............SKIP for gnu compilers - 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 005 fv3_ccpp_gfs_v16beta_stochy PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v16beta_flake_prod +Checking test 005 fv3_ccpp_gfs_v16beta_flake results .... +Moving baseline 005 fv3_ccpp_gfs_v16beta_flake files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 005 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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 - 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 ............SKIP for gnu compilers - 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 006 fv3_ccpp_gfs_v16beta_flake PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 006 fv3_ccpp_gfs_v15p2_RRTMGP results .... +Moving baseline 006 fv3_ccpp_gfs_v15p2_RRTMGP files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 006 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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 - 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 ............SKIP for gnu compilers - 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 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 007 fv3_ccpp_gfs_v16beta_RRTMGP results .... +Moving baseline 007 fv3_ccpp_gfs_v16beta_RRTMGP files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 007 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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 - 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 ............SKIP for gnu compilers - 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 008 fv3_ccpp_gfs_v16beta_RRTMGP PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gsd_prod +Checking test 008 fv3_ccpp_gsd results .... +Moving baseline 008 fv3_ccpp_gsd files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving phyf027.tile1.nc .........OK + Moving phyf027.tile2.nc .........OK + Moving phyf027.tile3.nc .........OK + Moving phyf027.tile4.nc .........OK + Moving phyf027.tile5.nc .........OK + Moving phyf027.tile6.nc .........OK + Moving phyf048.tile1.nc .........OK + Moving phyf048.tile2.nc .........OK + Moving phyf048.tile3.nc .........OK + Moving phyf048.tile4.nc .........OK + Moving phyf048.tile5.nc .........OK + Moving phyf048.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving dynf027.tile1.nc .........OK + Moving dynf027.tile2.nc .........OK + Moving dynf027.tile3.nc .........OK + Moving dynf027.tile4.nc .........OK + Moving dynf027.tile5.nc .........OK + Moving dynf027.tile6.nc .........OK + Moving dynf048.tile1.nc .........OK + Moving dynf048.tile2.nc .........OK + Moving dynf048.tile3.nc .........OK + Moving dynf048.tile4.nc .........OK + Moving dynf048.tile5.nc .........OK + Moving dynf048.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 008 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/fv3_ccpp_gsd_prod -Checking test 009 fv3_ccpp_gsd 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 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 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 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 ............SKIP for gnu compilers - 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 009 fv3_ccpp_gsd PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_thompson_prod +Checking test 009 fv3_ccpp_thompson results .... +Moving baseline 009 fv3_ccpp_thompson files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 009 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/fv3_ccpp_thompson_prod -Checking test 010 fv3_ccpp_thompson 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 ............SKIP for gnu compilers - 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 010 fv3_ccpp_thompson PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_thompson_no_aero_prod +Checking test 010 fv3_ccpp_thompson_no_aero results .... +Moving baseline 010 fv3_ccpp_thompson_no_aero files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 010 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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 - 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 ............SKIP for gnu compilers - 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 011 fv3_ccpp_thompson_no_aero PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_rrfs_v1beta_prod +Checking test 011 fv3_ccpp_rrfs_v1beta results .... +Moving baseline 011 fv3_ccpp_rrfs_v1beta files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 011 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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 - 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 ............SKIP for gnu compilers - 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 012 fv3_ccpp_rrfs_v1beta PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 012 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +Moving baseline 012 fv3_ccpp_HAFS_v0_hwrf_thompson files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 012 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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 - 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 ............SKIP for gnu compilers - 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 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 013 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +Moving baseline 013 fv3_ccpp_esg_HAFS_v0_hwrf_thompson files .... + Moving atmos_4xdaily.nc .........OK + Moving phyf000.nc .........OK + Moving phyf012.nc .........OK + Moving dynf000.nc .........OK + Moving dynf012.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/sfc_data.nc .........OK + Moving RESTART/phy_data.nc .........OK +Test 013 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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 - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_control_debug_prod +Checking test 014 fv3_ccpp_control_debug results .... +Moving baseline 014 fv3_ccpp_control_debug files .... + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK +Test 014 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/fv3_ccpp_control_debug_prod -Checking test 015 fv3_ccpp_control_debug results .... - 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 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 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 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 -Test 015 fv3_ccpp_control_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 015 fv3_ccpp_gfs_v15p2_debug results .... +Moving baseline 015 fv3_ccpp_gfs_v15p2_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 015 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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 - 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 ............SKIP for gnu compilers - 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_gfs_v15p2_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 016 fv3_ccpp_gfs_v16beta_debug results .... +Moving baseline 016 fv3_ccpp_gfs_v16beta_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 016 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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 - 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 ............SKIP for gnu compilers - 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 017 fv3_ccpp_gfs_v16beta_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 017 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +Moving baseline 017 fv3_ccpp_gfs_v15p2_RRTMGP_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 017 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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 - 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 ............SKIP for gnu compilers - 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 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +Checking test 018 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +Moving baseline 018 fv3_ccpp_gfs_v16beta_RRTMGP_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test 018 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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 - 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 ............SKIP for gnu compilers - 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 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_multigases_prod +Checking test 019 fv3_ccpp_multigases results .... +Moving baseline 019 fv3_ccpp_multigases files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf006.tile1.nc .........OK + Moving phyf006.tile2.nc .........OK + Moving phyf006.tile3.nc .........OK + Moving phyf006.tile4.nc .........OK + Moving phyf006.tile5.nc .........OK + Moving phyf006.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf006.tile1.nc .........OK + Moving dynf006.tile2.nc .........OK + Moving dynf006.tile3.nc .........OK + Moving dynf006.tile4.nc .........OK + Moving dynf006.tile5.nc .........OK + Moving dynf006.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 019 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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 - 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 ............SKIP for gnu compilers - 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/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 020 fv3_ccpp_multigases PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 020 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +Moving baseline 020 fv3_ccpp_HAFS_v0_hwrf_thompson_debug files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf003.tile1.nc .........OK + Moving phyf003.tile2.nc .........OK + Moving phyf003.tile3.nc .........OK + Moving phyf003.tile4.nc .........OK + Moving phyf003.tile5.nc .........OK + Moving phyf003.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf003.tile1.nc .........OK + Moving dynf003.tile2.nc .........OK + Moving dynf003.tile3.nc .........OK + Moving dynf003.tile4.nc .........OK + Moving dynf003.tile5.nc .........OK + Moving dynf003.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK +Test 020 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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 - 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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_12657/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 - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 021 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +Moving baseline 021 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug files .... + Moving atmos_4xdaily.nc .........OK + Moving phyf000.nc .........OK + Moving phyf001.nc .........OK + Moving dynf000.nc .........OK + Moving dynf001.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/sfc_data.nc .........OK + Moving RESTART/phy_data.nc .........OK +Test 021 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jan 25 06:35:43 MST 2021 -Elapsed time: 00h:18m:17s. Have a nice day! +Tue Jan 26 11:39:06 MST 2021 +Elapsed time: 00h:48m:31s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 340bcb1148..db39f3aae8 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Mon Jan 25 07:12:54 MST 2021 +Tue Jan 26 18:04:06 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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-20210125/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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-20210125/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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-20210125/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210125/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -324,8 +324,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-20210125/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -372,8 +372,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-20210125/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -420,8 +420,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-20210125/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -430,9 +430,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 dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.nc ............ALT CHECK......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 @@ -468,8 +468,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-20210125/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -516,8 +516,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-20210125/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -564,8 +564,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-20210125/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -612,8 +612,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-20210125/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,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-20210125/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ 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-20210125/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_lndp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lndp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,19 +1228,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1269,8 +1269,8 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -1289,8 +1289,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1337,8 +1337,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -1385,8 +1385,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -1433,8 +1433,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,8 +1481,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1529,8 +1529,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1577,8 +1577,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -1625,8 +1625,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -1677,8 +1677,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1731,8 +1731,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1823,8 +1823,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_rap_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rap_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1891,8 +1891,8 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_hrrr_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_hrrr_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,8 +1959,8 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2027,8 +2027,8 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -2095,8 +2095,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -2163,77 +2163,9 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gfs_v16beta_prod -Checking test 043 fv3_ccpp_gfs_v16beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfs_v16beta_prod +Checking test 042 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2308,12 +2240,12 @@ Checking test 043 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 043 fv3_ccpp_gfs_v16beta PASS +Test 042 fv3_ccpp_gfs_v16beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfs_v16beta_restart_prod +Checking test 043 fv3_ccpp_gfs_v16beta_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2358,12 +2290,12 @@ Checking test 044 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 044 fv3_ccpp_gfs_v16beta_restart PASS +Test 043 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfs_v16beta_stochy_prod +Checking test 044 fv3_ccpp_gfs_v16beta_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2426,80 +2358,12 @@ Checking test 045 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 045 fv3_ccpp_gfs_v16beta_stochy PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/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 +Test 044 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfs_v16beta_RRTMGP_prod +Checking test 045 fv3_ccpp_gfs_v16beta_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2562,12 +2426,12 @@ Checking test 047 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 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 045 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2624,12 +2488,12 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 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_gfs_v16_RRTMGP_c192L127 PASS +Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gocart_clm_prod -Checking test 049 fv3_ccpp_gocart_clm results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -2672,12 +2536,12 @@ Checking test 049 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 049 fv3_ccpp_gocart_clm PASS +Test 047 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 050 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -2740,12 +2604,12 @@ Checking test 050 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 050 fv3_ccpp_gfs_v16beta_flake PASS +Test 048 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -2808,12 +2672,12 @@ Checking test 051 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 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -2826,12 +2690,12 @@ Checking test 052 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 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -2894,12 +2758,12 @@ Checking test 053 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 053 fv3_ccpp_gfs_v15p2_debug PASS +Test 051 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 054 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -2962,12 +2826,12 @@ Checking test 054 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 054 fv3_ccpp_gfs_v16beta_debug PASS +Test 052 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -3030,12 +2894,12 @@ Checking test 055 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 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -3098,12 +2962,12 @@ Checking test 056 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 056 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gsd_debug_prod -Checking test 057 fv3_ccpp_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -3166,12 +3030,12 @@ Checking test 057 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 057 fv3_ccpp_gsd_debug PASS +Test 055 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 058 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -3234,12 +3098,12 @@ Checking test 058 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 058 fv3_ccpp_gsd_diag3d_debug PASS +Test 056 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_thompson_debug_prod -Checking test 059 fv3_ccpp_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -3302,12 +3166,12 @@ Checking test 059 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 059 fv3_ccpp_thompson_debug PASS +Test 057 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 060 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -3370,12 +3234,12 @@ Checking test 060 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 060 fv3_ccpp_thompson_no_aero_debug PASS +Test 058 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 061 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -3438,12 +3302,12 @@ Checking test 061 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 061 fv3_ccpp_rrfs_v1beta_debug PASS +Test 059 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -3506,12 +3370,12 @@ Checking test 062 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 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 @@ -3524,12 +3388,12 @@ Checking test 063 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 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_control_prod -Checking test 064 cpld_control results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_control_prod +Checking test 062 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3577,12 +3441,12 @@ Checking test 064 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 064 cpld_control PASS +Test 062 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restart_prod -Checking test 065 cpld_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restart_prod +Checking test 063 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3630,12 +3494,12 @@ Checking test 065 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 065 cpld_restart PASS +Test 063 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_controlfrac_prod -Checking test 066 cpld_controlfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_controlfrac_prod +Checking test 064 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3683,12 +3547,12 @@ Checking test 066 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 066 cpld_controlfrac PASS +Test 064 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restartfrac_prod -Checking test 067 cpld_restartfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restartfrac_prod +Checking test 065 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3736,12 +3600,12 @@ Checking test 067 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 067 cpld_restartfrac PASS +Test 065 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_2threads_prod -Checking test 068 cpld_2threads results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_2threads_prod +Checking test 066 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3789,12 +3653,12 @@ Checking test 068 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 068 cpld_2threads PASS +Test 066 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_decomp_prod -Checking test 069 cpld_decomp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_decomp_prod +Checking test 067 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3842,12 +3706,12 @@ Checking test 069 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 069 cpld_decomp PASS +Test 067 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_satmedmf_prod -Checking test 070 cpld_satmedmf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_satmedmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_satmedmf_prod +Checking test 068 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3895,12 +3759,12 @@ Checking test 070 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 070 cpld_satmedmf PASS +Test 068 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_ca_prod -Checking test 071 cpld_ca results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_ca_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_ca_prod +Checking test 069 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3948,12 +3812,12 @@ Checking test 071 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 071 cpld_ca PASS +Test 069 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_control_c192_prod -Checking test 072 cpld_control_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_control_c192_prod +Checking test 070 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4001,12 +3865,12 @@ Checking test 072 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 072 cpld_control_c192 PASS +Test 070 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restart_c192_prod -Checking test 073 cpld_restart_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restart_c192_prod +Checking test 071 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4054,12 +3918,12 @@ Checking test 073 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 073 cpld_restart_c192 PASS +Test 071 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_controlfrac_c192_prod -Checking test 074 cpld_controlfrac_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_controlfrac_c192_prod +Checking test 072 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4107,12 +3971,12 @@ Checking test 074 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 074 cpld_controlfrac_c192 PASS +Test 072 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restartfrac_c192_prod -Checking test 075 cpld_restartfrac_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restartfrac_c192_prod +Checking test 073 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4160,12 +4024,12 @@ Checking test 075 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 075 cpld_restartfrac_c192 PASS +Test 073 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_control_c384_prod -Checking test 076 cpld_control_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_control_c384_prod +Checking test 074 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4216,12 +4080,12 @@ Checking test 076 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 076 cpld_control_c384 PASS +Test 074 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restart_c384_prod -Checking test 077 cpld_restart_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restart_c384_prod +Checking test 075 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4272,12 +4136,12 @@ Checking test 077 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 077 cpld_restart_c384 PASS +Test 075 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_controlfrac_c384_prod -Checking test 078 cpld_controlfrac_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_controlfrac_c384_prod +Checking test 076 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4328,12 +4192,12 @@ Checking test 078 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 078 cpld_controlfrac_c384 PASS +Test 076 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restartfrac_c384_prod -Checking test 079 cpld_restartfrac_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restartfrac_c384_prod +Checking test 077 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4384,12 +4248,12 @@ Checking test 079 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 079 cpld_restartfrac_c384 PASS +Test 077 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_bmark_prod -Checking test 080 cpld_bmark results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_bmark_prod +Checking test 078 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4440,12 +4304,12 @@ Checking test 080 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 080 cpld_bmark PASS +Test 078 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restart_bmark_prod -Checking test 081 cpld_restart_bmark results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restart_bmark_prod +Checking test 079 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4496,12 +4360,12 @@ Checking test 081 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 081 cpld_restart_bmark PASS +Test 079 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_bmarkfrac_prod -Checking test 082 cpld_bmarkfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_bmarkfrac_prod +Checking test 080 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4552,12 +4416,12 @@ Checking test 082 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 082 cpld_bmarkfrac PASS +Test 080 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restart_bmarkfrac_prod -Checking test 083 cpld_restart_bmarkfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restart_bmarkfrac_prod +Checking test 081 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4608,12 +4472,12 @@ Checking test 083 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 083 cpld_restart_bmarkfrac PASS +Test 081 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_bmarkfrac_v16_prod -Checking test 084 cpld_bmarkfrac_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_bmarkfrac_v16_prod +Checking test 082 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4664,12 +4528,12 @@ Checking test 084 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 084 cpld_bmarkfrac_v16 PASS +Test 082 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_restart_bmarkfrac_v16_prod -Checking test 085 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restart_bmarkfrac_v16_prod +Checking test 083 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4720,12 +4584,12 @@ Checking test 085 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 085 cpld_restart_bmarkfrac_v16 PASS +Test 083 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_bmark_wave_prod -Checking test 086 cpld_bmark_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_wave_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_bmark_wave_prod +Checking test 084 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4779,12 +4643,12 @@ Checking test 086 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 086 cpld_bmark_wave PASS +Test 084 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_bmarkfrac_wave_prod -Checking test 087 cpld_bmarkfrac_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_bmarkfrac_wave_prod +Checking test 085 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4838,12 +4702,12 @@ Checking test 087 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 087 cpld_bmarkfrac_wave PASS +Test 085 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_bmarkfrac_wave_v16_prod -Checking test 088 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_bmarkfrac_wave_v16_prod +Checking test 086 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4897,12 +4761,68 @@ Checking test 088 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 088 cpld_bmarkfrac_wave_v16 PASS +Test 086 cpld_bmarkfrac_wave_v16 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_wave_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_control_wave_prod +Checking test 087 cpld_control_wave results .... + 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 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 + 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 + Comparing 20161004.000000.out_grd.glo_1deg .........OK + Comparing 20161004.000000.out_pnt.points .........OK + Comparing 20161004.000000.restart.glo_1deg .........OK +Test 087 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_debug_prod -Checking test 089 cpld_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_debug_prod +Checking test 088 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4950,12 +4870,12 @@ Checking test 089 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 089 cpld_debug PASS +Test 088 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/cpld_debugfrac_prod -Checking test 090 cpld_debugfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_debugfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_debugfrac_prod +Checking test 089 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5003,87 +4923,87 @@ Checking test 090 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 090 cpld_debugfrac PASS +Test 089 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/datm_control_cfsr -Checking test 091 datm_control_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 091 datm_control_cfsr PASS +Test 090 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/datm_restart_cfsr -Checking test 092 datm_restart_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 092 datm_restart_cfsr PASS +Test 091 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/datm_control_gefs -Checking test 093 datm_control_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 093 datm_control_gefs PASS +Test 092 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/datm_bulk_cfsr -Checking test 094 datm_bulk_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 094 datm_bulk_cfsr PASS +Test 093 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_bulk_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/datm_bulk_gefs -Checking test 095 datm_bulk_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_bulk_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 095 datm_bulk_gefs PASS +Test 094 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/datm_mx025_cfsr -Checking test 096 datm_mx025_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 096 datm_mx025_cfsr PASS +Test 095 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_mx025_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/datm_mx025_gefs -Checking test 097 datm_mx025_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_mx025_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 097 datm_mx025_gefs PASS +Test 096 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_debug_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_31445/datm_debug_cfsr -Checking test 098 datm_debug_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_debug_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_61245/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 098 datm_debug_cfsr PASS +Test 097 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jan 25 08:33:07 MST 2021 -Elapsed time: 01h:20m:14s. Have a nice day! +Tue Jan 26 19:25:19 MST 2021 +Elapsed time: 01h:21m:14s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 26908ff125..d4ca1d2d72 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Mon Jan 25 13:13:12 EST 2021 +Tue Jan 26 23:10:00 EST 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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-20210125/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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-20210125/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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-20210125/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210125/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -324,8 +324,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-20210125/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -372,8 +372,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-20210125/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -420,8 +420,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-20210125/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -468,8 +468,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-20210125/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -516,8 +516,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-20210125/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -564,8 +564,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-20210125/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -612,8 +612,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-20210125/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210125/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_ca_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_ca_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_lndp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lndp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_iau_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_iau_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,8 +1228,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -1239,8 +1239,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1269,8 +1269,8 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -1289,8 +1289,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1337,8 +1337,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -1385,8 +1385,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -1433,8 +1433,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,8 +1481,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1529,8 +1529,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1577,8 +1577,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -1625,8 +1625,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -1677,8 +1677,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_cpt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1731,8 +1731,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gsd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1823,8 +1823,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_rap_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rap_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1891,8 +1891,8 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_hrrr_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_hrrr_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,8 +1959,8 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2027,8 +2027,8 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -2095,8 +2095,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -2163,8 +2163,8 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v15p2_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -2231,8 +2231,8 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v16beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -2311,8 +2311,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta results .... Test 043 fv3_ccpp_gfs_v16beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -2361,8 +2361,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... Test 044 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -2429,8 +2429,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... Test 045 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -2497,8 +2497,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -2565,8 +2565,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -2627,8 +2627,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -2675,8 +2675,8 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Test 049 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -2723,8 +2723,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Test 050 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gocart_clm_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -2771,8 +2771,8 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Test 051 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -2839,8 +2839,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_flake results .... Test 052 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -2907,8 +2907,8 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -2925,8 +2925,8 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -2993,8 +2993,8 @@ Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... Test 055 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -3061,8 +3061,8 @@ Checking test 056 fv3_ccpp_gfs_v16beta_debug results .... Test 056 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -3129,8 +3129,8 @@ Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -3197,8 +3197,8 @@ Checking test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gsd_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -3265,8 +3265,8 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Test 059 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -3333,8 +3333,8 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Test 060 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -3401,8 +3401,8 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Test 061 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -3469,8 +3469,8 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Test 062 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -3537,8 +3537,8 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Test 063 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -3605,8 +3605,8 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_26979/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/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 @@ -3624,5 +3624,5 @@ Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jan 25 14:03:57 EST 2021 -Elapsed time: 00h:50m:46s. Have a nice day! +Wed Jan 27 00:14:23 EST 2021 +Elapsed time: 01h:04m:24s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 6f46c39c54..50fd072637 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Sun Jan 24 19:52:02 UTC 2021 +Tue Jan 26 19:55:16 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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-20210125/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_249517/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/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 -Sun Jan 24 20:16:13 UTC 2021 -Elapsed time: 00h:24m:11s. Have a nice day! +Tue Jan 26 20:44:40 UTC 2021 +Elapsed time: 00h:49m:25s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 231562e809..e1bc2a76b7 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,16 +1,16 @@ -Sun Jan 24 02:36:12 UTC 2021 +Tue Jan 26 20:49:37 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... - 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 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 @@ -70,15 +70,15 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 - 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 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 @@ -138,15 +138,15 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... - 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 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 @@ -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-20210125/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -324,8 +324,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-20210125/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -372,8 +372,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-20210125/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -420,8 +420,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-20210125/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -429,7 +429,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 @@ -468,8 +468,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-20210125/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -516,8 +516,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-20210125/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -564,8 +564,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-20210125/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -612,8 +612,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-20210125/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -1030,8 +1030,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-20210125/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -1079,8 +1079,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-20210125/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1153,8 +1153,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -1221,8 +1221,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-20210125/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1277,8 +1277,8 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -1344,8 +1344,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-20210125/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1355,8 +1355,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-20210125/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1364,8 +1364,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-20210125/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1375,8 +1375,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-20210125/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -1386,8 +1386,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-20210125/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1416,8 +1416,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-20210125/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -1436,8 +1436,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-20210125/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfdlmp_prod Checking test 030 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1484,8 +1484,8 @@ Checking test 030 fv3_ccpp_gfdlmp results .... Test 030 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -1532,8 +1532,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-20210125/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -1580,8 +1580,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-20210125/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,8 +1628,8 @@ Checking test 033 fv3_ccpp_csawmg results .... Test 033 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1676,8 +1676,8 @@ Checking test 034 fv3_ccpp_satmedmf results .... Test 034 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1724,8 +1724,8 @@ Checking test 035 fv3_ccpp_satmedmfq results .... Test 035 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -1772,8 +1772,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-20210125/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -1824,8 +1824,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-20210125/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1878,8 +1878,8 @@ Checking test 038 fv3_ccpp_cpt results .... Test 038 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1970,8 +1970,8 @@ Checking test 039 fv3_ccpp_gsd results .... Test 039 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2038,8 +2038,8 @@ Checking test 040 fv3_ccpp_rap results .... Test 040 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2106,8 +2106,8 @@ Checking test 041 fv3_ccpp_hrrr results .... Test 041 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2174,8 +2174,8 @@ Checking test 042 fv3_ccpp_thompson results .... Test 042 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -2242,8 +2242,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-20210125/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -2310,8 +2310,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-20210125/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -2378,8 +2378,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-20210125/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v16beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -2458,8 +2458,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-20210125/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -2508,8 +2508,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-20210125/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -2576,8 +2576,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-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -2644,8 +2644,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-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -2712,8 +2712,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-20210125/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -2774,8 +2774,8 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -2822,8 +2822,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Test 052 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -2870,8 +2870,8 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Test 053 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -2918,8 +2918,8 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Test 054 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -2986,8 +2986,8 @@ Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... Test 055 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -3054,8 +3054,8 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -3072,8 +3072,8 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -3140,8 +3140,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -3208,8 +3208,8 @@ Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... Test 059 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -3276,8 +3276,8 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -3344,8 +3344,8 @@ Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -3412,8 +3412,8 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Test 062 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -3480,8 +3480,8 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Test 063 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -3548,8 +3548,8 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Test 064 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -3616,8 +3616,8 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Test 065 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -3684,8 +3684,8 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Test 066 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -3752,8 +3752,8 @@ Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/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 @@ -3770,8 +3770,8 @@ Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3823,8 +3823,8 @@ Checking test 069 cpld_control results .... Test 069 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3876,8 +3876,8 @@ Checking test 070 cpld_restart results .... Test 070 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_controlfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3929,8 +3929,8 @@ Checking test 071 cpld_controlfrac results .... Test 071 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restartfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3982,8 +3982,8 @@ Checking test 072 cpld_restartfrac results .... Test 072 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4035,8 +4035,8 @@ Checking test 073 cpld_2threads results .... Test 073 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4088,8 +4088,8 @@ Checking test 074 cpld_decomp results .... Test 074 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4141,8 +4141,8 @@ Checking test 075 cpld_satmedmf results .... Test 075 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4194,8 +4194,8 @@ Checking test 076 cpld_ca results .... Test 076 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4247,8 +4247,8 @@ Checking test 077 cpld_control_c192 results .... Test 077 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4300,8 +4300,8 @@ Checking test 078 cpld_restart_c192 results .... Test 078 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_controlfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4353,8 +4353,8 @@ Checking test 079 cpld_controlfrac_c192 results .... Test 079 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restartfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4406,8 +4406,8 @@ Checking test 080 cpld_restartfrac_c192 results .... Test 080 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4462,8 +4462,8 @@ Checking test 081 cpld_control_c384 results .... Test 081 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4518,8 +4518,8 @@ Checking test 082 cpld_restart_c384 results .... Test 082 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4574,8 +4574,8 @@ Checking test 083 cpld_controlfrac_c384 results .... Test 083 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restartfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4630,8 +4630,8 @@ Checking test 084 cpld_restartfrac_c384 results .... Test 084 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4686,8 +4686,8 @@ Checking test 085 cpld_bmark results .... Test 085 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4742,8 +4742,8 @@ Checking test 086 cpld_restart_bmark results .... Test 086 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4798,8 +4798,8 @@ Checking test 087 cpld_bmarkfrac results .... Test 087 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4854,8 +4854,8 @@ Checking test 088 cpld_restart_bmarkfrac results .... Test 088 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4910,8 +4910,8 @@ Checking test 089 cpld_bmarkfrac_v16 results .... Test 089 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_restart_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4966,8 +4966,8 @@ Checking test 090 cpld_restart_bmarkfrac_v16 results .... Test 090 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5025,8 +5025,8 @@ Checking test 091 cpld_bmark_wave results .... Test 091 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmarkfrac_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5084,8 +5084,8 @@ Checking test 092 cpld_bmarkfrac_wave results .... Test 092 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_bmarkfrac_wave_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5143,9 +5143,65 @@ Checking test 093 cpld_bmarkfrac_wave_v16 results .... Test 093 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_debug_prod -Checking test 094 cpld_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_control_wave_prod +Checking test 094 cpld_control_wave results .... + 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 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 + 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 + Comparing 20161004.000000.out_grd.glo_1deg .........OK + Comparing 20161004.000000.out_pnt.points .........OK + Comparing 20161004.000000.restart.glo_1deg .........OK +Test 094 cpld_control_wave PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_debug_prod +Checking test 095 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5193,12 +5249,12 @@ Checking test 094 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 094 cpld_debug PASS +Test 095 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/cpld_debugfrac_prod -Checking test 095 cpld_debugfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_debugfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_debugfrac_prod +Checking test 096 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5246,87 +5302,87 @@ Checking test 095 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 095 cpld_debugfrac PASS +Test 096 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_control_cfsr -Checking test 096 datm_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/datm_control_cfsr +Checking test 097 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 096 datm_control_cfsr PASS +Test 097 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_restart_cfsr -Checking test 097 datm_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/datm_restart_cfsr +Checking test 098 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 097 datm_restart_cfsr PASS +Test 098 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_control_gefs -Checking test 098 datm_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/datm_control_gefs +Checking test 099 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 098 datm_control_gefs PASS +Test 099 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_bulk_cfsr -Checking test 099 datm_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/datm_bulk_cfsr +Checking test 100 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 099 datm_bulk_cfsr PASS +Test 100 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_bulk_gefs -Checking test 100 datm_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/datm_bulk_gefs +Checking test 101 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 100 datm_bulk_gefs PASS +Test 101 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_mx025_cfsr -Checking test 101 datm_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/datm_mx025_cfsr +Checking test 102 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 101 datm_mx025_cfsr PASS +Test 102 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_mx025_gefs -Checking test 102 datm_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/datm_mx025_gefs +Checking test 103 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 102 datm_mx025_gefs PASS +Test 103 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_193340/datm_debug_cfsr -Checking test 103 datm_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/datm_debug_cfsr +Checking test 104 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 103 datm_debug_cfsr PASS +Test 104 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sun Jan 24 03:40:50 UTC 2021 -Elapsed time: 01h:04m:39s. Have a nice day! +Tue Jan 26 22:04:30 UTC 2021 +Elapsed time: 01h:14m:53s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index d9b857a95c..4b956d83b8 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,16 +1,16 @@ -Sat Jan 23 20:38:55 CST 2021 +Tue Jan 26 20:15:43 CST 2021 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... - 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 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 @@ -70,15 +70,15 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 - 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 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 @@ -138,15 +138,15 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... - 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 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 @@ -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-20210125/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -324,8 +324,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-20210125/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -372,8 +372,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-20210125/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -420,8 +420,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-20210125/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -468,8 +468,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-20210125/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -516,8 +516,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-20210125/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -564,8 +564,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-20210125/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -612,8 +612,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-20210125/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_lndp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_lheatstrg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -1030,8 +1030,8 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -1079,8 +1079,8 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1153,8 +1153,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -1221,8 +1221,8 @@ Checking test 021 fv3_ccpp_control_32bit results .... Test 021 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1277,8 +1277,8 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -1344,8 +1344,8 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Test 023 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1355,8 +1355,8 @@ Checking test 024 fv3_ccpp_regional_control results .... Test 024 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1364,8 +1364,8 @@ Checking test 025 fv3_ccpp_regional_restart results .... Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1375,8 +1375,8 @@ Checking test 026 fv3_ccpp_regional_quilt results .... Test 026 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -1386,8 +1386,8 @@ Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1416,8 +1416,8 @@ Checking test 028 fv3_ccpp_control_debug results .... Test 028 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -1436,8 +1436,8 @@ Checking test 029 fv3_ccpp_stretched_nest_debug results .... Test 029 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfdlmp_prod Checking test 030 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1484,8 +1484,8 @@ Checking test 030 fv3_ccpp_gfdlmp results .... Test 030 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -1532,8 +1532,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... Test 031 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -1580,8 +1580,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... Test 032 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,8 +1628,8 @@ Checking test 033 fv3_ccpp_csawmg results .... Test 033 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1676,8 +1676,8 @@ Checking test 034 fv3_ccpp_satmedmf results .... Test 034 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_satmedmfq_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1724,8 +1724,8 @@ Checking test 035 fv3_ccpp_satmedmfq results .... Test 035 fv3_ccpp_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -1772,8 +1772,8 @@ Checking test 036 fv3_ccpp_gfdlmp_32bit results .... Test 036 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -1824,8 +1824,8 @@ Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1878,8 +1878,8 @@ Checking test 038 fv3_ccpp_cpt results .... Test 038 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1970,8 +1970,8 @@ Checking test 039 fv3_ccpp_gsd results .... Test 039 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_rap_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2038,8 +2038,8 @@ Checking test 040 fv3_ccpp_rap results .... Test 040 fv3_ccpp_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_hrrr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2106,8 +2106,8 @@ Checking test 041 fv3_ccpp_hrrr results .... Test 041 fv3_ccpp_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2174,8 +2174,8 @@ Checking test 042 fv3_ccpp_thompson results .... Test 042 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -2242,8 +2242,8 @@ Checking test 043 fv3_ccpp_thompson_no_aero results .... Test 043 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -2310,8 +2310,8 @@ Checking test 044 fv3_ccpp_rrfs_v1beta results .... Test 044 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -2378,8 +2378,8 @@ Checking test 045 fv3_ccpp_gfs_v15p2 results .... Test 045 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfs_v16beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -2458,8 +2458,8 @@ Checking test 046 fv3_ccpp_gfs_v16beta results .... Test 046 fv3_ccpp_gfs_v16beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -2508,8 +2508,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_restart results .... Test 047 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_stochy_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -2576,8 +2576,8 @@ Checking test 048 fv3_ccpp_gfs_v16beta_stochy results .... Test 048 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -2644,8 +2644,8 @@ Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -2712,8 +2712,8 @@ Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 050 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -2774,8 +2774,8 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -2822,8 +2822,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Test 052 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -2870,8 +2870,8 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Test 053 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -2918,8 +2918,8 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Test 054 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_flake_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -2986,8 +2986,8 @@ Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... Test 055 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -3054,8 +3054,8 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -3072,8 +3072,8 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -3140,8 +3140,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -3208,8 +3208,8 @@ Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... Test 059 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -3276,8 +3276,8 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -3344,8 +3344,8 @@ Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -3412,8 +3412,8 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Test 062 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -3480,8 +3480,8 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Test 063 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -3548,8 +3548,8 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Test 064 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -3616,8 +3616,8 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Test 065 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -3684,8 +3684,8 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Test 066 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -3752,8 +3752,8 @@ Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/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 @@ -3770,8 +3770,8 @@ Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3823,8 +3823,8 @@ Checking test 069 cpld_control results .... Test 069 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3876,8 +3876,8 @@ Checking test 070 cpld_restart results .... Test 070 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_controlfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3929,8 +3929,8 @@ Checking test 071 cpld_controlfrac results .... Test 071 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restartfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3982,8 +3982,8 @@ Checking test 072 cpld_restartfrac results .... Test 072 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4035,8 +4035,8 @@ Checking test 073 cpld_2threads results .... Test 073 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4088,8 +4088,8 @@ Checking test 074 cpld_decomp results .... Test 074 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4141,8 +4141,8 @@ Checking test 075 cpld_satmedmf results .... Test 075 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4194,8 +4194,8 @@ Checking test 076 cpld_ca results .... Test 076 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4247,8 +4247,8 @@ Checking test 077 cpld_control_c192 results .... Test 077 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restart_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4300,8 +4300,8 @@ Checking test 078 cpld_restart_c192 results .... Test 078 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_controlfrac_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4353,8 +4353,8 @@ Checking test 079 cpld_controlfrac_c192 results .... Test 079 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restartfrac_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4406,8 +4406,8 @@ Checking test 080 cpld_restartfrac_c192 results .... Test 080 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4462,8 +4462,8 @@ Checking test 081 cpld_control_c384 results .... Test 081 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restart_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4518,8 +4518,8 @@ Checking test 082 cpld_restart_c384 results .... Test 082 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4574,8 +4574,8 @@ Checking test 083 cpld_controlfrac_c384 results .... Test 083 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restartfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4630,8 +4630,8 @@ Checking test 084 cpld_restartfrac_c384 results .... Test 084 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4686,8 +4686,8 @@ Checking test 085 cpld_bmark results .... Test 085 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restart_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4742,8 +4742,8 @@ Checking test 086 cpld_restart_bmark results .... Test 086 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_bmarkfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4798,8 +4798,8 @@ Checking test 087 cpld_bmarkfrac results .... Test 087 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restart_bmarkfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4854,8 +4854,8 @@ Checking test 088 cpld_restart_bmarkfrac results .... Test 088 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_bmarkfrac_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4910,8 +4910,8 @@ Checking test 089 cpld_bmarkfrac_v16 results .... Test 089 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_restart_bmarkfrac_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4966,8 +4966,8 @@ Checking test 090 cpld_restart_bmarkfrac_v16 results .... Test 090 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5025,8 +5025,8 @@ Checking test 091 cpld_bmark_wave results .... Test 091 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_bmarkfrac_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5084,8 +5084,8 @@ Checking test 092 cpld_bmarkfrac_wave results .... Test 092 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_bmarkfrac_wave_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5143,9 +5143,65 @@ Checking test 093 cpld_bmarkfrac_wave_v16 results .... Test 093 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_debug_prod -Checking test 094 cpld_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_wave_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_control_wave_prod +Checking test 094 cpld_control_wave results .... + 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 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 + 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 + Comparing 20161004.000000.out_grd.glo_1deg .........OK + Comparing 20161004.000000.out_pnt.points .........OK + Comparing 20161004.000000.restart.glo_1deg .........OK +Test 094 cpld_control_wave PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_debug_prod +Checking test 095 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5193,12 +5249,12 @@ Checking test 094 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 094 cpld_debug PASS +Test 095 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/cpld_debugfrac_prod -Checking test 095 cpld_debugfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_debugfrac_prod +Checking test 096 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5246,87 +5302,87 @@ Checking test 095 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 095 cpld_debugfrac PASS +Test 096 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/datm_control_cfsr -Checking test 096 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_control_cfsr +Checking test 097 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 096 datm_control_cfsr PASS +Test 097 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/datm_restart_cfsr -Checking test 097 datm_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_restart_cfsr +Checking test 098 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 097 datm_restart_cfsr PASS +Test 098 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/datm_control_gefs -Checking test 098 datm_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_control_gefs +Checking test 099 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 098 datm_control_gefs PASS +Test 099 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/datm_bulk_cfsr -Checking test 099 datm_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_bulk_cfsr +Checking test 100 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 099 datm_bulk_cfsr PASS +Test 100 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/datm_bulk_gefs -Checking test 100 datm_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_bulk_gefs +Checking test 101 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 100 datm_bulk_gefs PASS +Test 101 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/datm_mx025_cfsr -Checking test 101 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_mx025_cfsr +Checking test 102 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 101 datm_mx025_cfsr PASS +Test 102 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/datm_mx025_gefs -Checking test 102 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_mx025_gefs +Checking test 103 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 102 datm_mx025_gefs PASS +Test 103 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_333228/datm_debug_cfsr -Checking test 103 datm_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_debug_cfsr +Checking test 104 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 103 datm_debug_cfsr PASS +Test 104 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sat Jan 23 22:05:47 CST 2021 -Elapsed time: 01h:26m:53s. Have a nice day! +Tue Jan 26 21:30:46 CST 2021 +Elapsed time: 01h:15m:04s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 48f4f39e66..5f4ea98831 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Sun Jan 24 04:17:22 UTC 2021 +Tue Jan 26 22:12:09 UTC 2021 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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-20210125/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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-20210125/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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-20210125/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210125/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -324,8 +324,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-20210125/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -372,8 +372,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-20210125/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -420,8 +420,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-20210125/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -468,8 +468,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-20210125/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -516,8 +516,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-20210125/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -564,8 +564,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-20210125/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -612,8 +612,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-20210125/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210125/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_ca_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_ca_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_lndp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_lndp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,8 +1228,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -1239,8 +1239,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1269,8 +1269,8 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -1289,8 +1289,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1337,8 +1337,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -1385,8 +1385,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -1433,8 +1433,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,8 +1481,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1529,8 +1529,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1577,8 +1577,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -1625,8 +1625,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -1677,8 +1677,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1731,8 +1731,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1823,8 +1823,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_rap_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_rap_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1891,8 +1891,8 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_hrrr_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,8 +1959,8 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2027,8 +2027,8 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -2095,8 +2095,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -2163,8 +2163,8 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v15p2_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -2231,8 +2231,8 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfs_v16beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -2311,8 +2311,8 @@ Checking test 043 fv3_ccpp_gfs_v16beta results .... Test 043 fv3_ccpp_gfs_v16beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -2361,8 +2361,8 @@ Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... Test 044 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -2429,8 +2429,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... Test 045 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -2497,8 +2497,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -2565,8 +2565,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -2627,8 +2627,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -2675,8 +2675,8 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Test 049 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -2723,8 +2723,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Test 050 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -2771,8 +2771,8 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Test 051 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -2839,8 +2839,8 @@ Checking test 052 fv3_ccpp_gfs_v16beta_flake results .... Test 052 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -2907,8 +2907,8 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -2925,8 +2925,8 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -2993,8 +2993,8 @@ Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... Test 055 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -3061,8 +3061,8 @@ Checking test 056 fv3_ccpp_gfs_v16beta_debug results .... Test 056 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -3129,8 +3129,8 @@ Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -3197,8 +3197,8 @@ Checking test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -3265,8 +3265,8 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Test 059 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -3333,8 +3333,8 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Test 060 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -3401,8 +3401,8 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Test 061 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -3469,8 +3469,8 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Test 062 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -3537,8 +3537,8 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Test 063 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -3605,8 +3605,8 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_36948/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/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 @@ -3624,5 +3624,5 @@ Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sun Jan 24 05:01:04 UTC 2021 -Elapsed time: 00h:43m:42s. Have a nice day! +Tue Jan 26 22:56:55 UTC 2021 +Elapsed time: 00h:44m:46s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 5b46978e49..23693d6091 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Sun Jan 24 19:49:31 UTC 2021 +Tue Jan 26 22:12:20 UTC 2021 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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-20210125/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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-20210125/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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-20210125/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210125/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -324,8 +324,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-20210125/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -372,8 +372,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-20210125/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -420,8 +420,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-20210125/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -431,7 +431,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -468,8 +468,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-20210125/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -516,8 +516,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-20210125/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -564,8 +564,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-20210125/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -612,8 +612,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-20210125/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210125/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_ca_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_lndp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_lndp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -1030,8 +1030,8 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1104,8 +1104,8 @@ Checking test 019 fv3_ccpp_multigases results .... Test 019 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -1172,8 +1172,8 @@ Checking test 020 fv3_ccpp_control_32bit results .... Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1228,8 +1228,8 @@ Checking test 021 fv3_ccpp_stretched results .... Test 021 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -1295,8 +1295,8 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1306,8 +1306,8 @@ Checking test 023 fv3_ccpp_regional_control results .... Test 023 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 024 fv3_ccpp_regional_restart results .... Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1326,8 +1326,8 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -1337,8 +1337,8 @@ Checking test 026 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 026 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1367,8 +1367,8 @@ Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -1387,8 +1387,8 @@ Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1435,8 +1435,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -1483,8 +1483,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -1531,8 +1531,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,8 +1579,8 @@ Checking test 032 fv3_ccpp_csawmg results .... Test 032 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 033 fv3_ccpp_satmedmf results .... Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_satmedmfq_prod Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1675,8 +1675,8 @@ Checking test 034 fv3_ccpp_satmedmfq results .... Test 034 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -1723,8 +1723,8 @@ Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Test 035 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -1775,8 +1775,8 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_cpt_prod Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1829,8 +1829,8 @@ Checking test 037 fv3_ccpp_cpt results .... Test 037 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gsd_prod Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1921,8 +1921,8 @@ Checking test 038 fv3_ccpp_gsd results .... Test 038 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_rap_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_rap_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_rap_prod Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1989,8 +1989,8 @@ Checking test 039 fv3_ccpp_rap results .... Test 039 fv3_ccpp_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_hrrr_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_hrrr_prod Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2057,8 +2057,8 @@ Checking test 040 fv3_ccpp_hrrr results .... Test 040 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_thompson_prod Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2125,8 +2125,8 @@ Checking test 041 fv3_ccpp_thompson results .... Test 041 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -2193,8 +2193,8 @@ Checking test 042 fv3_ccpp_thompson_no_aero results .... Test 042 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -2261,8 +2261,8 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... Test 043 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v15p2_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -2329,8 +2329,8 @@ Checking test 044 fv3_ccpp_gfs_v15p2 results .... Test 044 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfs_v16beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -2409,8 +2409,8 @@ Checking test 045 fv3_ccpp_gfs_v16beta results .... Test 045 fv3_ccpp_gfs_v16beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfs_v16beta_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -2459,8 +2459,8 @@ Checking test 046 fv3_ccpp_gfs_v16beta_restart results .... Test 046 fv3_ccpp_gfs_v16beta_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfs_v16beta_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -2527,8 +2527,8 @@ Checking test 047 fv3_ccpp_gfs_v16beta_stochy results .... Test 047 fv3_ccpp_gfs_v16beta_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -2595,8 +2595,8 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfs_v16beta_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -2663,8 +2663,8 @@ Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP results .... Test 049 fv3_ccpp_gfs_v16beta_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -2725,8 +2725,8 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -2773,8 +2773,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Test 051 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -2821,8 +2821,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Test 052 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -2869,8 +2869,8 @@ Checking test 053 fv3_ccpp_gocart_clm results .... Test 053 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfs_v16beta_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_flake_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -2937,8 +2937,8 @@ Checking test 054 fv3_ccpp_gfs_v16beta_flake results .... Test 054 fv3_ccpp_gfs_v16beta_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -3005,8 +3005,8 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -3023,8 +3023,8 @@ Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -3091,8 +3091,8 @@ Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Test 057 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfs_v16beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -3159,8 +3159,8 @@ Checking test 058 fv3_ccpp_gfs_v16beta_debug results .... Test 058 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -3227,8 +3227,8 @@ Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -3295,8 +3295,8 @@ Checking test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -3363,8 +3363,8 @@ Checking test 061 fv3_ccpp_gsd_debug results .... Test 061 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -3431,8 +3431,8 @@ Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... Test 062 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -3499,8 +3499,8 @@ Checking test 063 fv3_ccpp_thompson_debug results .... Test 063 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -3567,8 +3567,8 @@ Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... Test 064 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -3635,8 +3635,8 @@ Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... Test 065 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -3703,8 +3703,8 @@ Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 @@ -3721,8 +3721,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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_control_prod Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3774,8 +3774,8 @@ Checking test 068 cpld_control results .... Test 068 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restart_prod Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3827,8 +3827,8 @@ Checking test 069 cpld_restart results .... Test 069 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_controlfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_controlfrac_prod Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3880,8 +3880,8 @@ Checking test 070 cpld_controlfrac results .... Test 070 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restartfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restartfrac_prod Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3933,8 +3933,8 @@ Checking test 071 cpld_restartfrac results .... Test 071 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_2threads_prod Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3986,8 +3986,8 @@ Checking test 072 cpld_2threads results .... Test 072 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_decomp_prod Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4039,8 +4039,8 @@ Checking test 073 cpld_decomp results .... Test 073 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_satmedmf_prod Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4092,8 +4092,8 @@ Checking test 074 cpld_satmedmf results .... Test 074 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_ca_prod Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4145,8 +4145,8 @@ Checking test 075 cpld_ca results .... Test 075 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_control_c192_prod Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4198,8 +4198,8 @@ Checking test 076 cpld_control_c192 results .... Test 076 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restart_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restart_c192_prod Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4251,8 +4251,8 @@ Checking test 077 cpld_restart_c192 results .... Test 077 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_controlfrac_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_controlfrac_c192_prod Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4304,8 +4304,8 @@ Checking test 078 cpld_controlfrac_c192 results .... Test 078 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restartfrac_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restartfrac_c192_prod Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4357,8 +4357,8 @@ Checking test 079 cpld_restartfrac_c192 results .... Test 079 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_control_c384_prod Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4413,8 +4413,8 @@ Checking test 080 cpld_control_c384 results .... Test 080 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restart_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restart_c384_prod Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4469,8 +4469,8 @@ Checking test 081 cpld_restart_c384 results .... Test 081 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_controlfrac_c384_prod Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4525,8 +4525,8 @@ Checking test 082 cpld_controlfrac_c384 results .... Test 082 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restartfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restartfrac_c384_prod Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4581,8 +4581,8 @@ Checking test 083 cpld_restartfrac_c384 results .... Test 083 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_bmark_prod Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4637,8 +4637,8 @@ Checking test 084 cpld_bmark results .... Test 084 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restart_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restart_bmark_prod Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4693,8 +4693,8 @@ Checking test 085 cpld_restart_bmark results .... Test 085 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_bmarkfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_bmarkfrac_prod Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4749,8 +4749,8 @@ Checking test 086 cpld_bmarkfrac results .... Test 086 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restart_bmarkfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restart_bmarkfrac_prod Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4805,8 +4805,8 @@ Checking test 087 cpld_restart_bmarkfrac results .... Test 087 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_bmarkfrac_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_bmarkfrac_v16_prod Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4861,8 +4861,8 @@ Checking test 088 cpld_bmarkfrac_v16 results .... Test 088 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_restart_bmarkfrac_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restart_bmarkfrac_v16_prod Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4917,8 +4917,8 @@ Checking test 089 cpld_restart_bmarkfrac_v16 results .... Test 089 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_bmark_wave_prod Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4976,8 +4976,8 @@ Checking test 090 cpld_bmark_wave results .... Test 090 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_bmarkfrac_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmarkfrac_wave_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_bmarkfrac_wave_prod Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5035,8 +5035,8 @@ Checking test 091 cpld_bmarkfrac_wave results .... Test 091 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_bmarkfrac_wave_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmarkfrac_wave_v16_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_bmarkfrac_wave_v16_prod Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5094,9 +5094,65 @@ Checking test 092 cpld_bmarkfrac_wave_v16 results .... Test 092 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_debug_prod -Checking test 093 cpld_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_wave_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_control_wave_prod +Checking test 093 cpld_control_wave results .... + 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 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 + 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 + Comparing 20161004.000000.out_grd.glo_1deg .........OK + Comparing 20161004.000000.out_pnt.points .........OK + Comparing 20161004.000000.restart.glo_1deg .........OK +Test 093 cpld_control_wave PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_debug_prod +Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5144,12 +5200,12 @@ Checking test 093 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 093 cpld_debug PASS +Test 094 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/cpld_debugfrac_prod -Checking test 094 cpld_debugfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_debugfrac_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_debugfrac_prod +Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5197,87 +5253,87 @@ Checking test 094 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 094 cpld_debugfrac PASS +Test 095 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/datm_control_cfsr -Checking test 095 datm_control_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 095 datm_control_cfsr PASS +Test 096 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/datm_restart_cfsr -Checking test 096 datm_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 096 datm_restart_cfsr PASS +Test 097 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/datm_control_gefs -Checking test 097 datm_control_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_control_gefs PASS +Test 098 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/datm_bulk_cfsr -Checking test 098 datm_bulk_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_bulk_cfsr PASS +Test 099 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/datm_bulk_gefs -Checking test 099 datm_bulk_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 099 datm_bulk_gefs PASS +Test 100 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/datm_mx025_cfsr -Checking test 100 datm_mx025_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/datm_mx025_cfsr +Checking test 101 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 100 datm_mx025_cfsr PASS +Test 101 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/datm_mx025_gefs -Checking test 101 datm_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/datm_mx025_gefs +Checking test 102 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 101 datm_mx025_gefs PASS +Test 102 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210125/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_160923/datm_debug_cfsr -Checking test 102 datm_debug_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 102 datm_debug_cfsr PASS +Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sun Jan 24 22:00:45 UTC 2021 -Elapsed time: 02h:11m:17s. Have a nice day! +Wed Jan 27 00:39:33 UTC 2021 +Elapsed time: 02h:27m:15s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 3caced65fa..69bc75d3bf 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -25,6 +25,10 @@ elif [[ $MACHINE_ID = wcoss_dell_p3 || $MACHINE_ID = wcoss2 ]]; then THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191" + TASKS_cpl_dflt_wwav=204; TPN_cpl_dflt_wwav=28; INPES_cpl_dflt_wwav=3; JNPES_cpl_dflt_wwav=8 + THRD_cpl_dflt_wwav=1; WPG_cpl_dflt_wwav=6; MPB_cpl_dflt_wwav="0 143"; APB_cpl_dflt_wwav="0 149" + OPB_cpl_dflt_wwav="150 179"; IPB_cpl_dflt_wwav="180 191"; WPB_cpl_dflt_wwav="192 203" + TASKS_cpl_thrd=120; TPN_cpl_thrd=14; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" OPB_cpl_thrd="78 107"; IPB_cpl_thrd="108 119" @@ -64,6 +68,10 @@ elif [[ $MACHINE_ID = orion.* ]]; then THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191" + TASKS_cpl_dflt_wwav=204; TPN_cpl_dflt_wwav=40; INPES_cpl_dflt_wwav=3; JNPES_cpl_dflt_wwav=8 + THRD_cpl_dflt_wwav=1; WPG_cpl_dflt_wwav=6; MPB_cpl_dflt_wwav="0 143"; APB_cpl_dflt_wwav="0 149" + OPB_cpl_dflt_wwav="150 179"; IPB_cpl_dflt_wwav="180 191"; WPB_cpl_dflt_wwav="192 203" + TASKS_cpl_thrd=120; TPN_cpl_thrd=40; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" OPB_cpl_thrd="78 107"; IPB_cpl_thrd="108 119" @@ -103,6 +111,10 @@ elif [[ $MACHINE_ID = hera.* ]]; then THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191" + TASKS_cpl_dflt_wwav=204; TPN_cpl_dflt_wwav=40; INPES_cpl_dflt_wwav=3; JNPES_cpl_dflt_wwav=8 + THRD_cpl_dflt_wwav=1; WPG_cpl_dflt_wwav=6; MPB_cpl_dflt_wwav="0 143"; APB_cpl_dflt_wwav="0 149" + OPB_cpl_dflt_wwav="150 179"; IPB_cpl_dflt_wwav="180 191"; WPB_cpl_dflt_wwav="192 203" + TASKS_cpl_thrd=120; TPN_cpl_thrd=40; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" OPB_cpl_thrd="78 107"; IPB_cpl_thrd="108 119" @@ -167,6 +179,10 @@ elif [[ $MACHINE_ID = cheyenne.* ]]; then THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191" + TASKS_cpl_dflt_wwav=204; TPN_cpl_dflt_wwav=36; INPES_cpl_dflt_wwav=3; JNPES_cpl_dflt_wwav=8 + THRD_cpl_dflt_wwav=1; WPG_cpl_dflt_wwav=6; MPB_cpl_dflt_wwav="0 143"; APB_cpl_dflt_wwav="0 149" + OPB_cpl_dflt_wwav="150 179"; IPB_cpl_dflt_wwav="180 191"; WPB_cpl_dflt_wwav="192 203" + TASKS_cpl_thrd=120; TPN_cpl_thrd=36; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" OPB_cpl_thrd="78 107"; IPB_cpl_thrd="108 119" @@ -205,6 +221,10 @@ elif [[ $MACHINE_ID = stampede.* ]]; then THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191" + TASKS_cpl_dflt_wwav=204; TPN_cpl_dflt_wwav=48; INPES_cpl_dflt_wwav=3; JNPES_cpl_dflt_wwav=8 + THRD_cpl_dflt_wwav=1; WPG_cpl_dflt_wwav=6; MPB_cpl_dflt_wwav="0 143"; APB_cpl_dflt_wwav="0 149" + OPB_cpl_dflt_wwav="150 179"; IPB_cpl_dflt_wwav="180 191"; WPB_cpl_dflt_wwav="192 203" + TASKS_cpl_thrd=120; TPN_cpl_thrd=48; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" OPB_cpl_thrd="78 107"; IPB_cpl_thrd="108 119" @@ -487,6 +507,15 @@ export CPLFLX='.T.' export CPL='.true.' export NSTF_NAME='0,0,0,0,0' +# resolution dependent settings +export CDMBWD_c96='0.14,1.8,1.0,1.0' +export CDMBWD_c192='0.23,1.5,1.0,1.0' +export CDMBWD_c384='1.1,0.72,1.0,1.0' +export CDMBWD_c768='4.0,0.15,1.0,1.0' + +# set default +export CDMBWD=${CDMBWD_c96} + # for FV3: default values will be changed if doing a warm-warm restart export WARM_START='.F.' export MAKE_NH='.T.' @@ -557,6 +586,7 @@ export JATM=768 export ATMRES='C96' export OCNRES='100' export ICERES='1.00' +export WAVRES='1.00' export NX_GLB=360 export NY_GLB=320 diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index 08747fcae5..296117e5ee 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -50,6 +50,12 @@ cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . +# WW3 fix/input +if [[ $CPLWAV == .T. ]]; then + cp @[INPUTDATA_ROOT_WW3]/mod_def.* . + cp @[INPUTDATA_ROOT_WW3]/ww3_multi_1deg.inp ww3_multi.inp +fi + # No restart if [ $WARM_START = .F. ]; then # ICs diff --git a/tests/parm/ccpp_v15p2_c96.nml.IN b/tests/parm/ccpp_v15p2_c96.nml.IN index fbab3b32b6..5f74b926ab 100644 --- a/tests/parm/ccpp_v15p2_c96.nml.IN +++ b/tests/parm/ccpp_v15p2_c96.nml.IN @@ -146,7 +146,7 @@ cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 + cdmbgwd = 0.14,1.8,1.0,1.0 prslrd0 = 0. ivegsrc = 1 isot = 1 diff --git a/tests/parm/ccpp_v15p2_c96_rrtmgp.nml.IN b/tests/parm/ccpp_v15p2_c96_rrtmgp.nml.IN index a98ec352f7..987a77094c 100644 --- a/tests/parm/ccpp_v15p2_c96_rrtmgp.nml.IN +++ b/tests/parm/ccpp_v15p2_c96_rrtmgp.nml.IN @@ -146,7 +146,7 @@ cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 + cdmbgwd = 0.14,1.8,1.0,1.0 prslrd0 = 0. ivegsrc = 1 isot = 1 diff --git a/tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN b/tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN index 76f58067e0..72ff026b40 100644 --- a/tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN +++ b/tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN @@ -94,7 +94,7 @@ deflate_level=1 hord_mt = 5 hord_vt = 5 hord_tm = 5 - hord_dp = 5 + hord_dp = -5 hord_tr = 8 adjust_dry_mass = .false. consv_te = 1. diff --git a/tests/parm/ccpp_v16beta_c96.nml.IN b/tests/parm/ccpp_v16beta_c96.nml.IN index f4826d08d0..fcaf5764e8 100644 --- a/tests/parm/ccpp_v16beta_c96.nml.IN +++ b/tests/parm/ccpp_v16beta_c96.nml.IN @@ -156,7 +156,7 @@ deflate_level=1 cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 4.0,0.15,1.0,1.0 + cdmbgwd = 0.14,1.8,1.0,1.0 prslrd0 = 0. ivegsrc = 1 isot = 1 diff --git a/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN b/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN index 8426d354fe..1eb9124907 100644 --- a/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN +++ b/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN @@ -156,7 +156,7 @@ deflate_level=1 cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 4.0,0.15,1.0,1.0 + cdmbgwd = 0.14,1.8,1.0,1.0 prslrd0 = 0. ivegsrc = 1 isot = 1 diff --git a/tests/parm/ccpp_v16beta_flake_c96.nml.IN b/tests/parm/ccpp_v16beta_flake_c96.nml.IN index d75e866ed9..ed2b840eeb 100644 --- a/tests/parm/ccpp_v16beta_flake_c96.nml.IN +++ b/tests/parm/ccpp_v16beta_flake_c96.nml.IN @@ -156,7 +156,7 @@ deflate_level=1 cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 4.0,0.15,1.0,1.0 + cdmbgwd = 0.14,1.8,1.0,1.0 prslrd0 = 0. ivegsrc = 1 isot = 1 diff --git a/tests/parm/input.benchmark_ccpp.nml.IN b/tests/parm/input.benchmark_ccpp.nml.IN index 4ddfc5dfd5..79169f8722 100644 --- a/tests/parm/input.benchmark_ccpp.nml.IN +++ b/tests/parm/input.benchmark_ccpp.nml.IN @@ -175,7 +175,7 @@ cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 1.0,1.2 + cdmbgwd = @[CDMBWD] prslrd0 = 0. ivegsrc = 1 isot = 1 @@ -204,7 +204,7 @@ ldiag_ugwp = .false. do_ugwp = .false. do_tofd = .false. - cplflx = .T. + cplflx = .T. cplwav = @[CPLWAV] cplwav2atm = @[CPLWAV2ATM] diff --git a/tests/parm/input.benchmark_v16.nml.IN b/tests/parm/input.benchmark_v16.nml.IN index 27ef85de4d..606f3be447 100644 --- a/tests/parm/input.benchmark_v16.nml.IN +++ b/tests/parm/input.benchmark_v16.nml.IN @@ -94,7 +94,7 @@ hord_mt = 5 hord_vt = 5 hord_tm = 5 - hord_dp = 5 + hord_dp = -5 hord_tr = 8 adjust_dry_mass = .false. consv_te = 1. @@ -160,7 +160,7 @@ cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 0.23,1.5,1.0,1.0 + cdmbgwd = @[CDMBWD] prslrd0 = 0. ivegsrc = 1 isot = 1 @@ -189,7 +189,7 @@ ldiag_ugwp = .false. do_ugwp = .false. do_tofd = .true. - cplflx = .T. + cplflx = .T. cplwav = @[CPLWAV] cplwav2atm = @[CPLWAV2ATM] diff --git a/tests/parm/input.mom6_ccpp.nml.IN b/tests/parm/input.mom6_ccpp.nml.IN index af3d12bb11..22aef11765 100644 --- a/tests/parm/input.mom6_ccpp.nml.IN +++ b/tests/parm/input.mom6_ccpp.nml.IN @@ -162,7 +162,7 @@ imfshalcnv = 2 imfdeepcnv = 2 isatmedmf = @[ISATMEDMF] - cdmbgwd = 3.5,0.25 + cdmbgwd = @[CDMBWD] prslrd0 = 0. ivegsrc = 1 isot = 1 @@ -205,7 +205,7 @@ nseed = 1000000 nfracseed = 0.5 nthresh = 0. - ca_trigger = .true. + ca_trigger = .true. ca_entr = .false. ca_closure = .false. ca_global = .false. diff --git a/tests/rt.conf b/tests/rt.conf index 198093defb..1d2cc2e292 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -77,11 +77,12 @@ RUN | fv3_ccpp_thompson_no_aero RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | | fv3 | -RUN | fv3_ccpp_gfs_v15p2 | | fv3 | +# fv3_ccpp_gfs_v15p2 and fv3_ccpp_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 +RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | 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_v15p2_RRTMGP | - cheyenne.intel | fv3 | RUN | fv3_ccpp_gfs_v16beta_RRTMGP | | fv3 | RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | @@ -163,6 +164,7 @@ COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_control_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,FV3_GFS_v16beta_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_debug | - wcoss_cray gaea.intel jet.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 5e027a7892..8ecd4bebbb 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-20210125/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210126/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210125} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210126} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210115} diff --git a/tests/tests/cpld_bmark b/tests/tests/cpld_bmark index e2365ce510..6c6fc0bb4a 100644 --- a/tests/tests/cpld_bmark +++ b/tests/tests/cpld_bmark @@ -93,6 +93,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} @@ -123,6 +126,7 @@ export OZ_PHYS_NEW=".T." export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_bmark_35d b/tests/tests/cpld_bmark_35d index 475eb34c97..e44e4c4adf 100644 --- a/tests/tests/cpld_bmark_35d +++ b/tests/tests/cpld_bmark_35d @@ -42,6 +42,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} @@ -72,6 +75,7 @@ export OZ_PHYS_NEW=".T." export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_bmark_wave b/tests/tests/cpld_bmark_wave index 5d30e786b1..544f565716 100644 --- a/tests/tests/cpld_bmark_wave +++ b/tests/tests/cpld_bmark_wave @@ -95,6 +95,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} @@ -130,7 +133,6 @@ export OZ_PHYS_NEW=".T." export MOM6_USE_WAVES='True' export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" -#TODO: must remove for restart repro. This setting is used in bmark+wave configurations only export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_bmark_wave_35d b/tests/tests/cpld_bmark_wave_35d index 8b078b7614..1c9c189dd2 100644 --- a/tests/tests/cpld_bmark_wave_35d +++ b/tests/tests/cpld_bmark_wave_35d @@ -56,6 +56,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} @@ -91,7 +94,6 @@ export OZ_PHYS_NEW=".T." export MOM6_USE_WAVES='True' export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" -#TODO: must remove for restart repro. This setting is used in bmark+wave configurations only export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_bmarkfrac b/tests/tests/cpld_bmarkfrac index 5ddc272d15..d1e84e87ff 100644 --- a/tests/tests/cpld_bmarkfrac +++ b/tests/tests/cpld_bmarkfrac @@ -93,6 +93,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} @@ -126,6 +129,7 @@ export OZ_PHYS_NEW=".T." export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_bmarkfrac_v16 b/tests/tests/cpld_bmarkfrac_v16 index 9d228b69ae..5ed0e91d6f 100644 --- a/tests/tests/cpld_bmarkfrac_v16 +++ b/tests/tests/cpld_bmarkfrac_v16 @@ -95,6 +95,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='300' export DT_CICE=${DT_ATMOS} @@ -131,6 +134,7 @@ export OZ_PHYS_NEW=".T." export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_bmarkfrac_wave b/tests/tests/cpld_bmarkfrac_wave index ba80bd862b..df5d656e75 100644 --- a/tests/tests/cpld_bmarkfrac_wave +++ b/tests/tests/cpld_bmarkfrac_wave @@ -95,6 +95,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} @@ -133,7 +136,6 @@ export OZ_PHYS_NEW=".T." export MOM6_USE_WAVES='True' export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" -#TODO: must remove for restart repro. This setting is used in bmark+wave configurations only export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_bmarkfrac_wave_35d b/tests/tests/cpld_bmarkfrac_wave_35d index a6088708bc..5d0da16cfe 100644 --- a/tests/tests/cpld_bmarkfrac_wave_35d +++ b/tests/tests/cpld_bmarkfrac_wave_35d @@ -56,6 +56,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} @@ -94,7 +97,6 @@ export OZ_PHYS_NEW=".T." export MOM6_USE_WAVES='True' export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" -#TODO: must remove for restart repro. This setting is used in bmark+wave configurations only export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_bmarkfrac_wave_v16 b/tests/tests/cpld_bmarkfrac_wave_v16 index cbe745757c..ff26ca78f8 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16 +++ b/tests/tests/cpld_bmarkfrac_wave_v16 @@ -100,6 +100,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='300' export DT_CICE=${DT_ATMOS} @@ -141,7 +144,6 @@ export OZ_PHYS_NEW=".T." export MOM6_USE_WAVES='True' export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" -#TODO: must remove for restart repro. This setting is used in bmark+wave configurations only export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_bmarkfrac_wave_v16_35d b/tests/tests/cpld_bmarkfrac_wave_v16_35d index 05789051b3..54d72cf498 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16_35d +++ b/tests/tests/cpld_bmarkfrac_wave_v16_35d @@ -67,6 +67,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='300' export DT_CICE=${DT_ATMOS} @@ -108,7 +111,6 @@ export OZ_PHYS_NEW=".T." export MOM6_USE_WAVES='True' export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" -#TODO: must remove for restart repro. This setting is used in bmark+wave configurations only export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_control_c192 b/tests/tests/cpld_control_c192 index 353d6a4398..c138a9ba99 100644 --- a/tests/tests/cpld_control_c192 +++ b/tests/tests/cpld_control_c192 @@ -87,6 +87,9 @@ export NX_GLB=720 export NY_GLB=576 export NPROC_ICE='24' +# resolution dependent setting +export CDMBWD=${CDMBWD_c192} + # set component and coupling timesteps export DT_ATMOS='900' export DT_CICE=${DT_ATMOS} diff --git a/tests/tests/cpld_control_c384 b/tests/tests/cpld_control_c384 index b68958ce7a..98986dc3c9 100644 --- a/tests/tests/cpld_control_c384 +++ b/tests/tests/cpld_control_c384 @@ -87,6 +87,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} diff --git a/tests/tests/cpld_control_wave b/tests/tests/cpld_control_wave new file mode 100644 index 0000000000..6f1c9e43d7 --- /dev/null +++ b/tests/tests/cpld_control_wave @@ -0,0 +1,81 @@ +# +# cpld_control_wave test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 with waves" + +export CNTL_DIR="cpld_control_wave" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc \ + 20161004.000000.out_grd.glo_1deg \ + 20161004.000000.out_pnt.points \ + 20161004.000000.restart.glo_1deg" + +export_fv3 +export_cpl + +export TASKS=$TASKS_cpl_dflt_wwav +export TPN=$TPN_cpl_dflt_wwav +export INPES=$INPES_cpl_dflt_wwav +export JNPES=$JNPES_cpl_dflt_wwav +export THRD=$THRD_cpl_dflt_wwav +export WRTTASK_PER_GROUP=$WPG_cpl_dflt_wwav + +export med_petlist_bounds=$MPB_cpl_dflt_wwav +export atm_petlist_bounds=$APB_cpl_dflt_wwav +export ocn_petlist_bounds=$OPB_cpl_dflt_wwav +export ice_petlist_bounds=$IPB_cpl_dflt_wwav +export wav_petlist_bounds=$WPB_cpl_dflt_wwav + +# nems.configure +export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" + +export CPLWAV='.T.' +export CPLWAV2ATM='.T.' +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_controlfrac_c192 b/tests/tests/cpld_controlfrac_c192 index 1eaf7c5f2e..98e58d2ef2 100644 --- a/tests/tests/cpld_controlfrac_c192 +++ b/tests/tests/cpld_controlfrac_c192 @@ -87,6 +87,9 @@ export NX_GLB=720 export NY_GLB=576 export NPROC_ICE='24' +# resolution dependent setting +export CDMBWD=${CDMBWD_c192} + # set component and coupling timesteps export DT_ATMOS='900' export DT_CICE=${DT_ATMOS} diff --git a/tests/tests/cpld_controlfrac_c384 b/tests/tests/cpld_controlfrac_c384 index 0002b0f5cd..998d756323 100644 --- a/tests/tests/cpld_controlfrac_c384 +++ b/tests/tests/cpld_controlfrac_c384 @@ -87,6 +87,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} diff --git a/tests/tests/cpld_restart_bmark b/tests/tests/cpld_restart_bmark index 0986772341..8f60c1b0da 100644 --- a/tests/tests/cpld_restart_bmark +++ b/tests/tests/cpld_restart_bmark @@ -96,6 +96,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} @@ -126,6 +129,7 @@ export OZ_PHYS_NEW=".T." export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_restart_bmarkfrac b/tests/tests/cpld_restart_bmarkfrac index 90668e346a..4b57f86f25 100644 --- a/tests/tests/cpld_restart_bmarkfrac +++ b/tests/tests/cpld_restart_bmarkfrac @@ -96,6 +96,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} @@ -129,6 +132,7 @@ export OZ_PHYS_NEW=".T." export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_restart_bmarkfrac_v16 b/tests/tests/cpld_restart_bmarkfrac_v16 index 6c1f7526a1..db33686f5e 100644 --- a/tests/tests/cpld_restart_bmarkfrac_v16 +++ b/tests/tests/cpld_restart_bmarkfrac_v16 @@ -99,6 +99,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='300' export DT_CICE=${DT_ATMOS} @@ -135,6 +138,7 @@ export OZ_PHYS_NEW=".T." export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_restart_c192 b/tests/tests/cpld_restart_c192 index 36bc961bb5..29b2ba6c24 100644 --- a/tests/tests/cpld_restart_c192 +++ b/tests/tests/cpld_restart_c192 @@ -91,6 +91,9 @@ export NX_GLB=720 export NY_GLB=576 export NPROC_ICE='24' +# resolution dependent setting +export CDMBWD=${CDMBWD_c192} + # set component and coupling timesteps export DT_ATMOS='900' export DT_CICE=${DT_ATMOS} diff --git a/tests/tests/cpld_restart_c384 b/tests/tests/cpld_restart_c384 index 0beebf5907..78c2f141cc 100644 --- a/tests/tests/cpld_restart_c384 +++ b/tests/tests/cpld_restart_c384 @@ -91,6 +91,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} diff --git a/tests/tests/cpld_restartfrac_c192 b/tests/tests/cpld_restartfrac_c192 index 4a8c1fc903..0274c638fd 100644 --- a/tests/tests/cpld_restartfrac_c192 +++ b/tests/tests/cpld_restartfrac_c192 @@ -92,6 +92,9 @@ export NX_GLB=720 export NY_GLB=576 export NPROC_ICE='24' +# resolution dependent setting +export CDMBWD=${CDMBWD_c192} + # set component and coupling timesteps export DT_ATMOS='900' export DT_CICE=${DT_ATMOS} diff --git a/tests/tests/cpld_restartfrac_c384 b/tests/tests/cpld_restartfrac_c384 index 71d798fbde..6d84d16f54 100644 --- a/tests/tests/cpld_restartfrac_c384 +++ b/tests/tests/cpld_restartfrac_c384 @@ -91,6 +91,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} From e3983a03a62a0f77286495ce227a0c94d2b7ee2a Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Fri, 29 Jan 2021 14:38:36 -0700 Subject: [PATCH 064/109] Remove legacy gnumake build from fv3atm and NEMS, remove legacy Python 2.7 support, rename v16beta to v16 and RT updates (#384) * Update .gitmodules and submodule pointers for fv3atm and NEMS * Remove Python 2.7 support from top-level CMakeLists.txt * Reduce forecast length of test fv3_ccpp_gfs_v16_RRTMGP_c192L127 from 24h to 12h * Rename v16beta to v16 everywhere except the public release documentation * Bugfixes and missing changes * Remove 'export CCPP_LIB_DIR=ccpp/lib' from all regression tests * Update regression test baseline date tag to 20210128; skip-ci * Update ecflow-python environment on cheyenne and jet; skip-ci --- CMakeLists.txt | 8 +- FV3 | 2 +- NEMS | 2 +- tests/RegressionTests_cheyenne.gnu.log | 2609 +++++++++-------- tests/RegressionTests_cheyenne.intel.log | 450 +-- tests/RegressionTests_gaea.intel.log | 320 +- tests/RegressionTests_hera.gnu.log | 92 +- tests/RegressionTests_hera.intel.log | 476 +-- tests/RegressionTests_jet.intel.log | 350 ++- tests/RegressionTests_orion.intel.log | 476 +-- tests/RegressionTests_wcoss_cray.log | 318 +- tests/RegressionTests_wcoss_dell_p3.log | 470 +-- tests/fv3_conf/ccpp_gfs_v16_run.IN | 2 +- tests/fv3_conf/ccpp_regional_run.IN | 2 +- ...v16beta_c96.nml.IN => ccpp_v16_c96.nml.IN} | 2 +- ...tmgp.nml.IN => ccpp_v16_c96_rrtmgp.nml.IN} | 0 ...e_c96.nml.IN => ccpp_v16_flake_c96.nml.IN} | 2 +- tests/rt.conf | 26 +- tests/rt.sh | 18 +- tests/rt_35d.conf | 2 +- tests/rt_gnu.conf | 18 +- tests/tests/cpld_bmarkfrac_v16 | 2 +- tests/tests/cpld_bmarkfrac_wave_v16 | 2 +- tests/tests/cpld_bmarkfrac_wave_v16_35d | 6 +- tests/tests/cpld_restart_bmarkfrac_v16 | 2 +- tests/tests/fv3_ccpp_2threads | 1 - tests/tests/fv3_ccpp_HAFS_v0_hwrf | 1 - tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug | 1 - tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson | 1 - .../fv3_ccpp_HAFS_v0_hwrf_thompson_debug | 1 - tests/tests/fv3_ccpp_appbuild | 1 - tests/tests/fv3_ccpp_ca | 1 - tests/tests/fv3_ccpp_control | 1 - tests/tests/fv3_ccpp_control_32bit | 1 - tests/tests/fv3_ccpp_control_debug | 1 - tests/tests/fv3_ccpp_cpt | 1 - tests/tests/fv3_ccpp_csawmg | 1 - tests/tests/fv3_ccpp_csawmg3shoc127 | 1 - tests/tests/fv3_ccpp_csawmgshoc | 1 - tests/tests/fv3_ccpp_decomp | 1 - .../tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson | 1 - .../fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | 1 - tests/tests/fv3_ccpp_gf | 1 - tests/tests/fv3_ccpp_gf_thompson | 1 - tests/tests/fv3_ccpp_gfdlmp | 1 - tests/tests/fv3_ccpp_gfdlmp_32bit | 1 - tests/tests/fv3_ccpp_gfdlmprad | 1 - tests/tests/fv3_ccpp_gfdlmprad_32bit_post | 1 - tests/tests/fv3_ccpp_gfdlmprad_atmwav | 1 - tests/tests/fv3_ccpp_gfdlmprad_gwd | 1 - tests/tests/fv3_ccpp_gfdlmprad_noahmp | 1 - tests/tests/fv3_ccpp_gfs_myj | 1 - tests/tests/fv3_ccpp_gfs_v15p2 | 1 - tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP | 1 - tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP_debug | 1 - tests/tests/fv3_ccpp_gfs_v15p2_debug | 1 - ...{fv3_ccpp_gfs_v16beta => fv3_ccpp_gfs_v16} | 11 +- ...v16beta_RRTMGP => fv3_ccpp_gfs_v16_RRTMGP} | 11 +- tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 | 29 +- ...GP_debug => fv3_ccpp_gfs_v16_RRTMGP_debug} | 11 +- ...s_v16beta_debug => fv3_ccpp_gfs_v16_debug} | 11 +- ...s_v16beta_flake => fv3_ccpp_gfs_v16_flake} | 11 +- ...6beta_restart => fv3_ccpp_gfs_v16_restart} | 11 +- ...v16beta_stochy => fv3_ccpp_gfs_v16_stochy} | 11 +- tests/tests/fv3_ccpp_gfsv16_csawmg | 1 - tests/tests/fv3_ccpp_gfsv16_csawmgt | 1 - tests/tests/fv3_ccpp_gocart_clm | 1 - tests/tests/fv3_ccpp_gsd | 1 - tests/tests/fv3_ccpp_gsd_RRTMGP | 1 - tests/tests/fv3_ccpp_gsd_RRTMGP_debug | 1 - tests/tests/fv3_ccpp_gsd_coldstart | 1 - tests/tests/fv3_ccpp_gsd_debug | 1 - tests/tests/fv3_ccpp_gsd_diag3d_debug | 1 - tests/tests/fv3_ccpp_gsd_drag_suite | 1 - .../fv3_ccpp_gsd_drag_suite_unified_ugwp | 1 - tests/tests/fv3_ccpp_gsd_lndp | 1 - tests/tests/fv3_ccpp_gsd_mynnsfc | 1 - tests/tests/fv3_ccpp_gsd_mynnsfc_debug | 1 - tests/tests/fv3_ccpp_gsd_noah | 1 - tests/tests/fv3_ccpp_gsd_noah_lndp | 1 - tests/tests/fv3_ccpp_gsd_noah_mynnsfc | 1 - tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug | 1 - tests/tests/fv3_ccpp_gsd_sar | 1 - tests/tests/fv3_ccpp_gsd_sar_debug | 1 - tests/tests/fv3_ccpp_gsd_unified_ugwp | 1 - tests/tests/fv3_ccpp_gsd_warmstart | 1 - tests/tests/fv3_ccpp_h2ophys | 1 - tests/tests/fv3_ccpp_hrrr | 1 - tests/tests/fv3_ccpp_iau | 1 - tests/tests/fv3_ccpp_lheatstrg | 1 - tests/tests/fv3_ccpp_lndp | 1 - tests/tests/fv3_ccpp_multigases | 1 - tests/tests/fv3_ccpp_mynn | 1 - tests/tests/fv3_ccpp_ntiedtke | 1 - tests/tests/fv3_ccpp_ozphys_2015 | 1 - tests/tests/fv3_ccpp_rap | 1 - tests/tests/fv3_ccpp_read_inc | 1 - tests/tests/fv3_ccpp_regional_c768 | 1 - tests/tests/fv3_ccpp_regional_control | 1 - tests/tests/fv3_ccpp_regional_quilt | 1 - .../fv3_ccpp_regional_quilt_netcdf_parallel | 1 - tests/tests/fv3_ccpp_regional_restart | 1 - tests/tests/fv3_ccpp_restart | 1 - tests/tests/fv3_ccpp_rrfs_v1beta | 1 - tests/tests/fv3_ccpp_rrfs_v1beta_debug | 1 - tests/tests/fv3_ccpp_sas | 1 - tests/tests/fv3_ccpp_satmedmf | 1 - tests/tests/fv3_ccpp_satmedmfq | 1 - tests/tests/fv3_ccpp_shinhong | 1 - tests/tests/fv3_ccpp_stochy | 1 - tests/tests/fv3_ccpp_stretched | 1 - tests/tests/fv3_ccpp_stretched_nest | 1 - tests/tests/fv3_ccpp_stretched_nest_debug | 1 - tests/tests/fv3_ccpp_stretched_nest_quilt | 1 - tests/tests/fv3_ccpp_thompson | 1 - tests/tests/fv3_ccpp_thompson_debug | 1 - tests/tests/fv3_ccpp_thompson_mynn | 1 - tests/tests/fv3_ccpp_thompson_no_aero | 1 - tests/tests/fv3_ccpp_thompson_no_aero_debug | 1 - tests/tests/fv3_ccpp_wrtGauss_nemsio | 1 - tests/tests/fv3_ccpp_wrtGauss_nemsio_c192 | 1 - tests/tests/fv3_ccpp_wrtGauss_nemsio_c768 | 1 - tests/tests/fv3_ccpp_wrtGauss_netcdf | 1 - tests/tests/fv3_ccpp_wrtGauss_netcdf_esmf | 1 - tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel | 1 - tests/tests/fv3_ccpp_wrtGlatlon_netcdf | 1 - tests/tests/fv3_ccpp_ysu | 1 - tests/utest.bld | 4 +- 128 files changed, 2883 insertions(+), 2978 deletions(-) rename tests/parm/{ccpp_v16beta_c96.nml.IN => ccpp_v16_c96.nml.IN} (99%) rename tests/parm/{ccpp_v16beta_c96_rrtmgp.nml.IN => ccpp_v16_c96_rrtmgp.nml.IN} (100%) rename tests/parm/{ccpp_v16beta_flake_c96.nml.IN => ccpp_v16_flake_c96.nml.IN} (99%) rename tests/tests/{fv3_ccpp_gfs_v16beta => fv3_ccpp_gfs_v16} (92%) rename tests/tests/{fv3_ccpp_gfs_v16beta_RRTMGP => fv3_ccpp_gfs_v16_RRTMGP} (91%) rename tests/tests/{fv3_ccpp_gfs_v16beta_RRTMGP_debug => fv3_ccpp_gfs_v16_RRTMGP_debug} (91%) rename tests/tests/{fv3_ccpp_gfs_v16beta_debug => fv3_ccpp_gfs_v16_debug} (91%) rename tests/tests/{fv3_ccpp_gfs_v16beta_flake => fv3_ccpp_gfs_v16_flake} (90%) rename tests/tests/{fv3_ccpp_gfs_v16beta_restart => fv3_ccpp_gfs_v16_restart} (89%) rename tests/tests/{fv3_ccpp_gfs_v16beta_stochy => fv3_ccpp_gfs_v16_stochy} (90%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7c778d43b3..e4f62ef2ca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -111,10 +111,7 @@ endif() target_link_libraries(nemsio::nemsio INTERFACE w3emc::w3emc_d bacio::bacio_4) # Configure Python -find_package(Python 3 QUIET COMPONENTS Interpreter) -if (NOT Python_Interpreter_FOUND) - find_package(Python 2.7 REQUIRED COMPONENTS Interpreter) -endif() +find_package(Python 3 REQUIRED COMPONENTS Interpreter) message("Found Python: ${Python_EXECUTABLE}") ############################################################################### @@ -241,8 +238,7 @@ list(APPEND _nems_srcs NEMS/src/module_NEMS_UTILS.F90 NEMS/src/module_NEMS_INTERNAL_STATE.F90 NEMS/src/module_NEMS_GRID_COMP.F90 NEMS/src/module_NEMS_Rusage.F90 - NEMS/src/nems_c_rusage.c - NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90) + NEMS/src/nems_c_rusage.c) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h ${CMAKE_CURRENT_BINARY_DIR}/NEMS/src/ESMFVersionDefine.h diff --git a/FV3 b/FV3 index 307f00124f..c2fc3de2cb 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 307f00124f1b95dd39a993006e25dfeb83a314b7 +Subproject commit c2fc3de2cb6c51f85f98ee0e69f25cffd68bc9dd diff --git a/NEMS b/NEMS index f7fb973f8d..b80b5b1880 160000 --- a/NEMS +++ b/NEMS @@ -1 +1 @@ -Subproject commit f7fb973f8d6c9f2fc88c5a2742bfc8ef37c49320 +Subproject commit b80b5b18805302290f821e960d820e99e0bcd9ef diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 593fb82853..1a0c160bb9 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,1340 +1,1369 @@ -Tue Jan 26 10:50:35 MST 2021 +Thu Jan 28 17:09:14 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... -Moving baseline 001 fv3_ccpp_gfdlmp files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.nemsio .........OK - Moving phyf024.nemsio .........OK - Moving dynf000.nemsio .........OK - Moving dynf024.nemsio .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK + 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 ............SKIP for gnu compilers + 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 001 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... -Moving baseline 002 fv3_ccpp_gfs_v15p2 files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK + 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 ............SKIP for gnu compilers + 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 002 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v16beta_prod -Checking test 003 fv3_ccpp_gfs_v16beta results .... -Moving baseline 003 fv3_ccpp_gfs_v16beta files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving phyf048.tile1.nc .........OK - Moving phyf048.tile2.nc .........OK - Moving phyf048.tile3.nc .........OK - Moving phyf048.tile4.nc .........OK - Moving phyf048.tile5.nc .........OK - Moving phyf048.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving dynf048.tile1.nc .........OK - Moving dynf048.tile2.nc .........OK - Moving dynf048.tile3.nc .........OK - Moving dynf048.tile4.nc .........OK - Moving dynf048.tile5.nc .........OK - Moving dynf048.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 003 fv3_ccpp_gfs_v16beta PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v16_prod +Checking test 003 fv3_ccpp_gfs_v16 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 ............SKIP for gnu compilers + 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 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 004 fv3_ccpp_gfs_v16beta_stochy results .... -Moving baseline 004 fv3_ccpp_gfs_v16beta_stochy files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf012.tile1.nc .........OK - Moving phyf012.tile2.nc .........OK - Moving phyf012.tile3.nc .........OK - Moving phyf012.tile4.nc .........OK - Moving phyf012.tile5.nc .........OK - Moving phyf012.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf012.tile1.nc .........OK - Moving dynf012.tile2.nc .........OK - Moving dynf012.tile3.nc .........OK - Moving dynf012.tile4.nc .........OK - Moving dynf012.tile5.nc .........OK - Moving dynf012.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 004 fv3_ccpp_gfs_v16beta_stochy PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v16_restart_prod +Checking test 004 fv3_ccpp_gfs_v16_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 ............SKIP for gnu compilers + 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 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 005 fv3_ccpp_gfs_v16beta_flake results .... -Moving baseline 005 fv3_ccpp_gfs_v16beta_flake files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 005 fv3_ccpp_gfs_v16beta_flake PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v16_stochy_prod +Checking test 005 fv3_ccpp_gfs_v16_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 ............SKIP for gnu compilers + 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 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 006 fv3_ccpp_gfs_v15p2_RRTMGP results .... -Moving baseline 006 fv3_ccpp_gfs_v15p2_RRTMGP files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 006 fv3_ccpp_gfs_v15p2_RRTMGP PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v16_flake_prod +Checking test 006 fv3_ccpp_gfs_v16_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 + 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 ............SKIP for gnu compilers + 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 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 007 fv3_ccpp_gfs_v16beta_RRTMGP results .... -Moving baseline 007 fv3_ccpp_gfs_v16beta_RRTMGP files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 007 fv3_ccpp_gfs_v16beta_RRTMGP PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/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 + 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 ............SKIP for gnu compilers + 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 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gsd_prod -Checking test 008 fv3_ccpp_gsd results .... -Moving baseline 008 fv3_ccpp_gsd files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving phyf027.tile1.nc .........OK - Moving phyf027.tile2.nc .........OK - Moving phyf027.tile3.nc .........OK - Moving phyf027.tile4.nc .........OK - Moving phyf027.tile5.nc .........OK - Moving phyf027.tile6.nc .........OK - Moving phyf048.tile1.nc .........OK - Moving phyf048.tile2.nc .........OK - Moving phyf048.tile3.nc .........OK - Moving phyf048.tile4.nc .........OK - Moving phyf048.tile5.nc .........OK - Moving phyf048.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving dynf027.tile1.nc .........OK - Moving dynf027.tile2.nc .........OK - Moving dynf027.tile3.nc .........OK - Moving dynf027.tile4.nc .........OK - Moving dynf027.tile5.nc .........OK - Moving dynf027.tile6.nc .........OK - Moving dynf048.tile1.nc .........OK - Moving dynf048.tile2.nc .........OK - Moving dynf048.tile3.nc .........OK - Moving dynf048.tile4.nc .........OK - Moving dynf048.tile5.nc .........OK - Moving dynf048.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_gsd PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 008 fv3_ccpp_gfs_v16_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 ............SKIP for gnu compilers + 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 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_thompson_prod -Checking test 009 fv3_ccpp_thompson results .... -Moving baseline 009 fv3_ccpp_thompson files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_thompson PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gsd_prod +Checking test 009 fv3_ccpp_gsd 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 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 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 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 ............SKIP for gnu compilers + 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 009 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_thompson_no_aero_prod -Checking test 010 fv3_ccpp_thompson_no_aero results .... -Moving baseline 010 fv3_ccpp_thompson_no_aero files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_thompson_no_aero PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_thompson_prod +Checking test 010 fv3_ccpp_thompson 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 ............SKIP for gnu compilers + 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 010 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_rrfs_v1beta_prod -Checking test 011 fv3_ccpp_rrfs_v1beta results .... -Moving baseline 011 fv3_ccpp_rrfs_v1beta files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_rrfs_v1beta PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/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 + 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 ............SKIP for gnu compilers + 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 011 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 012 fv3_ccpp_HAFS_v0_hwrf_thompson results .... -Moving baseline 012 fv3_ccpp_HAFS_v0_hwrf_thompson files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 012 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/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 + 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 ............SKIP for gnu compilers + 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 012 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 013 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... -Moving baseline 013 fv3_ccpp_esg_HAFS_v0_hwrf_thompson files .... - Moving atmos_4xdaily.nc .........OK - Moving phyf000.nc .........OK - Moving phyf012.nc .........OK - Moving dynf000.nc .........OK - Moving dynf012.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/sfc_data.nc .........OK - Moving RESTART/phy_data.nc .........OK -Test 013 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/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 + 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 ............SKIP for gnu compilers + 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 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_control_debug_prod -Checking test 014 fv3_ccpp_control_debug results .... -Moving baseline 014 fv3_ccpp_control_debug files .... - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK -Test 014 fv3_ccpp_control_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/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 + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 015 fv3_ccpp_gfs_v15p2_debug results .... -Moving baseline 015 fv3_ccpp_gfs_v15p2_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_ccpp_gfs_v15p2_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_control_debug_prod +Checking test 015 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 015 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 016 fv3_ccpp_gfs_v16beta_debug results .... -Moving baseline 016 fv3_ccpp_gfs_v16beta_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_ccpp_gfs_v16beta_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/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 + 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 ............SKIP for gnu compilers + 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_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 017 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... -Moving baseline 017 fv3_ccpp_gfs_v15p2_RRTMGP_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 017 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v16_debug_prod +Checking test 017 fv3_ccpp_gfs_v16_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 ............SKIP for gnu compilers + 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 017 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 018 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... -Moving baseline 018 fv3_ccpp_gfs_v16beta_RRTMGP_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test 018 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/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 + 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 ............SKIP for gnu compilers + 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 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_multigases_prod -Checking test 019 fv3_ccpp_multigases results .... -Moving baseline 019 fv3_ccpp_multigases files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf006.tile1.nc .........OK - Moving phyf006.tile2.nc .........OK - Moving phyf006.tile3.nc .........OK - Moving phyf006.tile4.nc .........OK - Moving phyf006.tile5.nc .........OK - Moving phyf006.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf006.tile1.nc .........OK - Moving dynf006.tile2.nc .........OK - Moving dynf006.tile3.nc .........OK - Moving dynf006.tile4.nc .........OK - Moving dynf006.tile5.nc .........OK - Moving dynf006.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 019 fv3_ccpp_multigases PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 019 fv3_ccpp_gfs_v16_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 ............SKIP for gnu compilers + 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 019 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 020 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... -Moving baseline 020 fv3_ccpp_HAFS_v0_hwrf_thompson_debug files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf003.tile1.nc .........OK - Moving phyf003.tile2.nc .........OK - Moving phyf003.tile3.nc .........OK - Moving phyf003.tile4.nc .........OK - Moving phyf003.tile5.nc .........OK - Moving phyf003.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf003.tile1.nc .........OK - Moving dynf003.tile2.nc .........OK - Moving dynf003.tile3.nc .........OK - Moving dynf003.tile4.nc .........OK - Moving dynf003.tile5.nc .........OK - Moving dynf003.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK -Test 020 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/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 + 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 ............SKIP for gnu compilers + 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/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 020 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_45248/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 021 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... -Moving baseline 021 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug files .... - Moving atmos_4xdaily.nc .........OK - Moving phyf000.nc .........OK - Moving phyf001.nc .........OK - Moving dynf000.nc .........OK - Moving dynf001.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/sfc_data.nc .........OK - Moving RESTART/phy_data.nc .........OK -Test 021 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + 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 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/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 + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 26 11:39:06 MST 2021 -Elapsed time: 00h:48m:31s. Have a nice day! +Thu Jan 28 17:27:16 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 db39f3aae8..71362402d3 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Tue Jan 26 18:04:06 MST 2021 +Thu Jan 28 19:44:18 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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-20210126/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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-20210126/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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-20210126/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210126/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -324,8 +324,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-20210126/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -372,8 +372,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-20210126/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -420,8 +420,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-20210126/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -430,7 +430,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 ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK @@ -468,8 +468,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-20210126/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -516,8 +516,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-20210126/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -564,8 +564,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-20210126/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -612,8 +612,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-20210126/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,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-20210126/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ 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-20210126/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_lndp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,19 +1228,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 ............ALT CHECK......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-20210126/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1269,8 +1269,8 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -1289,8 +1289,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1337,8 +1337,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -1385,8 +1385,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -1433,8 +1433,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,8 +1481,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1529,8 +1529,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1577,8 +1577,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -1625,8 +1625,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -1677,8 +1677,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1731,8 +1731,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1823,8 +1823,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_rap_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1891,8 +1891,8 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_hrrr_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,8 +1959,8 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2027,8 +2027,8 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -2095,8 +2095,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -2163,9 +2163,9 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfs_v16beta_prod -Checking test 042 fv3_ccpp_gfs_v16beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v16_prod +Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2240,12 +2240,12 @@ Checking test 042 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 042 fv3_ccpp_gfs_v16beta PASS +Test 042 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 043 fv3_ccpp_gfs_v16beta_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v16_restart_prod +Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2290,12 +2290,12 @@ Checking test 043 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 043 fv3_ccpp_gfs_v16beta_restart PASS +Test 043 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 044 fv3_ccpp_gfs_v16beta_stochy results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v16_stochy_prod +Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2358,12 +2358,12 @@ Checking test 044 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 044 fv3_ccpp_gfs_v16beta_stochy PASS +Test 044 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 045 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2426,11 +2426,11 @@ 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 045 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2438,24 +2438,24 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... 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 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 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 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 @@ -2491,8 +2491,8 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gocart_clm_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -2539,9 +2539,9 @@ Checking test 047 fv3_ccpp_gocart_clm results .... Test 047 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 048 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v16_flake_prod +Checking test 048 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2604,11 +2604,11 @@ Checking test 048 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 048 fv3_ccpp_gfs_v16beta_flake PASS +Test 048 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -2675,8 +2675,8 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -2693,8 +2693,8 @@ Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -2761,9 +2761,9 @@ Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... Test 051 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 052 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v16_debug_prod +Checking test 052 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2826,11 +2826,11 @@ Checking test 052 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 052 fv3_ccpp_gfs_v16beta_debug PASS +Test 052 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -2897,9 +2897,9 @@ Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2962,11 +2962,11 @@ Checking test 054 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 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 054 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -3033,8 +3033,8 @@ Checking test 055 fv3_ccpp_gsd_debug results .... Test 055 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -3101,8 +3101,8 @@ Checking test 056 fv3_ccpp_gsd_diag3d_debug results .... Test 056 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -3169,8 +3169,8 @@ Checking test 057 fv3_ccpp_thompson_debug results .... Test 057 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -3237,8 +3237,8 @@ Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... Test 058 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -3305,8 +3305,8 @@ Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... Test 059 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -3373,8 +3373,8 @@ Checking test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -3391,8 +3391,8 @@ Checking test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_control_prod Checking test 062 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3444,8 +3444,8 @@ Checking test 062 cpld_control results .... Test 062 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restart_prod Checking test 063 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3497,8 +3497,8 @@ Checking test 063 cpld_restart results .... Test 063 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_controlfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_controlfrac_prod Checking test 064 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3550,8 +3550,8 @@ Checking test 064 cpld_controlfrac results .... Test 064 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restartfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restartfrac_prod Checking test 065 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3603,8 +3603,8 @@ Checking test 065 cpld_restartfrac results .... Test 065 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_2threads_prod Checking test 066 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3656,8 +3656,8 @@ Checking test 066 cpld_2threads results .... Test 066 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_decomp_prod Checking test 067 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3709,8 +3709,8 @@ Checking test 067 cpld_decomp results .... Test 067 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_satmedmf_prod Checking test 068 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3762,8 +3762,8 @@ Checking test 068 cpld_satmedmf results .... Test 068 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_ca_prod Checking test 069 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3815,8 +3815,8 @@ Checking test 069 cpld_ca results .... Test 069 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_control_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_control_c192_prod Checking test 070 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3868,8 +3868,8 @@ Checking test 070 cpld_control_c192 results .... Test 070 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restart_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restart_c192_prod Checking test 071 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3921,8 +3921,8 @@ Checking test 071 cpld_restart_c192 results .... Test 071 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_controlfrac_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_controlfrac_c192_prod Checking test 072 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3974,8 +3974,8 @@ Checking test 072 cpld_controlfrac_c192 results .... Test 072 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restartfrac_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restartfrac_c192_prod Checking test 073 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4027,8 +4027,8 @@ Checking test 073 cpld_restartfrac_c192 results .... Test 073 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_control_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_control_c384_prod Checking test 074 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4083,8 +4083,8 @@ Checking test 074 cpld_control_c384 results .... Test 074 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restart_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restart_c384_prod Checking test 075 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4139,8 +4139,8 @@ Checking test 075 cpld_restart_c384 results .... Test 075 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_controlfrac_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_controlfrac_c384_prod Checking test 076 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4195,8 +4195,8 @@ Checking test 076 cpld_controlfrac_c384 results .... Test 076 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restartfrac_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restartfrac_c384_prod Checking test 077 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4251,8 +4251,8 @@ Checking test 077 cpld_restartfrac_c384 results .... Test 077 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_bmark_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_bmark_prod Checking test 078 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4307,8 +4307,8 @@ Checking test 078 cpld_bmark results .... Test 078 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restart_bmark_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restart_bmark_prod Checking test 079 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4363,8 +4363,8 @@ Checking test 079 cpld_restart_bmark results .... Test 079 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_bmarkfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_bmarkfrac_prod Checking test 080 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4419,8 +4419,8 @@ Checking test 080 cpld_bmarkfrac results .... Test 080 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restart_bmarkfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restart_bmarkfrac_prod Checking test 081 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4475,8 +4475,8 @@ Checking test 081 cpld_restart_bmarkfrac results .... Test 081 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_bmarkfrac_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_bmarkfrac_v16_prod Checking test 082 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4531,8 +4531,8 @@ Checking test 082 cpld_bmarkfrac_v16 results .... Test 082 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_restart_bmarkfrac_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restart_bmarkfrac_v16_prod Checking test 083 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4587,8 +4587,8 @@ Checking test 083 cpld_restart_bmarkfrac_v16 results .... Test 083 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_bmark_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_bmark_wave_prod Checking test 084 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4646,8 +4646,8 @@ Checking test 084 cpld_bmark_wave results .... Test 084 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_bmarkfrac_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_bmarkfrac_wave_prod Checking test 085 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4705,8 +4705,8 @@ Checking test 085 cpld_bmarkfrac_wave results .... Test 085 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_bmarkfrac_wave_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_bmarkfrac_wave_v16_prod Checking test 086 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4764,8 +4764,8 @@ Checking test 086 cpld_bmarkfrac_wave_v16 results .... Test 086 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_control_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_control_wave_prod Checking test 087 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4820,8 +4820,8 @@ Checking test 087 cpld_control_wave results .... Test 087 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_debug_prod Checking test 088 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4873,8 +4873,8 @@ Checking test 088 cpld_debug results .... Test 088 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/cpld_debugfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_debugfrac_prod Checking test 089 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4926,8 +4926,8 @@ Checking test 089 cpld_debugfrac results .... Test 089 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/datm_control_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -4935,8 +4935,8 @@ Checking test 090 datm_control_cfsr results .... Test 090 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/datm_restart_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -4944,8 +4944,8 @@ Checking test 091 datm_restart_cfsr results .... Test 091 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/datm_control_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -4953,8 +4953,8 @@ Checking test 092 datm_control_gefs results .... Test 092 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/datm_bulk_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -4962,8 +4962,8 @@ Checking test 093 datm_bulk_cfsr results .... Test 093 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_bulk_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/datm_bulk_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -4971,8 +4971,8 @@ Checking test 094 datm_bulk_gefs results .... Test 094 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/datm_mx025_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/datm_mx025_cfsr Checking test 095 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4983,8 +4983,8 @@ Checking test 095 datm_mx025_cfsr results .... Test 095 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_mx025_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/datm_mx025_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/datm_mx025_gefs Checking test 096 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4995,8 +4995,8 @@ Checking test 096 datm_mx025_gefs results .... Test 096 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_debug_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_61245/datm_debug_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/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 @@ -5005,5 +5005,5 @@ Test 097 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 26 19:25:19 MST 2021 -Elapsed time: 01h:21m:14s. Have a nice day! +Thu Jan 28 21:08:51 MST 2021 +Elapsed time: 01h:24m:34s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index d4ca1d2d72..6a545e8969 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Tue Jan 26 23:10:00 EST 2021 +Thu Jan 28 18:47:01 EST 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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-20210126/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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-20210126/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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-20210126/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210126/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -324,8 +324,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-20210126/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -372,8 +372,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-20210126/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -420,8 +420,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-20210126/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -468,8 +468,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-20210126/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -516,8 +516,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-20210126/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -564,8 +564,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-20210126/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -612,8 +612,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-20210126/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210126/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_ca_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_lndp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_iau_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,19 +1228,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1269,8 +1269,8 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -1289,8 +1289,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1337,8 +1337,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -1385,8 +1385,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -1433,8 +1433,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,8 +1481,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1529,8 +1529,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1577,8 +1577,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -1625,8 +1625,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -1677,8 +1677,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_cpt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1731,8 +1731,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gsd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1823,8 +1823,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_rap_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1891,8 +1891,8 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_hrrr_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,8 +1959,8 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2027,8 +2027,8 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -2095,8 +2095,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -2163,8 +2163,8 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v15p2_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -2231,9 +2231,9 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v16beta_prod -Checking test 043 fv3_ccpp_gfs_v16beta results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v16_prod +Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2308,12 +2308,12 @@ Checking test 043 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 043 fv3_ccpp_gfs_v16beta PASS +Test 043 fv3_ccpp_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v16_restart_prod +Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2358,12 +2358,12 @@ Checking test 044 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 044 fv3_ccpp_gfs_v16beta_restart PASS +Test 044 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v16_stochy_prod +Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2426,11 +2426,11 @@ Checking test 045 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 045 fv3_ccpp_gfs_v16beta_stochy PASS +Test 045 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -2497,9 +2497,9 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2562,11 +2562,11 @@ Checking test 047 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 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -2574,24 +2574,24 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... 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 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 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 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 @@ -2627,8 +2627,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -2675,8 +2675,8 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Test 049 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -2723,8 +2723,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Test 050 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gocart_clm_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -2771,9 +2771,9 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Test 051 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 052 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v16_flake_prod +Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2836,11 +2836,11 @@ Checking test 052 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 052 fv3_ccpp_gfs_v16beta_flake PASS +Test 052 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -2907,8 +2907,8 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -2925,8 +2925,8 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -2993,9 +2993,9 @@ Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... Test 055 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 056 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v16_debug_prod +Checking test 056 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3058,11 +3058,11 @@ Checking test 056 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 056 fv3_ccpp_gfs_v16beta_debug PASS +Test 056 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -3129,9 +3129,9 @@ Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3194,11 +3194,11 @@ Checking test 058 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 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gsd_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -3265,8 +3265,8 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Test 059 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -3333,8 +3333,8 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Test 060 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -3401,8 +3401,8 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Test 061 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -3469,8 +3469,8 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Test 062 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -3537,8 +3537,8 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Test 063 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -3605,8 +3605,8 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_19620/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/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 @@ -3624,5 +3624,5 @@ Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 27 00:14:23 EST 2021 -Elapsed time: 01h:04m:24s. Have a nice day! +Thu Jan 28 19:23:38 EST 2021 +Elapsed time: 00h:36m:38s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 50fd072637..f78a82d99a 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Tue Jan 26 19:55:16 UTC 2021 +Thu Jan 28 20:21:09 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/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-20210126/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/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,9 +118,9 @@ 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-20210126/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_gfs_v16beta_prod -Checking test 003 fv3_ccpp_gfs_v16beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v16_prod +Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -195,12 +195,12 @@ Checking test 003 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 003 fv3_ccpp_gfs_v16beta PASS +Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 004 fv3_ccpp_gfs_v16beta_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v16_restart_prod +Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -245,12 +245,12 @@ Checking test 004 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 004 fv3_ccpp_gfs_v16beta_restart PASS +Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 005 fv3_ccpp_gfs_v16beta_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v16_stochy_prod +Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -313,12 +313,12 @@ Checking test 005 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 005 fv3_ccpp_gfs_v16beta_stochy PASS +Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 006 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v16_flake_prod +Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -381,11 +381,11 @@ Checking test 006 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 006 fv3_ccpp_gfs_v16beta_flake PASS +Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/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,9 +452,9 @@ 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-20210126/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 008 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -517,11 +517,11 @@ Checking test 008 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 008 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/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-20210126/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/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-20210126/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/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-20210126/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/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-20210126/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/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-20210126/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/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-20210126/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/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-20210126/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/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,9 +1000,9 @@ 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-20210126/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 017 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v16_debug_prod +Checking test 017 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1065,11 +1065,11 @@ Checking test 017 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 017 fv3_ccpp_gfs_v16beta_debug PASS +Test 017 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/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,9 +1136,9 @@ 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-20210126/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 019 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1201,11 +1201,11 @@ Checking test 019 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 019 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 019 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/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-20210126/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/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-20210126/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_104785/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/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 26 20:44:40 UTC 2021 -Elapsed time: 00h:49m:25s. Have a nice day! +Thu Jan 28 21:03:16 UTC 2021 +Elapsed time: 00h:42m:07s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index e1bc2a76b7..7e152a4f27 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Tue Jan 26 20:49:37 UTC 2021 +Fri Jan 29 00:17:19 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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-20210126/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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-20210126/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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-20210126/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -324,8 +324,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-20210126/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -372,8 +372,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-20210126/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -420,8 +420,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-20210126/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -429,7 +429,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 ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK @@ -468,8 +468,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-20210126/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -516,8 +516,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-20210126/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -564,8 +564,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-20210126/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -612,8 +612,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-20210126/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -1030,8 +1030,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-20210126/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -1079,8 +1079,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-20210126/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1153,8 +1153,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -1221,8 +1221,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-20210126/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1277,8 +1277,8 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -1344,8 +1344,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-20210126/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1355,8 +1355,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-20210126/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1364,8 +1364,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-20210126/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1375,8 +1375,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-20210126/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -1386,8 +1386,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-20210126/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1416,8 +1416,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-20210126/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -1436,8 +1436,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-20210126/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfdlmp_prod Checking test 030 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1484,8 +1484,8 @@ Checking test 030 fv3_ccpp_gfdlmp results .... Test 030 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -1532,8 +1532,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-20210126/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -1580,8 +1580,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-20210126/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,8 +1628,8 @@ Checking test 033 fv3_ccpp_csawmg results .... Test 033 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1676,8 +1676,8 @@ Checking test 034 fv3_ccpp_satmedmf results .... Test 034 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1724,8 +1724,8 @@ Checking test 035 fv3_ccpp_satmedmfq results .... Test 035 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -1772,8 +1772,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-20210126/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -1824,8 +1824,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-20210126/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1878,8 +1878,8 @@ Checking test 038 fv3_ccpp_cpt results .... Test 038 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1970,8 +1970,8 @@ Checking test 039 fv3_ccpp_gsd results .... Test 039 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2038,8 +2038,8 @@ Checking test 040 fv3_ccpp_rap results .... Test 040 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2106,8 +2106,8 @@ Checking test 041 fv3_ccpp_hrrr results .... Test 041 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2174,8 +2174,8 @@ Checking test 042 fv3_ccpp_thompson results .... Test 042 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -2242,8 +2242,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-20210126/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -2310,8 +2310,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-20210126/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -2378,9 +2378,9 @@ 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-20210126/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfs_v16beta_prod -Checking test 046 fv3_ccpp_gfs_v16beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_prod +Checking test 046 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2455,12 +2455,12 @@ Checking test 046 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 046 fv3_ccpp_gfs_v16beta PASS +Test 046 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 047 fv3_ccpp_gfs_v16beta_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_restart_prod +Checking test 047 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2505,12 +2505,12 @@ Checking test 047 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 047 fv3_ccpp_gfs_v16beta_restart PASS +Test 047 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 048 fv3_ccpp_gfs_v16beta_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_stochy_prod +Checking test 048 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2573,11 +2573,11 @@ Checking test 048 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 048 fv3_ccpp_gfs_v16beta_stochy PASS +Test 048 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -2644,9 +2644,9 @@ 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-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2709,11 +2709,11 @@ Checking test 050 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 050 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -2721,24 +2721,24 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... 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 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 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 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 @@ -2774,8 +2774,8 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -2822,8 +2822,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Test 052 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -2870,8 +2870,8 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Test 053 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -2918,9 +2918,9 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Test 054 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_flake_prod +Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2983,11 +2983,11 @@ Checking test 055 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 055 fv3_ccpp_gfs_v16beta_flake PASS +Test 055 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -3054,8 +3054,8 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -3072,8 +3072,8 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -3140,9 +3140,9 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_debug_prod +Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3205,11 +3205,11 @@ Checking test 059 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 059 fv3_ccpp_gfs_v16beta_debug PASS +Test 059 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -3276,9 +3276,9 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3341,11 +3341,11 @@ Checking test 061 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 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -3412,8 +3412,8 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Test 062 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -3480,8 +3480,8 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Test 063 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -3548,8 +3548,8 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Test 064 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -3616,8 +3616,8 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Test 065 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -3684,8 +3684,8 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Test 066 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -3752,8 +3752,8 @@ Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/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 @@ -3770,8 +3770,8 @@ Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3823,8 +3823,8 @@ Checking test 069 cpld_control results .... Test 069 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3876,8 +3876,8 @@ Checking test 070 cpld_restart results .... Test 070 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_controlfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3929,8 +3929,8 @@ Checking test 071 cpld_controlfrac results .... Test 071 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restartfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3982,8 +3982,8 @@ Checking test 072 cpld_restartfrac results .... Test 072 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4035,8 +4035,8 @@ Checking test 073 cpld_2threads results .... Test 073 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4088,8 +4088,8 @@ Checking test 074 cpld_decomp results .... Test 074 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4141,8 +4141,8 @@ Checking test 075 cpld_satmedmf results .... Test 075 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4194,8 +4194,8 @@ Checking test 076 cpld_ca results .... Test 076 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4247,8 +4247,8 @@ Checking test 077 cpld_control_c192 results .... Test 077 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restart_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4300,8 +4300,8 @@ Checking test 078 cpld_restart_c192 results .... Test 078 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_controlfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4353,8 +4353,8 @@ Checking test 079 cpld_controlfrac_c192 results .... Test 079 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restartfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4406,8 +4406,8 @@ Checking test 080 cpld_restartfrac_c192 results .... Test 080 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4462,8 +4462,8 @@ Checking test 081 cpld_control_c384 results .... Test 081 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restart_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4518,8 +4518,8 @@ Checking test 082 cpld_restart_c384 results .... Test 082 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4574,8 +4574,8 @@ Checking test 083 cpld_controlfrac_c384 results .... Test 083 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restartfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4630,8 +4630,8 @@ Checking test 084 cpld_restartfrac_c384 results .... Test 084 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4686,8 +4686,8 @@ Checking test 085 cpld_bmark results .... Test 085 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restart_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4742,8 +4742,8 @@ Checking test 086 cpld_restart_bmark results .... Test 086 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4798,8 +4798,8 @@ Checking test 087 cpld_bmarkfrac results .... Test 087 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restart_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4854,8 +4854,8 @@ Checking test 088 cpld_restart_bmarkfrac results .... Test 088 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4910,8 +4910,8 @@ Checking test 089 cpld_bmarkfrac_v16 results .... Test 089 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_restart_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4966,8 +4966,8 @@ Checking test 090 cpld_restart_bmarkfrac_v16 results .... Test 090 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5025,8 +5025,8 @@ Checking test 091 cpld_bmark_wave results .... Test 091 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_bmarkfrac_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5084,8 +5084,8 @@ Checking test 092 cpld_bmarkfrac_wave results .... Test 092 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_bmarkfrac_wave_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5143,8 +5143,8 @@ Checking test 093 cpld_bmarkfrac_wave_v16 results .... Test 093 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_control_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_control_wave_prod Checking test 094 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5199,8 +5199,8 @@ Checking test 094 cpld_control_wave results .... Test 094 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_debug_prod Checking test 095 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5252,8 +5252,8 @@ Checking test 095 cpld_debug results .... Test 095 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/cpld_debugfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_debugfrac_prod Checking test 096 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5305,8 +5305,8 @@ Checking test 096 cpld_debugfrac results .... Test 096 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/datm_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_control_cfsr Checking test 097 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5314,8 +5314,8 @@ Checking test 097 datm_control_cfsr results .... Test 097 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/datm_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_restart_cfsr Checking test 098 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5323,8 +5323,8 @@ Checking test 098 datm_restart_cfsr results .... Test 098 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/datm_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_control_gefs Checking test 099 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5332,8 +5332,8 @@ Checking test 099 datm_control_gefs results .... Test 099 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/datm_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_bulk_cfsr Checking test 100 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5341,8 +5341,8 @@ Checking test 100 datm_bulk_cfsr results .... Test 100 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/datm_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_bulk_gefs Checking test 101 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5350,8 +5350,8 @@ Checking test 101 datm_bulk_gefs results .... Test 101 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/datm_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_mx025_cfsr Checking test 102 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5362,8 +5362,8 @@ Checking test 102 datm_mx025_cfsr results .... Test 102 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/datm_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_mx025_gefs Checking test 103 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5374,8 +5374,8 @@ Checking test 103 datm_mx025_gefs results .... Test 103 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_267480/datm_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_debug_cfsr Checking test 104 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5384,5 +5384,5 @@ Test 104 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 26 22:04:30 UTC 2021 -Elapsed time: 01h:14m:53s. Have a nice day! +Fri Jan 29 01:34:02 UTC 2021 +Elapsed time: 01h:16m:44s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index c72a93a68f..cc79b2872d 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Tue Jan 19 20:34:44 GMT 2021 +Fri Jan 29 16:33:28 GMT 2021 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -23,12 +23,6 @@ Checking test 001 fv3_ccpp_control 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 @@ -41,12 +35,6 @@ Checking test 001 fv3_ccpp_control 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 @@ -82,8 +70,8 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_decomp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -150,8 +138,8 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_2threads_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -218,27 +206,21 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... - 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 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 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 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 @@ -274,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_read_inc_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 +324,8 @@ Checking test 005 fv3_ccpp_read_inc results .... Test 005 fv3_ccpp_read_inc PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 +372,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-20210115/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 +420,8 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 +430,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 .........OK + Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK @@ -486,8 +468,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-20210115/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 +516,8 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 +564,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 +612,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-20210115/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_stochy_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 +680,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_ca_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_lndp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_iau_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_lheatstrg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_multigases_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1024,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_control_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -1092,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_stretched_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1148,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_stretched_nest_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -1215,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_regional_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1226,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_regional_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1235,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_regional_quilt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1246,8 +1228,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -1257,8 +1239,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_control_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1287,8 +1269,8 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -1307,8 +1289,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfdlmp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,8 +1337,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -1403,8 +1385,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -1451,8 +1433,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_csawmg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1499,8 +1481,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_satmedmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1547,8 +1529,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_satmedmfq_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1595,8 +1577,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -1643,8 +1625,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -1695,8 +1677,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_cpt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1749,8 +1731,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gsd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1823,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1891,8 @@ Checking test 037 fv3_ccpp_thompson results .... Test 037 fv3_ccpp_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -1977,8 +1959,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfs_v15p2_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -2045,9 +2027,9 @@ Checking test 039 fv3_ccpp_gfs_v15p2 results .... Test 039 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfs_v16beta_prod -Checking test 040 fv3_ccpp_gfs_v16beta results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v16_prod +Checking test 040 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2122,12 +2104,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 040 fv3_ccpp_gfs_v16 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 041 fv3_ccpp_gfs_v16beta_restart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v16_restart_prod +Checking test 041 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2172,12 +2154,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 041 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 042 fv3_ccpp_gfs_v16beta_stochy results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v16_stochy_prod +Checking test 042 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2240,11 +2222,11 @@ 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 042 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -2311,9 +2293,9 @@ Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 044 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2376,11 +2358,11 @@ 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 044 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -2388,24 +2370,24 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... 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 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 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 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 @@ -2441,8 +2423,8 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -2489,8 +2471,8 @@ Checking test 046 fv3_ccpp_gfsv16_csawmg results .... Test 046 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -2537,8 +2519,8 @@ Checking test 047 fv3_ccpp_gfsv16_csawmgt results .... Test 047 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gocart_clm_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -2585,9 +2567,9 @@ Checking test 048 fv3_ccpp_gocart_clm results .... Test 048 fv3_ccpp_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 049 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v16_flake_prod +Checking test 049 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2650,11 +2632,11 @@ 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 049 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -2721,8 +2703,8 @@ Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -2739,8 +2721,8 @@ Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -2807,9 +2789,9 @@ Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... Test 052 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 053 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v16_debug_prod +Checking test 053 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2872,11 +2854,11 @@ 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 053 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -2943,9 +2925,9 @@ Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 055 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3008,11 +2990,11 @@ 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 055 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gsd_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -3079,8 +3061,8 @@ Checking test 056 fv3_ccpp_gsd_debug results .... Test 056 fv3_ccpp_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -3147,8 +3129,8 @@ Checking test 057 fv3_ccpp_gsd_diag3d_debug results .... Test 057 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -3215,8 +3197,8 @@ Checking test 058 fv3_ccpp_thompson_debug results .... Test 058 fv3_ccpp_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -3283,8 +3265,8 @@ Checking test 059 fv3_ccpp_thompson_no_aero_debug results .... Test 059 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -3351,8 +3333,8 @@ Checking test 060 fv3_ccpp_rrfs_v1beta_debug results .... Test 060 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 @@ -3419,8 +3401,8 @@ Checking test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210115/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_4222/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/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 +3420,5 @@ Test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 19 22:31:15 GMT 2021 -Elapsed time: 01h:56m:31s. Have a nice day! +Fri Jan 29 18:27:52 GMT 2021 +Elapsed time: 01h:54m:25s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 4b956d83b8..a9a90c26bb 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Tue Jan 26 20:15:43 CST 2021 +Thu Jan 28 19:26:32 CST 2021 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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-20210126/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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-20210126/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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-20210126/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -324,8 +324,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-20210126/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -372,8 +372,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-20210126/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -420,8 +420,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-20210126/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -432,7 +432,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing phyf000.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 @@ -468,8 +468,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-20210126/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -516,8 +516,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-20210126/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -564,8 +564,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-20210126/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -612,8 +612,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-20210126/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_lndp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_lheatstrg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -1030,8 +1030,8 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -1079,8 +1079,8 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1153,8 +1153,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -1221,8 +1221,8 @@ Checking test 021 fv3_ccpp_control_32bit results .... Test 021 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1277,8 +1277,8 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -1344,8 +1344,8 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Test 023 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1355,8 +1355,8 @@ Checking test 024 fv3_ccpp_regional_control results .... Test 024 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1364,8 +1364,8 @@ Checking test 025 fv3_ccpp_regional_restart results .... Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1375,8 +1375,8 @@ Checking test 026 fv3_ccpp_regional_quilt results .... Test 026 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -1386,8 +1386,8 @@ Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1416,8 +1416,8 @@ Checking test 028 fv3_ccpp_control_debug results .... Test 028 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -1436,8 +1436,8 @@ Checking test 029 fv3_ccpp_stretched_nest_debug results .... Test 029 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmp_prod Checking test 030 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1484,8 +1484,8 @@ Checking test 030 fv3_ccpp_gfdlmp results .... Test 030 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -1532,8 +1532,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... Test 031 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -1580,8 +1580,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... Test 032 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,8 +1628,8 @@ Checking test 033 fv3_ccpp_csawmg results .... Test 033 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1676,8 +1676,8 @@ Checking test 034 fv3_ccpp_satmedmf results .... Test 034 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_satmedmfq_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1724,8 +1724,8 @@ Checking test 035 fv3_ccpp_satmedmfq results .... Test 035 fv3_ccpp_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -1772,8 +1772,8 @@ Checking test 036 fv3_ccpp_gfdlmp_32bit results .... Test 036 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -1824,8 +1824,8 @@ Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1878,8 +1878,8 @@ Checking test 038 fv3_ccpp_cpt results .... Test 038 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1970,8 +1970,8 @@ Checking test 039 fv3_ccpp_gsd results .... Test 039 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_rap_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2038,8 +2038,8 @@ Checking test 040 fv3_ccpp_rap results .... Test 040 fv3_ccpp_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_hrrr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2106,8 +2106,8 @@ Checking test 041 fv3_ccpp_hrrr results .... Test 041 fv3_ccpp_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2174,8 +2174,8 @@ Checking test 042 fv3_ccpp_thompson results .... Test 042 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -2242,8 +2242,8 @@ Checking test 043 fv3_ccpp_thompson_no_aero results .... Test 043 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -2310,8 +2310,8 @@ Checking test 044 fv3_ccpp_rrfs_v1beta results .... Test 044 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -2378,9 +2378,9 @@ Checking test 045 fv3_ccpp_gfs_v15p2 results .... Test 045 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v16beta_prod -Checking test 046 fv3_ccpp_gfs_v16beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_prod +Checking test 046 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2455,12 +2455,12 @@ Checking test 046 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 046 fv3_ccpp_gfs_v16beta PASS +Test 046 fv3_ccpp_gfs_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 047 fv3_ccpp_gfs_v16beta_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_restart_prod +Checking test 047 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2505,12 +2505,12 @@ Checking test 047 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 047 fv3_ccpp_gfs_v16beta_restart PASS +Test 047 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 048 fv3_ccpp_gfs_v16beta_stochy results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_stochy_prod +Checking test 048 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2573,11 +2573,11 @@ Checking test 048 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 048 fv3_ccpp_gfs_v16beta_stochy PASS +Test 048 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -2644,9 +2644,9 @@ Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 050 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2709,11 +2709,11 @@ Checking test 050 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 050 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -2721,24 +2721,24 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... 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 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 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 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 @@ -2774,8 +2774,8 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -2822,8 +2822,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Test 052 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -2870,8 +2870,8 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Test 053 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -2918,9 +2918,9 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Test 054 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 055 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_flake_prod +Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2983,11 +2983,11 @@ Checking test 055 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 055 fv3_ccpp_gfs_v16beta_flake PASS +Test 055 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -3054,8 +3054,8 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -3072,8 +3072,8 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -3140,9 +3140,9 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 059 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_debug_prod +Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3205,11 +3205,11 @@ Checking test 059 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 059 fv3_ccpp_gfs_v16beta_debug PASS +Test 059 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -3276,9 +3276,9 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3341,11 +3341,11 @@ Checking test 061 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 061 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -3412,8 +3412,8 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Test 062 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -3480,8 +3480,8 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Test 063 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -3548,8 +3548,8 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Test 064 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -3616,8 +3616,8 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Test 065 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -3684,8 +3684,8 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Test 066 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -3752,8 +3752,8 @@ Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/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 @@ -3770,8 +3770,8 @@ Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3823,8 +3823,8 @@ Checking test 069 cpld_control results .... Test 069 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3876,8 +3876,8 @@ Checking test 070 cpld_restart results .... Test 070 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_controlfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3929,8 +3929,8 @@ Checking test 071 cpld_controlfrac results .... Test 071 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restartfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3982,8 +3982,8 @@ Checking test 072 cpld_restartfrac results .... Test 072 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4035,8 +4035,8 @@ Checking test 073 cpld_2threads results .... Test 073 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4088,8 +4088,8 @@ Checking test 074 cpld_decomp results .... Test 074 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4141,8 +4141,8 @@ Checking test 075 cpld_satmedmf results .... Test 075 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4194,8 +4194,8 @@ Checking test 076 cpld_ca results .... Test 076 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4247,8 +4247,8 @@ Checking test 077 cpld_control_c192 results .... Test 077 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4300,8 +4300,8 @@ Checking test 078 cpld_restart_c192 results .... Test 078 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_controlfrac_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4353,8 +4353,8 @@ Checking test 079 cpld_controlfrac_c192 results .... Test 079 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restartfrac_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4406,8 +4406,8 @@ Checking test 080 cpld_restartfrac_c192 results .... Test 080 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4462,8 +4462,8 @@ Checking test 081 cpld_control_c384 results .... Test 081 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4518,8 +4518,8 @@ Checking test 082 cpld_restart_c384 results .... Test 082 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4574,8 +4574,8 @@ Checking test 083 cpld_controlfrac_c384 results .... Test 083 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restartfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4630,8 +4630,8 @@ Checking test 084 cpld_restartfrac_c384 results .... Test 084 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4686,8 +4686,8 @@ Checking test 085 cpld_bmark results .... Test 085 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4742,8 +4742,8 @@ Checking test 086 cpld_restart_bmark results .... Test 086 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmarkfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4798,8 +4798,8 @@ Checking test 087 cpld_bmarkfrac results .... Test 087 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_bmarkfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4854,8 +4854,8 @@ Checking test 088 cpld_restart_bmarkfrac results .... Test 088 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmarkfrac_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4910,8 +4910,8 @@ Checking test 089 cpld_bmarkfrac_v16 results .... Test 089 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_restart_bmarkfrac_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4966,8 +4966,8 @@ Checking test 090 cpld_restart_bmarkfrac_v16 results .... Test 090 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5025,8 +5025,8 @@ Checking test 091 cpld_bmark_wave results .... Test 091 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmarkfrac_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5084,8 +5084,8 @@ Checking test 092 cpld_bmarkfrac_wave results .... Test 092 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_bmarkfrac_wave_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5143,8 +5143,8 @@ Checking test 093 cpld_bmarkfrac_wave_v16 results .... Test 093 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_control_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_control_wave_prod Checking test 094 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5199,8 +5199,8 @@ Checking test 094 cpld_control_wave results .... Test 094 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_debug_prod Checking test 095 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5252,8 +5252,8 @@ Checking test 095 cpld_debug results .... Test 095 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/cpld_debugfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_debugfrac_prod Checking test 096 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5305,8 +5305,8 @@ Checking test 096 cpld_debugfrac results .... Test 096 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_control_cfsr Checking test 097 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5314,8 +5314,8 @@ Checking test 097 datm_control_cfsr results .... Test 097 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_restart_cfsr Checking test 098 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5323,8 +5323,8 @@ Checking test 098 datm_restart_cfsr results .... Test 098 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_control_gefs Checking test 099 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5332,8 +5332,8 @@ Checking test 099 datm_control_gefs results .... Test 099 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_bulk_cfsr Checking test 100 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5341,8 +5341,8 @@ Checking test 100 datm_bulk_cfsr results .... Test 100 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_bulk_gefs Checking test 101 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5350,8 +5350,8 @@ Checking test 101 datm_bulk_gefs results .... Test 101 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_mx025_cfsr Checking test 102 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5362,8 +5362,8 @@ Checking test 102 datm_mx025_cfsr results .... Test 102 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_mx025_gefs Checking test 103 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5374,8 +5374,8 @@ Checking test 103 datm_mx025_gefs results .... Test 103 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_97126/datm_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_debug_cfsr Checking test 104 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5384,5 +5384,5 @@ Test 104 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 26 21:30:46 CST 2021 -Elapsed time: 01h:15m:04s. Have a nice day! +Thu Jan 28 20:39:50 CST 2021 +Elapsed time: 01h:13m:19s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 5f4ea98831..28e3f456c4 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Tue Jan 26 22:12:09 UTC 2021 +Fri Jan 29 02:31:10 UTC 2021 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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-20210126/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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-20210126/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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-20210126/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210126/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -324,8 +324,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-20210126/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -372,8 +372,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-20210126/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -420,8 +420,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-20210126/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -468,8 +468,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-20210126/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -516,8 +516,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-20210126/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -564,8 +564,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-20210126/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -612,8 +612,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-20210126/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210126/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_ca_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_ca_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_lndp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lndp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,8 +1228,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -1239,8 +1239,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1269,8 +1269,8 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -1289,8 +1289,8 @@ Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1337,8 +1337,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -1385,8 +1385,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -1433,8 +1433,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,8 +1481,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1529,8 +1529,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1577,8 +1577,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -1625,8 +1625,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -1677,8 +1677,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1731,8 +1731,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1823,8 +1823,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_rap_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rap_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1891,8 +1891,8 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_hrrr_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,8 +1959,8 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2027,8 +2027,8 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -2095,8 +2095,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -2163,8 +2163,8 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -2231,9 +2231,9 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfs_v16beta_prod -Checking test 043 fv3_ccpp_gfs_v16beta results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v16_prod +Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2308,12 +2308,12 @@ Checking test 043 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 043 fv3_ccpp_gfs_v16beta PASS +Test 043 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 044 fv3_ccpp_gfs_v16beta_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v16_restart_prod +Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2358,12 +2358,12 @@ Checking test 044 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 044 fv3_ccpp_gfs_v16beta_restart PASS +Test 044 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 045 fv3_ccpp_gfs_v16beta_stochy results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v16_stochy_prod +Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2426,11 +2426,11 @@ Checking test 045 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 045 fv3_ccpp_gfs_v16beta_stochy PASS +Test 045 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -2497,9 +2497,9 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2562,11 +2562,11 @@ Checking test 047 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 047 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -2574,24 +2574,24 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... 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 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 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 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 @@ -2627,8 +2627,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -2675,8 +2675,8 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Test 049 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -2723,8 +2723,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Test 050 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -2771,9 +2771,9 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Test 051 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 052 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v16_flake_prod +Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2836,11 +2836,11 @@ Checking test 052 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 052 fv3_ccpp_gfs_v16beta_flake PASS +Test 052 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -2907,8 +2907,8 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -2925,8 +2925,8 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -2993,9 +2993,9 @@ Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... Test 055 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 056 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v16_debug_prod +Checking test 056 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3058,11 +3058,11 @@ Checking test 056 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 056 fv3_ccpp_gfs_v16beta_debug PASS +Test 056 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -3129,9 +3129,9 @@ Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3194,11 +3194,11 @@ Checking test 058 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 058 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -3265,8 +3265,8 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Test 059 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -3333,8 +3333,8 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Test 060 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -3401,8 +3401,8 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Test 061 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -3469,8 +3469,8 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Test 062 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -3537,8 +3537,8 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Test 063 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -3605,8 +3605,8 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_32267/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/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 @@ -3624,5 +3624,5 @@ Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 26 22:56:55 UTC 2021 -Elapsed time: 00h:44m:46s. Have a nice day! +Fri Jan 29 03:11:51 UTC 2021 +Elapsed time: 00h:40m:42s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 23693d6091..49433a5393 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Tue Jan 26 22:12:20 UTC 2021 +Fri Jan 29 06:12:24 UTC 2021 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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-20210126/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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-20210126/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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-20210126/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210126/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -324,8 +324,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-20210126/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -372,8 +372,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-20210126/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -420,8 +420,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-20210126/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -468,8 +468,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-20210126/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -516,8 +516,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-20210126/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -564,8 +564,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-20210126/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -612,8 +612,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-20210126/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210126/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_ca_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_lndp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lndp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -1030,8 +1030,8 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1104,8 +1104,8 @@ Checking test 019 fv3_ccpp_multigases results .... Test 019 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -1172,8 +1172,8 @@ Checking test 020 fv3_ccpp_control_32bit results .... Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1228,8 +1228,8 @@ Checking test 021 fv3_ccpp_stretched results .... Test 021 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -1295,8 +1295,8 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1306,8 +1306,8 @@ Checking test 023 fv3_ccpp_regional_control results .... Test 023 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 024 fv3_ccpp_regional_restart results .... Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1326,8 +1326,8 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -1337,8 +1337,8 @@ Checking test 026 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 026 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1367,8 +1367,8 @@ Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -1387,8 +1387,8 @@ Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1435,8 +1435,8 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -1483,8 +1483,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -1531,8 +1531,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,8 +1579,8 @@ Checking test 032 fv3_ccpp_csawmg results .... Test 032 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 033 fv3_ccpp_satmedmf results .... Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_satmedmfq_prod Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1675,8 +1675,8 @@ Checking test 034 fv3_ccpp_satmedmfq results .... Test 034 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -1723,8 +1723,8 @@ Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Test 035 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -1775,8 +1775,8 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_cpt_prod Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1829,8 +1829,8 @@ Checking test 037 fv3_ccpp_cpt results .... Test 037 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gsd_prod Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1921,8 +1921,8 @@ Checking test 038 fv3_ccpp_gsd results .... Test 038 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_rap_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rap_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_rap_prod Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1989,8 +1989,8 @@ Checking test 039 fv3_ccpp_rap results .... Test 039 fv3_ccpp_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_hrrr_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_hrrr_prod Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2057,8 +2057,8 @@ Checking test 040 fv3_ccpp_hrrr results .... Test 040 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_thompson_prod Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2125,8 +2125,8 @@ Checking test 041 fv3_ccpp_thompson results .... Test 041 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -2193,8 +2193,8 @@ Checking test 042 fv3_ccpp_thompson_no_aero results .... Test 042 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -2261,8 +2261,8 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... Test 043 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -2329,9 +2329,9 @@ Checking test 044 fv3_ccpp_gfs_v15p2 results .... Test 044 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfs_v16beta_prod -Checking test 045 fv3_ccpp_gfs_v16beta results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v16_prod +Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2406,12 +2406,12 @@ Checking test 045 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 045 fv3_ccpp_gfs_v16beta PASS +Test 045 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfs_v16beta_restart_prod -Checking test 046 fv3_ccpp_gfs_v16beta_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v16_restart_prod +Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2456,12 +2456,12 @@ Checking test 046 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 046 fv3_ccpp_gfs_v16beta_restart PASS +Test 046 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfs_v16beta_stochy_prod -Checking test 047 fv3_ccpp_gfs_v16beta_stochy results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v16_stochy_prod +Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2524,11 +2524,11 @@ Checking test 047 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 047 fv3_ccpp_gfs_v16beta_stochy PASS +Test 047 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -2595,9 +2595,9 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2660,11 +2660,11 @@ Checking test 049 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 049 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 049 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -2672,24 +2672,24 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... 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 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 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 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 @@ -2725,8 +2725,8 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -2773,8 +2773,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Test 051 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -2821,8 +2821,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Test 052 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -2869,9 +2869,9 @@ Checking test 053 fv3_ccpp_gocart_clm results .... Test 053 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 054 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v16_flake_prod +Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2934,11 +2934,11 @@ Checking test 054 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 054 fv3_ccpp_gfs_v16beta_flake PASS +Test 054 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -3005,8 +3005,8 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -3023,8 +3023,8 @@ Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -3091,9 +3091,9 @@ Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Test 057 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 058 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v16_debug_prod +Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3156,11 +3156,11 @@ Checking test 058 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 058 fv3_ccpp_gfs_v16beta_debug PASS +Test 058 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -3227,9 +3227,9 @@ Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3292,11 +3292,11 @@ Checking test 060 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 060 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -3363,8 +3363,8 @@ Checking test 061 fv3_ccpp_gsd_debug results .... Test 061 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -3431,8 +3431,8 @@ Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... Test 062 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -3499,8 +3499,8 @@ Checking test 063 fv3_ccpp_thompson_debug results .... Test 063 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -3567,8 +3567,8 @@ Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... Test 064 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -3635,8 +3635,8 @@ Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... Test 065 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -3703,8 +3703,8 @@ Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -3721,8 +3721,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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_control_prod Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3774,8 +3774,8 @@ Checking test 068 cpld_control results .... Test 068 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restart_prod Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3827,8 +3827,8 @@ Checking test 069 cpld_restart results .... Test 069 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_controlfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_controlfrac_prod Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3880,8 +3880,8 @@ Checking test 070 cpld_controlfrac results .... Test 070 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restartfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restartfrac_prod Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3933,8 +3933,8 @@ Checking test 071 cpld_restartfrac results .... Test 071 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_2threads_prod Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3986,8 +3986,8 @@ Checking test 072 cpld_2threads results .... Test 072 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_decomp_prod Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4039,8 +4039,8 @@ Checking test 073 cpld_decomp results .... Test 073 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_satmedmf_prod Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4092,8 +4092,8 @@ Checking test 074 cpld_satmedmf results .... Test 074 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_ca_prod Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4145,8 +4145,8 @@ Checking test 075 cpld_ca results .... Test 075 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_control_c192_prod Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4198,8 +4198,8 @@ Checking test 076 cpld_control_c192 results .... Test 076 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restart_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restart_c192_prod Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4251,8 +4251,8 @@ Checking test 077 cpld_restart_c192 results .... Test 077 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_controlfrac_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_controlfrac_c192_prod Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4304,8 +4304,8 @@ Checking test 078 cpld_controlfrac_c192 results .... Test 078 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restartfrac_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restartfrac_c192_prod Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4357,8 +4357,8 @@ Checking test 079 cpld_restartfrac_c192 results .... Test 079 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_control_c384_prod Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4413,8 +4413,8 @@ Checking test 080 cpld_control_c384 results .... Test 080 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restart_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restart_c384_prod Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4469,8 +4469,8 @@ Checking test 081 cpld_restart_c384 results .... Test 081 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_controlfrac_c384_prod Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4525,8 +4525,8 @@ Checking test 082 cpld_controlfrac_c384 results .... Test 082 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restartfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restartfrac_c384_prod Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4581,8 +4581,8 @@ Checking test 083 cpld_restartfrac_c384 results .... Test 083 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_bmark_prod Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4637,8 +4637,8 @@ Checking test 084 cpld_bmark results .... Test 084 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restart_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restart_bmark_prod Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4693,8 +4693,8 @@ Checking test 085 cpld_restart_bmark results .... Test 085 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_bmarkfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_bmarkfrac_prod Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4749,8 +4749,8 @@ Checking test 086 cpld_bmarkfrac results .... Test 086 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restart_bmarkfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restart_bmarkfrac_prod Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4805,8 +4805,8 @@ Checking test 087 cpld_restart_bmarkfrac results .... Test 087 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_bmarkfrac_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_bmarkfrac_v16_prod Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4861,8 +4861,8 @@ Checking test 088 cpld_bmarkfrac_v16 results .... Test 088 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_restart_bmarkfrac_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restart_bmarkfrac_v16_prod Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4917,8 +4917,8 @@ Checking test 089 cpld_restart_bmarkfrac_v16 results .... Test 089 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_bmark_wave_prod Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4976,8 +4976,8 @@ Checking test 090 cpld_bmark_wave results .... Test 090 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_bmarkfrac_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_bmarkfrac_wave_prod Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5035,8 +5035,8 @@ Checking test 091 cpld_bmarkfrac_wave results .... Test 091 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_bmarkfrac_wave_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_wave_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_bmarkfrac_wave_v16_prod Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5094,8 +5094,8 @@ Checking test 092 cpld_bmarkfrac_wave_v16 results .... Test 092 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_control_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_control_wave_prod Checking test 093 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5150,8 +5150,8 @@ Checking test 093 cpld_control_wave results .... Test 093 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_debug_prod Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5203,8 +5203,8 @@ Checking test 094 cpld_debug results .... Test 094 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/cpld_debugfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_debugfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_debugfrac_prod Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5256,8 +5256,8 @@ Checking test 095 cpld_debugfrac results .... Test 095 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/datm_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -5265,8 +5265,8 @@ Checking test 096 datm_control_cfsr results .... Test 096 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/datm_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -5274,8 +5274,8 @@ Checking test 097 datm_restart_cfsr results .... Test 097 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/datm_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -5283,8 +5283,8 @@ Checking test 098 datm_control_gefs results .... Test 098 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/datm_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -5292,8 +5292,8 @@ Checking test 099 datm_bulk_cfsr results .... Test 099 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/datm_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -5301,8 +5301,8 @@ Checking test 100 datm_bulk_gefs results .... Test 100 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/datm_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5313,8 +5313,8 @@ Checking test 101 datm_mx025_cfsr results .... Test 101 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/datm_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5325,8 +5325,8 @@ Checking test 102 datm_mx025_gefs results .... Test 102 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_6798/datm_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/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 @@ -5335,5 +5335,5 @@ Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 27 00:39:33 UTC 2021 -Elapsed time: 02h:27m:15s. Have a nice day! +Fri Jan 29 10:28:47 UTC 2021 +Elapsed time: 04h:16m:25s. Have a nice day! diff --git a/tests/fv3_conf/ccpp_gfs_v16_run.IN b/tests/fv3_conf/ccpp_gfs_v16_run.IN index c4e022ff86..eb5b247574 100644 --- a/tests/fv3_conf/ccpp_gfs_v16_run.IN +++ b/tests/fv3_conf/ccpp_gfs_v16_run.IN @@ -2,7 +2,7 @@ rm -fr INPUT RESTART rsync -arv @[INPUTDATA_ROOT]/FV3_input_data/INPUT/ INPUT/ mkdir RESTART if [ $WARM_START = .T. ]; then - rsync -arv ../fv3_ccpp_gfs_v16beta${RT_SUFFIX}/RESTART/ INPUT/ + rsync -arv ../fv3_ccpp_gfs_v16${RT_SUFFIX}/RESTART/ INPUT/ cd INPUT rename 20161004.000000. '' 20161004.000000.* cd .. diff --git a/tests/fv3_conf/ccpp_regional_run.IN b/tests/fv3_conf/ccpp_regional_run.IN index 3188c78028..e524384644 100644 --- a/tests/fv3_conf/ccpp_regional_run.IN +++ b/tests/fv3_conf/ccpp_regional_run.IN @@ -4,7 +4,7 @@ rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/model_configure . rm -rf INPUT RESTART mkdir INPUT RESTART -rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/INPUT/. INPUT/. +rsync -arv @[INPUTDATA_ROOT]/fv3_regional_control/INPUT/. INPUT/. if [ $WARM_START = .T. ]; then cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.coupler.res INPUT/coupler.res diff --git a/tests/parm/ccpp_v16beta_c96.nml.IN b/tests/parm/ccpp_v16_c96.nml.IN similarity index 99% rename from tests/parm/ccpp_v16beta_c96.nml.IN rename to tests/parm/ccpp_v16_c96.nml.IN index fcaf5764e8..eb5dba4786 100644 --- a/tests/parm/ccpp_v16beta_c96.nml.IN +++ b/tests/parm/ccpp_v16_c96.nml.IN @@ -16,7 +16,7 @@ fhout = 3 fhmaxhf = 120 fhouthf = 1 - ccpp_suite = 'FV3_GFS_v16beta' + ccpp_suite = 'FV3_GFS_v16' / &diag_manager_nml diff --git a/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN b/tests/parm/ccpp_v16_c96_rrtmgp.nml.IN similarity index 100% rename from tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN rename to tests/parm/ccpp_v16_c96_rrtmgp.nml.IN diff --git a/tests/parm/ccpp_v16beta_flake_c96.nml.IN b/tests/parm/ccpp_v16_flake_c96.nml.IN similarity index 99% rename from tests/parm/ccpp_v16beta_flake_c96.nml.IN rename to tests/parm/ccpp_v16_flake_c96.nml.IN index ed2b840eeb..66efb1156a 100644 --- a/tests/parm/ccpp_v16beta_flake_c96.nml.IN +++ b/tests/parm/ccpp_v16_flake_c96.nml.IN @@ -16,7 +16,7 @@ fhout = 3 fhmaxhf = 120 fhouthf = 1 - ccpp_suite = 'FV3_GFS_v16beta_flake' + ccpp_suite = 'FV3_GFS_v16_flake' / &diag_manager_nml diff --git a/tests/rt.conf b/tests/rt.conf index 1d2cc2e292..fca90dd15c 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -76,14 +76,14 @@ RUN | fv3_ccpp_thompson_no_aero # This test crashes with NaNs on jet.intel RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | | fv3 | +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | # fv3_ccpp_gfs_v15p2 and fv3_ccpp_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | 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_v16 | | fv3 | +RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 +RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | @@ -91,9 +91,9 @@ COMPILE | SUITES=FV3_GFS_v16_csawmg 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 | | fv3 | +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | RUN | fv3_ccpp_gocart_clm | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_flake | | fv3 | +RUN | fv3_ccpp_gfs_v16_flake | | fv3 | COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | RUN | fv3_ccpp_HAFS_v0_hwrf_thompson | | fv3 | @@ -107,11 +107,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) # Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -COMPILE | DEBUG=Y SUITES='FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta,FV3_GFS_v16beta_RRTMGP' | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +COMPILE | DEBUG=Y SUITES='FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP' | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16_debug | | fv3 | RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16_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 | @@ -129,7 +129,7 @@ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug # CPLD tests # ################################################################################################################################################################################### -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_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_controlfrac | - wcoss_cray gaea.intel jet.intel | fv3 | @@ -160,13 +160,13 @@ RUN | cpld_restart_bmarkfrac RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_control_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,FV3_GFS_v16beta_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_debug | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_debugfrac | - wcoss_cray gaea.intel jet.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 8ecd4bebbb..92e1b8928c 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -282,9 +282,9 @@ elif [[ $MACHINE_ID = jet.* ]]; then ROCOTOCOMPLETE=$(which rocotocomplete) ROCOTO_SCHEDULER=slurm - export PATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/bin:$PATH - export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/lib/python2.7/site-packages - ECFLOW_START=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/bin/ecflow_start.sh + export PATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.5.3/bin:$PATH + export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.5.3/lib/python3.6/site-packages + ECFLOW_START=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.5.3/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=batch @@ -302,10 +302,10 @@ elif [[ $MACHINE_ID = jet.* ]]; then elif [[ $MACHINE_ID = cheyenne.* ]]; then - module load python/2.7.16 - export PATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/bin:$PATH - export PYTHONPATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/lib/python2.7/site-packages - ECFLOW_START=/glade/p/ral/jntp/tools/ecFlow-5.3.1/bin/ecflow_start.sh + module load python/3.7.9 + export PATH=/glade/p/ral/jntp/tools/ecFlow-5.5.3/bin:$PATH + export PYTHONPATH=/glade/p/ral/jntp/tools/ecFlow-5.5.3/lib/python3.7/site-packages + ECFLOW_START=/glade/p/ral/jntp/tools/ecFlow-5.5.3/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=regular @@ -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-20210126/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210128/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210126} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210128} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210115} diff --git a/tests/rt_35d.conf b/tests/rt_35d.conf index ecf56d651d..9397d51c46 100644 --- a/tests/rt_35d.conf +++ b/tests/rt_35d.conf @@ -38,7 +38,7 @@ RUN | cpld_bmarkfrac_wave_35d RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2013070100 RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2013100100 -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16beta_coupled S2S=Y WW3=Y | + hera.intel orion.intel | fv3 | | +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | + hera.intel orion.intel | fv3 | | RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012010100 RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012040100 RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012070100 diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index c07bcff094..09c68b73ba 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -5,15 +5,15 @@ 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 | | fv3 | +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_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_v16beta_flake | | fv3 | +RUN | fv3_ccpp_gfs_v16 | | fv3 | +RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 +RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | +RUN | fv3_ccpp_gfs_v16_flake | | fv3 | RUN | fv3_ccpp_gfs_v15p2_RRTMGP | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y | | fv3 | @@ -35,11 +35,11 @@ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson 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 | | fv3 | +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y | | fv3 | RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16_debug | | fv3 | RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | RUN | fv3_ccpp_multigases | | fv3 | diff --git a/tests/tests/cpld_bmarkfrac_v16 b/tests/tests/cpld_bmarkfrac_v16 index 5ed0e91d6f..f95b88f48a 100644 --- a/tests/tests/cpld_bmarkfrac_v16 +++ b/tests/tests/cpld_bmarkfrac_v16 @@ -142,6 +142,6 @@ export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" export DIAG_TABLE="diag_table_gfsv16" -export SUITE_NAME="FV3_GFS_v16beta_coupled" +export SUITE_NAME="FV3_GFS_v16_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_v16 b/tests/tests/cpld_bmarkfrac_wave_v16 index ff26ca78f8..a9f53b4cb6 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16 +++ b/tests/tests/cpld_bmarkfrac_wave_v16 @@ -152,5 +152,5 @@ export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" export DIAG_TABLE="diag_table_gfsv16" -export SUITE_NAME="FV3_GFS_v16beta_coupled" +export SUITE_NAME="FV3_GFS_v16_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_v16_35d b/tests/tests/cpld_bmarkfrac_wave_v16_35d index 54d72cf498..c4230bfe26 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16_35d +++ b/tests/tests/cpld_bmarkfrac_wave_v16_35d @@ -1,7 +1,7 @@ # -# cpld_bmark_v16beta 35D +# cpld_bmark_v16 35D # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark 35d test with v16beta" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark 35d test with v16" export_35d_run export_fv3 @@ -119,6 +119,6 @@ export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" export DIAG_TABLE="diag_table_gfsv16" -export SUITE_NAME="FV3_GFS_v16beta_coupled" +export SUITE_NAME="FV3_GFS_v16_coupled" export RT35D='.T.' export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_bmarkfrac_v16 b/tests/tests/cpld_restart_bmarkfrac_v16 index db33686f5e..9e4e91f4e3 100644 --- a/tests/tests/cpld_restart_bmarkfrac_v16 +++ b/tests/tests/cpld_restart_bmarkfrac_v16 @@ -158,6 +158,6 @@ export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" export DIAG_TABLE="diag_table_gfsv16" -export SUITE_NAME="FV3_GFS_v16beta_coupled" +export SUITE_NAME="FV3_GFS_v16_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/fv3_ccpp_2threads b/tests/tests/fv3_ccpp_2threads index fe0c77a406..0d1dee9a71 100644 --- a/tests/tests/fv3_ccpp_2threads +++ b/tests/tests/fv3_ccpp_2threads @@ -82,6 +82,5 @@ export WRTTASK_PER_GROUP=12 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf b/tests/tests/fv3_ccpp_HAFS_v0_hwrf index f5f98bf782..b9e2eae107 100644 --- a/tests/tests/fv3_ccpp_HAFS_v0_hwrf +++ b/tests/tests/fv3_ccpp_HAFS_v0_hwrf @@ -79,7 +79,6 @@ DT_ATMOS="600" export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN export OZ_PHYS_OLD=.F. diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug index 07bb1e7332..08833a6720 100644 --- a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug +++ b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug @@ -82,7 +82,6 @@ DT_ATMOS="600" export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN export OZ_PHYS_OLD=.F. diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson index de913c0c93..3b17849361 100644 --- a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson +++ b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson @@ -79,7 +79,6 @@ DT_ATMOS="600" export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf_thompson -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN export OZ_PHYS_OLD=.F. diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug index 72ea02ed14..b56589d179 100644 --- a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug +++ b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug @@ -82,7 +82,6 @@ DT_ATMOS="600" export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf_thompson -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN export OZ_PHYS_OLD=.F. diff --git a/tests/tests/fv3_ccpp_appbuild b/tests/tests/fv3_ccpp_appbuild index 7e2e20962f..30ec1a9b0d 100644 --- a/tests/tests/fv3_ccpp_appbuild +++ b/tests/tests/fv3_ccpp_appbuild @@ -75,6 +75,5 @@ export_fv3 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_ca b/tests/tests/fv3_ccpp_ca index 4547eaad51..0ea62c1dfc 100644 --- a/tests/tests/fv3_ccpp_ca +++ b/tests/tests/fv3_ccpp_ca @@ -75,7 +75,6 @@ export_fv3 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_ca.nml.IN export DO_CA=.T. diff --git a/tests/tests/fv3_ccpp_control b/tests/tests/fv3_ccpp_control index 51c284c773..d9301b68b4 100644 --- a/tests/tests/fv3_ccpp_control +++ b/tests/tests/fv3_ccpp_control @@ -77,6 +77,5 @@ export RESTART_INTERVAL=12 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_control_32bit b/tests/tests/fv3_ccpp_control_32bit index c1db0d7db7..b435bd109d 100644 --- a/tests/tests/fv3_ccpp_control_32bit +++ b/tests/tests/fv3_ccpp_control_32bit @@ -76,6 +76,5 @@ export_fv3 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_control_debug b/tests/tests/fv3_ccpp_control_debug index 0c3bfb6f05..f30a5058b2 100644 --- a/tests/tests/fv3_ccpp_control_debug +++ b/tests/tests/fv3_ccpp_control_debug @@ -39,6 +39,5 @@ export FHMAX="06" export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_cpt b/tests/tests/fv3_ccpp_cpt index 667f523061..a182a6a2d5 100644 --- a/tests/tests/fv3_ccpp_cpt +++ b/tests/tests/fv3_ccpp_cpt @@ -83,7 +83,6 @@ export NPZP='128' export INPUT_NML=ccpp_cpt.nml.IN export FV3_RUN=ccpp_cpt_run.IN export CCPP_SUITE=FV3_CPT_v0 -export CCPP_LIB_DIR=ccpp/lib export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'nemsio'" export WRITE_NEMSIOFLIP=.true. diff --git a/tests/tests/fv3_ccpp_csawmg b/tests/tests/fv3_ccpp_csawmg index 237cca0f63..d49f2a48a1 100644 --- a/tests/tests/fv3_ccpp_csawmg +++ b/tests/tests/fv3_ccpp_csawmg @@ -59,7 +59,6 @@ DT_ATMOS="600" export INPUT_NML=ccpp_csawmg.nml.IN export FV3_RUN=ccpp_csawmg_run.IN export CCPP_SUITE=FV3_GFS_2017_csawmg -export CCPP_LIB_DIR=ccpp/lib export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'nemsio'" export WRITE_NEMSIOFLIP=.true. diff --git a/tests/tests/fv3_ccpp_csawmg3shoc127 b/tests/tests/fv3_ccpp_csawmg3shoc127 index 810903271f..1fb11f4584 100644 --- a/tests/tests/fv3_ccpp_csawmg3shoc127 +++ b/tests/tests/fv3_ccpp_csawmg3shoc127 @@ -78,5 +78,4 @@ export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. export CCPP_SUITE=FV3_GFS_2017_csawmgshoc -export CCPP_LIB_DIR=ccpp/lib diff --git a/tests/tests/fv3_ccpp_csawmgshoc b/tests/tests/fv3_ccpp_csawmgshoc index 86e0a04560..f68bc3504a 100644 --- a/tests/tests/fv3_ccpp_csawmgshoc +++ b/tests/tests/fv3_ccpp_csawmgshoc @@ -64,6 +64,5 @@ export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. export CCPP_SUITE=FV3_GFS_2017_csawmgshoc -export CCPP_LIB_DIR=ccpp/lib diff --git a/tests/tests/fv3_ccpp_decomp b/tests/tests/fv3_ccpp_decomp index 6843ae6a6f..da4e91205a 100644 --- a/tests/tests/fv3_ccpp_decomp +++ b/tests/tests/fv3_ccpp_decomp @@ -79,6 +79,5 @@ export JNPES=4 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson b/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson index 0ddd652f0c..2188cfa3a9 100644 --- a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson +++ b/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson @@ -32,7 +32,6 @@ DT_ATMOS="300" export FV3_RUN=ccpp_esg_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf_thompson -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_esg_HAFS_v0_hwrf.nml.IN export MODEL_CONFIGURE=ccpp_esg_HAFS_v0_hwrf-model_configure.IN diff --git a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug b/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug index 8e00080af9..dea85c2bf3 100644 --- a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug +++ b/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug @@ -32,7 +32,6 @@ DT_ATMOS="300" export FV3_RUN=ccpp_esg_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf_thompson -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_esg_HAFS_v0_hwrf.nml.IN export MODEL_CONFIGURE=ccpp_esg_HAFS_v0_hwrf-model_configure.IN diff --git a/tests/tests/fv3_ccpp_gf b/tests/tests/fv3_ccpp_gf index bf9adfa750..00a7fcfe30 100644 --- a/tests/tests/fv3_ccpp_gf +++ b/tests/tests/fv3_ccpp_gf @@ -80,7 +80,6 @@ export DO_SAT_ADJ=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GFS_v15_gf -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gf_thompson b/tests/tests/fv3_ccpp_gf_thompson index cd764ce395..78922beb8c 100644 --- a/tests/tests/fv3_ccpp_gf_thompson +++ b/tests/tests/fv3_ccpp_gf_thompson @@ -82,7 +82,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GFS_v15_gf_thompson -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gfdlmp b/tests/tests/fv3_ccpp_gfdlmp index ea5c81b418..a965807bc1 100644 --- a/tests/tests/fv3_ccpp_gfdlmp +++ b/tests/tests/fv3_ccpp_gfdlmp @@ -62,6 +62,5 @@ export WRITE_FSYNCFLAG=.true. export FV3_RUN=ccpp_gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfdlmp_32bit b/tests/tests/fv3_ccpp_gfdlmp_32bit index a318bf2b4a..1249268bb1 100644 --- a/tests/tests/fv3_ccpp_gfdlmp_32bit +++ b/tests/tests/fv3_ccpp_gfdlmp_32bit @@ -62,6 +62,5 @@ export WRITE_FSYNCFLAG=.true. export FV3_RUN=ccpp_gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfdlmprad b/tests/tests/fv3_ccpp_gfdlmprad index 7f6eb68d57..5d1b9ccdf2 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad +++ b/tests/tests/fv3_ccpp_gfdlmprad @@ -76,7 +76,6 @@ export coupling_interval_sec=3600.0 #coupling time step, want it to be multiple export NEMS_CONFIGURE="nems.configure.blocked_atm_wav.IN" export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN export FV3_RUN=ccpp_gfdlmp_run.IN diff --git a/tests/tests/fv3_ccpp_gfdlmprad_32bit_post b/tests/tests/fv3_ccpp_gfdlmprad_32bit_post index 8c0829d0a2..ba5813bef1 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad_32bit_post +++ b/tests/tests/fv3_ccpp_gfdlmprad_32bit_post @@ -70,7 +70,6 @@ export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN export FV3_RUN=ccpp_gfdlmp_run.IN diff --git a/tests/tests/fv3_ccpp_gfdlmprad_atmwav b/tests/tests/fv3_ccpp_gfdlmprad_atmwav index c69a5f2b88..69fcd18edd 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad_atmwav +++ b/tests/tests/fv3_ccpp_gfdlmprad_atmwav @@ -77,7 +77,6 @@ export coupling_interval_sec=1200.0 #coupling time step, want it to be multiple export NEMS_CONFIGURE="nems.configure.blocked_atm_wav_2way.IN" export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN export FV3_RUN=ccpp_gfdlmp_run.IN diff --git a/tests/tests/fv3_ccpp_gfdlmprad_gwd b/tests/tests/fv3_ccpp_gfdlmprad_gwd index ddc358763d..cba744dbdb 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad_gwd +++ b/tests/tests/fv3_ccpp_gfdlmprad_gwd @@ -66,7 +66,6 @@ export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN export FV3_RUN=ccpp_gfdlmp_run.IN diff --git a/tests/tests/fv3_ccpp_gfdlmprad_noahmp b/tests/tests/fv3_ccpp_gfdlmprad_noahmp index d910b643b9..7eb7ac54c4 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad_noahmp +++ b/tests/tests/fv3_ccpp_gfdlmprad_noahmp @@ -66,7 +66,6 @@ export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. export CCPP_SUITE=FV3_GFS_2017_gfdlmp_noahmp -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN export FV3_RUN=ccpp_gfdlmp_run.IN diff --git a/tests/tests/fv3_ccpp_gfs_myj b/tests/tests/fv3_ccpp_gfs_myj index d4336b0a35..df3839f09c 100644 --- a/tests/tests/fv3_ccpp_gfs_myj +++ b/tests/tests/fv3_ccpp_gfs_myj @@ -78,7 +78,6 @@ DT_ATMOS="900" export FV3_RUN=ccpp_gfs_v15_run.IN export CCPP_SUITE=FV3_GFS_2017_myj -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v15p2 b/tests/tests/fv3_ccpp_gfs_v15p2 index db66245f03..3ebd1474dc 100644 --- a/tests/tests/fv3_ccpp_gfs_v15p2 +++ b/tests/tests/fv3_ccpp_gfs_v15p2 @@ -78,6 +78,5 @@ DT_ATMOS="1200" export FV3_RUN=ccpp_gfs_v15_run.IN export CCPP_SUITE=FV3_GFS_v15p2 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_v15p2_c96.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP b/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP index 2dae53db76..ad6bb66faf 100644 --- a/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP +++ b/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP @@ -79,6 +79,5 @@ export DO_RRTMGP=.T. export FV3_RUN=ccpp_gfs_v15_run.IN export CCPP_SUITE=FV3_GFS_v15p2_RRTMGP -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_v15p2_c96_rrtmgp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP_debug b/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP_debug index dcb83b2f8e..ba67d28114 100644 --- a/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP_debug +++ b/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP_debug @@ -79,6 +79,5 @@ export DO_RRTMGP=.T. export FV3_RUN=ccpp_gfs_v15_run.IN export CCPP_SUITE=FV3_GFS_v15p2_RRTMGP -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_v15p2_c96_rrtmgp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v15p2_debug b/tests/tests/fv3_ccpp_gfs_v15p2_debug index b7689af1fc..f5f6b59a2d 100644 --- a/tests/tests/fv3_ccpp_gfs_v15p2_debug +++ b/tests/tests/fv3_ccpp_gfs_v15p2_debug @@ -78,6 +78,5 @@ DT_ATMOS="1200" export FV3_RUN=ccpp_gfs_v15_run.IN export CCPP_SUITE=FV3_GFS_v15p2 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_v15p2_c96.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16beta b/tests/tests/fv3_ccpp_gfs_v16 similarity index 92% rename from tests/tests/fv3_ccpp_gfs_v16beta rename to tests/tests/fv3_ccpp_gfs_v16 index 9848ee8cf2..89550fc9cc 100644 --- a/tests/tests/fv3_ccpp_gfs_v16beta +++ b/tests/tests/fv3_ccpp_gfs_v16 @@ -1,12 +1,12 @@ ############################################################################### # -# FV3 CCPP GFS v16beta compiled with 32-bit dynamics test +# FV3 CCPP GFS v16 compiled with 32-bit dynamics test # ############################################################################### -export TEST_DESCR="Compare FV3 32bit CCPP GFS v16beta results with previous trunk version" +export TEST_DESCR="Compare FV3 32bit CCPP GFS v16 results with previous trunk version" -export CNTL_DIR=fv3_gfs_v16beta +export CNTL_DIR=fv3_gfs_v16 export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ @@ -94,8 +94,7 @@ export RESTART_INTERVAL=24 export NSTF_NAME=2,1,0,0,0 export FV3_RUN=ccpp_gfs_v16_run.IN -export CCPP_SUITE=FV3_GFS_v16beta -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_v16beta_c96.nml.IN +export CCPP_SUITE=FV3_GFS_v16 +export INPUT_NML=ccpp_v16_c96.nml.IN export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gfs_v16beta_RRTMGP b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP similarity index 91% rename from tests/tests/fv3_ccpp_gfs_v16beta_RRTMGP rename to tests/tests/fv3_ccpp_gfs_v16_RRTMGP index 62cb7571eb..574fe3ae0d 100644 --- a/tests/tests/fv3_ccpp_gfs_v16beta_RRTMGP +++ b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP @@ -1,12 +1,12 @@ ############################################################################### # -# FV3 CCPP GFS v16beta w/ RRTMGP test +# FV3 CCPP GFS v16 w/ RRTMGP test # ############################################################################### -export TEST_DESCR="Compare FV3 CCPP GFS v16beta w/ RRTMGP results with previous trunk version" +export TEST_DESCR="Compare FV3 CCPP GFS v16 w/ RRTMGP results with previous trunk version" -export CNTL_DIR=fv3_gfs_v16beta_RRTMGP +export CNTL_DIR=fv3_gfs_v16_RRTMGP export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ @@ -78,7 +78,6 @@ DT_ATMOS="1200" export DO_RRTMGP=.T. export FV3_RUN=ccpp_gfs_v16_run.IN -export CCPP_SUITE=FV3_GFS_v16beta_RRTMGP -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_v16beta_c96_rrtmgp.nml.IN +export CCPP_SUITE=FV3_GFS_v16_RRTMGP +export INPUT_NML=ccpp_v16_c96_rrtmgp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 index 1be7d60ad9..c65e2f5034 100644 --- a/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 +++ b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 @@ -14,24 +14,24 @@ export LIST_FILES="phyf000.tile1.nc \ phyf000.tile4.nc \ phyf000.tile5.nc \ phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ + phyf012.tile1.nc \ + phyf012.tile2.nc \ + phyf012.tile3.nc \ + phyf012.tile4.nc \ + phyf012.tile5.nc \ + phyf012.tile6.nc \ dynf000.tile1.nc \ dynf000.tile2.nc \ dynf000.tile3.nc \ dynf000.tile4.nc \ dynf000.tile5.nc \ dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ + dynf012.tile1.nc \ + dynf012.tile2.nc \ + dynf012.tile3.nc \ + dynf012.tile4.nc \ + dynf012.tile5.nc \ + dynf012.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -80,7 +80,7 @@ export SYEAR=2019 export SMONTH=01 export SDAY=20 export DT_ATMOS=450 -export FHMAX=24 +export FHMAX=12 export WLCLK=30 export WRITE_GROUP=1 export WRTTASK_PER_GROUP=6 @@ -97,7 +97,6 @@ export FNSMCC="'global_soilmgldas.statsgo.t382.768.384.grb'," export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," export FV3_RUN=ccpp_gfs_v16_run_c192L127.IN -export CCPP_SUITE=FV3_GFS_v16beta_RRTMGP -export CCPP_LIB_DIR=ccpp/lib +export CCPP_SUITE=FV3_GFS_v16_RRTMGP export INPUT_NML=ccpp_v16_c192L127_rrtmgp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16beta_RRTMGP_debug b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_debug similarity index 91% rename from tests/tests/fv3_ccpp_gfs_v16beta_RRTMGP_debug rename to tests/tests/fv3_ccpp_gfs_v16_RRTMGP_debug index 53ff31bed7..169f6415ac 100644 --- a/tests/tests/fv3_ccpp_gfs_v16beta_RRTMGP_debug +++ b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_debug @@ -1,12 +1,12 @@ ############################################################################### # -# FV3 CCPP GFS v16beta w/ RRTMGP test in DEBUG mode +# FV3 CCPP GFS v16 w/ RRTMGP test in DEBUG mode # ############################################################################### -export TEST_DESCR="Run FV3 CCPP GFS v16beta w/ RRTMGP in DEBUG mode" +export TEST_DESCR="Run FV3 CCPP GFS v16 w/ RRTMGP in DEBUG mode" -export CNTL_DIR=fv3_gfs_v16beta_RRTMGP_debug +export CNTL_DIR=fv3_gfs_v16_RRTMGP_debug export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ @@ -78,7 +78,6 @@ DT_ATMOS="1200" export DO_RRTMGP=.T. export FV3_RUN=ccpp_gfs_v16_run.IN -export CCPP_SUITE=FV3_GFS_v16beta_RRTMGP -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_v16beta_c96_rrtmgp.nml.IN +export CCPP_SUITE=FV3_GFS_v16_RRTMGP +export INPUT_NML=ccpp_v16_c96_rrtmgp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16beta_debug b/tests/tests/fv3_ccpp_gfs_v16_debug similarity index 91% rename from tests/tests/fv3_ccpp_gfs_v16beta_debug rename to tests/tests/fv3_ccpp_gfs_v16_debug index 2725191975..f27083f806 100644 --- a/tests/tests/fv3_ccpp_gfs_v16beta_debug +++ b/tests/tests/fv3_ccpp_gfs_v16_debug @@ -1,12 +1,12 @@ ############################################################################### # -# FV3 CCPP GFS v16beta compiled with 32-bit dynamics test in DEBUG mode +# FV3 CCPP GFS v16 compiled with 32-bit dynamics test in DEBUG mode # ############################################################################### -export TEST_DESCR="Run FV3 32bit CCPP GFS v16beta in DEBUG mode" +export TEST_DESCR="Run FV3 32bit CCPP GFS v16 in DEBUG mode" -export CNTL_DIR=fv3_gfs_v16beta_debug +export CNTL_DIR=fv3_gfs_v16_debug export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ @@ -79,7 +79,6 @@ DT_ATMOS="1200" export NSTF_NAME=2,1,0,0,0 export FV3_RUN=ccpp_gfs_v16_run.IN -export CCPP_SUITE=FV3_GFS_v16beta -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_v16beta_c96.nml.IN +export CCPP_SUITE=FV3_GFS_v16 +export INPUT_NML=ccpp_v16_c96.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16beta_flake b/tests/tests/fv3_ccpp_gfs_v16_flake similarity index 90% rename from tests/tests/fv3_ccpp_gfs_v16beta_flake rename to tests/tests/fv3_ccpp_gfs_v16_flake index 751b59febf..bd270d5b2c 100644 --- a/tests/tests/fv3_ccpp_gfs_v16beta_flake +++ b/tests/tests/fv3_ccpp_gfs_v16_flake @@ -1,12 +1,12 @@ ############################################################################### # -# FV3 CCPP GFS v16beta compiled with 32-bit dynamics test +# FV3 CCPP GFS v16 compiled with 32-bit dynamics test # ############################################################################### -export TEST_DESCR="Compare FV3 32bit CCPP GFS v16beta flake results with previous trunk version" +export TEST_DESCR="Compare FV3 32bit CCPP GFS v16 flake results with previous trunk version" -export CNTL_DIR=fv3_gfs_v16beta_flake +export CNTL_DIR=fv3_gfs_v16_flake export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ @@ -77,7 +77,6 @@ export_fv3 DT_ATMOS="1200" export FV3_RUN=ccpp_gfs_v16_flake_run.IN -export CCPP_SUITE=FV3_GFS_v16beta_flake -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_v16beta_flake_c96.nml.IN +export CCPP_SUITE=FV3_GFS_v16_flake +export INPUT_NML=ccpp_v16_flake_c96.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16beta_restart b/tests/tests/fv3_ccpp_gfs_v16_restart similarity index 89% rename from tests/tests/fv3_ccpp_gfs_v16beta_restart rename to tests/tests/fv3_ccpp_gfs_v16_restart index 27dc932835..c95489ea5e 100644 --- a/tests/tests/fv3_ccpp_gfs_v16beta_restart +++ b/tests/tests/fv3_ccpp_gfs_v16_restart @@ -1,12 +1,12 @@ ############################################################################### # -# FV3 CCPP GFS v16beta compiled with 32-bit dynamics test +# FV3 CCPP GFS v16 compiled with 32-bit dynamics test # ############################################################################### -export TEST_DESCR="Compare FV3 32bit CCPP GFS v16beta results with previous trunk version" +export TEST_DESCR="Compare FV3 32bit CCPP GFS v16 results with previous trunk version" -export CNTL_DIR=fv3_gfs_v16beta +export CNTL_DIR=fv3_gfs_v16 export LIST_FILES="phyf048.tile1.nc \ phyf048.tile2.nc \ @@ -69,7 +69,6 @@ export MOUNTAIN=.T. export NSTF_NAME=2,0,0,0,0 export FV3_RUN=ccpp_gfs_v16_run.IN -export CCPP_SUITE=FV3_GFS_v16beta -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_v16beta_c96.nml.IN +export CCPP_SUITE=FV3_GFS_v16 +export INPUT_NML=ccpp_v16_c96.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16beta_stochy b/tests/tests/fv3_ccpp_gfs_v16_stochy similarity index 90% rename from tests/tests/fv3_ccpp_gfs_v16beta_stochy rename to tests/tests/fv3_ccpp_gfs_v16_stochy index 3c1657f630..007c1f02fe 100644 --- a/tests/tests/fv3_ccpp_gfs_v16beta_stochy +++ b/tests/tests/fv3_ccpp_gfs_v16_stochy @@ -1,12 +1,12 @@ ############################################################################### # -# FV3 CCPP GFS v16beta stochastic test, compiled with 32-bit dynamics +# FV3 CCPP GFS v16 stochastic test, compiled with 32-bit dynamics # ############################################################################### -export TEST_DESCR="Compare FV3 32bit CCPP GFS v16beta stochastic results with previous trunk version" +export TEST_DESCR="Compare FV3 32bit CCPP GFS v16 stochastic results with previous trunk version" -export CNTL_DIR=fv3_gfs_v16beta_stochy +export CNTL_DIR=fv3_gfs_v16_stochy export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ @@ -87,7 +87,6 @@ export SHUM=0.003 export SPPT=0.2 export FV3_RUN=ccpp_gfs_v16_run.IN -export CCPP_SUITE=FV3_GFS_v16beta -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_v16beta_c96.nml.IN +export CCPP_SUITE=FV3_GFS_v16 +export INPUT_NML=ccpp_v16_c96.nml.IN diff --git a/tests/tests/fv3_ccpp_gfsv16_csawmg b/tests/tests/fv3_ccpp_gfsv16_csawmg index 0069adba7d..58c49ff18e 100644 --- a/tests/tests/fv3_ccpp_gfsv16_csawmg +++ b/tests/tests/fv3_ccpp_gfsv16_csawmg @@ -64,6 +64,5 @@ export WRITE_FSYNCFLAG=.true. export IAER=1111 export CCPP_SUITE=FV3_GFS_v16_csawmg -export CCPP_LIB_DIR=ccpp/lib diff --git a/tests/tests/fv3_ccpp_gfsv16_csawmgt b/tests/tests/fv3_ccpp_gfsv16_csawmgt index 1532752ebb..60c86f3271 100644 --- a/tests/tests/fv3_ccpp_gfsv16_csawmgt +++ b/tests/tests/fv3_ccpp_gfsv16_csawmgt @@ -64,6 +64,5 @@ export WRITE_FSYNCFLAG=.true. export IAER=111 export CCPP_SUITE=FV3_GFS_v16_csawmg -export CCPP_LIB_DIR=ccpp/lib diff --git a/tests/tests/fv3_ccpp_gocart_clm b/tests/tests/fv3_ccpp_gocart_clm index 85a88e8ffa..3c27595ec7 100644 --- a/tests/tests/fv3_ccpp_gocart_clm +++ b/tests/tests/fv3_ccpp_gocart_clm @@ -65,7 +65,6 @@ export SATMEDMF=.false. export FV3_RUN=ccpp_gocart.IN export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp.gocart.nml.IN # Increase the number of nodes on Cheyenne to avoid out of memory errors diff --git a/tests/tests/fv3_ccpp_gsd b/tests/tests/fv3_ccpp_gsd index 077446b405..b1e1a7bb5d 100644 --- a/tests/tests/fv3_ccpp_gsd +++ b/tests/tests/fv3_ccpp_gsd @@ -109,7 +109,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_RRTMGP b/tests/tests/fv3_ccpp_gsd_RRTMGP index 3d313d3bab..2fb8236872 100644 --- a/tests/tests/fv3_ccpp_gsd_RRTMGP +++ b/tests/tests/fv3_ccpp_gsd_RRTMGP @@ -109,7 +109,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_RRTMGP_run.IN export CCPP_SUITE=FV3_GSD_v0_RRTMGP -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd_RRTMGP.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_RRTMGP_debug b/tests/tests/fv3_ccpp_gsd_RRTMGP_debug index 0238caf28e..00d6519138 100644 --- a/tests/tests/fv3_ccpp_gsd_RRTMGP_debug +++ b/tests/tests/fv3_ccpp_gsd_RRTMGP_debug @@ -85,7 +85,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_RRTMGP_run.IN export CCPP_SUITE=FV3_GSD_v0_RRTMGP -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd_RRTMGP.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_coldstart b/tests/tests/fv3_ccpp_gsd_coldstart index d1343f0b9b..df3293e5c7 100644 --- a/tests/tests/fv3_ccpp_gsd_coldstart +++ b/tests/tests/fv3_ccpp_gsd_coldstart @@ -47,7 +47,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_debug b/tests/tests/fv3_ccpp_gsd_debug index e665bbf9e3..ae0c15445b 100644 --- a/tests/tests/fv3_ccpp_gsd_debug +++ b/tests/tests/fv3_ccpp_gsd_debug @@ -85,7 +85,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_diag3d_debug b/tests/tests/fv3_ccpp_gsd_diag3d_debug index cade76ed3e..c9797035f7 100644 --- a/tests/tests/fv3_ccpp_gsd_diag3d_debug +++ b/tests/tests/fv3_ccpp_gsd_diag3d_debug @@ -89,7 +89,6 @@ export MAX_OUTPUT_FIELDS=400 export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_drag_suite b/tests/tests/fv3_ccpp_gsd_drag_suite index e7f7cdfc0a..b10aeee7c2 100644 --- a/tests/tests/fv3_ccpp_gsd_drag_suite +++ b/tests/tests/fv3_ccpp_gsd_drag_suite @@ -85,7 +85,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0_drag_suite -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp b/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp index 022cd47b69..b598f56bc6 100644 --- a/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp +++ b/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp @@ -85,7 +85,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0_unified_ugwp_suite -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_lndp b/tests/tests/fv3_ccpp_gsd_lndp index ab71cc1fb5..51f18f714e 100644 --- a/tests/tests/fv3_ccpp_gsd_lndp +++ b/tests/tests/fv3_ccpp_gsd_lndp @@ -82,7 +82,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_mynnsfc b/tests/tests/fv3_ccpp_gsd_mynnsfc index fae4d8512b..e9bccdd285 100644 --- a/tests/tests/fv3_ccpp_gsd_mynnsfc +++ b/tests/tests/fv3_ccpp_gsd_mynnsfc @@ -110,7 +110,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0_mynnsfc -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_mynnsfc_debug b/tests/tests/fv3_ccpp_gsd_mynnsfc_debug index 21d9901715..f1967d6f46 100644 --- a/tests/tests/fv3_ccpp_gsd_mynnsfc_debug +++ b/tests/tests/fv3_ccpp_gsd_mynnsfc_debug @@ -86,7 +86,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0_mynnsfc -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_noah b/tests/tests/fv3_ccpp_gsd_noah index ff9dce91e7..59ca150b7e 100644 --- a/tests/tests/fv3_ccpp_gsd_noah +++ b/tests/tests/fv3_ccpp_gsd_noah @@ -109,7 +109,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_noah -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_noah_lndp b/tests/tests/fv3_ccpp_gsd_noah_lndp index 777c159993..41355f5a64 100644 --- a/tests/tests/fv3_ccpp_gsd_noah_lndp +++ b/tests/tests/fv3_ccpp_gsd_noah_lndp @@ -82,7 +82,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_noah -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc b/tests/tests/fv3_ccpp_gsd_noah_mynnsfc index 513ada1dc9..6cfa7b4e1f 100644 --- a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc +++ b/tests/tests/fv3_ccpp_gsd_noah_mynnsfc @@ -110,7 +110,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_noah_mynnsfc -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug b/tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug index 9aa27721d0..6ea180f71c 100644 --- a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug +++ b/tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug @@ -86,7 +86,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_noah_mynnsfc -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_sar b/tests/tests/fv3_ccpp_gsd_sar index 50118054cd..a5b06e5e7c 100644 --- a/tests/tests/fv3_ccpp_gsd_sar +++ b/tests/tests/fv3_ccpp_gsd_sar @@ -29,7 +29,6 @@ export TASKS=24 export MODEL_CONFIGURE=ccpp_gsd_sar-model_configure.IN export FV3_RUN=ccpp_gsd_sar_run.IN export CCPP_SUITE=FV3_GSD_SAR -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd_sar.nml.IN export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_sar_debug b/tests/tests/fv3_ccpp_gsd_sar_debug index 5c42084042..673f76627b 100644 --- a/tests/tests/fv3_ccpp_gsd_sar_debug +++ b/tests/tests/fv3_ccpp_gsd_sar_debug @@ -29,7 +29,6 @@ export TASKS=24 export MODEL_CONFIGURE=ccpp_gsd_sar-model_configure.IN export FV3_RUN=ccpp_gsd_sar_run.IN export CCPP_SUITE=FV3_GSD_SAR -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd_sar.nml.IN export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_unified_ugwp b/tests/tests/fv3_ccpp_gsd_unified_ugwp index 1425c0c4aa..abc40f8a08 100644 --- a/tests/tests/fv3_ccpp_gsd_unified_ugwp +++ b/tests/tests/fv3_ccpp_gsd_unified_ugwp @@ -109,7 +109,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0_unified_ugwp_suite -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_warmstart b/tests/tests/fv3_ccpp_gsd_warmstart index 0d9d28950d..f00337997d 100644 --- a/tests/tests/fv3_ccpp_gsd_warmstart +++ b/tests/tests/fv3_ccpp_gsd_warmstart @@ -87,7 +87,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_h2ophys b/tests/tests/fv3_ccpp_h2ophys index a5fa8c0c61..3ff22e78f6 100644 --- a/tests/tests/fv3_ccpp_h2ophys +++ b/tests/tests/fv3_ccpp_h2ophys @@ -76,7 +76,6 @@ export_fv3 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017_h2ophys -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN export H2O_PHYS=.T. diff --git a/tests/tests/fv3_ccpp_hrrr b/tests/tests/fv3_ccpp_hrrr index 70c67c1afc..27e19500f5 100644 --- a/tests/tests/fv3_ccpp_hrrr +++ b/tests/tests/fv3_ccpp_hrrr @@ -85,7 +85,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_HRRR -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_iau b/tests/tests/fv3_ccpp_iau index 46d4d63e85..bbcc387dc0 100644 --- a/tests/tests/fv3_ccpp_iau +++ b/tests/tests/fv3_ccpp_iau @@ -88,6 +88,5 @@ export IAU_DRYMASSFIXER=.true. export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_lheatstrg b/tests/tests/fv3_ccpp_lheatstrg index 3b4e217ffd..6d40d3c63e 100644 --- a/tests/tests/fv3_ccpp_lheatstrg +++ b/tests/tests/fv3_ccpp_lheatstrg @@ -56,7 +56,6 @@ export_fv3 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN export LHEATSTRG=.T. diff --git a/tests/tests/fv3_ccpp_lndp b/tests/tests/fv3_ccpp_lndp index fa06bff90e..9ea3dc2847 100644 --- a/tests/tests/fv3_ccpp_lndp +++ b/tests/tests/fv3_ccpp_lndp @@ -77,7 +77,6 @@ export NODES=$(expr $TASKS / $TPN + 1) export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_lndp.nml.IN export LNDP_TYPE=2 diff --git a/tests/tests/fv3_ccpp_multigases b/tests/tests/fv3_ccpp_multigases index 26ebceffa7..8b2e579305 100644 --- a/tests/tests/fv3_ccpp_multigases +++ b/tests/tests/fv3_ccpp_multigases @@ -92,4 +92,3 @@ export NSTF_NAME=0,0,1,0,5 export INPUT_NML=ccpp_multi_gases.nml.IN export FV3_RUN=ccpp_multigases_run.IN export CCPP_SUITE=FV3_GFS_2017_fv3wam -export CCPP_LIB_DIR=ccpp/lib diff --git a/tests/tests/fv3_ccpp_mynn b/tests/tests/fv3_ccpp_mynn index 25d7243d7b..16a48c1714 100644 --- a/tests/tests/fv3_ccpp_mynn +++ b/tests/tests/fv3_ccpp_mynn @@ -80,7 +80,6 @@ export DO_SAT_ADJ=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GFS_v15_mynn -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_ntiedtke b/tests/tests/fv3_ccpp_ntiedtke index a4cf323740..6bae221a55 100644 --- a/tests/tests/fv3_ccpp_ntiedtke +++ b/tests/tests/fv3_ccpp_ntiedtke @@ -78,7 +78,6 @@ DT_ATMOS="600" export FV3_RUN=ccpp_gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_ntiedtke -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN diff --git a/tests/tests/fv3_ccpp_ozphys_2015 b/tests/tests/fv3_ccpp_ozphys_2015 index 9b17b13f56..95fe9918b9 100644 --- a/tests/tests/fv3_ccpp_ozphys_2015 +++ b/tests/tests/fv3_ccpp_ozphys_2015 @@ -76,7 +76,6 @@ export_fv3 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017_ozphys_2015 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN export OZ_PHYS_OLD=.F. diff --git a/tests/tests/fv3_ccpp_rap b/tests/tests/fv3_ccpp_rap index d3b2ab7df5..32df243fa0 100644 --- a/tests/tests/fv3_ccpp_rap +++ b/tests/tests/fv3_ccpp_rap @@ -85,7 +85,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_RAP -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_read_inc b/tests/tests/fv3_ccpp_read_inc index 85eae43bb9..d49e8ddb81 100644 --- a/tests/tests/fv3_ccpp_read_inc +++ b/tests/tests/fv3_ccpp_read_inc @@ -87,6 +87,5 @@ export NSTF_NAME=2,0,1,0,5 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_regional_c768 b/tests/tests/fv3_ccpp_regional_c768 index 16f1e0689e..6571c76bc6 100644 --- a/tests/tests/fv3_ccpp_regional_c768 +++ b/tests/tests/fv3_ccpp_regional_c768 @@ -25,7 +25,6 @@ export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional_c768 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_regional_c768.nml.IN export MODEL_CONFIGURE=regional_c768-model_configure.IN export FV3_RUN=ccpp_regional_c786_run.IN diff --git a/tests/tests/fv3_ccpp_regional_control b/tests/tests/fv3_ccpp_regional_control index cf26234ea0..4325f8a065 100644 --- a/tests/tests/fv3_ccpp_regional_control +++ b/tests/tests/fv3_ccpp_regional_control @@ -26,7 +26,6 @@ export H2O_PHYS=.T. export HYBEDMF=.F. export CCPP_SUITE=FV3_GFS_v15_thompson_mynn -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_regional.nml.IN export FDIAG=3 diff --git a/tests/tests/fv3_ccpp_regional_quilt b/tests/tests/fv3_ccpp_regional_quilt index ed3dba082a..43b6eae94a 100644 --- a/tests/tests/fv3_ccpp_regional_quilt +++ b/tests/tests/fv3_ccpp_regional_quilt @@ -26,7 +26,6 @@ export H2O_PHYS=.T. export HYBEDMF=.F. export CCPP_SUITE=FV3_GFS_v15_thompson_mynn -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_regional.nml.IN export FDIAG=3 diff --git a/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel b/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel index be5a94fd79..c1659a9681 100644 --- a/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel +++ b/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel @@ -26,7 +26,6 @@ export H2O_PHYS=.T. export HYBEDMF=.F. export CCPP_SUITE=FV3_GFS_v15_thompson_mynn -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_regional.nml.IN export FDIAG=3 diff --git a/tests/tests/fv3_ccpp_regional_restart b/tests/tests/fv3_ccpp_regional_restart index 252f2d5493..db2fde1a4e 100644 --- a/tests/tests/fv3_ccpp_regional_restart +++ b/tests/tests/fv3_ccpp_regional_restart @@ -25,7 +25,6 @@ export H2O_PHYS=.T. export HYBEDMF=.F. export CCPP_SUITE=FV3_GFS_v15_thompson_mynn -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_regional.nml.IN export FDIAG=3 diff --git a/tests/tests/fv3_ccpp_restart b/tests/tests/fv3_ccpp_restart index 1f7c8b3905..5a04227a59 100644 --- a/tests/tests/fv3_ccpp_restart +++ b/tests/tests/fv3_ccpp_restart @@ -69,6 +69,5 @@ export NSTF_NAME=2,0,1,0,5 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_rrfs_v1beta b/tests/tests/fv3_ccpp_rrfs_v1beta index 793a4db849..61f83dd207 100644 --- a/tests/tests/fv3_ccpp_rrfs_v1beta +++ b/tests/tests/fv3_ccpp_rrfs_v1beta @@ -85,7 +85,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_RRFS_v1beta -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_rrfs_v1beta_debug b/tests/tests/fv3_ccpp_rrfs_v1beta_debug index 04db6bef3d..8c7475ef38 100644 --- a/tests/tests/fv3_ccpp_rrfs_v1beta_debug +++ b/tests/tests/fv3_ccpp_rrfs_v1beta_debug @@ -85,7 +85,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_RRFS_v1beta -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_sas b/tests/tests/fv3_ccpp_sas index 8ed7a46651..ab1bfd25aa 100644 --- a/tests/tests/fv3_ccpp_sas +++ b/tests/tests/fv3_ccpp_sas @@ -64,6 +64,5 @@ export WRITE_FSYNCFLAG=.true. export FV3_RUN=ccpp_gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_sas -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN diff --git a/tests/tests/fv3_ccpp_satmedmf b/tests/tests/fv3_ccpp_satmedmf index 956331ff6e..514e1a62c6 100644 --- a/tests/tests/fv3_ccpp_satmedmf +++ b/tests/tests/fv3_ccpp_satmedmf @@ -64,6 +64,5 @@ export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. export FV3_RUN=ccpp_satmedmf_run.IN export CCPP_SUITE=FV3_GFS_2017_satmedmf -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_satmedmfq b/tests/tests/fv3_ccpp_satmedmfq index 18c70c48f9..b4c4aa8d7b 100644 --- a/tests/tests/fv3_ccpp_satmedmfq +++ b/tests/tests/fv3_ccpp_satmedmfq @@ -65,6 +65,5 @@ export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. export FV3_RUN=ccpp_satmedmf_run.IN export CCPP_SUITE=FV3_GFS_2017_satmedmfq -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_shinhong b/tests/tests/fv3_ccpp_shinhong index 70a98a1988..77c65967a2 100644 --- a/tests/tests/fv3_ccpp_shinhong +++ b/tests/tests/fv3_ccpp_shinhong @@ -78,7 +78,6 @@ DT_ATMOS="1200" export FV3_RUN=ccpp_gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_shinhong -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN diff --git a/tests/tests/fv3_ccpp_stochy b/tests/tests/fv3_ccpp_stochy index e889d1dbf4..6ac9305c72 100644 --- a/tests/tests/fv3_ccpp_stochy +++ b/tests/tests/fv3_ccpp_stochy @@ -85,6 +85,5 @@ export FHMAX=12 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_stretched b/tests/tests/fv3_ccpp_stretched index 41745fd584..3bcca69498 100644 --- a/tests/tests/fv3_ccpp_stretched +++ b/tests/tests/fv3_ccpp_stretched @@ -88,5 +88,4 @@ export INPUT_NML=ccpp_stretched-input.nml.IN export FV3_RUN=ccpp_stretched_run.IN export CCPP_SUITE=FV3_GFS_2017_stretched -export CCPP_LIB_DIR=ccpp/lib diff --git a/tests/tests/fv3_ccpp_stretched_nest b/tests/tests/fv3_ccpp_stretched_nest index dc597842d7..378f384794 100644 --- a/tests/tests/fv3_ccpp_stretched_nest +++ b/tests/tests/fv3_ccpp_stretched_nest @@ -104,7 +104,6 @@ export INPUT_NEST02_NML=ccpp_input_nest02.nml.IN export FV3_RUN=ccpp_stretched_run.IN export CCPP_SUITE=FV3_GFS_2017_stretched -export CCPP_LIB_DIR=ccpp/lib if [[ $MACHINE_ID = *.gnu ]]; then export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_stretched_nest_debug b/tests/tests/fv3_ccpp_stretched_nest_debug index f23abe1623..ff207a968e 100644 --- a/tests/tests/fv3_ccpp_stretched_nest_debug +++ b/tests/tests/fv3_ccpp_stretched_nest_debug @@ -60,4 +60,3 @@ export INPUT_NEST02_NML=ccpp_input_nest02.nml.IN export FV3_RUN=ccpp_stretched_run.IN export CCPP_SUITE=FV3_GFS_2017_stretched -export CCPP_LIB_DIR=ccpp/lib diff --git a/tests/tests/fv3_ccpp_stretched_nest_quilt b/tests/tests/fv3_ccpp_stretched_nest_quilt index d5fa598f7c..8a9f8f6081 100644 --- a/tests/tests/fv3_ccpp_stretched_nest_quilt +++ b/tests/tests/fv3_ccpp_stretched_nest_quilt @@ -102,5 +102,4 @@ export MODEL_CONFIGURE=stretched-nest-quilt-model_configure.IN export FV3_RUN=ccpp_stretched_run.IN export CCPP_SUITE=FV3_GFS_2017_stretched -export CCPP_LIB_DIR=ccpp/lib diff --git a/tests/tests/fv3_ccpp_thompson b/tests/tests/fv3_ccpp_thompson index 8bbdde00fe..6c3de6871b 100644 --- a/tests/tests/fv3_ccpp_thompson +++ b/tests/tests/fv3_ccpp_thompson @@ -82,7 +82,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GFS_v15_thompson -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.T. diff --git a/tests/tests/fv3_ccpp_thompson_debug b/tests/tests/fv3_ccpp_thompson_debug index bbee9d6d58..52e5b7d350 100644 --- a/tests/tests/fv3_ccpp_thompson_debug +++ b/tests/tests/fv3_ccpp_thompson_debug @@ -85,7 +85,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GFS_v15_thompson -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.T. diff --git a/tests/tests/fv3_ccpp_thompson_mynn b/tests/tests/fv3_ccpp_thompson_mynn index 665fbb31ea..18f643eed1 100644 --- a/tests/tests/fv3_ccpp_thompson_mynn +++ b/tests/tests/fv3_ccpp_thompson_mynn @@ -82,7 +82,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GFS_v15_thompson_mynn -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_thompson_no_aero b/tests/tests/fv3_ccpp_thompson_no_aero index d177706e55..85b3ec6e65 100644 --- a/tests/tests/fv3_ccpp_thompson_no_aero +++ b/tests/tests/fv3_ccpp_thompson_no_aero @@ -83,7 +83,6 @@ export LTAEROSOL=.F. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GFS_v15_thompson -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.T. diff --git a/tests/tests/fv3_ccpp_thompson_no_aero_debug b/tests/tests/fv3_ccpp_thompson_no_aero_debug index 6a2cb30eb3..f88b24fb05 100644 --- a/tests/tests/fv3_ccpp_thompson_no_aero_debug +++ b/tests/tests/fv3_ccpp_thompson_no_aero_debug @@ -86,7 +86,6 @@ export LTAEROSOL=.F. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GFS_v15_thompson -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.T. diff --git a/tests/tests/fv3_ccpp_wrtGauss_nemsio b/tests/tests/fv3_ccpp_wrtGauss_nemsio index f2abae72c2..e25c6e8342 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_nemsio +++ b/tests/tests/fv3_ccpp_wrtGauss_nemsio @@ -61,6 +61,5 @@ export WRITE_FSYNCFLAG=.true. export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGauss_nemsio_c192 b/tests/tests/fv3_ccpp_wrtGauss_nemsio_c192 index a711c51fcd..91ee4a51da 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_nemsio_c192 +++ b/tests/tests/fv3_ccpp_wrtGauss_nemsio_c192 @@ -82,6 +82,5 @@ export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGauss_nemsio_c768 b/tests/tests/fv3_ccpp_wrtGauss_nemsio_c768 index 8745937c65..756bb1639b 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_nemsio_c768 +++ b/tests/tests/fv3_ccpp_wrtGauss_nemsio_c768 @@ -104,6 +104,5 @@ export NEMS_CONFIGURE="nems.configure.blocked_atm_wav.IN" export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGauss_netcdf b/tests/tests/fv3_ccpp_wrtGauss_netcdf index 599c4147cf..aee1d8c0d6 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_netcdf +++ b/tests/tests/fv3_ccpp_wrtGauss_netcdf @@ -59,6 +59,5 @@ export OUTPUT_FILE="'netcdf'" export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGauss_netcdf_esmf b/tests/tests/fv3_ccpp_wrtGauss_netcdf_esmf index 5f94f1c878..fb3f5ef002 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_netcdf_esmf +++ b/tests/tests/fv3_ccpp_wrtGauss_netcdf_esmf @@ -59,6 +59,5 @@ export OUTPUT_FILE="'netcdf_esmf'" export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel b/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel index 83353fa45d..4653734353 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel +++ b/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel @@ -62,5 +62,4 @@ export NBITS=14 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGlatlon_netcdf b/tests/tests/fv3_ccpp_wrtGlatlon_netcdf index cdb6f6314c..14e7f1778a 100644 --- a/tests/tests/fv3_ccpp_wrtGlatlon_netcdf +++ b/tests/tests/fv3_ccpp_wrtGlatlon_netcdf @@ -59,6 +59,5 @@ export OUTPUT_FILE="'netcdf'" export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_ysu b/tests/tests/fv3_ccpp_ysu index 734e687a87..6292f8e5d9 100644 --- a/tests/tests/fv3_ccpp_ysu +++ b/tests/tests/fv3_ccpp_ysu @@ -78,7 +78,6 @@ DT_ATMOS="600" export FV3_RUN=ccpp_gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_ysu -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN diff --git a/tests/utest.bld b/tests/utest.bld index 94f05cbad3..755c599e48 100644 --- a/tests/utest.bld +++ b/tests/utest.bld @@ -18,5 +18,5 @@ fv3_ccpp_satmedmf | CCPP=Y SUITES=FV3_GFS_2017_satmedmf fv3_ccpp_satmedmfq | CCPP=Y SUITES=FV3_GFS_2017_satmedmfq fv3_ccpp_gfsv16_csawmg | CCPP=Y SUITES=FV3_GFS_v16_csawmg fv3_ccpp_gfsv16_csawmgt | CCPP=Y SUITES=FV3_GFS_v16_csawmg -fv3_ccpp_gocart_clm | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16beta_flake -fv3_ccpp_gfs_v16beta_flake | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16beta_flake +fv3_ccpp_gocart_clm | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +fv3_ccpp_gfs_v16_flake | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake From 13053c1aa0e296cab00cf7ba2a802be211f57136 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Thu, 4 Feb 2021 07:21:03 -0500 Subject: [PATCH 065/109] Update CMEPS for HAFS integration; add datm and coupled-model tests on Gaea (#401) * Add HAFS support in NOAA-EMC/CMEPS * Add coupled and datm tests for Gaea.intel Co-authored-by: Jun Wang Co-authored-by: Bin Li --- CMEPS-interface/CMEPS | 2 +- CMEPS-interface/CMakeLists.txt | 22 +- modulefiles/orion.intel/fv3 | 1 + modulefiles/orion.intel/fv3_debug | 1 + tests/RegressionTests_cheyenne.gnu.log | 50 +- tests/RegressionTests_cheyenne.intel.log | 204 ++-- tests/RegressionTests_gaea.intel.log | 1410 ++++++++++++++++++++-- tests/RegressionTests_hera.gnu.log | 94 +- tests/RegressionTests_hera.intel.log | 214 ++-- tests/RegressionTests_jet.intel.log | 130 +- tests/RegressionTests_orion.intel.log | 216 ++-- tests/RegressionTests_wcoss_cray.log | 136 +-- tests/RegressionTests_wcoss_dell_p3.log | 214 ++-- tests/default_vars.sh | 36 + tests/rt.conf | 69 +- 15 files changed, 2053 insertions(+), 746 deletions(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 850d2ea278..0658dde477 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 850d2ea2783cb19789052ab71f30e5366f9b102c +Subproject commit 0658dde477b92348bc8608a8c1d20485843bf4a4 diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index aa4fccdc29..ae4e71627c 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -16,17 +16,17 @@ else() endif() list(APPEND _nems_util_files - CMEPS/nems/util/shr_abort_mod.F90 - CMEPS/nems/util/shr_log_mod.F90 - CMEPS/nems/util/shr_pio_mod.F90 - CMEPS/nems/util/shr_sys_mod.F90 - CMEPS/nems/util/shr_flux_mod.F90 - CMEPS/nems/util/shr_mpi_mod.F90 - CMEPS/nems/util/glc_elevclass_mod.F90 - CMEPS/nems/util/shr_mem_mod.F90 - CMEPS/nems/util/shr_kind_mod.F90 - CMEPS/nems/util/perf_mod.F90 - CMEPS/nems/util/shr_const_mod.F90) + CMEPS/util/shr_abort_mod.F90 + CMEPS/util/shr_log_mod.F90 + CMEPS/util/shr_pio_mod.F90 + CMEPS/util/shr_sys_mod.F90 + CMEPS/util/shr_flux_mod.F90 + CMEPS/util/shr_mpi_mod.F90 + CMEPS/util/glc_elevclass_mod.F90 + CMEPS/util/shr_mem_mod.F90 + CMEPS/util/shr_kind_mod.F90 + CMEPS/util/perf_mod.F90 + CMEPS/util/shr_const_mod.F90) list(APPEND _mediator_files CMEPS/mediator/med_phases_restart_mod.F90 diff --git a/modulefiles/orion.intel/fv3 b/modulefiles/orion.intel/fv3 index f85894efcf..017eaabe18 100644 --- a/modulefiles/orion.intel/fv3 +++ b/modulefiles/orion.intel/fv3 @@ -13,6 +13,7 @@ setenv CMAKE_C_COMPILER mpiicc setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform orion.intel +module load python/3.7.5 module use /apps/contrib/NCEP/libs/hpc-stack/modulefiles/stack diff --git a/modulefiles/orion.intel/fv3_debug b/modulefiles/orion.intel/fv3_debug index fb04a8688e..95d2d15719 100644 --- a/modulefiles/orion.intel/fv3_debug +++ b/modulefiles/orion.intel/fv3_debug @@ -13,6 +13,7 @@ setenv CMAKE_C_COMPILER mpiicc setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform orion.intel +module load python/3.7.5 module use /apps/contrib/NCEP/libs/hpc-stack/modulefiles/stack diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 1a0c160bb9..3f5f09f550 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Thu Jan 28 17:09:14 MST 2021 +Wed Feb 3 07:58:47 MST 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/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-20210128/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/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-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v16_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -199,7 +199,7 @@ Test 003 fv3_ccpp_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v16_restart_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -249,7 +249,7 @@ Test 004 fv3_ccpp_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v16_stochy_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -317,7 +317,7 @@ Test 005 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v16_flake_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,7 +385,7 @@ Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/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-20210128/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -521,7 +521,7 @@ Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gsd_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/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-20210128/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/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-20210128/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/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-20210128/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/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-20210128/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/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-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/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-20210128/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/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-20210128/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/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-20210128/GNU/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v16_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v16_debug_prod Checking test 017 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1069,7 +1069,7 @@ Test 017 fv3_ccpp_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/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-20210128/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 019 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1205,7 +1205,7 @@ Test 019 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_multigases_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/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-20210128/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/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-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_49955/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_19651/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 -Thu Jan 28 17:27:16 MST 2021 -Elapsed time: 00h:18m:02s. Have a nice day! +Wed Feb 3 08:16:48 MST 2021 +Elapsed time: 00h:18m:01s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 71362402d3..afa01144a3 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Thu Jan 28 19:44:18 MST 2021 +Wed Feb 3 07:58:09 MST 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_control_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_decomp_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_2threads_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_restart_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -430,8 +430,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 .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_stochy_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_ca_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_lndp_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_iau_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_multigases_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -1075,7 +1075,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_stretched_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,7 +1131,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -1198,7 +1198,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,7 +1209,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,7 +1218,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,7 +1229,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -1240,7 +1240,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1270,7 +1270,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_stretched_nest_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -1290,7 +1290,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,7 +1338,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -1386,7 +1386,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -1434,7 +1434,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,7 +1482,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,7 +1530,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,7 +1578,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -1626,7 +1626,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -1678,7 +1678,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_cpt_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,7 +1732,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gsd_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1824,7 +1824,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_rap_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1892,7 +1892,7 @@ Test 037 fv3_ccpp_rap PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_hrrr_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1960,7 +1960,7 @@ Test 038 fv3_ccpp_hrrr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2028,7 +2028,7 @@ Test 039 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -2096,7 +2096,7 @@ Test 040 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -2164,7 +2164,7 @@ Test 041 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v16_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v16_prod Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2244,7 +2244,7 @@ Test 042 fv3_ccpp_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v16_restart_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v16_restart_prod Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2294,7 +2294,7 @@ Test 043 fv3_ccpp_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v16_stochy_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v16_stochy_prod Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2362,7 +2362,7 @@ Test 044 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2430,7 +2430,7 @@ Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2492,7 +2492,7 @@ Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gocart_clm_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -2540,7 +2540,7 @@ Test 047 fv3_ccpp_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v16_flake_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v16_flake_prod Checking test 048 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2608,7 +2608,7 @@ Test 048 fv3_ccpp_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -2676,7 +2676,7 @@ Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -2694,7 +2694,7 @@ Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -2762,7 +2762,7 @@ Test 051 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v16_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v16_debug_prod Checking test 052 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2830,7 +2830,7 @@ Test 052 fv3_ccpp_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -2898,7 +2898,7 @@ Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2966,7 +2966,7 @@ Test 054 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -3034,7 +3034,7 @@ Test 055 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -3102,7 +3102,7 @@ Test 056 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -3170,7 +3170,7 @@ Test 057 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -3238,7 +3238,7 @@ Test 058 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -3306,7 +3306,7 @@ Test 059 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -3374,7 +3374,7 @@ Test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -3392,7 +3392,7 @@ Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_control_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_control_prod Checking test 062 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3445,7 +3445,7 @@ Test 062 cpld_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restart_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restart_prod Checking test 063 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3498,7 +3498,7 @@ Test 063 cpld_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_controlfrac_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_controlfrac_prod Checking test 064 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3551,7 +3551,7 @@ Test 064 cpld_controlfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restartfrac_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restartfrac_prod Checking test 065 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3604,7 +3604,7 @@ Test 065 cpld_restartfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_2threads_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_2threads_prod Checking test 066 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3657,7 +3657,7 @@ Test 066 cpld_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_decomp_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_decomp_prod Checking test 067 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3710,7 +3710,7 @@ Test 067 cpld_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_satmedmf_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_satmedmf_prod Checking test 068 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3763,7 +3763,7 @@ Test 068 cpld_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_ca_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_ca_prod Checking test 069 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3816,7 +3816,7 @@ Test 069 cpld_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_control_c192_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_control_c192_prod Checking test 070 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3869,7 +3869,7 @@ Test 070 cpld_control_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restart_c192_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restart_c192_prod Checking test 071 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3922,7 +3922,7 @@ Test 071 cpld_restart_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_controlfrac_c192_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_controlfrac_c192_prod Checking test 072 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3975,7 +3975,7 @@ Test 072 cpld_controlfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restartfrac_c192_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restartfrac_c192_prod Checking test 073 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4028,7 +4028,7 @@ Test 073 cpld_restartfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_control_c384_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_control_c384_prod Checking test 074 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4084,7 +4084,7 @@ Test 074 cpld_control_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restart_c384_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restart_c384_prod Checking test 075 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4140,7 +4140,7 @@ Test 075 cpld_restart_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_controlfrac_c384_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_controlfrac_c384_prod Checking test 076 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4196,7 +4196,7 @@ Test 076 cpld_controlfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restartfrac_c384_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restartfrac_c384_prod Checking test 077 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4252,7 +4252,7 @@ Test 077 cpld_restartfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_bmark_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_bmark_prod Checking test 078 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4308,7 +4308,7 @@ Test 078 cpld_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restart_bmark_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restart_bmark_prod Checking test 079 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4364,7 +4364,7 @@ Test 079 cpld_restart_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_bmarkfrac_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_bmarkfrac_prod Checking test 080 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4420,7 +4420,7 @@ Test 080 cpld_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restart_bmarkfrac_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restart_bmarkfrac_prod Checking test 081 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4476,7 +4476,7 @@ Test 081 cpld_restart_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_bmarkfrac_v16_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_bmarkfrac_v16_prod Checking test 082 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4532,7 +4532,7 @@ Test 082 cpld_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_restart_bmarkfrac_v16_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restart_bmarkfrac_v16_prod Checking test 083 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4588,7 +4588,7 @@ Test 083 cpld_restart_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_bmark_wave_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_bmark_wave_prod Checking test 084 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4647,7 +4647,7 @@ Test 084 cpld_bmark_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_bmarkfrac_wave_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_bmarkfrac_wave_prod Checking test 085 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4706,7 +4706,7 @@ Test 085 cpld_bmarkfrac_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_bmarkfrac_wave_v16_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_bmarkfrac_wave_v16_prod Checking test 086 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4765,7 +4765,7 @@ Test 086 cpld_bmarkfrac_wave_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_control_wave_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_control_wave_prod Checking test 087 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4821,7 +4821,7 @@ Test 087 cpld_control_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_debug_prod Checking test 088 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4874,7 +4874,7 @@ Test 088 cpld_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/cpld_debugfrac_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_debugfrac_prod Checking test 089 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4927,7 +4927,7 @@ Test 089 cpld_debugfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -4936,7 +4936,7 @@ Test 090 datm_control_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/datm_restart_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -4945,7 +4945,7 @@ Test 091 datm_restart_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/datm_control_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -4954,7 +4954,7 @@ Test 092 datm_control_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/datm_bulk_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -4963,7 +4963,7 @@ Test 093 datm_bulk_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/datm_bulk_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -4972,7 +4972,7 @@ Test 094 datm_bulk_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/datm_mx025_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/datm_mx025_cfsr Checking test 095 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4984,7 +4984,7 @@ Test 095 datm_mx025_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/datm_mx025_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/datm_mx025_gefs Checking test 096 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4996,7 +4996,7 @@ Test 096 datm_mx025_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_42746/datm_debug_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_54735/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 @@ -5005,5 +5005,5 @@ Test 097 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jan 28 21:08:51 MST 2021 -Elapsed time: 01h:24m:34s. Have a nice day! +Wed Feb 3 09:17:36 MST 2021 +Elapsed time: 01h:19m:27s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 6a545e8969..b0b70d2b79 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Thu Jan 28 18:47:01 EST 2021 +Wed Feb 3 16:20:35 EST 2021 Start Regression test baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_decomp_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_2threads_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_restart_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_read_inc_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_stochy_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_ca_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_lndp_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_iau_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_lheatstrg_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_multigases_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_control_32bit_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -1075,7 +1075,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_stretched_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,7 +1131,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_stretched_nest_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -1198,7 +1198,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_regional_control_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,7 +1209,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_regional_restart_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,7 +1218,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_regional_quilt_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,18 +1229,18 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 + 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-20210128/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_control_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1270,7 +1270,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_stretched_nest_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -1290,7 +1290,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfdlmp_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,7 +1338,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -1386,7 +1386,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -1434,7 +1434,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_csawmg_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,7 +1482,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_satmedmf_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,7 +1530,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_satmedmfq_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,7 +1578,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -1626,7 +1626,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -1678,7 +1678,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_cpt_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,7 +1732,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gsd_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1824,7 +1824,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_rap_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1892,7 +1892,7 @@ Test 037 fv3_ccpp_rap PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_hrrr_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1960,7 +1960,7 @@ Test 038 fv3_ccpp_hrrr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_thompson_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2028,7 +2028,7 @@ Test 039 fv3_ccpp_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_thompson_no_aero_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -2096,7 +2096,7 @@ Test 040 fv3_ccpp_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_rrfs_v1beta_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -2164,7 +2164,7 @@ Test 041 fv3_ccpp_rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v15p2_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -2232,7 +2232,7 @@ Test 042 fv3_ccpp_gfs_v15p2 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v16_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v16_prod Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2312,7 +2312,7 @@ Test 043 fv3_ccpp_gfs_v16 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v16_restart_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v16_restart_prod Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2362,7 +2362,7 @@ Test 044 fv3_ccpp_gfs_v16_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v16_stochy_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v16_stochy_prod Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2430,7 +2430,7 @@ Test 045 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -2498,7 +2498,7 @@ Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2566,7 +2566,7 @@ Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -2628,7 +2628,7 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfsv16_csawmg_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -2676,7 +2676,7 @@ Test 049 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -2724,7 +2724,7 @@ Test 050 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gocart_clm_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -2772,7 +2772,7 @@ Test 051 fv3_ccpp_gocart_clm PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v16_flake_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v16_flake_prod Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2840,7 +2840,7 @@ Test 052 fv3_ccpp_gfs_v16_flake PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -2908,7 +2908,7 @@ Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -2926,7 +2926,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-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -2994,7 +2994,7 @@ Test 055 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v16_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v16_debug_prod Checking test 056 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3062,7 +3062,7 @@ Test 056 fv3_ccpp_gfs_v16_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -3130,7 +3130,7 @@ Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3198,7 +3198,7 @@ Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gsd_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -3266,7 +3266,7 @@ Test 059 fv3_ccpp_gsd_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -3334,7 +3334,7 @@ Test 060 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_thompson_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -3402,7 +3402,7 @@ Test 061 fv3_ccpp_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -3470,7 +3470,7 @@ Test 062 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -3538,7 +3538,7 @@ Test 063 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -3606,7 +3606,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-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12834/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/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 @@ -3623,6 +3623,1274 @@ Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_control_prod +Checking test 066 cpld_control results .... + 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 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 + 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_control PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_restart_prod +Checking test 067 cpld_restart results .... + 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 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 + 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_restart PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_controlfrac_prod +Checking test 068 cpld_controlfrac results .... + 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 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 + 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_controlfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_restartfrac_prod +Checking test 069 cpld_restartfrac results .... + 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 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 + 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_restartfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_2threads_prod +Checking test 070 cpld_2threads results .... + 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 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 + 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_2threads PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_decomp_prod +Checking test 071 cpld_decomp results .... + 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 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 + 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 071 cpld_decomp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_satmedmf_prod +Checking test 072 cpld_satmedmf results .... + 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 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 + 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 072 cpld_satmedmf PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_ca_prod +Checking test 073 cpld_ca results .... + 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 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 + 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 073 cpld_ca PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_control_c192_prod +Checking test 074 cpld_control_c192 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/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/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_control_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_restart_c192_prod +Checking test 075 cpld_restart_c192 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/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/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 075 cpld_restart_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_controlfrac_c192_prod +Checking test 076 cpld_controlfrac_c192 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/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/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 076 cpld_controlfrac_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_restartfrac_c192_prod +Checking test 077 cpld_restartfrac_c192 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/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/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 077 cpld_restartfrac_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_control_c384_prod +Checking test 078 cpld_control_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 078 cpld_control_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_restart_c384_prod +Checking test 079 cpld_restart_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 079 cpld_restart_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_controlfrac_c384_prod +Checking test 080 cpld_controlfrac_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 080 cpld_controlfrac_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_restartfrac_c384_prod +Checking test 081 cpld_restartfrac_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 081 cpld_restartfrac_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_bmark_prod +Checking test 082 cpld_bmark results .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 082 cpld_bmark PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_restart_bmark_prod +Checking test 083 cpld_restart_bmark results .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 083 cpld_restart_bmark PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_bmarkfrac_prod +Checking test 084 cpld_bmarkfrac results .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 084 cpld_bmarkfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_restart_bmarkfrac_prod +Checking test 085 cpld_restart_bmarkfrac results .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 085 cpld_restart_bmarkfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_debug_prod +Checking test 086 cpld_debug results .... + 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 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 + 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_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_debugfrac_prod +Checking test 087 cpld_debugfrac results .... + 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 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 + 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 087 cpld_debugfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/datm_control_cfsr +Checking test 088 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 088 datm_control_cfsr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/datm_restart_cfsr +Checking test 089 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 089 datm_restart_cfsr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/datm_control_gefs +Checking test 090 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 090 datm_control_gefs PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/datm_bulk_cfsr +Checking test 091 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 091 datm_bulk_cfsr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/datm_bulk_gefs +Checking test 092 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 092 datm_bulk_gefs PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/datm_mx025_cfsr +Checking test 093 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 093 datm_mx025_cfsr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/datm_mx025_gefs +Checking test 094 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 094 datm_mx025_gefs PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/datm_debug_cfsr +Checking test 095 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 095 datm_debug_cfsr PASS + + REGRESSION TEST WAS SUCCESSFUL -Thu Jan 28 19:23:38 EST 2021 -Elapsed time: 00h:36m:38s. Have a nice day! +Wed Feb 3 18:11:31 EST 2021 +Elapsed time: 01h:50m:57s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index f78a82d99a..54355b0743 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Thu Jan 28 20:21:09 UTC 2021 +Wed Feb 3 15:17:52 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/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-20210126/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/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-20210126/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -198,8 +198,8 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -248,8 +248,8 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -316,8 +316,8 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,8 +384,8 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/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-20210126/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -520,8 +520,8 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/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-20210126/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/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-20210126/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/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-20210126/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/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-20210126/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/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-20210126/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/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-20210126/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/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-20210126/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/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-20210126/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v16_debug_prod Checking test 017 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1068,8 +1068,8 @@ Checking test 017 fv3_ccpp_gfs_v16_debug results .... Test 017 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/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-20210126/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 019 fv3_ccpp_gfs_v16_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_v16_RRTMGP_debug results .... Test 019 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210126/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/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-20210126/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/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-20210126/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_297130/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/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 -Thu Jan 28 21:03:16 UTC 2021 -Elapsed time: 00h:42m:07s. Have a nice day! +Wed Feb 3 16:09:19 UTC 2021 +Elapsed time: 00h:51m:28s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 7e152a4f27..dac09b5935 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Fri Jan 29 00:17:19 UTC 2021 +Wed Feb 3 15:16:22 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -1031,7 +1031,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -1080,7 +1080,7 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1154,7 +1154,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -1222,7 +1222,7 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1278,7 +1278,7 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -1345,7 +1345,7 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1356,7 +1356,7 @@ Test 024 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1365,7 +1365,7 @@ Test 025 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1376,7 +1376,7 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -1387,7 +1387,7 @@ Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1417,7 +1417,7 @@ Test 028 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -1437,7 +1437,7 @@ Test 029 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfdlmp_prod Checking test 030 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1485,7 +1485,7 @@ Test 030 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -1533,7 +1533,7 @@ Test 031 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -1581,7 +1581,7 @@ Test 032 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1629,7 +1629,7 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1677,7 +1677,7 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1725,7 +1725,7 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -1773,7 +1773,7 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -1825,7 +1825,7 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1879,7 +1879,7 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1971,7 +1971,7 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2039,7 +2039,7 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,7 +2107,7 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2175,7 +2175,7 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -2243,7 +2243,7 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -2311,7 +2311,7 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -2379,7 +2379,7 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v16_prod Checking test 046 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2459,7 +2459,7 @@ Test 046 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v16_restart_prod Checking test 047 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2509,7 +2509,7 @@ Test 047 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v16_stochy_prod Checking test 048 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2577,7 +2577,7 @@ Test 048 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -2645,7 +2645,7 @@ Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2713,7 +2713,7 @@ Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -2775,7 +2775,7 @@ Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -2823,7 +2823,7 @@ Test 052 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -2871,7 +2871,7 @@ Test 053 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -2919,7 +2919,7 @@ Test 054 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v16_flake_prod Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2987,7 +2987,7 @@ Test 055 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -3055,7 +3055,7 @@ Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -3073,7 +3073,7 @@ Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -3141,7 +3141,7 @@ Test 058 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v16_debug_prod Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3209,7 +3209,7 @@ Test 059 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -3277,7 +3277,7 @@ Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3345,7 +3345,7 @@ Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -3413,7 +3413,7 @@ Test 062 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -3481,7 +3481,7 @@ Test 063 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -3549,7 +3549,7 @@ Test 064 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -3617,7 +3617,7 @@ Test 065 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -3685,7 +3685,7 @@ Test 066 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -3753,7 +3753,7 @@ Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/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 @@ -3771,7 +3771,7 @@ Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3824,7 +3824,7 @@ Test 069 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3877,7 +3877,7 @@ Test 070 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_controlfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3930,7 +3930,7 @@ Test 071 cpld_controlfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restartfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3983,7 +3983,7 @@ Test 072 cpld_restartfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4036,7 +4036,7 @@ Test 073 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4089,7 +4089,7 @@ Test 074 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4142,7 +4142,7 @@ Test 075 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4195,7 +4195,7 @@ Test 076 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4248,7 +4248,7 @@ Test 077 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4301,7 +4301,7 @@ Test 078 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_controlfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4354,7 +4354,7 @@ Test 079 cpld_controlfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restartfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4407,7 +4407,7 @@ Test 080 cpld_restartfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4463,7 +4463,7 @@ Test 081 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4519,7 +4519,7 @@ Test 082 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4575,7 +4575,7 @@ Test 083 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restartfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4631,7 +4631,7 @@ Test 084 cpld_restartfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4687,7 +4687,7 @@ Test 085 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4743,7 +4743,7 @@ Test 086 cpld_restart_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4799,7 +4799,7 @@ Test 087 cpld_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4855,7 +4855,7 @@ Test 088 cpld_restart_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4911,7 +4911,7 @@ Test 089 cpld_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_restart_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4967,7 +4967,7 @@ Test 090 cpld_restart_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5026,7 +5026,7 @@ Test 091 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmarkfrac_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5085,7 +5085,7 @@ Test 092 cpld_bmarkfrac_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_bmarkfrac_wave_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5144,7 +5144,7 @@ Test 093 cpld_bmarkfrac_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_control_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_control_wave_prod Checking test 094 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5200,7 +5200,7 @@ Test 094 cpld_control_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_debug_prod Checking test 095 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5253,7 +5253,7 @@ Test 095 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/cpld_debugfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_debugfrac_prod Checking test 096 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5306,7 +5306,7 @@ Test 096 cpld_debugfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/datm_control_cfsr Checking test 097 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5315,7 +5315,7 @@ Test 097 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/datm_restart_cfsr Checking test 098 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5324,7 +5324,7 @@ Test 098 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/datm_control_gefs Checking test 099 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5333,7 +5333,7 @@ Test 099 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/datm_bulk_cfsr Checking test 100 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5342,7 +5342,7 @@ Test 100 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/datm_bulk_gefs Checking test 101 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5351,7 +5351,7 @@ Test 101 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/datm_mx025_cfsr Checking test 102 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5363,7 +5363,7 @@ Test 102 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/datm_mx025_gefs Checking test 103 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5375,7 +5375,7 @@ Test 103 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_189387/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/datm_debug_cfsr Checking test 104 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5384,5 +5384,5 @@ Test 104 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jan 29 01:34:02 UTC 2021 -Elapsed time: 01h:16m:44s. Have a nice day! +Wed Feb 3 17:46:48 UTC 2021 +Elapsed time: 02h:30m:27s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index cc79b2872d..f73ef5cc1d 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Fri Jan 29 16:33:28 GMT 2021 +Wed Feb 3 16:55:37 GMT 2021 Start Regression test baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_decomp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_2threads_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_read_inc_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_ca_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_lndp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_iau_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_lheatstrg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_multigases_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_control_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -1075,7 +1075,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_stretched_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,7 +1131,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_stretched_nest_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -1198,7 +1198,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_regional_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,7 +1209,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_regional_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,7 +1218,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_regional_quilt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,7 +1229,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -1240,7 +1240,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_control_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1270,7 +1270,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_stretched_nest_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -1290,7 +1290,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfdlmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,7 +1338,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -1386,7 +1386,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -1434,7 +1434,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,7 +1482,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_satmedmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,7 +1530,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_satmedmfq_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,7 +1578,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -1626,7 +1626,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -1678,7 +1678,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_cpt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,7 +1732,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gsd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1824,7 +1824,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1892,7 +1892,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_thompson_no_aero_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -1960,7 +1960,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v15p2_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -2028,7 +2028,7 @@ Test 039 fv3_ccpp_gfs_v15p2 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v16_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v16_prod Checking test 040 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2108,7 +2108,7 @@ Test 040 fv3_ccpp_gfs_v16 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v16_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v16_restart_prod Checking test 041 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2158,7 +2158,7 @@ Test 041 fv3_ccpp_gfs_v16_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v16_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v16_stochy_prod Checking test 042 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2226,7 +2226,7 @@ Test 042 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -2294,7 +2294,7 @@ Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2362,7 +2362,7 @@ Test 044 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -2424,7 +2424,7 @@ Test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfsv16_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -2472,7 +2472,7 @@ Test 046 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -2520,7 +2520,7 @@ Test 047 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gocart_clm_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -2568,7 +2568,7 @@ Test 048 fv3_ccpp_gocart_clm PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v16_flake_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v16_flake_prod Checking test 049 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2636,7 +2636,7 @@ Test 049 fv3_ccpp_gfs_v16_flake PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -2704,7 +2704,7 @@ Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -2722,7 +2722,7 @@ Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -2790,7 +2790,7 @@ Test 052 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v16_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v16_debug_prod Checking test 053 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2858,7 +2858,7 @@ Test 053 fv3_ccpp_gfs_v16_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -2926,7 +2926,7 @@ Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2994,7 +2994,7 @@ Test 055 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gsd_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -3062,7 +3062,7 @@ Test 056 fv3_ccpp_gsd_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -3130,7 +3130,7 @@ Test 057 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -3198,7 +3198,7 @@ Test 058 fv3_ccpp_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -3266,7 +3266,7 @@ Test 059 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -3334,7 +3334,7 @@ Test 060 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -3402,7 +3402,7 @@ Test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_79758/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/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 @@ -3420,5 +3420,5 @@ Test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jan 29 18:27:52 GMT 2021 -Elapsed time: 01h:54m:25s. Have a nice day! +Wed Feb 3 19:21:57 GMT 2021 +Elapsed time: 02h:26m:21s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index a9a90c26bb..ec8eda18a6 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Jan 28 19:26:32 CST 2021 +Wed Feb 3 09:14:46 CST 2021 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -432,7 +432,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_lndp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_lheatstrg_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -1031,7 +1031,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -1080,7 +1080,7 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1154,7 +1154,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -1222,7 +1222,7 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1278,7 +1278,7 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -1345,7 +1345,7 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1356,7 +1356,7 @@ Test 024 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1365,7 +1365,7 @@ Test 025 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1376,7 +1376,7 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -1387,7 +1387,7 @@ Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1417,7 +1417,7 @@ Test 028 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -1437,7 +1437,7 @@ Test 029 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfdlmp_prod Checking test 030 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1485,7 +1485,7 @@ Test 030 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -1533,7 +1533,7 @@ Test 031 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -1581,7 +1581,7 @@ Test 032 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1629,7 +1629,7 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1677,7 +1677,7 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_satmedmfq_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1725,7 +1725,7 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -1773,7 +1773,7 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -1825,7 +1825,7 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1879,7 +1879,7 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1971,7 +1971,7 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_rap_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2039,7 +2039,7 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_hrrr_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,7 +2107,7 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2175,7 +2175,7 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -2243,7 +2243,7 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -2311,7 +2311,7 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -2379,7 +2379,7 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v16_prod Checking test 046 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2459,7 +2459,7 @@ Test 046 fv3_ccpp_gfs_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v16_restart_prod Checking test 047 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2509,7 +2509,7 @@ Test 047 fv3_ccpp_gfs_v16_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_stochy_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v16_stochy_prod Checking test 048 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2577,7 +2577,7 @@ Test 048 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -2645,7 +2645,7 @@ Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2713,7 +2713,7 @@ Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -2775,7 +2775,7 @@ Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -2823,7 +2823,7 @@ Test 052 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -2871,7 +2871,7 @@ Test 053 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -2919,7 +2919,7 @@ Test 054 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_flake_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v16_flake_prod Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2987,7 +2987,7 @@ Test 055 fv3_ccpp_gfs_v16_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -3055,7 +3055,7 @@ Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -3073,7 +3073,7 @@ Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -3141,7 +3141,7 @@ Test 058 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v16_debug_prod Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3209,7 +3209,7 @@ Test 059 fv3_ccpp_gfs_v16_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -3277,7 +3277,7 @@ Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3345,7 +3345,7 @@ Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -3413,7 +3413,7 @@ Test 062 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -3481,7 +3481,7 @@ Test 063 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -3549,7 +3549,7 @@ Test 064 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -3617,7 +3617,7 @@ Test 065 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -3685,7 +3685,7 @@ Test 066 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -3753,7 +3753,7 @@ Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/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 @@ -3771,7 +3771,7 @@ Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_control_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3824,7 +3824,7 @@ Test 069 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3877,7 +3877,7 @@ Test 070 cpld_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_controlfrac_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3930,7 +3930,7 @@ Test 071 cpld_controlfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restartfrac_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3983,7 +3983,7 @@ Test 072 cpld_restartfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_2threads_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4036,7 +4036,7 @@ Test 073 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_decomp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4089,7 +4089,7 @@ Test 074 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_satmedmf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4142,7 +4142,7 @@ Test 075 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_ca_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4195,7 +4195,7 @@ Test 076 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_control_c192_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4248,7 +4248,7 @@ Test 077 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_c192_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4301,7 +4301,7 @@ Test 078 cpld_restart_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_controlfrac_c192_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4354,7 +4354,7 @@ Test 079 cpld_controlfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restartfrac_c192_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4407,7 +4407,7 @@ Test 080 cpld_restartfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_control_c384_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4463,7 +4463,7 @@ Test 081 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_c384_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4519,7 +4519,7 @@ Test 082 cpld_restart_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_controlfrac_c384_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4575,7 +4575,7 @@ Test 083 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restartfrac_c384_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4631,7 +4631,7 @@ Test 084 cpld_restartfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmark_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4687,7 +4687,7 @@ Test 085 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_bmark_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4743,7 +4743,7 @@ Test 086 cpld_restart_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmarkfrac_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4799,7 +4799,7 @@ Test 087 cpld_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_bmarkfrac_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4855,7 +4855,7 @@ Test 088 cpld_restart_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmarkfrac_v16_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4911,7 +4911,7 @@ Test 089 cpld_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_restart_bmarkfrac_v16_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4967,7 +4967,7 @@ Test 090 cpld_restart_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmark_wave_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5026,7 +5026,7 @@ Test 091 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmarkfrac_wave_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5085,7 +5085,7 @@ Test 092 cpld_bmarkfrac_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_bmarkfrac_wave_v16_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5144,7 +5144,7 @@ Test 093 cpld_bmarkfrac_wave_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_control_wave_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_control_wave_prod Checking test 094 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5200,7 +5200,7 @@ Test 094 cpld_control_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_debug_prod Checking test 095 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5253,7 +5253,7 @@ Test 095 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/cpld_debugfrac_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_debugfrac_prod Checking test 096 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5306,7 +5306,7 @@ Test 096 cpld_debugfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_control_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/datm_control_cfsr Checking test 097 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5315,7 +5315,7 @@ Test 097 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_restart_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/datm_restart_cfsr Checking test 098 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5324,7 +5324,7 @@ Test 098 datm_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_control_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/datm_control_gefs Checking test 099 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5333,7 +5333,7 @@ Test 099 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_bulk_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/datm_bulk_cfsr Checking test 100 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5342,7 +5342,7 @@ Test 100 datm_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_bulk_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/datm_bulk_gefs Checking test 101 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5351,7 +5351,7 @@ Test 101 datm_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_mx025_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/datm_mx025_cfsr Checking test 102 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5363,7 +5363,7 @@ Test 102 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_mx025_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/datm_mx025_gefs Checking test 103 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5375,7 +5375,7 @@ Test 103 datm_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/junwang/stmp/junwang/FV3_RT/rt_399077/datm_debug_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/datm_debug_cfsr Checking test 104 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5384,5 +5384,5 @@ Test 104 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jan 28 20:39:50 CST 2021 -Elapsed time: 01h:13m:19s. Have a nice day! +Wed Feb 3 10:32:34 CST 2021 +Elapsed time: 01h:17m:49s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 28e3f456c4..828f1db2f1 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Fri Jan 29 02:31:10 UTC 2021 +Wed Feb 3 16:48:37 UTC 2021 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_ca_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_lndp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -1075,7 +1075,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,7 +1131,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -1198,7 +1198,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,7 +1209,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,7 +1218,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,7 +1229,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -1240,7 +1240,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1270,7 +1270,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -1290,7 +1290,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,7 +1338,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -1386,7 +1386,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -1434,7 +1434,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,7 +1482,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,7 +1530,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,7 +1578,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -1626,7 +1626,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -1678,7 +1678,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,7 +1732,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1824,7 +1824,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_rap_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1892,7 +1892,7 @@ Test 037 fv3_ccpp_rap PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_hrrr_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1960,7 +1960,7 @@ Test 038 fv3_ccpp_hrrr PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2028,7 +2028,7 @@ Test 039 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -2096,7 +2096,7 @@ Test 040 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -2164,7 +2164,7 @@ Test 041 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -2232,7 +2232,7 @@ Test 042 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v16_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v16_prod Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2312,7 +2312,7 @@ Test 043 fv3_ccpp_gfs_v16 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v16_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v16_restart_prod Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2362,7 +2362,7 @@ Test 044 fv3_ccpp_gfs_v16_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v16_stochy_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v16_stochy_prod Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2430,7 +2430,7 @@ Test 045 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -2498,7 +2498,7 @@ Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2566,7 +2566,7 @@ Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -2628,7 +2628,7 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -2676,7 +2676,7 @@ Test 049 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -2724,7 +2724,7 @@ Test 050 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -2772,7 +2772,7 @@ Test 051 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v16_flake_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v16_flake_prod Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2840,7 +2840,7 @@ Test 052 fv3_ccpp_gfs_v16_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -2908,7 +2908,7 @@ Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -2926,7 +2926,7 @@ Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -2994,7 +2994,7 @@ Test 055 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v16_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v16_debug_prod Checking test 056 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3062,7 +3062,7 @@ Test 056 fv3_ccpp_gfs_v16_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -3130,7 +3130,7 @@ Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3198,7 +3198,7 @@ Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -3266,7 +3266,7 @@ Test 059 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -3334,7 +3334,7 @@ Test 060 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -3402,7 +3402,7 @@ Test 061 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -3470,7 +3470,7 @@ Test 062 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -3538,7 +3538,7 @@ Test 063 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -3606,7 +3606,7 @@ Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_11858/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/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 @@ -3624,5 +3624,5 @@ Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jan 29 03:11:51 UTC 2021 -Elapsed time: 00h:40m:42s. Have a nice day! +Wed Feb 3 17:28:23 UTC 2021 +Elapsed time: 00h:39m:46s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 49433a5393..06eb99ad42 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Fri Jan 29 06:12:24 UTC 2021 +Wed Feb 3 16:47:27 UTC 2021 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_ca_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_lndp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -1031,7 +1031,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1105,7 +1105,7 @@ Test 019 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -1173,7 +1173,7 @@ Test 020 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1229,7 +1229,7 @@ Test 021 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -1296,7 +1296,7 @@ Test 022 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1307,7 +1307,7 @@ Test 023 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1316,7 +1316,7 @@ Test 024 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1327,18 +1327,18 @@ Test 025 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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-20210128/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1368,7 +1368,7 @@ Test 027 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -1388,7 +1388,7 @@ Test 028 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1436,7 +1436,7 @@ Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -1484,7 +1484,7 @@ Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -1532,7 +1532,7 @@ Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1580,7 +1580,7 @@ Test 032 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,7 +1628,7 @@ Test 033 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_satmedmfq_prod Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1676,7 +1676,7 @@ Test 034 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -1724,7 +1724,7 @@ Test 035 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -1776,7 +1776,7 @@ Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_cpt_prod Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1830,7 +1830,7 @@ Test 037 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gsd_prod Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1922,7 +1922,7 @@ Test 038 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_rap_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_rap_prod Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1990,7 +1990,7 @@ Test 039 fv3_ccpp_rap PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_hrrr_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_hrrr_prod Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2058,7 +2058,7 @@ Test 040 fv3_ccpp_hrrr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_thompson_prod Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2126,7 +2126,7 @@ Test 041 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -2194,7 +2194,7 @@ Test 042 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -2262,7 +2262,7 @@ Test 043 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -2330,7 +2330,7 @@ Test 044 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v16_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v16_prod Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,7 +2410,7 @@ Test 045 fv3_ccpp_gfs_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v16_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v16_restart_prod Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2460,7 +2460,7 @@ Test 046 fv3_ccpp_gfs_v16_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v16_stochy_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v16_stochy_prod Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2528,7 +2528,7 @@ Test 047 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -2596,7 +2596,7 @@ Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2664,7 +2664,7 @@ Test 049 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -2726,7 +2726,7 @@ Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -2774,7 +2774,7 @@ Test 051 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -2822,7 +2822,7 @@ Test 052 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -2870,7 +2870,7 @@ Test 053 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v16_flake_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v16_flake_prod Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2938,7 +2938,7 @@ Test 054 fv3_ccpp_gfs_v16_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -3006,7 +3006,7 @@ Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -3024,7 +3024,7 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -3092,7 +3092,7 @@ Test 057 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v16_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v16_debug_prod Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3160,7 +3160,7 @@ Test 058 fv3_ccpp_gfs_v16_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -3228,7 +3228,7 @@ Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3296,7 +3296,7 @@ Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -3364,7 +3364,7 @@ Test 061 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -3432,7 +3432,7 @@ Test 062 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -3500,7 +3500,7 @@ Test 063 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -3568,7 +3568,7 @@ Test 064 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -3636,7 +3636,7 @@ Test 065 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -3704,7 +3704,7 @@ Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -3722,7 +3722,7 @@ Test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_control_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_control_prod Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3775,7 +3775,7 @@ Test 068 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restart_prod Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3828,7 +3828,7 @@ Test 069 cpld_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_controlfrac_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_controlfrac_prod Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3881,7 +3881,7 @@ Test 070 cpld_controlfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restartfrac_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restartfrac_prod Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3934,7 +3934,7 @@ Test 071 cpld_restartfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_2threads_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_2threads_prod Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3987,7 +3987,7 @@ Test 072 cpld_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_decomp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_decomp_prod Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4040,7 +4040,7 @@ Test 073 cpld_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_satmedmf_prod Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4093,7 +4093,7 @@ Test 074 cpld_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_ca_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_ca_prod Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4146,7 +4146,7 @@ Test 075 cpld_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_control_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_control_c192_prod Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4199,7 +4199,7 @@ Test 076 cpld_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restart_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restart_c192_prod Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4252,7 +4252,7 @@ Test 077 cpld_restart_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_controlfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_controlfrac_c192_prod Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4305,7 +4305,7 @@ Test 078 cpld_controlfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restartfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restartfrac_c192_prod Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4358,7 +4358,7 @@ Test 079 cpld_restartfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_control_c384_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_control_c384_prod Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4414,7 +4414,7 @@ Test 080 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restart_c384_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restart_c384_prod Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4470,7 +4470,7 @@ Test 081 cpld_restart_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_controlfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_controlfrac_c384_prod Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4526,7 +4526,7 @@ Test 082 cpld_controlfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restartfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restartfrac_c384_prod Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4582,7 +4582,7 @@ Test 083 cpld_restartfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_bmark_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_bmark_prod Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4638,7 +4638,7 @@ Test 084 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restart_bmark_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restart_bmark_prod Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4694,7 +4694,7 @@ Test 085 cpld_restart_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_bmarkfrac_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_bmarkfrac_prod Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4750,7 +4750,7 @@ Test 086 cpld_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restart_bmarkfrac_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restart_bmarkfrac_prod Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4806,7 +4806,7 @@ Test 087 cpld_restart_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_bmarkfrac_v16_prod Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4862,7 +4862,7 @@ Test 088 cpld_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_restart_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restart_bmarkfrac_v16_prod Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4918,7 +4918,7 @@ Test 089 cpld_restart_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_bmark_wave_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_bmark_wave_prod Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4977,7 +4977,7 @@ Test 090 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_bmarkfrac_wave_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_bmarkfrac_wave_prod Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5036,7 +5036,7 @@ Test 091 cpld_bmarkfrac_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_bmarkfrac_wave_v16_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_bmarkfrac_wave_v16_prod Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5095,7 +5095,7 @@ Test 092 cpld_bmarkfrac_wave_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_control_wave_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_control_wave_prod Checking test 093 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5151,7 +5151,7 @@ Test 093 cpld_control_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_debug_prod Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5204,7 +5204,7 @@ Test 094 cpld_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/cpld_debugfrac_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_debugfrac_prod Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5257,7 +5257,7 @@ Test 095 cpld_debugfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -5266,7 +5266,7 @@ Test 096 datm_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/datm_restart_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -5275,7 +5275,7 @@ Test 097 datm_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -5284,7 +5284,7 @@ Test 098 datm_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -5293,7 +5293,7 @@ Test 099 datm_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -5302,7 +5302,7 @@ Test 100 datm_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5314,7 +5314,7 @@ Test 101 datm_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5326,7 +5326,7 @@ Test 102 datm_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_72583/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/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 @@ -5335,5 +5335,5 @@ Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jan 29 10:28:47 UTC 2021 -Elapsed time: 04h:16m:25s. Have a nice day! +Wed Feb 3 19:46:49 UTC 2021 +Elapsed time: 02h:59m:24s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 69bc75d3bf..6be199e6aa 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -168,6 +168,42 @@ elif [[ $MACHINE_ID = gaea.* ]]; then TASKS_stretch=48 ; TPN_stretch=18 ; INPES_stretch=2 ; JNPES_stretch=4 TASKS_strnest=96 ; TPN_strnest=18 ; INPES_strnest=2 ; JNPES_strnest=4 + TASKS_cpl_dflt=192; TPN_cpl_dflt=36; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 + THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" + OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191" + + TASKS_cpl_dflt_wwav=204; TPN_cpl_dflt_wwav=36; INPES_cpl_dflt_wwav=3; JNPES_cpl_dflt_wwav=8 + THRD_cpl_dflt_wwav=1; WPG_cpl_dflt_wwav=6; MPB_cpl_dflt_wwav="0 143"; APB_cpl_dflt_wwav="0 149" + OPB_cpl_dflt_wwav="150 179"; IPB_cpl_dflt_wwav="180 191"; WPB_cpl_dflt_wwav="192 203" + + TASKS_cpl_thrd=120; TPN_cpl_thrd=18; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 + THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" + OPB_cpl_thrd="78 107"; IPB_cpl_thrd="108 119" + + TASKS_cpl_bmrk=480; TPN_cpl_bmrk=36; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 + THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" + OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479" + + TASKS_cpl_wwav=520; TPN_cpl_wwav=36; INPES_cpl_wwav=6; JNPES_cpl_wwav=8 + THRD_cpl_wwav=1; WPG_cpl_wwav=24; MPB_cpl_wwav="0 287"; APB_cpl_wwav="0 311" + OPB_cpl_wwav="312 431"; IPB_cpl_wwav="432 479"; WPB_cpl_wwav="480 519" + + TASKS_cpl_c192=288; TPN_cpl_c192=36; INPES_cpl_c192=4; JNPES_cpl_c192=8 + THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" + OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" + + TASKS_cpl_c384=318; TPN_cpl_c384=36; INPES_cpl_c384=3; JNPES_cpl_c384=8 + THRD_cpl_c384=1; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" + OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" + + TASKS_datm_100=120; TPN_datm_100=36 + MPB_datm_100="16 77"; APB_datm_100="0 15" + OPB_datm_100="78 107"; IPB_datm_100="108 119" + + TASKS_datm_025=208; TPN_datm_025=36 + MPB_datm_025="0 39"; APB_datm_025="0 39" + OPB_datm_025="40 159"; IPB_datm_025="160 207" + elif [[ $MACHINE_ID = cheyenne.* ]]; then TASKS_dflt=150 ; TPN_dflt=36 ; INPES_dflt=3 ; JNPES_dflt=8 diff --git a/tests/rt.conf b/tests/rt.conf index fca90dd15c..5c240af485 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -129,34 +129,35 @@ RUN | fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug # CPLD tests # ################################################################################################################################################################################### -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_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_controlfrac | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | +RUN | cpld_control | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control +RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restartfrac | - wcoss_cray jet.intel | | cpld_controlfrac -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_2threads | - wcoss_cray jet.intel | | +RUN | cpld_decomp | - wcoss_cray jet.intel | | +RUN | cpld_satmedmf | - wcoss_cray jet.intel | fv3 | +RUN | cpld_ca | - wcoss_cray jet.intel | fv3 | #12h/36h/48h restart tests -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_controlfrac_c192 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac_c192 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c192 +RUN | cpld_control_c192 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_c192 | - wcoss_cray jet.intel | | cpld_control_c192 +RUN | cpld_controlfrac_c192 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restartfrac_c192 | - wcoss_cray jet.intel | | cpld_controlfrac_c192 -RUN | cpld_control_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_control_c384 -RUN | cpld_controlfrac_c384 | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restartfrac_c384 | - wcoss_cray gaea.intel jet.intel | | cpld_controlfrac_c384 +RUN | cpld_control_c384 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_c384 | - wcoss_cray jet.intel | | cpld_control_c384 +RUN | cpld_controlfrac_c384 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restartfrac_c384 | - wcoss_cray jet.intel | | cpld_controlfrac_c384 -RUN | cpld_bmark | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmark | - wcoss_cray gaea.intel jet.intel | | cpld_bmark -RUN | cpld_bmarkfrac | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_restart_bmarkfrac | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac +RUN | cpld_bmark | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_bmark | - wcoss_cray jet.intel | | cpld_bmark +RUN | cpld_bmarkfrac | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac | - wcoss_cray jet.intel | | cpld_bmarkfrac #6h/6h/12h restart test +# test fails on gaea with esmfpio error RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 @@ -166,24 +167,24 @@ RUN | cpld_bmarkfrac_wave RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_control_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,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_debug | - wcoss_cray gaea.intel jet.intel | fv3 | -RUN | cpld_debugfrac | - wcoss_cray gaea.intel jet.intel | fv3 | +COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | +RUN | cpld_debug | - wcoss_cray jet.intel | fv3 | +RUN | cpld_debugfrac | - wcoss_cray 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 | +COMPILE | DATM=Y S2S=Y | - wcoss_cray jet.intel | fv3 | +RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 | +RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr +RUN | datm_control_gefs | - wcoss_cray 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_bulk_cfsr | - wcoss_cray jet.intel | fv3 | +RUN | datm_bulk_gefs | - wcoss_cray 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 | +RUN | datm_mx025_cfsr | - wcoss_cray jet.intel | fv3 | +RUN | datm_mx025_gefs | - wcoss_cray 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 | +COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 | +RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | From a562f762f92dd37efb255c4b2eeca01b1d70c515 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Sun, 7 Feb 2021 14:37:19 -0700 Subject: [PATCH 066/109] Move LSM vegetation lookup tables into CCPP, clean up RUC snow cover on ice initialization (remove IPD step 2) (#407) * Regression test logs for all tier=1 platforms --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 50 +++--- tests/RegressionTests_cheyenne.intel.log | 204 ++++++++++----------- tests/RegressionTests_gaea.intel.log | 202 ++++++++++----------- tests/RegressionTests_hera.gnu.log | 50 +++--- tests/RegressionTests_hera.intel.log | 214 +++++++++++----------- tests/RegressionTests_jet.intel.log | 130 +++++++------- tests/RegressionTests_orion.intel.log | 219 +++++++++++----------- tests/RegressionTests_wcoss_cray.log | 136 +++++++------- tests/RegressionTests_wcoss_dell_p3.log | 220 +++++++++++------------ 10 files changed, 713 insertions(+), 714 deletions(-) diff --git a/FV3 b/FV3 index c2fc3de2cb..9412b8596c 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c2fc3de2cb6c51f85f98ee0e69f25cffd68bc9dd +Subproject commit 9412b8596c01cfc42303959f760f309f7f9c0350 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 3f5f09f550..5e0ce77a0d 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Wed Feb 3 07:58:47 MST 2021 +Fri Feb 5 12:04:56 MST 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/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-20210128/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/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-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -199,7 +199,7 @@ Test 003 fv3_ccpp_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v16_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -249,7 +249,7 @@ Test 004 fv3_ccpp_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v16_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -317,7 +317,7 @@ Test 005 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v16_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,7 +385,7 @@ Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/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-20210128/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -521,7 +521,7 @@ Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/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-20210128/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/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-20210128/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/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-20210128/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/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-20210128/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/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-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/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-20210128/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/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-20210128/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/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-20210128/GNU/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v16_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v16_debug_prod Checking test 017 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1069,7 +1069,7 @@ Test 017 fv3_ccpp_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/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-20210128/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 019 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1205,7 +1205,7 @@ Test 019 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/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-20210128/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/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-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19651/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/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 Feb 3 08:16:48 MST 2021 -Elapsed time: 00h:18m:01s. Have a nice day! +Fri Feb 5 12:23:24 MST 2021 +Elapsed time: 00h:18m:29s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index afa01144a3..0e0223b552 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Wed Feb 3 07:58:09 MST 2021 +Fri Feb 5 12:04:08 MST 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_lndp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_iau_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -1075,7 +1075,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_stretched_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,7 +1131,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -1198,7 +1198,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,7 +1209,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,7 +1218,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,18 +1229,18 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1270,7 +1270,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_stretched_nest_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -1290,7 +1290,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,7 +1338,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -1386,7 +1386,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -1434,7 +1434,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,7 +1482,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,7 +1530,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,7 +1578,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -1626,7 +1626,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -1678,7 +1678,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_cpt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,7 +1732,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1824,7 +1824,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_rap_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1892,7 +1892,7 @@ Test 037 fv3_ccpp_rap PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_hrrr_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1960,7 +1960,7 @@ Test 038 fv3_ccpp_hrrr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2028,7 +2028,7 @@ Test 039 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -2096,7 +2096,7 @@ Test 040 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -2164,7 +2164,7 @@ Test 041 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v16_prod Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2244,7 +2244,7 @@ Test 042 fv3_ccpp_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v16_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v16_restart_prod Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2294,7 +2294,7 @@ Test 043 fv3_ccpp_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v16_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v16_stochy_prod Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2362,7 +2362,7 @@ Test 044 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2430,7 +2430,7 @@ Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2492,7 +2492,7 @@ Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gocart_clm_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -2540,7 +2540,7 @@ Test 047 fv3_ccpp_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v16_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v16_flake_prod Checking test 048 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2608,7 +2608,7 @@ Test 048 fv3_ccpp_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -2676,7 +2676,7 @@ Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -2694,7 +2694,7 @@ Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -2762,7 +2762,7 @@ Test 051 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v16_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v16_debug_prod Checking test 052 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2830,7 +2830,7 @@ Test 052 fv3_ccpp_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -2898,7 +2898,7 @@ Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2966,7 +2966,7 @@ Test 054 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -3034,7 +3034,7 @@ Test 055 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -3102,7 +3102,7 @@ Test 056 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -3170,7 +3170,7 @@ Test 057 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -3238,7 +3238,7 @@ Test 058 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -3306,7 +3306,7 @@ Test 059 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -3374,7 +3374,7 @@ Test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -3392,7 +3392,7 @@ Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_control_prod Checking test 062 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3445,7 +3445,7 @@ Test 062 cpld_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restart_prod Checking test 063 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3498,7 +3498,7 @@ Test 063 cpld_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_controlfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_controlfrac_prod Checking test 064 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3551,7 +3551,7 @@ Test 064 cpld_controlfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restartfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restartfrac_prod Checking test 065 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3604,7 +3604,7 @@ Test 065 cpld_restartfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_2threads_prod Checking test 066 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3657,7 +3657,7 @@ Test 066 cpld_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_decomp_prod Checking test 067 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3710,7 +3710,7 @@ Test 067 cpld_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_satmedmf_prod Checking test 068 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3763,7 +3763,7 @@ Test 068 cpld_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_ca_prod Checking test 069 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3816,7 +3816,7 @@ Test 069 cpld_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_control_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_control_c192_prod Checking test 070 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3869,7 +3869,7 @@ Test 070 cpld_control_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restart_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restart_c192_prod Checking test 071 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3922,7 +3922,7 @@ Test 071 cpld_restart_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_controlfrac_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_controlfrac_c192_prod Checking test 072 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3975,7 +3975,7 @@ Test 072 cpld_controlfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restartfrac_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restartfrac_c192_prod Checking test 073 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4028,7 +4028,7 @@ Test 073 cpld_restartfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_control_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_control_c384_prod Checking test 074 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4084,7 +4084,7 @@ Test 074 cpld_control_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restart_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restart_c384_prod Checking test 075 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4140,7 +4140,7 @@ Test 075 cpld_restart_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_controlfrac_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_controlfrac_c384_prod Checking test 076 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4196,7 +4196,7 @@ Test 076 cpld_controlfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restartfrac_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restartfrac_c384_prod Checking test 077 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4252,7 +4252,7 @@ Test 077 cpld_restartfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_bmark_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_bmark_prod Checking test 078 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4308,7 +4308,7 @@ Test 078 cpld_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restart_bmark_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restart_bmark_prod Checking test 079 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4364,7 +4364,7 @@ Test 079 cpld_restart_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_bmarkfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_bmarkfrac_prod Checking test 080 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4420,7 +4420,7 @@ Test 080 cpld_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restart_bmarkfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restart_bmarkfrac_prod Checking test 081 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4476,7 +4476,7 @@ Test 081 cpld_restart_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_bmarkfrac_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_bmarkfrac_v16_prod Checking test 082 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4532,7 +4532,7 @@ Test 082 cpld_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_restart_bmarkfrac_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restart_bmarkfrac_v16_prod Checking test 083 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4588,7 +4588,7 @@ Test 083 cpld_restart_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_bmark_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_bmark_wave_prod Checking test 084 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4647,7 +4647,7 @@ Test 084 cpld_bmark_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_bmarkfrac_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_bmarkfrac_wave_prod Checking test 085 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4706,7 +4706,7 @@ Test 085 cpld_bmarkfrac_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_bmarkfrac_wave_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_bmarkfrac_wave_v16_prod Checking test 086 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4765,7 +4765,7 @@ Test 086 cpld_bmarkfrac_wave_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_control_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_control_wave_prod Checking test 087 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4821,7 +4821,7 @@ Test 087 cpld_control_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_debug_prod Checking test 088 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4874,7 +4874,7 @@ Test 088 cpld_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/cpld_debugfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_debugfrac_prod Checking test 089 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4927,7 +4927,7 @@ Test 089 cpld_debugfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -4936,7 +4936,7 @@ Test 090 datm_control_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/datm_restart_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -4945,7 +4945,7 @@ Test 091 datm_restart_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -4954,7 +4954,7 @@ Test 092 datm_control_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -4963,7 +4963,7 @@ Test 093 datm_bulk_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -4972,7 +4972,7 @@ Test 094 datm_bulk_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/datm_mx025_cfsr Checking test 095 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4984,7 +4984,7 @@ Test 095 datm_mx025_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/datm_mx025_gefs Checking test 096 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4996,7 +4996,7 @@ Test 096 datm_mx025_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_54735/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/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 @@ -5005,5 +5005,5 @@ Test 097 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 3 09:17:36 MST 2021 -Elapsed time: 01h:19m:27s. Have a nice day! +Fri Feb 5 13:24:01 MST 2021 +Elapsed time: 01h:19m:53s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index b0b70d2b79..3ecb69e914 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Wed Feb 3 16:20:35 EST 2021 +Fri Feb 5 16:54:55 EST 2021 Start Regression test baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_decomp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_2threads_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_read_inc_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_stochy_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_ca_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_lndp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_iau_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_lheatstrg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_multigases_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_control_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -1075,7 +1075,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_stretched_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,7 +1131,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_stretched_nest_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -1198,7 +1198,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_regional_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,7 +1209,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_regional_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,7 +1218,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_regional_quilt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,18 +1229,18 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_control_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1270,7 +1270,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_stretched_nest_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -1290,7 +1290,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfdlmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,7 +1338,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -1386,7 +1386,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -1434,7 +1434,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_csawmg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,7 +1482,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_satmedmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,7 +1530,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_satmedmfq_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,7 +1578,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -1626,7 +1626,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -1678,7 +1678,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_cpt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,7 +1732,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gsd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1824,7 +1824,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_rap_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1892,7 +1892,7 @@ Test 037 fv3_ccpp_rap PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_hrrr_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1960,7 +1960,7 @@ Test 038 fv3_ccpp_hrrr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2028,7 +2028,7 @@ Test 039 fv3_ccpp_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_thompson_no_aero_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -2096,7 +2096,7 @@ Test 040 fv3_ccpp_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_rrfs_v1beta_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -2164,7 +2164,7 @@ Test 041 fv3_ccpp_rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v15p2_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -2232,7 +2232,7 @@ Test 042 fv3_ccpp_gfs_v15p2 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v16_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v16_prod Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2312,7 +2312,7 @@ Test 043 fv3_ccpp_gfs_v16 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v16_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v16_restart_prod Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2362,7 +2362,7 @@ Test 044 fv3_ccpp_gfs_v16_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v16_stochy_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v16_stochy_prod Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2430,7 +2430,7 @@ Test 045 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -2498,7 +2498,7 @@ Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2566,7 +2566,7 @@ Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -2628,7 +2628,7 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfsv16_csawmg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -2676,7 +2676,7 @@ Test 049 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -2724,7 +2724,7 @@ Test 050 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gocart_clm_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -2772,7 +2772,7 @@ Test 051 fv3_ccpp_gocart_clm PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v16_flake_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v16_flake_prod Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2840,7 +2840,7 @@ Test 052 fv3_ccpp_gfs_v16_flake PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -2908,7 +2908,7 @@ Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -2926,7 +2926,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-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -2994,7 +2994,7 @@ Test 055 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v16_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v16_debug_prod Checking test 056 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3062,7 +3062,7 @@ Test 056 fv3_ccpp_gfs_v16_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -3130,7 +3130,7 @@ Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3198,7 +3198,7 @@ Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gsd_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -3266,7 +3266,7 @@ Test 059 fv3_ccpp_gsd_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -3334,7 +3334,7 @@ Test 060 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -3402,7 +3402,7 @@ Test 061 fv3_ccpp_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -3470,7 +3470,7 @@ Test 062 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -3538,7 +3538,7 @@ Test 063 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -3606,7 +3606,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-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/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 @@ -3624,7 +3624,7 @@ Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_control_prod Checking test 066 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3677,7 +3677,7 @@ Test 066 cpld_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_restart_prod Checking test 067 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3730,7 +3730,7 @@ Test 067 cpld_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_controlfrac_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_controlfrac_prod Checking test 068 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3783,7 +3783,7 @@ Test 068 cpld_controlfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_restartfrac_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_restartfrac_prod Checking test 069 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3836,7 +3836,7 @@ Test 069 cpld_restartfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_2threads_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_2threads_prod Checking test 070 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3889,7 +3889,7 @@ Test 070 cpld_2threads PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_decomp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_decomp_prod Checking test 071 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3942,7 +3942,7 @@ Test 071 cpld_decomp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_satmedmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_satmedmf_prod Checking test 072 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3995,7 +3995,7 @@ Test 072 cpld_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_ca_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_ca_prod Checking test 073 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4048,7 +4048,7 @@ Test 073 cpld_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_control_c192_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_control_c192_prod Checking test 074 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4101,7 +4101,7 @@ Test 074 cpld_control_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_restart_c192_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_restart_c192_prod Checking test 075 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4154,7 +4154,7 @@ Test 075 cpld_restart_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_controlfrac_c192_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_controlfrac_c192_prod Checking test 076 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4207,7 +4207,7 @@ Test 076 cpld_controlfrac_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_restartfrac_c192_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_restartfrac_c192_prod Checking test 077 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4260,7 +4260,7 @@ Test 077 cpld_restartfrac_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_control_c384_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_control_c384_prod Checking test 078 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4316,7 +4316,7 @@ Test 078 cpld_control_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_restart_c384_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_restart_c384_prod Checking test 079 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4372,7 +4372,7 @@ Test 079 cpld_restart_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_controlfrac_c384_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_controlfrac_c384_prod Checking test 080 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4428,7 +4428,7 @@ Test 080 cpld_controlfrac_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_restartfrac_c384_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_restartfrac_c384_prod Checking test 081 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4484,7 +4484,7 @@ Test 081 cpld_restartfrac_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_bmark_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_bmark_prod Checking test 082 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4540,7 +4540,7 @@ Test 082 cpld_bmark PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_restart_bmark_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_restart_bmark_prod Checking test 083 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4596,7 +4596,7 @@ Test 083 cpld_restart_bmark PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_bmarkfrac_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_bmarkfrac_prod Checking test 084 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4652,7 +4652,7 @@ Test 084 cpld_bmarkfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_restart_bmarkfrac_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_restart_bmarkfrac_prod Checking test 085 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4708,7 +4708,7 @@ Test 085 cpld_restart_bmarkfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_debug_prod Checking test 086 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4761,7 +4761,7 @@ Test 086 cpld_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/cpld_debugfrac_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_debugfrac_prod Checking test 087 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4814,7 +4814,7 @@ Test 087 cpld_debugfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/datm_control_cfsr Checking test 088 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4823,7 +4823,7 @@ Test 088 datm_control_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/datm_restart_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/datm_restart_cfsr Checking test 089 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4832,7 +4832,7 @@ Test 089 datm_restart_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/datm_control_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/datm_control_gefs Checking test 090 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4841,7 +4841,7 @@ Test 090 datm_control_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/datm_bulk_cfsr Checking test 091 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4850,7 +4850,7 @@ Test 091 datm_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/datm_bulk_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/datm_bulk_gefs Checking test 092 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4859,7 +4859,7 @@ Test 092 datm_bulk_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/datm_mx025_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/datm_mx025_cfsr Checking test 093 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4871,7 +4871,7 @@ Test 093 datm_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/datm_mx025_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/datm_mx025_gefs Checking test 094 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4883,7 +4883,7 @@ Test 094 datm_mx025_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_48762/datm_debug_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/datm_debug_cfsr Checking test 095 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -4892,5 +4892,5 @@ Test 095 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 3 18:11:31 EST 2021 -Elapsed time: 01h:50m:57s. Have a nice day! +Fri Feb 5 18:14:37 EST 2021 +Elapsed time: 01h:19m:43s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 54355b0743..4e2501299f 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Wed Feb 3 15:17:52 UTC 2021 +Fri Feb 5 18:40:14 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/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-20210128/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/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-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -199,7 +199,7 @@ Test 003 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -249,7 +249,7 @@ Test 004 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -317,7 +317,7 @@ Test 005 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,7 +385,7 @@ Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/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-20210128/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -521,7 +521,7 @@ Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/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-20210128/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/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-20210128/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/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-20210128/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/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-20210128/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/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-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/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-20210128/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/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-20210128/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/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-20210128/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v16_debug_prod Checking test 017 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1069,7 +1069,7 @@ Test 017 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/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-20210128/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 019 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1205,7 +1205,7 @@ Test 019 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/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-20210128/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/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-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_131699/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/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 Feb 3 16:09:19 UTC 2021 -Elapsed time: 00h:51m:28s. Have a nice day! +Fri Feb 5 22:25:58 UTC 2021 +Elapsed time: 03h:45m:45s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index dac09b5935..e6988223de 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Wed Feb 3 15:16:22 UTC 2021 +Sat Feb 6 03:19:22 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -1031,7 +1031,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -1080,7 +1080,7 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1154,7 +1154,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -1222,7 +1222,7 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1278,7 +1278,7 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -1345,7 +1345,7 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1356,7 +1356,7 @@ Test 024 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1365,7 +1365,7 @@ Test 025 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1376,7 +1376,7 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -1387,7 +1387,7 @@ Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1417,7 +1417,7 @@ Test 028 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -1437,7 +1437,7 @@ Test 029 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfdlmp_prod Checking test 030 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1485,7 +1485,7 @@ Test 030 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -1533,7 +1533,7 @@ Test 031 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -1581,7 +1581,7 @@ Test 032 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1629,7 +1629,7 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1677,7 +1677,7 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1725,7 +1725,7 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -1773,7 +1773,7 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -1825,7 +1825,7 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1879,7 +1879,7 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1971,7 +1971,7 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2039,7 +2039,7 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,7 +2107,7 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2175,7 +2175,7 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -2243,7 +2243,7 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -2311,7 +2311,7 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -2379,7 +2379,7 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v16_prod Checking test 046 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2459,7 +2459,7 @@ Test 046 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v16_restart_prod Checking test 047 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2509,7 +2509,7 @@ Test 047 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v16_stochy_prod Checking test 048 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2577,7 +2577,7 @@ Test 048 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -2645,7 +2645,7 @@ Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2713,7 +2713,7 @@ Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -2775,7 +2775,7 @@ Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -2823,7 +2823,7 @@ Test 052 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -2871,7 +2871,7 @@ Test 053 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -2919,7 +2919,7 @@ Test 054 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v16_flake_prod Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2987,7 +2987,7 @@ Test 055 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -3055,7 +3055,7 @@ Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -3073,7 +3073,7 @@ Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -3141,7 +3141,7 @@ Test 058 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v16_debug_prod Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3209,7 +3209,7 @@ Test 059 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -3277,7 +3277,7 @@ Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3345,7 +3345,7 @@ Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -3413,7 +3413,7 @@ Test 062 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -3481,7 +3481,7 @@ Test 063 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -3549,7 +3549,7 @@ Test 064 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -3617,7 +3617,7 @@ Test 065 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -3685,7 +3685,7 @@ Test 066 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -3753,7 +3753,7 @@ Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/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 @@ -3771,7 +3771,7 @@ Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3824,7 +3824,7 @@ Test 069 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3877,7 +3877,7 @@ Test 070 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_controlfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3930,7 +3930,7 @@ Test 071 cpld_controlfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restartfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3983,7 +3983,7 @@ Test 072 cpld_restartfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4036,7 +4036,7 @@ Test 073 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4089,7 +4089,7 @@ Test 074 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4142,7 +4142,7 @@ Test 075 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4195,7 +4195,7 @@ Test 076 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4248,7 +4248,7 @@ Test 077 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restart_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4301,7 +4301,7 @@ Test 078 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_controlfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4354,7 +4354,7 @@ Test 079 cpld_controlfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restartfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4407,7 +4407,7 @@ Test 080 cpld_restartfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4463,7 +4463,7 @@ Test 081 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restart_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4519,7 +4519,7 @@ Test 082 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4575,7 +4575,7 @@ Test 083 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restartfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4631,7 +4631,7 @@ Test 084 cpld_restartfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4687,7 +4687,7 @@ Test 085 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restart_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4743,7 +4743,7 @@ Test 086 cpld_restart_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4799,7 +4799,7 @@ Test 087 cpld_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restart_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4855,7 +4855,7 @@ Test 088 cpld_restart_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4911,7 +4911,7 @@ Test 089 cpld_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_restart_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4967,7 +4967,7 @@ Test 090 cpld_restart_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5026,7 +5026,7 @@ Test 091 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_bmarkfrac_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5085,7 +5085,7 @@ Test 092 cpld_bmarkfrac_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_bmarkfrac_wave_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5144,7 +5144,7 @@ Test 093 cpld_bmarkfrac_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_control_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_control_wave_prod Checking test 094 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5200,7 +5200,7 @@ Test 094 cpld_control_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_debug_prod Checking test 095 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5253,7 +5253,7 @@ Test 095 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/cpld_debugfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_debugfrac_prod Checking test 096 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5306,7 +5306,7 @@ Test 096 cpld_debugfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/datm_control_cfsr Checking test 097 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5315,7 +5315,7 @@ Test 097 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/datm_restart_cfsr Checking test 098 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5324,7 +5324,7 @@ Test 098 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/datm_control_gefs Checking test 099 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5333,7 +5333,7 @@ Test 099 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/datm_bulk_cfsr Checking test 100 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5342,7 +5342,7 @@ Test 100 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/datm_bulk_gefs Checking test 101 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5351,7 +5351,7 @@ Test 101 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/datm_mx025_cfsr Checking test 102 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5363,7 +5363,7 @@ Test 102 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/datm_mx025_gefs Checking test 103 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5375,7 +5375,7 @@ Test 103 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_108826/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/datm_debug_cfsr Checking test 104 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5384,5 +5384,5 @@ Test 104 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 3 17:46:48 UTC 2021 -Elapsed time: 02h:30m:27s. Have a nice day! +Sat Feb 6 06:35:00 UTC 2021 +Elapsed time: 03h:15m:39s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index f73ef5cc1d..03c3a0a629 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Wed Feb 3 16:55:37 GMT 2021 +Fri Feb 5 19:03:41 GMT 2021 Start Regression test baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_decomp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_2threads_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_read_inc_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_ca_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_lndp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_iau_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_lheatstrg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_multigases_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_control_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -1075,7 +1075,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_stretched_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,7 +1131,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_stretched_nest_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -1198,7 +1198,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_regional_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,7 +1209,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_regional_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,7 +1218,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_regional_quilt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,7 +1229,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -1240,7 +1240,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_control_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1270,7 +1270,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_stretched_nest_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -1290,7 +1290,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfdlmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,7 +1338,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -1386,7 +1386,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -1434,7 +1434,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,7 +1482,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_satmedmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,7 +1530,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_satmedmfq_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,7 +1578,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -1626,7 +1626,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -1678,7 +1678,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_cpt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,7 +1732,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gsd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1824,7 +1824,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1892,7 +1892,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_thompson_no_aero_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -1960,7 +1960,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v15p2_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -2028,7 +2028,7 @@ Test 039 fv3_ccpp_gfs_v15p2 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v16_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v16_prod Checking test 040 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2108,7 +2108,7 @@ Test 040 fv3_ccpp_gfs_v16 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v16_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v16_restart_prod Checking test 041 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2158,7 +2158,7 @@ Test 041 fv3_ccpp_gfs_v16_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v16_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v16_stochy_prod Checking test 042 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2226,7 +2226,7 @@ Test 042 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -2294,7 +2294,7 @@ Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2362,7 +2362,7 @@ Test 044 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -2424,7 +2424,7 @@ Test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfsv16_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -2472,7 +2472,7 @@ Test 046 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -2520,7 +2520,7 @@ Test 047 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gocart_clm_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -2568,7 +2568,7 @@ Test 048 fv3_ccpp_gocart_clm PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v16_flake_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v16_flake_prod Checking test 049 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2636,7 +2636,7 @@ Test 049 fv3_ccpp_gfs_v16_flake PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -2704,7 +2704,7 @@ Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -2722,7 +2722,7 @@ Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -2790,7 +2790,7 @@ Test 052 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v16_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v16_debug_prod Checking test 053 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2858,7 +2858,7 @@ Test 053 fv3_ccpp_gfs_v16_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -2926,7 +2926,7 @@ Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2994,7 +2994,7 @@ Test 055 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gsd_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -3062,7 +3062,7 @@ Test 056 fv3_ccpp_gsd_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -3130,7 +3130,7 @@ Test 057 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -3198,7 +3198,7 @@ Test 058 fv3_ccpp_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -3266,7 +3266,7 @@ Test 059 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -3334,7 +3334,7 @@ Test 060 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -3402,7 +3402,7 @@ Test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_209079/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 @@ -3420,5 +3420,5 @@ Test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 3 19:21:57 GMT 2021 -Elapsed time: 02h:26m:21s. Have a nice day! +Fri Feb 5 21:01:18 GMT 2021 +Elapsed time: 01h:57m:38s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index ec8eda18a6..e65373985f 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Wed Feb 3 09:14:46 CST 2021 +Fri Feb 5 12:53:25 CST 2021 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -432,7 +432,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing phyf000.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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_lndp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_lheatstrg_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -1031,7 +1031,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -1080,7 +1080,7 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1154,7 +1154,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -1222,7 +1222,7 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1278,7 +1278,7 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -1345,7 +1345,7 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1356,7 +1356,7 @@ Test 024 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1365,7 +1365,7 @@ Test 025 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1376,7 +1376,7 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -1387,7 +1387,7 @@ Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1417,7 +1417,7 @@ Test 028 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -1437,7 +1437,7 @@ Test 029 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfdlmp_prod Checking test 030 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1485,7 +1485,7 @@ Test 030 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -1533,7 +1533,7 @@ Test 031 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -1581,7 +1581,7 @@ Test 032 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1629,7 +1629,7 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1677,7 +1677,7 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_satmedmfq_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1725,7 +1725,7 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -1773,7 +1773,7 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -1825,7 +1825,7 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1879,7 +1879,7 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1971,7 +1971,7 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_rap_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2039,7 +2039,7 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_hrrr_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,7 +2107,7 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2175,7 +2175,7 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -2243,7 +2243,7 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -2311,7 +2311,7 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -2379,7 +2379,7 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v16_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v16_prod Checking test 046 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2459,7 +2459,7 @@ Test 046 fv3_ccpp_gfs_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v16_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v16_restart_prod Checking test 047 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2509,7 +2509,7 @@ Test 047 fv3_ccpp_gfs_v16_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v16_stochy_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v16_stochy_prod Checking test 048 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2577,7 +2577,7 @@ Test 048 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -2645,7 +2645,7 @@ Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2713,7 +2713,7 @@ Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -2775,7 +2775,7 @@ Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -2823,7 +2823,7 @@ Test 052 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -2871,7 +2871,7 @@ Test 053 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -2919,7 +2919,7 @@ Test 054 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v16_flake_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v16_flake_prod Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2987,7 +2987,7 @@ Test 055 fv3_ccpp_gfs_v16_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -3055,7 +3055,7 @@ Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -3073,7 +3073,7 @@ Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -3141,7 +3141,7 @@ Test 058 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v16_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v16_debug_prod Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3209,7 +3209,7 @@ Test 059 fv3_ccpp_gfs_v16_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -3277,7 +3277,7 @@ Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3345,7 +3345,7 @@ Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -3413,7 +3413,7 @@ Test 062 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -3481,7 +3481,7 @@ Test 063 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -3549,7 +3549,7 @@ Test 064 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -3617,7 +3617,7 @@ Test 065 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -3685,7 +3685,7 @@ Test 066 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -3753,7 +3753,7 @@ Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/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 @@ -3771,7 +3771,7 @@ Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_control_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3824,7 +3824,7 @@ Test 069 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3877,7 +3877,7 @@ Test 070 cpld_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_controlfrac_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3930,7 +3930,7 @@ Test 071 cpld_controlfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restartfrac_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3983,7 +3983,7 @@ Test 072 cpld_restartfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_2threads_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4036,7 +4036,7 @@ Test 073 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_decomp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4089,7 +4089,7 @@ Test 074 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_satmedmf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4142,7 +4142,7 @@ Test 075 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_ca_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4195,7 +4195,7 @@ Test 076 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_control_c192_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4248,7 +4248,7 @@ Test 077 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restart_c192_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4301,7 +4301,7 @@ Test 078 cpld_restart_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_controlfrac_c192_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4354,7 +4354,7 @@ Test 079 cpld_controlfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restartfrac_c192_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4407,7 +4407,7 @@ Test 080 cpld_restartfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_control_c384_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4463,7 +4463,7 @@ Test 081 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restart_c384_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4519,7 +4519,7 @@ Test 082 cpld_restart_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_controlfrac_c384_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4575,7 +4575,7 @@ Test 083 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restartfrac_c384_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4631,7 +4631,7 @@ Test 084 cpld_restartfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_bmark_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4687,7 +4687,7 @@ Test 085 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restart_bmark_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4743,7 +4743,7 @@ Test 086 cpld_restart_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_bmarkfrac_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4799,7 +4799,7 @@ Test 087 cpld_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restart_bmarkfrac_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4855,7 +4855,7 @@ Test 088 cpld_restart_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_bmarkfrac_v16_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4911,7 +4911,7 @@ Test 089 cpld_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_restart_bmarkfrac_v16_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4967,7 +4967,7 @@ Test 090 cpld_restart_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_bmark_wave_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5026,7 +5026,7 @@ Test 091 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_bmarkfrac_wave_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5085,7 +5085,7 @@ Test 092 cpld_bmarkfrac_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_bmarkfrac_wave_v16_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5144,7 +5144,7 @@ Test 093 cpld_bmarkfrac_wave_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_control_wave_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_control_wave_prod Checking test 094 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5200,7 +5200,7 @@ Test 094 cpld_control_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_debug_prod Checking test 095 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5253,7 +5253,7 @@ Test 095 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/cpld_debugfrac_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_debugfrac_prod Checking test 096 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5306,7 +5306,7 @@ Test 096 cpld_debugfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/datm_control_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/datm_control_cfsr Checking test 097 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5315,7 +5315,7 @@ Test 097 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/datm_restart_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/datm_restart_cfsr Checking test 098 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5324,7 +5324,7 @@ Test 098 datm_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/datm_control_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/datm_control_gefs Checking test 099 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5333,7 +5333,7 @@ Test 099 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/datm_bulk_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/datm_bulk_cfsr Checking test 100 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5342,7 +5342,7 @@ Test 100 datm_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/datm_bulk_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/datm_bulk_gefs Checking test 101 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5351,7 +5351,7 @@ Test 101 datm_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/datm_mx025_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/datm_mx025_cfsr Checking test 102 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5363,7 +5363,7 @@ Test 102 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/datm_mx025_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/datm_mx025_gefs Checking test 103 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5375,14 +5375,13 @@ Test 103 datm_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_308104/datm_debug_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/datm_debug_cfsr Checking test 104 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 104 datm_debug_cfsr PASS - -REGRESSION TEST WAS SUCCESSFUL -Wed Feb 3 10:32:34 CST 2021 -Elapsed time: 01h:17m:49s. Have a nice day! +REGRESSION TEST FAILED +Fri Feb 5 14:17:06 CST 2021 +Elapsed time: 01h:23m:41s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 828f1db2f1..fceeea5d2a 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Wed Feb 3 16:48:37 UTC 2021 +Fri Feb 5 18:49:39 UTC 2021 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_ca_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_lndp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -1075,7 +1075,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,7 +1131,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -1198,7 +1198,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,7 +1209,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,7 +1218,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,7 +1229,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -1240,7 +1240,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1270,7 +1270,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -1290,7 +1290,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,7 +1338,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -1386,7 +1386,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -1434,7 +1434,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,7 +1482,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,7 +1530,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,7 +1578,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -1626,7 +1626,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -1678,7 +1678,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1732,7 +1732,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1824,7 +1824,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_rap_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1892,7 +1892,7 @@ Test 037 fv3_ccpp_rap PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_hrrr_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1960,7 +1960,7 @@ Test 038 fv3_ccpp_hrrr PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2028,7 +2028,7 @@ Test 039 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -2096,7 +2096,7 @@ Test 040 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -2164,7 +2164,7 @@ Test 041 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -2232,7 +2232,7 @@ Test 042 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v16_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v16_prod Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2312,7 +2312,7 @@ Test 043 fv3_ccpp_gfs_v16 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v16_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v16_restart_prod Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2362,7 +2362,7 @@ Test 044 fv3_ccpp_gfs_v16_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v16_stochy_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v16_stochy_prod Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2430,7 +2430,7 @@ Test 045 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -2498,7 +2498,7 @@ Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2566,7 +2566,7 @@ Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -2628,7 +2628,7 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -2676,7 +2676,7 @@ Test 049 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -2724,7 +2724,7 @@ Test 050 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -2772,7 +2772,7 @@ Test 051 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v16_flake_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v16_flake_prod Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2840,7 +2840,7 @@ Test 052 fv3_ccpp_gfs_v16_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -2908,7 +2908,7 @@ Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -2926,7 +2926,7 @@ Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -2994,7 +2994,7 @@ Test 055 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v16_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v16_debug_prod Checking test 056 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3062,7 +3062,7 @@ Test 056 fv3_ccpp_gfs_v16_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -3130,7 +3130,7 @@ Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3198,7 +3198,7 @@ Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -3266,7 +3266,7 @@ Test 059 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -3334,7 +3334,7 @@ Test 060 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -3402,7 +3402,7 @@ Test 061 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -3470,7 +3470,7 @@ Test 062 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -3538,7 +3538,7 @@ Test 063 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -3606,7 +3606,7 @@ Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_39366/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/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 @@ -3624,5 +3624,5 @@ Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 3 17:28:23 UTC 2021 -Elapsed time: 00h:39m:46s. Have a nice day! +Fri Feb 5 19:29:28 UTC 2021 +Elapsed time: 00h:39m:50s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 06eb99ad42..52a40db530 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Wed Feb 3 16:47:27 UTC 2021 +Fri Feb 5 18:46:41 UTC 2021 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -429,9 +429,9 @@ 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 ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_ca_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_lndp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -1031,7 +1031,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1105,7 +1105,7 @@ Test 019 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -1173,7 +1173,7 @@ Test 020 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1229,7 +1229,7 @@ Test 021 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -1296,7 +1296,7 @@ Test 022 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1307,7 +1307,7 @@ Test 023 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1316,7 +1316,7 @@ Test 024 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1327,18 +1327,18 @@ Test 025 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 dynf024.nc .........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-20210128/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1368,7 +1368,7 @@ Test 027 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -1388,7 +1388,7 @@ Test 028 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1436,7 +1436,7 @@ Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -1484,7 +1484,7 @@ Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -1532,7 +1532,7 @@ Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1580,7 +1580,7 @@ Test 032 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,7 +1628,7 @@ Test 033 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_satmedmfq_prod Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1676,7 +1676,7 @@ Test 034 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -1724,7 +1724,7 @@ Test 035 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -1776,7 +1776,7 @@ Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_cpt_prod Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1830,7 +1830,7 @@ Test 037 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gsd_prod Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1922,7 +1922,7 @@ Test 038 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_rap_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_rap_prod Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1990,7 +1990,7 @@ Test 039 fv3_ccpp_rap PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_hrrr_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_hrrr_prod Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2058,7 +2058,7 @@ Test 040 fv3_ccpp_hrrr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_thompson_prod Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2126,7 +2126,7 @@ Test 041 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -2194,7 +2194,7 @@ Test 042 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -2262,7 +2262,7 @@ Test 043 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -2330,7 +2330,7 @@ Test 044 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v16_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v16_prod Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,7 +2410,7 @@ Test 045 fv3_ccpp_gfs_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v16_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v16_restart_prod Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2460,7 +2460,7 @@ Test 046 fv3_ccpp_gfs_v16_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v16_stochy_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v16_stochy_prod Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2528,7 +2528,7 @@ Test 047 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -2596,7 +2596,7 @@ Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2664,7 +2664,7 @@ Test 049 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -2726,7 +2726,7 @@ Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -2774,7 +2774,7 @@ Test 051 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -2822,7 +2822,7 @@ Test 052 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -2870,7 +2870,7 @@ Test 053 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v16_flake_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v16_flake_prod Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2938,7 +2938,7 @@ Test 054 fv3_ccpp_gfs_v16_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -3006,7 +3006,7 @@ Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -3024,7 +3024,7 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -3092,7 +3092,7 @@ Test 057 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v16_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v16_debug_prod Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3160,7 +3160,7 @@ Test 058 fv3_ccpp_gfs_v16_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -3228,7 +3228,7 @@ Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3296,7 +3296,7 @@ Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -3364,7 +3364,7 @@ Test 061 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -3432,7 +3432,7 @@ Test 062 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -3500,7 +3500,7 @@ Test 063 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -3568,7 +3568,7 @@ Test 064 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -3636,7 +3636,7 @@ Test 065 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -3704,7 +3704,7 @@ Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -3722,7 +3722,7 @@ Test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_control_prod Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3775,7 +3775,7 @@ Test 068 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restart_prod Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3828,7 +3828,7 @@ Test 069 cpld_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_controlfrac_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_controlfrac_prod Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3881,7 +3881,7 @@ Test 070 cpld_controlfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restartfrac_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restartfrac_prod Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3934,7 +3934,7 @@ Test 071 cpld_restartfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_2threads_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_2threads_prod Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3987,7 +3987,7 @@ Test 072 cpld_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_decomp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_decomp_prod Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4040,7 +4040,7 @@ Test 073 cpld_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_satmedmf_prod Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4093,7 +4093,7 @@ Test 074 cpld_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_ca_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_ca_prod Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4146,7 +4146,7 @@ Test 075 cpld_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_control_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_control_c192_prod Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4199,7 +4199,7 @@ Test 076 cpld_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restart_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restart_c192_prod Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4252,7 +4252,7 @@ Test 077 cpld_restart_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_controlfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_controlfrac_c192_prod Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4305,7 +4305,7 @@ Test 078 cpld_controlfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restartfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restartfrac_c192_prod Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4358,7 +4358,7 @@ Test 079 cpld_restartfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_control_c384_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_control_c384_prod Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4414,7 +4414,7 @@ Test 080 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restart_c384_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restart_c384_prod Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4470,7 +4470,7 @@ Test 081 cpld_restart_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_controlfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_controlfrac_c384_prod Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4526,7 +4526,7 @@ Test 082 cpld_controlfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restartfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restartfrac_c384_prod Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4582,7 +4582,7 @@ Test 083 cpld_restartfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_bmark_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_bmark_prod Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4638,7 +4638,7 @@ Test 084 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restart_bmark_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restart_bmark_prod Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4694,7 +4694,7 @@ Test 085 cpld_restart_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_bmarkfrac_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_bmarkfrac_prod Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4750,7 +4750,7 @@ Test 086 cpld_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restart_bmarkfrac_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restart_bmarkfrac_prod Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4806,7 +4806,7 @@ Test 087 cpld_restart_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_bmarkfrac_v16_prod Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4862,7 +4862,7 @@ Test 088 cpld_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_restart_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restart_bmarkfrac_v16_prod Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4918,7 +4918,7 @@ Test 089 cpld_restart_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_bmark_wave_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_bmark_wave_prod Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4977,7 +4977,7 @@ Test 090 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_bmarkfrac_wave_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_bmarkfrac_wave_prod Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5036,7 +5036,7 @@ Test 091 cpld_bmarkfrac_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_bmarkfrac_wave_v16_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_bmarkfrac_wave_v16_prod Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5095,7 +5095,7 @@ Test 092 cpld_bmarkfrac_wave_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_control_wave_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_control_wave_prod Checking test 093 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5151,7 +5151,7 @@ Test 093 cpld_control_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_debug_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_debug_prod Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5204,7 +5204,7 @@ Test 094 cpld_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/cpld_debugfrac_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_debugfrac_prod Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5257,7 +5257,7 @@ Test 095 cpld_debugfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -5266,7 +5266,7 @@ Test 096 datm_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/datm_restart_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -5275,7 +5275,7 @@ Test 097 datm_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -5284,7 +5284,7 @@ Test 098 datm_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -5293,7 +5293,7 @@ Test 099 datm_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -5302,7 +5302,7 @@ Test 100 datm_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5314,7 +5314,7 @@ Test 101 datm_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5326,7 +5326,7 @@ Test 102 datm_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_67081/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/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 @@ -5335,5 +5335,5 @@ Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 3 19:46:49 UTC 2021 -Elapsed time: 02h:59m:24s. Have a nice day! +Fri Feb 5 21:37:45 UTC 2021 +Elapsed time: 02h:51m:08s. Have a nice day! From 00b3da55f024185f424bb9e0f8a29b5e05cf3c5a Mon Sep 17 00:00:00 2001 From: MiKyung Lee <58964324+mlee03@users.noreply.github.com> Date: Thu, 11 Feb 2021 08:39:51 -0500 Subject: [PATCH 067/109] updates FMS to 2020.04.01 (#392) * updates FMS to 2020.04.01 * fixes fms_files.cmake * removes extra horiz_interp * Workaround for FMS 2020.04.01 for Cheyenne with GNU 9.1.0, incl. regression test log Co-authored-by: Mikyung Lee Co-authored-by: Dom Heinzeller --- .gitmodules | 2 +- CMakeLists.txt | 13 +- FMS | 2 +- cheyenne_gnu_fms_mpp_util_mpi_inc.patch | 12 + fms_files.cmake | 25 +- tests/RegressionTests_cheyenne.gnu.log | 450 +++--- tests/RegressionTests_cheyenne.intel.log | 1600 ++++++++++---------- tests/RegressionTests_gaea.intel.log | 1648 ++++++++++----------- tests/RegressionTests_hera.gnu.log | 450 +++--- tests/RegressionTests_hera.intel.log | 1696 ++++++++++----------- tests/RegressionTests_orion.intel.log | 1701 +++++++++++----------- tests/RegressionTests_wcoss_cray.log | 1582 ++++++++++---------- tests/RegressionTests_wcoss_dell_p3.log | 1692 ++++++++++----------- 13 files changed, 5450 insertions(+), 5423 deletions(-) create mode 100644 cheyenne_gnu_fms_mpp_util_mpi_inc.patch diff --git a/.gitmodules b/.gitmodules index 6e63f4576f..0c3b70cc3f 100644 --- a/.gitmodules +++ b/.gitmodules @@ -9,7 +9,7 @@ [submodule "FMS"] path = FMS url = https://github.com/NOAA-GFDL/FMS - branch = master + branch = release/2020.04 [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/CMakeLists.txt b/CMakeLists.txt index e4f62ef2ca..ac3e5e8d1a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -51,6 +51,17 @@ if(CMAKE_Platform) else() message("Platform '${CMAKE_Platform}' configuration file does not exist") endif() + + # DH* 20210208 temporary workaround for FMS issues on Cheyenne with GNU 9.1.0 + if (CMAKE_Platform MATCHES "cheyenne.gnu") + message("Applying patch cheyenne_gnu_fms_mpp_util_mpi_inc.patch") + execute_process(COMMAND patch -N -p0 INPUT_FILE cheyenne_gnu_fms_mpp_util_mpi_inc.patch + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + OUTPUT_FILE ${CMAKE_CURRENT_BINARY_DIR}/cheyenne_gnu_fms_mpp_util_mpi_inc.patch.out + ERROR_FILE ${CMAKE_CURRENT_BINARY_DIR}/cheyenne_gnu_fms_mpp_util_mpi_inc.patch.err + RESULT_VARIABLE RC) + # *DH 20210208 + endif() endif() message("") @@ -130,8 +141,6 @@ endif() ############################################################################### include(fms_files.cmake) add_library(fms ${fms_src_files} ${fms_headers}) -# stupid cmake can not figure out dependency of fft.F90 on fft99.F90 because 'use fft99_mod' is inside ifdefs -set_property(SOURCE FMS/fft/fft.F90 APPEND_STRING PROPERTY COMPILE_FLAGS "-DSGICRAY=0 -DNAGFFT=0") list(APPEND _fms_defs_public use_libMPI use_netCDF diff --git a/FMS b/FMS index f61416fef6..0707f2c027 160000 --- a/FMS +++ b/FMS @@ -1 +1 @@ -Subproject commit f61416fef691d9ba39a40df1ce72aa574f54c390 +Subproject commit 0707f2c0279a9efd12cdbf0133c1e09435766928 diff --git a/cheyenne_gnu_fms_mpp_util_mpi_inc.patch b/cheyenne_gnu_fms_mpp_util_mpi_inc.patch new file mode 100644 index 0000000000..aeb2facc39 --- /dev/null +++ b/cheyenne_gnu_fms_mpp_util_mpi_inc.patch @@ -0,0 +1,12 @@ +--- FMS/mpp/include/mpp_util_mpi.inc 2021-02-08 08:24:21.000000000 -0700 ++++ FMS/mpp/include/mpp_util_mpi.inc 2021-02-08 08:24:15.000000000 -0700 +@@ -169,7 +169,8 @@ + integer, intent(in ), optional :: msg_size(:) + integer, intent(in ), optional :: msg_type(:) + +- integer :: i, m, n, stride, my_check, rsize ++ integer :: i, m, n, stride, my_check ++ integer, volatile :: rsize + + if( debug .and. (current_clock.NE.0) )call SYSTEM_CLOCK(start_tick) + my_check = EVENT_SEND diff --git a/fms_files.cmake b/fms_files.cmake index 5b486ac632..81e3cfb381 100644 --- a/fms_files.cmake +++ b/fms_files.cmake @@ -3,6 +3,7 @@ list(APPEND fms_src_files FMS/amip_interp/amip_interp.F90 FMS/astronomy/astronomy.F90 FMS/axis_utils/axis_utils.F90 + FMS/axis_utils/axis_utils2.F90 FMS/block_control/block_control.F90 FMS/column_diagnostics/column_diagnostics.F90 FMS/constants/constants.F90 @@ -10,12 +11,13 @@ list(APPEND fms_src_files FMS/coupler/coupler_types.F90 FMS/coupler/ensemble_manager.F90 FMS/data_override/data_override.F90 + FMS/data_override/get_grid_version_fms2io.F90 + FMS/data_override/get_grid_version_mpp.F90 FMS/diag_integral/diag_integral.F90 FMS/diag_manager/diag_axis.F90 FMS/diag_manager/diag_data.F90 FMS/diag_manager/diag_grid.F90 FMS/diag_manager/diag_manager.F90 - FMS/diag_manager/diag_manifest.F90 FMS/diag_manager/diag_output.F90 FMS/diag_manager/diag_table.F90 FMS/diag_manager/diag_util.F90 @@ -28,12 +30,16 @@ list(APPEND fms_src_files FMS/drifters/quicksort.F90 FMS/exchange/stock_constants.F90 FMS/exchange/xgrid.F90 - FMS/fft/fft.F90 - FMS/fft/fft99.F90 FMS/field_manager/field_manager.F90 FMS/field_manager/fm_util.F90 FMS/fms/fms.F90 FMS/fms/fms_io.F90 + FMS/fms2_io/blackboxio.F90 + FMS/fms2_io/fms_io_utils.F90 + FMS/fms2_io/fms_netcdf_domain_io.F90 + FMS/fms2_io/fms_netcdf_unstructured_domain_io.F90 + FMS/fms2_io/fms2_io.F90 + FMS/fms2_io/netcdf_io.F90 FMS/horiz_interp/horiz_interp.F90 FMS/horiz_interp/horiz_interp_bicubic.F90 FMS/horiz_interp/horiz_interp_bilinear.F90 @@ -43,10 +49,11 @@ list(APPEND fms_src_files FMS/interpolator/interpolator.F90 FMS/memutils/memutils.F90 FMS/monin_obukhov/monin_obukhov.F90 - FMS/monin_obukhov/monin_obukhov_kernel.F90 + FMS/monin_obukhov/monin_obukhov_inter.F90 FMS/mosaic/gradient.F90 FMS/mosaic/grid.F90 FMS/mosaic/mosaic.F90 + FMS/mosaic/mosaic2.F90 FMS/mpp/mpp.F90 FMS/mpp/mpp_data.F90 FMS/mpp/mpp_domains.F90 @@ -54,16 +61,15 @@ list(APPEND fms_src_files FMS/mpp/mpp_io.F90 FMS/mpp/mpp_memutils.F90 FMS/mpp/mpp_parameter.F90 - FMS/mpp/mpp_pset.F90 FMS/mpp/mpp_utilities.F90 FMS/platform/platform.F90 - FMS/random_numbers/MersenneTwister.F90 + FMS/random_numbers/mersennetwister.F90 FMS/random_numbers/random_numbers.F90 FMS/sat_vapor_pres/sat_vapor_pres.F90 FMS/sat_vapor_pres/sat_vapor_pres_k.F90 - FMS/station_data/station_data.F90 FMS/time_interp/time_interp.F90 FMS/time_interp/time_interp_external.F90 + FMS/time_interp/time_interp_external2.F90 FMS/time_manager/get_cal_time.F90 FMS/time_manager/time_manager.F90 FMS/topography/gaussian_topog.F90 @@ -71,14 +77,13 @@ list(APPEND fms_src_files FMS/tracer_manager/tracer_manager.F90 FMS/tridiagonal/tridiagonal.F90 - FMS/memutils/memuse.c + FMS/affinity/affinity.c + FMS/mpp/mpp_memuse.c FMS/mosaic/create_xgrid.c FMS/mosaic/gradient_c2l.c FMS/mosaic/interp.c FMS/mosaic/mosaic_util.c FMS/mosaic/read_mosaic.c - FMS/mpp/nsclock.c - FMS/mpp/threadloc.c ) list( APPEND fms_headers diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 5e0ce77a0d..25059f8218 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,16 +1,16 @@ -Fri Feb 5 12:04:56 MST 2021 +Tue Feb 9 08:55:18 MST 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -51,14 +51,14 @@ Test 001 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/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 - 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 @@ -119,14 +119,14 @@ Test 002 fv3_ccpp_gfs_v15p2 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 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 @@ -199,7 +199,7 @@ Test 003 fv3_ccpp_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v16_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -249,14 +249,14 @@ Test 004 fv3_ccpp_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v16_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_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 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 @@ -317,14 +317,14 @@ Test 005 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v16_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_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 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 @@ -385,14 +385,14 @@ Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/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 - 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 @@ -453,14 +453,14 @@ Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_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 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 @@ -521,14 +521,14 @@ Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd 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 @@ -579,24 +579,24 @@ Checking test 009 fv3_ccpp_gsd results .... Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -613,14 +613,14 @@ Test 009 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson 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 @@ -647,24 +647,24 @@ Checking test 010 fv3_ccpp_thompson results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -681,14 +681,14 @@ Test 010 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/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 - 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 @@ -715,24 +715,24 @@ Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -749,14 +749,14 @@ Test 011 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/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 - 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 @@ -783,24 +783,24 @@ Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -817,14 +817,14 @@ Test 012 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/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 - 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 @@ -885,9 +885,9 @@ Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.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-20210128/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_control_debug_prod Checking test 015 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -933,14 +933,14 @@ Test 015 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/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 - 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 @@ -1001,14 +1001,14 @@ Test 016 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v16_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v16_debug_prod Checking test 017 fv3_ccpp_gfs_v16_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 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 @@ -1069,14 +1069,14 @@ Test 017 fv3_ccpp_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/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 - 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 @@ -1137,14 +1137,14 @@ Test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 019 fv3_ccpp_gfs_v16_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 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 @@ -1205,14 +1205,14 @@ Test 019 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/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 - 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 @@ -1239,24 +1239,24 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1279,14 +1279,14 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/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 - 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 @@ -1347,9 +1347,9 @@ Test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_47161/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -1365,5 +1365,5 @@ Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 5 12:23:24 MST 2021 -Elapsed time: 00h:18m:29s. Have a nice day! +Tue Feb 9 09:13:31 MST 2021 +Elapsed time: 00h:18m:13s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 0e0223b552..64ee598f75 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,16 +1,16 @@ -Fri Feb 5 12:04:08 MST 2021 +Tue Feb 9 08:55:07 MST 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control 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 @@ -71,14 +71,14 @@ Test 001 fv3_ccpp_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 @@ -139,14 +139,14 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads 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 @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,14 +257,14 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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 phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -325,14 +325,14 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -373,14 +373,14 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -421,14 +421,14 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK @@ -469,14 +469,14 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -517,14 +517,14 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -565,14 +565,14 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -613,14 +613,14 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_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 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 @@ -681,14 +681,14 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 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 @@ -749,14 +749,14 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_lndp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 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 @@ -817,14 +817,14 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_iau_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 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 phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -885,14 +885,14 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -933,14 +933,14 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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 @@ -966,25 +966,25 @@ Checking test 017 fv3_ccpp_multigases results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1007,14 +1007,14 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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 @@ -1040,25 +1040,25 @@ Checking test 018 fv3_ccpp_control_32bit results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1075,46 +1075,46 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_stretched_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1131,55 +1131,55 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.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 atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1198,29 +1198,29 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......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 baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......OK Test 022 fv3_ccpp_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK + Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1229,18 +1229,18 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK + Comparing atmos_4xdaily.nc ............ALT CHECK......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-20210128/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1270,34 +1270,34 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_stretched_nest_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1338,14 +1338,14 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1386,14 +1386,14 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1434,14 +1434,14 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1482,14 +1482,14 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1530,14 +1530,14 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1578,38 +1578,38 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 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.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/fv_core.res.nc ............ALT CHECK......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/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1626,14 +1626,14 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1643,25 +1643,25 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... 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 - 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/fv_core.res.nc ............ALT CHECK......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/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1678,38 +1678,38 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_cpt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1732,14 +1732,14 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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 @@ -1789,25 +1789,25 @@ Checking test 036 fv3_ccpp_gsd results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1824,14 +1824,14 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_rap_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 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 @@ -1857,25 +1857,25 @@ Checking test 037 fv3_ccpp_rap results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1892,14 +1892,14 @@ Test 037 fv3_ccpp_rap PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_hrrr_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 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 @@ -1925,25 +1925,25 @@ Checking test 038 fv3_ccpp_hrrr results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1960,14 +1960,14 @@ Test 038 fv3_ccpp_hrrr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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 @@ -1993,25 +1993,25 @@ Checking test 039 fv3_ccpp_thompson results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2028,14 +2028,14 @@ Test 039 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 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 @@ -2061,25 +2061,25 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2096,14 +2096,14 @@ Test 040 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 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 @@ -2129,25 +2129,25 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2164,14 +2164,14 @@ Test 041 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v16_prod Checking test 042 fv3_ccpp_gfs_v16 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 @@ -2244,7 +2244,7 @@ Test 042 fv3_ccpp_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v16_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v16_restart_prod Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2294,14 +2294,14 @@ Test 043 fv3_ccpp_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v16_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v16_stochy_prod Checking test 044 fv3_ccpp_gfs_v16_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 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 @@ -2362,14 +2362,14 @@ Test 044 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16_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 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 @@ -2430,7 +2430,7 @@ Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2492,14 +2492,14 @@ Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gocart_clm_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2540,14 +2540,14 @@ Test 047 fv3_ccpp_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v16_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v16_flake_prod Checking test 048 fv3_ccpp_gfs_v16_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 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 @@ -2608,14 +2608,14 @@ Test 048 fv3_ccpp_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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 @@ -2676,9 +2676,9 @@ Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -2694,14 +2694,14 @@ Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 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 @@ -2762,14 +2762,14 @@ Test 051 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v16_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v16_debug_prod Checking test 052 fv3_ccpp_gfs_v16_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 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 @@ -2830,14 +2830,14 @@ Test 052 fv3_ccpp_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 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 @@ -2898,14 +2898,14 @@ Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 054 fv3_ccpp_gfs_v16_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 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 @@ -2966,14 +2966,14 @@ Test 054 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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 @@ -2999,25 +2999,25 @@ Checking test 055 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3034,14 +3034,14 @@ Test 055 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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 @@ -3067,25 +3067,25 @@ Checking test 056 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3102,14 +3102,14 @@ Test 056 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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 @@ -3135,25 +3135,25 @@ Checking test 057 fv3_ccpp_thompson_debug results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3170,14 +3170,14 @@ Test 057 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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 @@ -3203,25 +3203,25 @@ Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3238,14 +3238,14 @@ Test 058 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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 @@ -3271,25 +3271,25 @@ Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3306,14 +3306,14 @@ Test 059 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 - 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 @@ -3374,9 +3374,9 @@ Test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3392,7 +3392,7 @@ Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_control_prod Checking test 062 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3445,7 +3445,7 @@ Test 062 cpld_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restart_prod Checking test 063 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3498,7 +3498,7 @@ Test 063 cpld_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_controlfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_controlfrac_prod Checking test 064 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3551,7 +3551,7 @@ Test 064 cpld_controlfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restartfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restartfrac_prod Checking test 065 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3604,7 +3604,7 @@ Test 065 cpld_restartfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_2threads_prod Checking test 066 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3657,7 +3657,7 @@ Test 066 cpld_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_decomp_prod Checking test 067 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3710,7 +3710,7 @@ Test 067 cpld_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_satmedmf_prod Checking test 068 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3763,7 +3763,7 @@ Test 068 cpld_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_ca_prod Checking test 069 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3816,7 +3816,7 @@ Test 069 cpld_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_control_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_control_c192_prod Checking test 070 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3869,7 +3869,7 @@ Test 070 cpld_control_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restart_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restart_c192_prod Checking test 071 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3922,7 +3922,7 @@ Test 071 cpld_restart_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_controlfrac_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_controlfrac_c192_prod Checking test 072 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3975,7 +3975,7 @@ Test 072 cpld_controlfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restartfrac_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restartfrac_c192_prod Checking test 073 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4028,7 +4028,7 @@ Test 073 cpld_restartfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_control_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_control_c384_prod Checking test 074 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4084,7 +4084,7 @@ Test 074 cpld_control_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restart_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restart_c384_prod Checking test 075 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4140,7 +4140,7 @@ Test 075 cpld_restart_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_controlfrac_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_controlfrac_c384_prod Checking test 076 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4196,7 +4196,7 @@ Test 076 cpld_controlfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restartfrac_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restartfrac_c384_prod Checking test 077 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4252,7 +4252,7 @@ Test 077 cpld_restartfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_bmark_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_bmark_prod Checking test 078 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4308,7 +4308,7 @@ Test 078 cpld_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restart_bmark_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restart_bmark_prod Checking test 079 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4364,7 +4364,7 @@ Test 079 cpld_restart_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_bmarkfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_bmarkfrac_prod Checking test 080 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4420,7 +4420,7 @@ Test 080 cpld_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restart_bmarkfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restart_bmarkfrac_prod Checking test 081 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4476,7 +4476,7 @@ Test 081 cpld_restart_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_bmarkfrac_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_bmarkfrac_v16_prod Checking test 082 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4532,7 +4532,7 @@ Test 082 cpld_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_restart_bmarkfrac_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restart_bmarkfrac_v16_prod Checking test 083 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4588,7 +4588,7 @@ Test 083 cpld_restart_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_bmark_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_bmark_wave_prod Checking test 084 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4647,7 +4647,7 @@ Test 084 cpld_bmark_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_bmarkfrac_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_bmarkfrac_wave_prod Checking test 085 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4706,7 +4706,7 @@ Test 085 cpld_bmarkfrac_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_bmarkfrac_wave_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_bmarkfrac_wave_v16_prod Checking test 086 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4765,7 +4765,7 @@ Test 086 cpld_bmarkfrac_wave_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_control_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_control_wave_prod Checking test 087 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4821,7 +4821,7 @@ Test 087 cpld_control_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_debug_prod Checking test 088 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4874,7 +4874,7 @@ Test 088 cpld_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/cpld_debugfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_debugfrac_prod Checking test 089 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4927,7 +4927,7 @@ Test 089 cpld_debugfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 @@ -4936,7 +4936,7 @@ Test 090 datm_control_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/datm_restart_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 @@ -4945,7 +4945,7 @@ Test 091 datm_restart_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 @@ -4954,7 +4954,7 @@ Test 092 datm_control_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 @@ -4963,7 +4963,7 @@ Test 093 datm_bulk_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 @@ -4972,7 +4972,7 @@ Test 094 datm_bulk_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/datm_mx025_cfsr Checking test 095 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4984,7 +4984,7 @@ Test 095 datm_mx025_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/datm_mx025_gefs Checking test 096 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4996,7 +4996,7 @@ Test 096 datm_mx025_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_51263/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/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 @@ -5005,5 +5005,5 @@ Test 097 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 5 13:24:01 MST 2021 -Elapsed time: 01h:19m:53s. Have a nice day! +Tue Feb 9 10:16:06 MST 2021 +Elapsed time: 01h:20m:59s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 3ecb69e914..1f2d362f18 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,16 +1,16 @@ -Fri Feb 5 16:54:55 EST 2021 +Tue Feb 9 11:19:58 EST 2021 Start Regression test baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control 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 @@ -71,14 +71,14 @@ Test 001 fv3_ccpp_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_decomp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 @@ -139,14 +139,14 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_2threads_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads 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 @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,14 +257,14 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_read_inc_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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 phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -325,14 +325,14 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -373,14 +373,14 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -421,14 +421,14 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -469,14 +469,14 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -517,14 +517,14 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -565,14 +565,14 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -613,14 +613,14 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_stochy_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_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 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 @@ -681,14 +681,14 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_ca_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 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 @@ -749,14 +749,14 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_lndp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 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 @@ -817,14 +817,14 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_iau_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 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 phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -885,14 +885,14 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_lheatstrg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -933,14 +933,14 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_multigases_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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 @@ -966,25 +966,25 @@ Checking test 017 fv3_ccpp_multigases results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1007,14 +1007,14 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_control_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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 @@ -1040,25 +1040,25 @@ Checking test 018 fv3_ccpp_control_32bit results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1075,46 +1075,46 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_stretched_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1131,55 +1131,55 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_stretched_nest_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.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 atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1198,29 +1198,29 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_regional_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......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 baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_regional_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......OK Test 022 fv3_ccpp_regional_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_regional_quilt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK + Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1229,18 +1229,18 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK + Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK + 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-20210128/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_control_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1270,34 +1270,34 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_stretched_nest_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfdlmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1338,14 +1338,14 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1386,14 +1386,14 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1434,14 +1434,14 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_csawmg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1482,14 +1482,14 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_satmedmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1530,14 +1530,14 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_satmedmfq_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1578,38 +1578,38 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 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.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/fv_core.res.nc ............ALT CHECK......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/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1626,14 +1626,14 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1643,25 +1643,25 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... 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 - 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/fv_core.res.nc ............ALT CHECK......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/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1678,38 +1678,38 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_cpt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1732,14 +1732,14 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gsd_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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 @@ -1789,25 +1789,25 @@ Checking test 036 fv3_ccpp_gsd results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1824,14 +1824,14 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_rap_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 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 @@ -1857,25 +1857,25 @@ Checking test 037 fv3_ccpp_rap results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1892,14 +1892,14 @@ Test 037 fv3_ccpp_rap PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_hrrr_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 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 @@ -1925,25 +1925,25 @@ Checking test 038 fv3_ccpp_hrrr results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1960,14 +1960,14 @@ Test 038 fv3_ccpp_hrrr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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 @@ -1993,25 +1993,25 @@ Checking test 039 fv3_ccpp_thompson results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2028,14 +2028,14 @@ Test 039 fv3_ccpp_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_thompson_no_aero_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 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 @@ -2061,25 +2061,25 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2096,14 +2096,14 @@ Test 040 fv3_ccpp_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_rrfs_v1beta_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 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 @@ -2129,25 +2129,25 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2164,14 +2164,14 @@ Test 041 fv3_ccpp_rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v15p2_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 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 @@ -2232,14 +2232,14 @@ Test 042 fv3_ccpp_gfs_v15p2 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v16_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v16_prod Checking test 043 fv3_ccpp_gfs_v16 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 @@ -2312,7 +2312,7 @@ Test 043 fv3_ccpp_gfs_v16 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v16_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v16_restart_prod Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2362,14 +2362,14 @@ Test 044 fv3_ccpp_gfs_v16_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v16_stochy_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v16_stochy_prod Checking test 045 fv3_ccpp_gfs_v16_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 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 @@ -2430,14 +2430,14 @@ Test 045 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 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 @@ -2498,14 +2498,14 @@ Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16_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 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 @@ -2566,7 +2566,7 @@ Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 @@ -2628,14 +2628,14 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfsv16_csawmg_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2676,14 +2676,14 @@ Test 049 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2724,14 +2724,14 @@ Test 050 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gocart_clm_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2772,14 +2772,14 @@ Test 051 fv3_ccpp_gocart_clm PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v16_flake_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v16_flake_prod Checking test 052 fv3_ccpp_gfs_v16_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 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 @@ -2840,14 +2840,14 @@ Test 052 fv3_ccpp_gfs_v16_flake PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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 @@ -2908,9 +2908,9 @@ Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -2926,14 +2926,14 @@ Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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 @@ -2994,14 +2994,14 @@ Test 055 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v16_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v16_debug_prod Checking test 056 fv3_ccpp_gfs_v16_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 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 @@ -3062,14 +3062,14 @@ Test 056 fv3_ccpp_gfs_v16_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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 @@ -3130,14 +3130,14 @@ Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 058 fv3_ccpp_gfs_v16_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 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 @@ -3198,14 +3198,14 @@ Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gsd_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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 @@ -3231,25 +3231,25 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3266,14 +3266,14 @@ Test 059 fv3_ccpp_gsd_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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 @@ -3299,25 +3299,25 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3334,14 +3334,14 @@ Test 060 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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 @@ -3367,25 +3367,25 @@ Checking test 061 fv3_ccpp_thompson_debug results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3402,14 +3402,14 @@ Test 061 fv3_ccpp_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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 @@ -3435,25 +3435,25 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3470,14 +3470,14 @@ Test 062 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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 @@ -3503,25 +3503,25 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3538,14 +3538,14 @@ Test 063 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 - 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 @@ -3606,9 +3606,9 @@ Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3624,7 +3624,7 @@ Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_control_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_control_prod Checking test 066 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3677,7 +3677,7 @@ Test 066 cpld_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_restart_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_restart_prod Checking test 067 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3730,7 +3730,7 @@ Test 067 cpld_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_controlfrac_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_controlfrac_prod Checking test 068 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3783,7 +3783,7 @@ Test 068 cpld_controlfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_restartfrac_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_restartfrac_prod Checking test 069 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3836,7 +3836,7 @@ Test 069 cpld_restartfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_2threads_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_2threads_prod Checking test 070 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3889,7 +3889,7 @@ Test 070 cpld_2threads PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_decomp_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_decomp_prod Checking test 071 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3942,7 +3942,7 @@ Test 071 cpld_decomp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_satmedmf_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_satmedmf_prod Checking test 072 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3995,7 +3995,7 @@ Test 072 cpld_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_ca_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_ca_prod Checking test 073 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4048,7 +4048,7 @@ Test 073 cpld_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_control_c192_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_control_c192_prod Checking test 074 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4101,7 +4101,7 @@ Test 074 cpld_control_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_restart_c192_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_restart_c192_prod Checking test 075 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4154,7 +4154,7 @@ Test 075 cpld_restart_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_controlfrac_c192_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_controlfrac_c192_prod Checking test 076 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4207,7 +4207,7 @@ Test 076 cpld_controlfrac_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_restartfrac_c192_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_restartfrac_c192_prod Checking test 077 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4260,7 +4260,7 @@ Test 077 cpld_restartfrac_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_control_c384_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_control_c384_prod Checking test 078 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4316,7 +4316,7 @@ Test 078 cpld_control_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_restart_c384_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_restart_c384_prod Checking test 079 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4372,7 +4372,7 @@ Test 079 cpld_restart_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_controlfrac_c384_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_controlfrac_c384_prod Checking test 080 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4428,7 +4428,7 @@ Test 080 cpld_controlfrac_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_restartfrac_c384_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_restartfrac_c384_prod Checking test 081 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4484,7 +4484,7 @@ Test 081 cpld_restartfrac_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_bmark_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_bmark_prod Checking test 082 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4540,7 +4540,7 @@ Test 082 cpld_bmark PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_restart_bmark_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_restart_bmark_prod Checking test 083 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4596,7 +4596,7 @@ Test 083 cpld_restart_bmark PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_bmarkfrac_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_bmarkfrac_prod Checking test 084 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4652,7 +4652,7 @@ Test 084 cpld_bmarkfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_restart_bmarkfrac_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_restart_bmarkfrac_prod Checking test 085 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4708,7 +4708,7 @@ Test 085 cpld_restart_bmarkfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_debug_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_debug_prod Checking test 086 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4761,7 +4761,7 @@ Test 086 cpld_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/cpld_debugfrac_prod +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_debugfrac_prod Checking test 087 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4814,7 +4814,7 @@ Test 087 cpld_debugfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/datm_control_cfsr Checking test 088 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4823,7 +4823,7 @@ Test 088 datm_control_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/datm_restart_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/datm_restart_cfsr Checking test 089 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4832,7 +4832,7 @@ Test 089 datm_restart_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/datm_control_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/datm_control_gefs Checking test 090 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4841,7 +4841,7 @@ Test 090 datm_control_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/datm_bulk_cfsr Checking test 091 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4850,7 +4850,7 @@ Test 091 datm_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/datm_bulk_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/datm_bulk_gefs Checking test 092 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4859,7 +4859,7 @@ Test 092 datm_bulk_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/datm_mx025_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/datm_mx025_cfsr Checking test 093 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4871,7 +4871,7 @@ Test 093 datm_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/datm_mx025_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/datm_mx025_gefs Checking test 094 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4883,7 +4883,7 @@ Test 094 datm_mx025_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_18272/datm_debug_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/datm_debug_cfsr Checking test 095 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -4892,5 +4892,5 @@ Test 095 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 5 18:14:37 EST 2021 -Elapsed time: 01h:19m:43s. Have a nice day! +Tue Feb 9 12:41:00 EST 2021 +Elapsed time: 01h:21m:03s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 4e2501299f..ac2809d760 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,16 +1,16 @@ -Fri Feb 5 18:40:14 UTC 2021 +Wed Feb 10 02:18:08 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfdlmp_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -51,14 +51,14 @@ Test 001 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/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 - 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 @@ -119,14 +119,14 @@ Test 002 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v16_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 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 @@ -199,7 +199,7 @@ Test 003 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -249,14 +249,14 @@ Test 004 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_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 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 @@ -317,14 +317,14 @@ Test 005 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_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 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 @@ -385,14 +385,14 @@ Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/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 - 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 @@ -453,14 +453,14 @@ Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_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 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 @@ -521,14 +521,14 @@ Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gsd_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd 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 @@ -579,24 +579,24 @@ Checking test 009 fv3_ccpp_gsd results .... Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -613,14 +613,14 @@ Test 009 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_thompson_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson 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 @@ -647,24 +647,24 @@ Checking test 010 fv3_ccpp_thompson results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -681,14 +681,14 @@ Test 010 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/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 - 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 @@ -715,24 +715,24 @@ Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -749,14 +749,14 @@ Test 011 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/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 - 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 @@ -783,24 +783,24 @@ Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -817,14 +817,14 @@ Test 012 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/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 - 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 @@ -885,9 +885,9 @@ Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.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-20210128/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_control_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_control_debug_prod Checking test 015 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -933,14 +933,14 @@ Test 015 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/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 - 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 @@ -1001,14 +1001,14 @@ Test 016 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v16_debug_prod Checking test 017 fv3_ccpp_gfs_v16_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 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 @@ -1069,14 +1069,14 @@ Test 017 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/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 - 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 @@ -1137,14 +1137,14 @@ Test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 019 fv3_ccpp_gfs_v16_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 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 @@ -1205,14 +1205,14 @@ Test 019 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_multigases_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/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 - 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 @@ -1239,24 +1239,24 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1279,14 +1279,14 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/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 - 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 @@ -1347,9 +1347,9 @@ Test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_175539/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -1365,5 +1365,5 @@ Test 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 5 22:25:58 UTC 2021 -Elapsed time: 03h:45m:45s. Have a nice day! +Wed Feb 10 10:38:37 UTC 2021 +Elapsed time: 08h:20m:29s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index e6988223de..6cccf700e8 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,16 +1,16 @@ -Sat Feb 6 03:19:22 UTC 2021 +Tue Feb 9 19:22:27 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_control_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control 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 @@ -71,14 +71,14 @@ Test 001 fv3_ccpp_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_decomp_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 @@ -139,14 +139,14 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_2threads_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads 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 @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_restart_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,14 +257,14 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_read_inc_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -325,14 +325,14 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -373,14 +373,14 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -421,14 +421,14 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK @@ -469,14 +469,14 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -517,14 +517,14 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -565,14 +565,14 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -613,14 +613,14 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_stochy_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_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 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 @@ -681,14 +681,14 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_ca_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 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 @@ -749,14 +749,14 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_lndp_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 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 @@ -817,14 +817,14 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_iau_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 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 phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -885,14 +885,14 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_lheatstrg_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -933,14 +933,14 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfdlmprad_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -982,14 +982,14 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1031,14 +1031,14 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 phyf006.nemsio .........OK Comparing dynf006.nemsio .........OK Comparing RESTART/coupler.res .........OK @@ -1080,14 +1080,14 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_multigases_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 @@ -1113,25 +1113,25 @@ Checking test 020 fv3_ccpp_multigases results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1154,14 +1154,14 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_control_32bit_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 @@ -1187,25 +1187,25 @@ Checking test 021 fv3_ccpp_control_32bit results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1222,46 +1222,46 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_stretched_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1278,55 +1278,55 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_stretched_nest_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.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 atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1345,29 +1345,29 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_regional_control_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK Test 024 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_regional_restart_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......OK Test 025 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_regional_quilt_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK + Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1376,9 +1376,9 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK + Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -1387,7 +1387,7 @@ Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_control_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1417,34 +1417,34 @@ Test 028 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK Test 029 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfdlmp_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1485,14 +1485,14 @@ Test 030 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1533,14 +1533,14 @@ Test 031 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1581,14 +1581,14 @@ Test 032 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_csawmg_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1629,14 +1629,14 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_satmedmf_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1677,14 +1677,14 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_satmedmfq_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1725,38 +1725,38 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.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/fv_core.res.nc ............ALT CHECK......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/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1773,14 +1773,14 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1790,25 +1790,25 @@ Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... 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 - 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/fv_core.res.nc ............ALT CHECK......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/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1825,38 +1825,38 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_cpt_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1879,14 +1879,14 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gsd_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 @@ -1936,25 +1936,25 @@ Checking test 039 fv3_ccpp_gsd results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1971,14 +1971,14 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_rap_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 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 @@ -2004,25 +2004,25 @@ Checking test 040 fv3_ccpp_rap results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2039,14 +2039,14 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_hrrr_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 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 @@ -2072,25 +2072,25 @@ Checking test 041 fv3_ccpp_hrrr results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2107,14 +2107,14 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_thompson_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 @@ -2140,25 +2140,25 @@ Checking test 042 fv3_ccpp_thompson results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2175,14 +2175,14 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 @@ -2208,25 +2208,25 @@ Checking test 043 fv3_ccpp_thompson_no_aero results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2243,14 +2243,14 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 @@ -2276,25 +2276,25 @@ Checking test 044 fv3_ccpp_rrfs_v1beta results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2311,14 +2311,14 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 @@ -2379,14 +2379,14 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v16_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v16_prod Checking test 046 fv3_ccpp_gfs_v16 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 @@ -2459,7 +2459,7 @@ Test 046 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v16_restart_prod Checking test 047 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2509,14 +2509,14 @@ Test 047 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v16_stochy_prod Checking test 048 fv3_ccpp_gfs_v16_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 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 @@ -2577,14 +2577,14 @@ Test 048 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 @@ -2645,14 +2645,14 @@ Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v16_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 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 @@ -2713,7 +2713,7 @@ Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 @@ -2775,14 +2775,14 @@ Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2823,14 +2823,14 @@ Test 052 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2871,14 +2871,14 @@ Test 053 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gocart_clm_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2919,14 +2919,14 @@ Test 054 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v16_flake_prod Checking test 055 fv3_ccpp_gfs_v16_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 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 @@ -2987,14 +2987,14 @@ Test 055 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 @@ -3055,9 +3055,9 @@ Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -3073,14 +3073,14 @@ Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 @@ -3141,14 +3141,14 @@ Test 058 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v16_debug_prod Checking test 059 fv3_ccpp_gfs_v16_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 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 @@ -3209,14 +3209,14 @@ Test 059 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 @@ -3277,14 +3277,14 @@ Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16_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 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 @@ -3345,14 +3345,14 @@ Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gsd_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 @@ -3378,25 +3378,25 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3413,14 +3413,14 @@ Test 062 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 @@ -3446,25 +3446,25 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3481,14 +3481,14 @@ Test 063 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_thompson_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 @@ -3514,25 +3514,25 @@ Checking test 064 fv3_ccpp_thompson_debug results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3549,14 +3549,14 @@ Test 064 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 @@ -3582,25 +3582,25 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3617,14 +3617,14 @@ Test 065 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 @@ -3650,25 +3650,25 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3685,14 +3685,14 @@ Test 066 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 - 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 @@ -3753,9 +3753,9 @@ Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3771,7 +3771,7 @@ Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_control_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3824,7 +3824,7 @@ Test 069 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restart_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3877,7 +3877,7 @@ Test 070 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_controlfrac_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3930,7 +3930,7 @@ Test 071 cpld_controlfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restartfrac_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3983,7 +3983,7 @@ Test 072 cpld_restartfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_2threads_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4036,7 +4036,7 @@ Test 073 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_decomp_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4089,7 +4089,7 @@ Test 074 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_satmedmf_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4142,7 +4142,7 @@ Test 075 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_ca_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4195,7 +4195,7 @@ Test 076 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_control_c192_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4248,7 +4248,7 @@ Test 077 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restart_c192_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4301,7 +4301,7 @@ Test 078 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_controlfrac_c192_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4354,7 +4354,7 @@ Test 079 cpld_controlfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restartfrac_c192_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4407,7 +4407,7 @@ Test 080 cpld_restartfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_control_c384_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4463,7 +4463,7 @@ Test 081 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restart_c384_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4519,7 +4519,7 @@ Test 082 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_controlfrac_c384_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4575,7 +4575,7 @@ Test 083 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restartfrac_c384_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4631,7 +4631,7 @@ Test 084 cpld_restartfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_bmark_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4687,7 +4687,7 @@ Test 085 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restart_bmark_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4743,7 +4743,7 @@ Test 086 cpld_restart_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_bmarkfrac_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4799,7 +4799,7 @@ Test 087 cpld_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restart_bmarkfrac_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4855,7 +4855,7 @@ Test 088 cpld_restart_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_bmarkfrac_v16_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4911,7 +4911,7 @@ Test 089 cpld_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_restart_bmarkfrac_v16_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4967,7 +4967,7 @@ Test 090 cpld_restart_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_bmark_wave_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5026,7 +5026,7 @@ Test 091 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_bmarkfrac_wave_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5085,7 +5085,7 @@ Test 092 cpld_bmarkfrac_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_bmarkfrac_wave_v16_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5144,7 +5144,7 @@ Test 093 cpld_bmarkfrac_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_control_wave_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_control_wave_prod Checking test 094 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5200,7 +5200,7 @@ Test 094 cpld_control_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_debug_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_debug_prod Checking test 095 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5253,7 +5253,7 @@ Test 095 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/cpld_debugfrac_prod +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_debugfrac_prod Checking test 096 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5306,7 +5306,7 @@ Test 096 cpld_debugfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/datm_control_cfsr +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/datm_control_cfsr Checking test 097 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5315,7 +5315,7 @@ Test 097 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/datm_restart_cfsr +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/datm_restart_cfsr Checking test 098 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5324,7 +5324,7 @@ Test 098 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/datm_control_gefs +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/datm_control_gefs Checking test 099 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5333,7 +5333,7 @@ Test 099 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/datm_bulk_cfsr +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/datm_bulk_cfsr Checking test 100 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5342,7 +5342,7 @@ Test 100 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/datm_bulk_gefs +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/datm_bulk_gefs Checking test 101 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5351,7 +5351,7 @@ Test 101 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/datm_mx025_cfsr +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/datm_mx025_cfsr Checking test 102 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5363,7 +5363,7 @@ Test 102 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/datm_mx025_gefs +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/datm_mx025_gefs Checking test 103 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5375,7 +5375,7 @@ Test 103 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191433/datm_debug_cfsr +working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/datm_debug_cfsr Checking test 104 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5384,5 +5384,5 @@ Test 104 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sat Feb 6 06:35:00 UTC 2021 -Elapsed time: 03h:15m:39s. Have a nice day! +Wed Feb 10 10:46:51 UTC 2021 +Elapsed time: 15h:24m:25s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index e65373985f..5acedd14a0 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,16 +1,16 @@ -Fri Feb 5 12:53:25 CST 2021 +Wed Feb 10 17:23:07 CST 2021 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control 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 @@ -71,14 +71,14 @@ Test 001 fv3_ccpp_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 @@ -139,14 +139,14 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads 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 @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,14 +257,14 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -325,14 +325,14 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -373,14 +373,14 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -421,18 +421,18 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........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 @@ -469,14 +469,14 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -517,14 +517,14 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -565,14 +565,14 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -613,14 +613,14 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_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 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 @@ -681,14 +681,14 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 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 @@ -749,14 +749,14 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_lndp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 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 @@ -817,14 +817,14 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 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 phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -885,14 +885,14 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_lheatstrg_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -933,14 +933,14 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -982,14 +982,14 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1031,14 +1031,14 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 phyf006.nemsio .........OK Comparing dynf006.nemsio .........OK Comparing RESTART/coupler.res .........OK @@ -1080,14 +1080,14 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 @@ -1113,25 +1113,25 @@ Checking test 020 fv3_ccpp_multigases results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1154,14 +1154,14 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 @@ -1187,25 +1187,25 @@ Checking test 021 fv3_ccpp_control_32bit results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1222,46 +1222,46 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1278,55 +1278,55 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.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 atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1345,29 +1345,29 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK Test 024 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......OK Test 025 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK + Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1376,9 +1376,9 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK + Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -1387,7 +1387,7 @@ Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1417,34 +1417,34 @@ Test 028 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK Test 029 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1485,14 +1485,14 @@ Test 030 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1533,14 +1533,14 @@ Test 031 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1581,14 +1581,14 @@ Test 032 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1629,14 +1629,14 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1677,14 +1677,14 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_satmedmfq_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1725,38 +1725,38 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.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/fv_core.res.nc ............ALT CHECK......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/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1773,14 +1773,14 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1790,25 +1790,25 @@ Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... 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 - 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/fv_core.res.nc ............ALT CHECK......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/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1825,38 +1825,38 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1879,14 +1879,14 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 @@ -1936,25 +1936,25 @@ Checking test 039 fv3_ccpp_gsd results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1971,14 +1971,14 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_rap_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 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 @@ -2004,25 +2004,25 @@ Checking test 040 fv3_ccpp_rap results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2039,14 +2039,14 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_hrrr_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 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 @@ -2072,25 +2072,25 @@ Checking test 041 fv3_ccpp_hrrr results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2107,14 +2107,14 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 @@ -2140,25 +2140,25 @@ Checking test 042 fv3_ccpp_thompson results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2175,14 +2175,14 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 @@ -2208,25 +2208,25 @@ Checking test 043 fv3_ccpp_thompson_no_aero results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2243,14 +2243,14 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 @@ -2276,25 +2276,25 @@ Checking test 044 fv3_ccpp_rrfs_v1beta results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2311,14 +2311,14 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 @@ -2379,14 +2379,14 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v16_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v16_prod Checking test 046 fv3_ccpp_gfs_v16 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 @@ -2459,7 +2459,7 @@ Test 046 fv3_ccpp_gfs_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v16_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v16_restart_prod Checking test 047 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2509,14 +2509,14 @@ Test 047 fv3_ccpp_gfs_v16_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v16_stochy_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v16_stochy_prod Checking test 048 fv3_ccpp_gfs_v16_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 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 @@ -2577,14 +2577,14 @@ Test 048 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 @@ -2645,14 +2645,14 @@ Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v16_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 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 @@ -2713,7 +2713,7 @@ Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 @@ -2775,14 +2775,14 @@ Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2823,14 +2823,14 @@ Test 052 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2871,14 +2871,14 @@ Test 053 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2919,14 +2919,14 @@ Test 054 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v16_flake_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v16_flake_prod Checking test 055 fv3_ccpp_gfs_v16_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 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 @@ -2987,14 +2987,14 @@ Test 055 fv3_ccpp_gfs_v16_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 @@ -3055,9 +3055,9 @@ Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -3073,14 +3073,14 @@ Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 @@ -3141,14 +3141,14 @@ Test 058 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v16_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v16_debug_prod Checking test 059 fv3_ccpp_gfs_v16_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 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 @@ -3209,14 +3209,14 @@ Test 059 fv3_ccpp_gfs_v16_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 @@ -3277,14 +3277,14 @@ Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16_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 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 @@ -3345,14 +3345,14 @@ Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 @@ -3378,25 +3378,25 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3413,14 +3413,14 @@ Test 062 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 @@ -3446,25 +3446,25 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3481,14 +3481,14 @@ Test 063 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 @@ -3514,25 +3514,25 @@ Checking test 064 fv3_ccpp_thompson_debug results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3549,14 +3549,14 @@ Test 064 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 @@ -3582,25 +3582,25 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3617,14 +3617,14 @@ Test 065 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 @@ -3650,25 +3650,25 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3685,14 +3685,14 @@ Test 066 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 - 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 @@ -3753,9 +3753,9 @@ Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3771,7 +3771,7 @@ Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3824,7 +3824,7 @@ Test 069 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3877,7 +3877,7 @@ Test 070 cpld_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_controlfrac_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3930,7 +3930,7 @@ Test 071 cpld_controlfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restartfrac_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3983,7 +3983,7 @@ Test 072 cpld_restartfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_2threads_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4036,7 +4036,7 @@ Test 073 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_decomp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4089,7 +4089,7 @@ Test 074 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_satmedmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4142,7 +4142,7 @@ Test 075 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_ca_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4195,7 +4195,7 @@ Test 076 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_control_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4248,7 +4248,7 @@ Test 077 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restart_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4301,7 +4301,7 @@ Test 078 cpld_restart_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_controlfrac_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4354,7 +4354,7 @@ Test 079 cpld_controlfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restartfrac_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4407,7 +4407,7 @@ Test 080 cpld_restartfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_control_c384_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4463,7 +4463,7 @@ Test 081 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restart_c384_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4519,7 +4519,7 @@ Test 082 cpld_restart_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_controlfrac_c384_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4575,7 +4575,7 @@ Test 083 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restartfrac_c384_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4631,7 +4631,7 @@ Test 084 cpld_restartfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_bmark_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4687,7 +4687,7 @@ Test 085 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restart_bmark_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4743,7 +4743,7 @@ Test 086 cpld_restart_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_bmarkfrac_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4799,7 +4799,7 @@ Test 087 cpld_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restart_bmarkfrac_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4855,7 +4855,7 @@ Test 088 cpld_restart_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_bmarkfrac_v16_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4911,7 +4911,7 @@ Test 089 cpld_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_restart_bmarkfrac_v16_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4967,7 +4967,7 @@ Test 090 cpld_restart_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_bmark_wave_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5026,7 +5026,7 @@ Test 091 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_bmarkfrac_wave_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5085,7 +5085,7 @@ Test 092 cpld_bmarkfrac_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_bmarkfrac_wave_v16_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5144,7 +5144,7 @@ Test 093 cpld_bmarkfrac_wave_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_control_wave_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_control_wave_prod Checking test 094 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5200,7 +5200,7 @@ Test 094 cpld_control_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_debug_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_debug_prod Checking test 095 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5253,7 +5253,7 @@ Test 095 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/cpld_debugfrac_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_debugfrac_prod Checking test 096 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5306,7 +5306,7 @@ Test 096 cpld_debugfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/datm_control_cfsr Checking test 097 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5315,7 +5315,7 @@ Test 097 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/datm_restart_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/datm_restart_cfsr Checking test 098 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5324,7 +5324,7 @@ Test 098 datm_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/datm_control_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/datm_control_gefs Checking test 099 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5333,7 +5333,7 @@ Test 099 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/datm_bulk_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/datm_bulk_cfsr Checking test 100 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5342,7 +5342,7 @@ Test 100 datm_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/datm_bulk_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/datm_bulk_gefs Checking test 101 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5351,7 +5351,7 @@ Test 101 datm_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/datm_mx025_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/datm_mx025_cfsr Checking test 102 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5363,7 +5363,7 @@ Test 102 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/datm_mx025_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/datm_mx025_gefs Checking test 103 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5375,13 +5375,14 @@ Test 103 datm_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_262387/datm_debug_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/datm_debug_cfsr Checking test 104 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 104 datm_debug_cfsr PASS -REGRESSION TEST FAILED -Fri Feb 5 14:17:06 CST 2021 -Elapsed time: 01h:23m:41s. Have a nice day! + +REGRESSION TEST WAS SUCCESSFUL +Wed Feb 10 19:24:32 CST 2021 +Elapsed time: 02h:01m:25s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index fceeea5d2a..9f135ab779 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,16 +1,16 @@ -Fri Feb 5 18:49:39 UTC 2021 +Tue Feb 9 16:00:59 UTC 2021 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control 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 @@ -71,14 +71,14 @@ Test 001 fv3_ccpp_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 @@ -139,14 +139,14 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads 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 @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,14 +257,14 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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 phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -325,14 +325,14 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -373,14 +373,14 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -421,14 +421,14 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -469,14 +469,14 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -517,14 +517,14 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -565,14 +565,14 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -613,14 +613,14 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_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 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 @@ -681,14 +681,14 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_ca_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 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 @@ -749,14 +749,14 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_lndp_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 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 @@ -817,14 +817,14 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 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 phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -885,14 +885,14 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -933,14 +933,14 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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 @@ -966,25 +966,25 @@ Checking test 017 fv3_ccpp_multigases results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1007,14 +1007,14 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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 @@ -1040,25 +1040,25 @@ Checking test 018 fv3_ccpp_control_32bit results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1075,46 +1075,46 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1131,55 +1131,55 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.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 atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1198,29 +1198,29 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......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 baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......OK Test 022 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK + Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1229,9 +1229,9 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK + Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1240,7 +1240,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1270,34 +1270,34 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1338,14 +1338,14 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1386,14 +1386,14 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1434,14 +1434,14 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1482,14 +1482,14 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1530,14 +1530,14 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1578,38 +1578,38 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 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.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/fv_core.res.nc ............ALT CHECK......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/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1626,14 +1626,14 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1643,25 +1643,25 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... 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 - 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/fv_core.res.nc ............ALT CHECK......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/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1678,38 +1678,38 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1732,14 +1732,14 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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 @@ -1789,25 +1789,25 @@ Checking test 036 fv3_ccpp_gsd results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1824,14 +1824,14 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_rap_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 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 @@ -1857,25 +1857,25 @@ Checking test 037 fv3_ccpp_rap results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1892,14 +1892,14 @@ Test 037 fv3_ccpp_rap PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_hrrr_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 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 @@ -1925,25 +1925,25 @@ Checking test 038 fv3_ccpp_hrrr results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1960,14 +1960,14 @@ Test 038 fv3_ccpp_hrrr PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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 @@ -1993,25 +1993,25 @@ Checking test 039 fv3_ccpp_thompson results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2028,14 +2028,14 @@ Test 039 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 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 @@ -2061,25 +2061,25 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2096,14 +2096,14 @@ Test 040 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 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 @@ -2129,25 +2129,25 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2164,14 +2164,14 @@ Test 041 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 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 @@ -2232,14 +2232,14 @@ Test 042 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v16_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v16_prod Checking test 043 fv3_ccpp_gfs_v16 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 @@ -2312,7 +2312,7 @@ Test 043 fv3_ccpp_gfs_v16 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v16_restart_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v16_restart_prod Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2362,14 +2362,14 @@ Test 044 fv3_ccpp_gfs_v16_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v16_stochy_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v16_stochy_prod Checking test 045 fv3_ccpp_gfs_v16_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 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 @@ -2430,14 +2430,14 @@ Test 045 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 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 @@ -2498,14 +2498,14 @@ Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16_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 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 @@ -2566,7 +2566,7 @@ Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 @@ -2628,14 +2628,14 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2676,14 +2676,14 @@ Test 049 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2724,14 +2724,14 @@ Test 050 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2772,14 +2772,14 @@ Test 051 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v16_flake_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v16_flake_prod Checking test 052 fv3_ccpp_gfs_v16_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 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 @@ -2840,14 +2840,14 @@ Test 052 fv3_ccpp_gfs_v16_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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 @@ -2908,9 +2908,9 @@ Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -2926,14 +2926,14 @@ Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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 @@ -2994,14 +2994,14 @@ Test 055 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v16_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v16_debug_prod Checking test 056 fv3_ccpp_gfs_v16_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 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 @@ -3062,14 +3062,14 @@ Test 056 fv3_ccpp_gfs_v16_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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 @@ -3130,14 +3130,14 @@ Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 058 fv3_ccpp_gfs_v16_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 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 @@ -3198,14 +3198,14 @@ Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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 @@ -3231,25 +3231,25 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3266,14 +3266,14 @@ Test 059 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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 @@ -3299,25 +3299,25 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3334,14 +3334,14 @@ Test 060 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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 @@ -3367,25 +3367,25 @@ Checking test 061 fv3_ccpp_thompson_debug results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3402,14 +3402,14 @@ Test 061 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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 @@ -3435,25 +3435,25 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3470,14 +3470,14 @@ Test 062 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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 @@ -3503,25 +3503,25 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3538,14 +3538,14 @@ Test 063 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 - 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 @@ -3606,9 +3606,9 @@ Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_25462/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3624,5 +3624,5 @@ Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 5 19:29:28 UTC 2021 -Elapsed time: 00h:39m:50s. Have a nice day! +Tue Feb 9 16:39:09 UTC 2021 +Elapsed time: 00h:38m:11s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 52a40db530..20d18a4ab5 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,16 +1,16 @@ -Fri Feb 5 18:46:41 UTC 2021 +Wed Feb 10 04:20:29 UTC 2021 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control 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 @@ -71,14 +71,14 @@ Test 001 fv3_ccpp_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 @@ -139,14 +139,14 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads 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 @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,14 +257,14 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -325,14 +325,14 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -373,14 +373,14 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -421,18 +421,18 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......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.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.nc .........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 @@ -469,14 +469,14 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -517,14 +517,14 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -565,14 +565,14 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -613,14 +613,14 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_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 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 @@ -681,14 +681,14 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_ca_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 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 @@ -749,14 +749,14 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_lndp_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 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 @@ -817,14 +817,14 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 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 phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -885,14 +885,14 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -933,14 +933,14 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -982,14 +982,14 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1031,14 +1031,14 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 @@ -1064,25 +1064,25 @@ Checking test 019 fv3_ccpp_multigases results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1105,14 +1105,14 @@ Test 019 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 @@ -1138,25 +1138,25 @@ Checking test 020 fv3_ccpp_control_32bit results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1173,46 +1173,46 @@ Test 020 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1229,55 +1229,55 @@ Test 021 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.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 atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1296,29 +1296,29 @@ Test 022 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK Test 023 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......OK Test 024 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK + Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1327,18 +1327,18 @@ Test 025 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 026 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK + Comparing atmos_4xdaily.nc ............ALT CHECK......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-20210128/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1368,34 +1368,34 @@ Test 027 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK Test 028 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1436,14 +1436,14 @@ Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1484,14 +1484,14 @@ Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1532,14 +1532,14 @@ Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1580,14 +1580,14 @@ Test 032 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1628,14 +1628,14 @@ Test 033 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1676,38 +1676,38 @@ Test 034 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.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/fv_core.res.nc ............ALT CHECK......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/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1724,14 +1724,14 @@ Test 035 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1741,25 +1741,25 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... 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 - 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/fv_core.res.nc ............ALT CHECK......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/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1776,38 +1776,38 @@ Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1830,14 +1830,14 @@ Test 037 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 @@ -1887,25 +1887,25 @@ Checking test 038 fv3_ccpp_gsd results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1922,14 +1922,14 @@ Test 038 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_rap_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 @@ -1955,25 +1955,25 @@ Checking test 039 fv3_ccpp_rap results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1990,14 +1990,14 @@ Test 039 fv3_ccpp_rap PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_hrrr_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 @@ -2023,25 +2023,25 @@ Checking test 040 fv3_ccpp_hrrr results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2058,14 +2058,14 @@ Test 040 fv3_ccpp_hrrr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 @@ -2091,25 +2091,25 @@ Checking test 041 fv3_ccpp_thompson results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2126,14 +2126,14 @@ Test 041 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 @@ -2159,25 +2159,25 @@ Checking test 042 fv3_ccpp_thompson_no_aero results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2194,14 +2194,14 @@ Test 042 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 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 @@ -2227,25 +2227,25 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -2262,14 +2262,14 @@ Test 043 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 @@ -2330,14 +2330,14 @@ Test 044 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v16_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v16_prod Checking test 045 fv3_ccpp_gfs_v16 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 @@ -2410,7 +2410,7 @@ Test 045 fv3_ccpp_gfs_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v16_restart_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v16_restart_prod Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2460,14 +2460,14 @@ Test 046 fv3_ccpp_gfs_v16_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v16_stochy_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v16_stochy_prod Checking test 047 fv3_ccpp_gfs_v16_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 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 @@ -2528,14 +2528,14 @@ Test 047 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 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 @@ -2596,14 +2596,14 @@ Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 049 fv3_ccpp_gfs_v16_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 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 @@ -2664,7 +2664,7 @@ Test 049 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 @@ -2726,14 +2726,14 @@ Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2774,14 +2774,14 @@ Test 051 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2822,14 +2822,14 @@ Test 052 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2870,14 +2870,14 @@ Test 053 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v16_flake_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v16_flake_prod Checking test 054 fv3_ccpp_gfs_v16_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 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 @@ -2938,14 +2938,14 @@ Test 054 fv3_ccpp_gfs_v16_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 @@ -3006,9 +3006,9 @@ Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -3024,14 +3024,14 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 @@ -3092,14 +3092,14 @@ Test 057 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v16_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v16_debug_prod Checking test 058 fv3_ccpp_gfs_v16_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 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 @@ -3160,14 +3160,14 @@ Test 058 fv3_ccpp_gfs_v16_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 @@ -3228,14 +3228,14 @@ Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v16_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 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 @@ -3296,14 +3296,14 @@ Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 @@ -3329,25 +3329,25 @@ Checking test 061 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3364,14 +3364,14 @@ Test 061 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 @@ -3397,25 +3397,25 @@ Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3432,14 +3432,14 @@ Test 062 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 @@ -3465,25 +3465,25 @@ Checking test 063 fv3_ccpp_thompson_debug results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3500,14 +3500,14 @@ Test 063 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 @@ -3533,25 +3533,25 @@ Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3568,14 +3568,14 @@ Test 064 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 @@ -3601,25 +3601,25 @@ Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3636,14 +3636,14 @@ Test 065 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 - 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 @@ -3704,9 +3704,9 @@ Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3722,7 +3722,7 @@ Test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_control_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_control_prod Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3775,7 +3775,7 @@ Test 068 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restart_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restart_prod Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3828,7 +3828,7 @@ Test 069 cpld_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_controlfrac_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_controlfrac_prod Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3881,7 +3881,7 @@ Test 070 cpld_controlfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restartfrac_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restartfrac_prod Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3934,7 +3934,7 @@ Test 071 cpld_restartfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_2threads_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_2threads_prod Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3987,7 +3987,7 @@ Test 072 cpld_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_decomp_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_decomp_prod Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4040,7 +4040,7 @@ Test 073 cpld_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_satmedmf_prod Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4093,7 +4093,7 @@ Test 074 cpld_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_ca_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_ca_prod Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4146,7 +4146,7 @@ Test 075 cpld_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_control_c192_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_control_c192_prod Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4199,7 +4199,7 @@ Test 076 cpld_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restart_c192_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restart_c192_prod Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4252,7 +4252,7 @@ Test 077 cpld_restart_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_controlfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_controlfrac_c192_prod Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4305,7 +4305,7 @@ Test 078 cpld_controlfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restartfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restartfrac_c192_prod Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4358,7 +4358,7 @@ Test 079 cpld_restartfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_control_c384_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_control_c384_prod Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4414,7 +4414,7 @@ Test 080 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restart_c384_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restart_c384_prod Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4470,7 +4470,7 @@ Test 081 cpld_restart_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_controlfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_controlfrac_c384_prod Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4526,7 +4526,7 @@ Test 082 cpld_controlfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restartfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restartfrac_c384_prod Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4582,7 +4582,7 @@ Test 083 cpld_restartfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_bmark_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_bmark_prod Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4638,7 +4638,7 @@ Test 084 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restart_bmark_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restart_bmark_prod Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4694,7 +4694,7 @@ Test 085 cpld_restart_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_bmarkfrac_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_bmarkfrac_prod Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4750,7 +4750,7 @@ Test 086 cpld_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restart_bmarkfrac_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restart_bmarkfrac_prod Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4806,7 +4806,7 @@ Test 087 cpld_restart_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_bmarkfrac_v16_prod Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4862,7 +4862,7 @@ Test 088 cpld_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_restart_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restart_bmarkfrac_v16_prod Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4918,7 +4918,7 @@ Test 089 cpld_restart_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_bmark_wave_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_bmark_wave_prod Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4977,7 +4977,7 @@ Test 090 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_bmarkfrac_wave_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_bmarkfrac_wave_prod Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5036,7 +5036,7 @@ Test 091 cpld_bmarkfrac_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_bmarkfrac_wave_v16_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_bmarkfrac_wave_v16_prod Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5095,7 +5095,7 @@ Test 092 cpld_bmarkfrac_wave_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_control_wave_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_control_wave_prod Checking test 093 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5151,7 +5151,7 @@ Test 093 cpld_control_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_debug_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_debug_prod Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5204,7 +5204,7 @@ Test 094 cpld_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/cpld_debugfrac_prod +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_debugfrac_prod Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5257,7 +5257,7 @@ Test 095 cpld_debugfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 @@ -5266,7 +5266,7 @@ Test 096 datm_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/datm_restart_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 @@ -5275,7 +5275,7 @@ Test 097 datm_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 @@ -5284,7 +5284,7 @@ Test 098 datm_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 @@ -5293,7 +5293,7 @@ Test 099 datm_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 @@ -5302,7 +5302,7 @@ Test 100 datm_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5314,7 +5314,7 @@ Test 101 datm_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5326,7 +5326,7 @@ Test 102 datm_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_191883/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/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 @@ -5335,5 +5335,5 @@ Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 5 21:37:45 UTC 2021 -Elapsed time: 02h:51m:08s. Have a nice day! +Wed Feb 10 09:33:02 UTC 2021 +Elapsed time: 05h:12m:35s. Have a nice day! From d6a0b8cf636b92f821302ec152803ea80806ba49 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Fri, 12 Feb 2021 09:09:27 -0500 Subject: [PATCH 068/109] add optional mesh in MOM6; add dz_min and min_seaice as configurable variables for coupled model (#399) *Implements an optional setting in the cpld and datm nems.configure files to specify whether the MOM6 cap should use a mesh or a grid *Adds configurable settings for min_seaice to gfs_physics_nml and dz_min to fv_core_nml. --- MOM6-interface/MOM6 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 50 +- tests/RegressionTests_cheyenne.intel.log | 202 +-- tests/RegressionTests_gaea.intel.log | 200 +-- tests/RegressionTests_hera.gnu.log | 50 +- tests/RegressionTests_hera.intel.log | 216 +-- tests/RegressionTests_jet.intel.log | 1550 ++++++++++------------ tests/RegressionTests_orion.intel.log | 214 +-- tests/RegressionTests_wcoss_cray.log | 136 +- tests/RegressionTests_wcoss_dell_p3.log | 218 +-- tests/default_vars.sh | 9 +- tests/parm/input.benchmark_ccpp.nml.IN | 3 +- tests/parm/input.benchmark_v16.nml.IN | 2 + tests/parm/input.mom6_ccpp.nml.IN | 2 + tests/parm/nems.configure.cpld.IN | 6 +- tests/parm/nems.configure.cpld_wave.IN | 6 +- tests/parm/nems.configure.datm.IN | 6 +- tests/tests/cpld_bmark | 2 +- tests/tests/cpld_bmark_35d | 2 +- tests/tests/cpld_bmark_wave | 2 +- tests/tests/cpld_bmark_wave_35d | 2 +- tests/tests/cpld_bmarkfrac | 2 +- tests/tests/cpld_bmarkfrac_v16 | 3 +- tests/tests/cpld_bmarkfrac_wave | 2 +- tests/tests/cpld_bmarkfrac_wave_35d | 2 +- tests/tests/cpld_bmarkfrac_wave_v16 | 3 +- tests/tests/cpld_bmarkfrac_wave_v16_35d | 3 +- tests/tests/cpld_control_c192 | 2 +- tests/tests/cpld_control_c384 | 2 +- tests/tests/cpld_controlfrac_c192 | 2 +- tests/tests/cpld_controlfrac_c384 | 2 +- tests/tests/cpld_restart_bmark | 2 +- tests/tests/cpld_restart_bmarkfrac | 2 +- tests/tests/cpld_restart_bmarkfrac_v16 | 3 +- tests/tests/cpld_restart_c192 | 2 +- tests/tests/cpld_restart_c384 | 2 +- tests/tests/cpld_restartfrac_c192 | 2 +- tests/tests/cpld_restartfrac_c384 | 2 +- tests/tests/datm_mx025_cfsr | 2 +- tests/tests/datm_mx025_gefs | 2 +- 40 files changed, 1399 insertions(+), 1523 deletions(-) diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index d531a324a9..cdc7690f41 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit d531a324a91f5de652055cbd8adfd84c4e75be30 +Subproject commit cdc7690f41fb747df435a07b92dcf3fa02420a6b diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 25059f8218..14ce806cba 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Tue Feb 9 08:55:18 MST 2021 +Thu Feb 11 07:35:12 MST 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -51,7 +51,7 @@ Test 001 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......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-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v16_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -199,7 +199,7 @@ Test 003 fv3_ccpp_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v16_restart_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -249,7 +249,7 @@ Test 004 fv3_ccpp_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v16_stochy_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -317,7 +317,7 @@ Test 005 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v16_flake_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -385,7 +385,7 @@ Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......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-20210128/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -521,7 +521,7 @@ Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gsd_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -613,7 +613,7 @@ Test 009 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -681,7 +681,7 @@ Test 010 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......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-20210128/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......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-20210128/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......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-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc ............ALT CHECK......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-20210128/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/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-20210128/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v15p2_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......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-20210128/GNU/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v16_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_debug_prod Checking test 017 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1069,7 +1069,7 @@ Test 017 fv3_ccpp_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......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-20210128/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 019 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1205,7 +1205,7 @@ Test 019 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_multigases_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1279,7 +1279,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......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-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_12428/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_56057/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 ............ALT CHECK......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 Feb 9 09:13:31 MST 2021 -Elapsed time: 00h:18m:13s. Have a nice day! +Thu Feb 11 07:53:31 MST 2021 +Elapsed time: 00h:18m:20s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 64ee598f75..850ed8a7c9 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Tue Feb 9 08:55:07 MST 2021 +Thu Feb 11 07:34:17 MST 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_control_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_decomp_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_2threads_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_restart_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -431,7 +431,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_stochy_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_ca_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_lndp_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_iau_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_multigases_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1075,7 +1075,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_stretched_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1131,7 +1131,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1198,7 +1198,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -1209,7 +1209,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -1218,7 +1218,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK @@ -1229,7 +1229,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK @@ -1240,7 +1240,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1270,7 +1270,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_stretched_nest_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK @@ -1290,7 +1290,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1338,7 +1338,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfdlmprad_gwd_prod Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1386,7 +1386,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1434,7 +1434,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1482,7 +1482,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1530,7 +1530,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1578,7 +1578,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfdlmp_32bit_prod Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1626,7 +1626,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1678,7 +1678,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_cpt_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1732,7 +1732,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gsd_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1824,7 +1824,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_rap_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1892,7 +1892,7 @@ Test 037 fv3_ccpp_rap PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_hrrr_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1960,7 +1960,7 @@ Test 038 fv3_ccpp_hrrr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2028,7 +2028,7 @@ Test 039 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_thompson_no_aero_prod Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2096,7 +2096,7 @@ Test 040 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_rrfs_v1beta_prod Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2164,7 +2164,7 @@ Test 041 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v16_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_prod Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2244,7 +2244,7 @@ Test 042 fv3_ccpp_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v16_restart_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_restart_prod Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2294,7 +2294,7 @@ Test 043 fv3_ccpp_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v16_stochy_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_stochy_prod Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2362,7 +2362,7 @@ Test 044 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2430,7 +2430,7 @@ Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2492,7 +2492,7 @@ Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gocart_clm_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gocart_clm_prod Checking test 047 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2540,7 +2540,7 @@ Test 047 fv3_ccpp_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v16_flake_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_flake_prod Checking test 048 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2608,7 +2608,7 @@ Test 048 fv3_ccpp_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2676,7 +2676,7 @@ Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -2694,7 +2694,7 @@ Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v15p2_debug_prod Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2762,7 +2762,7 @@ Test 051 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v16_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_debug_prod Checking test 052 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2830,7 +2830,7 @@ Test 052 fv3_ccpp_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2898,7 +2898,7 @@ Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2966,7 +2966,7 @@ Test 054 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gsd_debug_prod Checking test 055 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3034,7 +3034,7 @@ Test 055 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gsd_diag3d_debug_prod Checking test 056 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3102,7 +3102,7 @@ Test 056 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_thompson_debug_prod Checking test 057 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3170,7 +3170,7 @@ Test 057 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_thompson_no_aero_debug_prod Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3238,7 +3238,7 @@ Test 058 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3306,7 +3306,7 @@ Test 059 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3374,7 +3374,7 @@ Test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/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 ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -3392,7 +3392,7 @@ Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_control_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_control_prod Checking test 062 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3445,7 +3445,7 @@ Test 062 cpld_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restart_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_prod Checking test 063 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3498,7 +3498,7 @@ Test 063 cpld_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_controlfrac_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_controlfrac_prod Checking test 064 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3551,7 +3551,7 @@ Test 064 cpld_controlfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restartfrac_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restartfrac_prod Checking test 065 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3604,7 +3604,7 @@ Test 065 cpld_restartfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_2threads_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_2threads_prod Checking test 066 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3657,7 +3657,7 @@ Test 066 cpld_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_decomp_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_decomp_prod Checking test 067 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3710,7 +3710,7 @@ Test 067 cpld_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_satmedmf_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_satmedmf_prod Checking test 068 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3763,7 +3763,7 @@ Test 068 cpld_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_ca_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_ca_prod Checking test 069 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3816,7 +3816,7 @@ Test 069 cpld_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_control_c192_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_control_c192_prod Checking test 070 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3869,7 +3869,7 @@ Test 070 cpld_control_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restart_c192_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_c192_prod Checking test 071 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3922,7 +3922,7 @@ Test 071 cpld_restart_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_controlfrac_c192_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_controlfrac_c192_prod Checking test 072 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3975,7 +3975,7 @@ Test 072 cpld_controlfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restartfrac_c192_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restartfrac_c192_prod Checking test 073 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4028,7 +4028,7 @@ Test 073 cpld_restartfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_control_c384_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_control_c384_prod Checking test 074 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4084,7 +4084,7 @@ Test 074 cpld_control_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restart_c384_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_c384_prod Checking test 075 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4140,7 +4140,7 @@ Test 075 cpld_restart_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_controlfrac_c384_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_controlfrac_c384_prod Checking test 076 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4196,7 +4196,7 @@ Test 076 cpld_controlfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restartfrac_c384_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restartfrac_c384_prod Checking test 077 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4252,7 +4252,7 @@ Test 077 cpld_restartfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_bmark_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmark_prod Checking test 078 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4308,7 +4308,7 @@ Test 078 cpld_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restart_bmark_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_bmark_prod Checking test 079 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4364,7 +4364,7 @@ Test 079 cpld_restart_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_bmarkfrac_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmarkfrac_prod Checking test 080 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4420,7 +4420,7 @@ Test 080 cpld_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restart_bmarkfrac_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_bmarkfrac_prod Checking test 081 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4476,7 +4476,7 @@ Test 081 cpld_restart_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_bmarkfrac_v16_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmarkfrac_v16_prod Checking test 082 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4532,7 +4532,7 @@ Test 082 cpld_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_restart_bmarkfrac_v16_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_bmarkfrac_v16_prod Checking test 083 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4588,7 +4588,7 @@ Test 083 cpld_restart_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_bmark_wave_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmark_wave_prod Checking test 084 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4647,7 +4647,7 @@ Test 084 cpld_bmark_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_bmarkfrac_wave_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmarkfrac_wave_prod Checking test 085 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4706,7 +4706,7 @@ Test 085 cpld_bmarkfrac_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_bmarkfrac_wave_v16_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmarkfrac_wave_v16_prod Checking test 086 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4765,7 +4765,7 @@ Test 086 cpld_bmarkfrac_wave_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_control_wave_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_control_wave_prod Checking test 087 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4821,7 +4821,7 @@ Test 087 cpld_control_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_debug_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_debug_prod Checking test 088 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4874,7 +4874,7 @@ Test 088 cpld_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/cpld_debugfrac_prod +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_debugfrac_prod Checking test 089 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4927,7 +4927,7 @@ Test 089 cpld_debugfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/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 @@ -4936,7 +4936,7 @@ Test 090 datm_control_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/datm_restart_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/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 @@ -4945,7 +4945,7 @@ Test 091 datm_restart_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/datm_control_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/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 @@ -4954,7 +4954,7 @@ Test 092 datm_control_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/datm_bulk_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/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 @@ -4963,7 +4963,7 @@ Test 093 datm_bulk_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/datm_bulk_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/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 @@ -4972,7 +4972,7 @@ Test 094 datm_bulk_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/datm_mx025_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_mx025_cfsr Checking test 095 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4984,7 +4984,7 @@ Test 095 datm_mx025_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/datm_mx025_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_mx025_gefs Checking test 096 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4996,7 +4996,7 @@ Test 096 datm_mx025_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_30554/datm_debug_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_8672/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 @@ -5005,5 +5005,5 @@ Test 097 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 9 10:16:06 MST 2021 -Elapsed time: 01h:20m:59s. Have a nice day! +Thu Feb 11 08:54:18 MST 2021 +Elapsed time: 01h:20m:02s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 1f2d362f18..8160897e02 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Tue Feb 9 11:19:58 EST 2021 +Thu Feb 11 11:12:57 EST 2021 Start Regression test baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......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-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_decomp_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/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 = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_2threads_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......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-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_restart_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_read_inc_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_stochy_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_ca_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_lndp_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_iau_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_lheatstrg_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_multigases_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_control_32bit_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1075,7 +1075,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_stretched_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1131,7 +1131,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_stretched_nest_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1198,7 +1198,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_regional_control_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -1209,7 +1209,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_regional_restart_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -1218,7 +1218,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_regional_quilt_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK @@ -1229,18 +1229,18 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_control_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1270,7 +1270,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_stretched_nest_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK @@ -1290,7 +1290,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfdlmp_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1338,7 +1338,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmprad_gwd_prod Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1386,7 +1386,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1434,7 +1434,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_csawmg_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1482,7 +1482,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_satmedmf_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1530,7 +1530,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_satmedmfq_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1578,7 +1578,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmp_32bit_prod Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1626,7 +1626,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1678,7 +1678,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_cpt_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1732,7 +1732,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gsd_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1824,7 +1824,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_rap_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1892,7 +1892,7 @@ Test 037 fv3_ccpp_rap PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_hrrr_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1960,7 +1960,7 @@ Test 038 fv3_ccpp_hrrr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_thompson_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2028,7 +2028,7 @@ Test 039 fv3_ccpp_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_thompson_no_aero_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_no_aero_prod Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2096,7 +2096,7 @@ Test 040 fv3_ccpp_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_rrfs_v1beta_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_rrfs_v1beta_prod Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2164,7 +2164,7 @@ Test 041 fv3_ccpp_rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v15p2_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_prod Checking test 042 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2232,7 +2232,7 @@ Test 042 fv3_ccpp_gfs_v15p2 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v16_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_prod Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2312,7 +2312,7 @@ Test 043 fv3_ccpp_gfs_v16 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v16_restart_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_restart_prod Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2362,7 +2362,7 @@ Test 044 fv3_ccpp_gfs_v16_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v16_stochy_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_stochy_prod Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2430,7 +2430,7 @@ Test 045 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2498,7 +2498,7 @@ Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2566,7 +2566,7 @@ Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/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 @@ -2628,7 +2628,7 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfsv16_csawmg_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfsv16_csawmg_prod Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2676,7 +2676,7 @@ Test 049 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfsv16_csawmgt_prod Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2724,7 +2724,7 @@ Test 050 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gocart_clm_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gocart_clm_prod Checking test 051 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2772,7 +2772,7 @@ Test 051 fv3_ccpp_gocart_clm PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v16_flake_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_flake_prod Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2840,7 +2840,7 @@ Test 052 fv3_ccpp_gfs_v16_flake PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2908,7 +2908,7 @@ Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -2926,7 +2926,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-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_debug_prod Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2994,7 +2994,7 @@ Test 055 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v16_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_debug_prod Checking test 056 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3062,7 +3062,7 @@ Test 056 fv3_ccpp_gfs_v16_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3130,7 +3130,7 @@ Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3198,7 +3198,7 @@ Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gsd_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gsd_debug_prod Checking test 059 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3266,7 +3266,7 @@ Test 059 fv3_ccpp_gsd_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gsd_diag3d_debug_prod Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3334,7 +3334,7 @@ Test 060 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_thompson_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_debug_prod Checking test 061 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3402,7 +3402,7 @@ Test 061 fv3_ccpp_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_no_aero_debug_prod Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3470,7 +3470,7 @@ Test 062 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3538,7 +3538,7 @@ Test 063 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3606,7 +3606,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-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/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 ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -3624,7 +3624,7 @@ Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_control_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_control_prod Checking test 066 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3677,7 +3677,7 @@ Test 066 cpld_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_restart_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_prod Checking test 067 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3730,7 +3730,7 @@ Test 067 cpld_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_controlfrac_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_controlfrac_prod Checking test 068 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3783,7 +3783,7 @@ Test 068 cpld_controlfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_restartfrac_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restartfrac_prod Checking test 069 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3836,7 +3836,7 @@ Test 069 cpld_restartfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_2threads_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_2threads_prod Checking test 070 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3889,7 +3889,7 @@ Test 070 cpld_2threads PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_decomp_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_decomp_prod Checking test 071 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3942,7 +3942,7 @@ Test 071 cpld_decomp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_satmedmf_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_satmedmf_prod Checking test 072 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3995,7 +3995,7 @@ Test 072 cpld_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_ca_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_ca_prod Checking test 073 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4048,7 +4048,7 @@ Test 073 cpld_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_control_c192_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_control_c192_prod Checking test 074 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4101,7 +4101,7 @@ Test 074 cpld_control_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_restart_c192_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_c192_prod Checking test 075 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4154,7 +4154,7 @@ Test 075 cpld_restart_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_controlfrac_c192_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_controlfrac_c192_prod Checking test 076 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4207,7 +4207,7 @@ Test 076 cpld_controlfrac_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_restartfrac_c192_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restartfrac_c192_prod Checking test 077 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4260,7 +4260,7 @@ Test 077 cpld_restartfrac_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_control_c384_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_control_c384_prod Checking test 078 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4316,7 +4316,7 @@ Test 078 cpld_control_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_restart_c384_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_c384_prod Checking test 079 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4372,7 +4372,7 @@ Test 079 cpld_restart_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_controlfrac_c384_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_controlfrac_c384_prod Checking test 080 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4428,7 +4428,7 @@ Test 080 cpld_controlfrac_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_restartfrac_c384_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restartfrac_c384_prod Checking test 081 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4484,7 +4484,7 @@ Test 081 cpld_restartfrac_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_bmark_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_bmark_prod Checking test 082 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4540,7 +4540,7 @@ Test 082 cpld_bmark PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_restart_bmark_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_bmark_prod Checking test 083 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4596,7 +4596,7 @@ Test 083 cpld_restart_bmark PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_bmarkfrac_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_bmarkfrac_prod Checking test 084 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4652,7 +4652,7 @@ Test 084 cpld_bmarkfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_restart_bmarkfrac_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_bmarkfrac_prod Checking test 085 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4708,7 +4708,7 @@ Test 085 cpld_restart_bmarkfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_debug_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_debug_prod Checking test 086 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4761,7 +4761,7 @@ Test 086 cpld_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/cpld_debugfrac_prod +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_debugfrac_prod Checking test 087 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -4814,7 +4814,7 @@ Test 087 cpld_debugfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/datm_control_cfsr +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_control_cfsr Checking test 088 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4823,7 +4823,7 @@ Test 088 datm_control_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/datm_restart_cfsr +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_restart_cfsr Checking test 089 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4832,7 +4832,7 @@ Test 089 datm_restart_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/datm_control_gefs +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_control_gefs Checking test 090 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4841,7 +4841,7 @@ Test 090 datm_control_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_bulk_cfsr Checking test 091 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4850,7 +4850,7 @@ Test 091 datm_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/datm_bulk_gefs +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_bulk_gefs Checking test 092 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -4859,7 +4859,7 @@ Test 092 datm_bulk_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/datm_mx025_cfsr +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_mx025_cfsr Checking test 093 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4871,7 +4871,7 @@ Test 093 datm_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/datm_mx025_gefs +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_mx025_gefs Checking test 094 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4883,7 +4883,7 @@ Test 094 datm_mx025_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_13616/datm_debug_cfsr +working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_debug_cfsr Checking test 095 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -4892,5 +4892,5 @@ Test 095 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 9 12:41:00 EST 2021 -Elapsed time: 01h:21m:03s. Have a nice day! +Thu Feb 11 12:36:16 EST 2021 +Elapsed time: 01h:23m:20s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index ac2809d760..a1091a96c2 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Wed Feb 10 02:18:08 UTC 2021 +Thu Feb 11 14:14:32 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfdlmp_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -51,7 +51,7 @@ Test 001 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -119,7 +119,7 @@ Test 002 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -199,7 +199,7 @@ Test 003 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -249,7 +249,7 @@ Test 004 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -317,7 +317,7 @@ Test 005 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -385,7 +385,7 @@ Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -453,7 +453,7 @@ Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -521,7 +521,7 @@ Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gsd_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -613,7 +613,7 @@ Test 009 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -681,7 +681,7 @@ Test 010 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -749,7 +749,7 @@ Test 011 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -817,7 +817,7 @@ Test 012 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -885,7 +885,7 @@ Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc ............ALT CHECK......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-20210128/GNU/fv3_control_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/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-20210128/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v15p2_debug_prod Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1001,7 +1001,7 @@ Test 016 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_debug_prod Checking test 017 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1069,7 +1069,7 @@ Test 017 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1137,7 +1137,7 @@ Test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 019 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1205,7 +1205,7 @@ Test 019 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_multigases_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1279,7 +1279,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......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-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model-gnu/tests/stmp2/Mikyung.Lee/FV3_RT/rt_14405/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/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 ............ALT CHECK......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 Feb 10 10:38:37 UTC 2021 -Elapsed time: 08h:20m:29s. Have a nice day! +Thu Feb 11 15:08:53 UTC 2021 +Elapsed time: 00h:54m:21s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 6cccf700e8..3b311cadc7 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Tue Feb 9 19:22:27 UTC 2021 +Thu Feb 11 14:11:41 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -429,7 +429,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... 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.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1031,7 +1031,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1080,7 +1080,7 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1154,7 +1154,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_control_32bit_prod Checking test 021 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1222,7 +1222,7 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1278,7 +1278,7 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_stretched_nest_prod Checking test 023 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1345,7 +1345,7 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -1356,7 +1356,7 @@ Test 024 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -1365,7 +1365,7 @@ Test 025 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK @@ -1376,7 +1376,7 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK @@ -1387,7 +1387,7 @@ Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1417,7 +1417,7 @@ Test 028 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_stretched_nest_debug_prod Checking test 029 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK @@ -1437,7 +1437,7 @@ Test 029 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmp_prod Checking test 030 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1485,7 +1485,7 @@ Test 030 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmprad_gwd_prod Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1533,7 +1533,7 @@ Test 031 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1581,7 +1581,7 @@ Test 032 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1629,7 +1629,7 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1677,7 +1677,7 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1725,7 +1725,7 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmp_32bit_prod Checking test 036 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1773,7 +1773,7 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1825,7 +1825,7 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1879,7 +1879,7 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1971,7 +1971,7 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2039,7 +2039,7 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2107,7 +2107,7 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2175,7 +2175,7 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_thompson_no_aero_prod Checking test 043 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2243,7 +2243,7 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_rrfs_v1beta_prod Checking test 044 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2311,7 +2311,7 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v15p2_prod Checking test 045 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2379,7 +2379,7 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_prod Checking test 046 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2459,7 +2459,7 @@ Test 046 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_restart_prod Checking test 047 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2509,7 +2509,7 @@ Test 047 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_stochy_prod Checking test 048 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2577,7 +2577,7 @@ Test 048 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2645,7 +2645,7 @@ Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2713,7 +2713,7 @@ Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/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 @@ -2775,7 +2775,7 @@ Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfsv16_csawmg_prod Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2823,7 +2823,7 @@ Test 052 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfsv16_csawmgt_prod Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2871,7 +2871,7 @@ Test 053 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gocart_clm_prod Checking test 054 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2919,7 +2919,7 @@ Test 054 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_flake_prod Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2987,7 +2987,7 @@ Test 055 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3055,7 +3055,7 @@ Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -3073,7 +3073,7 @@ Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v15p2_debug_prod Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3141,7 +3141,7 @@ Test 058 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_debug_prod Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3209,7 +3209,7 @@ Test 059 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3277,7 +3277,7 @@ Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3345,7 +3345,7 @@ Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gsd_debug_prod Checking test 062 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3413,7 +3413,7 @@ Test 062 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gsd_diag3d_debug_prod Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3481,7 +3481,7 @@ Test 063 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_thompson_debug_prod Checking test 064 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3549,7 +3549,7 @@ Test 064 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_thompson_no_aero_debug_prod Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3617,7 +3617,7 @@ Test 065 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3685,7 +3685,7 @@ Test 066 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3753,7 +3753,7 @@ Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/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 ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -3771,7 +3771,7 @@ Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3824,7 +3824,7 @@ Test 069 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3877,7 +3877,7 @@ Test 070 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_controlfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3930,7 +3930,7 @@ Test 071 cpld_controlfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restartfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3983,7 +3983,7 @@ Test 072 cpld_restartfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4036,7 +4036,7 @@ Test 073 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4089,7 +4089,7 @@ Test 074 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4142,7 +4142,7 @@ Test 075 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4195,7 +4195,7 @@ Test 076 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4248,7 +4248,7 @@ Test 077 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restart_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4301,7 +4301,7 @@ Test 078 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_controlfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4354,7 +4354,7 @@ Test 079 cpld_controlfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restartfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4407,7 +4407,7 @@ Test 080 cpld_restartfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4463,7 +4463,7 @@ Test 081 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restart_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4519,7 +4519,7 @@ Test 082 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4575,7 +4575,7 @@ Test 083 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restartfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4631,7 +4631,7 @@ Test 084 cpld_restartfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4687,7 +4687,7 @@ Test 085 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restart_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4743,7 +4743,7 @@ Test 086 cpld_restart_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4799,7 +4799,7 @@ Test 087 cpld_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restart_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4855,7 +4855,7 @@ Test 088 cpld_restart_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4911,7 +4911,7 @@ Test 089 cpld_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_restart_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4967,7 +4967,7 @@ Test 090 cpld_restart_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5026,7 +5026,7 @@ Test 091 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_bmarkfrac_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5085,7 +5085,7 @@ Test 092 cpld_bmarkfrac_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_bmarkfrac_wave_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5144,7 +5144,7 @@ Test 093 cpld_bmarkfrac_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_control_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_control_wave_prod Checking test 094 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5200,7 +5200,7 @@ Test 094 cpld_control_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_debug_prod Checking test 095 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5253,7 +5253,7 @@ Test 095 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/cpld_debugfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_debugfrac_prod Checking test 096 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5306,7 +5306,7 @@ Test 096 cpld_debugfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_control_cfsr Checking test 097 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5315,7 +5315,7 @@ Test 097 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_restart_cfsr Checking test 098 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5324,7 +5324,7 @@ Test 098 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_control_gefs Checking test 099 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5333,7 +5333,7 @@ Test 099 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_bulk_cfsr Checking test 100 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5342,7 +5342,7 @@ Test 100 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_bulk_gefs Checking test 101 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5351,7 +5351,7 @@ Test 101 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_mx025_cfsr Checking test 102 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5363,7 +5363,7 @@ Test 102 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_mx025_gefs Checking test 103 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5375,7 +5375,7 @@ Test 103 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /scratch2/GFDL/gfdlscr/Mikyung.Lee/ufs-weather-model/tests/stmp2/Mikyung.Lee/FV3_RT/rt_266017/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_debug_cfsr Checking test 104 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5384,5 +5384,5 @@ Test 104 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 10 10:46:51 UTC 2021 -Elapsed time: 15h:24m:25s. Have a nice day! +Thu Feb 11 15:48:12 UTC 2021 +Elapsed time: 01h:36m:32s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 03c3a0a629..b74f1cb04f 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,16 +1,16 @@ -Fri Feb 5 19:03:41 GMT 2021 +Thu Feb 11 14:36:40 GMT 2021 Start Regression test baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control 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 @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_decomp_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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,14 +139,14 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_2threads_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads 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 @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,14 +257,14 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_read_inc_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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 phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -325,14 +325,14 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -373,14 +373,14 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -421,18 +421,18 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK Comparing dynf000.nc .........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 @@ -469,14 +469,14 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -517,14 +517,14 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -565,14 +565,14 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -613,14 +613,14 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_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 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 @@ -681,14 +681,14 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_ca_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 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 @@ -749,14 +749,14 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_lndp_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 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 @@ -817,14 +817,14 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_iau_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 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 phyf027.tile1.nc .........OK Comparing phyf027.tile2.nc .........OK Comparing phyf027.tile3.nc .........OK @@ -885,14 +885,14 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_lheatstrg_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -933,14 +933,14 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_multigases_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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 @@ -966,25 +966,25 @@ Checking test 017 fv3_ccpp_multigases results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1007,14 +1007,14 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_control_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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 @@ -1040,25 +1040,25 @@ Checking test 018 fv3_ccpp_control_32bit results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1075,46 +1075,46 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_stretched_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.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 fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1131,96 +1131,96 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_stretched_nest_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.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 atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK -Test 020 fv3_ccpp_stretched_nest PASS + Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......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/phy_data.nest02.tile7.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/sfc_data.nest02.tile7.nc .........OK +Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_regional_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......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 baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_regional_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 + Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing fv3_history2d.nc ............ALT CHECK......OK + Comparing fv3_history.nc ............ALT CHECK......OK Test 022 fv3_ccpp_regional_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_regional_quilt_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK + Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1229,9 +1229,9 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK + Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -1240,7 +1240,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_control_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1270,178 +1270,34 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_stretched_nest_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK + Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK + Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + Comparing fv3_history.tile1.nc ............ALT CHECK......OK + Comparing fv3_history.tile2.nc ............ALT CHECK......OK + Comparing fv3_history.tile3.nc ............ALT CHECK......OK + Comparing fv3_history.tile4.nc ............ALT CHECK......OK + Comparing fv3_history.tile5.nc ............ALT CHECK......OK + Comparing fv3_history.tile6.nc ............ALT CHECK......OK Test 026 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 - 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 027 fv3_ccpp_gfdlmp PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 - 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 028 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/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 - 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 029 fv3_ccpp_gfdlmprad_noahmp PASS - - baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1482,14 +1338,14 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_satmedmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1530,14 +1386,14 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_satmedmfq_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1578,38 +1434,38 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 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.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/fv_core.res.nc ............ALT CHECK......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/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1626,14 +1482,14 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -1643,25 +1499,25 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... 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 - 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/fv_core.res.nc ............ALT CHECK......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/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK @@ -1678,38 +1534,38 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_cpt_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1732,14 +1588,14 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gsd_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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 @@ -1789,25 +1645,25 @@ Checking test 036 fv3_ccpp_gsd results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1824,14 +1680,14 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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 @@ -1857,25 +1713,25 @@ Checking test 037 fv3_ccpp_thompson results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1892,14 +1748,14 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_thompson_no_aero_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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 @@ -1925,25 +1781,25 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1960,14 +1816,14 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v15p2_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 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 @@ -2028,14 +1884,14 @@ Test 039 fv3_ccpp_gfs_v15p2 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v16_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_prod Checking test 040 fv3_ccpp_gfs_v16 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 @@ -2108,7 +1964,7 @@ Test 040 fv3_ccpp_gfs_v16 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v16_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_restart_prod Checking test 041 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2158,14 +2014,14 @@ Test 041 fv3_ccpp_gfs_v16_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v16_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_stochy_prod Checking test 042 fv3_ccpp_gfs_v16_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 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 @@ -2226,14 +2082,14 @@ Test 042 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 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 @@ -2294,14 +2150,14 @@ Test 043 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v16_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 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 @@ -2362,7 +2218,7 @@ Test 044 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 @@ -2424,14 +2280,14 @@ Test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfsv16_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2472,14 +2328,14 @@ Test 046 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2520,14 +2376,14 @@ Test 047 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gocart_clm_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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.nemsio .........OK Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK @@ -2568,14 +2424,14 @@ Test 048 fv3_ccpp_gocart_clm PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v16_flake_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_flake_prod Checking test 049 fv3_ccpp_gfs_v16_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 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 @@ -2636,14 +2492,14 @@ Test 049 fv3_ccpp_gfs_v16_flake PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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 @@ -2704,9 +2560,9 @@ Test 050 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -2722,14 +2578,14 @@ Test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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 @@ -2790,14 +2646,14 @@ Test 052 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v16_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_debug_prod Checking test 053 fv3_ccpp_gfs_v16_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 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 @@ -2858,14 +2714,14 @@ Test 053 fv3_ccpp_gfs_v16_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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 @@ -2926,14 +2782,14 @@ Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 055 fv3_ccpp_gfs_v16_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 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 @@ -2994,14 +2850,14 @@ Test 055 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gsd_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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 @@ -3027,25 +2883,25 @@ Checking test 056 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3062,14 +2918,14 @@ Test 056 fv3_ccpp_gsd_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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 @@ -3095,25 +2951,25 @@ Checking test 057 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3130,14 +2986,14 @@ Test 057 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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 @@ -3163,25 +3019,25 @@ Checking test 058 fv3_ccpp_thompson_debug results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3198,14 +3054,14 @@ Test 058 fv3_ccpp_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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 @@ -3231,25 +3087,25 @@ Checking test 059 fv3_ccpp_thompson_no_aero_debug results .... 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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3266,14 +3122,14 @@ Test 059 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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 @@ -3299,25 +3155,25 @@ Checking test 060 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.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/fv_core.res.nc ............ALT CHECK......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 .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -3334,14 +3190,14 @@ Test 060 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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 @@ -3402,9 +3258,9 @@ Test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_301881/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3420,5 +3276,5 @@ Test 062 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 5 21:01:18 GMT 2021 -Elapsed time: 01h:57m:38s. Have a nice day! +Thu Feb 11 16:35:37 GMT 2021 +Elapsed time: 01h:58m:58s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 5acedd14a0..b81151a515 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Wed Feb 10 17:23:07 CST 2021 +Thu Feb 11 08:08:46 CST 2021 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_lndp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_lheatstrg_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1031,7 +1031,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1080,7 +1080,7 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1154,7 +1154,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_control_32bit_prod Checking test 021 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1222,7 +1222,7 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1278,7 +1278,7 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stretched_nest_prod Checking test 023 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1345,7 +1345,7 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -1356,7 +1356,7 @@ Test 024 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -1365,7 +1365,7 @@ Test 025 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK @@ -1376,7 +1376,7 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK @@ -1387,7 +1387,7 @@ Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1417,7 +1417,7 @@ Test 028 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stretched_nest_debug_prod Checking test 029 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK @@ -1437,7 +1437,7 @@ Test 029 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmp_prod Checking test 030 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1485,7 +1485,7 @@ Test 030 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_gwd_prod Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1533,7 +1533,7 @@ Test 031 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1581,7 +1581,7 @@ Test 032 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1629,7 +1629,7 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1677,7 +1677,7 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_satmedmfq_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1725,7 +1725,7 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmp_32bit_prod Checking test 036 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1773,7 +1773,7 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1825,7 +1825,7 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1879,7 +1879,7 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1971,7 +1971,7 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_rap_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2039,7 +2039,7 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_hrrr_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2107,7 +2107,7 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2175,7 +2175,7 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_no_aero_prod Checking test 043 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2243,7 +2243,7 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_rrfs_v1beta_prod Checking test 044 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2311,7 +2311,7 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_prod Checking test 045 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2379,7 +2379,7 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v16_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_prod Checking test 046 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2459,7 +2459,7 @@ Test 046 fv3_ccpp_gfs_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v16_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_restart_prod Checking test 047 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2509,7 +2509,7 @@ Test 047 fv3_ccpp_gfs_v16_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v16_stochy_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_stochy_prod Checking test 048 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2577,7 +2577,7 @@ Test 048 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2645,7 +2645,7 @@ Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2713,7 +2713,7 @@ Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/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 @@ -2775,7 +2775,7 @@ Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfsv16_csawmg_prod Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2823,7 +2823,7 @@ Test 052 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfsv16_csawmgt_prod Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2871,7 +2871,7 @@ Test 053 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gocart_clm_prod Checking test 054 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2919,7 +2919,7 @@ Test 054 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v16_flake_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_flake_prod Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2987,7 +2987,7 @@ Test 055 fv3_ccpp_gfs_v16_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3055,7 +3055,7 @@ Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -3073,7 +3073,7 @@ Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_debug_prod Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3141,7 +3141,7 @@ Test 058 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v16_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_debug_prod Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3209,7 +3209,7 @@ Test 059 fv3_ccpp_gfs_v16_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3277,7 +3277,7 @@ Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3345,7 +3345,7 @@ Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gsd_debug_prod Checking test 062 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3413,7 +3413,7 @@ Test 062 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gsd_diag3d_debug_prod Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3481,7 +3481,7 @@ Test 063 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_debug_prod Checking test 064 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3549,7 +3549,7 @@ Test 064 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_no_aero_debug_prod Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3617,7 +3617,7 @@ Test 065 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3685,7 +3685,7 @@ Test 066 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3753,7 +3753,7 @@ Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/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 ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -3771,7 +3771,7 @@ Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_control_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_prod Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3824,7 +3824,7 @@ Test 069 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restart_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_prod Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3877,7 +3877,7 @@ Test 070 cpld_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_controlfrac_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_controlfrac_prod Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3930,7 +3930,7 @@ Test 071 cpld_controlfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restartfrac_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restartfrac_prod Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3983,7 +3983,7 @@ Test 072 cpld_restartfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_2threads_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_2threads_prod Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4036,7 +4036,7 @@ Test 073 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_decomp_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_decomp_prod Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4089,7 +4089,7 @@ Test 074 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_satmedmf_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_satmedmf_prod Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4142,7 +4142,7 @@ Test 075 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_ca_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_ca_prod Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4195,7 +4195,7 @@ Test 076 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_control_c192_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_c192_prod Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4248,7 +4248,7 @@ Test 077 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restart_c192_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_c192_prod Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4301,7 +4301,7 @@ Test 078 cpld_restart_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_controlfrac_c192_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_controlfrac_c192_prod Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4354,7 +4354,7 @@ Test 079 cpld_controlfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restartfrac_c192_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restartfrac_c192_prod Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4407,7 +4407,7 @@ Test 080 cpld_restartfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_control_c384_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_c384_prod Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4463,7 +4463,7 @@ Test 081 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restart_c384_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_c384_prod Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4519,7 +4519,7 @@ Test 082 cpld_restart_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_controlfrac_c384_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_controlfrac_c384_prod Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4575,7 +4575,7 @@ Test 083 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restartfrac_c384_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restartfrac_c384_prod Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4631,7 +4631,7 @@ Test 084 cpld_restartfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_bmark_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmark_prod Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4687,7 +4687,7 @@ Test 085 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restart_bmark_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_bmark_prod Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4743,7 +4743,7 @@ Test 086 cpld_restart_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_bmarkfrac_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_prod Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4799,7 +4799,7 @@ Test 087 cpld_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restart_bmarkfrac_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_bmarkfrac_prod Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4855,7 +4855,7 @@ Test 088 cpld_restart_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_bmarkfrac_v16_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_v16_prod Checking test 089 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4911,7 +4911,7 @@ Test 089 cpld_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_restart_bmarkfrac_v16_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_bmarkfrac_v16_prod Checking test 090 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4967,7 +4967,7 @@ Test 090 cpld_restart_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_bmark_wave_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmark_wave_prod Checking test 091 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5026,7 +5026,7 @@ Test 091 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_bmarkfrac_wave_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_wave_prod Checking test 092 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5085,7 +5085,7 @@ Test 092 cpld_bmarkfrac_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_bmarkfrac_wave_v16_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_wave_v16_prod Checking test 093 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5144,7 +5144,7 @@ Test 093 cpld_bmarkfrac_wave_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_control_wave_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_wave_prod Checking test 094 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5200,7 +5200,7 @@ Test 094 cpld_control_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_debug_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_debug_prod Checking test 095 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5253,7 +5253,7 @@ Test 095 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/cpld_debugfrac_prod +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_debugfrac_prod Checking test 096 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5306,7 +5306,7 @@ Test 096 cpld_debugfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/datm_control_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_control_cfsr Checking test 097 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5315,7 +5315,7 @@ Test 097 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/datm_restart_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_restart_cfsr Checking test 098 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5324,7 +5324,7 @@ Test 098 datm_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/datm_control_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_control_gefs Checking test 099 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5333,7 +5333,7 @@ Test 099 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/datm_bulk_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_bulk_cfsr Checking test 100 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5342,7 +5342,7 @@ Test 100 datm_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/datm_bulk_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_bulk_gefs Checking test 101 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5351,7 +5351,7 @@ Test 101 datm_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/datm_mx025_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_mx025_cfsr Checking test 102 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5363,7 +5363,7 @@ Test 102 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/datm_mx025_gefs +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_mx025_gefs Checking test 103 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5375,7 +5375,7 @@ Test 103 datm_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_21143/datm_debug_cfsr +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_debug_cfsr Checking test 104 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5384,5 +5384,5 @@ Test 104 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 10 19:24:32 CST 2021 -Elapsed time: 02h:01m:25s. Have a nice day! +Thu Feb 11 09:25:39 CST 2021 +Elapsed time: 01h:16m:54s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 9f135ab779..231e912a3e 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Tue Feb 9 16:00:59 UTC 2021 +Thu Feb 11 15:50:22 UTC 2021 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/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 = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_ca_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_lndp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1075,7 +1075,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1131,7 +1131,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1198,7 +1198,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -1209,7 +1209,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -1218,7 +1218,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK @@ -1229,7 +1229,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK @@ -1240,7 +1240,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1270,7 +1270,7 @@ Test 025 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK @@ -1290,7 +1290,7 @@ Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1338,7 +1338,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfdlmprad_gwd_prod Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1386,7 +1386,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1434,7 +1434,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1482,7 +1482,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1530,7 +1530,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1578,7 +1578,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfdlmp_32bit_prod Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1626,7 +1626,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1678,7 +1678,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1732,7 +1732,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1824,7 +1824,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_rap_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1892,7 +1892,7 @@ Test 037 fv3_ccpp_rap PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_hrrr_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1960,7 +1960,7 @@ Test 038 fv3_ccpp_hrrr PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2028,7 +2028,7 @@ Test 039 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_thompson_no_aero_prod Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2096,7 +2096,7 @@ Test 040 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_rrfs_v1beta_prod Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2164,7 +2164,7 @@ Test 041 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v15p2_prod Checking test 042 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2232,7 +2232,7 @@ Test 042 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v16_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_prod Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2312,7 +2312,7 @@ Test 043 fv3_ccpp_gfs_v16 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v16_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_restart_prod Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2362,7 +2362,7 @@ Test 044 fv3_ccpp_gfs_v16_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v16_stochy_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_stochy_prod Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2430,7 +2430,7 @@ Test 045 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2498,7 +2498,7 @@ Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2566,7 +2566,7 @@ Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/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 @@ -2628,7 +2628,7 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfsv16_csawmg_prod Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2676,7 +2676,7 @@ Test 049 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfsv16_csawmgt_prod Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2724,7 +2724,7 @@ Test 050 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gocart_clm_prod Checking test 051 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2772,7 +2772,7 @@ Test 051 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v16_flake_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_flake_prod Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2840,7 +2840,7 @@ Test 052 fv3_ccpp_gfs_v16_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2908,7 +2908,7 @@ Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -2926,7 +2926,7 @@ Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v15p2_debug_prod Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2994,7 +2994,7 @@ Test 055 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v16_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_debug_prod Checking test 056 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3062,7 +3062,7 @@ Test 056 fv3_ccpp_gfs_v16_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3130,7 +3130,7 @@ Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3198,7 +3198,7 @@ Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gsd_debug_prod Checking test 059 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3266,7 +3266,7 @@ Test 059 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gsd_diag3d_debug_prod Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3334,7 +3334,7 @@ Test 060 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_thompson_debug_prod Checking test 061 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3402,7 +3402,7 @@ Test 061 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_thompson_no_aero_debug_prod Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3470,7 +3470,7 @@ Test 062 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3538,7 +3538,7 @@ Test 063 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3606,7 +3606,7 @@ Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_43072/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/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 ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -3624,5 +3624,5 @@ Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 9 16:39:09 UTC 2021 -Elapsed time: 00h:38m:11s. Have a nice day! +Thu Feb 11 16:28:04 UTC 2021 +Elapsed time: 00h:37m:42s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 20d18a4ab5..b65c53c604 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Wed Feb 10 04:20:29 UTC 2021 +Thu Feb 11 15:48:05 UTC 2021 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/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 = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -429,10 +429,10 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... 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.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK Comparing dynf000.nc .........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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_ca_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_lndp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1031,7 +1031,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1105,7 +1105,7 @@ Test 019 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_control_32bit_prod Checking test 020 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1173,7 +1173,7 @@ Test 020 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1229,7 +1229,7 @@ Test 021 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_stretched_nest_prod Checking test 022 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1296,7 +1296,7 @@ Test 022 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -1307,7 +1307,7 @@ Test 023 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -1316,7 +1316,7 @@ Test 024 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK @@ -1327,7 +1327,7 @@ Test 025 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 026 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK @@ -1338,7 +1338,7 @@ Test 026 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1368,7 +1368,7 @@ Test 027 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_stretched_nest_debug_prod Checking test 028 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK @@ -1388,7 +1388,7 @@ Test 028 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1436,7 +1436,7 @@ Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmprad_gwd_prod Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1484,7 +1484,7 @@ Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1532,7 +1532,7 @@ Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1580,7 +1580,7 @@ Test 032 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1628,7 +1628,7 @@ Test 033 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_satmedmfq_prod Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1676,7 +1676,7 @@ Test 034 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmp_32bit_prod Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1724,7 +1724,7 @@ Test 035 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1776,7 +1776,7 @@ Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_cpt_prod Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1830,7 +1830,7 @@ Test 037 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gsd_prod Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1922,7 +1922,7 @@ Test 038 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_rap_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_rap_prod Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -1990,7 +1990,7 @@ Test 039 fv3_ccpp_rap PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_hrrr_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_hrrr_prod Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2058,7 +2058,7 @@ Test 040 fv3_ccpp_hrrr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_thompson_prod Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2126,7 +2126,7 @@ Test 041 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_thompson_no_aero_prod Checking test 042 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2194,7 +2194,7 @@ Test 042 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_rrfs_v1beta_prod Checking test 043 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2262,7 +2262,7 @@ Test 043 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v15p2_prod Checking test 044 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2330,7 +2330,7 @@ Test 044 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v16_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_prod Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2410,7 +2410,7 @@ Test 045 fv3_ccpp_gfs_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v16_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_restart_prod Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2460,7 +2460,7 @@ Test 046 fv3_ccpp_gfs_v16_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v16_stochy_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_stochy_prod Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2528,7 +2528,7 @@ Test 047 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2596,7 +2596,7 @@ Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2664,7 +2664,7 @@ Test 049 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/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 @@ -2726,7 +2726,7 @@ Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfsv16_csawmg_prod Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2774,7 +2774,7 @@ Test 051 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfsv16_csawmgt_prod Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2822,7 +2822,7 @@ Test 052 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gocart_clm_prod Checking test 053 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2870,7 +2870,7 @@ Test 053 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v16_flake_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_flake_prod Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -2938,7 +2938,7 @@ Test 054 fv3_ccpp_gfs_v16_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3006,7 +3006,7 @@ Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -3024,7 +3024,7 @@ Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v15p2_debug_prod Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3092,7 +3092,7 @@ Test 057 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v16_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_debug_prod Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3160,7 +3160,7 @@ Test 058 fv3_ccpp_gfs_v16_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3228,7 +3228,7 @@ Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3296,7 +3296,7 @@ Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gsd_debug_prod Checking test 061 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3364,7 +3364,7 @@ Test 061 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gsd_diag3d_debug_prod Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3432,7 +3432,7 @@ Test 062 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_thompson_debug_prod Checking test 063 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3500,7 +3500,7 @@ Test 063 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_thompson_no_aero_debug_prod Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3568,7 +3568,7 @@ Test 064 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3636,7 +3636,7 @@ Test 065 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc ............ALT CHECK......OK Comparing atmos_4xdaily.tile2.nc ............ALT CHECK......OK @@ -3704,7 +3704,7 @@ Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/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 ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -3722,7 +3722,7 @@ Test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_control_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_control_prod Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3775,7 +3775,7 @@ Test 068 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_prod Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3828,7 +3828,7 @@ Test 069 cpld_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_controlfrac_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_controlfrac_prod Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3881,7 +3881,7 @@ Test 070 cpld_controlfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restartfrac_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restartfrac_prod Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3934,7 +3934,7 @@ Test 071 cpld_restartfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_2threads_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_2threads_prod Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3987,7 +3987,7 @@ Test 072 cpld_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_decomp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_decomp_prod Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4040,7 +4040,7 @@ Test 073 cpld_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_satmedmf_prod Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4093,7 +4093,7 @@ Test 074 cpld_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_ca_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_ca_prod Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4146,7 +4146,7 @@ Test 075 cpld_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_control_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_control_c192_prod Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4199,7 +4199,7 @@ Test 076 cpld_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restart_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_c192_prod Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4252,7 +4252,7 @@ Test 077 cpld_restart_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_controlfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_controlfrac_c192_prod Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4305,7 +4305,7 @@ Test 078 cpld_controlfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restartfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restartfrac_c192_prod Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4358,7 +4358,7 @@ Test 079 cpld_restartfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_control_c384_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_control_c384_prod Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4414,7 +4414,7 @@ Test 080 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restart_c384_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_c384_prod Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4470,7 +4470,7 @@ Test 081 cpld_restart_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_controlfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_controlfrac_c384_prod Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4526,7 +4526,7 @@ Test 082 cpld_controlfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restartfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restartfrac_c384_prod Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4582,7 +4582,7 @@ Test 083 cpld_restartfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_bmark_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmark_prod Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4638,7 +4638,7 @@ Test 084 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restart_bmark_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_bmark_prod Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4694,7 +4694,7 @@ Test 085 cpld_restart_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_bmarkfrac_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmarkfrac_prod Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4750,7 +4750,7 @@ Test 086 cpld_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restart_bmarkfrac_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_bmarkfrac_prod Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4806,7 +4806,7 @@ Test 087 cpld_restart_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmarkfrac_v16_prod Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4862,7 +4862,7 @@ Test 088 cpld_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_restart_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_bmarkfrac_v16_prod Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4918,7 +4918,7 @@ Test 089 cpld_restart_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_bmark_wave_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmark_wave_prod Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4977,7 +4977,7 @@ Test 090 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_bmarkfrac_wave_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmarkfrac_wave_prod Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5036,7 +5036,7 @@ Test 091 cpld_bmarkfrac_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_bmarkfrac_wave_v16_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmarkfrac_wave_v16_prod Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5095,7 +5095,7 @@ Test 092 cpld_bmarkfrac_wave_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_control_wave_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_control_wave_prod Checking test 093 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5151,7 +5151,7 @@ Test 093 cpld_control_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_debug_prod Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5204,7 +5204,7 @@ Test 094 cpld_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/cpld_debugfrac_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_debugfrac_prod Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5257,7 +5257,7 @@ Test 095 cpld_debugfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/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 @@ -5266,7 +5266,7 @@ Test 096 datm_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/datm_restart_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/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 @@ -5275,7 +5275,7 @@ Test 097 datm_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/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 @@ -5284,7 +5284,7 @@ Test 098 datm_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/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 @@ -5293,7 +5293,7 @@ Test 099 datm_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/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 @@ -5302,7 +5302,7 @@ Test 100 datm_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5314,7 +5314,7 @@ Test 101 datm_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5326,7 +5326,7 @@ Test 102 datm_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_104260/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/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 @@ -5335,5 +5335,5 @@ Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 10 09:33:02 UTC 2021 -Elapsed time: 05h:12m:35s. Have a nice day! +Fri Feb 12 04:23:36 UTC 2021 +Elapsed time: 12h:35m:33s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 6be199e6aa..88e1b1724c 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -518,6 +518,7 @@ export RESTART_N=${FHMAX} export CPLMODE='nems_orig' export cap_dbug_flag="0" export use_coldstart="false" +export use_mommesh="false" export RUNTYPE='startup' # FV3 defaults @@ -543,6 +544,9 @@ export CPLFLX='.T.' export CPL='.true.' export NSTF_NAME='0,0,0,0,0' +export DZ_MIN='2' +export MIN_SEAICE='1.0e-11' + # resolution dependent settings export CDMBWD_c96='0.14,1.8,1.0,1.0' export CDMBWD_c192='0.23,1.5,1.0,1.0' @@ -575,7 +579,7 @@ export MOM6_USE_WAVES='False' # CICE6 defaults; 1 degree export NPROC_ICE='12' -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export RUNID='unknown' @@ -662,6 +666,7 @@ export RESTART_N=${FHMAX} export CPLMODE='nems_orig_data' export cap_dbug_flag="0" export use_coldstart=".false." +export use_mommesh=".false." export RUNTYPE='startup' export flux_convergence='0.0' export flux_iteration='2' @@ -685,7 +690,7 @@ export MOM6_THERMO_SPAN='False' export MOM6_USE_WAVES='False' # CICE6 defaults; 1 degree -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export RUNID='unknown' diff --git a/tests/parm/input.benchmark_ccpp.nml.IN b/tests/parm/input.benchmark_ccpp.nml.IN index 79169f8722..4d3e4f473d 100644 --- a/tests/parm/input.benchmark_ccpp.nml.IN +++ b/tests/parm/input.benchmark_ccpp.nml.IN @@ -47,6 +47,7 @@ npy = @[NPY] ntiles = 6, npz = @[NPZ] + dz_min = @[DZ_MIN] grid_type = -1 make_nh = @[MAKE_NH] fv_debug = .false. @@ -207,7 +208,7 @@ cplflx = .T. cplwav = @[CPLWAV] cplwav2atm = @[CPLWAV2ATM] - + min_seaice = @[MIN_SEAICE] / &gfdl_cloud_microphysics_nml diff --git a/tests/parm/input.benchmark_v16.nml.IN b/tests/parm/input.benchmark_v16.nml.IN index 606f3be447..9490758bc3 100644 --- a/tests/parm/input.benchmark_v16.nml.IN +++ b/tests/parm/input.benchmark_v16.nml.IN @@ -47,6 +47,7 @@ npy = @[NPY] ntiles = 6, npz = @[NPZ] + dz_min = @[DZ_MIN] grid_type = -1 make_nh = @[MAKE_NH] fv_debug = .false. @@ -192,6 +193,7 @@ cplflx = .T. cplwav = @[CPLWAV] cplwav2atm = @[CPLWAV2ATM] + min_seaice = @[MIN_SEAICE] / diff --git a/tests/parm/input.mom6_ccpp.nml.IN b/tests/parm/input.mom6_ccpp.nml.IN index 22aef11765..870f4dfc5a 100644 --- a/tests/parm/input.mom6_ccpp.nml.IN +++ b/tests/parm/input.mom6_ccpp.nml.IN @@ -44,6 +44,7 @@ npy = @[NPY] ntiles = 6, npz = @[NPZ] + dz_min = @[DZ_MIN] grid_type = -1 make_nh = @[MAKE_NH] fv_debug = .F. @@ -188,6 +189,7 @@ cplflx = @[CPLFLX] cplwav = @[CPLWAV] cplwav2atm = @[CPLWAV2ATM] + min_seaice = @[MIN_SEAICE] iau_delthrs = 6 iaufhrs = 30 iau_inc_files = @[IAU_INC_FILES] diff --git a/tests/parm/nems.configure.cpld.IN b/tests/parm/nems.configure.cpld.IN index 3ea6ce5182..80dee17527 100644 --- a/tests/parm/nems.configure.cpld.IN +++ b/tests/parm/nems.configure.cpld.IN @@ -31,6 +31,7 @@ OCN_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true + mesh_ocn = @[MESHOCN_ICE] :: # ICE # @@ -41,7 +42,7 @@ ICE_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true - mesh_ice = @[MESHICE] + mesh_ice = @[MESHOCN_ICE] stop_n = @[RESTART_N] stop_option = nhours stop_ymd = -999 @@ -81,7 +82,7 @@ MED_attributes:: ATM_model = @[atm_model] ICE_model = @[ice_model] OCN_model = @[ocn_model] - history_n = 0 + history_n = 1 history_option = nhours history_ymd = -999 coupling_mode = @[CPLMODE] @@ -99,4 +100,5 @@ ALLCOMP_attributes:: restart_ymd = -999 dbug_flag = @[cap_dbug_flag] use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] :: diff --git a/tests/parm/nems.configure.cpld_wave.IN b/tests/parm/nems.configure.cpld_wave.IN index 2c88540816..5bb3443d54 100644 --- a/tests/parm/nems.configure.cpld_wave.IN +++ b/tests/parm/nems.configure.cpld_wave.IN @@ -31,6 +31,7 @@ OCN_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true + mesh_ocn = @[MESHOCN_ICE] :: # ICE # @@ -41,7 +42,7 @@ ICE_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true - mesh_ice = @[MESHICE] + mesh_ice = @[MESHOCN_ICE] stop_n = @[RESTART_N] stop_option = nhours stop_ymd = -999 @@ -95,7 +96,7 @@ MED_attributes:: ATM_model = @[atm_model] ICE_model = @[ice_model] OCN_model = @[ocn_model] - history_n = 0 + history_n = 1 history_option = nhours history_ymd = -999 coupling_mode = @[CPLMODE] @@ -113,4 +114,5 @@ ALLCOMP_attributes:: restart_ymd = -999 dbug_flag = @[cap_dbug_flag] use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] :: diff --git a/tests/parm/nems.configure.datm.IN b/tests/parm/nems.configure.datm.IN index 4d610cd7fd..c4c6782960 100644 --- a/tests/parm/nems.configure.datm.IN +++ b/tests/parm/nems.configure.datm.IN @@ -31,6 +31,7 @@ OCN_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true + mesh_ocn = @[MESHOCN_ICE] :: # ICE # @@ -41,7 +42,7 @@ ICE_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true - mesh_ice = @[MESHICE] + mesh_ice = @[MESHOCN_ICE] stop_n = @[RESTART_N] stop_option = nhours stop_ymd = -999 @@ -81,7 +82,7 @@ MED_attributes:: ATM_model = datm ICE_model = cice6 OCN_model = mom - history_n = 0 + history_n = 1 history_option = nhours history_ymd = -999 coupling_mode = nems_orig_data @@ -99,6 +100,7 @@ ALLCOMP_attributes:: restart_ymd = -999 dbug_flag = @[cap_dbug_flag] use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] coldair_outbreak_mod = .false. flux_convergence = @[flux_convergence] flux_max_iteration = @[flux_iteration] diff --git a/tests/tests/cpld_bmark b/tests/tests/cpld_bmark index 6c6fc0bb4a..a3df8a215d 100644 --- a/tests/tests/cpld_bmark +++ b/tests/tests/cpld_bmark @@ -110,7 +110,7 @@ export coupling_interval_fast_sec=${CPL_FAST} # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_bmark_35d b/tests/tests/cpld_bmark_35d index e44e4c4adf..b389b653c9 100644 --- a/tests/tests/cpld_bmark_35d +++ b/tests/tests/cpld_bmark_35d @@ -59,7 +59,7 @@ export coupling_interval_fast_sec=${CPL_FAST} # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_bmark_wave b/tests/tests/cpld_bmark_wave index 544f565716..4ff8cb3cff 100644 --- a/tests/tests/cpld_bmark_wave +++ b/tests/tests/cpld_bmark_wave @@ -116,7 +116,7 @@ export CPLWAV2ATM='.T.' # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_bmark_wave_35d b/tests/tests/cpld_bmark_wave_35d index 1c9c189dd2..2fe7071e5f 100644 --- a/tests/tests/cpld_bmark_wave_35d +++ b/tests/tests/cpld_bmark_wave_35d @@ -77,7 +77,7 @@ export CPLWAV2ATM='.T.' # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_bmarkfrac b/tests/tests/cpld_bmarkfrac index d1e84e87ff..7b842ad1e1 100644 --- a/tests/tests/cpld_bmarkfrac +++ b/tests/tests/cpld_bmarkfrac @@ -113,7 +113,7 @@ export CPLMODE='nems_frac' # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_bmarkfrac_v16 b/tests/tests/cpld_bmarkfrac_v16 index f95b88f48a..6fc6279a19 100644 --- a/tests/tests/cpld_bmarkfrac_v16 +++ b/tests/tests/cpld_bmarkfrac_v16 @@ -115,10 +115,11 @@ export CPLMODE='nems_frac' export NPZ=127 export NPZP=128 +#export DZ_MIN=6 # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_bmarkfrac_wave b/tests/tests/cpld_bmarkfrac_wave index df5d656e75..667579157f 100644 --- a/tests/tests/cpld_bmarkfrac_wave +++ b/tests/tests/cpld_bmarkfrac_wave @@ -119,7 +119,7 @@ export CPLWAV2ATM='.T.' # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_bmarkfrac_wave_35d b/tests/tests/cpld_bmarkfrac_wave_35d index 5d0da16cfe..15bfdb299e 100644 --- a/tests/tests/cpld_bmarkfrac_wave_35d +++ b/tests/tests/cpld_bmarkfrac_wave_35d @@ -80,7 +80,7 @@ export CPLWAV2ATM='.T.' # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_bmarkfrac_wave_v16 b/tests/tests/cpld_bmarkfrac_wave_v16 index a9f53b4cb6..a9eca4e243 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16 +++ b/tests/tests/cpld_bmarkfrac_wave_v16 @@ -121,13 +121,14 @@ export CPLMODE='nems_frac' export NPZ=127 export NPZP=128 +#export DZ_MIN=6 export CPLWAV='.T.' export CPLWAV2ATM='.T.' # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_bmarkfrac_wave_v16_35d b/tests/tests/cpld_bmarkfrac_wave_v16_35d index c4230bfe26..b517120052 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16_35d +++ b/tests/tests/cpld_bmarkfrac_wave_v16_35d @@ -88,13 +88,14 @@ export CPLMODE='nems_frac' export NPZ=127 export NPZP=128 +#export DZ_MIN=6 export CPLWAV='.T.' export CPLWAV2ATM='.T.' # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_control_c192 b/tests/tests/cpld_control_c192 index c138a9ba99..57fd01e586 100644 --- a/tests/tests/cpld_control_c192 +++ b/tests/tests/cpld_control_c192 @@ -104,7 +104,7 @@ export coupling_interval_fast_sec=${CPL_FAST} # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_control_c384 b/tests/tests/cpld_control_c384 index 98986dc3c9..d704cfc886 100644 --- a/tests/tests/cpld_control_c384 +++ b/tests/tests/cpld_control_c384 @@ -104,7 +104,7 @@ export coupling_interval_fast_sec=${CPL_FAST} # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_controlfrac_c192 b/tests/tests/cpld_controlfrac_c192 index 98e58d2ef2..33e2d266bf 100644 --- a/tests/tests/cpld_controlfrac_c192 +++ b/tests/tests/cpld_controlfrac_c192 @@ -107,7 +107,7 @@ export CPLMODE='nems_frac' # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_controlfrac_c384 b/tests/tests/cpld_controlfrac_c384 index 998d756323..3115858e67 100644 --- a/tests/tests/cpld_controlfrac_c384 +++ b/tests/tests/cpld_controlfrac_c384 @@ -107,7 +107,7 @@ export CPLMODE='nems_frac' # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_restart_bmark b/tests/tests/cpld_restart_bmark index 8f60c1b0da..e5d9ecf2a5 100644 --- a/tests/tests/cpld_restart_bmark +++ b/tests/tests/cpld_restart_bmark @@ -113,7 +113,7 @@ export coupling_interval_fast_sec=${CPL_FAST} # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_restart_bmarkfrac b/tests/tests/cpld_restart_bmarkfrac index 4b57f86f25..b0d1bb3f6f 100644 --- a/tests/tests/cpld_restart_bmarkfrac +++ b/tests/tests/cpld_restart_bmarkfrac @@ -116,7 +116,7 @@ export CPLMODE='nems_frac' # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_restart_bmarkfrac_v16 b/tests/tests/cpld_restart_bmarkfrac_v16 index 9e4e91f4e3..864db722b7 100644 --- a/tests/tests/cpld_restart_bmarkfrac_v16 +++ b/tests/tests/cpld_restart_bmarkfrac_v16 @@ -119,10 +119,11 @@ export CPLMODE='nems_frac' export NPZ=127 export NPZP=128 +#export DZ_MIN=6 # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_restart_c192 b/tests/tests/cpld_restart_c192 index 29b2ba6c24..9d6ab05113 100644 --- a/tests/tests/cpld_restart_c192 +++ b/tests/tests/cpld_restart_c192 @@ -108,7 +108,7 @@ export coupling_interval_fast_sec=${CPL_FAST} # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_restart_c384 b/tests/tests/cpld_restart_c384 index 78c2f141cc..4a0d374ff9 100644 --- a/tests/tests/cpld_restart_c384 +++ b/tests/tests/cpld_restart_c384 @@ -108,7 +108,7 @@ export coupling_interval_fast_sec=${CPL_FAST} # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_restartfrac_c192 b/tests/tests/cpld_restartfrac_c192 index 0274c638fd..5bc62e8ddc 100644 --- a/tests/tests/cpld_restartfrac_c192 +++ b/tests/tests/cpld_restartfrac_c192 @@ -112,7 +112,7 @@ export CPLMODE='nems_frac' # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_restartfrac_c384 b/tests/tests/cpld_restartfrac_c384 index 6d84d16f54..352050179f 100644 --- a/tests/tests/cpld_restartfrac_c384 +++ b/tests/tests/cpld_restartfrac_c384 @@ -111,7 +111,7 @@ export CPLMODE='nems_frac' # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/datm_mx025_cfsr b/tests/tests/datm_mx025_cfsr index 43f898acf4..78aaab184d 100644 --- a/tests/tests/datm_mx025_cfsr +++ b/tests/tests/datm_mx025_cfsr @@ -36,7 +36,7 @@ export NY_GLB=1080 # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM='"seawifs-clim-1997-2010.1440x1080.v20180328.nc"' diff --git a/tests/tests/datm_mx025_gefs b/tests/tests/datm_mx025_gefs index fdae65e29a..a7e6201ab8 100644 --- a/tests/tests/datm_mx025_gefs +++ b/tests/tests/datm_mx025_gefs @@ -32,7 +32,7 @@ export NY_GLB=1080 # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM='"seawifs-clim-1997-2010.1440x1080.v20180328.nc"' From 8dabdb4489074375212cc5be4fb6e3a6f71cc590 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Tue, 16 Feb 2021 13:41:58 -0700 Subject: [PATCH 069/109] UGWP v0 v1 combined (#396) - combines the changes in PRs #360 and #382 - adds three regression tests `fv3_ccpp_gfsv16_ugwpv1 `, `fv3_ccpp_gfsv16_ugwpv1_warmstart` and `fv3_ccpp_gfsv16_ugwpv1_debug` - contains updates and bugfixes for `nc_compare.py` and the CI tests from @MinsukJi-NOAA - update Python3 environment on jet.intel, gaea.intel, cheyenne.{intel,gnu} - turn off (again) test `fv3_ccpp_decomp` on jet.intel, this test didn't work in the past, but recently it "passed", because the error checking with `nc_compare.py` failed silently and we didn't notice it Co-authored-by: valery.yudin Co-authored-by: Michael Toy Co-authored-by: MinsukJi-NOAA --- CMakeLists.txt | 8 + FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 712 ++++-- tests/RegressionTests_cheyenne.intel.log | 2216 +++++++++-------- tests/RegressionTests_gaea.intel.log | 2236 +++++++++-------- tests/RegressionTests_hera.gnu.log | 712 ++++-- tests/RegressionTests_hera.intel.log | 2332 ++++++++++-------- tests/RegressionTests_jet.intel.log | 2298 +++++++++-------- tests/RegressionTests_orion.intel.log | 2332 ++++++++++-------- tests/RegressionTests_wcoss_cray.log | 1996 ++++++++------- tests/RegressionTests_wcoss_dell_p3.log | 2314 +++++++++-------- tests/ci/ci.sh | 2 - tests/compare_ncfile.py | 18 +- tests/fv3_conf/ccpp_gfsv16_ugwpv1_run.IN | 22 + tests/parm/ccpp_v16_c96_ugwpv1.nml.IN | 343 +++ tests/rt.conf | 9 +- tests/rt.sh | 39 +- tests/rt_gnu.conf | 7 +- tests/rt_utils.sh | 16 +- tests/tests/fv3_ccpp_gfsv16_ugwpv1 | 88 + tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug | 88 + tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart | 88 + tests/utest.bld | 44 +- 23 files changed, 10168 insertions(+), 7754 deletions(-) create mode 100644 tests/fv3_conf/ccpp_gfsv16_ugwpv1_run.IN create mode 100644 tests/parm/ccpp_v16_c96_ugwpv1.nml.IN create mode 100644 tests/tests/fv3_ccpp_gfsv16_ugwpv1 create mode 100644 tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug create mode 100644 tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart diff --git a/CMakeLists.txt b/CMakeLists.txt index ac3e5e8d1a..c1782977d2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -149,6 +149,14 @@ list(APPEND _fms_defs_public use_libMPI if(QUAD_PRECISION) list(APPEND _fms_defs_public ENABLE_QUAD_PRECISION) endif() + +# check gettid +include(CheckFunctionExists) +check_function_exists(gettid HAVE_GETTID) +if(HAVE_GETTID) + list(APPEND _fms_defs_public HAVE_GETTID) +endif() + target_compile_definitions(fms PUBLIC "${_fms_defs_public}") if(32BIT) diff --git a/FV3 b/FV3 index 9412b8596c..d235fb8b07 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 9412b8596c01cfc42303959f760f309f7f9c0350 +Subproject commit d235fb8b0738a78e770f85131c09de4c0842c226 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 14ce806cba..1c1f57314a 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,16 +1,16 @@ -Thu Feb 11 07:35:12 MST 2021 +Mon Feb 15 08:20:59 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... - 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 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 @@ -50,15 +50,15 @@ 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-20210128/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... - 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 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 @@ -118,15 +118,15 @@ 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-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... - 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 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 @@ -198,8 +198,8 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -248,15 +248,15 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... - 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 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 @@ -316,15 +316,15 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... - 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 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 @@ -384,15 +384,15 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... - 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 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 @@ -452,15 +452,15 @@ 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-20210128/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... - 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 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 @@ -520,15 +520,15 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... - 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 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 @@ -579,24 +579,24 @@ Checking test 009 fv3_ccpp_gsd results .... Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 @@ -612,15 +612,15 @@ 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-20210128/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... - 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 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 @@ -647,24 +647,24 @@ Checking test 010 fv3_ccpp_thompson results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 @@ -680,15 +680,15 @@ 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-20210128/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... - 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 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 @@ -715,24 +715,24 @@ Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 @@ -748,15 +748,15 @@ 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-20210128/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... - 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 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 @@ -783,24 +783,24 @@ Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 @@ -816,15 +816,15 @@ 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-20210128/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - 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 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 @@ -884,10 +884,10 @@ 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-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -902,9 +902,133 @@ 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-20210128/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_control_debug_prod -Checking test 015 fv3_ccpp_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... + 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 ............SKIP for gnu compilers + 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 015 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + 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 ............SKIP for gnu compilers + 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 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_control_debug_prod +Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -929,18 +1053,18 @@ Checking test 015 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 015 fv3_ccpp_control_debug PASS +Test 017 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... - 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 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 018 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 @@ -997,18 +1121,18 @@ Checking test 016 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 016 fv3_ccpp_gfs_v15p2_debug PASS +Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_debug_prod -Checking test 017 fv3_ccpp_gfs_v16_debug results .... - 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 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v16_debug_prod +Checking test 019 fv3_ccpp_gfs_v16_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 @@ -1065,18 +1189,18 @@ Checking test 017 fv3_ccpp_gfs_v16_debug 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_gfs_v16_debug PASS +Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - 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 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 020 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 @@ -1133,18 +1257,18 @@ Checking test 018 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 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 019 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - 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 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 021 fv3_ccpp_gfs_v16_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 @@ -1201,18 +1325,18 @@ Checking test 019 fv3_ccpp_gfs_v16_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 019 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - 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 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_multigases_prod +Checking test 022 fv3_ccpp_multigases 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 @@ -1239,24 +1363,24 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 @@ -1275,18 +1399,18 @@ Checking test 020 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 020 fv3_ccpp_multigases PASS +Test 022 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - 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 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 023 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 + 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 @@ -1343,13 +1467,13 @@ Checking test 021 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 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 023 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_56057/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 ............ALT CHECK......OK +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 024 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -1361,9 +1485,71 @@ Checking test 022 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 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 024 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 025 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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 ............SKIP for gnu compilers + 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 025 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 07:53:31 MST 2021 -Elapsed time: 00h:18m:20s. Have a nice day! +Mon Feb 15 08:39:02 MST 2021 +Elapsed time: 00h:18m:03s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 850ed8a7c9..988a74735b 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,16 +1,16 @@ -Thu Feb 11 07:34:17 MST 2021 +Mon Feb 15 08:21:05 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... - 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 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 @@ -70,15 +70,15 @@ 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-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/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 - 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 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 @@ -138,15 +138,15 @@ 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-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... - 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 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 @@ -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-20210128/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,15 +256,15 @@ 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-20210128/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... - 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 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 @@ -324,15 +324,15 @@ 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-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -372,15 +372,15 @@ 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-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -420,19 +420,19 @@ 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-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - 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 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.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK Comparing dynf000.nc ............ALT CHECK......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 @@ -468,15 +468,15 @@ 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-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -516,15 +516,15 @@ 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-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - 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 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 @@ -564,15 +564,15 @@ 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-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - 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 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 @@ -612,15 +612,15 @@ 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-20210128/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... - 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 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 @@ -680,15 +680,15 @@ 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-20210128/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... - 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 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 @@ -748,15 +748,15 @@ 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-20210128/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_lndp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lndp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... - 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 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 @@ -816,15 +816,15 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... - 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 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 @@ -884,15 +884,15 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... - 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 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 @@ -932,15 +932,15 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... - 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 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 @@ -966,25 +966,25 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1006,15 +1006,15 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... - 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 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 @@ -1040,25 +1040,25 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1074,47 +1074,47 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... - 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 fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + 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 fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1130,56 +1130,56 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... - 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 atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + 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.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1197,30 +1197,30 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + 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 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1228,19 +1228,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + 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 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1269,35 +1269,35 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + 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 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... - 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 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 @@ -1337,15 +1337,15 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfdlmprad_gwd_prod Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... - 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 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 @@ -1385,15 +1385,15 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... - 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 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 @@ -1433,15 +1433,15 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... - 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 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 @@ -1481,15 +1481,15 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... - 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 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 @@ -1529,15 +1529,15 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... - 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 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 @@ -1577,39 +1577,39 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfdlmp_32bit_prod Checking test 033 fv3_ccpp_gfdlmp_32bit results .... - 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 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 ............ALT CHECK......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/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 @@ -1625,15 +1625,15 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... - 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 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 @@ -1643,25 +1643,25 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1677,39 +1677,39 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... - 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 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 ............ALT CHECK......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/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 @@ -1731,15 +1731,15 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... - 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 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 @@ -1789,25 +1789,25 @@ Checking test 036 fv3_ccpp_gsd results .... Comparing dynf048.tile5.nc .........OK Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1823,15 +1823,15 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_rap_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rap_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... - 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 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 @@ -1857,25 +1857,25 @@ Checking test 037 fv3_ccpp_rap results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1891,15 +1891,15 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_hrrr_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_hrrr_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... - 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 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 @@ -1925,25 +1925,25 @@ Checking test 038 fv3_ccpp_hrrr results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1959,15 +1959,15 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... - 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 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 @@ -1993,25 +1993,25 @@ Checking test 039 fv3_ccpp_thompson results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2027,15 +2027,15 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_thompson_no_aero_prod Checking test 040 fv3_ccpp_thompson_no_aero results .... - 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 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 @@ -2061,25 +2061,25 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2095,15 +2095,15 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_rrfs_v1beta_prod Checking test 041 fv3_ccpp_rrfs_v1beta results .... - 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 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 @@ -2129,25 +2129,25 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2163,15 +2163,15 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v16_prod Checking test 042 fv3_ccpp_gfs_v16 results .... - 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 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 @@ -2243,8 +2243,8 @@ Checking test 042 fv3_ccpp_gfs_v16 results .... Test 042 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v16_restart_prod Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2293,15 +2293,15 @@ Checking test 043 fv3_ccpp_gfs_v16_restart results .... Test 043 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v16_stochy_prod Checking test 044 fv3_ccpp_gfs_v16_stochy results .... - 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 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 @@ -2361,15 +2361,15 @@ Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Test 044 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... - 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 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 @@ -2429,8 +2429,8 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2491,15 +2491,15 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gocart_clm_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gocart_clm_prod Checking test 047 fv3_ccpp_gocart_clm results .... - 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 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 @@ -2539,15 +2539,15 @@ Checking test 047 fv3_ccpp_gocart_clm results .... Test 047 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v16_flake_prod Checking test 048 fv3_ccpp_gfs_v16_flake results .... - 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 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 @@ -2607,15 +2607,15 @@ Checking test 048 fv3_ccpp_gfs_v16_flake results .... Test 048 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - 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 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 @@ -2675,10 +2675,10 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -2693,25 +2693,149 @@ Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... - 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 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... 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 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 051 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + 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 052 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/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 + 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 @@ -2758,18 +2882,18 @@ Checking test 051 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 051 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_debug_prod -Checking test 052 fv3_ccpp_gfs_v16_debug results .... - 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 +Test 053 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v16_debug_prod +Checking test 054 fv3_ccpp_gfs_v16_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 @@ -2826,18 +2950,18 @@ Checking test 052 fv3_ccpp_gfs_v16_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_v16_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - 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 +Test 054 fv3_ccpp_gfs_v16_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/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 + 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 @@ -2894,18 +3018,18 @@ Checking test 053 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 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - 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 +Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 056 fv3_ccpp_gfs_v16_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 @@ -2962,18 +3086,18 @@ Checking test 054 fv3_ccpp_gfs_v16_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_v16_RRTMGP_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gsd_debug_prod -Checking test 055 fv3_ccpp_gsd_debug results .... - 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 +Test 056 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/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 + 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 @@ -2999,25 +3123,25 @@ Checking test 055 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3030,18 +3154,18 @@ Checking test 055 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 055 fv3_ccpp_gsd_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 056 fv3_ccpp_gsd_diag3d_debug results .... - 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 +Test 057 fv3_ccpp_gsd_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/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 + 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 @@ -3067,25 +3191,25 @@ Checking test 056 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3098,18 +3222,18 @@ Checking test 056 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 056 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_thompson_debug_prod -Checking test 057 fv3_ccpp_thompson_debug results .... - 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 +Test 058 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/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 + 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 @@ -3135,25 +3259,25 @@ Checking test 057 fv3_ccpp_thompson_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3166,18 +3290,18 @@ Checking test 057 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 057 fv3_ccpp_thompson_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... - 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 +Test 059 fv3_ccpp_thompson_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/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 + 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 @@ -3203,25 +3327,25 @@ Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3234,18 +3358,18 @@ Checking test 058 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 058 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... - 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 +Test 060 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/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 + 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 @@ -3271,25 +3395,25 @@ Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3302,18 +3426,18 @@ Checking test 059 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 059 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - 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 +Test 061 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/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 + 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 @@ -3370,13 +3494,13 @@ Checking test 060 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 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/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 ............ALT CHECK......OK +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/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 Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3388,12 +3512,74 @@ Checking test 061 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 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 064 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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/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 064 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_control_prod -Checking test 062 cpld_control results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_control_prod +Checking test 065 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3441,12 +3627,12 @@ Checking test 062 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 062 cpld_control PASS +Test 065 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_prod -Checking test 063 cpld_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restart_prod +Checking test 066 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3494,12 +3680,12 @@ Checking test 063 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 063 cpld_restart PASS +Test 066 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_controlfrac_prod -Checking test 064 cpld_controlfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_controlfrac_prod +Checking test 067 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3547,12 +3733,12 @@ Checking test 064 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 064 cpld_controlfrac PASS +Test 067 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restartfrac_prod -Checking test 065 cpld_restartfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restartfrac_prod +Checking test 068 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3600,12 +3786,12 @@ Checking test 065 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 065 cpld_restartfrac PASS +Test 068 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_2threads_prod -Checking test 066 cpld_2threads results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_2threads_prod +Checking test 069 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3653,12 +3839,12 @@ Checking test 066 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 066 cpld_2threads PASS +Test 069 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_decomp_prod -Checking test 067 cpld_decomp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_decomp_prod +Checking test 070 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3706,12 +3892,12 @@ Checking test 067 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 067 cpld_decomp PASS +Test 070 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_satmedmf_prod -Checking test 068 cpld_satmedmf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_satmedmf_prod +Checking test 071 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3759,12 +3945,12 @@ Checking test 068 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 068 cpld_satmedmf PASS +Test 071 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_ca_prod -Checking test 069 cpld_ca results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_ca_prod +Checking test 072 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3812,12 +3998,12 @@ Checking test 069 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 069 cpld_ca PASS +Test 072 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_control_c192_prod -Checking test 070 cpld_control_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_control_c192_prod +Checking test 073 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -3865,12 +4051,12 @@ Checking test 070 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 070 cpld_control_c192 PASS +Test 073 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_c192_prod -Checking test 071 cpld_restart_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restart_c192_prod +Checking test 074 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -3918,12 +4104,12 @@ Checking test 071 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 071 cpld_restart_c192 PASS +Test 074 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_controlfrac_c192_prod -Checking test 072 cpld_controlfrac_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_controlfrac_c192_prod +Checking test 075 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -3971,12 +4157,12 @@ Checking test 072 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 072 cpld_controlfrac_c192 PASS +Test 075 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restartfrac_c192_prod -Checking test 073 cpld_restartfrac_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restartfrac_c192_prod +Checking test 076 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4024,12 +4210,12 @@ Checking test 073 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 073 cpld_restartfrac_c192 PASS +Test 076 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_control_c384_prod -Checking test 074 cpld_control_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_control_c384_prod +Checking test 077 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4080,12 +4266,12 @@ Checking test 074 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 074 cpld_control_c384 PASS +Test 077 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_c384_prod -Checking test 075 cpld_restart_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restart_c384_prod +Checking test 078 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4136,12 +4322,12 @@ Checking test 075 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 075 cpld_restart_c384 PASS +Test 078 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_controlfrac_c384_prod -Checking test 076 cpld_controlfrac_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_controlfrac_c384_prod +Checking test 079 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4192,12 +4378,12 @@ Checking test 076 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 076 cpld_controlfrac_c384 PASS +Test 079 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restartfrac_c384_prod -Checking test 077 cpld_restartfrac_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restartfrac_c384_prod +Checking test 080 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4248,12 +4434,12 @@ Checking test 077 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 077 cpld_restartfrac_c384 PASS +Test 080 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmark_prod -Checking test 078 cpld_bmark results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_bmark_prod +Checking test 081 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4304,12 +4490,12 @@ Checking test 078 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 078 cpld_bmark PASS +Test 081 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_bmark_prod -Checking test 079 cpld_restart_bmark results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restart_bmark_prod +Checking test 082 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4360,12 +4546,12 @@ Checking test 079 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 079 cpld_restart_bmark PASS +Test 082 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmarkfrac_prod -Checking test 080 cpld_bmarkfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_bmarkfrac_prod +Checking test 083 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4416,12 +4602,12 @@ Checking test 080 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 080 cpld_bmarkfrac PASS +Test 083 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_bmarkfrac_prod -Checking test 081 cpld_restart_bmarkfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restart_bmarkfrac_prod +Checking test 084 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4472,12 +4658,12 @@ Checking test 081 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 081 cpld_restart_bmarkfrac PASS +Test 084 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmarkfrac_v16_prod -Checking test 082 cpld_bmarkfrac_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_bmarkfrac_v16_prod +Checking test 085 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4528,12 +4714,12 @@ Checking test 082 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 082 cpld_bmarkfrac_v16 PASS +Test 085 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_restart_bmarkfrac_v16_prod -Checking test 083 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restart_bmarkfrac_v16_prod +Checking test 086 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4584,12 +4770,12 @@ Checking test 083 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 083 cpld_restart_bmarkfrac_v16 PASS +Test 086 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmark_wave_prod -Checking test 084 cpld_bmark_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_bmark_wave_prod +Checking test 087 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4643,12 +4829,12 @@ Checking test 084 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 084 cpld_bmark_wave PASS +Test 087 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmarkfrac_wave_prod -Checking test 085 cpld_bmarkfrac_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_bmarkfrac_wave_prod +Checking test 088 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4702,12 +4888,12 @@ Checking test 085 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 085 cpld_bmarkfrac_wave PASS +Test 088 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_bmarkfrac_wave_v16_prod -Checking test 086 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_bmarkfrac_wave_v16_prod +Checking test 089 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4761,12 +4947,12 @@ Checking test 086 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 086 cpld_bmarkfrac_wave_v16 PASS +Test 089 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_control_wave_prod -Checking test 087 cpld_control_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_control_wave_prod +Checking test 090 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4817,12 +5003,12 @@ Checking test 087 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 087 cpld_control_wave PASS +Test 090 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_debug_prod -Checking test 088 cpld_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_debug_prod +Checking test 091 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4870,12 +5056,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 091 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/cpld_debugfrac_prod -Checking test 089 cpld_debugfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_debugfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_debugfrac_prod +Checking test 092 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4923,87 +5109,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 092 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_control_cfsr -Checking test 090 datm_control_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/datm_control_cfsr +Checking test 093 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 093 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_restart_cfsr -Checking test 091 datm_restart_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/datm_restart_cfsr +Checking test 094 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 094 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_control_gefs -Checking test 092 datm_control_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/datm_control_gefs +Checking test 095 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 095 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_bulk_cfsr -Checking test 093 datm_bulk_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/datm_bulk_cfsr +Checking test 096 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 096 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_bulk_gefs -Checking test 094 datm_bulk_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/datm_bulk_gefs +Checking test 097 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 097 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_mx025_cfsr -Checking test 095 datm_mx025_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/datm_mx025_cfsr +Checking test 098 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 098 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_mx025_gefs -Checking test 096 datm_mx025_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/datm_mx025_gefs +Checking test 099 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 099 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_8672/datm_debug_cfsr -Checking test 097 datm_debug_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/datm_debug_cfsr +Checking test 100 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 100 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 08:54:18 MST 2021 -Elapsed time: 01h:20m:02s. Have a nice day! +Mon Feb 15 09:40:43 MST 2021 +Elapsed time: 01h:19m:38s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 8160897e02..0afccbeff5 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,16 +1,16 @@ -Thu Feb 11 11:12:57 EST 2021 +Mon Feb 15 10:22:34 EST 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... - 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 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 @@ -70,15 +70,15 @@ 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-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 - 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 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 @@ -138,15 +138,15 @@ 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-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... - 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 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 @@ -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-20210128/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,15 +256,15 @@ 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-20210128/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... - 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 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 @@ -324,15 +324,15 @@ 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-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -372,15 +372,15 @@ 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-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -420,15 +420,15 @@ 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-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -468,15 +468,15 @@ 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-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -516,15 +516,15 @@ 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-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - 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 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 @@ -564,15 +564,15 @@ 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-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - 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 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 @@ -612,15 +612,15 @@ 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-20210128/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... - 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 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 @@ -680,15 +680,15 @@ 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-20210128/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_ca_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ca_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... - 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 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 @@ -748,15 +748,15 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_lndp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lndp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... - 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 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 @@ -816,15 +816,15 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_iau_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_iau_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... - 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 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 @@ -884,15 +884,15 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... - 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 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 @@ -932,15 +932,15 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... - 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 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 @@ -966,25 +966,25 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1006,15 +1006,15 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... - 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 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 @@ -1040,25 +1040,25 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1074,47 +1074,47 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... - 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 fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + 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 fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1130,56 +1130,56 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... - 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 atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + 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.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1197,30 +1197,30 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + 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 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1228,19 +1228,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + 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 ............ALT CHECK......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-20210128/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1269,35 +1269,35 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + 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 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... - 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 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 @@ -1337,15 +1337,15 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfdlmprad_gwd_prod Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... - 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 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 @@ -1385,15 +1385,15 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... - 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 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 @@ -1433,15 +1433,15 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... - 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 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 @@ -1481,15 +1481,15 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... - 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 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 @@ -1529,15 +1529,15 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... - 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 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 @@ -1577,39 +1577,39 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfdlmp_32bit_prod Checking test 033 fv3_ccpp_gfdlmp_32bit results .... - 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 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 ............ALT CHECK......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/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 @@ -1625,15 +1625,15 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... - 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 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 @@ -1643,25 +1643,25 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1677,39 +1677,39 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_cpt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... - 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 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 ............ALT CHECK......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/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 @@ -1731,15 +1731,15 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gsd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... - 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 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 @@ -1789,25 +1789,25 @@ Checking test 036 fv3_ccpp_gsd results .... Comparing dynf048.tile5.nc .........OK Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1823,15 +1823,15 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_rap_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rap_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... - 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 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 @@ -1857,25 +1857,25 @@ Checking test 037 fv3_ccpp_rap results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1891,15 +1891,15 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_hrrr_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_hrrr_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... - 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 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 @@ -1925,25 +1925,25 @@ Checking test 038 fv3_ccpp_hrrr results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1959,15 +1959,15 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... - 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 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 @@ -1993,25 +1993,25 @@ Checking test 039 fv3_ccpp_thompson results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2027,15 +2027,15 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_thompson_no_aero_prod Checking test 040 fv3_ccpp_thompson_no_aero results .... - 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 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 @@ -2061,25 +2061,25 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2095,15 +2095,15 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_rrfs_v1beta_prod Checking test 041 fv3_ccpp_rrfs_v1beta results .... - 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 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 @@ -2129,25 +2129,25 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2163,15 +2163,15 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v15p2_prod Checking test 042 fv3_ccpp_gfs_v15p2 results .... - 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 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 @@ -2231,15 +2231,15 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v16_prod Checking test 043 fv3_ccpp_gfs_v16 results .... - 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 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 @@ -2311,8 +2311,8 @@ Checking test 043 fv3_ccpp_gfs_v16 results .... Test 043 fv3_ccpp_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v16_restart_prod Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2361,15 +2361,15 @@ Checking test 044 fv3_ccpp_gfs_v16_restart results .... Test 044 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v16_stochy_prod Checking test 045 fv3_ccpp_gfs_v16_stochy results .... - 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 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 @@ -2429,15 +2429,15 @@ Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Test 045 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... - 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 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 @@ -2497,15 +2497,15 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... - 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 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 @@ -2565,8 +2565,8 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 @@ -2627,15 +2627,15 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfsv16_csawmg_prod Checking test 049 fv3_ccpp_gfsv16_csawmg results .... - 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 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 @@ -2675,15 +2675,15 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Test 049 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfsv16_csawmgt_prod Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... - 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 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 @@ -2723,15 +2723,15 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Test 050 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gocart_clm_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gocart_clm_prod Checking test 051 fv3_ccpp_gocart_clm results .... - 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 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 @@ -2771,15 +2771,15 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Test 051 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v16_flake_prod Checking test 052 fv3_ccpp_gfs_v16_flake results .... - 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 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 @@ -2839,15 +2839,15 @@ Checking test 052 fv3_ccpp_gfs_v16_flake results .... Test 052 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - 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 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 @@ -2907,10 +2907,10 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -2925,28 +2925,152 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... - 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 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... 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 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 055 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + 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 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 + 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 @@ -2990,18 +3114,18 @@ Checking test 055 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 055 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_debug_prod -Checking test 056 fv3_ccpp_gfs_v16_debug results .... - 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 +Test 057 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v16_debug_prod +Checking test 058 fv3_ccpp_gfs_v16_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 @@ -3058,18 +3182,18 @@ Checking test 056 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - 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 +Test 058 fv3_ccpp_gfs_v16_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 + 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 @@ -3126,18 +3250,18 @@ Checking test 057 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 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - 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 +Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 060 fv3_ccpp_gfs_v16_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 @@ -3194,18 +3318,18 @@ Checking test 058 fv3_ccpp_gfs_v16_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 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gsd_debug_prod -Checking test 059 fv3_ccpp_gsd_debug results .... - 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 +Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 + 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 @@ -3231,25 +3355,25 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3262,18 +3386,18 @@ Checking test 059 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 059 fv3_ccpp_gsd_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... - 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 +Test 061 fv3_ccpp_gsd_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 + 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 @@ -3299,25 +3423,25 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3330,18 +3454,18 @@ Checking test 060 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 060 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_debug_prod -Checking test 061 fv3_ccpp_thompson_debug results .... - 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 +Test 062 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 + 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 @@ -3367,25 +3491,25 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3398,18 +3522,18 @@ Checking test 061 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 061 fv3_ccpp_thompson_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... - 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 +Test 063 fv3_ccpp_thompson_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 + 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 @@ -3435,25 +3559,25 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3466,18 +3590,18 @@ Checking test 062 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 062 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... - 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 +Test 064 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 + 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 @@ -3503,25 +3627,25 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3534,18 +3658,18 @@ Checking test 063 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 063 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - 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 +Test 065 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 + 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 @@ -3602,13 +3726,13 @@ Checking test 064 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 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/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 ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 Comparing dynf000.nc .........OK @@ -3620,12 +3744,74 @@ Checking test 065 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 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 068 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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/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 068 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_control_prod -Checking test 066 cpld_control results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_control_prod +Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3673,12 +3859,12 @@ Checking test 066 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 066 cpld_control PASS +Test 069 cpld_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_prod -Checking test 067 cpld_restart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_restart_prod +Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3726,12 +3912,12 @@ Checking test 067 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 067 cpld_restart PASS +Test 070 cpld_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_controlfrac_prod -Checking test 068 cpld_controlfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_controlfrac_prod +Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3779,12 +3965,12 @@ Checking test 068 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 068 cpld_controlfrac PASS +Test 071 cpld_controlfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restartfrac_prod -Checking test 069 cpld_restartfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_restartfrac_prod +Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3832,12 +4018,12 @@ Checking test 069 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 069 cpld_restartfrac PASS +Test 072 cpld_restartfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_2threads_prod -Checking test 070 cpld_2threads results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_2threads_prod +Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3885,12 +4071,12 @@ Checking test 070 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 070 cpld_2threads PASS +Test 073 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_decomp_prod -Checking test 071 cpld_decomp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_decomp_prod +Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3938,12 +4124,12 @@ Checking test 071 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 071 cpld_decomp PASS +Test 074 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_satmedmf_prod -Checking test 072 cpld_satmedmf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_satmedmf_prod +Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3991,12 +4177,12 @@ Checking test 072 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 072 cpld_satmedmf PASS +Test 075 cpld_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_ca_prod -Checking test 073 cpld_ca results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_ca_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_ca_prod +Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4044,12 +4230,12 @@ Checking test 073 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 073 cpld_ca PASS +Test 076 cpld_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_control_c192_prod -Checking test 074 cpld_control_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_control_c192_prod +Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4097,12 +4283,12 @@ Checking test 074 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 074 cpld_control_c192 PASS +Test 077 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_c192_prod -Checking test 075 cpld_restart_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_restart_c192_prod +Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4150,12 +4336,12 @@ Checking test 075 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 075 cpld_restart_c192 PASS +Test 078 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_controlfrac_c192_prod -Checking test 076 cpld_controlfrac_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_controlfrac_c192_prod +Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4203,12 +4389,12 @@ Checking test 076 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 076 cpld_controlfrac_c192 PASS +Test 079 cpld_controlfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restartfrac_c192_prod -Checking test 077 cpld_restartfrac_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_restartfrac_c192_prod +Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4256,12 +4442,12 @@ Checking test 077 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 077 cpld_restartfrac_c192 PASS +Test 080 cpld_restartfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_control_c384_prod -Checking test 078 cpld_control_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_control_c384_prod +Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4312,12 +4498,12 @@ Checking test 078 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 078 cpld_control_c384 PASS +Test 081 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_c384_prod -Checking test 079 cpld_restart_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_restart_c384_prod +Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4368,12 +4554,12 @@ Checking test 079 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 079 cpld_restart_c384 PASS +Test 082 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_controlfrac_c384_prod -Checking test 080 cpld_controlfrac_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_controlfrac_c384_prod +Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4424,12 +4610,12 @@ Checking test 080 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 080 cpld_controlfrac_c384 PASS +Test 083 cpld_controlfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restartfrac_c384_prod -Checking test 081 cpld_restartfrac_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_restartfrac_c384_prod +Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4480,12 +4666,12 @@ Checking test 081 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 081 cpld_restartfrac_c384 PASS +Test 084 cpld_restartfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_bmark_prod -Checking test 082 cpld_bmark results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_bmark_prod +Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4536,12 +4722,12 @@ Checking test 082 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 082 cpld_bmark PASS +Test 085 cpld_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_bmark_prod -Checking test 083 cpld_restart_bmark results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_restart_bmark_prod +Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4592,12 +4778,12 @@ Checking test 083 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 083 cpld_restart_bmark PASS +Test 086 cpld_restart_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_bmarkfrac_prod -Checking test 084 cpld_bmarkfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_bmarkfrac_prod +Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4648,12 +4834,12 @@ Checking test 084 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 084 cpld_bmarkfrac PASS +Test 087 cpld_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_restart_bmarkfrac_prod -Checking test 085 cpld_restart_bmarkfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_restart_bmarkfrac_prod +Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4704,12 +4890,12 @@ Checking test 085 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 085 cpld_restart_bmarkfrac PASS +Test 088 cpld_restart_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_debug_prod -Checking test 086 cpld_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_debug_prod +Checking test 089 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4757,12 +4943,12 @@ Checking test 086 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 086 cpld_debug PASS +Test 089 cpld_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/cpld_debugfrac_prod -Checking test 087 cpld_debugfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_debugfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_debugfrac_prod +Checking test 090 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4810,87 +4996,87 @@ Checking test 087 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 087 cpld_debugfrac PASS +Test 090 cpld_debugfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_control_cfsr -Checking test 088 datm_control_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 088 datm_control_cfsr PASS +Test 091 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_restart_cfsr -Checking test 089 datm_restart_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 089 datm_restart_cfsr PASS +Test 092 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_control_gefs -Checking test 090 datm_control_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 090 datm_control_gefs PASS +Test 093 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_bulk_cfsr -Checking test 091 datm_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 091 datm_bulk_cfsr PASS +Test 094 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_bulk_gefs -Checking test 092 datm_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 092 datm_bulk_gefs PASS +Test 095 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_mx025_cfsr -Checking test 093 datm_mx025_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_mx025_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/datm_mx025_cfsr +Checking test 096 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 093 datm_mx025_cfsr PASS +Test 096 datm_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_mx025_gefs -Checking test 094 datm_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/datm_mx025_gefs +Checking test 097 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 094 datm_mx025_gefs PASS +Test 097 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Denise.Worthen/FV3_RT/rt_45198/datm_debug_cfsr -Checking test 095 datm_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 095 datm_debug_cfsr PASS +Test 098 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 12:36:16 EST 2021 -Elapsed time: 01h:23m:20s. Have a nice day! +Mon Feb 15 12:31:33 EST 2021 +Elapsed time: 02h:08m:59s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index a1091a96c2..748327c146 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,16 +1,16 @@ -Thu Feb 11 14:14:32 UTC 2021 +Sat Feb 13 03:32:15 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... - 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 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 @@ -50,15 +50,15 @@ Checking test 001 fv3_ccpp_gfdlmp results .... Test 001 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... - 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 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 @@ -118,15 +118,15 @@ 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-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... - 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 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 @@ -198,8 +198,8 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -248,15 +248,15 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... - 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 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 @@ -316,15 +316,15 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... - 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 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 @@ -384,15 +384,15 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... - 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 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 @@ -452,15 +452,15 @@ 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-20210128/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... - 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 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 @@ -520,15 +520,15 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... - 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 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 @@ -579,24 +579,24 @@ Checking test 009 fv3_ccpp_gsd results .... Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 @@ -612,15 +612,15 @@ Checking test 009 fv3_ccpp_gsd results .... Test 009 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... - 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 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 @@ -647,24 +647,24 @@ Checking test 010 fv3_ccpp_thompson results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 @@ -680,15 +680,15 @@ Checking test 010 fv3_ccpp_thompson results .... Test 010 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... - 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 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 @@ -715,24 +715,24 @@ Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 @@ -748,15 +748,15 @@ 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-20210128/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... - 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 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 @@ -783,24 +783,24 @@ Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 @@ -816,15 +816,15 @@ 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-20210128/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - 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 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 @@ -884,10 +884,10 @@ 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-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -902,9 +902,133 @@ 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-20210128/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_control_debug_prod -Checking test 015 fv3_ccpp_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... + 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 ............SKIP for gnu compilers + 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 015 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + 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 ............SKIP for gnu compilers + 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 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_control_debug_prod +Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -929,18 +1053,18 @@ Checking test 015 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 015 fv3_ccpp_control_debug PASS +Test 017 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 016 fv3_ccpp_gfs_v15p2_debug results .... - 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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 018 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 @@ -997,18 +1121,18 @@ Checking test 016 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 016 fv3_ccpp_gfs_v15p2_debug PASS +Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_debug_prod -Checking test 017 fv3_ccpp_gfs_v16_debug results .... - 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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v16_debug_prod +Checking test 019 fv3_ccpp_gfs_v16_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 @@ -1065,18 +1189,18 @@ Checking test 017 fv3_ccpp_gfs_v16_debug 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_gfs_v16_debug PASS +Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - 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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 020 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 @@ -1133,18 +1257,18 @@ Checking test 018 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 018 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 019 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - 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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 021 fv3_ccpp_gfs_v16_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 @@ -1201,18 +1325,18 @@ Checking test 019 fv3_ccpp_gfs_v16_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 019 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... - 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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_multigases_prod +Checking test 022 fv3_ccpp_multigases 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 @@ -1239,24 +1363,24 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - 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/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 @@ -1275,18 +1399,18 @@ Checking test 020 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 020 fv3_ccpp_multigases PASS +Test 022 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - 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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 023 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 + 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 @@ -1343,13 +1467,13 @@ Checking test 021 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 021 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 023 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_186651/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 ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 024 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -1361,9 +1485,71 @@ Checking test 022 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 022 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 024 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 025 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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 ............SKIP for gnu compilers + 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 025 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 15:08:53 UTC 2021 -Elapsed time: 00h:54m:21s. Have a nice day! +Sat Feb 13 04:02:26 UTC 2021 +Elapsed time: 00h:30m:12s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 3b311cadc7..0e3234170d 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,16 +1,16 @@ -Thu Feb 11 14:11:41 UTC 2021 +Sat Feb 13 04:42:55 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... - 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 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 @@ -70,15 +70,15 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/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 - 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 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 @@ -138,15 +138,15 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... - 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 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 @@ -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-20210128/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,15 +256,15 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... - 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 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 @@ -324,15 +324,15 @@ 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-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -372,15 +372,15 @@ 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-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -420,16 +420,16 @@ 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-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - 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.nc ............ALT CHECK......OK + 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.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK @@ -468,15 +468,15 @@ 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-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -516,15 +516,15 @@ 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-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - 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 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 @@ -564,15 +564,15 @@ 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-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - 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 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 @@ -612,15 +612,15 @@ 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-20210128/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... - 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 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 @@ -680,15 +680,15 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... - 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 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 @@ -748,15 +748,15 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... - 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 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 @@ -816,15 +816,15 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... - 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 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 @@ -884,15 +884,15 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... - 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 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 @@ -932,15 +932,15 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... - 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 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 @@ -981,15 +981,15 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - 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 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 @@ -1030,15 +1030,15 @@ 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-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... - 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 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 phyf006.nemsio .........OK Comparing dynf006.nemsio .........OK Comparing RESTART/coupler.res .........OK @@ -1079,15 +1079,15 @@ 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-20210128/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... - 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 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 @@ -1113,25 +1113,25 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1153,15 +1153,15 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_control_32bit_prod Checking test 021 fv3_ccpp_control_32bit results .... - 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 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 @@ -1187,25 +1187,25 @@ Checking test 021 fv3_ccpp_control_32bit results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1221,47 +1221,47 @@ 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-20210128/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... - 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 fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + 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 fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1277,56 +1277,56 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_stretched_nest_prod Checking test 023 fv3_ccpp_stretched_nest results .... - 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 atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + 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.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1344,30 +1344,30 @@ 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-20210128/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + 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 024 fv3_ccpp_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1375,10 +1375,10 @@ 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-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -1386,8 +1386,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-20210128/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1416,35 +1416,35 @@ 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-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_stretched_nest_debug_prod Checking test 029 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Test 029 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfdlmp_prod Checking test 030 fv3_ccpp_gfdlmp results .... - 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 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 @@ -1484,15 +1484,15 @@ Checking test 030 fv3_ccpp_gfdlmp results .... Test 030 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfdlmprad_gwd_prod Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... - 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 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 @@ -1532,15 +1532,15 @@ 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-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... - 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 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 @@ -1580,15 +1580,15 @@ 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-20210128/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... - 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 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 @@ -1628,15 +1628,15 @@ Checking test 033 fv3_ccpp_csawmg results .... Test 033 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... - 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 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 @@ -1676,15 +1676,15 @@ Checking test 034 fv3_ccpp_satmedmf results .... Test 034 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... - 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 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 @@ -1724,39 +1724,39 @@ Checking test 035 fv3_ccpp_satmedmfq results .... Test 035 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfdlmp_32bit_prod Checking test 036 fv3_ccpp_gfdlmp_32bit results .... - 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 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 ............ALT CHECK......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/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 @@ -1772,15 +1772,15 @@ 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-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... - 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 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 @@ -1790,25 +1790,25 @@ Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1824,39 +1824,39 @@ 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-20210128/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... - 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 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 ............ALT CHECK......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/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 @@ -1878,15 +1878,15 @@ Checking test 038 fv3_ccpp_cpt results .... Test 038 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... - 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 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 @@ -1936,25 +1936,25 @@ Checking test 039 fv3_ccpp_gsd results .... Comparing dynf048.tile5.nc .........OK Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1970,15 +1970,15 @@ Checking test 039 fv3_ccpp_gsd results .... Test 039 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... - 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 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 @@ -2004,25 +2004,25 @@ Checking test 040 fv3_ccpp_rap results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2038,15 +2038,15 @@ Checking test 040 fv3_ccpp_rap results .... Test 040 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... - 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 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 @@ -2072,25 +2072,25 @@ Checking test 041 fv3_ccpp_hrrr results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2106,15 +2106,15 @@ Checking test 041 fv3_ccpp_hrrr results .... Test 041 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... - 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 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 @@ -2140,25 +2140,25 @@ Checking test 042 fv3_ccpp_thompson results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2174,15 +2174,15 @@ Checking test 042 fv3_ccpp_thompson results .... Test 042 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_thompson_no_aero_prod Checking test 043 fv3_ccpp_thompson_no_aero results .... - 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 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 @@ -2208,25 +2208,25 @@ Checking test 043 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2242,15 +2242,15 @@ 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-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_rrfs_v1beta_prod Checking test 044 fv3_ccpp_rrfs_v1beta results .... - 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 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 @@ -2276,25 +2276,25 @@ Checking test 044 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2310,15 +2310,15 @@ 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-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v15p2_prod Checking test 045 fv3_ccpp_gfs_v15p2 results .... - 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 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 @@ -2378,15 +2378,15 @@ 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-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v16_prod Checking test 046 fv3_ccpp_gfs_v16 results .... - 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 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 @@ -2458,8 +2458,8 @@ Checking test 046 fv3_ccpp_gfs_v16 results .... Test 046 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v16_restart_prod Checking test 047 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2508,15 +2508,15 @@ Checking test 047 fv3_ccpp_gfs_v16_restart results .... Test 047 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v16_stochy_prod Checking test 048 fv3_ccpp_gfs_v16_stochy results .... - 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 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 @@ -2576,15 +2576,15 @@ Checking test 048 fv3_ccpp_gfs_v16_stochy results .... Test 048 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... - 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 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 @@ -2644,15 +2644,15 @@ 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-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... - 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 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 @@ -2712,8 +2712,8 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/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 @@ -2774,15 +2774,15 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfsv16_csawmg_prod Checking test 052 fv3_ccpp_gfsv16_csawmg results .... - 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 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 @@ -2822,15 +2822,15 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Test 052 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfsv16_csawmgt_prod Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... - 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 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 @@ -2870,15 +2870,15 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Test 053 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gocart_clm_prod Checking test 054 fv3_ccpp_gocart_clm results .... - 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 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 @@ -2918,15 +2918,15 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Test 054 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v16_flake_prod Checking test 055 fv3_ccpp_gfs_v16_flake results .... - 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 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 @@ -2986,15 +2986,15 @@ Checking test 055 fv3_ccpp_gfs_v16_flake results .... Test 055 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - 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 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 @@ -3054,10 +3054,10 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -3072,29 +3072,153 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... - 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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... 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 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 058 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + 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 059 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 060 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 @@ -3137,18 +3261,18 @@ Checking test 058 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 058 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_debug_prod -Checking test 059 fv3_ccpp_gfs_v16_debug results .... - 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 +Test 060 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v16_debug_prod +Checking test 061 fv3_ccpp_gfs_v16_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 @@ -3205,18 +3329,18 @@ Checking test 059 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - 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 +Test 061 fv3_ccpp_gfs_v16_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 062 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 @@ -3273,18 +3397,18 @@ Checking test 060 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 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - 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 +Test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 063 fv3_ccpp_gfs_v16_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 @@ -3341,18 +3465,18 @@ Checking test 061 fv3_ccpp_gfs_v16_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 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... - 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 +Test 063 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gsd_debug_prod +Checking test 064 fv3_ccpp_gsd_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 @@ -3378,25 +3502,25 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3409,18 +3533,18 @@ Checking test 062 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 062 fv3_ccpp_gsd_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... - 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 +Test 064 fv3_ccpp_gsd_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 065 fv3_ccpp_gsd_diag3d_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 @@ -3446,25 +3570,25 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3477,18 +3601,18 @@ Checking test 063 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 063 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... - 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 +Test 065 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_thompson_debug_prod +Checking test 066 fv3_ccpp_thompson_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 @@ -3514,25 +3638,25 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3545,18 +3669,18 @@ Checking test 064 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 064 fv3_ccpp_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... - 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 +Test 066 fv3_ccpp_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 067 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 + 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 @@ -3582,25 +3706,25 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3613,18 +3737,18 @@ Checking test 065 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 065 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... - 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 +Test 067 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 068 fv3_ccpp_rrfs_v1beta_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 @@ -3650,25 +3774,25 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3681,18 +3805,18 @@ Checking test 066 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 066 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - 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 +Test 068 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 069 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 + 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 @@ -3749,13 +3873,13 @@ Checking test 067 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 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/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 ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3767,12 +3891,74 @@ Checking test 068 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 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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/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 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_control_prod -Checking test 069 cpld_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_control_prod +Checking test 072 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3820,12 +4006,12 @@ Checking test 069 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 069 cpld_control PASS +Test 072 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_prod -Checking test 070 cpld_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restart_prod +Checking test 073 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3873,12 +4059,12 @@ Checking test 070 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 070 cpld_restart PASS +Test 073 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_controlfrac_prod -Checking test 071 cpld_controlfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_controlfrac_prod +Checking test 074 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3926,12 +4112,12 @@ Checking test 071 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 071 cpld_controlfrac PASS +Test 074 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restartfrac_prod -Checking test 072 cpld_restartfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restartfrac_prod +Checking test 075 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3979,12 +4165,12 @@ Checking test 072 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 072 cpld_restartfrac PASS +Test 075 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_2threads_prod -Checking test 073 cpld_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_2threads_prod +Checking test 076 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4032,12 +4218,12 @@ Checking test 073 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 073 cpld_2threads PASS +Test 076 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_decomp_prod -Checking test 074 cpld_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_decomp_prod +Checking test 077 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4085,12 +4271,12 @@ Checking test 074 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 074 cpld_decomp PASS +Test 077 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_satmedmf_prod -Checking test 075 cpld_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_satmedmf_prod +Checking test 078 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4138,12 +4324,12 @@ Checking test 075 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 075 cpld_satmedmf PASS +Test 078 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_ca_prod -Checking test 076 cpld_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_ca_prod +Checking test 079 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4191,12 +4377,12 @@ Checking test 076 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 076 cpld_ca PASS +Test 079 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_control_c192_prod -Checking test 077 cpld_control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_control_c192_prod +Checking test 080 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4244,12 +4430,12 @@ Checking test 077 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 077 cpld_control_c192 PASS +Test 080 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_c192_prod -Checking test 078 cpld_restart_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restart_c192_prod +Checking test 081 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4297,12 +4483,12 @@ Checking test 078 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 078 cpld_restart_c192 PASS +Test 081 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_controlfrac_c192_prod -Checking test 079 cpld_controlfrac_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_controlfrac_c192_prod +Checking test 082 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4350,12 +4536,12 @@ Checking test 079 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 079 cpld_controlfrac_c192 PASS +Test 082 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restartfrac_c192_prod -Checking test 080 cpld_restartfrac_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restartfrac_c192_prod +Checking test 083 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4403,12 +4589,12 @@ Checking test 080 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 080 cpld_restartfrac_c192 PASS +Test 083 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_control_c384_prod -Checking test 081 cpld_control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_control_c384_prod +Checking test 084 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4459,12 +4645,12 @@ Checking test 081 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 081 cpld_control_c384 PASS +Test 084 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_c384_prod -Checking test 082 cpld_restart_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restart_c384_prod +Checking test 085 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4515,12 +4701,12 @@ Checking test 082 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 082 cpld_restart_c384 PASS +Test 085 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_controlfrac_c384_prod -Checking test 083 cpld_controlfrac_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_controlfrac_c384_prod +Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4571,12 +4757,12 @@ Checking test 083 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 083 cpld_controlfrac_c384 PASS +Test 086 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restartfrac_c384_prod -Checking test 084 cpld_restartfrac_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restartfrac_c384_prod +Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4627,12 +4813,12 @@ Checking test 084 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 084 cpld_restartfrac_c384 PASS +Test 087 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmark_prod -Checking test 085 cpld_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_bmark_prod +Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4683,12 +4869,12 @@ Checking test 085 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 085 cpld_bmark PASS +Test 088 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_bmark_prod -Checking test 086 cpld_restart_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restart_bmark_prod +Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4739,12 +4925,12 @@ Checking test 086 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 086 cpld_restart_bmark PASS +Test 089 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmarkfrac_prod -Checking test 087 cpld_bmarkfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_bmarkfrac_prod +Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4795,12 +4981,12 @@ Checking test 087 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 087 cpld_bmarkfrac PASS +Test 090 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_bmarkfrac_prod -Checking test 088 cpld_restart_bmarkfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restart_bmarkfrac_prod +Checking test 091 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4851,12 +5037,12 @@ Checking test 088 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 088 cpld_restart_bmarkfrac PASS +Test 091 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmarkfrac_v16_prod -Checking test 089 cpld_bmarkfrac_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_bmarkfrac_v16_prod +Checking test 092 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4907,12 +5093,12 @@ Checking test 089 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 089 cpld_bmarkfrac_v16 PASS +Test 092 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_restart_bmarkfrac_v16_prod -Checking test 090 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restart_bmarkfrac_v16_prod +Checking test 093 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4963,12 +5149,12 @@ Checking test 090 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 090 cpld_restart_bmarkfrac_v16 PASS +Test 093 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmark_wave_prod -Checking test 091 cpld_bmark_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_bmark_wave_prod +Checking test 094 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5022,12 +5208,12 @@ Checking test 091 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 091 cpld_bmark_wave PASS +Test 094 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmarkfrac_wave_prod -Checking test 092 cpld_bmarkfrac_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_bmarkfrac_wave_prod +Checking test 095 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5081,12 +5267,12 @@ Checking test 092 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 092 cpld_bmarkfrac_wave PASS +Test 095 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_bmarkfrac_wave_v16_prod -Checking test 093 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_bmarkfrac_wave_v16_prod +Checking test 096 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5140,12 +5326,12 @@ Checking test 093 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 093 cpld_bmarkfrac_wave_v16 PASS +Test 096 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_control_wave_prod -Checking test 094 cpld_control_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_control_wave_prod +Checking test 097 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5196,12 +5382,12 @@ Checking test 094 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 094 cpld_control_wave PASS +Test 097 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_debug_prod -Checking test 095 cpld_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_debug_prod +Checking test 098 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5249,12 +5435,12 @@ Checking test 095 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 095 cpld_debug PASS +Test 098 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/cpld_debugfrac_prod -Checking test 096 cpld_debugfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_debugfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_debugfrac_prod +Checking test 099 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5302,87 +5488,87 @@ Checking test 096 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 096 cpld_debugfrac PASS +Test 099 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_control_cfsr -Checking test 097 datm_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/datm_control_cfsr +Checking test 100 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 097 datm_control_cfsr PASS +Test 100 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_restart_cfsr -Checking test 098 datm_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/datm_restart_cfsr +Checking test 101 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 098 datm_restart_cfsr PASS +Test 101 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_control_gefs -Checking test 099 datm_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/datm_control_gefs +Checking test 102 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 099 datm_control_gefs PASS +Test 102 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_bulk_cfsr -Checking test 100 datm_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/datm_bulk_cfsr +Checking test 103 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 100 datm_bulk_cfsr PASS +Test 103 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_bulk_gefs -Checking test 101 datm_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/datm_bulk_gefs +Checking test 104 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 101 datm_bulk_gefs PASS +Test 104 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_mx025_cfsr -Checking test 102 datm_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/datm_mx025_cfsr +Checking test 105 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 102 datm_mx025_cfsr PASS +Test 105 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_mx025_gefs -Checking test 103 datm_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/datm_mx025_gefs +Checking test 106 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 103 datm_mx025_gefs PASS +Test 106 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_149249/datm_debug_cfsr -Checking test 104 datm_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/datm_debug_cfsr +Checking test 107 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 104 datm_debug_cfsr PASS +Test 107 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 15:48:12 UTC 2021 -Elapsed time: 01h:36m:32s. Have a nice day! +Sat Feb 13 06:10:19 UTC 2021 +Elapsed time: 01h:27m:25s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index b74f1cb04f..499d7c7ecc 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,16 +1,16 @@ -Thu Feb 11 14:36:40 GMT 2021 +Tue Feb 16 02:56:45 GMT 2021 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... - 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 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 @@ -70,83 +70,15 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 - 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 ............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 ............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 ............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-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... - 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 +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_2threads_prod +Checking test 002 fv3_ccpp_2threads 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 @@ -203,12 +135,12 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS +Test 002 fv3_ccpp_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_restart_prod +Checking test 003 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -253,18 +185,18 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... - 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 +Test 003 fv3_ccpp_restart PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_read_inc_prod +Checking test 004 fv3_ccpp_read_inc 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 @@ -321,18 +253,18 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - 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 +Test 004 fv3_ccpp_read_inc PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_wrtGauss_netcdf_esmf_prod +Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -369,18 +301,18 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - 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 +Test 005 fv3_ccpp_wrtGauss_netcdf_esmf PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_wrtGauss_netcdf_prod +Checking test 006 fv3_ccpp_wrtGauss_netcdf 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -417,18 +349,18 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - 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 +Test 006 fv3_ccpp_wrtGauss_netcdf PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_wrtGauss_netcdf_parallel_prod +Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -465,18 +397,18 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - 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 +Test 007 fv3_ccpp_wrtGauss_netcdf_parallel PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_wrtGlatlon_netcdf_prod +Checking test 008 fv3_ccpp_wrtGlatlon_netcdf 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -513,18 +445,18 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - 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 +Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_wrtGauss_nemsio_prod +Checking test 009 fv3_ccpp_wrtGauss_nemsio 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 @@ -561,18 +493,18 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - 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 +Test 009 fv3_ccpp_wrtGauss_nemsio PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_wrtGauss_nemsio_c192_prod +Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 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 @@ -609,18 +541,18 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... - 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 +Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_stochy_prod +Checking test 011 fv3_ccpp_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 @@ -677,18 +609,18 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... - 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 +Test 011 fv3_ccpp_stochy PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ca_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_ca_prod +Checking test 012 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 @@ -745,18 +677,18 @@ Checking test 013 fv3_ccpp_ca 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_ca PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... - 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 +Test 012 fv3_ccpp_ca PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lndp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_lndp_prod +Checking test 013 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 @@ -813,18 +745,18 @@ Checking test 014 fv3_ccpp_lndp 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_lndp PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... - 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 +Test 013 fv3_ccpp_lndp PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_iau_prod +Checking test 014 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 @@ -881,18 +813,18 @@ Checking test 015 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 015 fv3_ccpp_iau PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... - 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 +Test 014 fv3_ccpp_iau PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_lheatstrg_prod +Checking test 015 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 @@ -929,18 +861,18 @@ Checking test 016 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 016 fv3_ccpp_lheatstrg PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_multigases_prod -Checking test 017 fv3_ccpp_multigases results .... - 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 +Test 015 fv3_ccpp_lheatstrg PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_multigases_prod +Checking test 016 fv3_ccpp_multigases 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 @@ -966,25 +898,25 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1003,18 +935,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_control_32bit_prod -Checking test 018 fv3_ccpp_control_32bit results .... - 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 +Test 016 fv3_ccpp_multigases PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_control_32bit_prod +Checking test 017 fv3_ccpp_control_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.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1040,25 +972,25 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1071,50 +1003,50 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_stretched_prod -Checking test 019 fv3_ccpp_stretched results .... - 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 fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK +Test 017 fv3_ccpp_control_32bit PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_stretched_prod +Checking test 018 fv3_ccpp_stretched 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 fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1127,59 +1059,59 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_stretched_nest_prod -Checking test 020 fv3_ccpp_stretched_nest results .... - 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 atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK +Test 018 fv3_ccpp_stretched PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_stretched_nest_prod +Checking test 019 fv3_ccpp_stretched_nest 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.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1194,54 +1126,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 019 fv3_ccpp_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_regional_control_prod -Checking test 021 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_regional_control_prod +Checking test 020 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 020 fv3_ccpp_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_regional_restart_prod -Checking test 022 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK -Test 022 fv3_ccpp_regional_restart PASS +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_regional_restart_prod +Checking test 021 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 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_regional_quilt_prod -Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_regional_quilt_prod +Checking test 022 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 022 fv3_ccpp_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 023 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 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS +Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_control_debug_prod -Checking test 025 fv3_ccpp_control_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_control_debug_prod +Checking test 024 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1266,38 +1198,182 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_stretched_nest_debug_prod -Checking test 026 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK -Test 026 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_csawmg_prod -Checking test 030 fv3_ccpp_csawmg results .... - 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 +Test 024 fv3_ccpp_control_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_stretched_nest_debug_prod +Checking test 025 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + 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 + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfdlmp_prod +Checking test 026 fv3_ccpp_gfdlmp 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 026 fv3_ccpp_gfdlmp PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 027 fv3_ccpp_gfdlmprad_gwd 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 027 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 028 fv3_ccpp_gfdlmprad_noahmp 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 028 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_csawmg_prod +Checking test 029 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 @@ -1334,18 +1410,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_satmedmf_prod -Checking test 031 fv3_ccpp_satmedmf results .... - 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 +Test 029 fv3_ccpp_csawmg PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_satmedmf_prod +Checking test 030 fv3_ccpp_satmedmf 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 @@ -1382,18 +1458,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_satmedmfq_prod -Checking test 032 fv3_ccpp_satmedmfq results .... - 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 +Test 030 fv3_ccpp_satmedmf PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_satmedmfq_prod +Checking test 031 fv3_ccpp_satmedmfq 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 @@ -1430,42 +1506,42 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfdlmp_32bit_prod -Checking test 033 fv3_ccpp_gfdlmp_32bit results .... - 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 +Test 031 fv3_ccpp_satmedmfq PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfdlmp_32bit_prod +Checking test 032 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 ............ALT CHECK......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/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 @@ -1478,18 +1554,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... - 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 +Test 032 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 033 fv3_ccpp_gfdlmprad_32bit_post 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 @@ -1499,25 +1575,25 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1530,42 +1606,42 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_cpt_prod -Checking test 035 fv3_ccpp_cpt results .... - 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 +Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_cpt_prod +Checking test 034 fv3_ccpp_cpt 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 ............ALT CHECK......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/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 @@ -1584,18 +1660,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gsd_prod -Checking test 036 fv3_ccpp_gsd results .... - 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 +Test 034 fv3_ccpp_cpt PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gsd_prod +Checking test 035 fv3_ccpp_gsd 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 @@ -1645,26 +1721,26 @@ Checking test 036 fv3_ccpp_gsd results .... Comparing dynf048.tile5.nc .........OK Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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 .........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 @@ -1676,18 +1752,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_thompson_prod -Checking test 037 fv3_ccpp_thompson results .... - 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 +Test 035 fv3_ccpp_gsd PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_thompson_prod +Checking test 036 fv3_ccpp_thompson 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 @@ -1713,25 +1789,25 @@ Checking test 037 fv3_ccpp_thompson results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1744,18 +1820,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_thompson_no_aero_prod -Checking test 038 fv3_ccpp_thompson_no_aero results .... - 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 +Test 036 fv3_ccpp_thompson PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_thompson_no_aero_prod +Checking test 037 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.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1781,25 +1857,25 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1812,18 +1888,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v15p2_prod -Checking test 039 fv3_ccpp_gfs_v15p2 results .... - 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 +Test 037 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v15p2_prod +Checking test 038 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 @@ -1880,18 +1956,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_prod -Checking test 040 fv3_ccpp_gfs_v16 results .... - 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 +Test 038 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v16_prod +Checking test 039 fv3_ccpp_gfs_v16 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 @@ -1960,12 +2036,12 @@ Checking test 040 fv3_ccpp_gfs_v16 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_v16 PASS +Test 039 fv3_ccpp_gfs_v16 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_restart_prod -Checking test 041 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v16_restart_prod +Checking test 040 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2010,18 +2086,18 @@ Checking test 041 fv3_ccpp_gfs_v16_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_v16_restart PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_stochy_prod -Checking test 042 fv3_ccpp_gfs_v16_stochy results .... - 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 +Test 040 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v16_stochy_prod +Checking test 041 fv3_ccpp_gfs_v16_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 @@ -2078,18 +2154,18 @@ Checking test 042 fv3_ccpp_gfs_v16_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_v16_stochy PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... - 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 +Test 041 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 042 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 @@ -2146,18 +2222,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 044 fv3_ccpp_gfs_v16_RRTMGP results .... - 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 +Test 042 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 043 fv3_ccpp_gfs_v16_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 @@ -2214,12 +2290,12 @@ Checking test 044 fv3_ccpp_gfs_v16_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_v16_RRTMGP PASS +Test 043 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2276,18 +2352,18 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 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_v16_RRTMGP_c192L127 PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfsv16_csawmg_prod -Checking test 046 fv3_ccpp_gfsv16_csawmg results .... - 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 +Test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/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 @@ -2324,18 +2400,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 047 fv3_ccpp_gfsv16_csawmgt results .... - 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 +Test 045 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/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 @@ -2372,18 +2448,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gocart_clm_prod -Checking test 048 fv3_ccpp_gocart_clm results .... - 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 +Test 046 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/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 @@ -2420,18 +2496,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_flake_prod -Checking test 049 fv3_ccpp_gfs_v16_flake results .... - 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 +Test 047 fv3_ccpp_gocart_clm PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v16_flake_prod +Checking test 048 fv3_ccpp_gfs_v16_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 @@ -2488,18 +2564,18 @@ Checking test 049 fv3_ccpp_gfs_v16_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_v16_flake PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 050 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - 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 +Test 048 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/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 + 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 @@ -2556,13 +2632,13 @@ 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 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 051 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/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 Comparing dynf000.nc .........OK @@ -2574,18 +2650,142 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... - 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 +Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... + 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 051 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + 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 052 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/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 + 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 @@ -2642,18 +2842,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_debug_prod -Checking test 053 fv3_ccpp_gfs_v16_debug results .... - 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 +Test 053 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v16_debug_prod +Checking test 054 fv3_ccpp_gfs_v16_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 @@ -2710,18 +2910,18 @@ Checking test 053 fv3_ccpp_gfs_v16_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_v16_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - 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 +Test 054 fv3_ccpp_gfs_v16_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/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 + 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 @@ -2778,18 +2978,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - 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 +Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 056 fv3_ccpp_gfs_v16_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 @@ -2846,18 +3046,18 @@ Checking test 055 fv3_ccpp_gfs_v16_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_v16_RRTMGP_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gsd_debug_prod -Checking test 056 fv3_ccpp_gsd_debug results .... - 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 +Test 056 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/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 + 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 @@ -2883,25 +3083,25 @@ Checking test 056 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2914,18 +3114,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 057 fv3_ccpp_gsd_diag3d_debug results .... - 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 +Test 057 fv3_ccpp_gsd_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/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 + 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 @@ -2951,25 +3151,25 @@ Checking test 057 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2982,18 +3182,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_thompson_debug_prod -Checking test 058 fv3_ccpp_thompson_debug results .... - 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 +Test 058 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/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 + 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 @@ -3019,25 +3219,25 @@ Checking test 058 fv3_ccpp_thompson_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3050,18 +3250,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 059 fv3_ccpp_thompson_no_aero_debug results .... - 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 +Test 059 fv3_ccpp_thompson_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/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 + 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 @@ -3087,25 +3287,25 @@ Checking test 059 fv3_ccpp_thompson_no_aero_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3118,18 +3318,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 060 fv3_ccpp_rrfs_v1beta_debug results .... - 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 +Test 060 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/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 + 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 @@ -3155,25 +3355,25 @@ Checking test 060 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3186,18 +3386,18 @@ 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 061 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - 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 +Test 061 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/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 + 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 @@ -3254,13 +3454,13 @@ 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 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_38605/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 ............ALT CHECK......OK +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/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 Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3272,9 +3472,71 @@ 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 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 064 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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/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 064 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 16:35:37 GMT 2021 -Elapsed time: 01h:58m:58s. Have a nice day! +Tue Feb 16 05:09:35 GMT 2021 +Elapsed time: 02h:12m:50s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index b81151a515..2d0fca4b00 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,16 +1,16 @@ -Thu Feb 11 08:08:46 CST 2021 +Fri Feb 12 21:49:05 CST 2021 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... - 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 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 @@ -70,15 +70,15 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/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 - 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 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 @@ -138,15 +138,15 @@ Checking test 002 fv3_ccpp_decomp results .... Test 002 fv3_ccpp_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... - 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 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 @@ -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-20210128/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,15 +256,15 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... - 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 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 @@ -324,15 +324,15 @@ 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-20210128/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -372,15 +372,15 @@ 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-20210128/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -420,15 +420,15 @@ 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-20210128/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - 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 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.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK @@ -468,15 +468,15 @@ 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-20210128/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -516,15 +516,15 @@ 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-20210128/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - 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 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 @@ -564,15 +564,15 @@ 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-20210128/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - 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 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 @@ -612,15 +612,15 @@ 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-20210128/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... - 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 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 @@ -680,15 +680,15 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... - 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 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 @@ -748,15 +748,15 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_lndp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... - 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 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 @@ -816,15 +816,15 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... - 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 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 @@ -884,15 +884,15 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_lheatstrg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... - 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 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 @@ -932,15 +932,15 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... - 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 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 @@ -981,15 +981,15 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - 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 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 @@ -1030,15 +1030,15 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... - 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 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 phyf006.nemsio .........OK Comparing dynf006.nemsio .........OK Comparing RESTART/coupler.res .........OK @@ -1079,15 +1079,15 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... - 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 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 @@ -1113,25 +1113,25 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1153,15 +1153,15 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_control_32bit_prod Checking test 021 fv3_ccpp_control_32bit results .... - 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 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 @@ -1187,25 +1187,25 @@ Checking test 021 fv3_ccpp_control_32bit results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1221,47 +1221,47 @@ Checking test 021 fv3_ccpp_control_32bit results .... Test 021 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... - 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 fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + 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 fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1277,56 +1277,56 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_stretched_nest_prod Checking test 023 fv3_ccpp_stretched_nest results .... - 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 atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + 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.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1344,30 +1344,30 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Test 023 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + 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 024 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1375,10 +1375,10 @@ Checking test 026 fv3_ccpp_regional_quilt results .... Test 026 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -1386,8 +1386,8 @@ Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_control_debug_prod Checking test 028 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1416,35 +1416,35 @@ Checking test 028 fv3_ccpp_control_debug results .... Test 028 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_stretched_nest_debug_prod Checking test 029 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Test 029 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfdlmp_prod Checking test 030 fv3_ccpp_gfdlmp results .... - 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 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 @@ -1484,15 +1484,15 @@ Checking test 030 fv3_ccpp_gfdlmp results .... Test 030 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfdlmprad_gwd_prod Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... - 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 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 @@ -1532,15 +1532,15 @@ Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... Test 031 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... - 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 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 @@ -1580,15 +1580,15 @@ Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... Test 032 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... - 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 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 @@ -1628,15 +1628,15 @@ Checking test 033 fv3_ccpp_csawmg results .... Test 033 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... - 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 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 @@ -1676,15 +1676,15 @@ Checking test 034 fv3_ccpp_satmedmf results .... Test 034 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_satmedmfq_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... - 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 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 @@ -1724,39 +1724,39 @@ Checking test 035 fv3_ccpp_satmedmfq results .... Test 035 fv3_ccpp_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfdlmp_32bit_prod Checking test 036 fv3_ccpp_gfdlmp_32bit results .... - 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 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 ............ALT CHECK......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/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 @@ -1772,15 +1772,15 @@ Checking test 036 fv3_ccpp_gfdlmp_32bit results .... Test 036 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... - 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 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 @@ -1790,25 +1790,25 @@ Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1824,39 +1824,39 @@ Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... - 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 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 ............ALT CHECK......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/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 @@ -1878,15 +1878,15 @@ Checking test 038 fv3_ccpp_cpt results .... Test 038 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... - 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 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 @@ -1936,25 +1936,25 @@ Checking test 039 fv3_ccpp_gsd results .... Comparing dynf048.tile5.nc .........OK Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1970,15 +1970,15 @@ Checking test 039 fv3_ccpp_gsd results .... Test 039 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_rap_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... - 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 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 @@ -2004,25 +2004,25 @@ Checking test 040 fv3_ccpp_rap results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2038,15 +2038,15 @@ Checking test 040 fv3_ccpp_rap results .... Test 040 fv3_ccpp_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_hrrr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... - 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 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 @@ -2072,25 +2072,25 @@ Checking test 041 fv3_ccpp_hrrr results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2106,15 +2106,15 @@ Checking test 041 fv3_ccpp_hrrr results .... Test 041 fv3_ccpp_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... - 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 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 @@ -2140,25 +2140,25 @@ Checking test 042 fv3_ccpp_thompson results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2174,15 +2174,15 @@ Checking test 042 fv3_ccpp_thompson results .... Test 042 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_thompson_no_aero_prod Checking test 043 fv3_ccpp_thompson_no_aero results .... - 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 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 @@ -2208,25 +2208,25 @@ Checking test 043 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2242,15 +2242,15 @@ Checking test 043 fv3_ccpp_thompson_no_aero results .... Test 043 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_rrfs_v1beta_prod Checking test 044 fv3_ccpp_rrfs_v1beta results .... - 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 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 @@ -2276,25 +2276,25 @@ Checking test 044 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2310,15 +2310,15 @@ Checking test 044 fv3_ccpp_rrfs_v1beta results .... Test 044 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v15p2_prod Checking test 045 fv3_ccpp_gfs_v15p2 results .... - 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 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 @@ -2378,15 +2378,15 @@ Checking test 045 fv3_ccpp_gfs_v15p2 results .... Test 045 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v16_prod Checking test 046 fv3_ccpp_gfs_v16 results .... - 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 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 @@ -2458,8 +2458,8 @@ Checking test 046 fv3_ccpp_gfs_v16 results .... Test 046 fv3_ccpp_gfs_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v16_restart_prod Checking test 047 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2508,15 +2508,15 @@ Checking test 047 fv3_ccpp_gfs_v16_restart results .... Test 047 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v16_stochy_prod Checking test 048 fv3_ccpp_gfs_v16_stochy results .... - 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 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 @@ -2576,15 +2576,15 @@ Checking test 048 fv3_ccpp_gfs_v16_stochy results .... Test 048 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... - 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 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 @@ -2644,15 +2644,15 @@ Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... - 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 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 @@ -2712,8 +2712,8 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... Test 050 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/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 @@ -2774,15 +2774,15 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfsv16_csawmg_prod Checking test 052 fv3_ccpp_gfsv16_csawmg results .... - 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 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 @@ -2822,15 +2822,15 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Test 052 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfsv16_csawmgt_prod Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... - 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 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 @@ -2870,15 +2870,15 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Test 053 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gocart_clm_prod Checking test 054 fv3_ccpp_gocart_clm results .... - 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 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 @@ -2918,15 +2918,15 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Test 054 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v16_flake_prod Checking test 055 fv3_ccpp_gfs_v16_flake results .... - 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 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 @@ -2986,15 +2986,15 @@ Checking test 055 fv3_ccpp_gfs_v16_flake results .... Test 055 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - 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 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 @@ -3054,10 +3054,10 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -3072,30 +3072,154 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... - 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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... 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 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 058 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + 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 059 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 060 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 @@ -3137,18 +3261,18 @@ Checking test 058 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 058 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_debug_prod -Checking test 059 fv3_ccpp_gfs_v16_debug results .... - 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 +Test 060 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v16_debug_prod +Checking test 061 fv3_ccpp_gfs_v16_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 @@ -3205,18 +3329,18 @@ Checking test 059 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - 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 +Test 061 fv3_ccpp_gfs_v16_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 062 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 @@ -3273,18 +3397,18 @@ Checking test 060 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 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - 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 +Test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 063 fv3_ccpp_gfs_v16_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 @@ -3341,18 +3465,18 @@ Checking test 061 fv3_ccpp_gfs_v16_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 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... - 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 +Test 063 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gsd_debug_prod +Checking test 064 fv3_ccpp_gsd_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 @@ -3378,25 +3502,25 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3409,18 +3533,18 @@ Checking test 062 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 062 fv3_ccpp_gsd_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... - 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 +Test 064 fv3_ccpp_gsd_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 065 fv3_ccpp_gsd_diag3d_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 @@ -3446,25 +3570,25 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3477,18 +3601,18 @@ Checking test 063 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 063 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... - 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 +Test 065 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_thompson_debug_prod +Checking test 066 fv3_ccpp_thompson_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 @@ -3514,25 +3638,25 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3545,18 +3669,18 @@ Checking test 064 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 064 fv3_ccpp_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... - 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 +Test 066 fv3_ccpp_thompson_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 067 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 + 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 @@ -3582,25 +3706,25 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3613,18 +3737,18 @@ Checking test 065 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 065 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... - 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 +Test 067 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 068 fv3_ccpp_rrfs_v1beta_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 @@ -3650,25 +3774,25 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3681,18 +3805,18 @@ Checking test 066 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 066 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - 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 +Test 068 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 069 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 + 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 @@ -3749,13 +3873,13 @@ Checking test 067 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 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/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 ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3767,12 +3891,74 @@ Checking test 068 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 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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/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 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_prod -Checking test 069 cpld_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_control_prod +Checking test 072 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3820,12 +4006,12 @@ Checking test 069 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 069 cpld_control PASS +Test 072 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_prod -Checking test 070 cpld_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restart_prod +Checking test 073 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3873,12 +4059,12 @@ Checking test 070 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 070 cpld_restart PASS +Test 073 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_controlfrac_prod -Checking test 071 cpld_controlfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_controlfrac_prod +Checking test 074 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3926,12 +4112,12 @@ Checking test 071 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 071 cpld_controlfrac PASS +Test 074 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restartfrac_prod -Checking test 072 cpld_restartfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restartfrac_prod +Checking test 075 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3979,12 +4165,12 @@ Checking test 072 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 072 cpld_restartfrac PASS +Test 075 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_2threads_prod -Checking test 073 cpld_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_2threads_prod +Checking test 076 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4032,12 +4218,12 @@ Checking test 073 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 073 cpld_2threads PASS +Test 076 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_decomp_prod -Checking test 074 cpld_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_decomp_prod +Checking test 077 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4085,12 +4271,12 @@ Checking test 074 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 074 cpld_decomp PASS +Test 077 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_satmedmf_prod -Checking test 075 cpld_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_satmedmf_prod +Checking test 078 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4138,12 +4324,12 @@ Checking test 075 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 075 cpld_satmedmf PASS +Test 078 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_ca_prod -Checking test 076 cpld_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_ca_prod +Checking test 079 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4191,12 +4377,12 @@ Checking test 076 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 076 cpld_ca PASS +Test 079 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_c192_prod -Checking test 077 cpld_control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_control_c192_prod +Checking test 080 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4244,12 +4430,12 @@ Checking test 077 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 077 cpld_control_c192 PASS +Test 080 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_c192_prod -Checking test 078 cpld_restart_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restart_c192_prod +Checking test 081 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4297,12 +4483,12 @@ Checking test 078 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 078 cpld_restart_c192 PASS +Test 081 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_controlfrac_c192_prod -Checking test 079 cpld_controlfrac_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_controlfrac_c192_prod +Checking test 082 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4350,12 +4536,12 @@ Checking test 079 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 079 cpld_controlfrac_c192 PASS +Test 082 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restartfrac_c192_prod -Checking test 080 cpld_restartfrac_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restartfrac_c192_prod +Checking test 083 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4403,12 +4589,12 @@ Checking test 080 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 080 cpld_restartfrac_c192 PASS +Test 083 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_c384_prod -Checking test 081 cpld_control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_control_c384_prod +Checking test 084 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4459,12 +4645,12 @@ Checking test 081 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 081 cpld_control_c384 PASS +Test 084 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_c384_prod -Checking test 082 cpld_restart_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restart_c384_prod +Checking test 085 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4515,12 +4701,12 @@ Checking test 082 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 082 cpld_restart_c384 PASS +Test 085 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_controlfrac_c384_prod -Checking test 083 cpld_controlfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_controlfrac_c384_prod +Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4571,12 +4757,12 @@ Checking test 083 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 083 cpld_controlfrac_c384 PASS +Test 086 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restartfrac_c384_prod -Checking test 084 cpld_restartfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restartfrac_c384_prod +Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4627,12 +4813,12 @@ Checking test 084 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 084 cpld_restartfrac_c384 PASS +Test 087 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmark_prod -Checking test 085 cpld_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_bmark_prod +Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4683,12 +4869,12 @@ Checking test 085 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 085 cpld_bmark PASS +Test 088 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_bmark_prod -Checking test 086 cpld_restart_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restart_bmark_prod +Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4739,12 +4925,12 @@ Checking test 086 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 086 cpld_restart_bmark PASS +Test 089 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_prod -Checking test 087 cpld_bmarkfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_bmarkfrac_prod +Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4795,12 +4981,12 @@ Checking test 087 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 087 cpld_bmarkfrac PASS +Test 090 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_bmarkfrac_prod -Checking test 088 cpld_restart_bmarkfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restart_bmarkfrac_prod +Checking test 091 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4851,12 +5037,12 @@ Checking test 088 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 088 cpld_restart_bmarkfrac PASS +Test 091 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_v16_prod -Checking test 089 cpld_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_bmarkfrac_v16_prod +Checking test 092 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4907,12 +5093,12 @@ Checking test 089 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 089 cpld_bmarkfrac_v16 PASS +Test 092 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_restart_bmarkfrac_v16_prod -Checking test 090 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restart_bmarkfrac_v16_prod +Checking test 093 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4963,12 +5149,12 @@ Checking test 090 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 090 cpld_restart_bmarkfrac_v16 PASS +Test 093 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmark_wave_prod -Checking test 091 cpld_bmark_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_bmark_wave_prod +Checking test 094 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5022,12 +5208,12 @@ Checking test 091 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 091 cpld_bmark_wave PASS +Test 094 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_wave_prod -Checking test 092 cpld_bmarkfrac_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_bmarkfrac_wave_prod +Checking test 095 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5081,12 +5267,12 @@ Checking test 092 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 092 cpld_bmarkfrac_wave PASS +Test 095 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_bmarkfrac_wave_v16_prod -Checking test 093 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_bmarkfrac_wave_v16_prod +Checking test 096 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5140,12 +5326,12 @@ Checking test 093 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 093 cpld_bmarkfrac_wave_v16 PASS +Test 096 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_control_wave_prod -Checking test 094 cpld_control_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_wave_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_control_wave_prod +Checking test 097 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5196,12 +5382,12 @@ Checking test 094 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 094 cpld_control_wave PASS +Test 097 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_debug_prod -Checking test 095 cpld_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_debug_prod +Checking test 098 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5249,12 +5435,12 @@ Checking test 095 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 095 cpld_debug PASS +Test 098 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/cpld_debugfrac_prod -Checking test 096 cpld_debugfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_debugfrac_prod +Checking test 099 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5302,87 +5488,87 @@ Checking test 096 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 096 cpld_debugfrac PASS +Test 099 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_control_cfsr -Checking test 097 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/datm_control_cfsr +Checking test 100 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 097 datm_control_cfsr PASS +Test 100 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_restart_cfsr -Checking test 098 datm_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/datm_restart_cfsr +Checking test 101 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 098 datm_restart_cfsr PASS +Test 101 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_control_gefs -Checking test 099 datm_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/datm_control_gefs +Checking test 102 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 099 datm_control_gefs PASS +Test 102 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_bulk_cfsr -Checking test 100 datm_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/datm_bulk_cfsr +Checking test 103 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 100 datm_bulk_cfsr PASS +Test 103 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_bulk_gefs -Checking test 101 datm_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/datm_bulk_gefs +Checking test 104 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 101 datm_bulk_gefs PASS +Test 104 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_mx025_cfsr -Checking test 102 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/datm_mx025_cfsr +Checking test 105 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 102 datm_mx025_cfsr PASS +Test 105 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_mx025_gefs -Checking test 103 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/datm_mx025_gefs +Checking test 106 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 103 datm_mx025_gefs PASS +Test 106 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_319899/datm_debug_cfsr -Checking test 104 datm_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/datm_debug_cfsr +Checking test 107 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 104 datm_debug_cfsr PASS +Test 107 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 09:25:39 CST 2021 -Elapsed time: 01h:16m:54s. Have a nice day! +Fri Feb 12 23:13:38 CST 2021 +Elapsed time: 01h:24m:33s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 231e912a3e..bd5160d7d6 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,16 +1,16 @@ -Thu Feb 11 15:50:22 UTC 2021 +Sat Feb 13 21:26:36 UTC 2021 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... - 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 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 @@ -70,15 +70,15 @@ 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-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/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 - 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 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 @@ -138,15 +138,15 @@ 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-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... - 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 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 @@ -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-20210128/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,15 +256,15 @@ 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-20210128/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... - 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 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 @@ -324,15 +324,15 @@ 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-20210128/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -372,15 +372,15 @@ 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-20210128/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -420,15 +420,15 @@ 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-20210128/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -468,15 +468,15 @@ 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-20210128/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -516,15 +516,15 @@ 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-20210128/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - 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 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 @@ -564,15 +564,15 @@ 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-20210128/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - 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 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 @@ -612,15 +612,15 @@ 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-20210128/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... - 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 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 @@ -680,15 +680,15 @@ 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-20210128/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_ca_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_ca_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... - 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 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 @@ -748,15 +748,15 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_lndp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_lndp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... - 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 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 @@ -816,15 +816,15 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... - 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 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 @@ -884,15 +884,15 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... - 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 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 @@ -932,15 +932,15 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... - 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 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 @@ -966,25 +966,25 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1006,15 +1006,15 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... - 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 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 @@ -1040,25 +1040,25 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1074,47 +1074,47 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... - 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 fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + 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 fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1130,56 +1130,56 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... - 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 atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + 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.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1197,30 +1197,30 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + 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 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1228,10 +1228,10 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1239,8 +1239,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1269,35 +1269,35 @@ Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + 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 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... - 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 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 @@ -1337,15 +1337,15 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfdlmprad_gwd_prod Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... - 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 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 @@ -1385,15 +1385,15 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... - 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 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 @@ -1433,15 +1433,15 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... - 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 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 @@ -1481,15 +1481,15 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... - 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 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 @@ -1529,15 +1529,15 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... - 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 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 @@ -1577,39 +1577,39 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfdlmp_32bit_prod Checking test 033 fv3_ccpp_gfdlmp_32bit results .... - 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 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 ............ALT CHECK......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/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 @@ -1625,15 +1625,15 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... - 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 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 @@ -1643,25 +1643,25 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1677,39 +1677,39 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... - 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 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 ............ALT CHECK......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/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 @@ -1731,15 +1731,15 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... - 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 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 @@ -1789,25 +1789,25 @@ Checking test 036 fv3_ccpp_gsd results .... Comparing dynf048.tile5.nc .........OK Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1823,15 +1823,15 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_rap_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_rap_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... - 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 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 @@ -1857,25 +1857,25 @@ Checking test 037 fv3_ccpp_rap results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1891,15 +1891,15 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_hrrr_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... - 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 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 @@ -1925,25 +1925,25 @@ Checking test 038 fv3_ccpp_hrrr results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1959,15 +1959,15 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... - 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 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 @@ -1993,25 +1993,25 @@ Checking test 039 fv3_ccpp_thompson results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2027,15 +2027,15 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_thompson_no_aero_prod Checking test 040 fv3_ccpp_thompson_no_aero results .... - 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 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 @@ -2061,25 +2061,25 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2095,15 +2095,15 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_rrfs_v1beta_prod Checking test 041 fv3_ccpp_rrfs_v1beta results .... - 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 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 @@ -2129,25 +2129,25 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2163,15 +2163,15 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v15p2_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v15p2_prod Checking test 042 fv3_ccpp_gfs_v15p2 results .... - 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 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 @@ -2231,15 +2231,15 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v16_prod Checking test 043 fv3_ccpp_gfs_v16 results .... - 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 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 @@ -2311,8 +2311,8 @@ Checking test 043 fv3_ccpp_gfs_v16 results .... Test 043 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v16_restart_prod Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2361,15 +2361,15 @@ Checking test 044 fv3_ccpp_gfs_v16_restart results .... Test 044 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v16_stochy_prod Checking test 045 fv3_ccpp_gfs_v16_stochy results .... - 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 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 @@ -2429,15 +2429,15 @@ Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Test 045 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... - 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 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 @@ -2497,15 +2497,15 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... - 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 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 @@ -2565,8 +2565,8 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/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 @@ -2627,15 +2627,15 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfsv16_csawmg_prod Checking test 049 fv3_ccpp_gfsv16_csawmg results .... - 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 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 @@ -2675,15 +2675,15 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Test 049 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfsv16_csawmgt_prod Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... - 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 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 @@ -2723,15 +2723,15 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Test 050 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gocart_clm_prod Checking test 051 fv3_ccpp_gocart_clm results .... - 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 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 @@ -2771,15 +2771,15 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Test 051 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v16_flake_prod Checking test 052 fv3_ccpp_gfs_v16_flake results .... - 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 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 @@ -2839,15 +2839,15 @@ Checking test 052 fv3_ccpp_gfs_v16_flake results .... Test 052 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - 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 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 @@ -2907,10 +2907,10 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -2925,30 +2925,154 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... - 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 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... 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 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 055 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + 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 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/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 + 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 @@ -2990,18 +3114,18 @@ Checking test 055 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 055 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_debug_prod -Checking test 056 fv3_ccpp_gfs_v16_debug results .... - 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 +Test 057 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v16_debug_prod +Checking test 058 fv3_ccpp_gfs_v16_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 @@ -3058,18 +3182,18 @@ Checking test 056 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - 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 +Test 058 fv3_ccpp_gfs_v16_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/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 + 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 @@ -3126,18 +3250,18 @@ Checking test 057 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 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - 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 +Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 060 fv3_ccpp_gfs_v16_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 @@ -3194,18 +3318,18 @@ Checking test 058 fv3_ccpp_gfs_v16_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 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gsd_debug_prod -Checking test 059 fv3_ccpp_gsd_debug results .... - 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 +Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/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 + 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 @@ -3231,25 +3355,25 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3262,18 +3386,18 @@ Checking test 059 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 059 fv3_ccpp_gsd_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... - 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 +Test 061 fv3_ccpp_gsd_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/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 + 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 @@ -3299,25 +3423,25 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3330,18 +3454,18 @@ Checking test 060 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 060 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_thompson_debug_prod -Checking test 061 fv3_ccpp_thompson_debug results .... - 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 +Test 062 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/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 + 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 @@ -3367,25 +3491,25 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3398,18 +3522,18 @@ Checking test 061 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 061 fv3_ccpp_thompson_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... - 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 +Test 063 fv3_ccpp_thompson_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/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 + 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 @@ -3435,25 +3559,25 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3466,18 +3590,18 @@ Checking test 062 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 062 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... - 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 +Test 064 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/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 + 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 @@ -3503,25 +3627,25 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3534,18 +3658,18 @@ Checking test 063 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 063 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - 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 +Test 065 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/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 + 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 @@ -3602,13 +3726,13 @@ Checking test 064 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 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_26001/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 ............ALT CHECK......OK +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/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 Comparing dynf000.nc .........OK @@ -3620,9 +3744,71 @@ Checking test 065 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 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 068 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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/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 068 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 11 16:28:04 UTC 2021 -Elapsed time: 00h:37m:42s. Have a nice day! +Sat Feb 13 22:08:09 UTC 2021 +Elapsed time: 00h:41m:34s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index b65c53c604..b662cd9d6c 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,16 +1,16 @@ -Thu Feb 11 15:48:05 UTC 2021 +Sun Feb 14 01:18:17 UTC 2021 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... - 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 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 @@ -70,15 +70,15 @@ 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-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/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 - 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 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 @@ -138,15 +138,15 @@ 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-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... - 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 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 @@ -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-20210128/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,15 +256,15 @@ 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-20210128/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... - 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 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 @@ -324,15 +324,15 @@ 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-20210128/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -372,15 +372,15 @@ 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-20210128/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -420,19 +420,19 @@ 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-20210128/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... - 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 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.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.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 @@ -468,15 +468,15 @@ 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-20210128/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... - 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 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.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK @@ -516,15 +516,15 @@ 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-20210128/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... - 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 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 @@ -564,15 +564,15 @@ 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-20210128/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... - 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 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 @@ -612,15 +612,15 @@ 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-20210128/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... - 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 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 @@ -680,15 +680,15 @@ 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-20210128/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_ca_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... - 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 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 @@ -748,15 +748,15 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_lndp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_lndp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... - 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 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 @@ -816,15 +816,15 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... - 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 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 @@ -884,15 +884,15 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... - 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 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 @@ -932,15 +932,15 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... - 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 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 @@ -981,15 +981,15 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... - 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 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 @@ -1030,15 +1030,15 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... - 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 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 @@ -1064,25 +1064,25 @@ Checking test 019 fv3_ccpp_multigases results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1104,15 +1104,15 @@ Checking test 019 fv3_ccpp_multigases results .... Test 019 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_control_32bit_prod Checking test 020 fv3_ccpp_control_32bit results .... - 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 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 @@ -1138,25 +1138,25 @@ Checking test 020 fv3_ccpp_control_32bit results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1172,47 +1172,47 @@ Checking test 020 fv3_ccpp_control_32bit results .... Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... - 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 fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + 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 fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1228,56 +1228,56 @@ Checking test 021 fv3_ccpp_stretched results .... Test 021 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_stretched_nest_prod Checking test 022 fv3_ccpp_stretched_nest results .... - 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 atmos_4xdaily.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK + 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.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.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_core.res.nest02.tile7.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_srf_wnd.res.nest02.tile7.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/fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK @@ -1295,30 +1295,30 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + 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 023 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1326,10 +1326,10 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 026 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK @@ -1337,8 +1337,8 @@ Checking test 026 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 026 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1367,35 +1367,35 @@ Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_stretched_nest_debug_prod Checking test 028 fv3_ccpp_stretched_nest_debug results .... - Comparing fv3_history2d.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile1.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile2.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile3.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile4.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile5.nc ............ALT CHECK......OK - Comparing fv3_history2d.tile6.nc ............ALT CHECK......OK - Comparing fv3_history.nest02.tile7.nc ............ALT CHECK......OK - Comparing fv3_history.tile1.nc ............ALT CHECK......OK - Comparing fv3_history.tile2.nc ............ALT CHECK......OK - Comparing fv3_history.tile3.nc ............ALT CHECK......OK - Comparing fv3_history.tile4.nc ............ALT CHECK......OK - Comparing fv3_history.tile5.nc ............ALT CHECK......OK - Comparing fv3_history.tile6.nc ............ALT CHECK......OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Test 028 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... - 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 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 @@ -1435,15 +1435,15 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfdlmprad_gwd_prod Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... - 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 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 @@ -1483,15 +1483,15 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... - 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 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 @@ -1531,15 +1531,15 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... - 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 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 @@ -1579,15 +1579,15 @@ Checking test 032 fv3_ccpp_csawmg results .... Test 032 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... - 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 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 @@ -1627,15 +1627,15 @@ Checking test 033 fv3_ccpp_satmedmf results .... Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_satmedmfq_prod Checking test 034 fv3_ccpp_satmedmfq results .... - 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 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 @@ -1675,39 +1675,39 @@ Checking test 034 fv3_ccpp_satmedmfq results .... Test 034 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfdlmp_32bit_prod Checking test 035 fv3_ccpp_gfdlmp_32bit results .... - 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 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 ............ALT CHECK......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/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 @@ -1723,15 +1723,15 @@ Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Test 035 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... - 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 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 @@ -1741,25 +1741,25 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1775,39 +1775,39 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_cpt_prod Checking test 037 fv3_ccpp_cpt results .... - 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 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 ............ALT CHECK......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/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 @@ -1829,15 +1829,15 @@ Checking test 037 fv3_ccpp_cpt results .... Test 037 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gsd_prod Checking test 038 fv3_ccpp_gsd results .... - 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 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 @@ -1887,25 +1887,25 @@ Checking test 038 fv3_ccpp_gsd results .... Comparing dynf048.tile5.nc .........OK Comparing dynf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1921,15 +1921,15 @@ Checking test 038 fv3_ccpp_gsd results .... Test 038 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_rap_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_rap_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_rap_prod Checking test 039 fv3_ccpp_rap results .... - 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 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 @@ -1955,25 +1955,25 @@ Checking test 039 fv3_ccpp_rap results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -1989,15 +1989,15 @@ Checking test 039 fv3_ccpp_rap results .... Test 039 fv3_ccpp_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_hrrr_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_hrrr_prod Checking test 040 fv3_ccpp_hrrr results .... - 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 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 @@ -2023,25 +2023,25 @@ Checking test 040 fv3_ccpp_hrrr results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2057,15 +2057,15 @@ Checking test 040 fv3_ccpp_hrrr results .... Test 040 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_thompson_prod Checking test 041 fv3_ccpp_thompson results .... - 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 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 @@ -2091,25 +2091,25 @@ Checking test 041 fv3_ccpp_thompson results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2125,15 +2125,15 @@ Checking test 041 fv3_ccpp_thompson results .... Test 041 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_thompson_no_aero_prod Checking test 042 fv3_ccpp_thompson_no_aero results .... - 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 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 @@ -2159,25 +2159,25 @@ Checking test 042 fv3_ccpp_thompson_no_aero results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2193,15 +2193,15 @@ Checking test 042 fv3_ccpp_thompson_no_aero results .... Test 042 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_rrfs_v1beta_prod Checking test 043 fv3_ccpp_rrfs_v1beta results .... - 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 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 @@ -2227,25 +2227,25 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -2261,15 +2261,15 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... Test 043 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v15p2_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v15p2_prod Checking test 044 fv3_ccpp_gfs_v15p2 results .... - 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 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 @@ -2329,15 +2329,15 @@ Checking test 044 fv3_ccpp_gfs_v15p2 results .... Test 044 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v16_prod Checking test 045 fv3_ccpp_gfs_v16 results .... - 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 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 @@ -2409,8 +2409,8 @@ Checking test 045 fv3_ccpp_gfs_v16 results .... Test 045 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v16_restart_prod Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2459,15 +2459,15 @@ Checking test 046 fv3_ccpp_gfs_v16_restart results .... Test 046 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v16_stochy_prod Checking test 047 fv3_ccpp_gfs_v16_stochy results .... - 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 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 @@ -2527,15 +2527,15 @@ Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Test 047 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... - 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 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 @@ -2595,15 +2595,15 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... - 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 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 @@ -2663,8 +2663,8 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Test 049 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/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 @@ -2725,15 +2725,15 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfsv16_csawmg_prod Checking test 051 fv3_ccpp_gfsv16_csawmg results .... - 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 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 @@ -2773,15 +2773,15 @@ Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Test 051 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfsv16_csawmgt_prod Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... - 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 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 @@ -2821,15 +2821,15 @@ Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Test 052 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gocart_clm_prod Checking test 053 fv3_ccpp_gocart_clm results .... - 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 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 @@ -2869,15 +2869,15 @@ Checking test 053 fv3_ccpp_gocart_clm results .... Test 053 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v16_flake_prod Checking test 054 fv3_ccpp_gfs_v16_flake results .... - 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 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 @@ -2937,15 +2937,15 @@ Checking test 054 fv3_ccpp_gfs_v16_flake results .... Test 054 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... - 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 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 @@ -3005,10 +3005,10 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK @@ -3023,26 +3023,150 @@ Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... - 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 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... 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 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 057 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + 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 058 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 059 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 @@ -3088,18 +3212,18 @@ Checking test 057 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 057 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_debug_prod -Checking test 058 fv3_ccpp_gfs_v16_debug results .... - 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 +Test 059 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v16_debug_prod +Checking test 060 fv3_ccpp_gfs_v16_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 @@ -3156,18 +3280,18 @@ Checking test 058 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... - 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 +Test 060 fv3_ccpp_gfs_v16_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 061 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 @@ -3224,18 +3348,18 @@ Checking test 059 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 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... - 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 +Test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 062 fv3_ccpp_gfs_v16_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 @@ -3292,18 +3416,18 @@ Checking test 060 fv3_ccpp_gfs_v16_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 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gsd_debug_prod -Checking test 061 fv3_ccpp_gsd_debug results .... - 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 +Test 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gsd_debug_prod +Checking test 063 fv3_ccpp_gsd_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 @@ -3329,25 +3453,25 @@ Checking test 061 fv3_ccpp_gsd_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3360,18 +3484,18 @@ Checking test 061 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 061 fv3_ccpp_gsd_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... - 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 +Test 063 fv3_ccpp_gsd_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 064 fv3_ccpp_gsd_diag3d_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 @@ -3397,25 +3521,25 @@ Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3428,18 +3552,18 @@ Checking test 062 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 062 fv3_ccpp_gsd_diag3d_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_thompson_debug_prod -Checking test 063 fv3_ccpp_thompson_debug results .... - 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 +Test 064 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_thompson_debug_prod +Checking test 065 fv3_ccpp_thompson_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 @@ -3465,25 +3589,25 @@ Checking test 063 fv3_ccpp_thompson_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3496,18 +3620,18 @@ Checking test 063 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 063 fv3_ccpp_thompson_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... - 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 +Test 065 fv3_ccpp_thompson_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 066 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 + 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 @@ -3533,25 +3657,25 @@ Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3564,18 +3688,18 @@ Checking test 064 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 064 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... - 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 +Test 066 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 067 fv3_ccpp_rrfs_v1beta_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 @@ -3601,25 +3725,25 @@ Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... Comparing dynf003.tile5.nc .........OK Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............ALT CHECK......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/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 @@ -3632,18 +3756,18 @@ Checking test 065 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 065 fv3_ccpp_rrfs_v1beta_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... - 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 +Test 067 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 068 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 + 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 @@ -3700,13 +3824,13 @@ Checking test 066 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 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/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 ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK Comparing dynf000.nc .........OK @@ -3718,12 +3842,74 @@ Checking test 067 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 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 070 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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/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 070 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_control_prod -Checking test 068 cpld_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_control_prod +Checking test 071 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3771,12 +3957,12 @@ Checking test 068 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 068 cpld_control PASS +Test 071 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_prod -Checking test 069 cpld_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restart_prod +Checking test 072 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3824,12 +4010,12 @@ Checking test 069 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 069 cpld_restart PASS +Test 072 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_controlfrac_prod -Checking test 070 cpld_controlfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_controlfrac_prod +Checking test 073 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3877,12 +4063,12 @@ Checking test 070 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 070 cpld_controlfrac PASS +Test 073 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restartfrac_prod -Checking test 071 cpld_restartfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restartfrac_prod +Checking test 074 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3930,12 +4116,12 @@ Checking test 071 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 071 cpld_restartfrac PASS +Test 074 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_2threads_prod -Checking test 072 cpld_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_2threads_prod +Checking test 075 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3983,12 +4169,12 @@ Checking test 072 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 072 cpld_2threads PASS +Test 075 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_decomp_prod -Checking test 073 cpld_decomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_decomp_prod +Checking test 076 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4036,12 +4222,12 @@ Checking test 073 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 073 cpld_decomp PASS +Test 076 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_satmedmf_prod -Checking test 074 cpld_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_satmedmf_prod +Checking test 077 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4089,12 +4275,12 @@ Checking test 074 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 074 cpld_satmedmf PASS +Test 077 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_ca_prod -Checking test 075 cpld_ca results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_ca_prod +Checking test 078 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4142,12 +4328,12 @@ Checking test 075 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 075 cpld_ca PASS +Test 078 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_control_c192_prod -Checking test 076 cpld_control_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_control_c192_prod +Checking test 079 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4195,12 +4381,12 @@ Checking test 076 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 076 cpld_control_c192 PASS +Test 079 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_c192_prod -Checking test 077 cpld_restart_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restart_c192_prod +Checking test 080 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4248,12 +4434,12 @@ Checking test 077 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 077 cpld_restart_c192 PASS +Test 080 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_controlfrac_c192_prod -Checking test 078 cpld_controlfrac_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_controlfrac_c192_prod +Checking test 081 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4301,12 +4487,12 @@ Checking test 078 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 078 cpld_controlfrac_c192 PASS +Test 081 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restartfrac_c192_prod -Checking test 079 cpld_restartfrac_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restartfrac_c192_prod +Checking test 082 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4354,12 +4540,12 @@ Checking test 079 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 079 cpld_restartfrac_c192 PASS +Test 082 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_control_c384_prod -Checking test 080 cpld_control_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_control_c384_prod +Checking test 083 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4410,12 +4596,12 @@ Checking test 080 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 080 cpld_control_c384 PASS +Test 083 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_c384_prod -Checking test 081 cpld_restart_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restart_c384_prod +Checking test 084 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4466,12 +4652,12 @@ Checking test 081 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 081 cpld_restart_c384 PASS +Test 084 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_controlfrac_c384_prod -Checking test 082 cpld_controlfrac_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_controlfrac_c384_prod +Checking test 085 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4522,12 +4708,12 @@ Checking test 082 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 082 cpld_controlfrac_c384 PASS +Test 085 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restartfrac_c384_prod -Checking test 083 cpld_restartfrac_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restartfrac_c384_prod +Checking test 086 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4578,12 +4764,12 @@ Checking test 083 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 083 cpld_restartfrac_c384 PASS +Test 086 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmark_prod -Checking test 084 cpld_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_bmark_prod +Checking test 087 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4634,12 +4820,12 @@ Checking test 084 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 084 cpld_bmark PASS +Test 087 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_bmark_prod -Checking test 085 cpld_restart_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restart_bmark_prod +Checking test 088 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4690,12 +4876,12 @@ Checking test 085 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 085 cpld_restart_bmark PASS +Test 088 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmarkfrac_prod -Checking test 086 cpld_bmarkfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_bmarkfrac_prod +Checking test 089 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4746,12 +4932,12 @@ Checking test 086 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 086 cpld_bmarkfrac PASS +Test 089 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_bmarkfrac_prod -Checking test 087 cpld_restart_bmarkfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restart_bmarkfrac_prod +Checking test 090 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4802,12 +4988,12 @@ Checking test 087 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 087 cpld_restart_bmarkfrac PASS +Test 090 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmarkfrac_v16_prod -Checking test 088 cpld_bmarkfrac_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_bmarkfrac_v16_prod +Checking test 091 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4858,12 +5044,12 @@ Checking test 088 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 088 cpld_bmarkfrac_v16 PASS +Test 091 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_restart_bmarkfrac_v16_prod -Checking test 089 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restart_bmarkfrac_v16_prod +Checking test 092 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4914,12 +5100,12 @@ Checking test 089 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 089 cpld_restart_bmarkfrac_v16 PASS +Test 092 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmark_wave_prod -Checking test 090 cpld_bmark_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_bmark_wave_prod +Checking test 093 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4973,12 +5159,12 @@ Checking test 090 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 090 cpld_bmark_wave PASS +Test 093 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmarkfrac_wave_prod -Checking test 091 cpld_bmarkfrac_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmarkfrac_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_bmarkfrac_wave_prod +Checking test 094 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5032,12 +5218,12 @@ Checking test 091 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 091 cpld_bmarkfrac_wave PASS +Test 094 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_bmarkfrac_wave_v16_prod -Checking test 092 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmarkfrac_wave_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_bmarkfrac_wave_v16_prod +Checking test 095 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5091,12 +5277,12 @@ Checking test 092 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 092 cpld_bmarkfrac_wave_v16 PASS +Test 095 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_control_wave_prod -Checking test 093 cpld_control_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_control_wave_prod +Checking test 096 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5147,12 +5333,12 @@ Checking test 093 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 093 cpld_control_wave PASS +Test 096 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_debug_prod -Checking test 094 cpld_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_debug_prod +Checking test 097 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5200,12 +5386,12 @@ Checking test 094 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 094 cpld_debug PASS +Test 097 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/cpld_debugfrac_prod -Checking test 095 cpld_debugfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_debugfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_debugfrac_prod +Checking test 098 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5253,87 +5439,87 @@ Checking test 095 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 095 cpld_debugfrac PASS +Test 098 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_control_cfsr -Checking test 096 datm_control_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/datm_control_cfsr +Checking test 099 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 096 datm_control_cfsr PASS +Test 099 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_restart_cfsr -Checking test 097 datm_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/datm_restart_cfsr +Checking test 100 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 097 datm_restart_cfsr PASS +Test 100 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_control_gefs -Checking test 098 datm_control_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/datm_control_gefs +Checking test 101 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 098 datm_control_gefs PASS +Test 101 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_bulk_cfsr -Checking test 099 datm_bulk_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/datm_bulk_cfsr +Checking test 102 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 099 datm_bulk_cfsr PASS +Test 102 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_bulk_gefs -Checking test 100 datm_bulk_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/datm_bulk_gefs +Checking test 103 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 100 datm_bulk_gefs PASS +Test 103 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_mx025_cfsr -Checking test 101 datm_mx025_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/datm_mx025_cfsr +Checking test 104 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 101 datm_mx025_cfsr PASS +Test 104 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_mx025_gefs -Checking test 102 datm_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/datm_mx025_gefs +Checking test 105 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 102 datm_mx025_gefs PASS +Test 105 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210128/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_63223/datm_debug_cfsr -Checking test 103 datm_debug_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/datm_debug_cfsr +Checking test 106 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 103 datm_debug_cfsr PASS +Test 106 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 12 04:23:36 UTC 2021 -Elapsed time: 12h:35m:33s. Have a nice day! +Sun Feb 14 03:49:20 UTC 2021 +Elapsed time: 02h:31m:05s. Have a nice day! diff --git a/tests/ci/ci.sh b/tests/ci/ci.sh index c2a093832a..f9af49440c 100755 --- a/tests/ci/ci.sh +++ b/tests/ci/ci.sh @@ -63,8 +63,6 @@ fi if [ $BUILD = "true" ]; then - sed -i -e '/affinity.c/d' ../../CMakeLists.txt - sudo docker build --build-arg test_name=$TEST_NAME \ --build-arg build_case=$BUILD_CASE \ --no-cache \ diff --git a/tests/compare_ncfile.py b/tests/compare_ncfile.py index 764d5e3288..e5b5ad4f01 100755 --- a/tests/compare_ncfile.py +++ b/tests/compare_ncfile.py @@ -4,12 +4,20 @@ from netCDF4 import Dataset with Dataset(sys.argv[1]) as nc1, Dataset(sys.argv[2]) as nc2: + # Check if the list of variables are the same if nc1.variables.keys()!=nc2.variables.keys(): print("Variables are different") - sys.exit(1) + sys.exit(2) for varname in nc1.variables.keys(): - diff = nc2[varname][:]-nc1[varname][:] - if (np.abs(diff)).max() != 0: - print(varname,"is different") - sys.exit(1) + # First check if each variable has the same dimension + if np.shape(nc1[varname][:])!=np.shape(nc2[varname][:]): + print(varname,"dimension is different") + sys.exit(2) + # If dimension is the same, compare data + else: + diff = nc2[varname][:]-nc1[varname][:] + + if (np.abs(diff)).max() != 0: + print(varname,"is different") + sys.exit(2) diff --git a/tests/fv3_conf/ccpp_gfsv16_ugwpv1_run.IN b/tests/fv3_conf/ccpp_gfsv16_ugwpv1_run.IN new file mode 100644 index 0000000000..2c58446c6a --- /dev/null +++ b/tests/fv3_conf/ccpp_gfsv16_ugwpv1_run.IN @@ -0,0 +1,22 @@ +rm -rf INPUT RESTART +mkdir INPUT RESTART +if [ $WARM_START = .F. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/INPUT/* ./INPUT +else + cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/INPUT/* ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/RESTART/* ./INPUT +fi +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/global_o3prdlos.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/global_h2oprdlos.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/*_table ./ +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/nems.configure ./ +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/ugwp_c384_tau.nc ./ugwp_limb_tau.nc + +if [ $DO_RRTMGP = .T. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . +fi diff --git a/tests/parm/ccpp_v16_c96_ugwpv1.nml.IN b/tests/parm/ccpp_v16_c96_ugwpv1.nml.IN new file mode 100644 index 0000000000..4fbff3e65a --- /dev/null +++ b/tests/parm/ccpp_v16_c96_ugwpv1.nml.IN @@ -0,0 +1,343 @@ +&amip_interp_nml + interp_oi_sst = .true. + use_ncep_sst = .true. + use_ncep_ice = .false. + no_anom_sst = .false. + data_set = 'reynolds_oi' + date_out_of_range = 'climo' +/ + +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + fdiag = 3 + fhmax = 24 + ccpp_suite = 'FV3_GFS_v16b_ugwpv1' +/ + +&diag_manager_nml + prepend_date = .false. +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 +/ + +&mpp_io_nml +shuffle=1 +deflate_level=1 +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = 3000000 + print_memory_usage = .false. +/ + +&fv_core_nml + layout = 3,8 + io_layout = 1,1 + npx = 97 + npy = 97 + ntiles = 6 + npz = 127 + grid_type = -1 + make_nh = .false. + fv_debug = .false. + range_warn = .false. + reset_eta = .false. + nudge_qv = .true. + nudge_dz = .false. + n_sponge = 42 + fv_sg_adj = 450 + tau = 10. + rf_cutoff = 7.5e2 + d2_bg_k1 = 0.20 + d2_bg_k2 = 0.04 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.12 + vtdm4 = 0.02 + delt_max = 0.002 + d_con = 1. + ke_bg = 0. + do_vort_damp = .true. + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .false. + phys_hydrostatic = .false. + use_hydro_pressure = .false. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 6 + nwat = 6 + na_init = 0 + d_ext = 0. + dnats = 1 + warm_start = @[WARM_START] + external_ic = @[EXTERNAL_IC] + external_eta = .true. + gfs_phil = .false. + nggps_ic = .true. + mountain = @[MOUNTAIN] + ncep_ic = .false. + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 + adjust_dry_mass = .false. + dry_mass=98320.0 + consv_te = 1. + do_sat_adj = .true. + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = 6 + no_dycore = .false. + z_tracer = .true. + agrid_vel_rst = .true. + read_increment = .false. + res_latlon_dynamics = "" + +/ + +&external_ic_nml + filtered_terrain = .true. + levp = 128 + gfs_dwinds = .true. + checker_tr = .false. + nt_checker = 0 +/ + +&gfs_physics_nml + fhzero = 6 + h2o_phys = .true. + ldiag3d = .false. + fhcyc = 24 + use_ufo = .true. + pre_rad = .false. + ncld = 5 + imp_physics = 11 + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = 1 + iems = 1 + iaer = 5111 + icliq_sw = 2 + iovr = 3 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. + shal_cnv = .true. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = .false. + satmedmf = .true. + isatmedmf = 1 + lheatstrg = .false. + random_clds = .false. + trans_trac = .true. + cnvcld = .true. + imfshalcnv = 2 + imfdeepcnv = 2 + cdmbgwd = 0.14,1.8,1.0,1.0 + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsoil = 4 + lsm = 1 + iopt_dveg = 1 + iopt_crs = 1 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_alb = 2 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 1 + oz_phys = .F. + oz_phys_2015 = .T. + debug = .false. + nstf_name = 2,0,0,0,0 + nst_anl = .true. + psautco = 0.0008,0.0005 + prautco = 0.00015,0.00015 + lgfdlmprad = .true. + effr_in = .true. + cplwav = .false. + do_sppt = .false. + do_shum = .false. + do_skeb = .false. + ltaerosol = .false. + lradar = .false. + ttendlim = 0.005 + lsoil_lsm = 4 + do_mynnedmf = .false. + do_mynnsfclay = .false. + icloud_bl = 1 + bl_mynn_edmf = 1 + bl_mynn_tkeadvect = .true. + bl_mynn_edmf_mom = 1 + min_lakeice = 0.15 + min_seaice = 0.15 + ldiag_ugwp = .false. + do_ugwp = .false. + do_tofd = .false. + gwd_opt = 1 + do_ugwp_v1 = .T. + do_ugwp_v1_w_gsldrag = .T. + do_ugwp_v1_orog_only = .F. + do_gsl_drag_ls_bl = .F. + do_gsl_drag_ss = .F. + do_gsl_drag_tofd = .F. + do_ugwp_v0 = .F. + do_ugwp_v0_orog_only = .F. +/ + +&gfdl_cloud_microphysics_nml + sedi_transport = .true. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .F. + const_vs = .F. + const_vg = .F. + const_vr = .F. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 225. + tau_v2l = 150. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0E-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 150. + reiflag = 2 +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&namsfc + FNGLAC = 'global_glacier.2x2.grb' + FNMXIC = 'global_maxice.2x2.grb' + FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' + FNSNOC = 'global_snoclim.1.875.grb' + FNZORC = 'igbp' + FNALBC = 'global_snowfree_albedo.bosu.t126.384.190.rg.grb' + FNALBC2 = 'global_albedo4.1x1.grb' + FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' + FNTG3C = 'global_tg3clim.2.6x1.5.grb' + FNVEGC = 'global_vegfrac.0.144.decpercent.grb' + FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' + FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' + FNSMCC = 'global_soilmgldas.t126.384.190.grb' + FNMSKH = 'seaice_newland.grb' + FNTSFA = '' + FNACNA = '' + FNSNOA = '' + FNVMNC = 'global_shdmin.0.144x0.144.grb' + FNVMXC = 'global_shdmax.0.144x0.144.grb' + FNSLPC = 'global_slope.1x1.grb' + FNABSC = 'global_mxsnoalb.uariz.t126.384.190.rg.grb' + LDEBUG = .false. + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + LANDICE = .true. + FTSFS = 90 + FAISL = 99999 + FAISS = 99999 + FSNOL = 99999 + FSNOS = 99999 + FSICL = 99999 + FSICS = 99999 + FTSFL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&nam_stochy +/ + +&nam_sfcperts +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_version = 1 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 2 + knob_ugwp_ndx4lh = 4 + knob_ugwp_palaunch = 275.0e2 + knob_ugwp_nslope = 0 + knob_ugwp_lzmax = 15.750e3 + knob_ugwp_lzmin = 0.75e3 + knob_ugwp_lzstar = 2.0e3 + knob_ugwp_taumin = 0.25e-3 + knob_ugwp_tauamp = 3.0e-3 + knob_ugwp_lhmet = 200.0e3 + knob_ugwp_orosolv = 'pss-1986' +/ diff --git a/tests/rt.conf b/tests/rt.conf index 5c240af485..125a48a2eb 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -5,7 +5,7 @@ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | RUN | fv3_ccpp_control | | fv3 | -RUN | fv3_ccpp_decomp | | | +RUN | fv3_ccpp_decomp | - jet.intel | | RUN | fv3_ccpp_2threads | | | RUN | fv3_ccpp_restart | | | fv3_ccpp_control RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control @@ -95,10 +95,12 @@ COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flak RUN | fv3_ccpp_gocart_clm | | fv3 | RUN | fv3_ccpp_gfs_v16_flake | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 | | 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 | +RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 | +RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | fv3 | ################################################################################################################################################################################### # DEBUG tests # @@ -120,10 +122,11 @@ RUN | fv3_ccpp_thompson_debug 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 | +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 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 | +RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 | ################################################################################################################################################################################### # CPLD tests # diff --git a/tests/rt.sh b/tests/rt.sh index 92e1b8928c..02fa401db7 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -34,8 +34,15 @@ rt_single() { [[ ${#line} == 0 ]] && continue [[ $line == \#* ]] && continue - if [[ $line =~ COMPILE && $line =~ ${MACHINE_ID} ]]; then - compile_line=$line + if [[ $line == COMPILE* ]] ; then + MACHINES=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') + if [[ ${MACHINES} == '' ]]; then + compile_line=$line + elif [[ ${MACHINES} == -* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] || compile_line=$line + elif [[ ${MACHINES} == +* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] && compile_line=$line + fi fi if [[ $line =~ RUN ]]; then @@ -200,11 +207,9 @@ elif [[ $MACHINE_ID = wcoss2 ]]; then elif [[ $MACHINE_ID = gaea.* ]]; then - module load cray-python/3.7.3.2 - - export PATH=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/bin:$PATH - export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/lib/python3.7/site-packages - ECFLOW_START=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/bin/ecflow_start.sh + export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages + ECFLOW_START=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) DISKNM=/lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT @@ -282,9 +287,9 @@ elif [[ $MACHINE_ID = jet.* ]]; then ROCOTOCOMPLETE=$(which rocotocomplete) ROCOTO_SCHEDULER=slurm - export PATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.5.3/bin:$PATH - export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.5.3/lib/python3.6/site-packages - ECFLOW_START=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.5.3/bin/ecflow_start.sh + export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages + ECFLOW_START=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=batch @@ -302,10 +307,9 @@ elif [[ $MACHINE_ID = jet.* ]]; then elif [[ $MACHINE_ID = cheyenne.* ]]; then - module load python/3.7.9 - export PATH=/glade/p/ral/jntp/tools/ecFlow-5.5.3/bin:$PATH - export PYTHONPATH=/glade/p/ral/jntp/tools/ecFlow-5.5.3/lib/python3.7/site-packages - ECFLOW_START=/glade/p/ral/jntp/tools/ecFlow-5.5.3/bin/ecflow_start.sh + export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages + ECFLOW_START=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=regular @@ -411,12 +415,12 @@ 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-20210128/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210212/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210128} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210212} fi -INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210115} +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210212} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20201220 shift $((OPTIND-1)) @@ -771,6 +775,7 @@ else [[ ${KEEP_RUNDIR} == false ]] && rm -rf ${RUNDIR_ROOT} [[ ${ROCOTO} == true ]] && rm -f ${ROCOTO_XML} ${ROCOTO_DB} *_lock.db [[ ${TEST_35D} == true ]] && rm -f tests/cpld_bmark*_20* + [[ ${SINGLE_NAME} != '' ]] && rm -f rt.conf.single fi date >> ${REGRESSIONTEST_LOG} diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 09c68b73ba..4401a84c89 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -22,10 +22,12 @@ RUN | fv3_ccpp_thompson RUN | fv3_ccpp_thompson_no_aero | | fv3 | RUN | fv3_ccpp_rrfs_v1beta | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 | | 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 | +RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 | +RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | fv3 | ################################################################################################################################################################## # CCPP DEBUG tests # @@ -51,10 +53,11 @@ COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y #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 | | fv3 | +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 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 | +RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 | ################################################################################################################################################################## # S2S tests # diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index c58d775039..52f9dd8f6a 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -270,13 +270,23 @@ check_results() { else - d=$( cmp ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i | wc -l ) + cmp ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i >/dev/null 2>&1 && d=$? || d=$? + if [[ $d -eq 2 ]]; then + echo "....CMP ERROR" >> ${REGRESSIONTEST_LOG} + echo "....CMP ERROR" + exit 1 + fi - if [[ $d -ne 0 ]] ; then + if [[ $d -eq 1 && ${i##*.} == 'nc' ]] ; then if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss_dell_p3 || ${MACHINE_ID} =~ wcoss_cray || ${MACHINE_ID} =~ cheyenne || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet ]]; then printf ".......ALT CHECK.." >> ${REGRESSIONTEST_LOG} printf ".......ALT CHECK.." - d=$( ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i 2>/dev/null | wc -l ) + ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i >/dev/null 2>&1 && d=$? || d=$? + if [[ $d -eq 1 ]]; then + echo "....ERROR" >> ${REGRESSIONTEST_LOG} + echo "....ERROR" + exit 1 + fi fi fi diff --git a/tests/tests/fv3_ccpp_gfsv16_ugwpv1 b/tests/tests/fv3_ccpp_gfsv16_ugwpv1 new file mode 100644 index 0000000000..daec8b1c96 --- /dev/null +++ b/tests/tests/fv3_ccpp_gfsv16_ugwpv1 @@ -0,0 +1,88 @@ +############################################################################### +# +# FV3 CCPP GFS v16beta with ugwpv1 and gsldrag: fv3_ccpp_gfsv16_ugwpv1 +# +############################################################################### + +export TEST_DESCR="Compare fv3_ccpp_gfsv16_ugwpv1 with previous trunk version" + +export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1 + +export LIST_FILES="phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 + +export SYEAR=2019 +export SMONTH=07 +export SDAY=01 +export SHOUR=00 + +DT_ATMOS="600" + +export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN +export CCPP_SUITE=FV3_GFS_v16b_ugwpv1 +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN +export WLCLK=30 + +# Cold start, these are defaults +#export WARM_START=.F. +#export EXTERNAL_IC=.T. +#export MOUNTAIN=.F. + diff --git a/tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug b/tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug new file mode 100644 index 0000000000..718f438483 --- /dev/null +++ b/tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug @@ -0,0 +1,88 @@ +########################################################################################### +# +# FV3 CCPP GFS v16beta with ugwpv1 and gsldrag in DEBUG mode: fv3_ccpp_gfsv16_ugwpv1_debug +# +########################################################################################### + +export TEST_DESCR="Compare fv3_ccpp_gfsv16_ugwpv1 DEBUG with previous trunk version" + +export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1_debug + +export LIST_FILES="phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf006.tile1.nc \ + phyf006.tile2.nc \ + phyf006.tile3.nc \ + phyf006.tile4.nc \ + phyf006.tile5.nc \ + phyf006.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf006.tile1.nc \ + dynf006.tile2.nc \ + dynf006.tile3.nc \ + dynf006.tile4.nc \ + dynf006.tile5.nc \ + dynf006.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + +export_fv3 + +export SYEAR=2019 +export SMONTH=07 +export SDAY=01 +export SHOUR=00 + +DT_ATMOS="600" +export FHMAX=6 + +export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN +export CCPP_SUITE=FV3_GFS_v16b_ugwpv1 +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN +export WLCLK=30 + +# Cold start, these are defaults +#export WARM_START=.F. +#export EXTERNAL_IC=.T. +#export MOUNTAIN=.F. + diff --git a/tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart b/tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart new file mode 100644 index 0000000000..049302c5da --- /dev/null +++ b/tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart @@ -0,0 +1,88 @@ +############################################################################### +# +# FV3 CCPP GFS v16beta with ugwpv1 and gsldrag, warm start: fv3_ccpp_gfsv16_ugwpv1_warmstart +# +############################################################################### + +export TEST_DESCR="Compare fv3_ccpp_gfsv16_ugwpv1 with previous trunk version" + +export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1_warmstart + +export LIST_FILES="phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 + +export SYEAR=2019 +export SMONTH=07 +export SDAY=02 +export SHOUR=00 + +DT_ATMOS="600" + +export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN +export CCPP_SUITE=FV3_GFS_v16b_ugwpv1 +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN +export WLCLK=30 + +# Warm start +export WARM_START=.T. +export EXTERNAL_IC=.F. +export MOUNTAIN=.T. + diff --git a/tests/utest.bld b/tests/utest.bld index 755c599e48..90814bc59e 100644 --- a/tests/utest.bld +++ b/tests/utest.bld @@ -1,22 +1,22 @@ -fv3_ccpp_control | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGauss_netcdf_esmf | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGauss_netcdf | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGlatlon_netcdf | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGauss_nemsio | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_stochy | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_iau | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_ca | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_lheatstrg | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_gfdlmprad | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -fv3_ccpp_atmwav | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -fv3_ccpp_multigases | CCPP=Y SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -fv3_ccpp_gfdlmp | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp -fv3_ccpp_gfdlmprad_gwd | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp -fv3_ccpp_gfdlmprad_noahmp | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_noahmp -fv3_ccpp_csawmg | CCPP=Y SUITES=FV3_GFS_2017_csawmg -fv3_ccpp_satmedmf | CCPP=Y SUITES=FV3_GFS_2017_satmedmf -fv3_ccpp_satmedmfq | CCPP=Y SUITES=FV3_GFS_2017_satmedmfq -fv3_ccpp_gfsv16_csawmg | CCPP=Y SUITES=FV3_GFS_v16_csawmg -fv3_ccpp_gfsv16_csawmgt | CCPP=Y SUITES=FV3_GFS_v16_csawmg -fv3_ccpp_gocart_clm | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -fv3_ccpp_gfs_v16_flake | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +fv3_ccpp_control | SUITES=FV3_GFS_2017 +fv3_ccpp_wrtGauss_netcdf_esmf | SUITES=FV3_GFS_2017 +fv3_ccpp_wrtGauss_netcdf | SUITES=FV3_GFS_2017 +fv3_ccpp_wrtGlatlon_netcdf | SUITES=FV3_GFS_2017 +fv3_ccpp_wrtGauss_nemsio | SUITES=FV3_GFS_2017 +fv3_ccpp_stochy | SUITES=FV3_GFS_2017 +fv3_ccpp_iau | SUITES=FV3_GFS_2017 +fv3_ccpp_ca | SUITES=FV3_GFS_2017 +fv3_ccpp_lheatstrg | SUITES=FV3_GFS_2017 +fv3_ccpp_gfdlmprad | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y +fv3_ccpp_atmwav | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y +fv3_ccpp_multigases | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +fv3_ccpp_gfdlmp | SUITES=FV3_GFS_2017_gfdlmp +fv3_ccpp_gfdlmprad_gwd | SUITES=FV3_GFS_2017_gfdlmp +fv3_ccpp_gfdlmprad_noahmp | SUITES=FV3_GFS_2017_gfdlmp_noahmp +fv3_ccpp_csawmg | SUITES=FV3_GFS_2017_csawmg +fv3_ccpp_satmedmf | SUITES=FV3_GFS_2017_satmedmf +fv3_ccpp_satmedmfq | SUITES=FV3_GFS_2017_satmedmfq +fv3_ccpp_gfsv16_csawmg | SUITES=FV3_GFS_v16_csawmg +fv3_ccpp_gfsv16_csawmgt | SUITES=FV3_GFS_v16_csawmg +fv3_ccpp_gocart_clm | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +fv3_ccpp_gfs_v16_flake | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake From 250c2c52f4bb3c27c71aa422dc5ed518d3327e9f Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Fri, 19 Feb 2021 12:49:22 -0700 Subject: [PATCH 070/109] Update regression tests from GFSv15+Thompson to GFSv16+Thompson, include "Add one regional regression test in DEBUG mode. (#419)" (#421) * Add one regional regression test in DEBUG mode. * Update .gitmodules and submodule pointer for fv3atm for code review and testing * Update regression tests from GFSv15+Thompson to GFSv16+Thompson * Combine several COMPILE lines in tests/rt.conf and tests/rt_gnu.conf * Regression test log for cheyenne.{gnu,intel},gaea.intel, hera.gnu, jet.intel,hera.intel,orion.intel;wcoss_cray and wcoss_dell_p3; --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 401 +++++++-- tests/RegressionTests_cheyenne.intel.log | 809 ++++++++++--------- tests/RegressionTests_gaea.intel.log | 789 +++++++++--------- tests/RegressionTests_hera.gnu.log | 401 +++++++-- tests/RegressionTests_hera.intel.log | 851 ++++++++++---------- tests/RegressionTests_jet.intel.log | 521 ++++++------ tests/RegressionTests_orion.intel.log | 851 ++++++++++---------- tests/RegressionTests_wcoss_cray.log | 549 ++++++------- tests/RegressionTests_wcoss_dell_p3.log | 849 +++++++++---------- tests/default_vars.sh | 2 + tests/fv3_conf/ccpp_gsd_run.IN | 3 +- tests/parm/ccpp_gsd.nml.IN | 20 +- tests/rt.conf | 13 +- tests/rt.sh | 4 +- tests/rt_ccpp_dev.conf | 4 +- tests/rt_gnu.conf | 14 +- tests/tests/fv3_ccpp_regional_control_debug | 35 + tests/tests/fv3_ccpp_thompson | 12 +- tests/tests/fv3_ccpp_thompson_debug | 12 +- tests/tests/fv3_ccpp_thompson_no_aero | 12 +- tests/tests/fv3_ccpp_thompson_no_aero_debug | 12 +- 22 files changed, 3442 insertions(+), 2724 deletions(-) create mode 100644 tests/tests/fv3_ccpp_regional_control_debug diff --git a/FV3 b/FV3 index d235fb8b07..70e55f21b8 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit d235fb8b0738a78e770f85131c09de4c0842c226 +Subproject commit 70e55f21b80df17f2c4b8b1a270fddb8d28ff75b diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 1c1f57314a..fdb44ea6fd 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Mon Feb 15 08:20:59 MST 2021 +Wed Feb 17 13:05:22 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/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-20210212/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/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-20210212/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -198,8 +198,8 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -248,8 +248,8 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -316,8 +316,8 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,8 +384,8 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/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-20210212/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -520,8 +520,8 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/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-20210212/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/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-20210212/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/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-20210212/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/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-20210212/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/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-20210212/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/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-20210212/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -964,8 +964,8 @@ Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1026,8 +1026,8 @@ Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1056,8 +1056,8 @@ Checking test 017 fv3_ccpp_control_debug results .... Test 017 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,8 +1124,8 @@ Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1192,8 +1192,8 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1260,8 +1260,8 @@ Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,8 +1328,8 @@ Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,9 +1402,292 @@ Checking test 022 fv3_ccpp_multigases results .... Test 022 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 023 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_regional_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_regional_control_debug_prod +Checking test 023 fv3_ccpp_regional_control_debug 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 023 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 024 fv3_ccpp_rrfs_v1beta_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + 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 024 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gsd_debug_prod +Checking test 025 fv3_ccpp_gsd_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + 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 025 fv3_ccpp_gsd_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_thompson_debug_prod +Checking test 026 fv3_ccpp_thompson_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 ............SKIP for gnu compilers + 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 026 fv3_ccpp_thompson_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 027 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 + 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 ............SKIP for gnu compilers + 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 027 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 028 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 @@ -1467,12 +1750,12 @@ Checking test 023 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 023 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 024 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -1485,12 +1768,12 @@ Checking test 024 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 024 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14558/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 025 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1547,9 +1830,9 @@ Checking test 025 fv3_ccpp_gfsv16_ugwpv1_debug 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_gfsv16_ugwpv1_debug PASS +Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Feb 15 08:39:02 MST 2021 -Elapsed time: 00h:18m:03s. Have a nice day! +Wed Feb 17 13:22:49 MST 2021 +Elapsed time: 00h:17m:28s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 988a74735b..361f44df77 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Mon Feb 15 08:21:05 MST 2021 +Wed Feb 17 13:30:04 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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-20210212/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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-20210212/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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-20210212/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210212/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -324,8 +324,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-20210212/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -372,8 +372,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-20210212/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -420,8 +420,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-20210212/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -431,7 +431,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -468,8 +468,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-20210212/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -516,8 +516,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-20210212/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -564,8 +564,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-20210212/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -612,8 +612,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-20210212/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,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-20210212/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ 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-20210212/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_lndp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,70 +1228,20 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/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 - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.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 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 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 -Test 025 fv3_ccpp_control_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - 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 - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfdlmp_prod -Checking test 027 fv3_ccpp_gfdlmp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmp_prod +Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1334,12 +1284,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 025 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1382,12 +1332,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 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1430,12 +1380,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 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_csawmg_prod -Checking test 030 fv3_ccpp_csawmg results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_csawmg_prod +Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1478,12 +1428,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 028 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_satmedmf_prod -Checking test 031 fv3_ccpp_satmedmf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_satmedmf_prod +Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1526,12 +1476,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 029 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_satmedmfq_prod -Checking test 032 fv3_ccpp_satmedmfq results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_satmedmfq_prod +Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1574,12 +1524,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 030 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfdlmp_32bit_prod -Checking test 033 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmp_32bit_prod +Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1622,12 +1572,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 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1674,12 +1624,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 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_cpt_prod -Checking test 035 fv3_ccpp_cpt results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_cpt_prod +Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1728,12 +1678,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 033 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gsd_prod -Checking test 036 fv3_ccpp_gsd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gsd_prod +Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1820,12 +1770,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 034 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_rap_prod -Checking test 037 fv3_ccpp_rap results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_rap_prod +Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1888,12 +1838,12 @@ Checking test 037 fv3_ccpp_rap 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_rap PASS +Test 035 fv3_ccpp_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_hrrr_prod -Checking test 038 fv3_ccpp_hrrr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_hrrr_prod +Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1956,12 +1906,12 @@ Checking test 038 fv3_ccpp_hrrr 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_hrrr PASS +Test 036 fv3_ccpp_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_thompson_prod -Checking test 039 fv3_ccpp_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -2024,12 +1974,12 @@ Checking test 039 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 039 fv3_ccpp_thompson PASS +Test 037 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_thompson_no_aero_prod -Checking test 040 fv3_ccpp_thompson_no_aero results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -2092,12 +2042,12 @@ Checking test 040 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 040 fv3_ccpp_thompson_no_aero PASS +Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_rrfs_v1beta_prod -Checking test 041 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_rrfs_v1beta_prod +Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2160,12 +2110,12 @@ Checking test 041 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 041 fv3_ccpp_rrfs_v1beta PASS +Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v16_prod -Checking test 042 fv3_ccpp_gfs_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_prod +Checking test 040 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2240,12 +2190,12 @@ Checking test 042 fv3_ccpp_gfs_v16 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_v16 PASS +Test 040 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v16_restart_prod -Checking test 043 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_restart_prod +Checking test 041 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2290,12 +2240,12 @@ Checking test 043 fv3_ccpp_gfs_v16_restart 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_v16_restart PASS +Test 041 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v16_stochy_prod -Checking test 044 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_stochy_prod +Checking test 042 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2358,12 +2308,12 @@ Checking test 044 fv3_ccpp_gfs_v16_stochy 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_v16_stochy PASS +Test 042 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 043 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2426,12 +2376,12 @@ Checking test 045 fv3_ccpp_gfs_v16_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_v16_RRTMGP PASS +Test 043 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2488,12 +2438,12 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 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_v16_RRTMGP_c192L127 PASS +Test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gocart_clm_prod -Checking test 047 fv3_ccpp_gocart_clm results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gocart_clm_prod +Checking test 045 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2536,12 +2486,12 @@ Checking test 047 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 047 fv3_ccpp_gocart_clm PASS +Test 045 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v16_flake_prod -Checking test 048 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_flake_prod +Checking test 046 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2604,12 +2554,12 @@ Checking test 048 fv3_ccpp_gfs_v16_flake 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_gfs_v16_flake PASS +Test 046 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 047 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 @@ -2672,12 +2622,12 @@ Checking test 049 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 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2690,12 +2640,12 @@ Checking test 050 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 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 049 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2752,12 +2702,12 @@ Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfsv16_ugwpv1 PASS +Test 049 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2814,12 +2764,12 @@ Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -2882,12 +2832,12 @@ Checking test 053 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 053 fv3_ccpp_gfs_v15p2_debug PASS +Test 051 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v16_debug_prod -Checking test 054 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_debug_prod +Checking test 052 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2950,12 +2900,12 @@ Checking test 054 fv3_ccpp_gfs_v16_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_v16_debug PASS +Test 052 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -3018,12 +2968,12 @@ Checking test 055 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 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 056 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3086,12 +3036,73 @@ Checking test 056 fv3_ccpp_gfs_v16_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 056 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 054 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_control_debug_prod +Checking test 055 fv3_ccpp_regional_control_debug 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 055 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_control_debug_prod +Checking test 056 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 056 fv3_ccpp_control_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_stretched_nest_debug_prod +Checking test 057 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 057 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gsd_debug_prod -Checking test 057 fv3_ccpp_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -3154,12 +3165,12 @@ Checking test 057 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 057 fv3_ccpp_gsd_debug PASS +Test 058 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 058 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -3222,12 +3233,12 @@ Checking test 058 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 058 fv3_ccpp_gsd_diag3d_debug PASS +Test 059 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_thompson_debug_prod -Checking test 059 fv3_ccpp_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -3290,12 +3301,12 @@ Checking test 059 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 059 fv3_ccpp_thompson_debug PASS +Test 060 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 060 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -3358,12 +3369,12 @@ Checking test 060 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 060 fv3_ccpp_thompson_no_aero_debug PASS +Test 061 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 061 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -3426,12 +3437,12 @@ Checking test 061 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 061 fv3_ccpp_rrfs_v1beta_debug PASS +Test 062 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -3494,12 +3505,12 @@ Checking test 062 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 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -3512,12 +3523,12 @@ Checking test 063 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 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 064 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 065 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3574,12 +3585,12 @@ Checking test 064 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 064 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 065 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_control_prod -Checking test 065 cpld_control results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_prod +Checking test 066 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3627,12 +3638,12 @@ Checking test 065 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 065 cpld_control PASS +Test 066 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restart_prod -Checking test 066 cpld_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_prod +Checking test 067 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3680,12 +3691,12 @@ Checking test 066 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 066 cpld_restart PASS +Test 067 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_controlfrac_prod -Checking test 067 cpld_controlfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_controlfrac_prod +Checking test 068 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3733,12 +3744,12 @@ Checking test 067 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 067 cpld_controlfrac PASS +Test 068 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restartfrac_prod -Checking test 068 cpld_restartfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restartfrac_prod +Checking test 069 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3786,12 +3797,12 @@ Checking test 068 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 068 cpld_restartfrac PASS +Test 069 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_2threads_prod -Checking test 069 cpld_2threads results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_2threads_prod +Checking test 070 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3839,12 +3850,12 @@ Checking test 069 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 069 cpld_2threads PASS +Test 070 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_decomp_prod -Checking test 070 cpld_decomp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_decomp_prod +Checking test 071 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3892,12 +3903,12 @@ Checking test 070 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 070 cpld_decomp PASS +Test 071 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_satmedmf_prod -Checking test 071 cpld_satmedmf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_satmedmf_prod +Checking test 072 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3945,12 +3956,12 @@ Checking test 071 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 071 cpld_satmedmf PASS +Test 072 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_ca_prod -Checking test 072 cpld_ca results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_ca_prod +Checking test 073 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3998,12 +4009,12 @@ Checking test 072 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 072 cpld_ca PASS +Test 073 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_control_c192_prod -Checking test 073 cpld_control_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_c192_prod +Checking test 074 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4051,12 +4062,12 @@ Checking test 073 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 073 cpld_control_c192 PASS +Test 074 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restart_c192_prod -Checking test 074 cpld_restart_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_c192_prod +Checking test 075 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4104,12 +4115,12 @@ Checking test 074 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 074 cpld_restart_c192 PASS +Test 075 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_controlfrac_c192_prod -Checking test 075 cpld_controlfrac_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_controlfrac_c192_prod +Checking test 076 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4157,12 +4168,12 @@ Checking test 075 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 075 cpld_controlfrac_c192 PASS +Test 076 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restartfrac_c192_prod -Checking test 076 cpld_restartfrac_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restartfrac_c192_prod +Checking test 077 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4210,12 +4221,12 @@ Checking test 076 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 076 cpld_restartfrac_c192 PASS +Test 077 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_control_c384_prod -Checking test 077 cpld_control_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_c384_prod +Checking test 078 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4266,12 +4277,12 @@ Checking test 077 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 077 cpld_control_c384 PASS +Test 078 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restart_c384_prod -Checking test 078 cpld_restart_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_c384_prod +Checking test 079 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4322,12 +4333,12 @@ Checking test 078 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 078 cpld_restart_c384 PASS +Test 079 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_controlfrac_c384_prod -Checking test 079 cpld_controlfrac_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_controlfrac_c384_prod +Checking test 080 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4378,12 +4389,12 @@ Checking test 079 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 079 cpld_controlfrac_c384 PASS +Test 080 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restartfrac_c384_prod -Checking test 080 cpld_restartfrac_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restartfrac_c384_prod +Checking test 081 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4434,12 +4445,12 @@ Checking test 080 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 080 cpld_restartfrac_c384 PASS +Test 081 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_bmark_prod -Checking test 081 cpld_bmark results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmark_prod +Checking test 082 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4490,12 +4501,12 @@ Checking test 081 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 081 cpld_bmark PASS +Test 082 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restart_bmark_prod -Checking test 082 cpld_restart_bmark results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_bmark_prod +Checking test 083 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4546,12 +4557,12 @@ Checking test 082 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 082 cpld_restart_bmark PASS +Test 083 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_bmarkfrac_prod -Checking test 083 cpld_bmarkfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_prod +Checking test 084 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4602,12 +4613,12 @@ Checking test 083 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 083 cpld_bmarkfrac PASS +Test 084 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restart_bmarkfrac_prod -Checking test 084 cpld_restart_bmarkfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_bmarkfrac_prod +Checking test 085 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4658,12 +4669,12 @@ Checking test 084 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 084 cpld_restart_bmarkfrac PASS +Test 085 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_bmarkfrac_v16_prod -Checking test 085 cpld_bmarkfrac_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_v16_prod +Checking test 086 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4714,12 +4725,12 @@ Checking test 085 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 085 cpld_bmarkfrac_v16 PASS +Test 086 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_restart_bmarkfrac_v16_prod -Checking test 086 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_bmarkfrac_v16_prod +Checking test 087 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4770,12 +4781,12 @@ Checking test 086 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 086 cpld_restart_bmarkfrac_v16 PASS +Test 087 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_bmark_wave_prod -Checking test 087 cpld_bmark_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmark_wave_prod +Checking test 088 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4829,12 +4840,12 @@ Checking test 087 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 087 cpld_bmark_wave PASS +Test 088 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_bmarkfrac_wave_prod -Checking test 088 cpld_bmarkfrac_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_wave_prod +Checking test 089 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4888,12 +4899,12 @@ Checking test 088 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 088 cpld_bmarkfrac_wave PASS +Test 089 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_bmarkfrac_wave_v16_prod -Checking test 089 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_wave_v16_prod +Checking test 090 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4947,12 +4958,12 @@ Checking test 089 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 089 cpld_bmarkfrac_wave_v16 PASS +Test 090 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_control_wave_prod -Checking test 090 cpld_control_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_wave_prod +Checking test 091 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5003,12 +5014,12 @@ Checking test 090 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 090 cpld_control_wave PASS +Test 091 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_debug_prod -Checking test 091 cpld_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_debug_prod +Checking test 092 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5056,12 +5067,12 @@ Checking test 091 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 091 cpld_debug PASS +Test 092 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/cpld_debugfrac_prod -Checking test 092 cpld_debugfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_debugfrac_prod +Checking test 093 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5109,87 +5120,87 @@ Checking test 092 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 092 cpld_debugfrac PASS +Test 093 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/datm_control_cfsr -Checking test 093 datm_control_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 093 datm_control_cfsr PASS +Test 094 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/datm_restart_cfsr -Checking test 094 datm_restart_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 094 datm_restart_cfsr PASS +Test 095 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/datm_control_gefs -Checking test 095 datm_control_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 095 datm_control_gefs PASS +Test 096 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/datm_bulk_cfsr -Checking test 096 datm_bulk_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 096 datm_bulk_cfsr PASS +Test 097 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/datm_bulk_gefs -Checking test 097 datm_bulk_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 097 datm_bulk_gefs PASS +Test 098 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/datm_mx025_cfsr -Checking test 098 datm_mx025_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 098 datm_mx025_cfsr PASS +Test 099 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/datm_mx025_gefs -Checking test 099 datm_mx025_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 099 datm_mx025_gefs PASS +Test 100 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_2233/datm_debug_cfsr -Checking test 100 datm_debug_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 100 datm_debug_cfsr PASS +Test 101 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Feb 15 09:40:43 MST 2021 -Elapsed time: 01h:19m:38s. Have a nice day! +Wed Feb 17 14:49:52 MST 2021 +Elapsed time: 01h:19m:48s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 0afccbeff5..368d969a32 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Mon Feb 15 10:22:34 EST 2021 +Wed Feb 17 18:30:56 EST 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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-20210212/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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-20210212/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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-20210212/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210212/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 @@ -324,8 +324,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-20210212/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 @@ -372,8 +372,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-20210212/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 @@ -420,8 +420,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-20210212/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 @@ -468,8 +468,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-20210212/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 @@ -516,8 +516,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-20210212/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 @@ -564,8 +564,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-20210212/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 @@ -612,8 +612,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-20210212/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210212/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_ca_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_lndp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_iau_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,8 +1228,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 @@ -1239,59 +1239,9 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.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 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 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 -Test 025 fv3_ccpp_control_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - 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 - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfdlmp_prod -Checking test 027 fv3_ccpp_gfdlmp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmp_prod +Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1334,12 +1284,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 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1382,12 +1332,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 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1430,12 +1380,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 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_csawmg_prod -Checking test 030 fv3_ccpp_csawmg results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_csawmg_prod +Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1478,12 +1428,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 028 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_satmedmf_prod -Checking test 031 fv3_ccpp_satmedmf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_satmedmf_prod +Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1526,12 +1476,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 029 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_satmedmfq_prod -Checking test 032 fv3_ccpp_satmedmfq results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_satmedmfq_prod +Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1574,12 +1524,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 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfdlmp_32bit_prod -Checking test 033 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmp_32bit_prod +Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1622,12 +1572,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 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1674,12 +1624,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 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_cpt_prod -Checking test 035 fv3_ccpp_cpt results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_cpt_prod +Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1728,12 +1678,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 033 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gsd_prod -Checking test 036 fv3_ccpp_gsd results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gsd_prod +Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1820,12 +1770,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 034 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_rap_prod -Checking test 037 fv3_ccpp_rap results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_rap_prod +Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1888,12 +1838,12 @@ Checking test 037 fv3_ccpp_rap 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_rap PASS +Test 035 fv3_ccpp_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_hrrr_prod -Checking test 038 fv3_ccpp_hrrr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_hrrr_prod +Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1956,12 +1906,12 @@ Checking test 038 fv3_ccpp_hrrr 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_hrrr PASS +Test 036 fv3_ccpp_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_thompson_prod -Checking test 039 fv3_ccpp_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 @@ -2024,12 +1974,12 @@ Checking test 039 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 039 fv3_ccpp_thompson PASS +Test 037 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_thompson_no_aero_prod -Checking test 040 fv3_ccpp_thompson_no_aero results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 @@ -2092,12 +2042,12 @@ Checking test 040 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 040 fv3_ccpp_thompson_no_aero PASS +Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_rrfs_v1beta_prod -Checking test 041 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_rrfs_v1beta_prod +Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2160,12 +2110,12 @@ Checking test 041 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 041 fv3_ccpp_rrfs_v1beta PASS +Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v15p2_prod -Checking test 042 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_prod +Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2228,12 +2178,12 @@ Checking test 042 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 042 fv3_ccpp_gfs_v15p2 PASS +Test 040 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v16_prod -Checking test 043 fv3_ccpp_gfs_v16 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_prod +Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2308,12 +2258,12 @@ Checking test 043 fv3_ccpp_gfs_v16 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_v16 PASS +Test 041 fv3_ccpp_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v16_restart_prod -Checking test 044 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_restart_prod +Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2358,12 +2308,12 @@ Checking test 044 fv3_ccpp_gfs_v16_restart 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_v16_restart PASS +Test 042 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v16_stochy_prod -Checking test 045 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_stochy_prod +Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2426,12 +2376,12 @@ Checking test 045 fv3_ccpp_gfs_v16_stochy 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_v16_stochy PASS +Test 043 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2494,12 +2444,12 @@ Checking test 046 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 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2562,12 +2512,12 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP 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_v16_RRTMGP PASS +Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2624,12 +2574,12 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 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_gfs_v16_RRTMGP_c192L127 PASS +Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfsv16_csawmg_prod -Checking test 049 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_csawmg_prod +Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2672,12 +2622,12 @@ Checking test 049 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 049 fv3_ccpp_gfsv16_csawmg PASS +Test 047 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2720,12 +2670,12 @@ Checking test 050 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 050 fv3_ccpp_gfsv16_csawmgt PASS +Test 048 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gocart_clm_prod -Checking test 051 fv3_ccpp_gocart_clm results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2768,12 +2718,12 @@ Checking test 051 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 051 fv3_ccpp_gocart_clm PASS +Test 049 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v16_flake_prod -Checking test 052 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_flake_prod +Checking test 050 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2836,12 +2786,12 @@ Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfs_v16_flake PASS +Test 050 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2904,12 +2854,12 @@ Checking test 053 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 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 Comparing phyf012.nc .........OK @@ -2922,12 +2872,12 @@ Checking test 054 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 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2984,12 +2934,12 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1 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_gfsv16_ugwpv1 PASS +Test 053 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3046,12 +2996,12 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3114,12 +3064,12 @@ Checking test 057 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 057 fv3_ccpp_gfs_v15p2_debug PASS +Test 055 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v16_debug_prod -Checking test 058 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_debug_prod +Checking test 056 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3182,12 +3132,12 @@ Checking test 058 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS +Test 056 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3250,12 +3200,12 @@ Checking test 059 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 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3318,12 +3268,73 @@ Checking test 060 fv3_ccpp_gfs_v16_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 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_control_debug_prod +Checking test 059 fv3_ccpp_regional_control_debug 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 059 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_control_debug_prod +Checking test 060 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 060 fv3_ccpp_control_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stretched_nest_debug_prod +Checking test 061 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 061 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gsd_debug_prod -Checking test 061 fv3_ccpp_gsd_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3386,12 +3397,12 @@ Checking test 061 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 061 fv3_ccpp_gsd_debug PASS +Test 062 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3454,12 +3465,12 @@ Checking test 062 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 062 fv3_ccpp_gsd_diag3d_debug PASS +Test 063 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_thompson_debug_prod -Checking test 063 fv3_ccpp_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3522,12 +3533,12 @@ Checking test 063 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 063 fv3_ccpp_thompson_debug PASS +Test 064 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3590,12 +3601,12 @@ Checking test 064 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 064 fv3_ccpp_thompson_no_aero_debug PASS +Test 065 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3658,12 +3669,12 @@ Checking test 065 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 065 fv3_ccpp_rrfs_v1beta_debug PASS +Test 066 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3726,12 +3737,12 @@ Checking test 066 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 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 Comparing phyf001.nc .........OK @@ -3744,12 +3755,12 @@ Checking test 067 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 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 068 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3806,12 +3817,12 @@ Checking test 068 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 068 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 069 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_control_prod -Checking test 069 cpld_control results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_prod +Checking test 070 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3859,12 +3870,12 @@ Checking test 069 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 069 cpld_control PASS +Test 070 cpld_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_restart_prod -Checking test 070 cpld_restart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_prod +Checking test 071 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3912,12 +3923,12 @@ Checking test 070 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 070 cpld_restart PASS +Test 071 cpld_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_controlfrac_prod -Checking test 071 cpld_controlfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_prod +Checking test 072 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3965,12 +3976,12 @@ Checking test 071 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 071 cpld_controlfrac PASS +Test 072 cpld_controlfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_restartfrac_prod -Checking test 072 cpld_restartfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_prod +Checking test 073 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4018,12 +4029,12 @@ Checking test 072 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 072 cpld_restartfrac PASS +Test 073 cpld_restartfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_2threads_prod -Checking test 073 cpld_2threads results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_2threads_prod +Checking test 074 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4071,12 +4082,12 @@ Checking test 073 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 073 cpld_2threads PASS +Test 074 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_decomp_prod -Checking test 074 cpld_decomp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_decomp_prod +Checking test 075 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4124,12 +4135,12 @@ Checking test 074 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 074 cpld_decomp PASS +Test 075 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_satmedmf_prod -Checking test 075 cpld_satmedmf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_satmedmf_prod +Checking test 076 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4177,12 +4188,12 @@ Checking test 075 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 075 cpld_satmedmf PASS +Test 076 cpld_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_ca_prod -Checking test 076 cpld_ca results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_ca_prod +Checking test 077 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4230,12 +4241,12 @@ Checking test 076 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 076 cpld_ca PASS +Test 077 cpld_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_control_c192_prod -Checking test 077 cpld_control_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_c192_prod +Checking test 078 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4283,12 +4294,12 @@ Checking test 077 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 077 cpld_control_c192 PASS +Test 078 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_restart_c192_prod -Checking test 078 cpld_restart_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_c192_prod +Checking test 079 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4336,12 +4347,12 @@ Checking test 078 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 078 cpld_restart_c192 PASS +Test 079 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_controlfrac_c192_prod -Checking test 079 cpld_controlfrac_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_c192_prod +Checking test 080 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4389,12 +4400,12 @@ Checking test 079 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 079 cpld_controlfrac_c192 PASS +Test 080 cpld_controlfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_restartfrac_c192_prod -Checking test 080 cpld_restartfrac_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_c192_prod +Checking test 081 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4442,12 +4453,12 @@ Checking test 080 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 080 cpld_restartfrac_c192 PASS +Test 081 cpld_restartfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_control_c384_prod -Checking test 081 cpld_control_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_c384_prod +Checking test 082 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4498,12 +4509,12 @@ Checking test 081 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 081 cpld_control_c384 PASS +Test 082 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_restart_c384_prod -Checking test 082 cpld_restart_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_c384_prod +Checking test 083 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4554,12 +4565,12 @@ Checking test 082 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 082 cpld_restart_c384 PASS +Test 083 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_controlfrac_c384_prod -Checking test 083 cpld_controlfrac_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_c384_prod +Checking test 084 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4610,12 +4621,12 @@ Checking test 083 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 083 cpld_controlfrac_c384 PASS +Test 084 cpld_controlfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_restartfrac_c384_prod -Checking test 084 cpld_restartfrac_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_c384_prod +Checking test 085 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4666,12 +4677,12 @@ Checking test 084 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 084 cpld_restartfrac_c384 PASS +Test 085 cpld_restartfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_bmark_prod -Checking test 085 cpld_bmark results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_bmark_prod +Checking test 086 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4722,12 +4733,12 @@ Checking test 085 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 085 cpld_bmark PASS +Test 086 cpld_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_restart_bmark_prod -Checking test 086 cpld_restart_bmark results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_bmark_prod +Checking test 087 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4778,12 +4789,12 @@ Checking test 086 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 086 cpld_restart_bmark PASS +Test 087 cpld_restart_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_bmarkfrac_prod -Checking test 087 cpld_bmarkfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_bmarkfrac_prod +Checking test 088 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4834,12 +4845,12 @@ Checking test 087 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 087 cpld_bmarkfrac PASS +Test 088 cpld_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_restart_bmarkfrac_prod -Checking test 088 cpld_restart_bmarkfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_bmarkfrac_prod +Checking test 089 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4890,12 +4901,12 @@ Checking test 088 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 088 cpld_restart_bmarkfrac PASS +Test 089 cpld_restart_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_debug_prod -Checking test 089 cpld_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_debug_prod +Checking test 090 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4943,12 +4954,12 @@ Checking test 089 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 089 cpld_debug PASS +Test 090 cpld_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_debugfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/cpld_debugfrac_prod -Checking test 090 cpld_debugfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_debugfrac_prod +Checking test 091 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4996,87 +5007,87 @@ Checking test 090 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 090 cpld_debugfrac PASS +Test 091 cpld_debugfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/datm_control_cfsr -Checking test 091 datm_control_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_control_cfsr +Checking test 092 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 091 datm_control_cfsr PASS +Test 092 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/datm_restart_cfsr -Checking test 092 datm_restart_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_restart_cfsr +Checking test 093 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 092 datm_restart_cfsr PASS +Test 093 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/datm_control_gefs -Checking test 093 datm_control_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_control_gefs +Checking test 094 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 093 datm_control_gefs PASS +Test 094 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/datm_bulk_cfsr -Checking test 094 datm_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_bulk_cfsr +Checking test 095 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 094 datm_bulk_cfsr PASS +Test 095 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/datm_bulk_gefs -Checking test 095 datm_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_bulk_gefs +Checking test 096 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 095 datm_bulk_gefs PASS +Test 096 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_mx025_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/datm_mx025_cfsr -Checking test 096 datm_mx025_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_mx025_cfsr +Checking test 097 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 096 datm_mx025_cfsr PASS +Test 097 datm_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/datm_mx025_gefs -Checking test 097 datm_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_mx025_gefs +Checking test 098 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 097 datm_mx025_gefs PASS +Test 098 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_21897/datm_debug_cfsr -Checking test 098 datm_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_debug_cfsr +Checking test 099 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 098 datm_debug_cfsr PASS +Test 099 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Feb 15 12:31:33 EST 2021 -Elapsed time: 02h:08m:59s. Have a nice day! +Wed Feb 17 20:13:13 EST 2021 +Elapsed time: 01h:42m:18s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 748327c146..50d1df6ef8 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Sat Feb 13 03:32:15 UTC 2021 +Wed Feb 17 20:45:37 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/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-20210212/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/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-20210212/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -198,8 +198,8 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -248,8 +248,8 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -316,8 +316,8 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,8 +384,8 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/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-20210212/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -520,8 +520,8 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/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-20210212/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/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-20210212/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/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-20210212/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/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-20210212/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/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-20210212/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/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-20210212/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -964,8 +964,8 @@ Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1026,8 +1026,8 @@ Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1056,8 +1056,8 @@ Checking test 017 fv3_ccpp_control_debug results .... Test 017 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,8 +1124,8 @@ Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1192,8 +1192,8 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1260,8 +1260,8 @@ Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,8 +1328,8 @@ Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,9 +1402,292 @@ Checking test 022 fv3_ccpp_multigases results .... Test 022 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 023 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_regional_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_regional_control_debug_prod +Checking test 023 fv3_ccpp_regional_control_debug 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 023 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 024 fv3_ccpp_rrfs_v1beta_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + 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 024 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gsd_debug_prod +Checking test 025 fv3_ccpp_gsd_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + 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 025 fv3_ccpp_gsd_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_debug_prod +Checking test 026 fv3_ccpp_thompson_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 ............SKIP for gnu compilers + 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 026 fv3_ccpp_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 027 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 + 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 ............SKIP for gnu compilers + 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 027 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 028 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 @@ -1467,12 +1750,12 @@ Checking test 023 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 023 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 024 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -1485,12 +1768,12 @@ Checking test 024 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 024 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_191545/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 025 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1547,9 +1830,9 @@ Checking test 025 fv3_ccpp_gfsv16_ugwpv1_debug 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_gfsv16_ugwpv1_debug PASS +Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sat Feb 13 04:02:26 UTC 2021 -Elapsed time: 00h:30m:12s. Have a nice day! +Wed Feb 17 21:14:47 UTC 2021 +Elapsed time: 00h:29m:11s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 0e3234170d..5cdfec543e 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Sat Feb 13 04:42:55 UTC 2021 +Thu Feb 18 02:57:16 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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-20210212/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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-20210212/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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-20210212/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -324,8 +324,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-20210212/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -372,8 +372,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-20210212/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -420,8 +420,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-20210212/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -429,7 +429,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 @@ -468,8 +468,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-20210212/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -516,8 +516,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-20210212/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -564,8 +564,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-20210212/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -612,8 +612,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-20210212/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -1030,8 +1030,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-20210212/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -1079,8 +1079,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-20210212/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1153,8 +1153,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -1221,8 +1221,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-20210212/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1277,8 +1277,8 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -1344,8 +1344,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-20210212/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1355,8 +1355,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-20210212/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1364,8 +1364,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-20210212/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1375,8 +1375,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-20210212/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -1386,59 +1386,9 @@ 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-20210212/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/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 - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.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 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 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 -Test 028 fv3_ccpp_control_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 029 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfdlmp_prod -Checking test 030 fv3_ccpp_gfdlmp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmp_prod +Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1481,12 +1431,12 @@ Checking test 030 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 030 fv3_ccpp_gfdlmp PASS +Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1529,12 +1479,12 @@ Checking test 031 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 031 fv3_ccpp_gfdlmprad_gwd PASS +Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1577,12 +1527,12 @@ Checking test 032 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 032 fv3_ccpp_gfdlmprad_noahmp PASS +Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_csawmg_prod -Checking test 033 fv3_ccpp_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_csawmg_prod +Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1625,12 +1575,12 @@ Checking test 033 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 033 fv3_ccpp_csawmg PASS +Test 031 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_satmedmf_prod -Checking test 034 fv3_ccpp_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_satmedmf_prod +Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1673,12 +1623,12 @@ Checking test 034 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 034 fv3_ccpp_satmedmf PASS +Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_satmedmfq_prod -Checking test 035 fv3_ccpp_satmedmfq results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_satmedmfq_prod +Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1721,12 +1671,12 @@ Checking test 035 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 035 fv3_ccpp_satmedmfq PASS +Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfdlmp_32bit_prod -Checking test 036 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmp_32bit_prod +Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1769,12 +1719,12 @@ Checking test 036 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 036 fv3_ccpp_gfdlmp_32bit PASS +Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1821,12 +1771,12 @@ Checking test 037 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 037 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_cpt_prod -Checking test 038 fv3_ccpp_cpt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_cpt_prod +Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1875,12 +1825,12 @@ Checking test 038 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 038 fv3_ccpp_cpt PASS +Test 036 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gsd_prod -Checking test 039 fv3_ccpp_gsd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_prod +Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1967,12 +1917,12 @@ Checking test 039 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 039 fv3_ccpp_gsd PASS +Test 037 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_rap_prod -Checking test 040 fv3_ccpp_rap results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rap_prod +Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2035,12 +1985,12 @@ Checking test 040 fv3_ccpp_rap 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_rap PASS +Test 038 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_hrrr_prod -Checking test 041 fv3_ccpp_hrrr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_hrrr_prod +Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2103,12 +2053,12 @@ Checking test 041 fv3_ccpp_hrrr 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_hrrr PASS +Test 039 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_thompson_prod -Checking test 042 fv3_ccpp_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_prod +Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2171,12 +2121,12 @@ Checking test 042 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 042 fv3_ccpp_thompson PASS +Test 040 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_thompson_no_aero_prod -Checking test 043 fv3_ccpp_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_no_aero_prod +Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2239,12 +2189,12 @@ Checking test 043 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 043 fv3_ccpp_thompson_no_aero PASS +Test 041 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_rrfs_v1beta_prod -Checking test 044 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rrfs_v1beta_prod +Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2307,12 +2257,12 @@ Checking test 044 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 044 fv3_ccpp_rrfs_v1beta PASS +Test 042 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v15p2_prod -Checking test 045 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_prod +Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2375,12 +2325,12 @@ Checking test 045 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 045 fv3_ccpp_gfs_v15p2 PASS +Test 043 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v16_prod -Checking test 046 fv3_ccpp_gfs_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_prod +Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2455,12 +2405,12 @@ Checking test 046 fv3_ccpp_gfs_v16 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_v16 PASS +Test 044 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v16_restart_prod -Checking test 047 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_restart_prod +Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2505,12 +2455,12 @@ Checking test 047 fv3_ccpp_gfs_v16_restart 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_v16_restart PASS +Test 045 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v16_stochy_prod -Checking test 048 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_stochy_prod +Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2573,12 +2523,12 @@ Checking test 048 fv3_ccpp_gfs_v16_stochy 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_gfs_v16_stochy PASS +Test 046 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2641,12 +2591,12 @@ Checking test 049 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 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2709,12 +2659,12 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP 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_gfs_v16_RRTMGP PASS +Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2771,12 +2721,12 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfsv16_csawmg_prod -Checking test 052 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -2819,12 +2769,12 @@ Checking test 052 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 052 fv3_ccpp_gfsv16_csawmg PASS +Test 050 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -2867,12 +2817,12 @@ Checking test 053 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 053 fv3_ccpp_gfsv16_csawmgt PASS +Test 051 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gocart_clm_prod -Checking test 054 fv3_ccpp_gocart_clm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -2915,12 +2865,12 @@ Checking test 054 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 054 fv3_ccpp_gocart_clm PASS +Test 052 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v16_flake_prod -Checking test 055 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_flake_prod +Checking test 053 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2983,12 +2933,12 @@ Checking test 055 fv3_ccpp_gfs_v16_flake 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_gfs_v16_flake PASS +Test 053 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -3051,12 +3001,12 @@ Checking test 056 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 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -3069,12 +3019,12 @@ Checking test 057 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 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3131,12 +3081,12 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1 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_gfsv16_ugwpv1 PASS +Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3193,12 +3143,12 @@ Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3261,12 +3211,12 @@ Checking test 060 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 060 fv3_ccpp_gfs_v15p2_debug PASS +Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v16_debug_prod -Checking test 061 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_debug_prod +Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3329,12 +3279,12 @@ Checking test 061 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_gfs_v16_debug PASS +Test 059 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3397,12 +3347,12 @@ Checking test 062 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 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 063 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3465,12 +3415,73 @@ Checking test 063 fv3_ccpp_gfs_v16_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 063 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_control_debug_prod +Checking test 062 fv3_ccpp_regional_control_debug 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 062 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_control_debug_prod +Checking test 063 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 063 fv3_ccpp_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stretched_nest_debug_prod +Checking test 064 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 064 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gsd_debug_prod -Checking test 064 fv3_ccpp_gsd_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_debug_prod +Checking test 065 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3533,12 +3544,12 @@ Checking test 064 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 064 fv3_ccpp_gsd_debug PASS +Test 065 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3601,12 +3612,12 @@ Checking test 065 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 065 fv3_ccpp_gsd_diag3d_debug PASS +Test 066 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_thompson_debug_prod -Checking test 066 fv3_ccpp_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_debug_prod +Checking test 067 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3669,12 +3680,12 @@ Checking test 066 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 066 fv3_ccpp_thompson_debug PASS +Test 067 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 068 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 @@ -3737,12 +3748,12 @@ Checking test 067 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 067 fv3_ccpp_thompson_no_aero_debug PASS +Test 068 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3805,12 +3816,12 @@ Checking test 068 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 068 fv3_ccpp_rrfs_v1beta_debug PASS +Test 069 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 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 @@ -3873,12 +3884,12 @@ Checking test 069 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 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3891,12 +3902,12 @@ Checking test 070 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 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3953,12 +3964,12 @@ Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_control_prod -Checking test 072 cpld_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_prod +Checking test 073 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4006,12 +4017,12 @@ Checking test 072 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 072 cpld_control PASS +Test 073 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restart_prod -Checking test 073 cpld_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_prod +Checking test 074 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4059,12 +4070,12 @@ Checking test 073 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 073 cpld_restart PASS +Test 074 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_controlfrac_prod -Checking test 074 cpld_controlfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_prod +Checking test 075 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4112,12 +4123,12 @@ Checking test 074 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 074 cpld_controlfrac PASS +Test 075 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restartfrac_prod -Checking test 075 cpld_restartfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_prod +Checking test 076 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4165,12 +4176,12 @@ Checking test 075 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 075 cpld_restartfrac PASS +Test 076 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_2threads_prod -Checking test 076 cpld_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_2threads_prod +Checking test 077 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4218,12 +4229,12 @@ Checking test 076 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 076 cpld_2threads PASS +Test 077 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_decomp_prod -Checking test 077 cpld_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_decomp_prod +Checking test 078 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4271,12 +4282,12 @@ Checking test 077 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 077 cpld_decomp PASS +Test 078 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_satmedmf_prod -Checking test 078 cpld_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_satmedmf_prod +Checking test 079 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4324,12 +4335,12 @@ Checking test 078 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 078 cpld_satmedmf PASS +Test 079 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_ca_prod -Checking test 079 cpld_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_ca_prod +Checking test 080 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4377,12 +4388,12 @@ Checking test 079 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 079 cpld_ca PASS +Test 080 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_control_c192_prod -Checking test 080 cpld_control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_c192_prod +Checking test 081 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4430,12 +4441,12 @@ Checking test 080 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 080 cpld_control_c192 PASS +Test 081 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restart_c192_prod -Checking test 081 cpld_restart_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_c192_prod +Checking test 082 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4483,12 +4494,12 @@ Checking test 081 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 081 cpld_restart_c192 PASS +Test 082 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_controlfrac_c192_prod -Checking test 082 cpld_controlfrac_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_c192_prod +Checking test 083 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4536,12 +4547,12 @@ Checking test 082 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 082 cpld_controlfrac_c192 PASS +Test 083 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restartfrac_c192_prod -Checking test 083 cpld_restartfrac_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_c192_prod +Checking test 084 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4589,12 +4600,12 @@ Checking test 083 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 083 cpld_restartfrac_c192 PASS +Test 084 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_control_c384_prod -Checking test 084 cpld_control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_c384_prod +Checking test 085 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4645,12 +4656,12 @@ Checking test 084 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 084 cpld_control_c384 PASS +Test 085 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restart_c384_prod -Checking test 085 cpld_restart_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_c384_prod +Checking test 086 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4701,12 +4712,12 @@ Checking test 085 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 085 cpld_restart_c384 PASS +Test 086 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_controlfrac_c384_prod -Checking test 086 cpld_controlfrac_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_c384_prod +Checking test 087 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4757,12 +4768,12 @@ Checking test 086 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 086 cpld_controlfrac_c384 PASS +Test 087 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restartfrac_c384_prod -Checking test 087 cpld_restartfrac_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_c384_prod +Checking test 088 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4813,12 +4824,12 @@ Checking test 087 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 087 cpld_restartfrac_c384 PASS +Test 088 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_bmark_prod -Checking test 088 cpld_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmark_prod +Checking test 089 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4869,12 +4880,12 @@ Checking test 088 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 088 cpld_bmark PASS +Test 089 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restart_bmark_prod -Checking test 089 cpld_restart_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmark_prod +Checking test 090 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4925,12 +4936,12 @@ Checking test 089 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 089 cpld_restart_bmark PASS +Test 090 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_bmarkfrac_prod -Checking test 090 cpld_bmarkfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_prod +Checking test 091 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4981,12 +4992,12 @@ Checking test 090 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 090 cpld_bmarkfrac PASS +Test 091 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restart_bmarkfrac_prod -Checking test 091 cpld_restart_bmarkfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmarkfrac_prod +Checking test 092 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5037,12 +5048,12 @@ Checking test 091 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 091 cpld_restart_bmarkfrac PASS +Test 092 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_bmarkfrac_v16_prod -Checking test 092 cpld_bmarkfrac_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_v16_prod +Checking test 093 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5093,12 +5104,12 @@ Checking test 092 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 092 cpld_bmarkfrac_v16 PASS +Test 093 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_restart_bmarkfrac_v16_prod -Checking test 093 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmarkfrac_v16_prod +Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5149,12 +5160,12 @@ Checking test 093 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 093 cpld_restart_bmarkfrac_v16 PASS +Test 094 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_bmark_wave_prod -Checking test 094 cpld_bmark_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmark_wave_prod +Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5208,12 +5219,12 @@ Checking test 094 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 094 cpld_bmark_wave PASS +Test 095 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_bmarkfrac_wave_prod -Checking test 095 cpld_bmarkfrac_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_wave_prod +Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5267,12 +5278,12 @@ Checking test 095 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 095 cpld_bmarkfrac_wave PASS +Test 096 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_bmarkfrac_wave_v16_prod -Checking test 096 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_wave_v16_prod +Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5326,12 +5337,12 @@ Checking test 096 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 096 cpld_bmarkfrac_wave_v16 PASS +Test 097 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_control_wave_prod -Checking test 097 cpld_control_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_wave_prod +Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5382,12 +5393,12 @@ Checking test 097 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 097 cpld_control_wave PASS +Test 098 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_debug_prod -Checking test 098 cpld_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_debug_prod +Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5435,12 +5446,12 @@ Checking test 098 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 098 cpld_debug PASS +Test 099 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/cpld_debugfrac_prod -Checking test 099 cpld_debugfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_debugfrac_prod +Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5488,87 +5499,87 @@ Checking test 099 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 099 cpld_debugfrac PASS +Test 100 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/datm_control_cfsr -Checking test 100 datm_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_control_cfsr +Checking test 101 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 100 datm_control_cfsr PASS +Test 101 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/datm_restart_cfsr -Checking test 101 datm_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_restart_cfsr +Checking test 102 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 101 datm_restart_cfsr PASS +Test 102 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/datm_control_gefs -Checking test 102 datm_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_control_gefs +Checking test 103 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 102 datm_control_gefs PASS +Test 103 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/datm_bulk_cfsr -Checking test 103 datm_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_bulk_cfsr +Checking test 104 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 103 datm_bulk_cfsr PASS +Test 104 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/datm_bulk_gefs -Checking test 104 datm_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_bulk_gefs +Checking test 105 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 104 datm_bulk_gefs PASS +Test 105 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/datm_mx025_cfsr -Checking test 105 datm_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_mx025_cfsr +Checking test 106 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 105 datm_mx025_cfsr PASS +Test 106 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/datm_mx025_gefs -Checking test 106 datm_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_mx025_gefs +Checking test 107 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 106 datm_mx025_gefs PASS +Test 107 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_243096/datm_debug_cfsr -Checking test 107 datm_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_debug_cfsr +Checking test 108 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 107 datm_debug_cfsr PASS +Test 108 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sat Feb 13 06:10:19 UTC 2021 -Elapsed time: 01h:27m:25s. Have a nice day! +Thu Feb 18 04:38:47 UTC 2021 +Elapsed time: 01h:41m:32s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 499d7c7ecc..178216a8c5 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Tue Feb 16 02:56:45 GMT 2021 +Wed Feb 17 22:55:09 GMT 2021 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_2threads_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_2threads_prod Checking test 002 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -138,8 +138,8 @@ Checking test 002 fv3_ccpp_2threads results .... Test 002 fv3_ccpp_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_restart_prod Checking test 003 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -188,8 +188,8 @@ Checking test 003 fv3_ccpp_restart results .... Test 003 fv3_ccpp_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_read_inc_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_read_inc_prod Checking test 004 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -256,8 +256,8 @@ Checking test 004 fv3_ccpp_read_inc results .... Test 004 fv3_ccpp_read_inc PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -304,8 +304,8 @@ Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Test 005 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -352,8 +352,8 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Test 006 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -400,8 +400,8 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 007 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -448,8 +448,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -496,8 +496,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -544,8 +544,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_stochy_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -612,8 +612,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_ca_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_ca_prod Checking test 012 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 012 fv3_ccpp_ca results .... Test 012 fv3_ccpp_ca PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_lndp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_lndp_prod Checking test 013 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_lndp results .... Test 013 fv3_ccpp_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_iau_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_iau_prod Checking test 014 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_iau results .... Test 014 fv3_ccpp_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_lheatstrg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -864,8 +864,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_multigases_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_control_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_stretched_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1062,8 +1062,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_stretched_nest_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1129,8 +1129,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_regional_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1140,8 +1140,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_regional_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1149,8 +1149,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_regional_quilt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1160,8 +1160,8 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1171,59 +1171,9 @@ Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_control_debug_prod -Checking test 024 fv3_ccpp_control_debug results .... - 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 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 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 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 -Test 024 fv3_ccpp_control_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_stretched_nest_debug_prod -Checking test 025 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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfdlmp_prod -Checking test 026 fv3_ccpp_gfdlmp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmp_prod +Checking test 024 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1266,12 +1216,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 024 fv3_ccpp_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1314,12 +1264,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 025 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1362,12 +1312,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 026 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_csawmg_prod -Checking test 029 fv3_ccpp_csawmg results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_csawmg_prod +Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1410,12 +1360,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 027 fv3_ccpp_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_satmedmf_prod -Checking test 030 fv3_ccpp_satmedmf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_satmedmf_prod +Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1458,12 +1408,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 028 fv3_ccpp_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_satmedmfq_prod -Checking test 031 fv3_ccpp_satmedmfq results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_satmedmfq_prod +Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1506,12 +1456,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 029 fv3_ccpp_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfdlmp_32bit_prod -Checking test 032 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmp_32bit_prod +Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1554,12 +1504,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 030 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1606,12 +1556,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 031 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_cpt_prod -Checking test 034 fv3_ccpp_cpt results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_cpt_prod +Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1660,12 +1610,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 032 fv3_ccpp_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gsd_prod -Checking test 035 fv3_ccpp_gsd results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gsd_prod +Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1752,12 +1702,12 @@ 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 033 fv3_ccpp_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_thompson_prod -Checking test 036 fv3_ccpp_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_prod +Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1820,12 +1770,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 034 fv3_ccpp_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_thompson_no_aero_prod -Checking test 037 fv3_ccpp_thompson_no_aero results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_no_aero_prod +Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1888,12 +1838,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 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v15p2_prod -Checking test 038 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_prod +Checking test 036 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1956,12 +1906,12 @@ Checking test 038 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 038 fv3_ccpp_gfs_v15p2 PASS +Test 036 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v16_prod -Checking test 039 fv3_ccpp_gfs_v16 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_prod +Checking test 037 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2036,12 +1986,12 @@ Checking test 039 fv3_ccpp_gfs_v16 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_v16 PASS +Test 037 fv3_ccpp_gfs_v16 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v16_restart_prod -Checking test 040 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_restart_prod +Checking test 038 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2086,12 +2036,12 @@ Checking test 040 fv3_ccpp_gfs_v16_restart 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_v16_restart PASS +Test 038 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v16_stochy_prod -Checking test 041 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_stochy_prod +Checking test 039 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2154,12 +2104,12 @@ Checking test 041 fv3_ccpp_gfs_v16_stochy 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_v16_stochy PASS +Test 039 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 042 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 040 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2222,12 +2172,12 @@ Checking test 042 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 042 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 040 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 043 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 041 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2290,12 +2240,12 @@ Checking test 043 fv3_ccpp_gfs_v16_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_v16_RRTMGP PASS +Test 041 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2352,12 +2302,12 @@ Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 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_v16_RRTMGP_c192L127 PASS +Test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfsv16_csawmg_prod -Checking test 045 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_csawmg_prod +Checking test 043 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2400,12 +2350,12 @@ Checking test 045 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 045 fv3_ccpp_gfsv16_csawmg PASS +Test 043 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 044 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2448,12 +2398,12 @@ Checking test 046 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 046 fv3_ccpp_gfsv16_csawmgt PASS +Test 044 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gocart_clm_prod -Checking test 047 fv3_ccpp_gocart_clm results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gocart_clm_prod +Checking test 045 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2496,12 +2446,12 @@ Checking test 047 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 047 fv3_ccpp_gocart_clm PASS +Test 045 fv3_ccpp_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v16_flake_prod -Checking test 048 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_flake_prod +Checking test 046 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2564,12 +2514,12 @@ Checking test 048 fv3_ccpp_gfs_v16_flake 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_gfs_v16_flake PASS +Test 046 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 047 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 @@ -2632,12 +2582,12 @@ Checking test 049 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 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2650,12 +2600,12 @@ Checking test 050 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 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 049 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2712,12 +2662,12 @@ Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfsv16_ugwpv1 PASS +Test 049 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2774,12 +2724,12 @@ Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -2842,12 +2792,12 @@ Checking test 053 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 053 fv3_ccpp_gfs_v15p2_debug PASS +Test 051 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v16_debug_prod -Checking test 054 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_debug_prod +Checking test 052 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2910,12 +2860,12 @@ Checking test 054 fv3_ccpp_gfs_v16_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_v16_debug PASS +Test 052 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -2978,12 +2928,12 @@ Checking test 055 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 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 056 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3046,12 +2996,73 @@ Checking test 056 fv3_ccpp_gfs_v16_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 056 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 054 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_control_debug_prod +Checking test 055 fv3_ccpp_regional_control_debug 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 055 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_control_debug_prod +Checking test 056 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 056 fv3_ccpp_control_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_nest_debug_prod +Checking test 057 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 057 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gsd_debug_prod -Checking test 057 fv3_ccpp_gsd_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -3114,12 +3125,12 @@ Checking test 057 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 057 fv3_ccpp_gsd_debug PASS +Test 058 fv3_ccpp_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 058 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -3182,12 +3193,12 @@ Checking test 058 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 058 fv3_ccpp_gsd_diag3d_debug PASS +Test 059 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_thompson_debug_prod -Checking test 059 fv3_ccpp_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -3250,12 +3261,12 @@ Checking test 059 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 059 fv3_ccpp_thompson_debug PASS +Test 060 fv3_ccpp_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 060 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -3318,12 +3329,12 @@ Checking test 060 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 060 fv3_ccpp_thompson_no_aero_debug PASS +Test 061 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 061 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -3386,12 +3397,12 @@ Checking test 061 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 061 fv3_ccpp_rrfs_v1beta_debug PASS +Test 062 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -3454,12 +3465,12 @@ Checking test 062 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 062 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -3472,12 +3483,12 @@ Checking test 063 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 063 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_69843/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 064 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 065 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3534,9 +3545,9 @@ Checking test 064 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 064 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 065 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 16 05:09:35 GMT 2021 -Elapsed time: 02h:12m:50s. Have a nice day! +Thu Feb 18 00:55:53 GMT 2021 +Elapsed time: 02h:00m:45s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 2d0fca4b00..b150da682d 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Fri Feb 12 21:49:05 CST 2021 +Thu Feb 18 10:57:36 CST 2021 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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-20210212/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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-20210212/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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-20210212/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -324,8 +324,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-20210212/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -372,8 +372,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-20210212/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -420,8 +420,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-20210212/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -432,7 +432,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing phyf000.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 @@ -468,8 +468,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-20210212/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -516,8 +516,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-20210212/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -564,8 +564,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-20210212/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -612,8 +612,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-20210212/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_lndp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_lheatstrg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -1030,8 +1030,8 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -1079,8 +1079,8 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1153,8 +1153,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -1221,8 +1221,8 @@ Checking test 021 fv3_ccpp_control_32bit results .... Test 021 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1277,8 +1277,8 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -1344,8 +1344,8 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Test 023 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1355,8 +1355,8 @@ Checking test 024 fv3_ccpp_regional_control results .... Test 024 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1364,8 +1364,8 @@ Checking test 025 fv3_ccpp_regional_restart results .... Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1375,8 +1375,8 @@ Checking test 026 fv3_ccpp_regional_quilt results .... Test 026 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -1386,59 +1386,9 @@ Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/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 - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.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 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 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 -Test 028 fv3_ccpp_control_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 029 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfdlmp_prod -Checking test 030 fv3_ccpp_gfdlmp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmp_prod +Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1481,12 +1431,12 @@ Checking test 030 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 030 fv3_ccpp_gfdlmp PASS +Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 031 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1529,12 +1479,12 @@ Checking test 031 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 031 fv3_ccpp_gfdlmprad_gwd PASS +Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 032 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1577,12 +1527,12 @@ Checking test 032 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 032 fv3_ccpp_gfdlmprad_noahmp PASS +Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_csawmg_prod -Checking test 033 fv3_ccpp_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_csawmg_prod +Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1625,12 +1575,12 @@ Checking test 033 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 033 fv3_ccpp_csawmg PASS +Test 031 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_satmedmf_prod -Checking test 034 fv3_ccpp_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_satmedmf_prod +Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1673,12 +1623,12 @@ Checking test 034 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 034 fv3_ccpp_satmedmf PASS +Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_satmedmfq_prod -Checking test 035 fv3_ccpp_satmedmfq results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_satmedmfq_prod +Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1721,12 +1671,12 @@ Checking test 035 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 035 fv3_ccpp_satmedmfq PASS +Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfdlmp_32bit_prod -Checking test 036 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmp_32bit_prod +Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1769,12 +1719,12 @@ Checking test 036 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 036 fv3_ccpp_gfdlmp_32bit PASS +Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1821,12 +1771,12 @@ Checking test 037 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 037 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_cpt_prod -Checking test 038 fv3_ccpp_cpt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_cpt_prod +Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1875,12 +1825,12 @@ Checking test 038 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 038 fv3_ccpp_cpt PASS +Test 036 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gsd_prod -Checking test 039 fv3_ccpp_gsd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_prod +Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1967,12 +1917,12 @@ Checking test 039 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 039 fv3_ccpp_gsd PASS +Test 037 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_rap_prod -Checking test 040 fv3_ccpp_rap results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rap_prod +Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2035,12 +1985,12 @@ Checking test 040 fv3_ccpp_rap 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_rap PASS +Test 038 fv3_ccpp_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_hrrr_prod -Checking test 041 fv3_ccpp_hrrr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_hrrr_prod +Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2103,12 +2053,12 @@ Checking test 041 fv3_ccpp_hrrr 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_hrrr PASS +Test 039 fv3_ccpp_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_thompson_prod -Checking test 042 fv3_ccpp_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_prod +Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2171,12 +2121,12 @@ Checking test 042 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 042 fv3_ccpp_thompson PASS +Test 040 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_thompson_no_aero_prod -Checking test 043 fv3_ccpp_thompson_no_aero results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_no_aero_prod +Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2239,12 +2189,12 @@ Checking test 043 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 043 fv3_ccpp_thompson_no_aero PASS +Test 041 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_rrfs_v1beta_prod -Checking test 044 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rrfs_v1beta_prod +Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2307,12 +2257,12 @@ Checking test 044 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 044 fv3_ccpp_rrfs_v1beta PASS +Test 042 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v15p2_prod -Checking test 045 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_prod +Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2375,12 +2325,12 @@ Checking test 045 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 045 fv3_ccpp_gfs_v15p2 PASS +Test 043 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v16_prod -Checking test 046 fv3_ccpp_gfs_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_prod +Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2455,12 +2405,12 @@ Checking test 046 fv3_ccpp_gfs_v16 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_v16 PASS +Test 044 fv3_ccpp_gfs_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v16_restart_prod -Checking test 047 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_restart_prod +Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2505,12 +2455,12 @@ Checking test 047 fv3_ccpp_gfs_v16_restart 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_v16_restart PASS +Test 045 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v16_stochy_prod -Checking test 048 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_stochy_prod +Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2573,12 +2523,12 @@ Checking test 048 fv3_ccpp_gfs_v16_stochy 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_gfs_v16_stochy PASS +Test 046 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2641,12 +2591,12 @@ Checking test 049 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 049 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 050 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2709,12 +2659,12 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP 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_gfs_v16_RRTMGP PASS +Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2771,12 +2721,12 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfsv16_csawmg_prod -Checking test 052 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -2819,12 +2769,12 @@ Checking test 052 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 052 fv3_ccpp_gfsv16_csawmg PASS +Test 050 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -2867,12 +2817,12 @@ Checking test 053 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 053 fv3_ccpp_gfsv16_csawmgt PASS +Test 051 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gocart_clm_prod -Checking test 054 fv3_ccpp_gocart_clm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -2915,12 +2865,12 @@ Checking test 054 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 054 fv3_ccpp_gocart_clm PASS +Test 052 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v16_flake_prod -Checking test 055 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_flake_prod +Checking test 053 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2983,12 +2933,12 @@ Checking test 055 fv3_ccpp_gfs_v16_flake 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_gfs_v16_flake PASS +Test 053 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -3051,12 +3001,12 @@ Checking test 056 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 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -3069,12 +3019,12 @@ Checking test 057 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 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3131,12 +3081,12 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1 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_gfsv16_ugwpv1 PASS +Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3193,12 +3143,12 @@ Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3261,12 +3211,12 @@ Checking test 060 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 060 fv3_ccpp_gfs_v15p2_debug PASS +Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v16_debug_prod -Checking test 061 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_debug_prod +Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3329,12 +3279,12 @@ Checking test 061 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_gfs_v16_debug PASS +Test 059 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3397,12 +3347,12 @@ Checking test 062 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 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 063 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3465,12 +3415,73 @@ Checking test 063 fv3_ccpp_gfs_v16_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 063 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_control_debug_prod +Checking test 062 fv3_ccpp_regional_control_debug 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 062 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_control_debug_prod +Checking test 063 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 063 fv3_ccpp_control_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stretched_nest_debug_prod +Checking test 064 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 064 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gsd_debug_prod -Checking test 064 fv3_ccpp_gsd_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_debug_prod +Checking test 065 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3533,12 +3544,12 @@ Checking test 064 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 064 fv3_ccpp_gsd_debug PASS +Test 065 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3601,12 +3612,12 @@ Checking test 065 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 065 fv3_ccpp_gsd_diag3d_debug PASS +Test 066 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_thompson_debug_prod -Checking test 066 fv3_ccpp_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_debug_prod +Checking test 067 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3669,12 +3680,12 @@ Checking test 066 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 066 fv3_ccpp_thompson_debug PASS +Test 067 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 068 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 @@ -3737,12 +3748,12 @@ Checking test 067 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 067 fv3_ccpp_thompson_no_aero_debug PASS +Test 068 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3805,12 +3816,12 @@ Checking test 068 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 068 fv3_ccpp_rrfs_v1beta_debug PASS +Test 069 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 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 @@ -3873,12 +3884,12 @@ Checking test 069 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 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3891,12 +3902,12 @@ Checking test 070 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 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3953,12 +3964,12 @@ Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_control_prod -Checking test 072 cpld_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_prod +Checking test 073 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4006,12 +4017,12 @@ Checking test 072 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 072 cpld_control PASS +Test 073 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restart_prod -Checking test 073 cpld_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_prod +Checking test 074 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4059,12 +4070,12 @@ Checking test 073 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 073 cpld_restart PASS +Test 074 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_controlfrac_prod -Checking test 074 cpld_controlfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_prod +Checking test 075 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4112,12 +4123,12 @@ Checking test 074 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 074 cpld_controlfrac PASS +Test 075 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restartfrac_prod -Checking test 075 cpld_restartfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_prod +Checking test 076 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4165,12 +4176,12 @@ Checking test 075 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 075 cpld_restartfrac PASS +Test 076 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_2threads_prod -Checking test 076 cpld_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_2threads_prod +Checking test 077 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4218,12 +4229,12 @@ Checking test 076 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 076 cpld_2threads PASS +Test 077 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_decomp_prod -Checking test 077 cpld_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_decomp_prod +Checking test 078 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4271,12 +4282,12 @@ Checking test 077 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 077 cpld_decomp PASS +Test 078 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_satmedmf_prod -Checking test 078 cpld_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_satmedmf_prod +Checking test 079 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4324,12 +4335,12 @@ Checking test 078 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 078 cpld_satmedmf PASS +Test 079 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_ca_prod -Checking test 079 cpld_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_ca_prod +Checking test 080 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4377,12 +4388,12 @@ Checking test 079 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 079 cpld_ca PASS +Test 080 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_control_c192_prod -Checking test 080 cpld_control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_c192_prod +Checking test 081 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4430,12 +4441,12 @@ Checking test 080 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 080 cpld_control_c192 PASS +Test 081 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restart_c192_prod -Checking test 081 cpld_restart_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_c192_prod +Checking test 082 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4483,12 +4494,12 @@ Checking test 081 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 081 cpld_restart_c192 PASS +Test 082 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_controlfrac_c192_prod -Checking test 082 cpld_controlfrac_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_c192_prod +Checking test 083 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4536,12 +4547,12 @@ Checking test 082 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 082 cpld_controlfrac_c192 PASS +Test 083 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restartfrac_c192_prod -Checking test 083 cpld_restartfrac_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_c192_prod +Checking test 084 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4589,12 +4600,12 @@ Checking test 083 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 083 cpld_restartfrac_c192 PASS +Test 084 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_control_c384_prod -Checking test 084 cpld_control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_c384_prod +Checking test 085 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4645,12 +4656,12 @@ Checking test 084 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 084 cpld_control_c384 PASS +Test 085 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restart_c384_prod -Checking test 085 cpld_restart_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_c384_prod +Checking test 086 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4701,12 +4712,12 @@ Checking test 085 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 085 cpld_restart_c384 PASS +Test 086 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_controlfrac_c384_prod -Checking test 086 cpld_controlfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_c384_prod +Checking test 087 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4757,12 +4768,12 @@ Checking test 086 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 086 cpld_controlfrac_c384 PASS +Test 087 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restartfrac_c384_prod -Checking test 087 cpld_restartfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_c384_prod +Checking test 088 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4813,12 +4824,12 @@ Checking test 087 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 087 cpld_restartfrac_c384 PASS +Test 088 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_bmark_prod -Checking test 088 cpld_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmark_prod +Checking test 089 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4869,12 +4880,12 @@ Checking test 088 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 088 cpld_bmark PASS +Test 089 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restart_bmark_prod -Checking test 089 cpld_restart_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmark_prod +Checking test 090 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4925,12 +4936,12 @@ Checking test 089 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 089 cpld_restart_bmark PASS +Test 090 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_bmarkfrac_prod -Checking test 090 cpld_bmarkfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_prod +Checking test 091 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4981,12 +4992,12 @@ Checking test 090 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 090 cpld_bmarkfrac PASS +Test 091 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restart_bmarkfrac_prod -Checking test 091 cpld_restart_bmarkfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmarkfrac_prod +Checking test 092 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5037,12 +5048,12 @@ Checking test 091 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 091 cpld_restart_bmarkfrac PASS +Test 092 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_bmarkfrac_v16_prod -Checking test 092 cpld_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_v16_prod +Checking test 093 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5093,12 +5104,12 @@ Checking test 092 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 092 cpld_bmarkfrac_v16 PASS +Test 093 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_restart_bmarkfrac_v16_prod -Checking test 093 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmarkfrac_v16_prod +Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5149,12 +5160,12 @@ Checking test 093 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 093 cpld_restart_bmarkfrac_v16 PASS +Test 094 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_bmark_wave_prod -Checking test 094 cpld_bmark_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmark_wave_prod +Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5208,12 +5219,12 @@ Checking test 094 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 094 cpld_bmark_wave PASS +Test 095 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_bmarkfrac_wave_prod -Checking test 095 cpld_bmarkfrac_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_wave_prod +Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5267,12 +5278,12 @@ Checking test 095 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 095 cpld_bmarkfrac_wave PASS +Test 096 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_bmarkfrac_wave_v16_prod -Checking test 096 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_wave_v16_prod +Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5326,12 +5337,12 @@ Checking test 096 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 096 cpld_bmarkfrac_wave_v16 PASS +Test 097 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_control_wave_prod -Checking test 097 cpld_control_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_wave_prod +Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5382,12 +5393,12 @@ Checking test 097 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 097 cpld_control_wave PASS +Test 098 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_debug_prod -Checking test 098 cpld_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_debug_prod +Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5435,12 +5446,12 @@ Checking test 098 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 098 cpld_debug PASS +Test 099 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/cpld_debugfrac_prod -Checking test 099 cpld_debugfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_debugfrac_prod +Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5488,87 +5499,87 @@ Checking test 099 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 099 cpld_debugfrac PASS +Test 100 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/datm_control_cfsr -Checking test 100 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_control_cfsr +Checking test 101 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 100 datm_control_cfsr PASS +Test 101 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/datm_restart_cfsr -Checking test 101 datm_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_restart_cfsr +Checking test 102 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 101 datm_restart_cfsr PASS +Test 102 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/datm_control_gefs -Checking test 102 datm_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_control_gefs +Checking test 103 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 102 datm_control_gefs PASS +Test 103 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/datm_bulk_cfsr -Checking test 103 datm_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_bulk_cfsr +Checking test 104 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 103 datm_bulk_cfsr PASS +Test 104 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/datm_bulk_gefs -Checking test 104 datm_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_bulk_gefs +Checking test 105 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 104 datm_bulk_gefs PASS +Test 105 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/datm_mx025_cfsr -Checking test 105 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_mx025_cfsr +Checking test 106 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 105 datm_mx025_cfsr PASS +Test 106 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/datm_mx025_gefs -Checking test 106 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_mx025_gefs +Checking test 107 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 106 datm_mx025_gefs PASS +Test 107 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_261242/datm_debug_cfsr -Checking test 107 datm_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_debug_cfsr +Checking test 108 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 107 datm_debug_cfsr PASS +Test 108 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 12 23:13:38 CST 2021 -Elapsed time: 01h:24m:33s. Have a nice day! +Thu Feb 18 21:22:48 CST 2021 +Elapsed time: 10h:25m:12s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index bd5160d7d6..102d04a38d 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Sat Feb 13 21:26:36 UTC 2021 +Thu Feb 18 16:08:52 UTC 2021 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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-20210212/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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-20210212/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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-20210212/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210212/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 @@ -324,8 +324,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-20210212/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 @@ -372,8 +372,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-20210212/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 @@ -420,8 +420,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-20210212/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 @@ -468,8 +468,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-20210212/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 @@ -516,8 +516,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-20210212/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 @@ -564,8 +564,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-20210212/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 @@ -612,8 +612,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-20210212/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210212/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_ca_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ca_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_lndp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lndp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,8 +1228,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 @@ -1239,59 +1239,9 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/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 - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.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 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 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 -Test 025 fv3_ccpp_control_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - 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 - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfdlmp_prod -Checking test 027 fv3_ccpp_gfdlmp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmp_prod +Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1334,12 +1284,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 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1382,12 +1332,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 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1430,12 +1380,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 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_csawmg_prod -Checking test 030 fv3_ccpp_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_csawmg_prod +Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1478,12 +1428,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 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_satmedmf_prod -Checking test 031 fv3_ccpp_satmedmf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_satmedmf_prod +Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1526,12 +1476,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 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_satmedmfq_prod -Checking test 032 fv3_ccpp_satmedmfq results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_satmedmfq_prod +Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1574,12 +1524,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 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfdlmp_32bit_prod -Checking test 033 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmp_32bit_prod +Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1622,12 +1572,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 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1674,12 +1624,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 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_cpt_prod -Checking test 035 fv3_ccpp_cpt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_cpt_prod +Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1728,12 +1678,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 033 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gsd_prod -Checking test 036 fv3_ccpp_gsd results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gsd_prod +Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1820,12 +1770,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 034 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_rap_prod -Checking test 037 fv3_ccpp_rap results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rap_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_rap_prod +Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1888,12 +1838,12 @@ Checking test 037 fv3_ccpp_rap 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_rap PASS +Test 035 fv3_ccpp_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_hrrr_prod -Checking test 038 fv3_ccpp_hrrr results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_hrrr_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_hrrr_prod +Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1956,12 +1906,12 @@ Checking test 038 fv3_ccpp_hrrr 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_hrrr PASS +Test 036 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_thompson_prod -Checking test 039 fv3_ccpp_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 @@ -2024,12 +1974,12 @@ Checking test 039 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 039 fv3_ccpp_thompson PASS +Test 037 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_thompson_no_aero_prod -Checking test 040 fv3_ccpp_thompson_no_aero results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 @@ -2092,12 +2042,12 @@ Checking test 040 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 040 fv3_ccpp_thompson_no_aero PASS +Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_rrfs_v1beta_prod -Checking test 041 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_rrfs_v1beta_prod +Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2160,12 +2110,12 @@ Checking test 041 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 041 fv3_ccpp_rrfs_v1beta PASS +Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v15p2_prod -Checking test 042 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_prod +Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2228,12 +2178,12 @@ Checking test 042 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 042 fv3_ccpp_gfs_v15p2 PASS +Test 040 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v16_prod -Checking test 043 fv3_ccpp_gfs_v16 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_prod +Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2308,12 +2258,12 @@ Checking test 043 fv3_ccpp_gfs_v16 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_v16 PASS +Test 041 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v16_restart_prod -Checking test 044 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_restart_prod +Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2358,12 +2308,12 @@ Checking test 044 fv3_ccpp_gfs_v16_restart 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_v16_restart PASS +Test 042 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v16_stochy_prod -Checking test 045 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_stochy_prod +Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2426,12 +2376,12 @@ Checking test 045 fv3_ccpp_gfs_v16_stochy 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_v16_stochy PASS +Test 043 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2494,12 +2444,12 @@ Checking test 046 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 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2562,12 +2512,12 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP 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_v16_RRTMGP PASS +Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2624,12 +2574,12 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 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_gfs_v16_RRTMGP_c192L127 PASS +Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfsv16_csawmg_prod -Checking test 049 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_csawmg_prod +Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2672,12 +2622,12 @@ Checking test 049 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 049 fv3_ccpp_gfsv16_csawmg PASS +Test 047 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2720,12 +2670,12 @@ Checking test 050 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 050 fv3_ccpp_gfsv16_csawmgt PASS +Test 048 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gocart_clm_prod -Checking test 051 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2768,12 +2718,12 @@ Checking test 051 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 051 fv3_ccpp_gocart_clm PASS +Test 049 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v16_flake_prod -Checking test 052 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_flake_prod +Checking test 050 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2836,12 +2786,12 @@ Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfs_v16_flake PASS +Test 050 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2904,12 +2854,12 @@ Checking test 053 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 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing phyf012.nc .........OK @@ -2922,12 +2872,12 @@ Checking test 054 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 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2984,12 +2934,12 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1 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_gfsv16_ugwpv1 PASS +Test 053 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3046,12 +2996,12 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3114,12 +3064,12 @@ Checking test 057 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 057 fv3_ccpp_gfs_v15p2_debug PASS +Test 055 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v16_debug_prod -Checking test 058 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_debug_prod +Checking test 056 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3182,12 +3132,12 @@ Checking test 058 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS +Test 056 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3250,12 +3200,12 @@ Checking test 059 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 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3318,12 +3268,73 @@ Checking test 060 fv3_ccpp_gfs_v16_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 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_control_debug_prod +Checking test 059 fv3_ccpp_regional_control_debug 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 059 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_control_debug_prod +Checking test 060 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 060 fv3_ccpp_control_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stretched_nest_debug_prod +Checking test 061 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 061 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gsd_debug_prod -Checking test 061 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3386,12 +3397,12 @@ Checking test 061 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 061 fv3_ccpp_gsd_debug PASS +Test 062 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 062 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3454,12 +3465,12 @@ Checking test 062 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 062 fv3_ccpp_gsd_diag3d_debug PASS +Test 063 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_thompson_debug_prod -Checking test 063 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3522,12 +3533,12 @@ Checking test 063 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 063 fv3_ccpp_thompson_debug PASS +Test 064 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 064 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3590,12 +3601,12 @@ Checking test 064 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 064 fv3_ccpp_thompson_no_aero_debug PASS +Test 065 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 065 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3658,12 +3669,12 @@ Checking test 065 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 065 fv3_ccpp_rrfs_v1beta_debug PASS +Test 066 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3726,12 +3737,12 @@ Checking test 066 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 066 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing phyf001.nc .........OK @@ -3744,12 +3755,12 @@ Checking test 067 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 067 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_35664/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 068 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3806,9 +3817,9 @@ Checking test 068 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 068 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 069 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sat Feb 13 22:08:09 UTC 2021 -Elapsed time: 00h:41m:34s. Have a nice day! +Thu Feb 18 16:51:34 UTC 2021 +Elapsed time: 00h:42m:42s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index b662cd9d6c..4dafe6fe6b 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Sun Feb 14 01:18:17 UTC 2021 +Thu Feb 18 21:24:50 UTC 2021 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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-20210212/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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-20210212/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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-20210212/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210212/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -324,8 +324,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-20210212/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -372,8 +372,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-20210212/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -420,8 +420,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-20210212/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -430,9 +430,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 ............ALT CHECK......OK + Comparing phyf024.nc .........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 @@ -468,8 +468,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-20210212/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -516,8 +516,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-20210212/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -564,8 +564,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-20210212/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -612,8 +612,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-20210212/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210212/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ca_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_lndp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lndp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1030,8 +1030,8 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1104,8 +1104,8 @@ Checking test 019 fv3_ccpp_multigases results .... Test 019 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1172,8 +1172,8 @@ Checking test 020 fv3_ccpp_control_32bit results .... Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1228,8 +1228,8 @@ Checking test 021 fv3_ccpp_stretched results .... Test 021 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1295,8 +1295,8 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1306,8 +1306,8 @@ Checking test 023 fv3_ccpp_regional_control results .... Test 023 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 024 fv3_ccpp_regional_restart results .... Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1326,8 +1326,8 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1337,59 +1337,9 @@ Checking test 026 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 026 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/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 - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.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 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 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 -Test 027 fv3_ccpp_control_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 028 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfdlmp_prod -Checking test 029 fv3_ccpp_gfdlmp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1432,12 +1382,12 @@ Checking test 029 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 029 fv3_ccpp_gfdlmp PASS +Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1480,12 +1430,12 @@ Checking test 030 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 030 fv3_ccpp_gfdlmprad_gwd PASS +Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1528,12 +1478,12 @@ Checking test 031 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 031 fv3_ccpp_gfdlmprad_noahmp PASS +Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_csawmg_prod -Checking test 032 fv3_ccpp_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1576,12 +1526,12 @@ Checking test 032 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 032 fv3_ccpp_csawmg PASS +Test 030 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_satmedmf_prod -Checking test 033 fv3_ccpp_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1624,12 +1574,12 @@ Checking test 033 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 033 fv3_ccpp_satmedmf PASS +Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_satmedmfq_prod -Checking test 034 fv3_ccpp_satmedmfq results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1672,12 +1622,12 @@ Checking test 034 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 034 fv3_ccpp_satmedmfq PASS +Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfdlmp_32bit_prod -Checking test 035 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1720,12 +1670,12 @@ Checking test 035 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 035 fv3_ccpp_gfdlmp_32bit PASS +Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1772,12 +1722,12 @@ Checking test 036 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 036 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_cpt_prod -Checking test 037 fv3_ccpp_cpt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1826,12 +1776,12 @@ Checking test 037 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 037 fv3_ccpp_cpt PASS +Test 035 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gsd_prod -Checking test 038 fv3_ccpp_gsd results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1918,12 +1868,12 @@ Checking test 038 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 038 fv3_ccpp_gsd PASS +Test 036 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_rap_prod -Checking test 039 fv3_ccpp_rap results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rap_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1986,12 +1936,12 @@ Checking test 039 fv3_ccpp_rap 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_rap PASS +Test 037 fv3_ccpp_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_hrrr_prod -Checking test 040 fv3_ccpp_hrrr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_hrrr_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -2054,12 +2004,12 @@ Checking test 040 fv3_ccpp_hrrr 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_hrrr PASS +Test 038 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_thompson_prod -Checking test 041 fv3_ccpp_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -2122,12 +2072,12 @@ Checking test 041 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 041 fv3_ccpp_thompson PASS +Test 039 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_thompson_no_aero_prod -Checking test 042 fv3_ccpp_thompson_no_aero results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -2190,12 +2140,12 @@ Checking test 042 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 042 fv3_ccpp_thompson_no_aero PASS +Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_rrfs_v1beta_prod -Checking test 043 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -2258,12 +2208,12 @@ Checking test 043 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 043 fv3_ccpp_rrfs_v1beta PASS +Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v15p2_prod -Checking test 044 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -2326,12 +2276,12 @@ Checking test 044 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 044 fv3_ccpp_gfs_v15p2 PASS +Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v16_prod -Checking test 045 fv3_ccpp_gfs_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_prod +Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2406,12 +2356,12 @@ Checking test 045 fv3_ccpp_gfs_v16 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_v16 PASS +Test 043 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v16_restart_prod -Checking test 046 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_restart_prod +Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2456,12 +2406,12 @@ Checking test 046 fv3_ccpp_gfs_v16_restart 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_v16_restart PASS +Test 044 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v16_stochy_prod -Checking test 047 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_stochy_prod +Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2524,12 +2474,12 @@ Checking test 047 fv3_ccpp_gfs_v16_stochy 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_v16_stochy PASS +Test 045 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -2592,12 +2542,12 @@ Checking test 048 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 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2660,12 +2610,12 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP 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_v16_RRTMGP PASS +Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 Comparing phyf000.tile3.nc .........OK @@ -2722,12 +2672,12 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 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_gfs_v16_RRTMGP_c192L127 PASS +Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfsv16_csawmg_prod -Checking test 051 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2770,12 +2720,12 @@ Checking test 051 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 051 fv3_ccpp_gfsv16_csawmg PASS +Test 049 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2818,12 +2768,12 @@ Checking test 052 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 052 fv3_ccpp_gfsv16_csawmgt PASS +Test 050 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gocart_clm_prod -Checking test 053 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2866,12 +2816,12 @@ Checking test 053 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 053 fv3_ccpp_gocart_clm PASS +Test 051 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v16_flake_prod -Checking test 054 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_flake_prod +Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2934,12 +2884,12 @@ Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gfs_v16_flake PASS +Test 052 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3002,12 +2952,12 @@ Checking test 055 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 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 Comparing phyf012.nc .........OK @@ -3020,12 +2970,12 @@ Checking test 056 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 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3082,12 +3032,12 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1 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_gfsv16_ugwpv1 PASS +Test 055 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3144,12 +3094,12 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart 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_gfsv16_ugwpv1_warmstart PASS +Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -3212,12 +3162,12 @@ Checking test 059 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 059 fv3_ccpp_gfs_v15p2_debug PASS +Test 057 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v16_debug_prod -Checking test 060 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_debug_prod +Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3280,12 +3230,12 @@ Checking test 060 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS +Test 058 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -3348,12 +3298,12 @@ Checking test 061 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 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3416,12 +3366,73 @@ Checking test 062 fv3_ccpp_gfs_v16_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 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_control_debug_prod +Checking test 061 fv3_ccpp_regional_control_debug 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 061 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_control_debug_prod +Checking test 062 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 062 fv3_ccpp_control_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stretched_nest_debug_prod +Checking test 063 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 063 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gsd_debug_prod -Checking test 063 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gsd_debug_prod +Checking test 064 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3484,12 +3495,12 @@ Checking test 063 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 063 fv3_ccpp_gsd_debug PASS +Test 064 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 064 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3552,12 +3563,12 @@ Checking test 064 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 064 fv3_ccpp_gsd_diag3d_debug PASS +Test 065 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_thompson_debug_prod -Checking test 065 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_debug_prod +Checking test 066 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3620,12 +3631,12 @@ Checking test 065 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 065 fv3_ccpp_thompson_debug PASS +Test 066 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 066 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 067 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 @@ -3688,12 +3699,12 @@ Checking test 066 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 066 fv3_ccpp_thompson_no_aero_debug PASS +Test 067 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 067 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3756,12 +3767,12 @@ Checking test 067 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 067 fv3_ccpp_rrfs_v1beta_debug PASS +Test 068 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 069 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 @@ -3824,12 +3835,12 @@ Checking test 068 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 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3842,12 +3853,12 @@ Checking test 069 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 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 070 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3904,12 +3915,12 @@ Checking test 070 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 070 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_control_prod -Checking test 071 cpld_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_prod +Checking test 072 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3957,12 +3968,12 @@ Checking test 071 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 071 cpld_control PASS +Test 072 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restart_prod -Checking test 072 cpld_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_prod +Checking test 073 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4010,12 +4021,12 @@ Checking test 072 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 072 cpld_restart PASS +Test 073 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_controlfrac_prod -Checking test 073 cpld_controlfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_prod +Checking test 074 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4063,12 +4074,12 @@ Checking test 073 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 073 cpld_controlfrac PASS +Test 074 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restartfrac_prod -Checking test 074 cpld_restartfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_prod +Checking test 075 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4116,12 +4127,12 @@ Checking test 074 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 074 cpld_restartfrac PASS +Test 075 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_2threads_prod -Checking test 075 cpld_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_2threads_prod +Checking test 076 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4169,12 +4180,12 @@ Checking test 075 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 075 cpld_2threads PASS +Test 076 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_decomp_prod -Checking test 076 cpld_decomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_decomp_prod +Checking test 077 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4222,12 +4233,12 @@ Checking test 076 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 076 cpld_decomp PASS +Test 077 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_satmedmf_prod -Checking test 077 cpld_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_satmedmf_prod +Checking test 078 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4275,12 +4286,12 @@ Checking test 077 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 077 cpld_satmedmf PASS +Test 078 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_ca_prod -Checking test 078 cpld_ca results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_ca_prod +Checking test 079 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4328,12 +4339,12 @@ Checking test 078 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 078 cpld_ca PASS +Test 079 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_control_c192_prod -Checking test 079 cpld_control_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_c192_prod +Checking test 080 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4381,12 +4392,12 @@ Checking test 079 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 079 cpld_control_c192 PASS +Test 080 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restart_c192_prod -Checking test 080 cpld_restart_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_c192_prod +Checking test 081 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4434,12 +4445,12 @@ Checking test 080 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 080 cpld_restart_c192 PASS +Test 081 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_controlfrac_c192_prod -Checking test 081 cpld_controlfrac_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_c192_prod +Checking test 082 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4487,12 +4498,12 @@ Checking test 081 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 081 cpld_controlfrac_c192 PASS +Test 082 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restartfrac_c192_prod -Checking test 082 cpld_restartfrac_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_c192_prod +Checking test 083 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4540,12 +4551,12 @@ Checking test 082 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 082 cpld_restartfrac_c192 PASS +Test 083 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_control_c384_prod -Checking test 083 cpld_control_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_c384_prod +Checking test 084 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4596,12 +4607,12 @@ Checking test 083 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 083 cpld_control_c384 PASS +Test 084 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restart_c384_prod -Checking test 084 cpld_restart_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_c384_prod +Checking test 085 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4652,12 +4663,12 @@ Checking test 084 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 084 cpld_restart_c384 PASS +Test 085 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_controlfrac_c384_prod -Checking test 085 cpld_controlfrac_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_c384_prod +Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4708,12 +4719,12 @@ Checking test 085 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 085 cpld_controlfrac_c384 PASS +Test 086 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restartfrac_c384_prod -Checking test 086 cpld_restartfrac_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_c384_prod +Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4764,12 +4775,12 @@ Checking test 086 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 086 cpld_restartfrac_c384 PASS +Test 087 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_bmark_prod -Checking test 087 cpld_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmark_prod +Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4820,12 +4831,12 @@ Checking test 087 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 087 cpld_bmark PASS +Test 088 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restart_bmark_prod -Checking test 088 cpld_restart_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmark_prod +Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4876,12 +4887,12 @@ Checking test 088 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 088 cpld_restart_bmark PASS +Test 089 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_bmarkfrac_prod -Checking test 089 cpld_bmarkfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_prod +Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4932,12 +4943,12 @@ Checking test 089 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 089 cpld_bmarkfrac PASS +Test 090 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restart_bmarkfrac_prod -Checking test 090 cpld_restart_bmarkfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmarkfrac_prod +Checking test 091 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4988,12 +4999,12 @@ Checking test 090 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 090 cpld_restart_bmarkfrac PASS +Test 091 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_bmarkfrac_v16_prod -Checking test 091 cpld_bmarkfrac_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_v16_prod +Checking test 092 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5044,12 +5055,12 @@ Checking test 091 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 091 cpld_bmarkfrac_v16 PASS +Test 092 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_restart_bmarkfrac_v16_prod -Checking test 092 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmarkfrac_v16_prod +Checking test 093 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5100,12 +5111,12 @@ Checking test 092 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 092 cpld_restart_bmarkfrac_v16 PASS +Test 093 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_bmark_wave_prod -Checking test 093 cpld_bmark_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmark_wave_prod +Checking test 094 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5159,12 +5170,12 @@ Checking test 093 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 093 cpld_bmark_wave PASS +Test 094 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_bmarkfrac_wave_prod -Checking test 094 cpld_bmarkfrac_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_wave_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_wave_prod +Checking test 095 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5218,12 +5229,12 @@ Checking test 094 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 094 cpld_bmarkfrac_wave PASS +Test 095 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_bmarkfrac_wave_v16_prod -Checking test 095 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_wave_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_wave_v16_prod +Checking test 096 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5277,12 +5288,12 @@ Checking test 095 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 095 cpld_bmarkfrac_wave_v16 PASS +Test 096 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_control_wave_prod -Checking test 096 cpld_control_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_wave_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_wave_prod +Checking test 097 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5333,12 +5344,12 @@ Checking test 096 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 096 cpld_control_wave PASS +Test 097 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_debug_prod -Checking test 097 cpld_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_debug_prod +Checking test 098 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5386,12 +5397,12 @@ Checking test 097 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 097 cpld_debug PASS +Test 098 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/cpld_debugfrac_prod -Checking test 098 cpld_debugfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_debugfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_debugfrac_prod +Checking test 099 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5439,87 +5450,87 @@ Checking test 098 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 098 cpld_debugfrac PASS +Test 099 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/datm_control_cfsr -Checking test 099 datm_control_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_control_cfsr +Checking test 100 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 099 datm_control_cfsr PASS +Test 100 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/datm_restart_cfsr -Checking test 100 datm_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_restart_cfsr +Checking test 101 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 100 datm_restart_cfsr PASS +Test 101 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/datm_control_gefs -Checking test 101 datm_control_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_control_gefs +Checking test 102 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 101 datm_control_gefs PASS +Test 102 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/datm_bulk_cfsr -Checking test 102 datm_bulk_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_bulk_cfsr +Checking test 103 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 102 datm_bulk_cfsr PASS +Test 103 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/datm_bulk_gefs -Checking test 103 datm_bulk_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_bulk_gefs +Checking test 104 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 103 datm_bulk_gefs PASS +Test 104 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/datm_mx025_cfsr -Checking test 104 datm_mx025_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_mx025_cfsr +Checking test 105 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 104 datm_mx025_cfsr PASS +Test 105 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/datm_mx025_gefs -Checking test 105 datm_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_mx025_gefs +Checking test 106 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 105 datm_mx025_gefs PASS +Test 106 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210212/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_108921/datm_debug_cfsr -Checking test 106 datm_debug_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_debug_cfsr +Checking test 107 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 106 datm_debug_cfsr PASS +Test 107 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sun Feb 14 03:49:20 UTC 2021 -Elapsed time: 02h:31m:05s. Have a nice day! +Fri Feb 19 05:44:09 UTC 2021 +Elapsed time: 08h:19m:22s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 88e1b1724c..3820f68695 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -343,6 +343,8 @@ export NA_INIT=1 # Radiation export DO_RRTMGP=.F. export ICLOUD=0 +export IAER=111 +export ICLIQ_SW=1 export IOVR=1 # Microphysics diff --git a/tests/fv3_conf/ccpp_gsd_run.IN b/tests/fv3_conf/ccpp_gsd_run.IN index f76b4843bb..ac566483e4 100644 --- a/tests/fv3_conf/ccpp_gsd_run.IN +++ b/tests/fv3_conf/ccpp_gsd_run.IN @@ -39,8 +39,7 @@ if [ $IMP_PHYSICS = 8 ]; then fi else if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then - echo "ERROR, no field table configured for Thompson MP without aerosols but with MYNN or SATMEDMF (need TKE)" - exit 1 + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_thompson_noaero_tke field_table else cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_thompson_noaero field_table fi diff --git a/tests/parm/ccpp_gsd.nml.IN b/tests/parm/ccpp_gsd.nml.IN index 17f5982063..0ac2931d75 100644 --- a/tests/parm/ccpp_gsd.nml.IN +++ b/tests/parm/ccpp_gsd.nml.IN @@ -134,7 +134,9 @@ fhlwr = 3600. ialb = 1 iems = 1 - iaer = 111 + iaer = @[IAER] + icliq_sw = @[ICLIQ_SW] + iovr = @[IOVR] ico2 = 2 isubc_sw = 2 isubc_lw = 2 @@ -147,7 +149,8 @@ redrag = .true. dspheat = .true. hybedmf = @[HYBEDMF] - satmedmf = .false. + satmedmf = @[SATMEDMF] + isatmedmf = 1 lheatstrg = @[LHEATSTRG] do_mynnedmf = @[DO_MYNNEDMF] do_mynnsfclay = @[DO_MYNNSFCLAY] @@ -194,7 +197,10 @@ bl_mynn_tkeadvect = .true. bl_mynn_edmf = 1 bl_mynn_edmf_mom = 1 - gwd_opt = @[GWD_OPT] + gwd_opt = @[GWD_OPT] + ldiag_ugwp = @[LDIAG_UGWP] + do_ugwp = @[DO_UGWP] + do_tofd = @[DO_TOFD] do_ugwp_v0 = @[DO_UGWP_V0] do_ugwp_v0_orog_only = @[DO_UGWP_V0_OROG_ONLY] do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] @@ -300,27 +306,28 @@ FSICS = 99999, / &nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, SKEBNORM=1, SKEB_NPASS=30, SKEB_VDOF=5, SKEB=@[SKEB], SKEB_TAU=2.16E4, SKEB_LSCALE=1000.E3, + SKEBINT=1800, SHUM=@[SHUM], SHUM_TAU=21600, SHUM_LSCALE=500000, + SHUMINT=3600, SPPT=@[SPPT], SPPT_TAU=21600, SPPT_LSCALE=500000, SPPT_LOGIT=.TRUE., SPPT_SFCLIMIT=.TRUE., + SPPTINT=1800, ISEED_SHUM=1, ISEED_SKEB=2, ISEED_SPPT=3, / + &nam_sfcperts lndp_type = @[LNDP_TYPE] LNDP_TAU=21600, @@ -344,3 +351,4 @@ knob_ugwp_version = 0 launch_level = 25 / + diff --git a/tests/rt.conf b/tests/rt.conf index 125a48a2eb..2dd89c69e9 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -47,10 +47,6 @@ RUN | fv3_ccpp_regional_quilt_netcdf_parallel #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 | @@ -63,7 +59,7 @@ RUN | fv3_ccpp_csawmg 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 | +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_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 | @@ -109,13 +105,16 @@ RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) # Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -COMPILE | DEBUG=Y SUITES='FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP' | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +COMPILE | DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | RUN | fv3_ccpp_gfs_v16_debug | | fv3 | RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | -COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | +COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_regional_control_debug | | fv3 | +RUN | fv3_ccpp_control_debug | | fv3 | +RUN | fv3_ccpp_stretched_nest_debug | | fv3 | RUN | fv3_ccpp_gsd_debug | | fv3 | RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | RUN | fv3_ccpp_thompson_debug | | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 02fa401db7..d2a16ac9c0 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -415,9 +415,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-20210212/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210217/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210212} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210217} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210212} diff --git a/tests/rt_ccpp_dev.conf b/tests/rt_ccpp_dev.conf index a690e1c8db..562022cb6f 100644 --- a/tests/rt_ccpp_dev.conf +++ b/tests/rt_ccpp_dev.conf @@ -20,7 +20,7 @@ COMPILE | REPRO=Y SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc 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 | | fv3 | +COMPILE | REPRO=Y SUITES=FV3_GFS_v16_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | | fv3 | RUN | fv3_ccpp_thompson | | fv3 | RUN | fv3_ccpp_thompson_no_aero | | fv3 | @@ -46,7 +46,7 @@ RUN | fv3_ccpp_ntiedtke # CCPP DEBUG tests # ############################################################################################################################################################ -COMPILE | DEBUG=Y SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc,FV3_GFS_v15_thompson | | fv3 | +COMPILE | DEBUG=Y SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc,FV3_GFS_v16_thompson | | fv3 | RUN | fv3_ccpp_gsd_debug | | fv3 | RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 4401a84c89..e6821e3cb6 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -15,7 +15,7 @@ RUN | fv3_ccpp_gfs_v16_flake RUN | fv3_ccpp_gfs_v15p2_RRTMGP | | fv3 | RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | -COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y | | fv3 | +COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y | | fv3 | RUN | fv3_ccpp_gsd | | fv3 | RUN | fv3_ccpp_thompson | | fv3 | @@ -46,12 +46,12 @@ RUN | fv3_ccpp_gfs_v16_RRTMGP_debug 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 | | 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 | | fv3 | -#RUN | fv3_ccpp_gsd_debug | | fv3 | -#RUN | fv3_ccpp_thompson_debug | | fv3 | -#RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | +COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_regional_control_debug | | 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,FV3_GFS_v16b_ugwpv1 DEBUG=Y | | fv3 | RUN | fv3_ccpp_HAFS_v0_hwrf_thompson_debug | | fv3 | diff --git a/tests/tests/fv3_ccpp_regional_control_debug b/tests/tests/fv3_ccpp_regional_control_debug new file mode 100644 index 0000000000..736ad8ada6 --- /dev/null +++ b/tests/tests/fv3_ccpp_regional_control_debug @@ -0,0 +1,35 @@ +############################################################################### +# +# FV3 CCPP regional control test +# +############################################################################### + +export TEST_DESCR="Compare FV3 CCPP regional control results with previous trunk version" + +export CNTL_DIR=fv3_regional_control_debug + +export LIST_FILES=" atmos_4xdaily.nc \ + fv3_history2d.nc \ + fv3_history.nc \ + RESTART/fv_core.res.tile1_new.nc \ + RESTART/fv_tracer.res.tile1_new.nc" + +export_fv3 + +export TASKS=40 +export FHMAX="01" + +export FV3_RUN=ccpp_regional_run.IN + +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. +export H2O_PHYS=.T. +export HYBEDMF=.F. + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn +export INPUT_NML=ccpp_regional.nml.IN + +export FDIAG=1 +export INPES=5 +export JNPES=8 +export WRITE_RESTART_WITH_BCS=.true. diff --git a/tests/tests/fv3_ccpp_thompson b/tests/tests/fv3_ccpp_thompson index 6c3de6871b..67ecbe9321 100644 --- a/tests/tests/fv3_ccpp_thompson +++ b/tests/tests/fv3_ccpp_thompson @@ -81,11 +81,19 @@ export LRADAR=.T. export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN -export CCPP_SUITE=FV3_GFS_v15_thompson +export CCPP_SUITE=FV3_GFS_v16_thompson export INPUT_NML=ccpp_gsd.nml.IN -export HYBEDMF=.T. +export HYBEDMF=.F. +export SATMEDMF=.T. export DO_MYNNEDMF=.F. + export IMFSHALCNV=2 export IMFDEEPCNV=2 +export IAER=5111 +export ICLIQ_SW=2 +export IOVR=3 + +export LHEATSTRG=.T. +export DO_TOFD=.T. diff --git a/tests/tests/fv3_ccpp_thompson_debug b/tests/tests/fv3_ccpp_thompson_debug index 52e5b7d350..d7586cb1ea 100644 --- a/tests/tests/fv3_ccpp_thompson_debug +++ b/tests/tests/fv3_ccpp_thompson_debug @@ -84,11 +84,19 @@ export LRADAR=.T. export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN -export CCPP_SUITE=FV3_GFS_v15_thompson +export CCPP_SUITE=FV3_GFS_v16_thompson export INPUT_NML=ccpp_gsd.nml.IN -export HYBEDMF=.T. +export HYBEDMF=.F. +export SATMEDMF=.T. export DO_MYNNEDMF=.F. + export IMFSHALCNV=2 export IMFDEEPCNV=2 +export IAER=5111 +export ICLIQ_SW=2 +export IOVR=3 + +export LHEATSTRG=.T. +export DO_TOFD=.T. diff --git a/tests/tests/fv3_ccpp_thompson_no_aero b/tests/tests/fv3_ccpp_thompson_no_aero index 85b3ec6e65..41b6e4696a 100644 --- a/tests/tests/fv3_ccpp_thompson_no_aero +++ b/tests/tests/fv3_ccpp_thompson_no_aero @@ -82,11 +82,19 @@ export NSRADAR_RESET=3600.0 export LTAEROSOL=.F. export FV3_RUN=ccpp_gsd_run.IN -export CCPP_SUITE=FV3_GFS_v15_thompson +export CCPP_SUITE=FV3_GFS_v16_thompson export INPUT_NML=ccpp_gsd.nml.IN -export HYBEDMF=.T. +export HYBEDMF=.F. +export SATMEDMF=.T. export DO_MYNNEDMF=.F. + export IMFSHALCNV=2 export IMFDEEPCNV=2 +export IAER=5111 +export ICLIQ_SW=2 +export IOVR=3 + +export LHEATSTRG=.T. +export DO_TOFD=.T. diff --git a/tests/tests/fv3_ccpp_thompson_no_aero_debug b/tests/tests/fv3_ccpp_thompson_no_aero_debug index f88b24fb05..c21269307b 100644 --- a/tests/tests/fv3_ccpp_thompson_no_aero_debug +++ b/tests/tests/fv3_ccpp_thompson_no_aero_debug @@ -85,11 +85,19 @@ export NSRADAR_RESET=3600.0 export LTAEROSOL=.F. export FV3_RUN=ccpp_gsd_run.IN -export CCPP_SUITE=FV3_GFS_v15_thompson +export CCPP_SUITE=FV3_GFS_v16_thompson export INPUT_NML=ccpp_gsd.nml.IN -export HYBEDMF=.T. +export HYBEDMF=.F. +export SATMEDMF=.T. export DO_MYNNEDMF=.F. + export IMFSHALCNV=2 export IMFDEEPCNV=2 +export IAER=5111 +export ICLIQ_SW=2 +export IOVR=3 + +export LHEATSTRG=.T. +export DO_TOFD=.T. From 56e9901328e6c3e5ecaa8c316a6aa94cd953d594 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Mon, 22 Feb 2021 20:37:54 -0700 Subject: [PATCH 071/109] Update gsl develop from master (#63) * Updates to stochastic_physics_wrapper (#280) Fix to stochastic_physics_wrapper to allow for random patterns to update at a longer time-step than model Co-authored-by: Dom Heinzeller * Update for Jet, bug fixes in running with frac_grid=T and GFDL MP, and in restarting with frac_grid=T (#304) Update the modulefile for jet.intel to enable UPP v10.0.0. The hpc-stack v1.0.0 pre-release is used for this. Small changes are made to tests.rt.sh for jet.intel and gaea.intel (consistency with other platforms). The submodule pointer update for fv3atm addresses bugs in the ufs-weather-model with frac_grid=T and GFDL microphysics, and with restarting the model when frac_grid=T (from @shansun6 and @SMoorthi-emc). * Feature/update mom6 and retain b4b results for 025x025 resolution (#290) * point MOM6 to new branch which corresponding to GFDL 20201022 commit * modify fms_files.cmake and mom6_files.cmake to reflect changes in MOM6 code as this version of MOM6 contains some file deletion, new files being added and renaming of files * manually set MOM6 parameters in order to retain origonal results for 0.25x0.25 resolution * update MOM6 to include Bugfix for mom6solo to be built * modify compile.sh to allow mom6solo compiling * modify MOM_input_template for all resolutions based on GFDL MOM6-example main branch update on 20201022 * change executable permissions for CMakeLists.txt * chmod 644 to 6 files Dom pointed out * chmod for CMakeLists.txt and tests/compile.sh * change baseline directpory to 20201202 in rt.sh * Update CICE, Move regression test input outside baseline directory (#270) *Updates CICE to most recent develop branch of NOAA-EMC * Sets n_aero (number of aerosols) in ice_in_template to 0. * removes trailing whitespace from ice_in * moves regression test input outside baseline directory (ufs-weather PR #312) Co-authored-by: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Co-authored-by: Dom Heinzeller * Updates to build for JEDI linking/control, add wcoss2 (#295) * Build on wcoss2 (acorn) * Use -march=core-avx2 instead of -xCORE-AVX2 on wcoss2 * Updates to build for JEDI linking/control * Removed unnecessary include files and INLINE POST setting * Updated to address PR suggestions. * Add rt_acorn.conf. Change /lfs/h2 to /lfs/h1. * Update .gitmodules and submodule pointer for fv3atm for code review and testing * regression test results * Updated .gitmodules and removed extraneous file * Fixed .gitmodules and updated pointer for FV3 * Updated pointer to NEMS repo Co-authored-by: Dusan Jovic Co-authored-by: Dom Heinzeller * Final-final GFS v16 updates / restart reproducibility bugfixes (#325) * Update .gitmodules and submodule pointer for fv3atm for code review and testing * Add GFS v16 beta restart test, update stochastics test * Update regression test baseline date tag to 20201214; skip-ci * tests/rt.conf: bugfix, add missing 'fv3' to new stochy tests; skip-ci * Regression test logs for gaea.intel, hera.gnu, hera.intel, jet.intel, orion.intel; skip-ci * Run GFS v16beta tests also on wcoss; regression test logs for wcoss; skip-ci * Regression test logs for cheyenne.intel and cheyenne.gnu * Revert change to .gitmodules and update submodule pointer for fv3atm * Add optional bulk flux calculation in ufs-datm (#266) * Update NEMS DATM and CMEPS to allow the optional bulk flux formulation; add two tests using the option * Update top level CMakeList.txt to have compile flags for MOM6 and CICE6 identical for ufs-cpld and ufs-datm * Add optional configuration variable to nems.configure to specify the directory where CMEPS will write restarts * Adds cheyenne tasking variables to default_vars and sets WW3_COMP to cheyenne for platform cheyenne.intel *NOTE: Baselines develop-20201215 exist on all platforms, regression tests were run against exactly that baseline on all systems except cheyenne.intel. On cheyenne.intel the tests were run against 20201214, and this baseline is identical to 20201215 (as per "diff -r develop-20201214 develop-20201215"). Co-authors: @DusanJovic-NOAA @aerorahul @JessicaMeixner-NOAA skip-ci * Add 2 new tests for DATM-MOM6-CICE6 application (#332) * Add the following 2 tests: datm_restart_cfsr, datm_debug_cfsr * Add wcoss_dell_p3.log. * Add Hera log, Orion log, wcoss_dell_p3 log. * RRTMGP and Thompson MP coupling (#323) * Feature branch with RRTMGP and Thompson MP * Updated FV3/ccpp-physics. Added namelist and configuration for RRTMGP RTs using GSD physics. * Updated FV3 * Update physics in FV3 * Updated baselines in rt.sh * Updated RT logs. Updated FV3 physics submodule pointer. * Updated FV3 hash and .gitmodules * Regression test log for PR #323 for jet.intel (#336) * Update modules with hpc-stack v1.1.0 (#319) * Update modules with hpc-stack v1.1.0 * Minor bug fixes to CCPP UGWP Co-authored-by: Dom Heinzeller * Replace old regional SDF with FV3_GFS_v15_thompson_mynn (#333) * Replace old FV3_GFS_2017_gfdlmp_regional SDF for regional tests with FV3_GFS_v15_thompson_mynn. * Final path to IC's and new results. Also, input.nml updated. * Update RegressionTests_wcoss_dell_p3.log * Update RegressionTests_wcoss_cray.log * Update RegressionTests_hera.intel.log * Update RegressionTests_jet.intel.log * Update RegressionTests_orion.intel.log * Update RegressionTests_cheyenne* logs. * Update RegressionTests_hera.gnu.log * Feature/ww3update (#334) This updates the WW3 submodule pointer to point to the top of the WW3 develop branch. The path to WW3 inputs is changed to input-data-20201201/WW3_input_data_20201207/ * Remove IPD (step 1) (#331) Make CCPP=Y the default in tests/compile.sh. Remove CCPP=Y from tests/rt*.conf and adjust formatting. Update submodule pointer for MOM6 to include PR #341 ("Update MOM6 to GFDL's 20201218 commit") Add modulefiles/wcoss_cray/fv3_debug (identical to modulefiles/wcoss_cray/fv3) Fix broken utest (see #348) * Update the format of rt.conf (#349) Update the format of MACHINES column in rt.conf (and other .conf files). This column can be either empty, which means a test will run on all supported machines, or start with - or + sign to exclude or include specified machines explicitly. * Add checkpoint restarts for ufs-cpld (#342) * Adds 3 checkpoint restart tests for the ufs-cpld model * Drops the existing c92mx025 restart test * Adds cheyenne.intel as tested configuration for ufs-cpld and ufs-datm * Fixes instances of srf_data* in various fv3_conf files * add frac grid input, update and add additional cpld tests (#354) * Updates FV3_input_frac to add both benchmark dates and L127 files * Adds additional tests and restart tests for coupled model * Sets all cpld tests to use frac grid input by default * Removes all instances of USE_LA_LI2016=True except for benchmark+wave configurations * Remove unnecessary SIMD instruction sets for Jet, first round of cleanup in rt.conf, initialize cld_amt to zero for regional runs (dycore) (#353) * Reduce SIMDMULTIARCH sets from four to two in cmake/Intel.cmake * First cleanup of regression test config tests/rt.conf * tests/rt.sh: reduce number of build jobs on jet.intel from 10 to 5 * Remove flags -f and -s from rt.sh, remove SET logic, remove corresponding column in all rt*conf files * Remove tests/rt_acorn.conf and run GFS v15p2 and GFS v16beta DEBUG tests on all platforms * Implementation of CCPP timestep_init and timestep_final phases (#337) * Update .gitmodules and submodule pointer for fv3atm for code review and testing * Update submodule pointer for fv3atm; skip-ci * Don't try to compile all suites in DEBUG mode on cheyenne.intel, weird bug on compute nodes; skip-ci * Don't try to compile all suites in DEBUG mode on wcoss_cray; skip-ci * Regression test logs for cheyenne.gnu, cheyenne.intel, gaea.intel, hera.gnu, hera.intel, jet.intel, orion.intel; skip-ci * Don't try to compile all suites in DEBUG mode on wcoss_dell_p3; skip-ci * Regression test logs for wcoss_cray and wcoss_dell_p3 * Revert change to .gitmodules and update submodule pointer for fv3atm * Update CMEPS (#345) * Update CMEPS for recent changes, including addition of new run "post" run phases to eliminate redundant mapping, multiple ice sheet capability and ocn->land ice dynamic mapping * Add a new test fv3_gfs_v16_RRTMGP_c192L127 Co-authored-by: Jun Wang * Remove IPD steps 3 and 5 (#357) Reduce SIMDMULTIARCH sets from four to two in cmake/Intel.cmake * First cleanup of regression test config tests/rt.conf * tests/rt.sh: reduce number of build jobs on jet.intel from 10 to 5; skip-ci * Remove flags -f and -s from rt.sh, remove SET logic, remove corresponding column in all rt*conf files * Update usage in rt.sh, add modulefiles/jet.intel/fv3_debug; skip-ci * CCPP is default in cmake build * Add debug modulefiles for linux.gnu and macosx.gnu * Update submodule pointer for fv3atm * Change logic in CMakeLists.txt and tests/compile.sh so that 32BIT=ON automatically sets DYN32=ON; skip-ci * Move logic to set DYN32 - depending on 32BIT setting - to fv3atm * Remove -DCCPP=ON from tests/compile.sh; update submodule pointer for fv3atm; skip-ci * point fv3 to EMC develop branch (#377) * update cpl gfsv16 tests, rrtmgp fix and bug fixes in cmeps (#378) * update CMEPS, fix character length error for gnu compile * add Dusan's fix for rt_utils.sh * update cpl gfsv16 tests, replace seaice_newland.grb with global_slmask.t1534.3072.1536.grb, recover input.mom6.nml.IN, update input directory, update global thread and decomp tests, update fdiag for global control * point to Dustins rrtmgp fix branch * update input directory Co-authored-by: denise.worthen Co-authored-by: Jun Wang * Update develop from NOAA-GSL: RUC ice, MYNN sfclay, stochastic land perturbations (#386) * Update .gitmodules and submodule pointer for fv3atm for gsl/develop branch * RUC ice for gsl/develop (replaces #47) (#49)Implementation of RUC LSM ice model in CCPP * Squash-merge climbfuji:rucice_gfsv16dzmin into gsl/develop * Add kice=9 to tests/tests/fv3_ccpp_rap and tests/tests/fv3_ccpp_hrrr * Change NEW_BASELINE directory for gsl/develop to avoid conflicts with development work on the authoritative branches * Add KICE=9 to tests/tests/fv3_ccpp_gsd_unified_ugwp and tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp * Revert change to .gitmodules and update submodule pointer for fv3atm * Update gsl/develop from develop 2020/12/08 (#50) * Updates to stochastic_physics_wrapper (#280) Fix to stochastic_physics_wrapper to allow for random patterns to update at a longer time-step than model * Update for Jet, bug fixes in running with frac_grid=T and GFDL MP, and in restarting with frac_grid=T (#304) Update the modulefile for jet.intel to enable UPP v10.0.0. The hpc-stack v1.0.0 pre-release is used for this. Small changes are made to tests.rt.sh for jet.intel and gaea.intel (consistency with other platforms). The submodule pointer update for fv3atm addresses bugs in the ufs-weather-model with frac_grid=T and GFDL microphysics, and with restarting the model when frac_grid=T (from @shansun6 and @SMoorthi-emc). * Land stochastic perturbations (#57) * dycore options to add zero-gradient BC to reconstruct interface u/v and change dz_min as input (#369) * Update fv3atm * update ccpp control test forecast length to 24h * remove rename command * Add CI related changes * Update RT logs * Update RT log files * Add the gaea RT log file * Update the point of fv3atm * Update fv3atm Co-authored-by: Jun Wang Co-authored-by: MinsukJi-NOAA Co-authored-by: Jun Wang <37633869+junwang-noaa@users.noreply.github.com> * MOM6 bugfixes, GFDL update, update CDMBGWD settings; fix for restart reproducibility (without waves) when USE_LA_LI2016=True, sign error on fprec passed to ocean, GFDL update, resolution dependent cdmbgwd settings (#379) * implements two MOM6 bugfixes in the NUOPC MOM6 cap to allow restart reproducibility when USE_LA_LI2016=True and to change the sign of the latent heat flux associated with frozen precipitation (fprec) exported to MOM6 * updates MOM6 to include the GFDL 20210120 main branch which contains EMC's wave coupling code, alone with some minor code standardization and documentation * updates the cdmbgwd namelist settings for FV3 standalone tests at C96 and implements resolution dependent values for ufs-cpld tests Co-authored-by: Ali * Remove legacy gnumake build from fv3atm and NEMS, remove legacy Python 2.7 support, rename v16beta to v16 and RT updates (#384) * Update .gitmodules and submodule pointers for fv3atm and NEMS * Remove Python 2.7 support from top-level CMakeLists.txt * Reduce forecast length of test fv3_ccpp_gfs_v16_RRTMGP_c192L127 from 24h to 12h * Rename v16beta to v16 everywhere except the public release documentation * Bugfixes and missing changes * Remove 'export CCPP_LIB_DIR=ccpp/lib' from all regression tests * Update regression test baseline date tag to 20210128; skip-ci * Update ecflow-python environment on cheyenne and jet; skip-ci * Update CMEPS for HAFS integration; add datm and coupled-model tests on Gaea (#401) * Add HAFS support in NOAA-EMC/CMEPS * Add coupled and datm tests for Gaea.intel Co-authored-by: Jun Wang Co-authored-by: Bin Li * Move LSM vegetation lookup tables into CCPP, clean up RUC snow cover on ice initialization (remove IPD step 2) (#407) * Regression test logs for all tier=1 platforms * updates FMS to 2020.04.01 (#392) * updates FMS to 2020.04.01 * fixes fms_files.cmake * removes extra horiz_interp * Workaround for FMS 2020.04.01 for Cheyenne with GNU 9.1.0, incl. regression test log Co-authored-by: Mikyung Lee Co-authored-by: Dom Heinzeller * add optional mesh in MOM6; add dz_min and min_seaice as configurable variables for coupled model (#399) *Implements an optional setting in the cpld and datm nems.configure files to specify whether the MOM6 cap should use a mesh or a grid *Adds configurable settings for min_seaice to gfs_physics_nml and dz_min to fv_core_nml. * UGWP v0 v1 combined (#396) - combines the changes in PRs #360 and #382 - adds three regression tests `fv3_ccpp_gfsv16_ugwpv1 `, `fv3_ccpp_gfsv16_ugwpv1_warmstart` and `fv3_ccpp_gfsv16_ugwpv1_debug` - contains updates and bugfixes for `nc_compare.py` and the CI tests from @MinsukJi-NOAA - update Python3 environment on jet.intel, gaea.intel, cheyenne.{intel,gnu} - turn off (again) test `fv3_ccpp_decomp` on jet.intel, this test didn't work in the past, but recently it "passed", because the error checking with `nc_compare.py` failed silently and we didn't notice it Co-authored-by: valery.yudin Co-authored-by: Michael Toy Co-authored-by: MinsukJi-NOAA * Update regression tests from GFSv15+Thompson to GFSv16+Thompson, include "Add one regional regression test in DEBUG mode. (#419)" (#421) * Add one regional regression test in DEBUG mode. * Update .gitmodules and submodule pointer for fv3atm for code review and testing * Update regression tests from GFSv15+Thompson to GFSv16+Thompson * Combine several COMPILE lines in tests/rt.conf and tests/rt_gnu.conf * Regression test log for cheyenne.{gnu,intel},gaea.intel, hera.gnu, jet.intel,hera.intel,orion.intel;wcoss_cray and wcoss_dell_p3; Co-authored-by: Phil Pegion <38869668+pjpegion@users.noreply.github.com> Co-authored-by: jiandewang Co-authored-by: Denise Worthen Co-authored-by: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Co-authored-by: Mark Potts <33099090+mark-a-potts@users.noreply.github.com> Co-authored-by: BinLi-NOAA Co-authored-by: dustinswales Co-authored-by: Kyle Gerheiser <3209794+kgerheiser@users.noreply.github.com> Co-authored-by: RatkoVasic-NOAA <37597874+RatkoVasic-NOAA@users.noreply.github.com> Co-authored-by: Ali.Abdolali <37336972+aliabdolali@users.noreply.github.com> Co-authored-by: Jun Wang Co-authored-by: Jun Wang <37633869+junwang-noaa@users.noreply.github.com> Co-authored-by: XiaqiongZhou-NOAA <48254930+XiaqiongZhou-NOAA@users.noreply.github.com> Co-authored-by: Ali Co-authored-by: Bin Li Co-authored-by: MiKyung Lee <58964324+mlee03@users.noreply.github.com> Co-authored-by: valery.yudin Co-authored-by: Michael Toy Co-authored-by: MinsukJi-NOAA --- .gitmodules | 2 +- CICE-interface/CMakeLists.txt | 2 +- CMEPS-interface/CMEPS | 2 +- CMEPS-interface/CMakeLists.txt | 31 +- CMakeLists.txt | 83 +- DATM | 2 +- FMS | 2 +- FV3 | 2 +- MOM6-interface/CMakeLists.txt | 2 +- MOM6-interface/MOM6 | 2 +- NEMS | 2 +- WW3 | 2 +- cheyenne_gnu_fms_mpp_util_mpi_inc.patch | 12 + cmake/Intel.cmake | 10 +- cmake/configure_wcoss2.cmake | 3 + fms_files.cmake | 30 +- modulefiles/cheyenne.gnu/fv3 | 4 +- modulefiles/cheyenne.gnu/fv3_debug | 4 +- modulefiles/cheyenne.intel/fv3 | 4 +- modulefiles/cheyenne.intel/fv3_debug | 4 +- modulefiles/gaea.intel/fv3 | 6 +- modulefiles/gaea.intel/fv3_debug | 50 + modulefiles/hera.gnu/fv3 | 4 +- modulefiles/hera.intel/fv3 | 4 +- modulefiles/hera.intel/fv3_debug | 4 +- modulefiles/jet.intel/fv3 | 1 - modulefiles/jet.intel/fv3_debug | 42 + modulefiles/linux.gnu/fv3 | 2 +- modulefiles/linux.gnu/fv3_debug | 50 + modulefiles/macosx.gnu/fv3 | 2 +- modulefiles/macosx.gnu/fv3_debug | 44 + modulefiles/orion.intel/fv3 | 5 +- modulefiles/orion.intel/fv3_debug | 5 +- modulefiles/wcoss2/fv3 | 42 + modulefiles/wcoss2/fv3_debug | 42 + modulefiles/wcoss_cray/fv3 | 25 +- modulefiles/wcoss_cray/fv3_debug | 77 + modulefiles/wcoss_dell_p3/fv3 | 4 +- modulefiles/wcoss_dell_p3/fv3_debug | 4 +- tests/RegressionTests_cheyenne.gnu.log | 793 +++- tests/RegressionTests_cheyenne.intel.log | 2878 ++++++++++++-- tests/RegressionTests_gaea.intel.log | 3382 +++++++++++++++-- tests/RegressionTests_hera.gnu.log | 793 +++- tests/RegressionTests_hera.intel.log | 2383 +++++++++--- tests/RegressionTests_jet.intel.log | 1828 +++++++-- tests/RegressionTests_orion.intel.log | 2921 ++++++++++---- tests/RegressionTests_wcoss_cray.log | 1803 +++++++-- tests/RegressionTests_wcoss_dell_p3.log | 3263 +++++++++++++--- tests/UnitTests_hera.gnu.log | 464 +++ tests/UnitTests_hera.intel.log | 126 +- tests/ci/Dockerfile | 2 +- tests/ci/ci.sh | 6 +- tests/compare_ncfile.py | 18 +- tests/compile.sh | 63 +- tests/default_vars.sh | 177 +- tests/detect_machine.sh | 3 + tests/fv3_conf/ccpp_control_run.IN | 48 +- tests/fv3_conf/ccpp_csawmg_run.IN | 6 +- tests/fv3_conf/ccpp_gfdlmp_run.IN | 8 +- tests/fv3_conf/ccpp_gfs_v16_run.IN | 16 +- tests/fv3_conf/ccpp_gfs_v16_run_c192L127.IN | 23 + tests/fv3_conf/ccpp_gfsv16_ugwpv1_run.IN | 22 + tests/fv3_conf/ccpp_gsd_run.IN | 3 +- tests/fv3_conf/ccpp_multigases_run.IN | 6 +- tests/fv3_conf/ccpp_regional_run.IN | 2 +- tests/fv3_conf/ccpp_satmedmf_run.IN | 4 +- tests/fv3_conf/compile_qsub.IN_wcoss2 | 20 + tests/fv3_conf/cpld_bmark_run.IN | 75 +- tests/fv3_conf/cpld_control_run.IN | 65 +- tests/fv3_conf/cpld_datm_cfsr.IN | 24 +- tests/fv3_conf/cpld_datm_gefs.IN | 3 +- tests/fv3_conf/csawmg3shoc127_run.IN | 6 +- tests/fv3_conf/csawmg_run.IN | 6 +- tests/fv3_conf/csawmgshoc_run.IN | 6 +- tests/fv3_conf/fv3_gocart.IN | 4 +- tests/fv3_conf/fv3_qsub.IN_wcoss2 | 32 + tests/fv3_conf/fv3_run.IN | 10 +- tests/fv3_conf/gfdlmp_run.IN | 8 +- tests/fv3_conf/multigases_run.IN | 6 +- tests/fv3_conf/satmedmf_run.IN | 4 +- tests/fv3_conf/thompson_run.IN | 4 +- tests/fv3_conf/wsm6_run.IN | 6 +- tests/parm/MOM_input_template_100 | 7 - tests/parm/ccpp.gocart.nml.IN | 2 +- tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN | 2 +- tests/parm/ccpp_ca.nml.IN | 2 +- tests/parm/ccpp_control.nml.IN | 2 +- tests/parm/ccpp_cpt.nml.IN | 2 +- tests/parm/ccpp_csawmg.nml.IN | 2 +- tests/parm/ccpp_csawmg3shoc127.nml.IN | 2 +- tests/parm/ccpp_csawmgshoc.nml.IN | 2 +- tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN | 2 +- tests/parm/ccpp_gfdlmp.nml.IN | 2 +- tests/parm/ccpp_gfsv16_csawmg.nml.IN | 2 +- tests/parm/ccpp_gsd.nml.IN | 22 +- .../{gfdlmp.nml.IN => ccpp_gsd_rrtmgp.nml.IN} | 155 +- tests/parm/ccpp_gsd_sar.nml.IN | 2 +- tests/parm/ccpp_input_nest02.nml.IN | 2 +- tests/parm/ccpp_lndp.nml.IN | 2 +- tests/parm/ccpp_multi_gases.nml.IN | 2 +- tests/parm/ccpp_regional.nml.IN | 97 +- tests/parm/ccpp_regional_c768.nml.IN | 2 +- tests/parm/ccpp_stretched-input.nml.IN | 2 +- tests/parm/ccpp_stretched-nest-input.nml.IN | 2 +- tests/parm/ccpp_v15p2_c96.nml.IN | 4 +- tests/parm/ccpp_v15p2_c96_rrtmgp.nml.IN | 4 +- ...nml.IN => ccpp_v16_c192L127_rrtmgp.nml.IN} | 90 +- ...v16beta_c96.nml.IN => ccpp_v16_c96.nml.IN} | 73 +- ...tmgp.nml.IN => ccpp_v16_c96_rrtmgp.nml.IN} | 4 +- tests/parm/ccpp_v16_c96_ugwpv1.nml.IN | 343 ++ ...e_c96.nml.IN => ccpp_v16_flake_c96.nml.IN} | 6 +- tests/parm/cpt.nml.IN | 2 +- tests/parm/csawmg.nml.IN | 2 +- tests/parm/csawmg3shoc127.nml.IN | 2 +- tests/parm/csawmgshoc.nml.IN | 2 +- tests/parm/datm_configure.IN | 6 +- tests/parm/datm_data_table.IN | 6 +- tests/parm/fv3.gocart.nml.IN | 311 -- tests/parm/gfsv16_csawmg.nml.IN | 302 -- tests/parm/input.benchmark_ccpp.nml.IN | 9 +- ...mark.nml.IN => input.benchmark_v16.nml.IN} | 65 +- tests/parm/input.mom6_ccpp.nml.IN | 8 +- tests/parm/input.nml.IN | 303 -- tests/parm/input_nest02.nml.IN | 2 +- tests/parm/multi_gases.nml.IN | 291 -- tests/parm/nems.configure.cpld.IN | 20 +- tests/parm/nems.configure.cpld_wave.IN | 22 +- tests/parm/nems.configure.datm.IN | 26 +- tests/parm/rasmgshoc.nml.IN | 304 -- tests/parm/regional.nml.IN | 298 -- tests/parm/regional_c768-model_configure.IN | 60 - tests/parm/regional_c768.nml.IN | 295 -- tests/parm/stretched-input.nml.IN | 292 -- tests/parm/stretched-nest-input.nml.IN | 300 -- tests/parm/thompson.nml.IN | 273 -- tests/parm/v15p2_c96.nml.IN | 307 -- tests/parm/wsm6.nml.IN | 273 -- tests/rt.conf | 422 +- tests/rt.sh | 222 +- tests/rt_35d.conf | 66 +- tests/rt_ccpp_dev.conf | 102 +- tests/rt_gnu.conf | 121 +- tests/rt_stampede.conf | 13 - tests/rt_utils.sh | 19 +- tests/tests/cpld_bmark | 12 +- tests/tests/cpld_bmark_35d | 7 +- tests/tests/cpld_bmark_wave | 7 +- tests/tests/cpld_bmark_wave_35d | 7 +- tests/tests/cpld_bmarkfrac | 141 + ...d_control_mx025_12h => cpld_bmarkfrac_v16} | 85 +- tests/tests/cpld_bmarkfrac_wave | 148 + tests/tests/cpld_bmarkfrac_wave_35d | 110 + tests/tests/cpld_bmarkfrac_wave_v16 | 157 + tests/tests/cpld_bmarkfrac_wave_v16_35d | 125 + tests/tests/cpld_control | 3 + tests/tests/cpld_control_c192 | 38 +- tests/tests/cpld_control_c384 | 11 +- tests/tests/{fv3_decomp => cpld_control_wave} | 58 +- .../{cpld_control_12h => cpld_controlfrac} | 44 +- tests/tests/cpld_controlfrac_c192 | 124 + tests/tests/cpld_controlfrac_c384 | 14 +- .../tests/{fv3_csawmgshoc => cpld_debugfrac} | 53 +- tests/tests/cpld_restart | 10 +- tests/tests/cpld_restart_bmark | 153 + tests/tests/cpld_restart_bmarkfrac | 156 + tests/tests/cpld_restart_bmarkfrac_v16 | 164 + tests/tests/cpld_restart_c192 | 140 + .../{cpld_restart_mx025 => cpld_restart_c384} | 38 +- tests/tests/{fv3_control => cpld_restartfrac} | 61 +- tests/tests/cpld_restartfrac_c192 | 144 + ...ld_control_mx025 => cpld_restartfrac_c384} | 57 +- tests/tests/datm_bulk_cfsr | 21 + tests/tests/datm_bulk_gefs | 21 + tests/tests/datm_control_cfsr | 5 +- tests/tests/datm_control_gefs | 4 +- tests/tests/datm_debug_cfsr | 21 + tests/tests/datm_mx025_cfsr | 18 +- tests/tests/datm_mx025_gefs | 18 +- tests/tests/datm_restart_cfsr | 26 + tests/tests/fv3_2threads | 82 - tests/tests/fv3_appbuild | 76 - tests/tests/fv3_ccpp_2threads | 1 - tests/tests/fv3_ccpp_HAFS_v0_hwrf | 1 - tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug | 1 - tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson | 1 - .../fv3_ccpp_HAFS_v0_hwrf_thompson_debug | 1 - tests/tests/fv3_ccpp_appbuild | 1 - tests/tests/fv3_ccpp_ca | 1 - tests/tests/fv3_ccpp_control | 2 +- tests/tests/fv3_ccpp_control_32bit | 1 - tests/tests/fv3_ccpp_control_debug | 1 - tests/tests/fv3_ccpp_cpt | 1 - tests/tests/fv3_ccpp_csawmg | 1 - tests/tests/fv3_ccpp_csawmg3shoc127 | 1 - tests/tests/fv3_ccpp_csawmgshoc | 1 - tests/tests/fv3_ccpp_decomp | 1 - .../tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson | 1 - .../fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug | 1 - tests/tests/fv3_ccpp_gf | 1 - tests/tests/fv3_ccpp_gf_thompson | 1 - tests/tests/fv3_ccpp_gfdlmp | 1 - tests/tests/fv3_ccpp_gfdlmp_32bit | 1 - tests/tests/fv3_ccpp_gfdlmprad | 1 - tests/tests/fv3_ccpp_gfdlmprad_32bit_post | 1 - tests/tests/fv3_ccpp_gfdlmprad_atmwav | 1 - tests/tests/fv3_ccpp_gfdlmprad_gwd | 1 - tests/tests/fv3_ccpp_gfdlmprad_noahmp | 1 - tests/tests/fv3_ccpp_gfs_myj | 1 - tests/tests/fv3_ccpp_gfs_v15p2 | 1 - tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP | 1 - tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP_debug | 1 - tests/tests/fv3_ccpp_gfs_v15p2_debug | 1 - ...pp_gfs_v16beta_RRTMGP => fv3_ccpp_gfs_v16} | 30 +- ...pp_gfs_v16beta => fv3_ccpp_gfs_v16_RRTMGP} | 12 +- ...v3_ca => fv3_ccpp_gfs_v16_RRTMGP_c192L127} | 61 +- ...ta_debug => fv3_ccpp_gfs_v16_RRTMGP_debug} | 12 +- ...ta_RRTMGP_debug => fv3_ccpp_gfs_v16_debug} | 14 +- .../{fv3_gfs_v15p2 => fv3_ccpp_gfs_v16_flake} | 11 +- .../{fv3_restart => fv3_ccpp_gfs_v16_restart} | 53 +- .../{fv3_stochy => fv3_ccpp_gfs_v16_stochy} | 31 +- tests/tests/fv3_ccpp_gfs_v16beta_flake | 83 - tests/tests/fv3_ccpp_gfsv16_csawmg | 1 - tests/tests/fv3_ccpp_gfsv16_csawmgt | 1 - ...fv3_gfs_v16beta => fv3_ccpp_gfsv16_ugwpv1} | 33 +- ...ultigases => fv3_ccpp_gfsv16_ugwpv1_debug} | 57 +- ..._wsm6 => fv3_ccpp_gfsv16_ugwpv1_warmstart} | 34 +- tests/tests/fv3_ccpp_gocart_clm | 1 - tests/tests/fv3_ccpp_gsd | 1 - .../{fv3_read_inc => fv3_ccpp_gsd_RRTMGP} | 60 +- ...{fv3_h2ophys => fv3_ccpp_gsd_RRTMGP_debug} | 60 +- tests/tests/fv3_ccpp_gsd_coldstart | 1 - tests/tests/fv3_ccpp_gsd_debug | 1 - tests/tests/fv3_ccpp_gsd_diag3d_debug | 1 - tests/tests/fv3_ccpp_gsd_drag_suite | 1 - .../fv3_ccpp_gsd_drag_suite_unified_ugwp | 1 - tests/tests/fv3_ccpp_gsd_lndp | 1 - tests/tests/fv3_ccpp_gsd_mynnsfc | 1 - tests/tests/fv3_ccpp_gsd_mynnsfc_debug | 1 - tests/tests/fv3_ccpp_gsd_noah | 1 - tests/tests/fv3_ccpp_gsd_noah_lndp | 1 - tests/tests/fv3_ccpp_gsd_noah_mynnsfc | 1 - tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug | 1 - tests/tests/fv3_ccpp_gsd_sar | 1 - tests/tests/fv3_ccpp_gsd_sar_debug | 1 - tests/tests/fv3_ccpp_gsd_unified_ugwp | 1 - tests/tests/fv3_ccpp_gsd_warmstart | 1 - tests/tests/fv3_ccpp_h2ophys | 1 - tests/tests/fv3_ccpp_hrrr | 1 - tests/tests/fv3_ccpp_iau | 1 - tests/tests/fv3_ccpp_lheatstrg | 1 - tests/tests/fv3_ccpp_lndp | 1 - tests/tests/fv3_ccpp_multigases | 1 - tests/tests/fv3_ccpp_mynn | 1 - tests/tests/fv3_ccpp_ntiedtke | 1 - tests/tests/fv3_ccpp_ozphys_2015 | 1 - tests/tests/fv3_ccpp_rap | 1 - tests/tests/fv3_ccpp_read_inc | 1 - tests/tests/fv3_ccpp_regional_c768 | 1 - tests/tests/fv3_ccpp_regional_control | 4 +- tests/tests/fv3_ccpp_regional_control_debug | 35 + tests/tests/fv3_ccpp_regional_quilt | 6 +- .../fv3_ccpp_regional_quilt_netcdf_parallel | 7 +- tests/tests/fv3_ccpp_regional_restart | 4 +- tests/tests/fv3_ccpp_restart | 48 +- tests/tests/fv3_ccpp_rrfs_v1beta | 1 - tests/tests/fv3_ccpp_rrfs_v1beta_debug | 1 - tests/tests/fv3_ccpp_sas | 1 - tests/tests/fv3_ccpp_satmedmf | 1 - tests/tests/fv3_ccpp_satmedmfq | 1 - tests/tests/fv3_ccpp_shinhong | 1 - tests/tests/fv3_ccpp_stochy | 1 - tests/tests/fv3_ccpp_stretched | 1 - tests/tests/fv3_ccpp_stretched_nest | 1 - tests/tests/fv3_ccpp_stretched_nest_debug | 1 - tests/tests/fv3_ccpp_stretched_nest_quilt | 1 - tests/tests/fv3_ccpp_thompson | 13 +- tests/tests/fv3_ccpp_thompson_debug | 13 +- tests/tests/fv3_ccpp_thompson_mynn | 1 - tests/tests/fv3_ccpp_thompson_no_aero | 13 +- tests/tests/fv3_ccpp_thompson_no_aero_debug | 13 +- tests/tests/fv3_ccpp_wrtGauss_nemsio | 1 - tests/tests/fv3_ccpp_wrtGauss_nemsio_c192 | 1 - tests/tests/fv3_ccpp_wrtGauss_nemsio_c768 | 1 - tests/tests/fv3_ccpp_wrtGauss_netcdf | 1 - tests/tests/fv3_ccpp_wrtGauss_netcdf_esmf | 1 - tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel | 1 - tests/tests/fv3_ccpp_wrtGlatlon_netcdf | 1 - tests/tests/fv3_ccpp_ysu | 1 - tests/tests/fv3_control_32bit | 76 - tests/tests/fv3_control_debug | 16 - tests/tests/fv3_cpt | 89 - tests/tests/fv3_csawmg | 66 - tests/tests/fv3_csawmg3shoc127 | 79 - tests/tests/fv3_gfdlmp | 65 - tests/tests/fv3_gfdlmp_32bit | 65 - tests/tests/fv3_gfdlmprad | 80 - tests/tests/fv3_gfdlmprad_32bit_post | 75 - tests/tests/fv3_gfdlmprad_atmwav | 81 - tests/tests/fv3_gfdlmprad_gwd | 70 - tests/tests/fv3_gfdlmprad_noahmp | 71 - tests/tests/fv3_gfsv16_csawmg | 67 - tests/tests/fv3_gfsv16_csawmgt | 67 - tests/tests/fv3_gocart_clm | 69 - tests/tests/fv3_iau | 89 - tests/tests/fv3_lheatstrg | 62 - tests/tests/fv3_ozphys_2015 | 81 - tests/tests/fv3_regional_c768 | 22 - tests/tests/fv3_regional_control | 28 - tests/tests/fv3_regional_quilt | 27 - tests/tests/fv3_regional_restart | 37 - tests/tests/fv3_sas | 67 - tests/tests/fv3_satmedmf | 66 - tests/tests/fv3_satmedmfq | 67 - tests/tests/fv3_stretched | 88 - tests/tests/fv3_stretched_nest | 108 - tests/tests/fv3_stretched_nest_debug | 46 - tests/tests/fv3_stretched_nest_quilt | 102 - tests/tests/fv3_thompson | 86 - tests/tests/fv3_wrtGauss_nemsio | 61 - tests/tests/fv3_wrtGauss_nemsio_c192 | 83 - tests/tests/fv3_wrtGauss_nemsio_c768 | 104 - tests/tests/fv3_wrtGauss_netcdf | 59 - tests/tests/fv3_wrtGauss_netcdf_debug | 18 - tests/tests/fv3_wrtGauss_netcdf_esmf | 59 - tests/tests/fv3_wrtGlatlon_netcdf | 59 - tests/utest | 32 +- tests/utest.bld | 44 +- 327 files changed, 21685 insertions(+), 11521 deletions(-) create mode 100644 cheyenne_gnu_fms_mpp_util_mpi_inc.patch create mode 100644 cmake/configure_wcoss2.cmake create mode 100644 modulefiles/gaea.intel/fv3_debug create mode 100644 modulefiles/jet.intel/fv3_debug create mode 100755 modulefiles/linux.gnu/fv3_debug create mode 100755 modulefiles/macosx.gnu/fv3_debug create mode 100644 modulefiles/wcoss2/fv3 create mode 100644 modulefiles/wcoss2/fv3_debug create mode 100644 modulefiles/wcoss_cray/fv3_debug create mode 100644 tests/UnitTests_hera.gnu.log create mode 100644 tests/fv3_conf/ccpp_gfs_v16_run_c192L127.IN create mode 100644 tests/fv3_conf/ccpp_gfsv16_ugwpv1_run.IN create mode 100644 tests/fv3_conf/compile_qsub.IN_wcoss2 create mode 100644 tests/fv3_conf/fv3_qsub.IN_wcoss2 rename tests/parm/{gfdlmp.nml.IN => ccpp_gsd_rrtmgp.nml.IN} (70%) rename tests/parm/{v16beta_c96.nml.IN => ccpp_v16_c192L127_rrtmgp.nml.IN} (82%) rename tests/parm/{ccpp_v16beta_c96.nml.IN => ccpp_v16_c96.nml.IN} (87%) rename tests/parm/{ccpp_v16beta_c96_rrtmgp.nml.IN => ccpp_v16_c96_rrtmgp.nml.IN} (98%) create mode 100644 tests/parm/ccpp_v16_c96_ugwpv1.nml.IN rename tests/parm/{ccpp_v16beta_flake_c96.nml.IN => ccpp_v16_flake_c96.nml.IN} (98%) delete mode 100644 tests/parm/fv3.gocart.nml.IN delete mode 100644 tests/parm/gfsv16_csawmg.nml.IN rename tests/parm/{input.benchmark.nml.IN => input.benchmark_v16.nml.IN} (87%) delete mode 100644 tests/parm/input.nml.IN delete mode 100644 tests/parm/multi_gases.nml.IN delete mode 100644 tests/parm/rasmgshoc.nml.IN delete mode 100644 tests/parm/regional.nml.IN delete mode 100644 tests/parm/regional_c768-model_configure.IN delete mode 100644 tests/parm/regional_c768.nml.IN delete mode 100644 tests/parm/stretched-input.nml.IN delete mode 100644 tests/parm/stretched-nest-input.nml.IN delete mode 100644 tests/parm/thompson.nml.IN delete mode 100644 tests/parm/v15p2_c96.nml.IN delete mode 100644 tests/parm/wsm6.nml.IN delete mode 100644 tests/rt_stampede.conf create mode 100644 tests/tests/cpld_bmarkfrac rename tests/tests/{cpld_control_mx025_12h => cpld_bmarkfrac_v16} (64%) create mode 100644 tests/tests/cpld_bmarkfrac_wave create mode 100644 tests/tests/cpld_bmarkfrac_wave_35d create mode 100644 tests/tests/cpld_bmarkfrac_wave_v16 create mode 100644 tests/tests/cpld_bmarkfrac_wave_v16_35d rename tests/tests/{fv3_decomp => cpld_control_wave} (63%) rename tests/tests/{cpld_control_12h => cpld_controlfrac} (69%) create mode 100644 tests/tests/cpld_controlfrac_c192 rename tests/tests/{fv3_csawmgshoc => cpld_debugfrac} (60%) create mode 100644 tests/tests/cpld_restart_bmark create mode 100644 tests/tests/cpld_restart_bmarkfrac create mode 100644 tests/tests/cpld_restart_bmarkfrac_v16 create mode 100644 tests/tests/cpld_restart_c192 rename tests/tests/{cpld_restart_mx025 => cpld_restart_c384} (80%) rename tests/tests/{fv3_control => cpld_restartfrac} (64%) create mode 100644 tests/tests/cpld_restartfrac_c192 rename tests/tests/{cpld_control_mx025 => cpld_restartfrac_c384} (73%) create mode 100644 tests/tests/datm_bulk_cfsr create mode 100644 tests/tests/datm_bulk_gefs create mode 100644 tests/tests/datm_debug_cfsr create mode 100644 tests/tests/datm_restart_cfsr delete mode 100644 tests/tests/fv3_2threads delete mode 100644 tests/tests/fv3_appbuild rename tests/tests/{fv3_ccpp_gfs_v16beta_RRTMGP => fv3_ccpp_gfs_v16} (79%) rename tests/tests/{fv3_ccpp_gfs_v16beta => fv3_ccpp_gfs_v16_RRTMGP} (92%) rename tests/tests/{fv3_ca => fv3_ccpp_gfs_v16_RRTMGP_c192L127} (68%) rename tests/tests/{fv3_ccpp_gfs_v16beta_debug => fv3_ccpp_gfs_v16_RRTMGP_debug} (91%) rename tests/tests/{fv3_ccpp_gfs_v16beta_RRTMGP_debug => fv3_ccpp_gfs_v16_debug} (90%) rename tests/tests/{fv3_gfs_v15p2 => fv3_ccpp_gfs_v16_flake} (90%) rename tests/tests/{fv3_restart => fv3_ccpp_gfs_v16_restart} (68%) rename tests/tests/{fv3_stochy => fv3_ccpp_gfs_v16_stochy} (87%) delete mode 100644 tests/tests/fv3_ccpp_gfs_v16beta_flake rename tests/tests/{fv3_gfs_v16beta => fv3_ccpp_gfsv16_ugwpv1} (81%) rename tests/tests/{fv3_multigases => fv3_ccpp_gfsv16_ugwpv1_debug} (71%) rename tests/tests/{fv3_wsm6 => fv3_ccpp_gfsv16_ugwpv1_warmstart} (81%) rename tests/tests/{fv3_read_inc => fv3_ccpp_gsd_RRTMGP} (66%) rename tests/tests/{fv3_h2ophys => fv3_ccpp_gsd_RRTMGP_debug} (68%) create mode 100644 tests/tests/fv3_ccpp_regional_control_debug delete mode 100644 tests/tests/fv3_control_32bit delete mode 100644 tests/tests/fv3_control_debug delete mode 100644 tests/tests/fv3_cpt delete mode 100644 tests/tests/fv3_csawmg delete mode 100644 tests/tests/fv3_csawmg3shoc127 delete mode 100644 tests/tests/fv3_gfdlmp delete mode 100644 tests/tests/fv3_gfdlmp_32bit delete mode 100644 tests/tests/fv3_gfdlmprad delete mode 100644 tests/tests/fv3_gfdlmprad_32bit_post delete mode 100644 tests/tests/fv3_gfdlmprad_atmwav delete mode 100644 tests/tests/fv3_gfdlmprad_gwd delete mode 100644 tests/tests/fv3_gfdlmprad_noahmp delete mode 100644 tests/tests/fv3_gfsv16_csawmg delete mode 100644 tests/tests/fv3_gfsv16_csawmgt delete mode 100644 tests/tests/fv3_gocart_clm delete mode 100644 tests/tests/fv3_iau delete mode 100644 tests/tests/fv3_lheatstrg delete mode 100644 tests/tests/fv3_ozphys_2015 delete mode 100644 tests/tests/fv3_regional_c768 delete mode 100644 tests/tests/fv3_regional_control delete mode 100644 tests/tests/fv3_regional_quilt delete mode 100644 tests/tests/fv3_regional_restart delete mode 100644 tests/tests/fv3_sas delete mode 100644 tests/tests/fv3_satmedmf delete mode 100644 tests/tests/fv3_satmedmfq delete mode 100644 tests/tests/fv3_stretched delete mode 100644 tests/tests/fv3_stretched_nest delete mode 100644 tests/tests/fv3_stretched_nest_debug delete mode 100644 tests/tests/fv3_stretched_nest_quilt delete mode 100644 tests/tests/fv3_thompson delete mode 100644 tests/tests/fv3_wrtGauss_nemsio delete mode 100644 tests/tests/fv3_wrtGauss_nemsio_c192 delete mode 100644 tests/tests/fv3_wrtGauss_nemsio_c768 delete mode 100644 tests/tests/fv3_wrtGauss_netcdf delete mode 100644 tests/tests/fv3_wrtGauss_netcdf_debug delete mode 100644 tests/tests/fv3_wrtGauss_netcdf_esmf delete mode 100644 tests/tests/fv3_wrtGlatlon_netcdf diff --git a/.gitmodules b/.gitmodules index 9acca404b5..5524c9d299 100644 --- a/.gitmodules +++ b/.gitmodules @@ -9,7 +9,7 @@ [submodule "FMS"] path = FMS url = https://github.com/NOAA-GFDL/FMS - branch = master + branch = release/2020.04 [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/CICE-interface/CMakeLists.txt b/CICE-interface/CMakeLists.txt index db4bf3a02b..6a27d3a88a 100644 --- a/CICE-interface/CMakeLists.txt +++ b/CICE-interface/CMakeLists.txt @@ -9,7 +9,7 @@ elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") set(CMAKE_Fortran_FLAGS "-g -traceback") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -FR -convert big_endian -assume byterecl -ftz -align array64byte -xHOST") set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") - set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check uninit -check bounds -check pointers -fpe0 -check noarg_temp_created -link_mpi=dbg") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check uninit -check bounds -check pointers -fpe0 -check noarg_temp_created") set(CMAKE_Fortran_LINK_FLAGS "") else() message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index efb8d35303..0658dde477 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit efb8d353030c0c62ddf99051195f981841101cac +Subproject commit 0658dde477b92348bc8608a8c1d20485843bf4a4 diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index 7fa97094df..ae4e71627c 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -16,17 +16,17 @@ else() endif() list(APPEND _nems_util_files - CMEPS/nems/util/shr_abort_mod.F90 - CMEPS/nems/util/shr_log_mod.F90 - CMEPS/nems/util/shr_pio_mod.F90 - CMEPS/nems/util/shr_sys_mod.F90 - CMEPS/nems/util/shr_flux_mod.F90 - CMEPS/nems/util/shr_mpi_mod.F90 - CMEPS/nems/util/glc_elevclass_mod.F90 - CMEPS/nems/util/shr_mem_mod.F90 - CMEPS/nems/util/shr_kind_mod.F90 - CMEPS/nems/util/perf_mod.F90 - CMEPS/nems/util/shr_const_mod.F90) + CMEPS/util/shr_abort_mod.F90 + CMEPS/util/shr_log_mod.F90 + CMEPS/util/shr_pio_mod.F90 + CMEPS/util/shr_sys_mod.F90 + CMEPS/util/shr_flux_mod.F90 + CMEPS/util/shr_mpi_mod.F90 + CMEPS/util/glc_elevclass_mod.F90 + CMEPS/util/shr_mem_mod.F90 + CMEPS/util/shr_kind_mod.F90 + CMEPS/util/perf_mod.F90 + CMEPS/util/shr_const_mod.F90) list(APPEND _mediator_files CMEPS/mediator/med_phases_restart_mod.F90 @@ -56,7 +56,14 @@ list(APPEND _mediator_files CMEPS/mediator/med_fraction_mod.F90 CMEPS/mediator/med_phases_aofluxes_mod.F90 CMEPS/mediator/med_io_mod.F90 - CMEPS/mediator/med_diag_mod.F90) + CMEPS/mediator/med_diag_mod.F90 + CMEPS/mediator/med_phases_post_atm_mod.F90 + CMEPS/mediator/med_phases_post_ice_mod.F90 + CMEPS/mediator/med_phases_post_ocn_mod.F90 + CMEPS/mediator/med_phases_post_lnd_mod.F90 + CMEPS/mediator/med_phases_post_glc_mod.F90 + CMEPS/mediator/med_phases_post_rof_mod.F90 + CMEPS/mediator/med_phases_post_wav_mod.F90) list(APPEND _mediator_defs ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR} ESMF_VERSION_MINOR=${ESMF_VERSION_MINOR} diff --git a/CMakeLists.txt b/CMakeLists.txt index a00e1472cf..c1782977d2 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") @@ -32,6 +31,7 @@ set(QUAD_PRECISION ON CACHE BOOL "Enable QUAD_PRECISION (for certain grid metr set(REPRO OFF CACHE BOOL "Enable REPRO mode") set(WW3 OFF CACHE BOOL "Enable WW3") set(S2S OFF CACHE BOOL "Enable S2S") +set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") set(DATM OFF CACHE BOOL "Enable Data Atmosphere") ############################################################################### @@ -39,6 +39,8 @@ set(DATM OFF CACHE BOOL "Enable Data Atmosphere") ############################################################################### if(DEBUG) set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Set type of build to Debug." FORCE) +else() + set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Set type of build to Release." FORCE) endif() if(CMAKE_Platform) @@ -49,13 +51,23 @@ if(CMAKE_Platform) else() message("Platform '${CMAKE_Platform}' configuration file does not exist") endif() + + # DH* 20210208 temporary workaround for FMS issues on Cheyenne with GNU 9.1.0 + if (CMAKE_Platform MATCHES "cheyenne.gnu") + message("Applying patch cheyenne_gnu_fms_mpp_util_mpi_inc.patch") + execute_process(COMMAND patch -N -p0 INPUT_FILE cheyenne_gnu_fms_mpp_util_mpi_inc.patch + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + OUTPUT_FILE ${CMAKE_CURRENT_BINARY_DIR}/cheyenne_gnu_fms_mpp_util_mpi_inc.patch.out + ERROR_FILE ${CMAKE_CURRENT_BINARY_DIR}/cheyenne_gnu_fms_mpp_util_mpi_inc.patch.err + RESULT_VARIABLE RC) + # *DH 20210208 + endif() endif() 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}") @@ -109,13 +121,9 @@ 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}") -endif() +# Configure Python +find_package(Python 3 REQUIRED COMPONENTS Interpreter) +message("Found Python: ${Python_EXECUTABLE}") ############################################################################### ### Checks @@ -132,9 +140,7 @@ endif() ### FMS ############################################################################### include(fms_files.cmake) -add_library(fms ${fms_src_files}) -# stupid cmake can not figure out dependency of fft.F90 on fft99.F90 because 'use fft99_mod' is inside ifdefs -set_property(SOURCE FMS/fft/fft.F90 APPEND_STRING PROPERTY COMPILE_FLAGS "-DSGICRAY=0 -DNAGFFT=0") +add_library(fms ${fms_src_files} ${fms_headers}) list(APPEND _fms_defs_public use_libMPI use_netCDF @@ -143,17 +149,31 @@ list(APPEND _fms_defs_public use_libMPI if(QUAD_PRECISION) list(APPEND _fms_defs_public ENABLE_QUAD_PRECISION) endif() + +# check gettid +include(CheckFunctionExists) +check_function_exists(gettid HAVE_GETTID) +if(HAVE_GETTID) + list(APPEND _fms_defs_public HAVE_GETTID) +endif() + target_compile_definitions(fms PUBLIC "${_fms_defs_public}") if(32BIT) list(APPEND _fms_defs_private OVERLOAD_R4 OVERLOAD_R8) endif() + target_compile_definitions(fms PRIVATE "${_fms_defs_private}") target_include_directories(fms PUBLIC $ $ + $ + $ $) +target_include_directories(fms INTERFACE + $ + $) target_link_libraries(fms PUBLIC MPI::MPI_Fortran NetCDF::NetCDF_Fortran) if(OpenMP_Fortran_FOUND) @@ -161,8 +181,7 @@ if(OpenMP_Fortran_FOUND) endif() set_target_properties(fms PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS) set_target_properties(fms PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod) -target_include_directories(fms INTERFACE $ - $) +set_target_properties(fms PROPERTIES PUBLIC_HEADER "${fms_headers}" ) ############################################################################### ### stochastic_physics @@ -189,6 +208,10 @@ if(WW3) set(WW3_COMP "hera") elseif(${CMAKE_Platform} STREQUAL "orion.intel") set(WW3_COMP "orion") + elseif(${CMAKE_Platform} STREQUAL "cheyenne.intel") + set(WW3_COMP "cheyenne") + elseif(${CMAKE_Platform} STREQUAL "wcoss2") + set(WW3_COMP "wcoss_cray") elseif(${CMAKE_Platform} MATCHES "linux*" OR ${CMAKE_Platform} MATCHES "macosx*") if (CMAKE_Fortran_COMPILER_ID MATCHES "GNU") set(WW3_COMP "gnu") @@ -232,8 +255,7 @@ list(APPEND _nems_srcs NEMS/src/module_NEMS_UTILS.F90 NEMS/src/module_NEMS_INTERNAL_STATE.F90 NEMS/src/module_NEMS_GRID_COMP.F90 NEMS/src/module_NEMS_Rusage.F90 - NEMS/src/nems_c_rusage.c - NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90) + NEMS/src/nems_c_rusage.c) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h ${CMAKE_CURRENT_BINARY_DIR}/NEMS/src/ESMFVersionDefine.h @@ -259,7 +281,9 @@ else() list(APPEND _ufs_defs_private FRONT_FV3=fv3gfs_cap_mod) add_dependencies(ufs fv3atm) endif() - +if(JEDI_DRIVER) + list(APPEND _ufs_defs_private JEDI_DRIVER=ON) +endif() set_target_properties(ufs PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(ufs PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/NEMS/src) @@ -314,7 +338,7 @@ endif() target_compile_definitions(ufs_model PRIVATE "${_ufs_model_defs_private}") if(DATM) - target_link_libraries(ufs_model PRIVATE ufs w3nco::w3nco_d) + target_link_libraries(ufs_model PUBLIC ufs w3nco::w3nco_d) endif() target_link_libraries(ufs_model PRIVATE ufs esmf @@ -325,17 +349,28 @@ target_link_libraries(ufs_model PRIVATE ufs ### Install ############################################################################### install( - TARGETS ufs_model ufs fms - EXPORT ufs-config - RUNTIME DESTINATION bin + TARGETS fms + EXPORT fms-config + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib + PUBLIC_HEADER DESTINATION include ) + +install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod DESTINATION ${CMAKE_INSTALL_PREFIX}) + +install(EXPORT fms-config + DESTINATION lib/cmake +) +install( + TARGETS ufs + EXPORT ufs-config LIBRARY DESTINATION lib ARCHIVE DESTINATION lib) install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PREFIX}) -install(EXPORT ufs-config - DESTINATION lib/cmake) - +install(EXPORT ufs-config + DESTINATION lib/cmake +) ############################################################################### ### Done ############################################################################### diff --git a/DATM b/DATM index 84e9a1fb91..1e9ab6ed17 160000 --- a/DATM +++ b/DATM @@ -1 +1 @@ -Subproject commit 84e9a1fb91ee83d602d56f633ae18fe7eb26c273 +Subproject commit 1e9ab6ed1763c981dc8e294c737c449644a9d1fe diff --git a/FMS b/FMS index f61416fef6..0707f2c027 160000 --- a/FMS +++ b/FMS @@ -1 +1 @@ -Subproject commit f61416fef691d9ba39a40df1ce72aa574f54c390 +Subproject commit 0707f2c0279a9efd12cdbf0133c1e09435766928 diff --git a/FV3 b/FV3 index fa070c8349..c48b45a947 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit fa070c83497debb2c34e310f7f6cdb767d282a80 +Subproject commit c48b45a9473a7f21a66c7c2217fd6e06590d6297 diff --git a/MOM6-interface/CMakeLists.txt b/MOM6-interface/CMakeLists.txt index bc7e2a6d71..0c09b62619 100644 --- a/MOM6-interface/CMakeLists.txt +++ b/MOM6-interface/CMakeLists.txt @@ -11,7 +11,7 @@ elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -i4 -r8") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -sox") set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -debug minimal -fp-model source") - set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv -link_mpi=dbg") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv") set(CMAKE_Fortran_LINK_FLAGS "") else() message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 18bf38869e..cdc7690f41 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 18bf38869eb10b17c442e1384f613b194e07fb26 +Subproject commit cdc7690f41fb747df435a07b92dcf3fa02420a6b diff --git a/NEMS b/NEMS index 251d70c3a4..b80b5b1880 160000 --- a/NEMS +++ b/NEMS @@ -1 +1 @@ -Subproject commit 251d70c3a4f79cc88010468d7f517e95045a6e79 +Subproject commit b80b5b18805302290f821e960d820e99e0bcd9ef diff --git a/WW3 b/WW3 index 9c22b13506..a89e2a6339 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 9c22b13506e797940ebab538fe4a3940dd9e3fc0 +Subproject commit a89e2a6339a016522d3a84188756d0a4bb11be87 diff --git a/cheyenne_gnu_fms_mpp_util_mpi_inc.patch b/cheyenne_gnu_fms_mpp_util_mpi_inc.patch new file mode 100644 index 0000000000..aeb2facc39 --- /dev/null +++ b/cheyenne_gnu_fms_mpp_util_mpi_inc.patch @@ -0,0 +1,12 @@ +--- FMS/mpp/include/mpp_util_mpi.inc 2021-02-08 08:24:21.000000000 -0700 ++++ FMS/mpp/include/mpp_util_mpi.inc 2021-02-08 08:24:15.000000000 -0700 +@@ -169,7 +169,8 @@ + integer, intent(in ), optional :: msg_size(:) + integer, intent(in ), optional :: msg_type(:) + +- integer :: i, m, n, stride, my_check, rsize ++ integer :: i, m, n, stride, my_check ++ integer, volatile :: rsize + + if( debug .and. (current_clock.NE.0) )call SYSTEM_CLOCK(start_tick) + my_check = EVENT_SEND diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake index 6d2eb74537..b39848964c 100644 --- a/cmake/Intel.cmake +++ b/cmake/Intel.cmake @@ -21,11 +21,13 @@ elseif(DEBUG) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -qno-opt-dynamic-align") else() if(AVX2) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -xCORE-AVX2 -qno-opt-dynamic-align") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -xCORE-AVX2 -qno-opt-dynamic-align") + #set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -xCORE-AVX2 -qno-opt-dynamic-align") + #set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -xCORE-AVX2 -qno-opt-dynamic-align") + 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/cmake/configure_wcoss2.cmake b/cmake/configure_wcoss2.cmake new file mode 100644 index 0000000000..c8a689be6c --- /dev/null +++ b/cmake/configure_wcoss2.cmake @@ -0,0 +1,3 @@ +set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) +set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) diff --git a/fms_files.cmake b/fms_files.cmake index fffd5a3b71..81e3cfb381 100644 --- a/fms_files.cmake +++ b/fms_files.cmake @@ -3,6 +3,7 @@ list(APPEND fms_src_files FMS/amip_interp/amip_interp.F90 FMS/astronomy/astronomy.F90 FMS/axis_utils/axis_utils.F90 + FMS/axis_utils/axis_utils2.F90 FMS/block_control/block_control.F90 FMS/column_diagnostics/column_diagnostics.F90 FMS/constants/constants.F90 @@ -10,12 +11,13 @@ list(APPEND fms_src_files FMS/coupler/coupler_types.F90 FMS/coupler/ensemble_manager.F90 FMS/data_override/data_override.F90 + FMS/data_override/get_grid_version_fms2io.F90 + FMS/data_override/get_grid_version_mpp.F90 FMS/diag_integral/diag_integral.F90 FMS/diag_manager/diag_axis.F90 FMS/diag_manager/diag_data.F90 FMS/diag_manager/diag_grid.F90 FMS/diag_manager/diag_manager.F90 - FMS/diag_manager/diag_manifest.F90 FMS/diag_manager/diag_output.F90 FMS/diag_manager/diag_table.F90 FMS/diag_manager/diag_util.F90 @@ -28,12 +30,16 @@ list(APPEND fms_src_files FMS/drifters/quicksort.F90 FMS/exchange/stock_constants.F90 FMS/exchange/xgrid.F90 - FMS/fft/fft.F90 - FMS/fft/fft99.F90 FMS/field_manager/field_manager.F90 FMS/field_manager/fm_util.F90 FMS/fms/fms.F90 FMS/fms/fms_io.F90 + FMS/fms2_io/blackboxio.F90 + FMS/fms2_io/fms_io_utils.F90 + FMS/fms2_io/fms_netcdf_domain_io.F90 + FMS/fms2_io/fms_netcdf_unstructured_domain_io.F90 + FMS/fms2_io/fms2_io.F90 + FMS/fms2_io/netcdf_io.F90 FMS/horiz_interp/horiz_interp.F90 FMS/horiz_interp/horiz_interp_bicubic.F90 FMS/horiz_interp/horiz_interp_bilinear.F90 @@ -43,10 +49,11 @@ list(APPEND fms_src_files FMS/interpolator/interpolator.F90 FMS/memutils/memutils.F90 FMS/monin_obukhov/monin_obukhov.F90 - FMS/monin_obukhov/monin_obukhov_kernel.F90 + FMS/monin_obukhov/monin_obukhov_inter.F90 FMS/mosaic/gradient.F90 FMS/mosaic/grid.F90 FMS/mosaic/mosaic.F90 + FMS/mosaic/mosaic2.F90 FMS/mpp/mpp.F90 FMS/mpp/mpp_data.F90 FMS/mpp/mpp_domains.F90 @@ -54,16 +61,15 @@ list(APPEND fms_src_files FMS/mpp/mpp_io.F90 FMS/mpp/mpp_memutils.F90 FMS/mpp/mpp_parameter.F90 - FMS/mpp/mpp_pset.F90 FMS/mpp/mpp_utilities.F90 FMS/platform/platform.F90 - FMS/random_numbers/MersenneTwister.F90 + FMS/random_numbers/mersennetwister.F90 FMS/random_numbers/random_numbers.F90 FMS/sat_vapor_pres/sat_vapor_pres.F90 FMS/sat_vapor_pres/sat_vapor_pres_k.F90 - FMS/station_data/station_data.F90 FMS/time_interp/time_interp.F90 FMS/time_interp/time_interp_external.F90 + FMS/time_interp/time_interp_external2.F90 FMS/time_manager/get_cal_time.F90 FMS/time_manager/time_manager.F90 FMS/topography/gaussian_topog.F90 @@ -71,12 +77,16 @@ list(APPEND fms_src_files FMS/tracer_manager/tracer_manager.F90 FMS/tridiagonal/tridiagonal.F90 - FMS/memutils/memuse.c + FMS/affinity/affinity.c + FMS/mpp/mpp_memuse.c FMS/mosaic/create_xgrid.c FMS/mosaic/gradient_c2l.c FMS/mosaic/interp.c FMS/mosaic/mosaic_util.c FMS/mosaic/read_mosaic.c - FMS/mpp/nsclock.c - FMS/mpp/threadloc.c +) + +list( APPEND fms_headers +FMS/include/fms_platform.h +FMS/include/file_version.h ) diff --git a/modulefiles/cheyenne.gnu/fv3 b/modulefiles/cheyenne.gnu/fv3 index 8e537f777f..b9b86004be 100644 --- a/modulefiles/cheyenne.gnu/fv3 +++ b/modulefiles/cheyenne.gnu/fv3 @@ -19,8 +19,8 @@ module load mpt/2.22 module load ncarcompilers/0.5.0 module unload netcdf -module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-nco-20201113/modulefiles/stack -module load hpc/1.0.0-beta1 +module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-v1.1.0/modulefiles/stack +module load hpc/1.1.0 module load hpc-gnu/9.1.0 module load hpc-mpt/2.22 diff --git a/modulefiles/cheyenne.gnu/fv3_debug b/modulefiles/cheyenne.gnu/fv3_debug index ce689a6dc6..38d0a4a9af 100644 --- a/modulefiles/cheyenne.gnu/fv3_debug +++ b/modulefiles/cheyenne.gnu/fv3_debug @@ -19,8 +19,8 @@ module load mpt/2.22 module load ncarcompilers/0.5.0 module unload netcdf -module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-nco-20201113/modulefiles/stack -module load hpc/1.0.0-beta1 +module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-v1.1.0/modulefiles/stack +module load hpc/1.1.0 module load hpc-gnu/9.1.0 module load hpc-mpt/2.22 diff --git a/modulefiles/cheyenne.intel/fv3 b/modulefiles/cheyenne.intel/fv3 index 0f93963426..830e7c1f10 100644 --- a/modulefiles/cheyenne.intel/fv3 +++ b/modulefiles/cheyenne.intel/fv3 @@ -19,8 +19,8 @@ module load mpt/2.22 module load ncarcompilers/0.5.0 module unload netcdf -module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-nco-20201113/modulefiles/stack -module load hpc/1.0.0-beta1 +module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-v1.1.0/modulefiles/stack +module load hpc/1.1.0 module load hpc-intel/19.1.1 module load hpc-mpt/2.22 diff --git a/modulefiles/cheyenne.intel/fv3_debug b/modulefiles/cheyenne.intel/fv3_debug index e3830bab69..e757b778b3 100644 --- a/modulefiles/cheyenne.intel/fv3_debug +++ b/modulefiles/cheyenne.intel/fv3_debug @@ -19,8 +19,8 @@ module load mpt/2.22 module load ncarcompilers/0.5.0 module unload netcdf -module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-nco-20201113/modulefiles/stack -module load hpc/1.0.0-beta1 +module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-v1.1.0/modulefiles/stack +module load hpc/1.1.0 module load hpc-intel/19.1.1 module load hpc-mpt/2.22 diff --git a/modulefiles/gaea.intel/fv3 b/modulefiles/gaea.intel/fv3 index 7725904836..34b193edbe 100644 --- a/modulefiles/gaea.intel/fv3 +++ b/modulefiles/gaea.intel/fv3 @@ -20,13 +20,13 @@ setenv CMAKE_CXX_COMPILER CC setenv CMAKE_Fortran_COMPILER ftn setenv CMAKE_Platform gaea.intel -module use /lustre/f2/pdata/esrl/gsd/ufs/hpc-stack-nco-20201116/modulefiles/stack +module use /lustre/f2/pdata/esrl/gsd/ufs/hpc-stack-v1.1.0/modulefiles/stack -module load hpc/1.0.0-beta1 +module load hpc/1.1.0 module load hpc-intel/18.0.6.288 module load hpc-cray-mpich/7.7.11 -module load jasper/2.0.15 +module load jasper/2.0.22 module load zlib/1.2.11 module load png/1.6.35 diff --git a/modulefiles/gaea.intel/fv3_debug b/modulefiles/gaea.intel/fv3_debug new file mode 100644 index 0000000000..e74d6f7d9f --- /dev/null +++ b/modulefiles/gaea.intel/fv3_debug @@ -0,0 +1,50 @@ +#%Module + +proc ModulesHelp {} { + puts stderr "\tcit - loads modules required for building and running UFS Model on Gaea/Intel" +} + +module-whatis "loads UFS Model prerequisites for Gaea/Intel" + +module load PrgEnv-intel/6.0.5 +module rm intel +module rm cray-mpich +module rm netcdf +module load intel/18.0.6.288 +module load cray-mpich/7.7.11 +module load cray-python/3.7.3.2 + +module load cmake/3.17.0 +setenv CMAKE_C_COMPILER cc +setenv CMAKE_CXX_COMPILER CC +setenv CMAKE_Fortran_COMPILER ftn +setenv CMAKE_Platform gaea.intel + +module use /lustre/f2/pdata/esrl/gsd/ufs/hpc-stack-v1.1.0/modulefiles/stack + +module load hpc/1.1.0 +module load hpc-intel/18.0.6.288 +module load hpc-cray-mpich/7.7.11 + +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-debug + +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 + +# Needed at runtime: +module load alps diff --git a/modulefiles/hera.gnu/fv3 b/modulefiles/hera.gnu/fv3 index ec83aac5b6..c20b313c4f 100644 --- a/modulefiles/hera.gnu/fv3 +++ b/modulefiles/hera.gnu/fv3 @@ -15,8 +15,8 @@ setenv CMAKE_CXX_COMPILER mpicxx setenv CMAKE_Fortran_COMPILER mpif90 setenv CMAKE_Platform hera.gnu -module use /scratch2/NCEPDEV/nwprod/hpc-stack/test/modulefiles/stack -module load hpc/1.0.0-beta1 +module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack +module load hpc/1.1.0 module load hpc-gnu/9.2.0 module load hpc-mpich/3.3.2 module load mpich/3.3.2 diff --git a/modulefiles/hera.intel/fv3 b/modulefiles/hera.intel/fv3 index 5f72ffe067..cdbfa0e629 100644 --- a/modulefiles/hera.intel/fv3 +++ b/modulefiles/hera.intel/fv3 @@ -15,9 +15,9 @@ setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform hera.intel -module use /scratch2/NCEPDEV/nwprod/hpc-stack/test/modulefiles/stack +module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack -module load hpc/1.0.0-beta1 +module load hpc/1.1.0 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 diff --git a/modulefiles/hera.intel/fv3_debug b/modulefiles/hera.intel/fv3_debug index e6d2ddbd3f..ce6eb2fe40 100644 --- a/modulefiles/hera.intel/fv3_debug +++ b/modulefiles/hera.intel/fv3_debug @@ -15,9 +15,9 @@ setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform hera.intel -module use /scratch2/NCEPDEV/nwprod/hpc-stack/test/modulefiles/stack +module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack -module load hpc/1.0.0-beta1 +module load hpc/1.1.0 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 diff --git a/modulefiles/jet.intel/fv3 b/modulefiles/jet.intel/fv3 index b56733b2c3..e2762bd904 100644 --- a/modulefiles/jet.intel/fv3 +++ b/modulefiles/jet.intel/fv3 @@ -17,7 +17,6 @@ setenv CMAKE_Platform jet.intel module use /lfs4/HFIP/hfv3gfs/nwprod/hpc-stack/libs/modulefiles/stack -# At this time (2020/11/30), this is the pre-release version 1.0.0 module load hpc/1.1.0 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.4.274 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/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 new file mode 100755 index 0000000000..40b281000b --- /dev/null +++ b/modulefiles/linux.gnu/fv3_debug @@ -0,0 +1,50 @@ +#!/bin/bash + +#%Module###################################################################### +## +## UFS 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 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 new file mode 100755 index 0000000000..f99e07ad70 --- /dev/null +++ b/modulefiles/macosx.gnu/fv3_debug @@ -0,0 +1,44 @@ +#!/bin/bash + +#%Module###################################################################### +## +## UFS 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" diff --git a/modulefiles/orion.intel/fv3 b/modulefiles/orion.intel/fv3 index 2ea5d565cf..017eaabe18 100644 --- a/modulefiles/orion.intel/fv3 +++ b/modulefiles/orion.intel/fv3 @@ -13,10 +13,11 @@ setenv CMAKE_C_COMPILER mpiicc setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform orion.intel +module load python/3.7.5 -module use /apps/contrib/NCEP/test/hpc-stack-nco/modulefiles/stack +module use /apps/contrib/NCEP/libs/hpc-stack/modulefiles/stack -module load hpc/1.0.0-beta1 +module load hpc/1.1.0 module load hpc-intel/2018.4 module load hpc-impi/2018.4 diff --git a/modulefiles/orion.intel/fv3_debug b/modulefiles/orion.intel/fv3_debug index a95f7b2cf8..95d2d15719 100644 --- a/modulefiles/orion.intel/fv3_debug +++ b/modulefiles/orion.intel/fv3_debug @@ -13,10 +13,11 @@ setenv CMAKE_C_COMPILER mpiicc setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform orion.intel +module load python/3.7.5 -module use /apps/contrib/NCEP/test/hpc-stack-nco/modulefiles/stack +module use /apps/contrib/NCEP/libs/hpc-stack/modulefiles/stack -module load hpc/1.0.0-beta1 +module load hpc/1.1.0 module load hpc-intel/2018.4 module load hpc-impi/2018.4 diff --git a/modulefiles/wcoss2/fv3 b/modulefiles/wcoss2/fv3 new file mode 100644 index 0000000000..fbb682affc --- /dev/null +++ b/modulefiles/wcoss2/fv3 @@ -0,0 +1,42 @@ +#%Module + +proc ModulesHelp {} { + puts stderr "\tcit - loads modules required for building and running UFS Model on the Dell side of WCOSS" +} + +module-whatis "loads UFS Model prerequisites on Venus and Mars" + +module unload cpe-cray cce +module load cpe-intel intel + +module load cmake/3.17.3 +setenv CMAKE_C_COMPILER cc +setenv CMAKE_CXX_COMPILER CC +setenv CMAKE_Fortran_COMPILER ftn +setenv CMAKE_Platform wcoss2 + +module use /lfs/h1/emc/nceplibs/noscrub/hpc-stack/test/noaa/modulefiles/stack + +module load hpc/1.0.0-beta1 +module load hpc-intel/19.1.1.217 +module load hpc-cray-mpich/8.0.15 + +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/modulefiles/wcoss2/fv3_debug b/modulefiles/wcoss2/fv3_debug new file mode 100644 index 0000000000..fbb682affc --- /dev/null +++ b/modulefiles/wcoss2/fv3_debug @@ -0,0 +1,42 @@ +#%Module + +proc ModulesHelp {} { + puts stderr "\tcit - loads modules required for building and running UFS Model on the Dell side of WCOSS" +} + +module-whatis "loads UFS Model prerequisites on Venus and Mars" + +module unload cpe-cray cce +module load cpe-intel intel + +module load cmake/3.17.3 +setenv CMAKE_C_COMPILER cc +setenv CMAKE_CXX_COMPILER CC +setenv CMAKE_Fortran_COMPILER ftn +setenv CMAKE_Platform wcoss2 + +module use /lfs/h1/emc/nceplibs/noscrub/hpc-stack/test/noaa/modulefiles/stack + +module load hpc/1.0.0-beta1 +module load hpc-intel/19.1.1.217 +module load hpc-cray-mpich/8.0.15 + +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/modulefiles/wcoss_cray/fv3 b/modulefiles/wcoss_cray/fv3 index 63761cf9aa..2610523416 100644 --- a/modulefiles/wcoss_cray/fv3 +++ b/modulefiles/wcoss_cray/fv3 @@ -38,22 +38,21 @@ setenv PNG_ROOT /usrx/local/prod//png/1.2.49/intel/sandybridge ## ## NCEP libraries ## -module use /usrx/local/nceplibs/NCEPLIBS/cmake/install/NCEPLIBS_UFS/modules -module load bacio/2.4.0 +module use /usrx/local/nceplibs/NCEPLIBS/cmake/install/NCEPLIBS-v1.3.0/modules +module load bacio/2.4.1 module load crtm/2.3.0 -module load g2/3.4.0 -module load g2tmpl/1.9.0 -module load ip/3.3.0 -module load nemsio/2.5.1 -module load sp/2.3.0 -module load w3emc/2.7.0 -module load w3nco/2.4.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 gfsio/1.4.0 -module load sfcio/1.4.0 -module load sigio/2.3.0 +module load gfsio/1.4.1 +module load sfcio/1.4.1 +module load sigio/2.3.2 -module use /usrx/local/nceplibs/NCEPLIBS/cmake/install/NCEPLIBS_UFS/modules module load upp/10.0.0 ## WCOSS Cray execution prereqs: diff --git a/modulefiles/wcoss_cray/fv3_debug b/modulefiles/wcoss_cray/fv3_debug new file mode 100644 index 0000000000..2610523416 --- /dev/null +++ b/modulefiles/wcoss_cray/fv3_debug @@ -0,0 +1,77 @@ +#%Module###################################################################### +## +## NEMS FV3 Prerequisites: Surge and Luna (WCOSS Cray) + +proc ModulesHelp {} { + puts stderr "\tcit - loads modules required for building and running FV3 under NEMS on the Cray side of WCOSS" +} + +module-whatis "loads NEMS FV3 prerequisites on Surge and Luna" + +# NOTE: the "module purge" and loading of the module command are +# handled by the module-setup.sh (or .csh) script. + +## +## load programming environment +## this typically includes compiler, MPI and job scheduler +## +module load PrgEnv-intel +module rm intel +module load intel/18.1.163 +module rm NetCDF-intel-sandybridge/4.2 +module load xt-lsfhpc/9.1.3 +module load craype-haswell +module load python/3.6.3 +module load cmake/3.16.2 +module load gcc/5.3.0 +# +module use /usrx/local/dev/modulefiles +module load NetCDF-intel-sandybridge/4.7.4 +module load HDF5-parallel-intel-sandybridge/1.10.6 + +## WCOSS cray for WW3 +module load jasper-gnu-sandybridge/1.900.1 +module load png-intel-sandybridge/1.2.49 +module load zlib-intel-sandybridge/1.2.7 +setenv PNG_ROOT /usrx/local/prod//png/1.2.49/intel/sandybridge + +## +## NCEP libraries +## +module use /usrx/local/nceplibs/NCEPLIBS/cmake/install/NCEPLIBS-v1.3.0/modules +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 gfsio/1.4.1 +module load sfcio/1.4.1 +module load sigio/2.3.2 + +module load upp/10.0.0 + +## WCOSS Cray execution prereqs: +module load rca +module load alps +module load xpmem +module load gni-headers +module load udreg +module load ugni + +module use /gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/modulefiles +module load esmf/8.1.0bs27 + +module swap pmi pmi/5.0.11 + +## +## load cmake +## +setenv CMAKE_C_COMPILER cc +setenv CMAKE_CXX_COMPILER CC +setenv CMAKE_Fortran_COMPILER ftn +setenv CMAKE_Platform wcoss_cray diff --git a/modulefiles/wcoss_dell_p3/fv3 b/modulefiles/wcoss_dell_p3/fv3 index 376ba6fc3b..94fc924ff0 100644 --- a/modulefiles/wcoss_dell_p3/fv3 +++ b/modulefiles/wcoss_dell_p3/fv3 @@ -17,9 +17,9 @@ setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform wcoss_dell_p3 -module use /usrx/local/nceplibs/dev/hpc-stack/test/hpc-stack/modulefiles/stack +module use /usrx/local/nceplibs/dev/hpc-stack/libs/hpc-stack/modulefiles/stack -module load hpc/1.0.0-beta1 +module load hpc/1.1.0 module load hpc-ips/18.0.1.163 module load hpc-impi/18.0.1 diff --git a/modulefiles/wcoss_dell_p3/fv3_debug b/modulefiles/wcoss_dell_p3/fv3_debug index 56a5e102f0..3fcf0c73cb 100644 --- a/modulefiles/wcoss_dell_p3/fv3_debug +++ b/modulefiles/wcoss_dell_p3/fv3_debug @@ -17,9 +17,9 @@ setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort setenv CMAKE_Platform wcoss_dell_p3 -module use /usrx/local/nceplibs/dev/hpc-stack/test/hpc-stack/modulefiles/stack +module use /usrx/local/nceplibs/dev/hpc-stack/libs/hpc-stack/modulefiles/stack -module load hpc/1.0.0-beta1 +module load hpc/1.1.0 module load hpc-ips/18.0.1.163 module load hpc-impi/18.0.1 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 8512ff84da..fdb44ea6fd 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Sun Dec 6 09:12:30 MST 2020 +Wed Feb 17 13:05:22 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/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-20201204/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/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,9 +118,9 @@ 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-20201204/GNU/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_prod -Checking test 003 fv3_ccpp_gfs_v16beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_prod +Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -139,6 +139,12 @@ Checking test 003 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 @@ -151,6 +157,130 @@ Checking test 003 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 ............SKIP for gnu compilers + 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 003 fv3_ccpp_gfs_v16 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_restart_prod +Checking test 004 fv3_ccpp_gfs_v16_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 ............SKIP for gnu compilers + 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 004 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_stochy_prod +Checking test 005 fv3_ccpp_gfs_v16_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 ............SKIP for gnu compilers Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -183,12 +313,12 @@ Checking test 003 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 003 fv3_ccpp_gfs_v16beta PASS +Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_flake_prod +Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -251,12 +381,12 @@ Checking test 004 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 004 fv3_ccpp_gfs_v16beta_flake PASS +Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -319,12 +449,12 @@ Checking test 005 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 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -387,12 +517,12 @@ Checking test 006 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 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gsd_prod -Checking test 007 fv3_ccpp_gsd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gsd_prod +Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -479,12 +609,12 @@ Checking test 007 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 007 fv3_ccpp_gsd PASS +Test 009 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_thompson_prod -Checking test 008 fv3_ccpp_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_thompson_prod +Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -547,12 +677,12 @@ Checking test 008 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 008 fv3_ccpp_thompson PASS +Test 010 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_thompson_no_aero_prod -Checking test 009 fv3_ccpp_thompson_no_aero results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -615,12 +745,12 @@ Checking test 009 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 009 fv3_ccpp_thompson_no_aero PASS +Test 011 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_rrfs_v1beta_prod -Checking test 010 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -683,12 +813,12 @@ Checking test 010 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 010 fv3_ccpp_rrfs_v1beta PASS +Test 012 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -751,12 +881,12 @@ Checking test 011 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 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/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 Comparing phyf012.nc .........OK @@ -769,12 +899,136 @@ Checking test 012 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 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... + 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 ............SKIP for gnu compilers + 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 015 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + 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 ............SKIP for gnu compilers + 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 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_control_debug_prod -Checking test 013 fv3_ccpp_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_control_debug_prod +Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -799,12 +1053,12 @@ Checking test 013 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 013 fv3_ccpp_control_debug PASS +Test 017 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -867,12 +1121,12 @@ Checking test 014 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 014 fv3_ccpp_gfs_v15p2_debug PASS +Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_debug_prod +Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -935,12 +1189,12 @@ Checking test 015 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 015 fv3_ccpp_gfs_v16beta_debug PASS +Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 020 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 @@ -1003,12 +1257,12 @@ Checking test 016 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 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1071,12 +1325,12 @@ Checking test 017 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 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_multigases_prod -Checking test 018 fv3_ccpp_multigases results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_multigases_prod +Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1145,12 +1399,23 @@ 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 022 fv3_ccpp_multigases PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_regional_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_regional_control_debug_prod +Checking test 023 fv3_ccpp_regional_control_debug 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 023 fv3_ccpp_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1201,39 +1466,373 @@ Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug 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 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug 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 024 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_71220/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gsd_debug_prod +Checking test 025 fv3_ccpp_gsd_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + 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 025 fv3_ccpp_gsd_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_thompson_debug_prod +Checking test 026 fv3_ccpp_thompson_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 ............SKIP for gnu compilers + 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 026 fv3_ccpp_thompson_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 027 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 + 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 ............SKIP for gnu compilers + 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 027 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 028 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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + 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 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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 ............SKIP for gnu compilers + 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 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sun Dec 6 09:28:45 MST 2020 -Elapsed time: 00h:16m:16s. Have a nice day! +Wed Feb 17 13:22:49 MST 2021 +Elapsed time: 00h:17m:28s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 6c320ecfa0..361f44df77 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Mon Dec 7 08:23:11 MST 2020 +Wed Feb 17 13:30:04 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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-20201204/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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-20201204/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,39 +206,21 @@ 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-20201204/INTEL/fv3_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart 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 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 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 @@ -274,8 +256,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-20201204/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 +324,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-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 +372,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-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 +420,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-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -449,8 +431,8 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf000.nc .........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 @@ -486,8 +468,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-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 +516,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-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 +564,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-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 +612,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-20201204/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -698,39 +680,39 @@ 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-20201204/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_iau_prod -Checking test 013 fv3_ccpp_iau results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 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 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 @@ -763,12 +745,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 013 fv3_ccpp_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_ca_prod -Checking test 014 fv3_ccpp_ca results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -781,24 +763,92 @@ Checking test 014 fv3_ccpp_ca 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 + 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-20210217/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -831,12 +881,12 @@ Checking test 014 fv3_ccpp_ca 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_ca PASS +Test 015 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_lheatstrg_prod -Checking test 015 fv3_ccpp_lheatstrg results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 +929,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-20201204/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_multigases_prod -Checking test 016 fv3_ccpp_multigases results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 +1003,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-20201204/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 +1071,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-20201204/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_stretched_prod -Checking test 018 fv3_ccpp_stretched results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 +1127,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-20201204/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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,104 +1194,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-20201204/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20210217/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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-20201204/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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-20201204/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK -Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_control_debug_prod -Checking test 024 fv3_ccpp_control_debug results .... - 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 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 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 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 -Test 024 fv3_ccpp_control_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_stretched_nest_debug_prod -Checking test 025 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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - 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 + Comparing phyf000.nc .........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-20201204/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfdlmp_prod -Checking test 026 fv3_ccpp_gfdlmp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmp_prod +Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1284,12 +1284,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 025 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 026 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 +1332,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 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 027 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 +1380,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 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_csawmg_prod -Checking test 029 fv3_ccpp_csawmg results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_csawmg_prod +Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1428,12 +1428,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 028 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_satmedmf_prod -Checking test 030 fv3_ccpp_satmedmf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_satmedmf_prod +Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1476,12 +1476,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 029 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_satmedmfq_prod -Checking test 031 fv3_ccpp_satmedmfq results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_satmedmfq_prod +Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1524,12 +1524,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 030 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmp_32bit_prod +Checking test 031 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 +1572,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 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 032 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 +1624,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 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_cpt_prod -Checking test 034 fv3_ccpp_cpt results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_cpt_prod +Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1678,12 +1678,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 033 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gsd_prod -Checking test 035 fv3_ccpp_gsd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gsd_prod +Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1770,12 +1770,12 @@ 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 034 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_thompson_prod -Checking test 036 fv3_ccpp_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_rap_prod +Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1838,12 +1838,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 035 fv3_ccpp_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20210217/INTEL/fv3_hrrr_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_hrrr_prod +Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1906,12 +1906,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 036 fv3_ccpp_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20210217/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -1974,12 +1974,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 037 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -2030,24 +2030,24 @@ Checking test 039 fv3_ccpp_gfs_v15p2 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 039 fv3_ccpp_gfs_v15p2 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 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/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-20210217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_rrfs_v1beta_prod +Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2098,24 +2098,24 @@ 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 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_prod +Checking test 040 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2134,6 +2134,12 @@ Checking test 041 fv3_ccpp_gfs_v15p2_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 @@ -2146,8 +2152,132 @@ Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... 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 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_v16 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_restart_prod +Checking test 041 fv3_ccpp_gfs_v16_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_v16_restart PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_stochy_prod +Checking test 042 fv3_ccpp_gfs_v16_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 @@ -2178,12 +2308,12 @@ Checking test 041 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 041 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 042 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 042 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 043 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2246,12 +2376,74 @@ Checking test 042 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 042 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 043 fv3_ccpp_gfs_v16_RRTMGP PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + 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 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gocart_clm_prod -Checking test 043 fv3_ccpp_gocart_clm results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gocart_clm_prod +Checking test 045 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2294,12 +2486,12 @@ Checking test 043 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 043 fv3_ccpp_gocart_clm PASS +Test 045 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_flake_prod +Checking test 046 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2362,12 +2554,12 @@ Checking test 044 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 044 fv3_ccpp_gfs_v16beta_flake PASS +Test 046 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 047 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 @@ -2430,12 +2622,12 @@ Checking test 045 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 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2448,42 +2640,36 @@ Checking test 046 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 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 047 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 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 049 fv3_ccpp_gfsv16_ugwpv1 results .... 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 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 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 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 @@ -2504,54 +2690,48 @@ Checking test 047 fv3_ccpp_gfs_v16beta_debug 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/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 047 fv3_ccpp_gfs_v16beta_debug PASS + 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_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 048 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 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... 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 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 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 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 @@ -2572,24 +2752,228 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP_debug 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/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_gfs_v15p2_RRTMGP_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... + 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 050 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_debug_prod +Checking test 052 fv3_ccpp_gfs_v16_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_v16_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2652,12 +3036,73 @@ 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 054 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_control_debug_prod +Checking test 055 fv3_ccpp_regional_control_debug 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 055 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_control_debug_prod +Checking test 056 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 056 fv3_ccpp_control_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_stretched_nest_debug_prod +Checking test 057 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 057 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gsd_debug_prod -Checking test 050 fv3_ccpp_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -2720,12 +3165,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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 051 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -2788,12 +3233,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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_thompson_debug_prod -Checking test 052 fv3_ccpp_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -2856,12 +3301,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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 053 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -2924,12 +3369,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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 054 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -2992,12 +3437,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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -3060,12 +3505,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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_36424/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 @@ -3078,9 +3523,1684 @@ 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 + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 065 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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/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 065 fv3_ccpp_gfsv16_ugwpv1_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_prod +Checking test 066 cpld_control results .... + 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 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 + 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_control PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_prod +Checking test 067 cpld_restart results .... + 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 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 + 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_restart PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_controlfrac_prod +Checking test 068 cpld_controlfrac results .... + 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 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 + 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_controlfrac PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restartfrac_prod +Checking test 069 cpld_restartfrac results .... + 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 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 + 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_restartfrac PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_2threads_prod +Checking test 070 cpld_2threads results .... + 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 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 + 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_2threads PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_decomp_prod +Checking test 071 cpld_decomp results .... + 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 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 + 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 071 cpld_decomp PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_satmedmf_prod +Checking test 072 cpld_satmedmf results .... + 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 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 + 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 072 cpld_satmedmf PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_ca_prod +Checking test 073 cpld_ca results .... + 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 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 + 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 073 cpld_ca PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_c192_prod +Checking test 074 cpld_control_c192 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/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/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_control_c192 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_c192_prod +Checking test 075 cpld_restart_c192 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/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/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 075 cpld_restart_c192 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_controlfrac_c192_prod +Checking test 076 cpld_controlfrac_c192 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/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/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 076 cpld_controlfrac_c192 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restartfrac_c192_prod +Checking test 077 cpld_restartfrac_c192 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/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/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 077 cpld_restartfrac_c192 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_c384_prod +Checking test 078 cpld_control_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 078 cpld_control_c384 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_c384_prod +Checking test 079 cpld_restart_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 079 cpld_restart_c384 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_controlfrac_c384_prod +Checking test 080 cpld_controlfrac_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 080 cpld_controlfrac_c384 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restartfrac_c384_prod +Checking test 081 cpld_restartfrac_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 081 cpld_restartfrac_c384 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmark_prod +Checking test 082 cpld_bmark results .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 082 cpld_bmark PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_bmark_prod +Checking test 083 cpld_restart_bmark results .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 083 cpld_restart_bmark PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_prod +Checking test 084 cpld_bmarkfrac results .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 084 cpld_bmarkfrac PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_bmarkfrac_prod +Checking test 085 cpld_restart_bmarkfrac results .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 085 cpld_restart_bmarkfrac PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_v16_prod +Checking test 086 cpld_bmarkfrac_v16 results .... + 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 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 + 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.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 086 cpld_bmarkfrac_v16 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_bmarkfrac_v16_prod +Checking test 087 cpld_restart_bmarkfrac_v16 results .... + 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 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 + 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.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 087 cpld_restart_bmarkfrac_v16 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmark_wave_prod +Checking test 088 cpld_bmark_wave results .... + 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 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 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........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/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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 088 cpld_bmark_wave PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_wave_prod +Checking test 089 cpld_bmarkfrac_wave results .... + 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 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 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........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/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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 089 cpld_bmarkfrac_wave PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_wave_v16_prod +Checking test 090 cpld_bmarkfrac_wave_v16 results .... + 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 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 20130401.120000.out_grd.gwes_30m .........OK + Comparing 20130401.120000.out_pnt.points .........OK + Comparing 20130401.120000.restart.gwes_30m .........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/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.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 090 cpld_bmarkfrac_wave_v16 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_wave_prod +Checking test 091 cpld_control_wave results .... + 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 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 + 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 + Comparing 20161004.000000.out_grd.glo_1deg .........OK + Comparing 20161004.000000.out_pnt.points .........OK + Comparing 20161004.000000.restart.glo_1deg .........OK +Test 091 cpld_control_wave PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_debug_prod +Checking test 092 cpld_debug results .... + 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 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 + 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 092 cpld_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_debugfrac_prod +Checking test 093 cpld_debugfrac results .... + 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 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 + 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 093 cpld_debugfrac PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 094 datm_control_cfsr PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 095 datm_restart_cfsr PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 096 datm_control_gefs PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 097 datm_bulk_cfsr PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 098 datm_bulk_gefs PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 099 datm_mx025_cfsr PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 100 datm_mx025_gefs PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/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 101 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Dec 7 09:14:31 MST 2020 -Elapsed time: 00h:51m:20s. Have a nice day! +Wed Feb 17 14:49:52 MST 2021 +Elapsed time: 01h:19m:48s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index fa9f3eef93..368d969a32 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Sat Dec 5 12:50:41 EST 2020 +Wed Feb 17 18:30:56 EST 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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-20201204/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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-20201204/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,39 +206,21 @@ 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-20201204/INTEL/fv3_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart 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 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 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 @@ -274,8 +256,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-20201204/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 +324,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-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 +372,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-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 +420,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-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 +468,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-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 +516,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-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 +564,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-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 +612,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-20201204/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 +680,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-20201204/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20210217/INTEL/fv3_ca_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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-20210217/INTEL/fv3_lndp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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-20210217/INTEL/fv3_iau_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 +929,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-20201204/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20210217/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 +1003,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-20201204/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 +1071,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-20201204/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20210217/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 +1127,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-20201204/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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,114 +1194,53 @@ 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-20201204/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20210217/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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-20201204/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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-20201204/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/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-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 021 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_regional_c768_prod -Checking test 022 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf003.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf003.nc .........OK -Test 022 fv3_ccpp_regional_c768 PASS +Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_control_debug_prod -Checking test 023 fv3_ccpp_control_debug results .... - 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 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 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 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 -Test 023 fv3_ccpp_control_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_stretched_nest_debug_prod -Checking test 024 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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - 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 - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1162,8 +1287,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1210,8 +1335,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1258,8 +1383,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1306,8 +1431,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1354,8 +1479,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,8 +1527,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1450,9 +1575,61 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_cpt_prod -Checking test 032 fv3_ccpp_cpt results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 032 fv3_ccpp_gfdlmprad_32bit_post 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 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 + 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 032 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_cpt_prod +Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1501,12 +1678,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 033 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gsd_prod -Checking test 033 fv3_ccpp_gsd results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gsd_prod +Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1593,12 +1770,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 034 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_thompson_prod -Checking test 034 fv3_ccpp_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_rap_prod +Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1661,12 +1838,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 035 fv3_ccpp_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_thompson_no_aero_prod -Checking test 035 fv3_ccpp_thompson_no_aero results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_hrrr_prod +Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1729,12 +1906,12 @@ 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 036 fv3_ccpp_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_rrfs_v1beta_prod -Checking test 036 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 @@ -1797,22 +1974,42 @@ Checking test 036 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 036 fv3_ccpp_rrfs_v1beta PASS +Test 037 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gocart_clm_prod -Checking test 037 fv3_ccpp_gocart_clm results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 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 @@ -1833,24 +2030,24 @@ Checking test 037 fv3_ccpp_gocart_clm 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 037 fv3_ccpp_gocart_clm 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 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_rrfs_v1beta_prod +Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1901,24 +2098,24 @@ Checking test 038 fv3_ccpp_gfs_v16beta_flake 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 038 fv3_ccpp_gfs_v16beta_flake 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 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_prod +Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1981,30 +2178,12 @@ Checking test 039 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 039 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 040 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gsd_debug_prod -Checking test 041 fv3_ccpp_gsd_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_prod +Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2017,24 +2196,36 @@ Checking test 041 fv3_ccpp_gsd_debug results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 @@ -2055,24 +2246,74 @@ Checking test 041 fv3_ccpp_gsd_debug 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_v16 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_restart_prod +Checking test 042 fv3_ccpp_gfs_v16_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 -Test 041 fv3_ccpp_gsd_debug PASS + 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_v16_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_stochy_prod +Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2085,24 +2326,24 @@ Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 @@ -2123,24 +2364,24 @@ Checking test 042 fv3_ccpp_gsd_diag3d_debug 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/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 042 fv3_ccpp_gsd_diag3d_debug PASS + 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_v16_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_thompson_debug_prod -Checking test 043 fv3_ccpp_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2153,24 +2394,24 @@ Checking test 043 fv3_ccpp_thompson_debug results .... 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 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 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 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 @@ -2191,24 +2432,24 @@ Checking test 043 fv3_ccpp_thompson_debug 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/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 043 fv3_ccpp_thompson_debug PASS + 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_v15p2_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2221,24 +2462,24 @@ Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... 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 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 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 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 @@ -2259,54 +2500,144 @@ Checking test 044 fv3_ccpp_thompson_no_aero_debug 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/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 044 fv3_ccpp_thompson_no_aero_debug PASS + 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_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 045 fv3_ccpp_rrfs_v1beta_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 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... 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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_csawmg_prod +Checking test 047 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 047 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 048 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 @@ -2339,12 +2670,60 @@ Checking test 045 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 045 fv3_ccpp_rrfs_v1beta_debug PASS +Test 048 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 + 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 049 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_flake_prod +Checking test 050 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2357,24 +2736,24 @@ Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 @@ -2407,17 +2786,85 @@ Checking test 046 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 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 050 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_35270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 + 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 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 - Comparing phyf001.nc .........OK + Comparing phyf012.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK + Comparing dynf012.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -2425,9 +2872,2222 @@ Checking test 047 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 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... + 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 053 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + 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 054 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 + 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_v15p2_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_debug_prod +Checking test 056 fv3_ccpp_gfs_v16_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_v16_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 + 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_v15p2_RRTMGP_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 058 fv3_ccpp_gfs_v16_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 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_control_debug_prod +Checking test 059 fv3_ccpp_regional_control_debug 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 059 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_control_debug_prod +Checking test 060 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 060 fv3_ccpp_control_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stretched_nest_debug_prod +Checking test 061 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 061 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 062 fv3_ccpp_gsd_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 063 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 + 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 064 fv3_ccpp_thompson_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 + 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 065 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 066 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/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 + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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/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 069 fv3_ccpp_gfsv16_ugwpv1_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_prod +Checking test 070 cpld_control results .... + 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 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 + 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_control PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_prod +Checking test 071 cpld_restart results .... + 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 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 + 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 071 cpld_restart PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_prod +Checking test 072 cpld_controlfrac results .... + 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 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 + 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 072 cpld_controlfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_prod +Checking test 073 cpld_restartfrac results .... + 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 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 + 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 073 cpld_restartfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_2threads_prod +Checking test 074 cpld_2threads results .... + 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 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 + 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 074 cpld_2threads PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_decomp_prod +Checking test 075 cpld_decomp results .... + 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 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 + 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 075 cpld_decomp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_satmedmf_prod +Checking test 076 cpld_satmedmf results .... + 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 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 + 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 076 cpld_satmedmf PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_ca_prod +Checking test 077 cpld_ca results .... + 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 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 + 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 077 cpld_ca PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_c192_prod +Checking test 078 cpld_control_c192 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/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/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 078 cpld_control_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_c192_prod +Checking test 079 cpld_restart_c192 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/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/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 079 cpld_restart_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_c192_prod +Checking test 080 cpld_controlfrac_c192 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/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/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 080 cpld_controlfrac_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_c192_prod +Checking test 081 cpld_restartfrac_c192 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/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/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 081 cpld_restartfrac_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_c384_prod +Checking test 082 cpld_control_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 082 cpld_control_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_c384_prod +Checking test 083 cpld_restart_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 083 cpld_restart_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_c384_prod +Checking test 084 cpld_controlfrac_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 084 cpld_controlfrac_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_c384_prod +Checking test 085 cpld_restartfrac_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 085 cpld_restartfrac_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_bmark_prod +Checking test 086 cpld_bmark results .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 086 cpld_bmark PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_bmark_prod +Checking test 087 cpld_restart_bmark results .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 087 cpld_restart_bmark PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_bmarkfrac_prod +Checking test 088 cpld_bmarkfrac results .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 088 cpld_bmarkfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_bmarkfrac_prod +Checking test 089 cpld_restart_bmarkfrac results .... + 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 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 + 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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 089 cpld_restart_bmarkfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_debug_prod +Checking test 090 cpld_debug results .... + 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 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 + 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 090 cpld_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_debugfrac_prod +Checking test 091 cpld_debugfrac results .... + 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 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 + 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 091 cpld_debugfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_control_cfsr +Checking test 092 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 092 datm_control_cfsr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_restart_cfsr +Checking test 093 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 093 datm_restart_cfsr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_control_gefs +Checking test 094 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 094 datm_control_gefs PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_bulk_cfsr +Checking test 095 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 095 datm_bulk_cfsr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_bulk_gefs +Checking test 096 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 096 datm_bulk_gefs PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_mx025_cfsr +Checking test 097 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 097 datm_mx025_cfsr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_mx025_gefs +Checking test 098 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 098 datm_mx025_gefs PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_debug_cfsr +Checking test 099 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 099 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sat Dec 5 13:21:17 EST 2020 -Elapsed time: 00h:30m:37s. Have a nice day! +Wed Feb 17 20:13:13 EST 2021 +Elapsed time: 01h:42m:18s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 3993e7b6cd..50d1df6ef8 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Fri Dec 4 18:53:23 UTC 2020 +Wed Feb 17 20:45:37 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/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-20201204/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/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,9 +118,9 @@ 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-20201204/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_prod -Checking test 003 fv3_ccpp_gfs_v16beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_prod +Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -139,6 +139,12 @@ Checking test 003 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 @@ -151,6 +157,130 @@ Checking test 003 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 ............SKIP for gnu compilers + 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 003 fv3_ccpp_gfs_v16 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_restart_prod +Checking test 004 fv3_ccpp_gfs_v16_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 ............SKIP for gnu compilers + 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 004 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_stochy_prod +Checking test 005 fv3_ccpp_gfs_v16_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 ............SKIP for gnu compilers Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -183,12 +313,12 @@ Checking test 003 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 003 fv3_ccpp_gfs_v16beta PASS +Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_flake_prod +Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -251,12 +381,12 @@ Checking test 004 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 004 fv3_ccpp_gfs_v16beta_flake PASS +Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 005 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -319,12 +449,12 @@ Checking test 005 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 005 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 006 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -387,12 +517,12 @@ Checking test 006 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 006 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gsd_prod -Checking test 007 fv3_ccpp_gsd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gsd_prod +Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -479,12 +609,12 @@ Checking test 007 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 007 fv3_ccpp_gsd PASS +Test 009 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_thompson_prod -Checking test 008 fv3_ccpp_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_prod +Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -547,12 +677,12 @@ Checking test 008 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 008 fv3_ccpp_thompson PASS +Test 010 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_thompson_no_aero_prod -Checking test 009 fv3_ccpp_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -615,12 +745,12 @@ Checking test 009 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 009 fv3_ccpp_thompson_no_aero PASS +Test 011 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_rrfs_v1beta_prod -Checking test 010 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -683,12 +813,12 @@ Checking test 010 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 010 fv3_ccpp_rrfs_v1beta PASS +Test 012 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 011 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -751,12 +881,12 @@ Checking test 011 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 011 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/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 Comparing phyf012.nc .........OK @@ -769,12 +899,136 @@ Checking test 012 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 012 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... + 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 ............SKIP for gnu compilers + 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 015 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + 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 ............SKIP for gnu compilers + 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 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_control_debug_prod -Checking test 013 fv3_ccpp_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_control_debug_prod +Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -799,12 +1053,12 @@ Checking test 013 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 013 fv3_ccpp_control_debug PASS +Test 017 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 014 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -867,12 +1121,12 @@ Checking test 014 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 014 fv3_ccpp_gfs_v15p2_debug PASS +Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 015 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_debug_prod +Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -935,12 +1189,12 @@ Checking test 015 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 015 fv3_ccpp_gfs_v16beta_debug PASS +Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 020 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 @@ -1003,12 +1257,12 @@ Checking test 016 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 016 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1071,12 +1325,12 @@ Checking test 017 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 017 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_multigases_prod -Checking test 018 fv3_ccpp_multigases results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_multigases_prod +Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1145,12 +1399,23 @@ 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 022 fv3_ccpp_multigases PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_regional_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_regional_control_debug_prod +Checking test 023 fv3_ccpp_regional_control_debug 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 023 fv3_ccpp_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1201,39 +1466,373 @@ Checking test 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug 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 019 fv3_ccpp_HAFS_v0_hwrf_thompson_debug 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 024 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_73270/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 020 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gsd_debug_prod +Checking test 025 fv3_ccpp_gsd_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + 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 025 fv3_ccpp_gsd_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_debug_prod +Checking test 026 fv3_ccpp_thompson_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 ............SKIP for gnu compilers + 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 026 fv3_ccpp_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 027 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 + 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 ............SKIP for gnu compilers + 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 027 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 028 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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + 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 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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 ............SKIP for gnu compilers + 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 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 4 19:54:47 UTC 2020 -Elapsed time: 01h:01m:24s. Have a nice day! +Wed Feb 17 21:14:47 UTC 2021 +Elapsed time: 00h:29m:11s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 9a05a4347e..5cdfec543e 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Fri Dec 4 20:05:11 UTC 2020 +Thu Feb 18 02:57:16 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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-20201204/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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-20201204/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,39 +206,21 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart 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 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 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 @@ -274,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 +324,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-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 +372,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-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 +420,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-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 +468,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-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 +516,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-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 +564,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-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 +612,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-20201204/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -698,39 +680,39 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_iau_prod -Checking test 013 fv3_ccpp_iau results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 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 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 @@ -763,12 +745,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 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_ca_prod -Checking test 014 fv3_ccpp_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -781,24 +763,24 @@ Checking test 014 fv3_ccpp_ca 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 @@ -831,42 +813,42 @@ Checking test 014 fv3_ccpp_ca 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_ca PASS +Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_lndp_prod -Checking test 015 fv3_ccpp_lndp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 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 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 @@ -899,11 +881,11 @@ Checking test 015 fv3_ccpp_lndp 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_lndp PASS +Test 015 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 +1030,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-20201204/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 +1079,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-20201204/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 +1153,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 +1221,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-20201204/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 +1277,8 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 +1344,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-20201204/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 +1355,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-20201204/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 +1364,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-20201204/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1393,81 +1375,20 @@ 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-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_regional_c768_prod -Checking test 028 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf003.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf003.nc .........OK -Test 028 fv3_ccpp_regional_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_control_debug_prod -Checking test 029 fv3_ccpp_control_debug results .... - 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 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 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 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 -Test 029 fv3_ccpp_control_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_stretched_nest_debug_prod -Checking test 030 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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 030 fv3_ccpp_stretched_nest_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmp_prod -Checking test 031 fv3_ccpp_gfdlmp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmp_prod +Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1510,12 +1431,12 @@ Checking test 031 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 031 fv3_ccpp_gfdlmp PASS +Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 032 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1558,12 +1479,12 @@ Checking test 032 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 032 fv3_ccpp_gfdlmprad_gwd PASS +Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 033 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1606,12 +1527,12 @@ Checking test 033 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 033 fv3_ccpp_gfdlmprad_noahmp PASS +Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_csawmg_prod -Checking test 034 fv3_ccpp_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_csawmg_prod +Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1654,12 +1575,12 @@ Checking test 034 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 034 fv3_ccpp_csawmg PASS +Test 031 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_satmedmf_prod -Checking test 035 fv3_ccpp_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_satmedmf_prod +Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1702,12 +1623,12 @@ Checking test 035 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 035 fv3_ccpp_satmedmf PASS +Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_satmedmfq_prod -Checking test 036 fv3_ccpp_satmedmfq results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_satmedmfq_prod +Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1750,12 +1671,12 @@ Checking test 036 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 036 fv3_ccpp_satmedmfq PASS +Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmp_32bit_prod -Checking test 037 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmp_32bit_prod +Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1798,12 +1719,12 @@ Checking test 037 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 037 fv3_ccpp_gfdlmp_32bit PASS +Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 038 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1850,12 +1771,12 @@ Checking test 038 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 038 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_cpt_prod -Checking test 039 fv3_ccpp_cpt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_cpt_prod +Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1904,12 +1825,12 @@ Checking test 039 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 039 fv3_ccpp_cpt PASS +Test 036 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gsd_prod -Checking test 040 fv3_ccpp_gsd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_prod +Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1996,12 +1917,12 @@ Checking test 040 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 040 fv3_ccpp_gsd PASS +Test 037 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_rap_prod -Checking test 041 fv3_ccpp_rap results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rap_prod +Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2064,12 +1985,12 @@ Checking test 041 fv3_ccpp_rap 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_rap PASS +Test 038 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_hrrr_prod -Checking test 042 fv3_ccpp_hrrr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_hrrr_prod +Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2132,12 +2053,12 @@ Checking test 042 fv3_ccpp_hrrr 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_hrrr PASS +Test 039 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_thompson_prod -Checking test 043 fv3_ccpp_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_prod +Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2200,12 +2121,12 @@ Checking test 043 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 043 fv3_ccpp_thompson PASS +Test 040 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_thompson_no_aero_prod -Checking test 044 fv3_ccpp_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_no_aero_prod +Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2268,12 +2189,12 @@ Checking test 044 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 044 fv3_ccpp_thompson_no_aero PASS +Test 041 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_rrfs_v1beta_prod -Checking test 045 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rrfs_v1beta_prod +Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2336,12 +2257,12 @@ Checking test 045 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 045 fv3_ccpp_rrfs_v1beta PASS +Test 042 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v15p2_prod -Checking test 046 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_prod +Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2404,12 +2325,12 @@ Checking test 046 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 046 fv3_ccpp_gfs_v15p2 PASS +Test 043 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v16beta_prod -Checking test 047 fv3_ccpp_gfs_v16beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_prod +Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2428,6 +2349,12 @@ Checking test 047 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 @@ -2440,6 +2367,12 @@ Checking test 047 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 @@ -2472,44 +2405,162 @@ Checking test 047 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 047 fv3_ccpp_gfs_v16beta PASS +Test 044 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_restart_prod +Checking test 045 fv3_ccpp_gfs_v16_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 045 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_stochy_prod +Checking test 046 fv3_ccpp_gfs_v16_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 046 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 047 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 @@ -2540,12 +2591,12 @@ Checking test 048 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 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2608,11 +2659,73 @@ Checking test 049 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 049 fv3_ccpp_gfs_v16beta_RRTMGP PASS +Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + 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 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -2659,8 +2772,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmg results .... Test 050 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -2707,8 +2820,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... Test 051 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -2755,9 +2868,9 @@ Checking test 052 fv3_ccpp_gocart_clm results .... Test 052 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 053 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_flake_prod +Checking test 053 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2820,11 +2933,11 @@ Checking test 053 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 053 fv3_ccpp_gfs_v16beta_flake PASS +Test 053 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -2891,8 +3004,8 @@ Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 @@ -2909,39 +3022,33 @@ Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... 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 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 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 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 @@ -2962,44 +3069,174 @@ Checking test 056 fv3_ccpp_gfs_v15p2_debug 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/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 + 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 056 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... 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 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 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 + 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 058 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_debug_prod +Checking test 059 fv3_ccpp_gfs_v16_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 @@ -3042,12 +3279,12 @@ Checking test 057 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 057 fv3_ccpp_gfs_v16beta_debug PASS +Test 059 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3110,12 +3347,12 @@ Checking test 058 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 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3178,12 +3415,73 @@ Checking test 059 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 059 fv3_ccpp_gfs_v16beta_RRTMGP_debug PASS +Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_control_debug_prod +Checking test 062 fv3_ccpp_regional_control_debug 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 062 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_control_debug_prod +Checking test 063 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 063 fv3_ccpp_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stretched_nest_debug_prod +Checking test 064 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 064 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gsd_debug_prod -Checking test 060 fv3_ccpp_gsd_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_debug_prod +Checking test 065 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3246,12 +3544,12 @@ Checking test 060 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 060 fv3_ccpp_gsd_debug PASS +Test 065 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3314,12 +3612,12 @@ Checking test 061 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 061 fv3_ccpp_gsd_diag3d_debug PASS +Test 066 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_thompson_debug_prod -Checking test 062 fv3_ccpp_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_debug_prod +Checking test 067 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3382,12 +3680,12 @@ Checking test 062 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 062 fv3_ccpp_thompson_debug PASS +Test 067 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 068 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 @@ -3450,12 +3748,80 @@ Checking test 063 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 063 fv3_ccpp_thompson_no_aero_debug PASS +Test 068 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 069 fv3_ccpp_rrfs_v1beta_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 069 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 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 @@ -3506,6 +3872,772 @@ Checking test 064 fv3_ccpp_rrfs_v1beta_debug 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 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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/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 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_prod +Checking test 073 cpld_control results .... + 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 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 + 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 073 cpld_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_prod +Checking test 074 cpld_restart results .... + 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 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 + 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 074 cpld_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_prod +Checking test 075 cpld_controlfrac results .... + 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 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 + 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 075 cpld_controlfrac PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_prod +Checking test 076 cpld_restartfrac results .... + 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 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 + 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 076 cpld_restartfrac PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_2threads_prod +Checking test 077 cpld_2threads results .... + 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 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 + 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 077 cpld_2threads PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_decomp_prod +Checking test 078 cpld_decomp results .... + 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 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 + 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 078 cpld_decomp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_satmedmf_prod +Checking test 079 cpld_satmedmf results .... + 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 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 + 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 079 cpld_satmedmf PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_ca_prod +Checking test 080 cpld_ca results .... + 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 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 + 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 080 cpld_ca PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_c192_prod +Checking test 081 cpld_control_c192 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/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/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 081 cpld_control_c192 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_c192_prod +Checking test 082 cpld_restart_c192 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/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/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 082 cpld_restart_c192 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_c192_prod +Checking test 083 cpld_controlfrac_c192 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/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/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 083 cpld_controlfrac_c192 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_c192_prod +Checking test 084 cpld_restartfrac_c192 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/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/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 084 cpld_restartfrac_c192 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_c384_prod +Checking test 085 cpld_control_c384 results .... + 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 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 @@ -3518,42 +4650,30 @@ Checking test 064 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 064 fv3_ccpp_rrfs_v1beta_debug PASS + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 085 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 - 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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_c384_prod +Checking test 086 cpld_restart_c384 results .... + 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 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 @@ -3574,42 +4694,30 @@ Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug 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 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 - Comparing dynf000.nc .........OK - Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 086 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_prod -Checking test 067 cpld_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_c384_prod +Checking test 087 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3655,14 +4763,17 @@ Checking test 067 cpld_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 067 cpld_control PASS +Test 087 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_2threads_prod -Checking test 068 cpld_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_c384_prod +Checking test 088 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3708,14 +4819,17 @@ Checking test 068 cpld_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 068 cpld_2threads PASS +Test 088 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_decomp_prod -Checking test 069 cpld_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmark_prod +Checking test 089 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3761,14 +4875,17 @@ Checking test 069 cpld_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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_decomp PASS + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + 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 089 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_satmedmf_prod -Checking test 070 cpld_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmark_prod +Checking test 090 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3814,14 +4931,17 @@ Checking test 070 cpld_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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_satmedmf PASS + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + 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 090 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_ca_prod -Checking test 071 cpld_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_prod +Checking test 091 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3867,14 +4987,17 @@ Checking test 071 cpld_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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 071 cpld_ca PASS + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + 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 091 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_mx025_prod -Checking test 072 cpld_control_mx025 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmarkfrac_prod +Checking test 092 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3923,14 +5046,14 @@ Checking test 072 cpld_control_mx025 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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_mx025 PASS + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 092 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_12h_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_mx025_12h_prod -Checking test 073 cpld_control_mx025_12h results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_v16_prod +Checking test 093 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -3979,26 +5102,26 @@ Checking test 073 cpld_control_mx025_12h results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-03-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -Test 073 cpld_control_mx025_12h PASS + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 093 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_restart_mx025_prod -Checking test 074 cpld_restart_mx025 results .... - 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 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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmarkfrac_v16_prod +Checking test 094 cpld_restart_bmarkfrac_v16 results .... + 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 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 @@ -4035,14 +5158,14 @@ Checking test 074 cpld_restart_mx025 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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_restart_mx025 PASS + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 094 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_c192_prod -Checking test 075 cpld_control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmark_wave_prod +Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4055,6 +5178,9 @@ Checking test 075 cpld_control_c192 results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK + Comparing 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -4088,14 +5214,17 @@ Checking test 075 cpld_control_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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 075 cpld_control_c192 PASS + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + 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 095 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_control_c384_prod -Checking test 076 cpld_control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_wave_prod +Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4108,6 +5237,9 @@ Checking test 076 cpld_control_c384 results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK + Comparing 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -4144,26 +5276,29 @@ Checking test 076 cpld_control_c384 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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_control_c384 PASS + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 096 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/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 - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_wave_v16_prod +Checking test 097 cpld_bmarkfrac_wave_v16 results .... + 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 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 20130401.120000.out_grd.gwes_30m .........OK + Comparing 20130401.120000.out_pnt.points .........OK + Comparing 20130401.120000.restart.gwes_30m .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -4200,14 +5335,14 @@ Checking test 077 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 097 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_bmark_prod -Checking test 078 cpld_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_wave_prod +Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4253,32 +5388,29 @@ Checking test 078 cpld_bmark results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 078 cpld_bmark PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK + Comparing 20161004.000000.out_grd.glo_1deg .........OK + Comparing 20161004.000000.out_pnt.points .........OK + Comparing 20161004.000000.restart.glo_1deg .........OK +Test 098 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_bmark_wave_prod -Checking test 079 cpld_bmark_wave results .... - 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 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 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_debug_prod +Checking test 099 cpld_debug results .... + 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 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 @@ -4312,17 +5444,14 @@ Checking test 079 cpld_bmark_wave results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 079 cpld_bmark_wave PASS + Comparing RESTART/iced.2016-10-03-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 099 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/cpld_debug_prod -Checking test 080 cpld_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_debugfrac_prod +Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4370,51 +5499,87 @@ Checking test 080 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 080 cpld_debug PASS +Test 100 cpld_debugfrac PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_control_cfsr +Checking test 101 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 101 datm_control_cfsr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_restart_cfsr +Checking test 102 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 102 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/datm_control_cfsr_prod -Checking test 081 datm_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_control_gefs +Checking test 103 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 103 datm_control_gefs PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_bulk_cfsr +Checking test 104 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 081 datm_control_cfsr PASS +Test 104 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/datm_control_gefs_prod -Checking test 082 datm_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_bulk_gefs +Checking test 105 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 082 datm_control_gefs PASS +Test 105 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/datm_mx025_cfsr_prod -Checking test 083 datm_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_mx025_cfsr +Checking test 106 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 083 datm_mx025_cfsr PASS +Test 106 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_262790/datm_mx025_gefs_prod -Checking test 084 datm_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_mx025_gefs +Checking test 107 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 084 datm_mx025_gefs PASS +Test 107 datm_mx025_gefs PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_debug_cfsr +Checking test 108 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 108 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 4 21:42:30 UTC 2020 -Elapsed time: 01h:37m:19s. Have a nice day! +Thu Feb 18 04:38:47 UTC 2021 +Elapsed time: 01h:41m:32s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 13ae2d00ff..178216a8c5 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Sat Dec 5 17:50:59 GMT 2020 +Wed Feb 17 22:55:09 GMT 2021 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -70,9 +70,9 @@ Checking test 001 fv3_ccpp_control results .... Test 001 fv3_ccpp_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_2threads_prod +Checking test 002 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -135,36 +135,18 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_ccpp_decomp PASS +Test 002 fv3_ccpp_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads 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 +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_restart_prod +Checking test 003 fv3_ccpp_restart results .... 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 @@ -203,12 +185,12 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_ccpp_2threads PASS +Test 003 fv3_ccpp_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_read_inc_prod +Checking test 004 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -271,42 +253,22 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_ccpp_restart PASS +Test 004 fv3_ccpp_read_inc PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_esmf_prod +Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf 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 phyf000.nc .........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 Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -339,12 +301,12 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_ccpp_read_inc PASS +Test 005 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_prod +Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -387,12 +349,12 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS +Test 006 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_parallel_prod +Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -402,7 +364,7 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK Comparing dynf000.nc .........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 @@ -435,12 +397,12 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 007 fv3_ccpp_wrtGauss_netcdf PASS +Test 007 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGlatlon_netcdf_prod +Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -448,7 +410,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 .........OK Comparing RESTART/coupler.res .........OK @@ -483,22 +445,22 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS +Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_nemsio_prod +Checking test 009 fv3_ccpp_wrtGauss_nemsio 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.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.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 @@ -531,12 +493,12 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS +Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_nemsio_c192_prod +Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -579,22 +541,42 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_ccpp_wrtGauss_nemsio PASS +Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stochy_prod +Checking test 011 fv3_ccpp_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.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 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 @@ -627,12 +609,12 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS +Test 011 fv3_ccpp_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_ca_prod +Checking test 012 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -695,12 +677,80 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_ccpp_stochy PASS +Test 012 fv3_ccpp_ca PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_lndp_prod +Checking test 013 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 013 fv3_ccpp_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_iau_prod -Checking test 013 fv3_ccpp_iau results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_iau_prod +Checking test 014 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -763,12 +813,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 014 fv3_ccpp_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_lheatstrg_prod -Checking test 014 fv3_ccpp_lheatstrg results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_lheatstrg_prod +Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -811,12 +861,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 015 fv3_ccpp_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_multigases_prod -Checking test 015 fv3_ccpp_multigases results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_multigases_prod +Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -885,12 +935,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 016 fv3_ccpp_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_control_32bit_prod -Checking test 016 fv3_ccpp_control_32bit results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_control_32bit_prod +Checking test 017 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 +1003,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 017 fv3_ccpp_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_stretched_prod -Checking test 017 fv3_ccpp_stretched results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_prod +Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1009,12 +1059,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 018 fv3_ccpp_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_stretched_nest_prod -Checking test 018 fv3_ccpp_stretched_nest results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_nest_prod +Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1076,115 +1126,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 019 fv3_ccpp_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_control_prod -Checking test 019 fv3_ccpp_regional_control results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_control_prod +Checking test 020 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 020 fv3_ccpp_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_restart_prod -Checking test 020 fv3_ccpp_regional_restart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_restart_prod +Checking test 021 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 021 fv3_ccpp_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_quilt_prod -Checking test 021 fv3_ccpp_regional_quilt results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_quilt_prod +Checking test 022 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 - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 022 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 -Test 022 fv3_ccpp_regional_quilt_netcdf_parallel PASS +Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_regional_c768_prod -Checking test 023 fv3_ccpp_regional_c768 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf003.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK - Comparing phyf003.nc .........OK -Test 023 fv3_ccpp_regional_c768 PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_control_debug_prod -Checking test 024 fv3_ccpp_control_debug results .... - 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 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 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 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 -Test 024 fv3_ccpp_control_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_stretched_nest_debug_prod -Checking test 025 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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - 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 + Comparing phyf024.nc .........OK +Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfdlmp_prod -Checking test 026 fv3_ccpp_gfdlmp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmp_prod +Checking test 024 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1227,12 +1216,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 024 fv3_ccpp_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1275,12 +1264,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 025 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1323,12 +1312,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 026 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_csawmg_prod -Checking test 029 fv3_ccpp_csawmg results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_csawmg_prod +Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1371,12 +1360,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 027 fv3_ccpp_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_satmedmf_prod -Checking test 030 fv3_ccpp_satmedmf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_satmedmf_prod +Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1419,12 +1408,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 028 fv3_ccpp_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_satmedmfq_prod -Checking test 031 fv3_ccpp_satmedmfq results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_satmedmfq_prod +Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1467,12 +1456,60 @@ 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 029 fv3_ccpp_satmedmfq PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmp_32bit_prod +Checking test 030 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 030 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfdlmp_32bit_prod -Checking test 032 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1483,6 +1520,10 @@ Checking test 032 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 @@ -1515,12 +1556,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 031 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_cpt_prod -Checking test 033 fv3_ccpp_cpt results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_cpt_prod +Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1569,12 +1610,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 032 fv3_ccpp_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gsd_prod -Checking test 034 fv3_ccpp_gsd results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gsd_prod +Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1661,12 +1702,12 @@ 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 033 fv3_ccpp_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_thompson_prod -Checking test 035 fv3_ccpp_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_prod +Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1729,12 +1770,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 034 fv3_ccpp_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_thompson_no_aero_prod -Checking test 036 fv3_ccpp_thompson_no_aero results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_no_aero_prod +Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1797,33 +1838,939 @@ 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 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gocart_clm_prod -Checking test 037 fv3_ccpp_gocart_clm results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_prod +Checking test 036 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 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 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 036 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_prod +Checking test 037 fv3_ccpp_gfs_v16 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 037 fv3_ccpp_gfs_v16 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_restart_prod +Checking test 038 fv3_ccpp_gfs_v16_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 038 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_stochy_prod +Checking test 039 fv3_ccpp_gfs_v16_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 039 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 040 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 040 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 041 fv3_ccpp_gfs_v16_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 041 fv3_ccpp_gfs_v16_RRTMGP PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + 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_v16_RRTMGP_c192L127 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_csawmg_prod +Checking test 043 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 043 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 044 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 044 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gocart_clm_prod +Checking test 045 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 045 fv3_ccpp_gocart_clm PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_flake_prod +Checking test 046 fv3_ccpp_gfs_v16_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 + 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_v16_flake PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 047 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 + 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_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK + 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 + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 049 fv3_ccpp_gfsv16_ugwpv1 results .... + 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_gfsv16_ugwpv1 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + 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 050 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -1833,24 +2780,24 @@ Checking test 037 fv3_ccpp_gocart_clm 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 037 fv3_ccpp_gocart_clm 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 051 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_debug_prod +Checking test 052 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1863,24 +2810,24 @@ Checking test 038 fv3_ccpp_gfs_v16beta_flake results .... 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 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 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 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 @@ -1901,24 +2848,24 @@ Checking test 038 fv3_ccpp_gfs_v16beta_flake 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 038 fv3_ccpp_gfs_v16beta_flake 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 052 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -1931,24 +2878,24 @@ Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson results .... 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 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 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 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 @@ -1969,42 +2916,153 @@ Checking test 039 fv3_ccpp_HAFS_v0_hwrf_thompson 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/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-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 054 fv3_ccpp_gfs_v16_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 -Test 039 fv3_ccpp_HAFS_v0_hwrf_thompson 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 054 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_control_debug_prod +Checking test 055 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 040 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + 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 055 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_control_debug_prod +Checking test 056 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 056 fv3_ccpp_control_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_nest_debug_prod +Checking test 057 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 057 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gsd_debug_prod -Checking test 041 fv3_ccpp_gsd_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -2067,12 +3125,12 @@ Checking test 041 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 041 fv3_ccpp_gsd_debug PASS +Test 058 fv3_ccpp_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -2135,12 +3193,12 @@ Checking test 042 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 042 fv3_ccpp_gsd_diag3d_debug PASS +Test 059 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_thompson_debug_prod -Checking test 043 fv3_ccpp_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -2203,12 +3261,12 @@ Checking test 043 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 043 fv3_ccpp_thompson_debug PASS +Test 060 fv3_ccpp_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -2271,12 +3329,12 @@ Checking test 044 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 044 fv3_ccpp_thompson_no_aero_debug PASS +Test 061 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -2339,12 +3397,12 @@ Checking test 045 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 045 fv3_ccpp_rrfs_v1beta_debug PASS +Test 062 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -2407,12 +3465,12 @@ Checking test 046 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 046 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_274495/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/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 @@ -2425,9 +3483,71 @@ Checking test 047 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 047 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 065 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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/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 065 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sat Dec 5 19:28:03 GMT 2020 -Elapsed time: 01h:37m:05s. Have a nice day! +Thu Feb 18 00:55:53 GMT 2021 +Elapsed time: 02h:00m:45s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 61eac226dc..b150da682d 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Fri Dec 4 14:19:40 CST 2020 +Thu Feb 18 10:57:36 CST 2021 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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-20201204/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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-20201204/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,39 +206,21 @@ Checking test 003 fv3_ccpp_2threads results .... Test 003 fv3_ccpp_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart 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 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 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 @@ -274,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 +324,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-20201204/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 +372,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-20201204/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 +420,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-20201204/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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,10 +429,10 @@ 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 ............ALT CHECK......OK + Comparing phyf000.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 @@ -486,8 +468,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-20201204/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 +516,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-20201204/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 +564,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-20201204/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 +612,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-20201204/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 +680,145 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_iau_prod -Checking test 013 fv3_ccpp_iau results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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-20210217/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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,42 +881,22 @@ 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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_ca_prod -Checking test 014 fv3_ccpp_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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.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 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 @@ -831,12 +929,12 @@ Checking test 014 fv3_ccpp_ca 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_ca PASS +Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmprad_prod -Checking test 015 fv3_ccpp_gfdlmprad results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 +978,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-20201204/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 +1027,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-20201204/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 +1076,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-20201204/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_multigases_prod -Checking test 018 fv3_ccpp_multigases results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 +1150,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-20201204/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_control_32bit_prod -Checking test 019 fv3_ccpp_control_32bit results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 +1218,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-20201204/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_stretched_prod -Checking test 020 fv3_ccpp_stretched results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 +1274,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-20201204/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_stretched_nest_prod -Checking test 021 fv3_ccpp_stretched_nest results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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,115 +1341,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-20201204/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_control_prod -Checking test 022 fv3_ccpp_regional_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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-20201204/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_restart_prod -Checking test 023 fv3_ccpp_regional_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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-20201204/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_quilt_prod -Checking test 024 fv3_ccpp_regional_quilt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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-20201204/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 ............ALT CHECK......OK -Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_regional_c768_prod -Checking test 026 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf003.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf003.nc .........OK -Test 026 fv3_ccpp_regional_c768 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.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 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 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 -Test 027 fv3_ccpp_control_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK -Test 028 fv3_ccpp_stretched_nest_debug PASS + Comparing phyf024.nc .........OK +Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmp_prod -Checking test 029 fv3_ccpp_gfdlmp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmp_prod +Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1394,12 +1431,12 @@ Checking test 029 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 029 fv3_ccpp_gfdlmp PASS +Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1442,12 +1479,12 @@ Checking test 030 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 030 fv3_ccpp_gfdlmprad_gwd PASS +Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1490,12 +1527,12 @@ Checking test 031 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 031 fv3_ccpp_gfdlmprad_noahmp PASS +Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_csawmg_prod -Checking test 032 fv3_ccpp_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_csawmg_prod +Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1538,12 +1575,12 @@ Checking test 032 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 032 fv3_ccpp_csawmg PASS +Test 031 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_satmedmf_prod -Checking test 033 fv3_ccpp_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_satmedmf_prod +Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1586,12 +1623,12 @@ Checking test 033 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 033 fv3_ccpp_satmedmf PASS +Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmp_32bit_prod -Checking test 034 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_satmedmfq_prod +Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1622,11 +1659,59 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit 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/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_satmedmfq PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmp_32bit_prod +Checking test 034 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 @@ -1637,8 +1722,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1689,8 +1774,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1743,8 +1828,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1835,9 +1920,9 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_thompson_prod -Checking test 038 fv3_ccpp_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rap_prod +Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1900,12 +1985,12 @@ Checking test 038 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 038 fv3_ccpp_thompson PASS +Test 038 fv3_ccpp_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_thompson_no_aero_prod -Checking test 039 fv3_ccpp_thompson_no_aero results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_hrrr_prod +Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1968,12 +2053,12 @@ Checking test 039 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 039 fv3_ccpp_thompson_no_aero PASS +Test 039 fv3_ccpp_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_rrfs_v1beta_prod -Checking test 040 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_prod +Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2036,12 +2121,12 @@ Checking test 040 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 040 fv3_ccpp_rrfs_v1beta PASS +Test 040 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v15p2_prod -Checking test 041 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_no_aero_prod +Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2092,24 +2177,24 @@ Checking test 041 fv3_ccpp_gfs_v15p2 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_v15p2 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 041 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v16beta_prod -Checking test 042 fv3_ccpp_gfs_v16beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rrfs_v1beta_prod +Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2160,24 +2245,24 @@ Checking test 042 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 042 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_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 043 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_prod +Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2240,12 +2325,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 043 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v16beta_RRTMGP_prod -Checking test 044 fv3_ccpp_gfs_v16beta_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_prod +Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2264,6 +2349,12 @@ Checking test 044 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 @@ -2276,6 +2367,12 @@ Checking test 044 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 @@ -2308,22 +2405,24 @@ 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 044 fv3_ccpp_gfs_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_restart_prod +Checking test 045 fv3_ccpp_gfs_v16_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 @@ -2344,82 +2443,54 @@ Checking test 045 fv3_ccpp_gfsv16_csawmg 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/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 = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 +Test 045 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gocart_clm_prod -Checking test 047 fv3_ccpp_gocart_clm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_stochy_prod +Checking test 046 fv3_ccpp_gfs_v16_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.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 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 @@ -2452,12 +2523,12 @@ Checking test 047 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 047 fv3_ccpp_gocart_clm PASS +Test 046 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 048 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2520,12 +2591,12 @@ Checking test 048 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 048 fv3_ccpp_gfs_v16beta_flake PASS +Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2588,60 +2659,36 @@ Checking test 049 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 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 - Comparing dynf000.nc .........OK - Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... 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 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 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 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 @@ -2662,54 +2709,34 @@ Checking test 051 fv3_ccpp_gfs_v15p2_debug 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/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 + 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_v16_RRTMGP_c192L127 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 052 fv3_ccpp_gfs_v16beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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.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 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 @@ -2742,42 +2769,22 @@ Checking test 052 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 052 fv3_ccpp_gfs_v16beta_debug PASS +Test 050 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 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 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 @@ -2810,12 +2817,60 @@ Checking test 053 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 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 051 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 + 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 052 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gfs_v16beta_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gfs_v16beta_RRTMGP_debug_prod -Checking test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_flake_prod +Checking test 053 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2828,24 +2883,24 @@ Checking test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug results .... 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 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 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 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 @@ -2866,24 +2921,24 @@ Checking test 054 fv3_ccpp_gfs_v16beta_RRTMGP_debug 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/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 + 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 053 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_gsd_debug_prod -Checking test 055 fv3_ccpp_gsd_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 @@ -2896,24 +2951,24 @@ Checking test 055 fv3_ccpp_gsd_debug results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 @@ -2934,54 +2989,66 @@ Checking test 055 fv3_ccpp_gsd_debug 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/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_gsd_debug PASS + 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 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 + Comparing dynf000.nc .........OK + Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... 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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 @@ -3002,24 +3069,86 @@ Checking test 056 fv3_ccpp_gsd_diag3d_debug 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 056 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + 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 -Test 056 fv3_ccpp_gsd_diag3d_debug PASS + 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 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_thompson_debug_prod -Checking test 057 fv3_ccpp_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3082,12 +3211,12 @@ Checking test 057 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 057 fv3_ccpp_thompson_debug PASS +Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 058 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_debug_prod +Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3150,12 +3279,12 @@ Checking test 058 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 058 fv3_ccpp_thompson_no_aero_debug PASS +Test 059 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3168,8 +3297,273 @@ Checking test 059 fv3_ccpp_rrfs_v1beta_debug results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.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 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 061 fv3_ccpp_gfs_v16_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 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_control_debug_prod +Checking test 062 fv3_ccpp_regional_control_debug 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 062 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_control_debug_prod +Checking test 063 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 063 fv3_ccpp_control_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stretched_nest_debug_prod +Checking test 064 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 064 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_debug_prod +Checking test 065 fv3_ccpp_gsd_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 065 fv3_ccpp_gsd_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 066 fv3_ccpp_gsd_diag3d_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK Comparing phyf003.tile3.nc .........OK Comparing phyf003.tile4.nc .........OK Comparing phyf003.tile5.nc .........OK @@ -3218,42 +3612,1068 @@ Checking test 059 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 059 fv3_ccpp_rrfs_v1beta_debug PASS +Test 066 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_debug_prod +Checking test 067 fv3_ccpp_thompson_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 067 fv3_ccpp_thompson_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 068 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 + 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 068 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 069 fv3_ccpp_rrfs_v1beta_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 069 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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/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 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_prod +Checking test 073 cpld_control results .... + 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 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 + 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 073 cpld_control PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_prod +Checking test 074 cpld_restart results .... + 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 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 + 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 074 cpld_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_prod +Checking test 075 cpld_controlfrac results .... + 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 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 + 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 075 cpld_controlfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_prod +Checking test 076 cpld_restartfrac results .... + 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 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 + 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 076 cpld_restartfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_2threads_prod +Checking test 077 cpld_2threads results .... + 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 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 + 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 077 cpld_2threads PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_decomp_prod +Checking test 078 cpld_decomp results .... + 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 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 + 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 078 cpld_decomp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_satmedmf_prod +Checking test 079 cpld_satmedmf results .... + 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 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 + 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 079 cpld_satmedmf PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_ca_prod +Checking test 080 cpld_ca results .... + 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 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 + 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 080 cpld_ca PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_c192_prod +Checking test 081 cpld_control_c192 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/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/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 081 cpld_control_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_c192_prod +Checking test 082 cpld_restart_c192 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/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/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 082 cpld_restart_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_c192_prod +Checking test 083 cpld_controlfrac_c192 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/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/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 083 cpld_controlfrac_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_c192_prod +Checking test 084 cpld_restartfrac_c192 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/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/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 084 cpld_restartfrac_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_c384_prod +Checking test 085 cpld_control_c384 results .... + 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 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 085 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 - 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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_c384_prod +Checking test 086 cpld_restart_c384 results .... + 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 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 @@ -3274,42 +4694,30 @@ Checking test 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug 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 060 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/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 - Comparing dynf000.nc .........OK - Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 061 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 086 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_prod -Checking test 062 cpld_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_c384_prod +Checking test 087 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3355,14 +4763,17 @@ Checking test 062 cpld_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 062 cpld_control PASS +Test 087 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_2threads_prod -Checking test 063 cpld_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_c384_prod +Checking test 088 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3408,14 +4819,17 @@ Checking test 063 cpld_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 063 cpld_2threads PASS +Test 088 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_decomp_prod -Checking test 064 cpld_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmark_prod +Checking test 089 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3461,14 +4875,17 @@ Checking test 064 cpld_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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 + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + 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 089 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_satmedmf_prod -Checking test 065 cpld_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmark_prod +Checking test 090 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3514,14 +4931,17 @@ Checking test 065 cpld_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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 + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + 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 090 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_ca_prod -Checking test 066 cpld_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_prod +Checking test 091 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3567,14 +4987,17 @@ Checking test 066 cpld_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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 + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + 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 091 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_mx025_prod -Checking test 067 cpld_control_mx025 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmarkfrac_prod +Checking test 092 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3623,14 +5046,14 @@ Checking test 067 cpld_control_mx025 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 067 cpld_control_mx025 PASS + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 092 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_12h_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_mx025_12h_prod -Checking test 068 cpld_control_mx025_12h results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_v16_prod +Checking test 093 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -3679,26 +5102,26 @@ Checking test 068 cpld_control_mx025_12h results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-03-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -Test 068 cpld_control_mx025_12h PASS + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 093 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_mx025_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_restart_mx025_prod -Checking test 069 cpld_restart_mx025 results .... - 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 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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmarkfrac_v16_prod +Checking test 094 cpld_restart_bmarkfrac_v16 results .... + 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 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 @@ -3735,14 +5158,14 @@ Checking test 069 cpld_restart_mx025 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 069 cpld_restart_mx025 PASS + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 094 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_c192_prod -Checking test 070 cpld_control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmark_wave_prod +Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3755,6 +5178,9 @@ Checking test 070 cpld_control_c192 results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK + Comparing 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -3788,14 +5214,17 @@ Checking test 070 cpld_control_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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_control_c192 PASS + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + 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 095 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_control_c384_prod -Checking test 071 cpld_control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_wave_prod +Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3808,6 +5237,9 @@ Checking test 071 cpld_control_c384 results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK + Comparing 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -3844,26 +5276,29 @@ Checking test 071 cpld_control_c384 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 096 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_controlfrac_c384_prod -Checking test 072 cpld_controlfrac_c384 results .... - 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 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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_wave_v16_prod +Checking test 097 cpld_bmarkfrac_wave_v16 results .... + 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 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 20130401.120000.out_grd.gwes_30m .........OK + Comparing 20130401.120000.out_pnt.points .........OK + Comparing 20130401.120000.restart.gwes_30m .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -3900,14 +5335,14 @@ Checking test 072 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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_controlfrac_c384 PASS + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 097 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_bmark_prod -Checking test 073 cpld_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_wave_prod +Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3953,32 +5388,29 @@ Checking test 073 cpld_bmark results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 073 cpld_bmark PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK + Comparing 20161004.000000.out_grd.glo_1deg .........OK + Comparing 20161004.000000.out_pnt.points .........OK + Comparing 20161004.000000.restart.glo_1deg .........OK +Test 098 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_bmark_wave_prod -Checking test 074 cpld_bmark_wave results .... - 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 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 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_debug_prod +Checking test 099 cpld_debug results .... + 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 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 @@ -4012,17 +5444,14 @@ Checking test 074 cpld_bmark_wave results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 074 cpld_bmark_wave PASS + Comparing RESTART/iced.2016-10-03-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 099 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/cpld_debug_prod -Checking test 075 cpld_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_debugfrac_prod +Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4070,51 +5499,87 @@ Checking test 075 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 075 cpld_debug PASS +Test 100 cpld_debugfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_control_cfsr +Checking test 101 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 101 datm_control_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_restart_cfsr +Checking test 102 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 102 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/datm_control_cfsr_prod -Checking test 076 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_control_gefs +Checking test 103 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 103 datm_control_gefs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_bulk_cfsr +Checking test 104 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 076 datm_control_cfsr PASS +Test 104 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/datm_control_gefs_prod -Checking test 077 datm_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_bulk_gefs +Checking test 105 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 077 datm_control_gefs PASS +Test 105 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/datm_mx025_cfsr_prod -Checking test 078 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_mx025_cfsr +Checking test 106 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 078 datm_mx025_cfsr PASS +Test 106 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_223287/datm_mx025_gefs_prod -Checking test 079 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_mx025_gefs +Checking test 107 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 079 datm_mx025_gefs PASS +Test 107 datm_mx025_gefs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_debug_cfsr +Checking test 108 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 108 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 4 15:11:25 CST 2020 -Elapsed time: 00h:51m:45s. Have a nice day! +Thu Feb 18 21:22:48 CST 2021 +Elapsed time: 10h:25m:12s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 7f27ff0bd6..102d04a38d 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Fri Dec 4 20:14:46 UTC 2020 +Thu Feb 18 16:08:52 UTC 2021 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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-20201204/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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-20201204/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,39 +206,21 @@ 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-20201204/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart 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 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 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 @@ -274,8 +256,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-20201204/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 +324,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-20201204/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 +372,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-20201204/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 +420,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-20201204/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 +468,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-20201204/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 +516,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-20201204/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 +564,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-20201204/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 +612,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-20201204/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 +680,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-20201204/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_iau_prod -Checking test 013 fv3_ccpp_iau results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ca_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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-20210217/fv3_lndp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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-20210217/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 +881,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-20201204/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_lheatstrg_prod -Checking test 014 fv3_ccpp_lheatstrg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 +929,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-20201204/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_multigases_prod -Checking test 015 fv3_ccpp_multigases results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 +1003,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-20201204/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20210217/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 +1071,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-20201204/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_stretched_prod -Checking test 017 fv3_ccpp_stretched results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 +1127,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-20201204/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20210217/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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,103 +1194,53 @@ 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-20201204/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20210217/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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-20201204/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20210217/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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-20201204/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20210217/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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-20201204/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20210217/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_control_debug_prod -Checking test 023 fv3_ccpp_control_debug results .... - 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 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 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 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 -Test 023 fv3_ccpp_control_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_stretched_nest_debug_prod -Checking test 024 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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - 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 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,8 +1287,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,8 +1335,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,8 +1383,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,8 +1431,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,8 +1479,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,8 +1527,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,8 +1575,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,8 +1627,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,8 +1681,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,9 +1773,9 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_thompson_prod -Checking test 035 fv3_ccpp_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rap_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_rap_prod +Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1770,12 +1838,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 035 fv3_ccpp_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20210217/fv3_hrrr_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_hrrr_prod +Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1838,12 +1906,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 036 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/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-20210217/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 @@ -1906,22 +1974,42 @@ 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 037 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfsv16_csawmg_prod -Checking test 038 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 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 @@ -1954,34 +2042,1008 @@ Checking test 038 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 038 fv3_ccpp_gfsv16_csawmg PASS +Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 039 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_rrfs_v1beta_prod +Checking test 039 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.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 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 039 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_prod +Checking test 040 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 040 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_prod +Checking test 041 fv3_ccpp_gfs_v16 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 041 fv3_ccpp_gfs_v16 PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_restart_prod +Checking test 042 fv3_ccpp_gfs_v16_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 042 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_stochy_prod +Checking test 043 fv3_ccpp_gfs_v16_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 043 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 044 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 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 045 fv3_ccpp_gfs_v16_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 045 fv3_ccpp_gfs_v16_RRTMGP PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + 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 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_csawmg_prod +Checking test 047 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 047 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 048 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 048 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 + 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 049 fv3_ccpp_gocart_clm PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_flake_prod +Checking test 050 fv3_ccpp_gfs_v16_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 + 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 050 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 + 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 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... + 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 053 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + 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 054 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 + 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 @@ -2002,22 +3064,42 @@ Checking test 039 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 039 fv3_ccpp_gfsv16_csawmgt PASS +Test 055 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gocart_clm_prod -Checking test 040 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_debug_prod +Checking test 056 fv3_ccpp_gfs_v16_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.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 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 @@ -2038,24 +3120,24 @@ Checking test 040 fv3_ccpp_gocart_clm 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_gocart_clm 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 056 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2068,24 +3150,24 @@ Checking test 041 fv3_ccpp_gfs_v16beta_flake results .... 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 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 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 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 @@ -2106,24 +3188,24 @@ Checking test 041 fv3_ccpp_gfs_v16beta_flake 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_flake 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 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2136,24 +3218,24 @@ Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson results .... 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 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 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 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 @@ -2174,42 +3256,85 @@ Checking test 042 fv3_ccpp_HAFS_v0_hwrf_thompson 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 042 fv3_ccpp_HAFS_v0_hwrf_thompson 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 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_control_debug_prod +Checking test 059 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 043 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + 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 059 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_control_debug_prod +Checking test 060 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 060 fv3_ccpp_control_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stretched_nest_debug_prod +Checking test 061 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 061 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gsd_debug_prod -Checking test 044 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2272,12 +3397,12 @@ Checking test 044 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 044 fv3_ccpp_gsd_debug PASS +Test 062 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2340,12 +3465,12 @@ Checking test 045 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 045 fv3_ccpp_gsd_diag3d_debug PASS +Test 063 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_thompson_debug_prod -Checking test 046 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2408,12 +3533,12 @@ Checking test 046 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 046 fv3_ccpp_thompson_debug PASS +Test 064 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2476,12 +3601,12 @@ Checking test 047 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 047 fv3_ccpp_thompson_no_aero_debug PASS +Test 065 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2544,12 +3669,12 @@ Checking test 048 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 048 fv3_ccpp_rrfs_v1beta_debug PASS +Test 066 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2612,12 +3737,12 @@ Checking test 049 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 049 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_13268/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/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 Comparing phyf001.nc .........OK @@ -2630,9 +3755,71 @@ Checking test 050 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 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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/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 069 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 4 20:48:31 UTC 2020 -Elapsed time: 00h:33m:45s. Have a nice day! +Thu Feb 18 16:51:34 UTC 2021 +Elapsed time: 00h:42m:42s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 43609c2369..4dafe6fe6b 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Sat Dec 5 12:53:11 UTC 2020 +Thu Feb 18 21:24:50 UTC 2021 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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-20201204/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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-20201204/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -206,39 +206,21 @@ 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-20201204/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart 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 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 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 @@ -274,8 +256,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-20201204/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 +324,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-20201204/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 +372,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-20201204/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 +420,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-20201204/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 +430,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 .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -486,8 +468,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-20201204/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 +516,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-20201204/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 +564,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-20201204/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 +612,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-20201204/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 +680,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-20201204/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_iau_prod -Checking test 013 fv3_ccpp_iau results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ca_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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-20210217/fv3_lndp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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-20210217/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 +881,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-20201204/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_lheatstrg_prod -Checking test 014 fv3_ccpp_lheatstrg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 +929,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-20201204/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_prod -Checking test 015 fv3_ccpp_gfdlmprad results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 +978,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-20201204/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20210217/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 +1027,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-20201204/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_multigases_prod -Checking test 017 fv3_ccpp_multigases results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 +1101,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-20201204/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20210217/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 +1169,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-20201204/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_stretched_prod -Checking test 019 fv3_ccpp_stretched results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 +1225,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-20201204/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20210217/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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,115 +1292,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-20201204/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20210217/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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-20201204/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20210217/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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-20201204/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20210217/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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-20201204/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/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-20210217/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_regional_c768_prod -Checking test 025 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf003.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf003.nc .........OK -Test 025 fv3_ccpp_regional_c768 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_control_debug_prod -Checking test 026 fv3_ccpp_control_debug results .... - 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 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 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 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 -Test 026 fv3_ccpp_control_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_stretched_nest_debug_prod -Checking test 027 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 - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - 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 026 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmp_prod -Checking test 028 fv3_ccpp_gfdlmp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1325,12 +1382,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 027 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1373,12 +1430,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 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1421,12 +1478,12 @@ 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 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_csawmg_prod -Checking test 031 fv3_ccpp_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1469,12 +1526,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 030 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_satmedmf_prod -Checking test 032 fv3_ccpp_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1517,12 +1574,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 031 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_satmedmfq_prod -Checking test 033 fv3_ccpp_satmedmfq results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1565,12 +1622,12 @@ Checking test 033 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 033 fv3_ccpp_satmedmfq PASS +Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmp_32bit_prod -Checking test 034 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1613,12 +1670,12 @@ Checking test 034 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 034 fv3_ccpp_gfdlmp_32bit PASS +Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1665,12 +1722,12 @@ Checking test 035 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 035 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_cpt_prod -Checking test 036 fv3_ccpp_cpt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1719,12 +1776,12 @@ Checking test 036 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 036 fv3_ccpp_cpt PASS +Test 035 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gsd_prod -Checking test 037 fv3_ccpp_gsd results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1811,12 +1868,12 @@ Checking test 037 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 037 fv3_ccpp_gsd PASS +Test 036 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_thompson_prod -Checking test 038 fv3_ccpp_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rap_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1879,12 +1936,12 @@ Checking test 038 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 038 fv3_ccpp_thompson PASS +Test 037 fv3_ccpp_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_thompson_no_aero_prod -Checking test 039 fv3_ccpp_thompson_no_aero results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_hrrr_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -1947,12 +2004,12 @@ Checking test 039 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 039 fv3_ccpp_thompson_no_aero PASS +Test 038 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_rrfs_v1beta_prod -Checking test 040 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -2015,22 +2072,42 @@ Checking test 040 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 040 fv3_ccpp_rrfs_v1beta PASS +Test 039 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfsv16_csawmg_prod -Checking test 041 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 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 @@ -2063,25 +2140,45 @@ Checking test 041 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 041 fv3_ccpp_gfsv16_csawmg PASS +Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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.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 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 @@ -2111,60 +2208,12 @@ Checking test 042 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 042 fv3_ccpp_gfsv16_csawmgt PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gocart_clm_prod -Checking test 043 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 043 fv3_ccpp_gocart_clm PASS +Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gfs_v16beta_flake_prod -Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -2227,12 +2276,12 @@ Checking test 044 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 044 fv3_ccpp_gfs_v16beta_flake PASS +Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_prod +Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2251,6 +2300,12 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson 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 @@ -2263,6 +2318,12 @@ Checking test 045 fv3_ccpp_HAFS_v0_hwrf_thompson 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 @@ -2295,60 +2356,24 @@ Checking test 045 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 045 fv3_ccpp_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 046 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK - 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 PASS +Test 043 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gsd_debug_prod -Checking test 047 fv3_ccpp_gsd_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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_restart_prod +Checking test 044 fv3_ccpp_gfs_v16_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 @@ -2369,24 +2394,24 @@ Checking test 047 fv3_ccpp_gsd_debug 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/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 047 fv3_ccpp_gsd_debug PASS + 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_v16_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_stochy_prod +Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2399,24 +2424,24 @@ Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 @@ -2437,24 +2462,24 @@ Checking test 048 fv3_ccpp_gsd_diag3d_debug 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/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_gsd_diag3d_debug PASS + 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_v16_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_thompson_debug_prod -Checking test 049 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 @@ -2467,24 +2492,24 @@ Checking test 049 fv3_ccpp_thompson_debug results .... 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 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 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 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 @@ -2505,24 +2530,24 @@ Checking test 049 fv3_ccpp_thompson_debug 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/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_thompson_debug PASS + 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/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2535,24 +2560,24 @@ Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... 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 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 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 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 @@ -2573,25 +2598,231 @@ Checking test 050 fv3_ccpp_thompson_no_aero_debug 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/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 050 fv3_ccpp_thompson_no_aero_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.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_v16_RRTMGP PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 + 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 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 + 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_csawmg PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 + 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 050 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 + 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 051 fv3_ccpp_gocart_clm PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_flake_prod +Checking test 052 fv3_ccpp_gfs_v16_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 @@ -2603,24 +2834,1741 @@ Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 052 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 + 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 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 + Comparing phyf012.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf012.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... + 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 055 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + 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 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 + 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_v15p2_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_debug_prod +Checking test 058 fv3_ccpp_gfs_v16_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 058 fv3_ccpp_gfs_v16_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/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 + 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 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 060 fv3_ccpp_gfs_v16_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 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_control_debug_prod +Checking test 061 fv3_ccpp_regional_control_debug 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 061 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_control_debug_prod +Checking test 062 fv3_ccpp_control_debug results .... + 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 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 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 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 +Test 062 fv3_ccpp_control_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stretched_nest_debug_prod +Checking test 063 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 + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK +Test 063 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gsd_debug_prod +Checking test 064 fv3_ccpp_gsd_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 064 fv3_ccpp_gsd_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 065 fv3_ccpp_gsd_diag3d_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 065 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_debug_prod +Checking test 066 fv3_ccpp_thompson_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 066 fv3_ccpp_thompson_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 067 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 + 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 067 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 068 fv3_ccpp_rrfs_v1beta_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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 068 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 069 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 + 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.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 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + Comparing atmos_4xdaily.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/phy_data.nc .........OK +Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... + 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/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 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_prod +Checking test 072 cpld_control results .... + 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 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 + 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 072 cpld_control PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_prod +Checking test 073 cpld_restart results .... + 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 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 + 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 073 cpld_restart PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_prod +Checking test 074 cpld_controlfrac results .... + 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 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 + 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 074 cpld_controlfrac PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_prod +Checking test 075 cpld_restartfrac results .... + 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 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 + 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 075 cpld_restartfrac PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_2threads_prod +Checking test 076 cpld_2threads results .... + 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 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 + 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 076 cpld_2threads PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_decomp_prod +Checking test 077 cpld_decomp results .... + 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 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 + 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 077 cpld_decomp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_satmedmf_prod +Checking test 078 cpld_satmedmf results .... + 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 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 + 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 078 cpld_satmedmf PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_ca_prod +Checking test 079 cpld_ca results .... + 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 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 + 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 079 cpld_ca PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_c192_prod +Checking test 080 cpld_control_c192 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/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/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 080 cpld_control_c192 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_c192_prod +Checking test 081 cpld_restart_c192 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/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/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 081 cpld_restart_c192 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_c192_prod +Checking test 082 cpld_controlfrac_c192 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/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/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 082 cpld_controlfrac_c192 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_c192_prod +Checking test 083 cpld_restartfrac_c192 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/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/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 083 cpld_restartfrac_c192 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_c384_prod +Checking test 084 cpld_control_c384 results .... + 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 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 @@ -2653,42 +4601,30 @@ Checking test 051 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 051 fv3_ccpp_rrfs_v1beta_debug PASS + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 084 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 052 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 - 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 phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.tile6.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_c384_prod +Checking test 085 cpld_restart_c384 results .... + 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 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 @@ -2709,42 +4645,30 @@ Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug 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 052 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.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_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK -Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug 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 + 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.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK +Test 085 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_prod -Checking test 054 cpld_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_c384_prod +Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2790,14 +4714,17 @@ Checking test 054 cpld_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 054 cpld_control PASS +Test 086 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_2threads_prod -Checking test 055 cpld_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_c384_prod +Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2843,14 +4770,17 @@ Checking test 055 cpld_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 055 cpld_2threads PASS +Test 087 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_decomp_prod -Checking test 056 cpld_decomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmark_prod +Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2896,14 +4826,17 @@ Checking test 056 cpld_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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 056 cpld_decomp PASS + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + 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 088 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_satmedmf_prod -Checking test 057 cpld_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmark_prod +Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -2949,14 +4882,17 @@ Checking test 057 cpld_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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 057 cpld_satmedmf PASS + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + 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 089 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_ca_prod -Checking test 058 cpld_ca results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_prod +Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3002,14 +4938,17 @@ Checking test 058 cpld_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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 058 cpld_ca PASS + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + 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 090 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_mx025_prod -Checking test 059 cpld_control_mx025 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmarkfrac_prod +Checking test 091 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3058,14 +4997,14 @@ Checking test 059 cpld_control_mx025 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 059 cpld_control_mx025 PASS + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 091 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_mx025_12h_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_mx025_12h_prod -Checking test 060 cpld_control_mx025_12h results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_v16_prod +Checking test 092 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -3114,26 +5053,26 @@ Checking test 060 cpld_control_mx025_12h results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-03-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -Test 060 cpld_control_mx025_12h PASS + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 092 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_mx025_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_restart_mx025_prod -Checking test 061 cpld_restart_mx025 results .... - 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 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 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmarkfrac_v16_prod +Checking test 093 cpld_restart_bmarkfrac_v16 results .... + 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 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 @@ -3170,14 +5109,14 @@ Checking test 061 cpld_restart_mx025 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 061 cpld_restart_mx025 PASS + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 093 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_c192_prod -Checking test 062 cpld_control_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmark_wave_prod +Checking test 094 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3190,6 +5129,9 @@ Checking test 062 cpld_control_c192 results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK + Comparing 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -3223,14 +5165,17 @@ Checking test 062 cpld_control_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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_control_c192 PASS + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + 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 094 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_control_c384_prod -Checking test 063 cpld_control_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_wave_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_wave_prod +Checking test 095 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3243,6 +5188,9 @@ Checking test 063 cpld_control_c384 results .... Comparing dynf024.tile4.nc .........OK Comparing dynf024.tile5.nc .........OK Comparing dynf024.tile6.nc .........OK + Comparing 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -3279,26 +5227,29 @@ Checking test 063 cpld_control_c384 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 063 cpld_control_c384 PASS + Comparing RESTART/iced.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK +Test 095 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_controlfrac_c384_prod -Checking test 064 cpld_controlfrac_c384 results .... - 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 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 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_wave_v16_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_wave_v16_prod +Checking test 096 cpld_bmarkfrac_wave_v16 results .... + 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 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 20130401.120000.out_grd.gwes_30m .........OK + Comparing 20130401.120000.out_pnt.points .........OK + Comparing 20130401.120000.restart.gwes_30m .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -3335,14 +5286,14 @@ Checking test 064 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 064 cpld_controlfrac_c384 PASS + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK +Test 096 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_bmark_prod -Checking test 065 cpld_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_wave_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_wave_prod +Checking test 097 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3388,32 +5339,29 @@ Checking test 065 cpld_bmark results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 065 cpld_bmark PASS + Comparing RESTART/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK + Comparing 20161004.000000.out_grd.glo_1deg .........OK + Comparing 20161004.000000.out_pnt.points .........OK + Comparing 20161004.000000.restart.glo_1deg .........OK +Test 097 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_bmark_wave_prod -Checking test 066 cpld_bmark_wave results .... - 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 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 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_debug_prod +Checking test 098 cpld_debug results .... + 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 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 @@ -3447,17 +5395,14 @@ Checking test 066 cpld_bmark_wave results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK 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.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 066 cpld_bmark_wave PASS + Comparing RESTART/iced.2016-10-03-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK +Test 098 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201204/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_45060/cpld_debug_prod -Checking test 067 cpld_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_debugfrac_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_debugfrac_prod +Checking test 099 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -3505,9 +5450,87 @@ Checking test 067 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 067 cpld_debug PASS +Test 099 cpld_debugfrac PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_control_cfsr +Checking test 100 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 100 datm_control_cfsr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_restart_cfsr +Checking test 101 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 101 datm_restart_cfsr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_control_gefs +Checking test 102 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 102 datm_control_gefs PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_bulk_cfsr +Checking test 103 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 103 datm_bulk_cfsr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_bulk_gefs +Checking test 104 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 104 datm_bulk_gefs PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_mx025_cfsr +Checking test 105 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 105 datm_mx025_cfsr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_mx025_gefs +Checking test 106 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 106 datm_mx025_gefs PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_debug_cfsr +Checking test 107 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 107 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sat Dec 5 14:57:47 UTC 2020 -Elapsed time: 02h:04m:38s. Have a nice day! +Fri Feb 19 05:44:09 UTC 2021 +Elapsed time: 08h:19m:22s. Have a nice day! diff --git a/tests/UnitTests_hera.gnu.log b/tests/UnitTests_hera.gnu.log new file mode 100644 index 0000000000..6e20934231 --- /dev/null +++ b/tests/UnitTests_hera.gnu.log @@ -0,0 +1,464 @@ + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_control_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_bit_base +Checking test bit_base fv3_ccpp_control results .... +Moving baseline bit_base fv3_ccpp_control files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test bit_base fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_control_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_dbg_base +Checking test dbg_base fv3_ccpp_control results .... +Moving baseline dbg_base fv3_ccpp_control files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test dbg_base fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_dcp +Checking test dcp fv3_ccpp_control 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 ............SKIP for gnu compilers + 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 dcp fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_mpi +Checking test mpi fv3_ccpp_control 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 ............SKIP for gnu compilers + 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 mpi fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_rst +Checking test rst fv3_ccpp_control results .... + 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 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 ............SKIP for gnu compilers + 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 rst fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_std_base +Checking test std_base fv3_ccpp_control results .... +Moving baseline std_base fv3_ccpp_control files .... + Moving atmos_4xdaily.tile1.nc .........OK + Moving atmos_4xdaily.tile2.nc .........OK + Moving atmos_4xdaily.tile3.nc .........OK + Moving atmos_4xdaily.tile4.nc .........OK + Moving atmos_4xdaily.tile5.nc .........OK + Moving atmos_4xdaily.tile6.nc .........OK + Moving phyf000.tile1.nc .........OK + Moving phyf000.tile2.nc .........OK + Moving phyf000.tile3.nc .........OK + Moving phyf000.tile4.nc .........OK + Moving phyf000.tile5.nc .........OK + Moving phyf000.tile6.nc .........OK + Moving phyf024.tile1.nc .........OK + Moving phyf024.tile2.nc .........OK + Moving phyf024.tile3.nc .........OK + Moving phyf024.tile4.nc .........OK + Moving phyf024.tile5.nc .........OK + Moving phyf024.tile6.nc .........OK + Moving dynf000.tile1.nc .........OK + Moving dynf000.tile2.nc .........OK + Moving dynf000.tile3.nc .........OK + Moving dynf000.tile4.nc .........OK + Moving dynf000.tile5.nc .........OK + Moving dynf000.tile6.nc .........OK + Moving dynf024.tile1.nc .........OK + Moving dynf024.tile2.nc .........OK + Moving dynf024.tile3.nc .........OK + Moving dynf024.tile4.nc .........OK + Moving dynf024.tile5.nc .........OK + Moving dynf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK +Test std_base fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_thr +Checking test thr fv3_ccpp_control 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 ............SKIP for gnu compilers + 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 thr fv3_ccpp_control PASS + +UNIT TEST WAS SUCCESSFUL +Mon Dec 28 21:38:18 UTC 2020 +Elapsed time: 00h:16m:49s. Have a nice day! diff --git a/tests/UnitTests_hera.intel.log b/tests/UnitTests_hera.intel.log index 65a1bd9615..173f385d06 100644 --- a/tests/UnitTests_hera.intel.log +++ b/tests/UnitTests_hera.intel.log @@ -1,9 +1,8 @@ -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200713/INTEL/fv3_control_bit_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_269251/fv3_ccpp_control_bit_base +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_bit_base Checking test bit_base fv3_ccpp_control results .... Moving baseline bit_base fv3_ccpp_control files .... - mkdir -p /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_bit_base/RESTART Moving atmos_4xdaily.tile1.nc .........OK Moving atmos_4xdaily.tile2.nc .........OK Moving atmos_4xdaily.tile3.nc .........OK @@ -69,11 +68,10 @@ Moving baseline bit_base fv3_ccpp_control files .... Test bit_base fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200713/INTEL/fv3_control_dbg_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_269251/fv3_ccpp_control_dbg_base +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_dbg_base Checking test dbg_base fv3_ccpp_control results .... Moving baseline dbg_base fv3_ccpp_control files .... - mkdir -p /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_dbg_base/RESTART Moving atmos_4xdaily.tile1.nc .........OK Moving atmos_4xdaily.tile2.nc .........OK Moving atmos_4xdaily.tile3.nc .........OK @@ -139,8 +137,8 @@ Moving baseline dbg_base fv3_ccpp_control files .... Test dbg_base fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_269251/fv3_ccpp_control_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_dcp Checking test dcp fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,8 +205,8 @@ Checking test dcp fv3_ccpp_control results .... Test dcp fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_269251/fv3_ccpp_control_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_mpi Checking test mpi fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -275,61 +273,60 @@ Checking test mpi fv3_ccpp_control results .... Test mpi fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_269251/fv3_ccpp_control_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_rst Checking test rst fv3_ccpp_control results .... - Comparing phyf024.tile1.nc ............NOT OK - Comparing phyf024.tile2.nc ............NOT OK - Comparing phyf024.tile3.nc ............NOT OK - Comparing phyf024.tile4.nc ............NOT OK - Comparing phyf024.tile5.nc ............NOT OK - Comparing phyf024.tile6.nc ............NOT OK - Comparing dynf024.tile1.nc ............NOT OK - Comparing dynf024.tile2.nc ............NOT OK - Comparing dynf024.tile3.nc ............NOT OK - Comparing dynf024.tile4.nc ............NOT OK - Comparing dynf024.tile5.nc ............NOT OK - Comparing dynf024.tile6.nc ............NOT 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 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 ............NOT OK - Comparing RESTART/fv_core.res.tile2.nc ............NOT OK - Comparing RESTART/fv_core.res.tile3.nc ............NOT OK - Comparing RESTART/fv_core.res.tile4.nc ............NOT OK - Comparing RESTART/fv_core.res.tile5.nc ............NOT OK - Comparing RESTART/fv_core.res.tile6.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile1.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile2.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile3.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile4.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile5.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile6.nc ............NOT OK - Comparing RESTART/phy_data.tile1.nc ............NOT OK - Comparing RESTART/phy_data.tile2.nc ............NOT OK - Comparing RESTART/phy_data.tile3.nc ............NOT OK - Comparing RESTART/phy_data.tile4.nc ............NOT OK - Comparing RESTART/phy_data.tile5.nc ............NOT OK - Comparing RESTART/phy_data.tile6.nc ............NOT OK - Comparing RESTART/sfc_data.tile1.nc ............NOT OK - Comparing RESTART/sfc_data.tile2.nc ............NOT OK - Comparing RESTART/sfc_data.tile3.nc ............NOT OK - Comparing RESTART/sfc_data.tile4.nc ............NOT OK - Comparing RESTART/sfc_data.tile5.nc ............NOT OK - Comparing RESTART/sfc_data.tile6.nc ............NOT OK -Test rst fv3_ccpp_control FAIL + 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 rst fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200713/INTEL/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_269251/fv3_ccpp_control_std_base +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_std_base Checking test std_base fv3_ccpp_control results .... Moving baseline std_base fv3_ccpp_control files .... - mkdir -p /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std_base/RESTART Moving atmos_4xdaily.tile1.nc .........OK Moving atmos_4xdaily.tile2.nc .........OK Moving atmos_4xdaily.tile3.nc .........OK @@ -395,8 +392,8 @@ Moving baseline std_base fv3_ccpp_control files .... Test std_base fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_269251/fv3_ccpp_control_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_thr Checking test thr fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -462,9 +459,6 @@ Checking test thr fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile6.nc .........OK Test thr fv3_ccpp_control PASS -FAILED TESTS: -Test rst fv3_ccpp_control failed -Test rst fv3_ccpp_control failed -UNIT TEST FAILED -Tue Sep 8 20:50:57 UTC 2020 -Elapsed time: 00h:15m:11s. Have a nice day! +UNIT TEST WAS SUCCESSFUL +Mon Dec 28 21:16:09 UTC 2020 +Elapsed time: 00h:14m:46s. Have a nice day! diff --git a/tests/ci/Dockerfile b/tests/ci/Dockerfile index 3a8bd8ebf0..c685eafbad 100644 --- a/tests/ci/Dockerfile +++ b/tests/ci/Dockerfile @@ -1,4 +1,4 @@ -From noaaemc/ubuntu-hpc:v1 +From noaaemc/ubuntu-hpc:v1.1 ENV HOME=/home/builder COPY --chown=builder:builder . $HOME/ufs-weather-model diff --git a/tests/ci/ci.sh b/tests/ci/ci.sh index f37cbde0f8..f9af49440c 100755 --- a/tests/ci/ci.sh +++ b/tests/ci/ci.sh @@ -63,8 +63,6 @@ fi if [ $BUILD = "true" ]; then - sed -i -e '/affinity.c/d' ../../CMakeLists.txt - sudo docker build --build-arg test_name=$TEST_NAME \ --build-arg build_case=$BUILD_CASE \ --no-cache \ @@ -74,8 +72,8 @@ if [ $BUILD = "true" ]; then elif [ $RUN == "true" ]; then - sudo docker run -d --rm -v DataVolume:/tmp minsukjinoaa/fv3-input-data:develop-20200713 - sudo docker run -d -e test_case=${TEST_CASE} -v DataVolume:/home/builder/data/NEMSfv3gfs/develop-20201118 --name my-container ${IMG_NAME} + sudo docker run -d --rm -v DataVolume:/tmp minsukjinoaa/fv3-input-data:input-data-20210115 + sudo docker run -d -e test_case=${TEST_CASE} -v DataVolume:/home/builder/data/NEMSfv3gfs/input-data-20210115 --name my-container ${IMG_NAME} echo 'cache,rss,shmem' >memory_stat sleep 3 diff --git a/tests/compare_ncfile.py b/tests/compare_ncfile.py index 764d5e3288..e5b5ad4f01 100755 --- a/tests/compare_ncfile.py +++ b/tests/compare_ncfile.py @@ -4,12 +4,20 @@ from netCDF4 import Dataset with Dataset(sys.argv[1]) as nc1, Dataset(sys.argv[2]) as nc2: + # Check if the list of variables are the same if nc1.variables.keys()!=nc2.variables.keys(): print("Variables are different") - sys.exit(1) + sys.exit(2) for varname in nc1.variables.keys(): - diff = nc2[varname][:]-nc1[varname][:] - if (np.abs(diff)).max() != 0: - print(varname,"is different") - sys.exit(1) + # First check if each variable has the same dimension + if np.shape(nc1[varname][:])!=np.shape(nc2[varname][:]): + print(varname,"dimension is different") + sys.exit(2) + # If dimension is the same, compare data + else: + diff = nc2[varname][:]-nc1[varname][:] + + if (np.abs(diff)).max() != 0: + print(varname,"is different") + sys.exit(2) diff --git a/tests/compile.sh b/tests/compile.sh index 8d64b33394..96b847e7c7 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -56,6 +56,9 @@ set +x if [[ $MACHINE_ID == macosx.* ]] || [[ $MACHINE_ID == linux.* ]]; then source $PATHTR/modulefiles/${MACHINE_ID}/fv3 else + if [[ $MACHINE_ID == wcoss2 ]]; then + source /apps/prod/lmodules/startLmod + fi # Activate lua environment for gaea if [[ $MACHINE_ID == gaea.* ]] ; then source /lustre/f2/pdata/esrl/gsd/contrib/lua-5.1.4.9/init/init_lmod.sh @@ -97,46 +100,36 @@ else CMAKE_FLAGS="${CMAKE_FLAGS} -DMULTI_GASES=OFF" fi -if [[ "${MAKE_OPT}" == *"CCPP=Y"* ]]; then - - # FIXME - create CCPP include directory before building FMS to avoid - # gfortran warnings of non-existent include directory (adding - # -Wno-missing-include-dirs) to the GNU compiler flags does not work, - # see also https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55534); - # this line can be removed once FMS becomes a pre-installed library - 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" +# FIXME - create CCPP include directory before building FMS to avoid +# gfortran warnings of non-existent include directory (adding +# -Wno-missing-include-dirs) to the GNU compiler flags does not work, +# see also https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55534); +# this line can be removed once FMS becomes a pre-installed library +mkdir -p $PATHTR/FV3/ccpp/include +# Similar for this directory, which apparently never gets populated +mkdir -p $PATHTR/FMS/fms2_io/include - if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Debug" - elif [[ "${MAKE_OPT}" == *"REPRO=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Bitforbit" - else - CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Release" - if [[ "${MACHINE_ID}" == "jet.intel" ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DSIMDMULTIARCH=ON" - fi - fi +CMAKE_FLAGS="${CMAKE_FLAGS} -DMPI=ON" - 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=" ) - if [[ $? -eq 0 ]]; then - CCPP_SUITES=$( echo $MAKE_OPT | sed 's/.* SUITES=//' | sed 's/ .*//' ) - echo "Compiling suites ${CCPP_SUITES}" +if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Debug" +elif [[ "${MAKE_OPT}" == *"REPRO=Y"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Bitforbit" +else + CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Release" + if [[ "${MACHINE_ID}" == "jet.intel" ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DSIMDMULTIARCH=ON" fi - set -ex +fi + # Check if suites argument is provided or not +set +ex +TEST=$( echo $MAKE_OPT | grep -e "SUITES=" ) +if [[ $? -eq 0 ]]; then + CCPP_SUITES=$( echo $MAKE_OPT | sed 's/.*SUITES=//' | sed 's/ .*//' ) + echo "Compiling suites ${CCPP_SUITES}" fi +set -ex if [[ "${MAKE_OPT}" == *"WW3=Y"* ]]; then CMAKE_FLAGS="${CMAKE_FLAGS} -DWW3=Y" diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 4764fa1fdd..3820f68695 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -7,14 +7,14 @@ # ############################################################################### -if [ $MACHINE_ID = wcoss_cray ]; then +if [[ $MACHINE_ID = wcoss_cray ]]; then TASKS_dflt=150 ; TPN_dflt=24 ; INPES_dflt=3 ; JNPES_dflt=8 TASKS_thrd=84 ; TPN_thrd=12 ; INPES_thrd=3 ; JNPES_thrd=4 TASKS_stretch=48 ; TPN_stretch=24 ; INPES_stretch=2 ; JNPES_stretch=4 TASKS_strnest=96 ; TPN_strnest=24 ; INPES_strnest=2 ; JNPES_strnest=4 -elif [ $MACHINE_ID = wcoss_dell_p3 ]; then +elif [[ $MACHINE_ID = wcoss_dell_p3 || $MACHINE_ID = wcoss2 ]]; then TASKS_dflt=150 ; TPN_dflt=28 ; INPES_dflt=3 ; JNPES_dflt=8 TASKS_thrd=84 ; TPN_thrd=14 ; INPES_thrd=3 ; JNPES_thrd=4 @@ -25,6 +25,10 @@ elif [ $MACHINE_ID = wcoss_dell_p3 ]; then THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191" + TASKS_cpl_dflt_wwav=204; TPN_cpl_dflt_wwav=28; INPES_cpl_dflt_wwav=3; JNPES_cpl_dflt_wwav=8 + THRD_cpl_dflt_wwav=1; WPG_cpl_dflt_wwav=6; MPB_cpl_dflt_wwav="0 143"; APB_cpl_dflt_wwav="0 149" + OPB_cpl_dflt_wwav="150 179"; IPB_cpl_dflt_wwav="180 191"; WPB_cpl_dflt_wwav="192 203" + TASKS_cpl_thrd=120; TPN_cpl_thrd=14; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" OPB_cpl_thrd="78 107"; IPB_cpl_thrd="108 119" @@ -45,6 +49,14 @@ elif [ $MACHINE_ID = wcoss_dell_p3 ]; then THRD_cpl_c384=1; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" + TASKS_datm_100=120; TPN_datm_100=28 + MPB_datm_100="16 77"; APB_datm_100="0 15" + OPB_datm_100="78 107"; IPB_datm_100="108 119" + + TASKS_datm_025=208; TPN_datm_025=28 + MPB_datm_025="0 39"; APB_datm_025="0 39" + OPB_datm_025="40 159"; IPB_datm_025="160 207" + elif [[ $MACHINE_ID = orion.* ]]; then TASKS_dflt=150 ; TPN_dflt=40 ; INPES_dflt=3 ; JNPES_dflt=8 @@ -56,6 +68,10 @@ elif [[ $MACHINE_ID = orion.* ]]; then THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191" + TASKS_cpl_dflt_wwav=204; TPN_cpl_dflt_wwav=40; INPES_cpl_dflt_wwav=3; JNPES_cpl_dflt_wwav=8 + THRD_cpl_dflt_wwav=1; WPG_cpl_dflt_wwav=6; MPB_cpl_dflt_wwav="0 143"; APB_cpl_dflt_wwav="0 149" + OPB_cpl_dflt_wwav="150 179"; IPB_cpl_dflt_wwav="180 191"; WPB_cpl_dflt_wwav="192 203" + TASKS_cpl_thrd=120; TPN_cpl_thrd=40; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" OPB_cpl_thrd="78 107"; IPB_cpl_thrd="108 119" @@ -76,6 +92,14 @@ elif [[ $MACHINE_ID = orion.* ]]; then THRD_cpl_c384=1; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" + TASKS_datm_100=120; TPN_datm_100=40 + MPB_datm_100="16 77"; APB_datm_100="0 15" + OPB_datm_100="78 107"; IPB_datm_100="108 119" + + TASKS_datm_025=208; TPN_datm_025=40 + MPB_datm_025="0 39"; APB_datm_025="0 39" + OPB_datm_025="40 159"; IPB_datm_025="160 207" + elif [[ $MACHINE_ID = hera.* ]]; then TASKS_dflt=150 ; TPN_dflt=40 ; INPES_dflt=3 ; JNPES_dflt=8 @@ -87,6 +111,10 @@ elif [[ $MACHINE_ID = hera.* ]]; then THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191" + TASKS_cpl_dflt_wwav=204; TPN_cpl_dflt_wwav=40; INPES_cpl_dflt_wwav=3; JNPES_cpl_dflt_wwav=8 + THRD_cpl_dflt_wwav=1; WPG_cpl_dflt_wwav=6; MPB_cpl_dflt_wwav="0 143"; APB_cpl_dflt_wwav="0 149" + OPB_cpl_dflt_wwav="150 179"; IPB_cpl_dflt_wwav="180 191"; WPB_cpl_dflt_wwav="192 203" + TASKS_cpl_thrd=120; TPN_cpl_thrd=40; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" OPB_cpl_thrd="78 107"; IPB_cpl_thrd="108 119" @@ -107,6 +135,14 @@ elif [[ $MACHINE_ID = hera.* ]]; then THRD_cpl_c384=1; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" + TASKS_datm_100=120; TPN_datm_100=40 + MPB_datm_100="16 77"; APB_datm_100="0 15" + OPB_datm_100="78 107"; IPB_datm_100="108 119" + + TASKS_datm_025=208; TPN_datm_025=40 + MPB_datm_025="0 39"; APB_datm_025="0 39" + OPB_datm_025="40 159"; IPB_datm_025="160 207" + elif [[ $MACHINE_ID = linux.* ]]; then if [[ $CI_TEST = true ]]; then @@ -132,6 +168,42 @@ elif [[ $MACHINE_ID = gaea.* ]]; then TASKS_stretch=48 ; TPN_stretch=18 ; INPES_stretch=2 ; JNPES_stretch=4 TASKS_strnest=96 ; TPN_strnest=18 ; INPES_strnest=2 ; JNPES_strnest=4 + TASKS_cpl_dflt=192; TPN_cpl_dflt=36; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 + THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" + OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191" + + TASKS_cpl_dflt_wwav=204; TPN_cpl_dflt_wwav=36; INPES_cpl_dflt_wwav=3; JNPES_cpl_dflt_wwav=8 + THRD_cpl_dflt_wwav=1; WPG_cpl_dflt_wwav=6; MPB_cpl_dflt_wwav="0 143"; APB_cpl_dflt_wwav="0 149" + OPB_cpl_dflt_wwav="150 179"; IPB_cpl_dflt_wwav="180 191"; WPB_cpl_dflt_wwav="192 203" + + TASKS_cpl_thrd=120; TPN_cpl_thrd=18; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 + THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" + OPB_cpl_thrd="78 107"; IPB_cpl_thrd="108 119" + + TASKS_cpl_bmrk=480; TPN_cpl_bmrk=36; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 + THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" + OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479" + + TASKS_cpl_wwav=520; TPN_cpl_wwav=36; INPES_cpl_wwav=6; JNPES_cpl_wwav=8 + THRD_cpl_wwav=1; WPG_cpl_wwav=24; MPB_cpl_wwav="0 287"; APB_cpl_wwav="0 311" + OPB_cpl_wwav="312 431"; IPB_cpl_wwav="432 479"; WPB_cpl_wwav="480 519" + + TASKS_cpl_c192=288; TPN_cpl_c192=36; INPES_cpl_c192=4; JNPES_cpl_c192=8 + THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" + OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" + + TASKS_cpl_c384=318; TPN_cpl_c384=36; INPES_cpl_c384=3; JNPES_cpl_c384=8 + THRD_cpl_c384=1; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" + OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" + + TASKS_datm_100=120; TPN_datm_100=36 + MPB_datm_100="16 77"; APB_datm_100="0 15" + OPB_datm_100="78 107"; IPB_datm_100="108 119" + + TASKS_datm_025=208; TPN_datm_025=36 + MPB_datm_025="0 39"; APB_datm_025="0 39" + OPB_datm_025="40 159"; IPB_datm_025="160 207" + elif [[ $MACHINE_ID = cheyenne.* ]]; then TASKS_dflt=150 ; TPN_dflt=36 ; INPES_dflt=3 ; JNPES_dflt=8 @@ -139,6 +211,42 @@ elif [[ $MACHINE_ID = cheyenne.* ]]; then TASKS_stretch=48 ; TPN_stretch=18 ; INPES_stretch=2 ; JNPES_stretch=4 TASKS_strnest=96 ; TPN_strnest=18 ; INPES_strnest=2 ; JNPES_strnest=4 + TASKS_cpl_dflt=192; TPN_cpl_dflt=36; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 + THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" + OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191" + + TASKS_cpl_dflt_wwav=204; TPN_cpl_dflt_wwav=36; INPES_cpl_dflt_wwav=3; JNPES_cpl_dflt_wwav=8 + THRD_cpl_dflt_wwav=1; WPG_cpl_dflt_wwav=6; MPB_cpl_dflt_wwav="0 143"; APB_cpl_dflt_wwav="0 149" + OPB_cpl_dflt_wwav="150 179"; IPB_cpl_dflt_wwav="180 191"; WPB_cpl_dflt_wwav="192 203" + + TASKS_cpl_thrd=120; TPN_cpl_thrd=36; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 + THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" + OPB_cpl_thrd="78 107"; IPB_cpl_thrd="108 119" + + TASKS_cpl_bmrk=480; TPN_cpl_bmrk=36; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 + THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" + OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479" + + TASKS_cpl_wwav=520; TPN_cpl_wwav=36; INPES_cpl_wwav=6; JNPES_cpl_wwav=8 + THRD_cpl_wwav=1; WPG_cpl_wwav=24; MPB_cpl_wwav="0 287"; APB_cpl_wwav="0 311" + OPB_cpl_wwav="312 431"; IPB_cpl_wwav="432 479"; WPB_cpl_wwav="480 519" + + TASKS_cpl_c192=288; TPN_cpl_c192=36; INPES_cpl_c192=4; JNPES_cpl_c192=8 + THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" + OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" + + TASKS_cpl_c384=318; TPN_cpl_c384=36; INPES_cpl_c384=3; JNPES_cpl_c384=8 + THRD_cpl_c384=1; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" + OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" + + TASKS_datm_100=120; TPN_datm_100=36 + MPB_datm_100="16 77"; APB_datm_100="0 15" + OPB_datm_100="78 107"; IPB_datm_100="108 119" + + TASKS_datm_025=208; TPN_datm_025=36 + MPB_datm_025="0 39"; APB_datm_025="0 39" + OPB_datm_025="40 159"; IPB_datm_025="160 207" + elif [[ $MACHINE_ID = stampede.* ]]; then TASKS_dflt=150 ; TPN_dflt=48 ; INPES_dflt=3 ; JNPES_dflt=8 @@ -149,6 +257,10 @@ elif [[ $MACHINE_ID = stampede.* ]]; then THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191" + TASKS_cpl_dflt_wwav=204; TPN_cpl_dflt_wwav=48; INPES_cpl_dflt_wwav=3; JNPES_cpl_dflt_wwav=8 + THRD_cpl_dflt_wwav=1; WPG_cpl_dflt_wwav=6; MPB_cpl_dflt_wwav="0 143"; APB_cpl_dflt_wwav="0 149" + OPB_cpl_dflt_wwav="150 179"; IPB_cpl_dflt_wwav="180 191"; WPB_cpl_dflt_wwav="192 203" + TASKS_cpl_thrd=120; TPN_cpl_thrd=48; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 77"; APB_cpl_thrd="0 77" OPB_cpl_thrd="78 107"; IPB_cpl_thrd="108 119" @@ -168,6 +280,15 @@ elif [[ $MACHINE_ID = stampede.* ]]; then TASKS_cpl_c384=318; TPN_cpl_c384=48; INPES_cpl_c384=3; JNPES_cpl_c384=8 THRD_cpl_c384=1; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" + + TASKS_datm_100=120; TPN_datm_100=48 + MPB_datm_100="16 77"; APB_datm_100="0 15" + OPB_datm_100="78 107"; IPB_datm_100="108 119" + + TASKS_datm_025=208; TPN_datm_025=48 + MPB_datm_025="0 39"; APB_datm_025="0 39" + OPB_datm_025="40 159"; IPB_datm_025="160 207" + else echo "Unknown MACHINE_ID ${MACHINE_ID}" @@ -222,6 +343,8 @@ export NA_INIT=1 # Radiation export DO_RRTMGP=.F. export ICLOUD=0 +export IAER=111 +export ICLIQ_SW=1 export IOVR=1 # Microphysics @@ -292,7 +415,7 @@ export NPY=97 export NPZ=64 export NPZP=65 export NSTF_NAME=2,1,1,0,5 -export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24 +export FDIAG=0,1,2,3,4,5,6,7,8,9,10,11,12,15,18,21,24,27,30,33,36,39,42,45,48 export NFHOUT=3 export NFHMAX_HF=12 export NFHOUT_HF=1 @@ -397,6 +520,7 @@ export RESTART_N=${FHMAX} export CPLMODE='nems_orig' export cap_dbug_flag="0" export use_coldstart="false" +export use_mommesh="false" export RUNTYPE='startup' # FV3 defaults @@ -422,6 +546,18 @@ export CPLFLX='.T.' export CPL='.true.' export NSTF_NAME='0,0,0,0,0' +export DZ_MIN='2' +export MIN_SEAICE='1.0e-11' + +# resolution dependent settings +export CDMBWD_c96='0.14,1.8,1.0,1.0' +export CDMBWD_c192='0.23,1.5,1.0,1.0' +export CDMBWD_c384='1.1,0.72,1.0,1.0' +export CDMBWD_c768='4.0,0.15,1.0,1.0' + +# set default +export CDMBWD=${CDMBWD_c96} + # for FV3: default values will be changed if doing a warm-warm restart export WARM_START='.F.' export MAKE_NH='.T.' @@ -445,7 +581,7 @@ export MOM6_USE_WAVES='False' # CICE6 defaults; 1 degree export NPROC_ICE='12' -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export RUNID='unknown' @@ -453,13 +589,17 @@ export RUNID='unknown' export DUMPFREQ='d' export DUMPFREQ_N=1000 export USE_RESTART_TIME='.false.' -export RESTART_EXT='.false' +export RESTART_EXT='.false.' # setting to true will allow Frazil FW and Salt to be # included in fluxes sent to ocean export FRAZIL_FWSALT='.true.' # default to write CICE average history files export CICE_HIST_AVG='.true.' +# checkpoint restarts +export RESTART_FILE_PREFIX='' +export RESTART_FILE_SUFFIX_HRS='' +export RESTART_FILE_SUFFIX_SECS='' export RT35D='' } export_35d_run () @@ -477,6 +617,7 @@ export FHMAX=24 export WLCLK=30 export THRD=1 export FHROT='0' +export WARM_START=.F. # atm/ocn/ice resolution # GEFS @@ -487,6 +628,7 @@ export JATM=768 export ATMRES='C96' export OCNRES='100' export ICERES='1.00' +export WAVRES='1.00' export NX_GLB=360 export NY_GLB=320 @@ -496,13 +638,13 @@ export med_model="nems" export atm_model="datm" export ocn_model="mom6" export ice_model="cice6" -export atm_petlist_bounds="0 15" -export med_petlist_bounds="16 111" -export ocn_petlist_bounds="112 231" -export ice_petlist_bounds="232 255" -export TASKS=256 -export TPN=40 -export NPROC_ICE='24' +export atm_petlist_bounds=$APB_datm_100 +export med_petlist_bounds=$MPB_datm_100 +export ocn_petlist_bounds=$OPB_datm_100 +export ice_petlist_bounds=$IPB_datm_100 +export TASKS=$TASKS_datm_100 +export TPN=$TPN_datm_100 +export NPROC_ICE='12' export ENS_NUM=1 export SYEAR='2011' @@ -514,6 +656,7 @@ export CDATE=${SYEAR}${SMONTH}${SDAY}${SHOUR} export NFHOUT=6 export FDIAG=6 export DT_ATMOS='900' +export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='1800' export DT_THERM_MOM6='3600' export CPL_SLOW=${DT_THERM_MOM6} @@ -525,7 +668,11 @@ export RESTART_N=${FHMAX} export CPLMODE='nems_orig_data' export cap_dbug_flag="0" export use_coldstart=".false." +export use_mommesh=".false." export RUNTYPE='startup' +export flux_convergence='0.0' +export flux_iteration='2' +export flux_scheme='0' export INPUT_NML=input.mom6.nml.IN export MODEL_CONFIGURE=datm_configure.IN @@ -545,8 +692,7 @@ export MOM6_THERMO_SPAN='False' export MOM6_USE_WAVES='False' # CICE6 defaults; 1 degree -export DT_CICE=${DT_ATMOS} -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export RUNID='unknown' @@ -554,11 +700,12 @@ export RUNID='unknown' export DUMPFREQ='d' export DUMPFREQ_N=1000 export USE_RESTART_TIME='.false.' -export RESTART_EXT='.false' +export RESTART_EXT='.false.' # setting to true will allow Frazil FW and Salt to be # included in fluxes sent to ocean export FRAZIL_FWSALT='.true.' # default to write CICE average history files export CICE_HIST_AVG='.true.' export BL_SUFFIX="" +export RT_SUFFIX="" } diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 8877530d7b..c4bea08a2e 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -27,6 +27,9 @@ case $(hostname -f) in m72a2.ncep.noaa.gov) MACHINE_ID=wcoss_dell_p3 ;; ### mars m72a3.ncep.noaa.gov) MACHINE_ID=wcoss_dell_p3 ;; ### mars + alogin01) MACHINE_ID=wcoss2 ;; ### acorn + alogin02) MACHINE_ID=wcoss2 ;; ### acorn + gaea9) MACHINE_ID=gaea ;; ### gaea9 gaea10) MACHINE_ID=gaea ;; ### gaea10 gaea11) MACHINE_ID=gaea ;; ### gaea11 diff --git a/tests/fv3_conf/ccpp_control_run.IN b/tests/fv3_conf/ccpp_control_run.IN index 73e03d1bde..68b3a1b1fc 100644 --- a/tests/fv3_conf/ccpp_control_run.IN +++ b/tests/fv3_conf/ccpp_control_run.IN @@ -2,37 +2,51 @@ rm -fr INPUT RESTART if [ $NPX = 97 ]; then inputdir=FV3_input_data elif [ $NPX = 193 ]; then - inputdir=FV3_input_data_c192 + inputdir=FV3_input_data192 elif [ $NPX = 385 ]; then - inputdir=FV3_input_data_c384 + inputdir=FV3_input_data384 elif [ $NPX = 769 ]; then inputdir=FV3_input_data_c768 fi echo "inputdir=$inputdir,NPX=$NPX" UNIT_TEST=${UNIT_TEST:-false} +SUFFIX=${RT_SUFFIX} if [ $WARM_START = .F. ]; then cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - if [[ ${UNIT_TEST} == false ]]; then - cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT + if [[ ${UNIT_TEST} == true ]]; then + SUFFIX=${BL_SUFFIX} + fi + + rsync -arv ../fv3_ccpp_control${SUFFIX}/RESTART/ INPUT/ + if [[ $IAU_INC_FILES = 'fv3_increment.nc' ]] || [[ $READ_INCREMENT = '.T.' ]]; then + #read_inc and iau tests restart from fh=24 + cp ../fv3_ccpp_control${SUFFIX}/RESTART/coupler.res INPUT/. + cp ../fv3_ccpp_control${SUFFIX}/RESTART/fv_core.res.* INPUT/. + cp ../fv3_ccpp_control${SUFFIX}/RESTART/fv_srf_wnd.res.* INPUT/. + cp ../fv3_ccpp_control${SUFFIX}/RESTART/fv_tracer.* INPUT/. + cp ../fv3_ccpp_control${SUFFIX}/RESTART/phy_data.* INPUT/. + cp ../fv3_ccpp_control${SUFFIX}/RESTART/sfc_data.* INPUT/. + cp ../fv3_ccpp_control${SUFFIX}/INPUT/fv3_increment.nc INPUT/. + cd INPUT else - cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT - rm -f INPUT/fv_core.res.* - rm -f INPUT/fv_srf_wnd.res.* - rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* - for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + #restart test start from fh=12 + cp ../fv3_ccpp_control${SUFFIX}/RESTART/20161003.120000.* INPUT/. + cd INPUT + for RFILE in 20161003.120000.*; do [ -e $RFILE ] || exit 1 - RFILE_OLD=$(basename $RFILE) - RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" - cp $RFILE INPUT/${RFILE_NEW} + mv $RFILE ${RFILE#20161003.120000.} done fi + cp ../../fv3_ccpp_control${SUFFIX}/INPUT/grid_spec.nc . + cp ../../fv3_ccpp_control${SUFFIX}/INPUT/*_grid.tile*.nc . + cp ../../fv3_ccpp_control${SUFFIX}/INPUT/oro_data.tile*.nc . + cd .. + fi cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . @@ -52,7 +66,7 @@ cp @[INPUTDATA_ROOT]/${inputdir}/*_table . cp @[INPUTDATA_ROOT]/${inputdir}/*configure . if [ $CPLWAV = .T. ]; then -cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . +cp @[INPUTDATA_ROOT_WW3]/mod_def.* . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . fi diff --git a/tests/fv3_conf/ccpp_csawmg_run.IN b/tests/fv3_conf/ccpp_csawmg_run.IN index c2258f677c..073cdb250c 100644 --- a/tests/fv3_conf/ccpp_csawmg_run.IN +++ b/tests/fv3_conf/ccpp_csawmg_run.IN @@ -14,8 +14,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) @@ -31,7 +31,7 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgrs diag_table #cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgrs field_table diff --git a/tests/fv3_conf/ccpp_gfdlmp_run.IN b/tests/fv3_conf/ccpp_gfdlmp_run.IN index f0ace7e854..1a2fbeae9c 100644 --- a/tests/fv3_conf/ccpp_gfdlmp_run.IN +++ b/tests/fv3_conf/ccpp_gfdlmp_run.IN @@ -14,8 +14,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) @@ -37,6 +37,6 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . if [ $CPLWAV = .T. ]; then -cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT_WW3]/mod_def.* . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . fi diff --git a/tests/fv3_conf/ccpp_gfs_v16_run.IN b/tests/fv3_conf/ccpp_gfs_v16_run.IN index 11827cbc9d..eb5b247574 100644 --- a/tests/fv3_conf/ccpp_gfs_v16_run.IN +++ b/tests/fv3_conf/ccpp_gfs_v16_run.IN @@ -1,11 +1,13 @@ rm -fr INPUT RESTART -if [ $WARM_START = .F. ]; then - cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . - mkdir RESTART -else - mkdir INPUT RESTART - cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT +rsync -arv @[INPUTDATA_ROOT]/FV3_input_data/INPUT/ INPUT/ +mkdir RESTART +if [ $WARM_START = .T. ]; then + rsync -arv ../fv3_ccpp_gfs_v16${RT_SUFFIX}/RESTART/ INPUT/ + cd INPUT + rename 20161004.000000. '' 20161004.000000.* + cd .. fi + cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . @@ -19,5 +21,5 @@ cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_suite2 field_table cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . if [ $DO_RRTMGP = .T. ]; then -cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . + cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . fi diff --git a/tests/fv3_conf/ccpp_gfs_v16_run_c192L127.IN b/tests/fv3_conf/ccpp_gfs_v16_run_c192L127.IN new file mode 100644 index 0000000000..53dd35df26 --- /dev/null +++ b/tests/fv3_conf/ccpp_gfs_v16_run_c192L127.IN @@ -0,0 +1,23 @@ +rm -fr INPUT RESTART +rsync -arv @[INPUTDATA_ROOT]/FV3_input_data_c192L127/INPUT/ INPUT/ +mkdir RESTART +if [ $WARM_START = .T. ]; then + rsync -arv ../fv3_ccpp_gfs_v16_c192L127${RT_SUFFIX}/RESTART/ INPUT/ + cd INPUT + rename 20190120.000000. '' 20190120.000000.* + cd .. +fi + +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/global_o3prdlos.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/*_table . +cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/*configure . + +if [ $DO_RRTMGP = .T. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/rrtmgp* . +fi diff --git a/tests/fv3_conf/ccpp_gfsv16_ugwpv1_run.IN b/tests/fv3_conf/ccpp_gfsv16_ugwpv1_run.IN new file mode 100644 index 0000000000..2c58446c6a --- /dev/null +++ b/tests/fv3_conf/ccpp_gfsv16_ugwpv1_run.IN @@ -0,0 +1,22 @@ +rm -rf INPUT RESTART +mkdir INPUT RESTART +if [ $WARM_START = .F. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/INPUT/* ./INPUT +else + cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/INPUT/* ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/RESTART/* ./INPUT +fi +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/aerosol.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/co2historicaldata_201*.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/sfc_emissivity_idx.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/solarconstant_noaa_an.txt . +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/global_o3prdlos.f77 ./global_o3prdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/global_h2oprdlos.f77 ./global_h2oprdlos.f77 +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/*_table ./ +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/nems.configure ./ +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/ugwp_c384_tau.nc ./ugwp_limb_tau.nc + +if [ $DO_RRTMGP = .T. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . +fi diff --git a/tests/fv3_conf/ccpp_gsd_run.IN b/tests/fv3_conf/ccpp_gsd_run.IN index f76b4843bb..ac566483e4 100644 --- a/tests/fv3_conf/ccpp_gsd_run.IN +++ b/tests/fv3_conf/ccpp_gsd_run.IN @@ -39,8 +39,7 @@ if [ $IMP_PHYSICS = 8 ]; then fi else if [ $DO_MYNNEDMF = .T. ] || [ $SATMEDMF = .T. ]; then - echo "ERROR, no field table configured for Thompson MP without aerosols but with MYNN or SATMEDMF (need TKE)" - exit 1 + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_thompson_noaero_tke field_table else cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_thompson_noaero field_table fi diff --git a/tests/fv3_conf/ccpp_multigases_run.IN b/tests/fv3_conf/ccpp_multigases_run.IN index 4f85cffe62..183649bfc9 100644 --- a/tests/fv3_conf/ccpp_multigases_run.IN +++ b/tests/fv3_conf/ccpp_multigases_run.IN @@ -26,7 +26,7 @@ cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_multi_gases diag_table cp @[INPUTDATA_ROOT]/${inputdir}/field_table_multi_gases field_table if [ $CPLWAV = .T. ]; then -cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . +cp @[INPUTDATA_ROOT_WW3]/mod_def.* . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . fi diff --git a/tests/fv3_conf/ccpp_regional_run.IN b/tests/fv3_conf/ccpp_regional_run.IN index 3188c78028..e524384644 100644 --- a/tests/fv3_conf/ccpp_regional_run.IN +++ b/tests/fv3_conf/ccpp_regional_run.IN @@ -4,7 +4,7 @@ rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/model_configure . rm -rf INPUT RESTART mkdir INPUT RESTART -rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/INPUT/. INPUT/. +rsync -arv @[INPUTDATA_ROOT]/fv3_regional_control/INPUT/. INPUT/. if [ $WARM_START = .T. ]; then cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.coupler.res INPUT/coupler.res diff --git a/tests/fv3_conf/ccpp_satmedmf_run.IN b/tests/fv3_conf/ccpp_satmedmf_run.IN index ecd6c52c93..400eca407f 100644 --- a/tests/fv3_conf/ccpp_satmedmf_run.IN +++ b/tests/fv3_conf/ccpp_satmedmf_run.IN @@ -24,8 +24,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) diff --git a/tests/fv3_conf/compile_qsub.IN_wcoss2 b/tests/fv3_conf/compile_qsub.IN_wcoss2 new file mode 100644 index 0000000000..ee2b789758 --- /dev/null +++ b/tests/fv3_conf/compile_qsub.IN_wcoss2 @@ -0,0 +1,20 @@ +#!/bin/bash + +#PBS -o out +#PBS -e err +#PBS -N @[JBNME] +# #PBS -A @[ACCNR] +#PBS -q @[QUEUE] +#PBS -l select=1:ncpus=8:mpiprocs=1 +#PBS -l walltime=00:30:00 + +set -eux + +cd $PBS_O_WORKDIR +export CRAY_CONFIG_DIR=$HOME + +echo "Compile started: " `date` + +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] + +echo "Compile ended: " `date` diff --git a/tests/fv3_conf/cpld_bmark_run.IN b/tests/fv3_conf/cpld_bmark_run.IN index 1e790bdbb2..443e09fd39 100644 --- a/tests/fv3_conf/cpld_bmark_run.IN +++ b/tests/fv3_conf/cpld_bmark_run.IN @@ -9,7 +9,13 @@ fi ICERES="${OCNRES:0:1}.${OCNRES:1}" BM_IC=BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR} -FV3_IC=${BM_IC}/gfs/@[ATMRES]/INPUT +if [[ ${FRAC_GRID_INPUT} = .F. ]]; then + FV3_IC=${BM_IC}/gfs/@[ATMRES]/INPUT +elif [[ @[NPZ] == '127' ]]; then + FV3_IC=FV3_input_frac/${BM_IC}/gfs/@[ATMRES]_L@[NPZ]/INPUT +else + FV3_IC=FV3_input_frac/${BM_IC}/gfs/@[ATMRES]/INPUT +fi MOM6_IC=${BM_IC}/mom6_da CICE_IC=${BM_IC}/cpc WW3_IC=${BM_IC}/ww3 @@ -29,9 +35,20 @@ cp @[INPUTDATA_ROOT]/${FV3_DIR}/*grb . cp @[INPUTDATA_ROOT]/${FV3_DIR}/@[FIELD_TABLE] ./field_table cp @[INPUTDATA_ROOT]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT -cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT +# NOTE: No L127 FV3_DIR input for non-frac grid input except for C96 +if [ ${FRAC_GRID_INPUT} = .F. ]; then + cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT +else + if [[ $NPZ == '127' ]]; then + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_l127.mx@[OCNRES]_frac/oro_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_l127.mx@[OCNRES]_frac/gfs_ctrl.nc ./INPUT + else + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/oro_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/gfs_ctrl.nc ./INPUT + fi +fi cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc -cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT # MOM6 fixed input cp @[INPUTDATA_ROOT]/MOM6_FIX/@[OCNRES]/* ./INPUT @@ -43,18 +60,52 @@ cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . # WW3 fix/input if [[ $CPLWAV == .T. && $CPLWAV2ATM == .T. ]]; then - cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . + cp @[INPUTDATA_ROOT_WW3]/mod_def.* . if [[ $RT35D == .T. ]]; then - cp @[INPUTDATA_ROOT]/WW3_input_data/ww3_multi_35d.inp ww3_multi.inp + cp @[INPUTDATA_ROOT_WW3]/ww3_multi_35d.inp ww3_multi.inp cp @[INPUTDATA_ROOT]/${WW3_IC}/*.000000.restart.gwes_30m ./restart.gwes_30m else - cp @[INPUTDATA_ROOT]/WW3_input_data/ww3_multi.inp . + cp @[INPUTDATA_ROOT_WW3]/ww3_multi.inp . fi fi -# ICs -cp @[INPUTDATA_ROOT]/${FV3_IC}/sfc_data*.nc ./INPUT -cp @[INPUTDATA_ROOT]/${FV3_IC}/gfs_data*.nc ./INPUT -cp @[INPUTDATA_ROOT]/${MOM6_IC}/MOM*.nc ./INPUT -# the BM ICs are still named cice5 and need to remain so until P5.0 is completed -cp @[INPUTDATA_ROOT]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc +# No restart +if [ $WARM_START = .F. ]; then + # ICs + cp @[INPUTDATA_ROOT]/${FV3_IC}/sfc_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/${FV3_IC}/gfs_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/${MOM6_IC}/MOM*.nc ./INPUT + # the BM ICs are still named cice5 and need to remain so until P5.0 is completed + cp @[INPUTDATA_ROOT]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc +else + # NOTE: bmark-wave model is not currently tested for restart + # Restart files + cp -r ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* + for RFILE in ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + + # Restart files MOM6 mx025 + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00.nc ./INPUT/MOM.res.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_1.nc ./INPUT/MOM.res_1.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_2.nc ./INPUT/MOM.res_2.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_3.nc ./INPUT/MOM.res_3.nc + + # CMEPS restart and pointer files + RFILE="ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc" + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RFILE} . + ls -1 ${RFILE}>rpointer.cpl + + # CICE restart and pointer files + RFILE="iced.${RESTART_FILE_SUFFIX_SECS}.nc" + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RFILE} ./INPUT + ls -1 "./INPUT/"${RFILE}>ice.restart_file +fi diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index 35c4e42d73..296117e5ee 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -1,7 +1,11 @@ mkdir INPUT RESTART history MOM6_OUTPUT if [[ $ATMRES == 'C96' ]]; then + if [[ $NPZ == '127' ]]; then + FV3_DIR=FV3_input_data_127 + else FV3_DIR=FV3_input_data + fi else FV3_DIR=FV3_input_data${ATMRES#C} fi @@ -14,7 +18,7 @@ cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/co2historicaldata_201*.txt . cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/sfc_emissivity_idx.txt . cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/solarconstant_noaa_an.txt . if [ $OZ_PHYS_NEW = .T. ]; then - cp @[INPUTDATA_ROOT]/${FV3_DIR}/ozprdlos_2015_new_sbuv03_tclm15_nuchem.f77 ./global_o3prdlos.f77 + cp @[INPUTDATA_ROOT]/${FV3_DIR}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 elif [ $OZ_PHYS_OLD = .T. ]; then cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/global_o3prdlos.f77 . fi @@ -23,13 +27,20 @@ cp @[INPUTDATA_ROOT]/${FV3_DIR}/*grb . cp @[INPUTDATA_ROOT]/${FV3_DIR}/@[FIELD_TABLE] ./field_table cp @[INPUTDATA_ROOT]/CPL_FIX/a@[ATMRES]o@[OCNRES]/grid_spec.nc ./INPUT cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/@[ATMRES]_grid*.nc ./INPUT +# NOTE: No L127 FV3_DIR for non-frac grid input except for C96 if [ ${FRAC_GRID_INPUT} = .F. ]; then cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/oro_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT else + if [[ $NPZ == '127' ]]; then + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_l127.mx@[OCNRES]_frac/oro_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_l127.mx@[OCNRES]_frac/gfs_ctrl.nc ./INPUT + else cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/oro_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/gfs_ctrl.nc ./INPUT + fi fi cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc -cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/gfs_ctrl.nc ./INPUT # MOM6 fixed input cp @[INPUTDATA_ROOT]/MOM6_FIX/@[OCNRES]/* ./INPUT @@ -39,6 +50,12 @@ cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . +# WW3 fix/input +if [[ $CPLWAV == .T. ]]; then + cp @[INPUTDATA_ROOT_WW3]/mod_def.* . + cp @[INPUTDATA_ROOT_WW3]/ww3_multi_1deg.inp ww3_multi.inp +fi + # No restart if [ $WARM_START = .F. ]; then # ICs @@ -46,8 +63,13 @@ if [ $WARM_START = .F. ]; then cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/sfc_data*.nc ./INPUT cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/gfs_data*.nc ./INPUT else - cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/sfc_data*.nc ./INPUT - cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/gfs_data*.nc ./INPUT + if [[ $NPZ == '127' ]]; then + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_l127.mx@[OCNRES]_frac/sfc_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_l127.mx@[OCNRES]_frac/gfs_data*.nc ./INPUT + else + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/sfc_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES].mx@[OCNRES]_frac/gfs_data*.nc ./INPUT + fi fi cp @[INPUTDATA_ROOT]/MOM6_IC/MOM*.nc ./INPUT cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].res_2016100300.nc ./cice_model.res.nc @@ -55,19 +77,36 @@ if [ $WARM_START = .F. ]; then # Restart else # Restart files - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/coupler.res ./INPUT - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/fv_*.nc ./INPUT - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/sfc_data*.nc ./INPUT - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/phy_data*.nc ./INPUT - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM*.nc ./INPUT + cp -r ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* + for RFILE in ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + + #if not mx025, then mom6 restart is a single file + if [[ $OCNRES == '025' ]]; then + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00.nc ./INPUT/MOM.res.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_1.nc ./INPUT/MOM.res_1.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_2.nc ./INPUT/MOM.res_2.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_3.nc ./INPUT/MOM.res_3.nc + else + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00.nc ./INPUT/MOM.res.nc + fi # CMEPS restart and pointer files - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc . - RFILE="ufs.cpld.cpl.r.2016-10-03-43200.nc" + RFILE="ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc" + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RFILE} . ls -1 ${RFILE}>rpointer.cpl # CICE restart and pointer files - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/iced.2016-10-03-43200.nc ./INPUT - RFILE="iced.2016-10-03-43200.nc" + RFILE="iced.${RESTART_FILE_SUFFIX_SECS}.nc" + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RFILE} ./INPUT ls -1 "./INPUT/"${RFILE}>ice.restart_file fi diff --git a/tests/fv3_conf/cpld_datm_cfsr.IN b/tests/fv3_conf/cpld_datm_cfsr.IN index 65bbf8ea0d..25b8acc50e 100644 --- a/tests/fv3_conf/cpld_datm_cfsr.IN +++ b/tests/fv3_conf/cpld_datm_cfsr.IN @@ -1,9 +1,10 @@ mkdir INPUT DATM_INPUT RESTART history MOM6_OUTPUT export DATM=true -# FV3 fixed input +# DATM fixed input export IATM=1760 export JATM=880 +ICERES="${OCNRES:0:1}.${OCNRES:1}" cp @[INPUTDATA_ROOT]/DATM/cfsr.SCRIP.nc DATM_INPUT ln -s @[INPUTDATA_ROOT]/DATM/CFSR/201110/* DATM_INPUT @@ -16,11 +17,26 @@ cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . - -if [[ $OCNRES == '025' ]]; then +if [ $WARM_START = .F. ]; then +# cold start + if [[ $OCNRES == '025' ]]; then cp @[INPUTDATA_ROOT]/MOM6_IC/@[OCNRES]/2011100100/MOM*.nc ./INPUT cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc -else + else cp @[INPUTDATA_ROOT]/MOM6_IC/@[OCNRES]/2011100100/MOM6_IC_TS*.nc ./INPUT/MOM6_IC_TS.nc cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc*.nc cice_model.res.nc + fi +else +# warm start + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.2011-10-01-12*.nc ./INPUT/MOM.res.nc + +# CMEPS restart and pointer files + RFILE="DATM_${DATM_SRC}.cpl.r.2011-10-01-43200.nc" + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RFILE} . + ls -1 ${RFILE}>rpointer.cpl + +# CICE restart and pointer files + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/iced.2011-10-01-43200.nc ./INPUT + RFILE="iced.2011-10-01-43200.nc" + ls -1 "./INPUT/"${RFILE}>ice.restart_file fi diff --git a/tests/fv3_conf/cpld_datm_gefs.IN b/tests/fv3_conf/cpld_datm_gefs.IN index 2bf93b5a5f..74811c36b2 100644 --- a/tests/fv3_conf/cpld_datm_gefs.IN +++ b/tests/fv3_conf/cpld_datm_gefs.IN @@ -1,7 +1,8 @@ mkdir INPUT DATM_INPUT RESTART history MOM6_OUTPUT export DATM=true -# FV3 fixed input +# DATM fixed input +ICERES="${OCNRES:0:1}.${OCNRES:1}" cp @[INPUTDATA_ROOT]/DATM/gefs.SCRIP.nc DATM_INPUT ln -s @[INPUTDATA_ROOT]/DATM/GEFS/201110/* DATM_INPUT diff --git a/tests/fv3_conf/csawmg3shoc127_run.IN b/tests/fv3_conf/csawmg3shoc127_run.IN index c9b60d7a1f..bc57248a2e 100644 --- a/tests/fv3_conf/csawmg3shoc127_run.IN +++ b/tests/fv3_conf/csawmg3shoc127_run.IN @@ -13,8 +13,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) @@ -30,7 +30,7 @@ cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 cp @[INPUTDATA_ROOT]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . cp @[INPUTDATA_ROOT]/${inputdir}/*_table . cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_mg3tke diag_table cp @[INPUTDATA_ROOT]/${inputdir}/field_table_csawmg3shoc field_table diff --git a/tests/fv3_conf/csawmg_run.IN b/tests/fv3_conf/csawmg_run.IN index 3440732bd7..28b700f31d 100644 --- a/tests/fv3_conf/csawmg_run.IN +++ b/tests/fv3_conf/csawmg_run.IN @@ -12,8 +12,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) @@ -29,7 +29,7 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgrs diag_table #cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgrs field_table diff --git a/tests/fv3_conf/csawmgshoc_run.IN b/tests/fv3_conf/csawmgshoc_run.IN index 60b20c5336..2be94b3c25 100644 --- a/tests/fv3_conf/csawmgshoc_run.IN +++ b/tests/fv3_conf/csawmgshoc_run.IN @@ -12,8 +12,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) @@ -29,7 +29,7 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgtkers diag_table #cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgtkers field_table diff --git a/tests/fv3_conf/fv3_gocart.IN b/tests/fv3_conf/fv3_gocart.IN index 0560dd2350..400266ce59 100644 --- a/tests/fv3_conf/fv3_gocart.IN +++ b/tests/fv3_conf/fv3_gocart.IN @@ -30,6 +30,6 @@ cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3 cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat if [ $CPLWAV = .T. ]; then -cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT_WW3]/mod_def.* . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . fi diff --git a/tests/fv3_conf/fv3_qsub.IN_wcoss2 b/tests/fv3_conf/fv3_qsub.IN_wcoss2 new file mode 100644 index 0000000000..d000b7e493 --- /dev/null +++ b/tests/fv3_conf/fv3_qsub.IN_wcoss2 @@ -0,0 +1,32 @@ +#!/bin/bash + +#PBS -o out +#PBS -e err +#PBS -N @[JBNME] +# #PBS -A @[ACCNR] +#PBS -q @[QUEUE] +#PBS -l place=vscatter,select=@[NODES]:ncpus=@[TPN]:mpiprocs=@[TPN] +#PBS -l walltime=00:@[WLCLK]:00 + +set -eux + +cd $PBS_O_WORKDIR +export CRAY_CONFIG_DIR=$HOME + +source /apps/prod/lmodules/startLmod +module use $( pwd -P ) +module load modules.fv3 +module list + +echo "Model started: " `date` + +export MPI_TYPE_DEPTH=20 +export OMP_STACKSIZE=512M +export OMP_NUM_THREADS=@[THRD] +export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 + +cray aprun -n @[TASKS] ./fv3.exe + +echo "Model ended: " `date` + +exit diff --git a/tests/fv3_conf/fv3_run.IN b/tests/fv3_conf/fv3_run.IN index 18d390d7a0..b7746cb402 100644 --- a/tests/fv3_conf/fv3_run.IN +++ b/tests/fv3_conf/fv3_run.IN @@ -24,8 +24,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) @@ -52,7 +52,7 @@ cp @[INPUTDATA_ROOT]/${inputdir}/*_table . cp @[INPUTDATA_ROOT]/${inputdir}/*configure . if [ $CPLWAV = .T. ]; then -cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . +cp @[INPUTDATA_ROOT_WW3]/mod_def.* . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . fi diff --git a/tests/fv3_conf/gfdlmp_run.IN b/tests/fv3_conf/gfdlmp_run.IN index 9e499066f9..92a19ba1c7 100644 --- a/tests/fv3_conf/gfdlmp_run.IN +++ b/tests/fv3_conf/gfdlmp_run.IN @@ -13,8 +13,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) @@ -36,6 +36,6 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . if [ $CPLWAV = .T. ]; then -cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT_WW3]/mod_def.* . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . fi diff --git a/tests/fv3_conf/multigases_run.IN b/tests/fv3_conf/multigases_run.IN index 4f85cffe62..183649bfc9 100644 --- a/tests/fv3_conf/multigases_run.IN +++ b/tests/fv3_conf/multigases_run.IN @@ -26,7 +26,7 @@ cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_multi_gases diag_table cp @[INPUTDATA_ROOT]/${inputdir}/field_table_multi_gases field_table if [ $CPLWAV = .T. ]; then -cp @[INPUTDATA_ROOT]/WW3_input_data/mod_def.* . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -cp @[INPUTDATA_ROOT]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . +cp @[INPUTDATA_ROOT_WW3]/mod_def.* . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . +cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . fi diff --git a/tests/fv3_conf/satmedmf_run.IN b/tests/fv3_conf/satmedmf_run.IN index 566667e696..c62aa9ce79 100644 --- a/tests/fv3_conf/satmedmf_run.IN +++ b/tests/fv3_conf/satmedmf_run.IN @@ -24,8 +24,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) diff --git a/tests/fv3_conf/thompson_run.IN b/tests/fv3_conf/thompson_run.IN index fa7fdca24f..d9a0649dd0 100644 --- a/tests/fv3_conf/thompson_run.IN +++ b/tests/fv3_conf/thompson_run.IN @@ -13,8 +13,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) diff --git a/tests/fv3_conf/wsm6_run.IN b/tests/fv3_conf/wsm6_run.IN index 9f6f1065e2..00e8aeeb52 100644 --- a/tests/fv3_conf/wsm6_run.IN +++ b/tests/fv3_conf/wsm6_run.IN @@ -12,8 +12,8 @@ else rm -f INPUT/fv_core.res.* rm -f INPUT/fv_srf_wnd.res.* rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.*c - rm -f INPUT/srf_data.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) @@ -28,7 +28,7 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . -cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . +cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_wsm6 diag_table cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_wsm6 field_table diff --git a/tests/parm/MOM_input_template_100 b/tests/parm/MOM_input_template_100 index d5af4cccd2..ffb4c7de5e 100644 --- a/tests/parm/MOM_input_template_100 +++ b/tests/parm/MOM_input_template_100 @@ -167,13 +167,6 @@ CHANNEL_CONFIG = "list" ! default = "none" ! NetCDF file on the model grid. CHANNEL_LIST_FILE = "MOM_channels_SPEAR" ! default = "MOM_channel_list" ! The file from which the list of narrowed channels is read. -GRID_ROTATION_ANGLE_BUGS = False ! [Boolean] default = False - ! If true, use an older algorithm to calculate the sine and cosines needed - ! rotate between grid-oriented directions and true north and east. Differences - ! arise at the tripolar fold. -USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = False - ! If true, use older code that incorrectly sets the longitude in some points - ! along the tripolar fold to be off by 360 degrees. ! === module MOM_verticalGrid === ! Parameters providing information about the vertical grid. diff --git a/tests/parm/ccpp.gocart.nml.IN b/tests/parm/ccpp.gocart.nml.IN index 9c6ea71100..fc2d8e7655 100644 --- a/tests/parm/ccpp.gocart.nml.IN +++ b/tests/parm/ccpp.gocart.nml.IN @@ -272,7 +272,7 @@ FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN b/tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN index cca4a292d8..3a0900df95 100644 --- a/tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN +++ b/tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN @@ -215,7 +215,7 @@ FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' FNSMCC = 'global_soilmgldas.t126.384.190.grb' - FNMSKH = 'seaice_newland.grb' + FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' FNACNA = '' FNSNOA = '' diff --git a/tests/parm/ccpp_ca.nml.IN b/tests/parm/ccpp_ca.nml.IN index 5f825c56f3..ecba1d4616 100644 --- a/tests/parm/ccpp_ca.nml.IN +++ b/tests/parm/ccpp_ca.nml.IN @@ -233,7 +233,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_control.nml.IN b/tests/parm/ccpp_control.nml.IN index 02be1792c6..26c6bd740b 100644 --- a/tests/parm/ccpp_control.nml.IN +++ b/tests/parm/ccpp_control.nml.IN @@ -235,7 +235,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_cpt.nml.IN b/tests/parm/ccpp_cpt.nml.IN index 1ce6b91ffb..ccc61c8f06 100644 --- a/tests/parm/ccpp_cpt.nml.IN +++ b/tests/parm/ccpp_cpt.nml.IN @@ -287,7 +287,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_csawmg.nml.IN b/tests/parm/ccpp_csawmg.nml.IN index 931adad584..68c3688586 100644 --- a/tests/parm/ccpp_csawmg.nml.IN +++ b/tests/parm/ccpp_csawmg.nml.IN @@ -237,7 +237,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_csawmg3shoc127.nml.IN b/tests/parm/ccpp_csawmg3shoc127.nml.IN index 1805a4eca7..2f01b488f1 100644 --- a/tests/parm/ccpp_csawmg3shoc127.nml.IN +++ b/tests/parm/ccpp_csawmg3shoc127.nml.IN @@ -237,7 +237,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_csawmgshoc.nml.IN b/tests/parm/ccpp_csawmgshoc.nml.IN index 7c9063c693..472cbf4da4 100644 --- a/tests/parm/ccpp_csawmgshoc.nml.IN +++ b/tests/parm/ccpp_csawmgshoc.nml.IN @@ -236,7 +236,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN b/tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN index 998ee93401..5be2ac8a2f 100644 --- a/tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN +++ b/tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN @@ -217,7 +217,7 @@ fnalbc = 'C401.snowfree_albedo.tile7.nc' fnalbc2 = 'C401.facsf.tile7.nc' fnglac = 'global_glacier.2x2.grb' - fnmskh = 'seaice_newland.grb' + fnmskh = 'global_slmask.t1534.3072.1536.grb' fnmxic = 'global_maxice.2x2.grb' fnslpc = 'C401.slope_type.tile7.nc' fnsmcc = 'global_soilmgldas.t126.384.190.grb' diff --git a/tests/parm/ccpp_gfdlmp.nml.IN b/tests/parm/ccpp_gfdlmp.nml.IN index c70ff52454..dac3f57557 100644 --- a/tests/parm/ccpp_gfdlmp.nml.IN +++ b/tests/parm/ccpp_gfdlmp.nml.IN @@ -277,7 +277,7 @@ FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_gfsv16_csawmg.nml.IN b/tests/parm/ccpp_gfsv16_csawmg.nml.IN index 5591f9a27b..141507e7be 100644 --- a/tests/parm/ccpp_gfsv16_csawmg.nml.IN +++ b/tests/parm/ccpp_gfsv16_csawmg.nml.IN @@ -237,7 +237,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_gsd.nml.IN b/tests/parm/ccpp_gsd.nml.IN index 7d2a9e7782..0ac2931d75 100644 --- a/tests/parm/ccpp_gsd.nml.IN +++ b/tests/parm/ccpp_gsd.nml.IN @@ -134,7 +134,9 @@ fhlwr = 3600. ialb = 1 iems = 1 - iaer = 111 + iaer = @[IAER] + icliq_sw = @[ICLIQ_SW] + iovr = @[IOVR] ico2 = 2 isubc_sw = 2 isubc_lw = 2 @@ -147,7 +149,8 @@ redrag = .true. dspheat = .true. hybedmf = @[HYBEDMF] - satmedmf = .false. + satmedmf = @[SATMEDMF] + isatmedmf = 1 lheatstrg = @[LHEATSTRG] do_mynnedmf = @[DO_MYNNEDMF] do_mynnsfclay = @[DO_MYNNSFCLAY] @@ -194,7 +197,10 @@ bl_mynn_tkeadvect = .true. bl_mynn_edmf = 1 bl_mynn_edmf_mom = 1 - gwd_opt = @[GWD_OPT] + gwd_opt = @[GWD_OPT] + ldiag_ugwp = @[LDIAG_UGWP] + do_ugwp = @[DO_UGWP] + do_tofd = @[DO_TOFD] do_ugwp_v0 = @[DO_UGWP_V0] do_ugwp_v0_orog_only = @[DO_UGWP_V0_OROG_ONLY] do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] @@ -272,7 +278,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", @@ -300,27 +306,28 @@ FSICS = 99999, / &nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, SKEBNORM=1, SKEB_NPASS=30, SKEB_VDOF=5, SKEB=@[SKEB], SKEB_TAU=2.16E4, SKEB_LSCALE=1000.E3, + SKEBINT=1800, SHUM=@[SHUM], SHUM_TAU=21600, SHUM_LSCALE=500000, + SHUMINT=3600, SPPT=@[SPPT], SPPT_TAU=21600, SPPT_LSCALE=500000, SPPT_LOGIT=.TRUE., SPPT_SFCLIMIT=.TRUE., + SPPTINT=1800, ISEED_SHUM=1, ISEED_SKEB=2, ISEED_SPPT=3, / + &nam_sfcperts lndp_type = @[LNDP_TYPE] LNDP_TAU=21600, @@ -344,3 +351,4 @@ knob_ugwp_version = 0 launch_level = 25 / + diff --git a/tests/parm/gfdlmp.nml.IN b/tests/parm/ccpp_gsd_rrtmgp.nml.IN similarity index 70% rename from tests/parm/gfdlmp.nml.IN rename to tests/parm/ccpp_gsd_rrtmgp.nml.IN index f9eed249a6..87e21d210e 100644 --- a/tests/parm/gfdlmp.nml.IN +++ b/tests/parm/ccpp_gsd_rrtmgp.nml.IN @@ -12,10 +12,12 @@ chksum_debug = .false. dycore_only = .false. fdiag = @[FDIAG] + ccpp_suite = '@[CCPP_SUITE]' / &diag_manager_nml prepend_date = .F. + max_output_fields = @[MAX_OUTPUT_FIELDS] / &fms_io_nml @@ -37,8 +39,8 @@ &fv_core_nml layout = @[INPES],@[JNPES] io_layout = 1,1 - npx = 97 - npy = 97 + npx = @[NPX] + npy = @[NPY] ntiles = 6, npz = @[NPZ] grid_type = -1 @@ -46,10 +48,10 @@ fv_debug = .F. range_warn = .F. reset_eta = .F. - n_sponge = 30 + n_sponge = 10 nudge_qv = .T. rf_fast = .F. - tau = 5. + tau = 10. rf_cutoff = 7.5e2 d2_bg_k1 = 0.15 d2_bg_k2 = 0.02 @@ -63,13 +65,13 @@ beta = 0. a_imp = 1. p_fac = 0.1 - k_split = 1 - n_split = 8 + k_split = 2 + n_split = 6 nwat = 6 na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 1 - fv_sg_adj = 600 + d_ext = 0. + dnats = @[DNATS] + fv_sg_adj = 450 d2_bg = 0. nord = 2 dddmp = 0.1 @@ -85,23 +87,24 @@ mountain = @[MOUNTAIN] ncep_ic = .F. d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 adjust_dry_mass = .F. consv_te = 1. - do_sat_adj = .T. + do_sat_adj = @[DO_SAT_ADJ] consv_am = .F. fill = .T. dwind_2d = .F. print_freq = 6 warm_start = @[WARM_START] - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" no_dycore = .false. z_tracer = .T. + agrid_vel_rst = .true. + read_increment = @[READ_INCREMENT] + res_latlon_dynamics = "fv3_increment.nc" / &external_ic_nml @@ -114,22 +117,24 @@ &gfs_physics_nml fhzero = 6. - ldiag3d = .false. - ldiag_ugwp = @[LDIAG_UGWP] - do_ugwp = @[DO_UGWP] - do_tofd = @[DO_TOFD] - fhcyc = 24. + h2o_phys = .true. + ldiag3d = @[LDIAG3D] + qdiag3d = @[QDIAG3D] + fhcyc = @[FHCYC] nst_anl = .true. use_ufo = .true. pre_rad = .false. ncld = 5 - imp_physics = 11 + imp_physics = @[IMP_PHYSICS] + ltaerosol = @[LTAEROSOL] + lradar = @[LRADAR] + ttendlim = 0.004 pdfcld = .false. fhswr = 3600. fhlwr = 3600. ialb = 1 iems = 1 - IAER = 111 + iaer = 111 ico2 = 2 isubc_sw = 2 isubc_lw = 2 @@ -142,12 +147,13 @@ redrag = .true. dspheat = .true. hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] + satmedmf = .false. lheatstrg = @[LHEATSTRG] - lgfdlmprad = @[LGFDLMPRAD] - effr_in = @[EFFR_IN] + do_mynnedmf = @[DO_MYNNEDMF] + do_mynnsfclay = @[DO_MYNNSFCLAY] + effr_in = .true. random_clds = .false. - trans_trac = .false. + trans_trac = .true. cnvcld = .true. imfshalcnv = @[IMFSHALCNV] imfdeepcnv = @[IMFDEEPCNV] @@ -155,7 +161,21 @@ prslrd0 = 0. ivegsrc = 1 isot = 1 + debug = .false. + oz_phys = .false. + oz_phys_2015 = .true. + nstf_name = @[NSTF_NAME] + cplflx = @[CPLFLX] + iau_delthrs = 6 + iaufhrs = 30 + iau_inc_files = @[IAU_INC_FILES] + do_sppt = @[DO_SPPT] + do_shum = @[DO_SHUM] + do_skeb = @[DO_SKEB] + lndp_type = @[LNDP_TYPE] + n_var_lndp = @[N_VAR_LNDP] lsm = @[LSM] + lsoil_lsm = @[LSOIL_LSM] iopt_dveg = 2 iopt_crs = 1 iopt_btr = 1 @@ -168,16 +188,23 @@ iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 - debug = .false. - h2o_phys = @[H2O_PHYS] - nstf_name = @[NSTF_NAME] - iau_drymassfixer = @[IAU_DRYMASSFIXER] - cplflx = @[CPLFLX] - cplwav = @[CPLWAV] - cplwav2atm = @[CPLWAV2ATM] - xkzminv = 0.3 - xkzm_m = 1.0 - xkzm_h = 1.0 + icloud_bl = 1 + bl_mynn_tkeadvect = .true. + bl_mynn_edmf = 1 + bl_mynn_edmf_mom = 1 + gwd_opt = @[GWD_OPT] + do_RRTMGP = .true. + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = 6 + lw_file_gas = 'rrtmgp-data-lw-g256-2018-12-04.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g224-2018-12-04.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + doGP_cldoptics_LUT = .true. + doGP_lwscat = .true. + use_LW_jacobian = .true. + rrtmgp_ngauss_ang = 3 + rrtmgp_nrghice = 3 / &gfdl_cloud_microphysics_nml @@ -230,21 +257,6 @@ mp_time = 150. / -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ - &interpolator_nml interp_method = 'conserve_great_circle' / @@ -255,22 +267,22 @@ FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", FNSNOC = "global_snoclim.1.875.grb", FNZORC = "igbp", - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", + FNALBC = @[FNALBC] FNALBC2 = "global_albedo4.1x1.grb", FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", FNTG3C = "global_tg3clim.2.6x1.5.grb", FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNVETC = @[FNVETC] + FNSOTC = @[FNSOTC] + FNSMCC = @[FNSMCC] + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", FNVMNC = "global_shdmin.0.144x0.144.grb", FNVMXC = "global_shdmax.0.144x0.144.grb", FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", + FNABSC = @[FNABSC] LDEBUG =.false., FSMCL(2) = 99999 FSMCL(3) = 99999 @@ -289,11 +301,34 @@ FABSL = 99999, FSNOS = 99999, FSICS = 99999, - LANDICE = @[LANDICE] / &nam_stochy + lon_s=768, + lat_s=384, + ntrunc=382, + SKEBNORM=1, + SKEB_NPASS=30, + SKEB_VDOF=5, + SKEB=@[SKEB], + SKEB_TAU=2.16E4, + SKEB_LSCALE=1000.E3, + SHUM=@[SHUM], + SHUM_TAU=21600, + SHUM_LSCALE=500000, + SPPT=@[SPPT], + SPPT_TAU=21600, + SPPT_LSCALE=500000, + SPPT_LOGIT=.TRUE., + SPPT_SFCLIMIT=.TRUE., + ISEED_SHUM=1, + ISEED_SKEB=2, + ISEED_SPPT=3, / &nam_sfcperts + lndp_type = @[LNDP_TYPE] + LNDP_TAU=21600, + LNDP_LSCALE=500000, + ISEED_LNDP=2010, / &cires_ugwp_nml diff --git a/tests/parm/ccpp_gsd_sar.nml.IN b/tests/parm/ccpp_gsd_sar.nml.IN index d101d6f84f..fbab92345e 100644 --- a/tests/parm/ccpp_gsd_sar.nml.IN +++ b/tests/parm/ccpp_gsd_sar.nml.IN @@ -251,7 +251,7 @@ FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_input_nest02.nml.IN b/tests/parm/ccpp_input_nest02.nml.IN index 3cb847c24a..0052e17e74 100644 --- a/tests/parm/ccpp_input_nest02.nml.IN +++ b/tests/parm/ccpp_input_nest02.nml.IN @@ -244,7 +244,7 @@ FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_lndp.nml.IN b/tests/parm/ccpp_lndp.nml.IN index 8b6c0e2881..cc9f245c1b 100644 --- a/tests/parm/ccpp_lndp.nml.IN +++ b/tests/parm/ccpp_lndp.nml.IN @@ -236,7 +236,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_multi_gases.nml.IN b/tests/parm/ccpp_multi_gases.nml.IN index 5125ba6493..66aaf44e3b 100644 --- a/tests/parm/ccpp_multi_gases.nml.IN +++ b/tests/parm/ccpp_multi_gases.nml.IN @@ -212,7 +212,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_regional.nml.IN b/tests/parm/ccpp_regional.nml.IN index 3f05bf0f1c..f3d822a143 100644 --- a/tests/parm/ccpp_regional.nml.IN +++ b/tests/parm/ccpp_regional.nml.IN @@ -27,7 +27,7 @@ &fms_nml clock_grain = 'ROUTINE', - domains_stack_size = 2000200, + domains_stack_size = 3000000, print_memory_usage = .false. / @@ -41,22 +41,22 @@ npx = 211 npy = 193 ntiles = 1, - npz = 64 + npz = 60 !grid_type = -1 make_nh = @[MAKE_NH] fv_debug = .F. range_warn = .T. reset_eta = .F. - n_sponge = 20 - nudge_qv = .T. - tau = 3.0 - rf_cutoff = 10.e2 - d2_bg_k1 = 0.16 - d2_bg_k2 = 0.02 - kord_tm = -10 - kord_mt = 10 - kord_wz = 10 - kord_tr = 10 + n_sponge = 9 + nudge_qv = .F. + tau = 5.0 + rf_cutoff = 20.e2 + d2_bg_k1 = 0.20 + d2_bg_k2 = 0.04 + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 hydrostatic = .F. phys_hydrostatic = .F. use_hydro_pressure = .F. @@ -68,13 +68,13 @@ nwat = 6 na_init = @[NA_INIT] d_ext = 0.0 - dnats = 1 - fv_sg_adj = 450 + dnats = 0 + fv_sg_adj = 300 d2_bg = 0. nord = 2 dddmp = 0.1 - d4_bg = 0.08 - vtdm4 = 0.0 + d4_bg = 0.15 + vtdm4 = 0.075 delt_max = 0.008 ke_bg = 0. do_vort_damp = .T. @@ -86,13 +86,13 @@ ncep_ic = .F. d_con = 1.0 hord_mt = 6 - hord_vt = -5 - hord_tm = -5 - hord_dp = -5 - hord_tr = 8 + hord_vt = 6 + hord_tm = 6 + hord_dp = 6 + hord_tr = 10 adjust_dry_mass = .F. consv_te = 0. - do_sat_adj = .T. + do_sat_adj = .F. consv_am = .F. fill = .T. dwind_2d = .F. @@ -100,6 +100,7 @@ warm_start = @[WARM_START] no_dycore = .false. z_tracer = .T. + agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = "fv3_increment.nc" @@ -127,15 +128,23 @@ &gfs_physics_nml fhzero = 6. ldiag3d = .false. - fhcyc = 24. + lradar = .true. + avg_max_length = 3600. + nsradar_reset = 3600. + ldiag_ugwp = .F. + do_ugwp = .F. + do_tofd = .F. + fhcyc = 0 nst_anl = .true. use_ufo = .true. pre_rad = .false. ncld = 5 - imp_physics = 11 + imp_physics = 8 + ltaerosol = .F. + ttendlim = -999.0 pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. + fhswr = 900. + fhlwr = 900. ialb = 1 iems = 1 IAER = 111 @@ -147,12 +156,17 @@ swhtr = .true. cnvgwd = .true. shal_cnv = .true. + do_deep = .false. cal_pre = .true. redrag = .true. dspheat = .true. hybedmf = @[HYBEDMF] satmedmf = @[SATMEDMF] lheatstrg = @[LHEATSTRG] + do_mynnedmf = .T. + do_mynnsfclay = .false. + lgfdlmprad = .false. + effr_in = .T. random_clds = .true. trans_trac = .true. cnvcld = .true. @@ -184,11 +198,16 @@ iau_delthrs = 6 iaufhrs = 30 iau_inc_files = @[IAU_INC_FILES] + xkzminv = 0.3 + xkzm_m = 1.0 + xkzm_h = 1.0 do_sppt = @[DO_SPPT] do_shum = @[DO_SHUM] do_skeb = @[DO_SKEB] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] + icloud_bl = 1 + bl_mynn_tkeadvect = .true. + bl_mynn_edmf = 1 + bl_mynn_edmf_mom = 1 / &interpolator_nml @@ -196,27 +215,27 @@ / &namsfc + FNALBC2 = "C96.facsf.tileX.nc", + FNALBC = "C96.snowfree_albedo.tileX.nc", + FNTG3C = "C96.substrate_temperature.tileX.nc", + FNVEGC = "C96.vegetation_greenness.tileX.nc", + FNVETC = "C96.vegetation_type.tileX.nc", + FNSOTC = "C96.soil_type.tileX.nc", + FNVMNC = "C96.vegetation_greenness.tileX.nc", + FNVMXC = "C96.vegetation_greenness.tileX.nc", + FNSLPC = "C96.slope_type.tileX.nc", + FNABSC = "C96.maximum_snow_albedo.tileX.nc", FNGLAC = "global_glacier.2x2.grb", FNMXIC = "global_maxice.2x2.grb", FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", FNSNOC = "global_snoclim.1.875.grb", FNZORC = "igbp" - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNSMCC = "global_soilmgldas.t1534.3072.1536.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", LDEBUG =.false., FSMCL(2) = 99999 FSMCL(3) = 99999 diff --git a/tests/parm/ccpp_regional_c768.nml.IN b/tests/parm/ccpp_regional_c768.nml.IN index a7da51e57e..01fa4c98f7 100644 --- a/tests/parm/ccpp_regional_c768.nml.IN +++ b/tests/parm/ccpp_regional_c768.nml.IN @@ -206,7 +206,7 @@ FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_stretched-input.nml.IN b/tests/parm/ccpp_stretched-input.nml.IN index ff01ca775d..f1ed84a605 100644 --- a/tests/parm/ccpp_stretched-input.nml.IN +++ b/tests/parm/ccpp_stretched-input.nml.IN @@ -245,7 +245,7 @@ FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_stretched-nest-input.nml.IN b/tests/parm/ccpp_stretched-nest-input.nml.IN index dc788b2a6f..e6bc9be787 100644 --- a/tests/parm/ccpp_stretched-nest-input.nml.IN +++ b/tests/parm/ccpp_stretched-nest-input.nml.IN @@ -253,7 +253,7 @@ FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/ccpp_v15p2_c96.nml.IN b/tests/parm/ccpp_v15p2_c96.nml.IN index afe5f03933..5f74b926ab 100644 --- a/tests/parm/ccpp_v15p2_c96.nml.IN +++ b/tests/parm/ccpp_v15p2_c96.nml.IN @@ -146,7 +146,7 @@ cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 + cdmbgwd = 0.14,1.8,1.0,1.0 prslrd0 = 0. ivegsrc = 1 isot = 1 @@ -233,7 +233,7 @@ FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' FNSMCC = 'global_soilmgldas.t126.384.190.grb' - FNMSKH = 'seaice_newland.grb' + FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' FNACNA = '' FNSNOA = '' diff --git a/tests/parm/ccpp_v15p2_c96_rrtmgp.nml.IN b/tests/parm/ccpp_v15p2_c96_rrtmgp.nml.IN index 0db38a0da4..987a77094c 100644 --- a/tests/parm/ccpp_v15p2_c96_rrtmgp.nml.IN +++ b/tests/parm/ccpp_v15p2_c96_rrtmgp.nml.IN @@ -146,7 +146,7 @@ cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 + cdmbgwd = 0.14,1.8,1.0,1.0 prslrd0 = 0. ivegsrc = 1 isot = 1 @@ -243,7 +243,7 @@ FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' FNSMCC = 'global_soilmgldas.t126.384.190.grb' - FNMSKH = 'seaice_newland.grb' + FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' FNACNA = '' FNSNOA = '' diff --git a/tests/parm/v16beta_c96.nml.IN b/tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN similarity index 82% rename from tests/parm/v16beta_c96.nml.IN rename to tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN index 3462ffc509..72ff026b40 100644 --- a/tests/parm/v16beta_c96.nml.IN +++ b/tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN @@ -16,6 +16,7 @@ fhout = 3 fhmaxhf = 120 fhouthf = 1 + ccpp_suite = '@[CCPP_SUITE]' / &diag_manager_nml @@ -42,22 +43,22 @@ deflate_level=1 &fv_core_nml layout = 3,8 io_layout = 1,1 - npx = 97 - npy = 97 + npx = @[NPX] + npy = @[NPY] ntiles = 6 - npz = 64 + npz = @[NPZ] grid_type = -1 - make_nh = .false. + make_nh = .true. fv_debug = .false. range_warn = .false. reset_eta = .false. - n_sponge = 10 + n_sponge = 42 nudge_qv = .true. nudge_dz = .false. tau = 10. rf_cutoff = 7.5e2 d2_bg_k1 = 0.20 - d2_bg_k2 = 0.0 + d2_bg_k2 = 0.04 kord_tm = -9 kord_mt = 9 kord_wz = 9 @@ -71,7 +72,7 @@ deflate_level=1 k_split = 2 n_split = 6 nwat = 6 - na_init = 0 + na_init = 1 d_ext = 0. dnats = 1 fv_sg_adj = 450 @@ -112,7 +113,7 @@ deflate_level=1 &external_ic_nml filtered_terrain = .true. - levp = 65 + levp = @[NPZP] gfs_dwinds = .true. checker_tr = .false. nt_checker = 0 @@ -149,13 +150,13 @@ deflate_level=1 hybedmf = .false. satmedmf = .true. isatmedmf = 1 - lheatstrg = .true. + lheatstrg = .false. random_clds = .false. trans_trac = .true. cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 4.0,0.15,1.0,1.0 + cdmbgwd = 0.23,1.5,1.0,1.0 prslrd0 = 0. ivegsrc = 1 isot = 1 @@ -174,7 +175,9 @@ deflate_level=1 iopt_tbot = 2 iopt_stc = 1 debug = .false. - nstf_name = 2,1,0,0,0 + oz_phys = .F. + oz_phys_2015 = .T. + nstf_name = 2,0,0,0,0 nst_anl = .true. psautco = 0.0008,0.0005 prautco = 0.00015,0.00015 @@ -183,11 +186,31 @@ deflate_level=1 ldiag_ugwp = .false. do_ugwp = .false. do_tofd = .true. - do_sppt = .true. - do_shum = .true. - do_skeb = .true. - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] + do_sppt = .false. + do_shum = .false. + do_skeb = .false. + lndp_type = @[LNDP_TYPE] + n_var_lndp = @[N_VAR_LNDP] + do_RRTMGP = .true. + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = 6 + lw_file_gas = 'rrtmgp-data-lw-g256-2018-12-04.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g224-2018-12-04.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + doG_cldoptics = .true. + rrtmgp_ngauss_ang = 3 + rrtmgp_nrghice = 3 + lsoil_lsm = 4 + do_mynnedmf = .false. + do_mynnsfclay = .false. + icloud_bl = 1 + bl_mynn_edmf = 1 + bl_mynn_tkeadvect = .false. + bl_mynn_edmf_mom = 1 + min_lakeice = 0.15 + min_seaice = 0.15 + / &gfdl_cloud_microphysics_nml @@ -250,22 +273,22 @@ deflate_level=1 FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' FNSNOC = 'global_snoclim.1.875.grb' FNZORC = 'igbp' - FNALBC = 'global_snowfree_albedo.bosu.t126.384.190.rg.grb' + FNALBC = @[FNALBC] FNALBC2 = 'global_albedo4.1x1.grb' FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' FNTG3C = 'global_tg3clim.2.6x1.5.grb' FNVEGC = 'global_vegfrac.0.144.decpercent.grb' - FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' - FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' - FNSMCC = 'global_soilmgldas.t126.384.190.grb' - FNMSKH = 'seaice_newland.grb' + FNVETC = @[FNVETC] + FNSOTC = @[FNSOTC] + FNSMCC = @[FNSMCC] + FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' FNACNA = '' FNSNOA = '' FNVMNC = 'global_shdmin.0.144x0.144.grb' FNVMXC = 'global_shdmax.0.144x0.144.grb' FNSLPC = 'global_slope.1x1.grb' - FNABSC = 'global_mxsnoalb.uariz.t126.384.190.rg.grb' + FNABSC = @[FNABSC] LDEBUG = .false. FSMCL(2) = 99999 FSMCL(3) = 99999 @@ -292,27 +315,6 @@ deflate_level=1 / &nam_stochy - ntrunc = 766 - lon_s = 1536 - lat_s = 768 - skeb = 0.3 - iseed_skeb = 2019102712451 - iseed_shum = 2019102712452 - iseed_sppt = 2019102712453 - skeb_tau = 21600. - skeb_lscale = 500000. - skebnorm = 0 - skeb_npass = 30 - skeb_vdof = 5 - shum = 0.005 - shum_tau = 21600. - shum_lscale = 500000. - sppt = 0.5 - sppt_tau = 21600. - sppt_lscale = 500000. - sppt_logit = .true. - sppt_sfclimit = .true. - use_zmtnblck = .true. / &nam_sfcperts @@ -330,6 +332,6 @@ deflate_level=1 knob_ugwp_dokdis = 1 knob_ugwp_ndx4lh = 1 knob_ugwp_version = 0 - launch_level = 27 + launch_level = 54 / diff --git a/tests/parm/ccpp_v16beta_c96.nml.IN b/tests/parm/ccpp_v16_c96.nml.IN similarity index 87% rename from tests/parm/ccpp_v16beta_c96.nml.IN rename to tests/parm/ccpp_v16_c96.nml.IN index 2d43566b99..eb5dba4786 100644 --- a/tests/parm/ccpp_v16beta_c96.nml.IN +++ b/tests/parm/ccpp_v16_c96.nml.IN @@ -16,7 +16,7 @@ fhout = 3 fhmaxhf = 120 fhouthf = 1 - ccpp_suite = 'FV3_GFS_v16beta' + ccpp_suite = 'FV3_GFS_v16' / &diag_manager_nml @@ -48,7 +48,7 @@ deflate_level=1 ntiles = 6 npz = 64 grid_type = -1 - make_nh = .false. + make_nh = @[MAKE_NH] fv_debug = .false. range_warn = .false. reset_eta = .false. @@ -84,11 +84,11 @@ deflate_level=1 delt_max = 0.002 ke_bg = 0. do_vort_damp = .true. - external_ic = .true. + external_ic = @[EXTERNAL_IC] external_eta = .true. gfs_phil = .false. - nggps_ic = .true. - mountain = .false. + nggps_ic = @[NGGPS_IC] + mountain = @[MOUNTAIN] ncep_ic = .false. d_con = 1. hord_mt = 5 @@ -103,7 +103,7 @@ deflate_level=1 fill = .true. dwind_2d = .false. print_freq = 6 - warm_start = .false. + warm_start = @[WARM_START] no_dycore = .false. z_tracer = .true. agrid_vel_rst = .true. @@ -156,7 +156,7 @@ deflate_level=1 cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 4.0,0.15,1.0,1.0 + cdmbgwd = 0.14,1.8,1.0,1.0 prslrd0 = 0. ivegsrc = 1 isot = 1 @@ -177,7 +177,7 @@ deflate_level=1 debug = .false. oz_phys = .F. oz_phys_2015 = .T. - nstf_name = 2,1,0,0,0 + nstf_name = @[NSTF_NAME] nst_anl = .true. psautco = 0.0008,0.0005 prautco = 0.00015,0.00015 @@ -186,11 +186,11 @@ deflate_level=1 ldiag_ugwp = .false. do_ugwp = .false. do_tofd = .true. - do_sppt = .true. - do_shum = .true. - do_skeb = .true. - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] + do_sppt = @[DO_SPPT] + do_shum = @[DO_SHUM] + do_skeb = @[DO_SKEB] + lndp_type = @[LNDP_TYPE] + n_var_lndp = @[N_VAR_LNDP] / &gfdl_cloud_microphysics_nml @@ -261,7 +261,7 @@ deflate_level=1 FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' FNSMCC = 'global_soilmgldas.t126.384.190.grb' - FNMSKH = 'seaice_newland.grb' + FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' FNACNA = '' FNSNOA = '' @@ -295,30 +295,33 @@ deflate_level=1 / &nam_stochy - ntrunc = 766 - lon_s = 1536 - lat_s = 768 - skeb = 0.3 - iseed_skeb = 2019102712451 - iseed_shum = 2019102712452 - iseed_sppt = 2019102712453 - skeb_tau = 21600. - skeb_lscale = 500000. - skebnorm = 0 - skeb_npass = 30 - skeb_vdof = 5 - shum = 0.005 - shum_tau = 21600. - shum_lscale = 500000. - sppt = 0.5 - sppt_tau = 21600. - sppt_lscale = 500000. - sppt_logit = .true. - sppt_sfclimit = .true. - use_zmtnblck = .true. + SKEBNORM=1, + SKEB_NPASS=30, + SKEB_VDOF=5, + SKEB=@[SKEB], + SKEB_TAU=2.16E4, + SKEB_LSCALE=1000.E3, + SKEBINT=1800, + SHUM=@[SHUM], + SHUM_TAU=21600, + SHUM_LSCALE=500000, + SHUMINT=3600, + SPPT=@[SPPT], + SPPT_TAU=21600, + SPPT_LSCALE=500000, + SPPT_LOGIT=.TRUE., + SPPT_SFCLIMIT=.TRUE., + SPPTINT=1800, + ISEED_SHUM=1, + ISEED_SKEB=2, + ISEED_SPPT=3, / &nam_sfcperts + lndp_type = @[LNDP_TYPE] + LNDP_TAU=21600, + LNDP_LSCALE=500000, + ISEED_LNDP=2010, / &cires_ugwp_nml diff --git a/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN b/tests/parm/ccpp_v16_c96_rrtmgp.nml.IN similarity index 98% rename from tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN rename to tests/parm/ccpp_v16_c96_rrtmgp.nml.IN index 3dc87afba3..1eb9124907 100644 --- a/tests/parm/ccpp_v16beta_c96_rrtmgp.nml.IN +++ b/tests/parm/ccpp_v16_c96_rrtmgp.nml.IN @@ -156,7 +156,7 @@ deflate_level=1 cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 4.0,0.15,1.0,1.0 + cdmbgwd = 0.14,1.8,1.0,1.0 prslrd0 = 0. ivegsrc = 1 isot = 1 @@ -271,7 +271,7 @@ deflate_level=1 FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' FNSMCC = 'global_soilmgldas.t126.384.190.grb' - FNMSKH = 'seaice_newland.grb' + FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' FNACNA = '' FNSNOA = '' diff --git a/tests/parm/ccpp_v16_c96_ugwpv1.nml.IN b/tests/parm/ccpp_v16_c96_ugwpv1.nml.IN new file mode 100644 index 0000000000..4fbff3e65a --- /dev/null +++ b/tests/parm/ccpp_v16_c96_ugwpv1.nml.IN @@ -0,0 +1,343 @@ +&amip_interp_nml + interp_oi_sst = .true. + use_ncep_sst = .true. + use_ncep_ice = .false. + no_anom_sst = .false. + data_set = 'reynolds_oi' + date_out_of_range = 'climo' +/ + +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + fdiag = 3 + fhmax = 24 + ccpp_suite = 'FV3_GFS_v16b_ugwpv1' +/ + +&diag_manager_nml + prepend_date = .false. +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 +/ + +&mpp_io_nml +shuffle=1 +deflate_level=1 +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = 3000000 + print_memory_usage = .false. +/ + +&fv_core_nml + layout = 3,8 + io_layout = 1,1 + npx = 97 + npy = 97 + ntiles = 6 + npz = 127 + grid_type = -1 + make_nh = .false. + fv_debug = .false. + range_warn = .false. + reset_eta = .false. + nudge_qv = .true. + nudge_dz = .false. + n_sponge = 42 + fv_sg_adj = 450 + tau = 10. + rf_cutoff = 7.5e2 + d2_bg_k1 = 0.20 + d2_bg_k2 = 0.04 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.12 + vtdm4 = 0.02 + delt_max = 0.002 + d_con = 1. + ke_bg = 0. + do_vort_damp = .true. + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .false. + phys_hydrostatic = .false. + use_hydro_pressure = .false. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 6 + nwat = 6 + na_init = 0 + d_ext = 0. + dnats = 1 + warm_start = @[WARM_START] + external_ic = @[EXTERNAL_IC] + external_eta = .true. + gfs_phil = .false. + nggps_ic = .true. + mountain = @[MOUNTAIN] + ncep_ic = .false. + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 + adjust_dry_mass = .false. + dry_mass=98320.0 + consv_te = 1. + do_sat_adj = .true. + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = 6 + no_dycore = .false. + z_tracer = .true. + agrid_vel_rst = .true. + read_increment = .false. + res_latlon_dynamics = "" + +/ + +&external_ic_nml + filtered_terrain = .true. + levp = 128 + gfs_dwinds = .true. + checker_tr = .false. + nt_checker = 0 +/ + +&gfs_physics_nml + fhzero = 6 + h2o_phys = .true. + ldiag3d = .false. + fhcyc = 24 + use_ufo = .true. + pre_rad = .false. + ncld = 5 + imp_physics = 11 + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = 1 + iems = 1 + iaer = 5111 + icliq_sw = 2 + iovr = 3 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. + shal_cnv = .true. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = .false. + satmedmf = .true. + isatmedmf = 1 + lheatstrg = .false. + random_clds = .false. + trans_trac = .true. + cnvcld = .true. + imfshalcnv = 2 + imfdeepcnv = 2 + cdmbgwd = 0.14,1.8,1.0,1.0 + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsoil = 4 + lsm = 1 + iopt_dveg = 1 + iopt_crs = 1 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_alb = 2 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 1 + oz_phys = .F. + oz_phys_2015 = .T. + debug = .false. + nstf_name = 2,0,0,0,0 + nst_anl = .true. + psautco = 0.0008,0.0005 + prautco = 0.00015,0.00015 + lgfdlmprad = .true. + effr_in = .true. + cplwav = .false. + do_sppt = .false. + do_shum = .false. + do_skeb = .false. + ltaerosol = .false. + lradar = .false. + ttendlim = 0.005 + lsoil_lsm = 4 + do_mynnedmf = .false. + do_mynnsfclay = .false. + icloud_bl = 1 + bl_mynn_edmf = 1 + bl_mynn_tkeadvect = .true. + bl_mynn_edmf_mom = 1 + min_lakeice = 0.15 + min_seaice = 0.15 + ldiag_ugwp = .false. + do_ugwp = .false. + do_tofd = .false. + gwd_opt = 1 + do_ugwp_v1 = .T. + do_ugwp_v1_w_gsldrag = .T. + do_ugwp_v1_orog_only = .F. + do_gsl_drag_ls_bl = .F. + do_gsl_drag_ss = .F. + do_gsl_drag_tofd = .F. + do_ugwp_v0 = .F. + do_ugwp_v0_orog_only = .F. +/ + +&gfdl_cloud_microphysics_nml + sedi_transport = .true. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .F. + const_vs = .F. + const_vg = .F. + const_vr = .F. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 225. + tau_v2l = 150. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0E-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 150. + reiflag = 2 +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&namsfc + FNGLAC = 'global_glacier.2x2.grb' + FNMXIC = 'global_maxice.2x2.grb' + FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' + FNSNOC = 'global_snoclim.1.875.grb' + FNZORC = 'igbp' + FNALBC = 'global_snowfree_albedo.bosu.t126.384.190.rg.grb' + FNALBC2 = 'global_albedo4.1x1.grb' + FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' + FNTG3C = 'global_tg3clim.2.6x1.5.grb' + FNVEGC = 'global_vegfrac.0.144.decpercent.grb' + FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' + FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' + FNSMCC = 'global_soilmgldas.t126.384.190.grb' + FNMSKH = 'seaice_newland.grb' + FNTSFA = '' + FNACNA = '' + FNSNOA = '' + FNVMNC = 'global_shdmin.0.144x0.144.grb' + FNVMXC = 'global_shdmax.0.144x0.144.grb' + FNSLPC = 'global_slope.1x1.grb' + FNABSC = 'global_mxsnoalb.uariz.t126.384.190.rg.grb' + LDEBUG = .false. + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + LANDICE = .true. + FTSFS = 90 + FAISL = 99999 + FAISS = 99999 + FSNOL = 99999 + FSNOS = 99999 + FSICL = 99999 + FSICS = 99999 + FTSFL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&nam_stochy +/ + +&nam_sfcperts +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_version = 1 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 2 + knob_ugwp_ndx4lh = 4 + knob_ugwp_palaunch = 275.0e2 + knob_ugwp_nslope = 0 + knob_ugwp_lzmax = 15.750e3 + knob_ugwp_lzmin = 0.75e3 + knob_ugwp_lzstar = 2.0e3 + knob_ugwp_taumin = 0.25e-3 + knob_ugwp_tauamp = 3.0e-3 + knob_ugwp_lhmet = 200.0e3 + knob_ugwp_orosolv = 'pss-1986' +/ diff --git a/tests/parm/ccpp_v16beta_flake_c96.nml.IN b/tests/parm/ccpp_v16_flake_c96.nml.IN similarity index 98% rename from tests/parm/ccpp_v16beta_flake_c96.nml.IN rename to tests/parm/ccpp_v16_flake_c96.nml.IN index b7681eece7..66efb1156a 100644 --- a/tests/parm/ccpp_v16beta_flake_c96.nml.IN +++ b/tests/parm/ccpp_v16_flake_c96.nml.IN @@ -16,7 +16,7 @@ fhout = 3 fhmaxhf = 120 fhouthf = 1 - ccpp_suite = 'FV3_GFS_v16beta_flake' + ccpp_suite = 'FV3_GFS_v16_flake' / &diag_manager_nml @@ -156,7 +156,7 @@ deflate_level=1 cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 4.0,0.15,1.0,1.0 + cdmbgwd = 0.14,1.8,1.0,1.0 prslrd0 = 0. ivegsrc = 1 isot = 1 @@ -261,7 +261,7 @@ deflate_level=1 FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' FNSMCC = 'global_soilmgldas.t126.384.190.grb' - FNMSKH = 'seaice_newland.grb' + FNMSKH = 'global_slmask.t1534.3072.1536.grb' FNTSFA = '' FNACNA = '' FNSNOA = '' diff --git a/tests/parm/cpt.nml.IN b/tests/parm/cpt.nml.IN index cffd0346b0..6f05ac8223 100644 --- a/tests/parm/cpt.nml.IN +++ b/tests/parm/cpt.nml.IN @@ -284,7 +284,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/csawmg.nml.IN b/tests/parm/csawmg.nml.IN index 40daa3f769..09b9ce71ce 100644 --- a/tests/parm/csawmg.nml.IN +++ b/tests/parm/csawmg.nml.IN @@ -234,7 +234,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/csawmg3shoc127.nml.IN b/tests/parm/csawmg3shoc127.nml.IN index c1c6afc666..4eff370829 100644 --- a/tests/parm/csawmg3shoc127.nml.IN +++ b/tests/parm/csawmg3shoc127.nml.IN @@ -234,7 +234,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/csawmgshoc.nml.IN b/tests/parm/csawmgshoc.nml.IN index dd7181538d..c6c44b1d2f 100644 --- a/tests/parm/csawmgshoc.nml.IN +++ b/tests/parm/csawmgshoc.nml.IN @@ -233,7 +233,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/datm_configure.IN b/tests/parm/datm_configure.IN index 08b5f95ea4..c64ec17b3f 100644 --- a/tests/parm/datm_configure.IN +++ b/tests/parm/datm_configure.IN @@ -1,5 +1,5 @@ -total_member: 1 -print_esmf: .false. +total_member: 1 +print_esmf: .true. PE_MEMBER01: @[TASKS] start_year: @[SYEAR] start_month: @[SMONTH] @@ -10,6 +10,8 @@ start_second: 0 nhours_fcst: @[FHMAX] RUN_CONTINUE: .false. ENS_SPS: .false. +calendar: 'julian' +fhrot: @[FHROT] dt_atmos: @[DT_ATMOS] atm_coupling_interval_sec: @[coupling_interval_fast_sec] diff --git a/tests/parm/datm_data_table.IN b/tests/parm/datm_data_table.IN index 1495adc516..89412daad8 100644 --- a/tests/parm/datm_data_table.IN +++ b/tests/parm/datm_data_table.IN @@ -1,5 +1,5 @@ # this file will be read as a nems config file to set -# fields which might not be available with all forcing +# fields which might not be available with all forcing # sources mean_zonal_moment_flx_atm .true. mean_merid_moment_flx_atm .true. @@ -9,6 +9,10 @@ inst_spec_humid_height_lowest .true. inst_zonal_wind_height_lowest .true. inst_merid_wind_height_lowest .true. inst_pres_height_lowest .true. + inst_temp_height2m .true. + inst_spec_humid_height2m .true. + inst_zonal_wind_height10m .true. + inst_merid_wind_height10m .true. mean_down_sw_flx .true. mean_down_lw_flx .true. mean_up_lw_flx .true. diff --git a/tests/parm/fv3.gocart.nml.IN b/tests/parm/fv3.gocart.nml.IN deleted file mode 100644 index fb58915445..0000000000 --- a/tests/parm/fv3.gocart.nml.IN +++ /dev/null @@ -1,311 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = 97 - npy = 97 - ntiles = 6, - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 30 - nudge_qv = .T. - rf_fast = .F. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 1 - n_split = 8 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 1 - fv_sg_adj = 600 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 1. - do_sat_adj = .T. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - no_dycore = .false. - z_tracer = .T. -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - ldiag_ugwp = @[LDIAG_UGWP] - do_ugwp = @[DO_UGWP] - do_tofd = @[DO_TOFD] - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = @[IAER] - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - isatmedmf = 1 - lheatstrg = @[LHEATSTRG] - lgfdlmprad = @[LGFDLMPRAD] - effr_in = @[EFFR_IN] - random_clds = .false. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = @[LSM] - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - h2o_phys = @[H2O_PHYS] - nstf_name = @[NSTF_NAME] - cplflx = @[CPLFLX] - cplwav = @[CPLWAV] - xkzminv = 0.3 - xkzm_m = 1.0 - xkzm_h = 1.0 -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 300. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, - LANDICE = @[LANDICE] -/ -&nam_stochy -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/gfsv16_csawmg.nml.IN b/tests/parm/gfsv16_csawmg.nml.IN deleted file mode 100644 index fee1b56c52..0000000000 --- a/tests/parm/gfsv16_csawmg.nml.IN +++ /dev/null @@ -1,302 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .F. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 13 - adjust_dry_mass = .F. - consv_te = 1. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - -/ - -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - crtrh = 0.93,0.90,0.95 - ncld = 2 - imp_physics = 10 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = @[IAER] - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .false. - hybedmf = .false. - satmedmf = .true. - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .true. - cnvcld = .false. - imfshalcnv = 2 - imfdeepcnv = -1 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - - ras = .false. - cscnv = .true. - do_shoc = .false. - shoc_parm = 7000.0,1.0,2.0,0.7,-999.0 - do_aw = .true. - shoc_cld = .false. - h2o_phys = .true. - shcnvcw = .false. - xkzm_h = 0.5 - xkzm_m = 0.5 - xkzm_s = 1.0 - ccwf = 1.0,1.0 - dlqf = 0.25,0.05 - mg_dcs = 200.0 - mg_ts_auto_ice = 180.0,900.0 - mg_qcvar = 1.0 - fprcp = 2 - pdfflag = 4 - iccn = 2 - mg_do_graupel = .true. - mg_do_hail = .false. - do_sb_physics = .true. - mg_do_ice_gmao = .false. - mg_do_liq_liu = .true. - cs_parm = 8.0,4.0,1.0e3,3.5e3,20.0,1.0,0.0,1.0,0.6,0.0 - ctei_rm = 0.60,0.23 - max_lon = 8000 - max_lat = 4000 - rhcmax = 0.9999999 - effr_in = .true. - - nstf_name = @[NSTF_NAME] - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/input.benchmark_ccpp.nml.IN b/tests/parm/input.benchmark_ccpp.nml.IN index 5507810b77..4d3e4f473d 100644 --- a/tests/parm/input.benchmark_ccpp.nml.IN +++ b/tests/parm/input.benchmark_ccpp.nml.IN @@ -47,6 +47,7 @@ npy = @[NPY] ntiles = 6, npz = @[NPZ] + dz_min = @[DZ_MIN] grid_type = -1 make_nh = @[MAKE_NH] fv_debug = .false. @@ -175,7 +176,7 @@ cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 1.0,1.2 + cdmbgwd = @[CDMBWD] prslrd0 = 0. ivegsrc = 1 isot = 1 @@ -204,10 +205,10 @@ ldiag_ugwp = .false. do_ugwp = .false. do_tofd = .false. - cplflx = .T. + cplflx = .T. cplwav = @[CPLWAV] cplwav2atm = @[CPLWAV2ATM] - + min_seaice = @[MIN_SEAICE] / &gfdl_cloud_microphysics_nml @@ -279,7 +280,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/input.benchmark.nml.IN b/tests/parm/input.benchmark_v16.nml.IN similarity index 87% rename from tests/parm/input.benchmark.nml.IN rename to tests/parm/input.benchmark_v16.nml.IN index 4ccd06337b..9490758bc3 100644 --- a/tests/parm/input.benchmark.nml.IN +++ b/tests/parm/input.benchmark_v16.nml.IN @@ -17,6 +17,7 @@ fhout = 6 fhmaxhf = 0 fhouthf = -1 + ccpp_suite = '@[SUITE_NAME]' / @@ -46,18 +47,19 @@ npy = @[NPY] ntiles = 6, npz = @[NPZ] + dz_min = @[DZ_MIN] grid_type = -1 make_nh = @[MAKE_NH] fv_debug = .false. range_warn = .false. reset_eta = .false. - n_sponge = 10 + n_sponge = 42 nudge_qv = .true. nudge_dz = .false. tau = 10. rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 + d2_bg_k1 = 0.20 + d2_bg_k2 = 0.04 kord_tm = -9 kord_mt = 9 kord_wz = 9 @@ -111,24 +113,9 @@ / -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 27 -/ - &external_ic_nml filtered_terrain = .true. - levp = 65 + levp = 128 gfs_dwinds = .true. checker_tr = .false. nt_checker = 0 @@ -137,6 +124,8 @@ &gfs_physics_nml fhzero = 6 + oz_phys = .false. + oz_phys_2015 = .true. h2o_phys = .true. ldiag3d = .false. fhcyc = 24 @@ -149,9 +138,9 @@ fhlwr = 3600. ialb = 1 iems = 1 - iaer = 111 - icliq_sw = 1 - iovr = 1 + iaer = 5111 + icliq_sw = 2 + iovr = 3 ico2 = 2 isubc_sw = 2 isubc_lw = 2 @@ -163,16 +152,16 @@ cal_pre = .false. redrag = .true. dspheat = .true. - hybedmf = .true. - satmedmf = .false. - isatmedmf = 0 + hybedmf = .false. + satmedmf = .true. + isatmedmf = 1 lheatstrg = .false. random_clds = .false. trans_trac = .true. cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 1.0,1.2 + cdmbgwd = @[CDMBWD] prslrd0 = 0. ivegsrc = 1 isot = 1 @@ -192,6 +181,7 @@ iopt_stc = 1 debug = .false. nstf_name = 0,0,0,0,0 + frac_grid = @[FRAC_GRID] nst_anl = .false. psautco = 0.0008,0.0005 prautco = 0.00015,0.00015 @@ -199,10 +189,11 @@ effr_in = .true. ldiag_ugwp = .false. do_ugwp = .false. - do_tofd = .false. - cplflx = .T. + do_tofd = .true. + cplflx = .T. cplwav = @[CPLWAV] cplwav2atm = @[CPLWAV2ATM] + min_seaice = @[MIN_SEAICE] / @@ -253,6 +244,7 @@ fix_negative = .true. icloud_f = 1 mp_time = 150. + reiflag = 2 / @@ -275,7 +267,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", @@ -315,6 +307,21 @@ &nam_sfcperts / +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = 0 + launch_level = 54 +/ + &MOM_input_nml output_directory = 'MOM6_OUTPUT/', input_filename = '@[MOM6_RESTART_SETTING]' diff --git a/tests/parm/input.mom6_ccpp.nml.IN b/tests/parm/input.mom6_ccpp.nml.IN index 88c6ce1fb5..870f4dfc5a 100644 --- a/tests/parm/input.mom6_ccpp.nml.IN +++ b/tests/parm/input.mom6_ccpp.nml.IN @@ -44,6 +44,7 @@ npy = @[NPY] ntiles = 6, npz = @[NPZ] + dz_min = @[DZ_MIN] grid_type = -1 make_nh = @[MAKE_NH] fv_debug = .F. @@ -162,7 +163,7 @@ imfshalcnv = 2 imfdeepcnv = 2 isatmedmf = @[ISATMEDMF] - cdmbgwd = 3.5,0.25 + cdmbgwd = @[CDMBWD] prslrd0 = 0. ivegsrc = 1 isot = 1 @@ -188,6 +189,7 @@ cplflx = @[CPLFLX] cplwav = @[CPLWAV] cplwav2atm = @[CPLWAV2ATM] + min_seaice = @[MIN_SEAICE] iau_delthrs = 6 iaufhrs = 30 iau_inc_files = @[IAU_INC_FILES] @@ -205,7 +207,7 @@ nseed = 1000000 nfracseed = 0.5 nthresh = 0. - ca_trigger = .true. + ca_trigger = .true. ca_entr = .false. ca_closure = .false. ca_global = .false. @@ -238,7 +240,7 @@ FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/input.nml.IN b/tests/parm/input.nml.IN deleted file mode 100644 index 873abac045..0000000000 --- a/tests/parm/input.nml.IN +++ /dev/null @@ -1,303 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6, - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .T. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 2 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 1. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" -/ - -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 1 - imp_physics = 99 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .true. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - isatmedmf = @[ISATMEDMF] - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - h2o_phys = @[H2O_PHYS] - nstf_name = @[NSTF_NAME] - cplflx = @[CPLFLX] - cplwav = @[CPLWAV] - cplwav2atm = @[CPLWAV2ATM] - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] - iau_drymassfixer = @[IAU_DRYMASSFIXER] - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] - do_ca = @[DO_CA] - ca_sgs = @[CA_SGS] - nca = 1 - ncells = 5 - nlives = 24 - nseed = 100 - nfracseed = 0.5 - nthresh = 8 - ca_trigger = .True. - ca_entr = .False. - ca_closure = .False. - nca_g = 1 - ncells_g = 1 - nlives_g = 100 - nseed_g = 100 - ca_smooth = .True. - nspinup = 100 - iseed_ca = 12345 - nsmooth = 100 - ca_amplitude = 0.35 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010, -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/input_nest02.nml.IN b/tests/parm/input_nest02.nml.IN index e8648b19dc..fdefdf3ae2 100644 --- a/tests/parm/input_nest02.nml.IN +++ b/tests/parm/input_nest02.nml.IN @@ -243,7 +243,7 @@ FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", + FNMSKH = "global_slmask.t1534.3072.1536.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", diff --git a/tests/parm/multi_gases.nml.IN b/tests/parm/multi_gases.nml.IN deleted file mode 100644 index d762d8ca1b..0000000000 --- a/tests/parm/multi_gases.nml.IN +++ /dev/null @@ -1,291 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6, - npz = @[NPZ] - grid_type = -1 - ncnst = 5 - make_nh = @[MAKE_NH] - fv_debug = .F. - - range_warn = .F. - reset_eta = .F. - n_sponge = -1 - nudge_qv = .T. - tau = 0.015 - rf_cutoff = 2.e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.005 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 2 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 1800 - d2_bg = 0. - nord = 1 - dddmp = 0.1 - d4_bg = 0.20 - vtdm4 = 0.07 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 1. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" -/ - -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 1 - imp_physics = 99 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .true. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - isatmedmf = @[ISATMEDMF] - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - h2o_phys = @[H2O_PHYS] - nstf_name = @[NSTF_NAME] - cplflx = @[CPLFLX] - cplwav = @[CPLWAV] - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010, -/ - -&sat_vapor_pres_nml - use_exact_qs = .true. - show_all_bad_values=.false. -/ -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ -&multi_gases_nml - ri = 287.050, 461.50, 0.0, 173.2247, 0.0, 0.0 - cpi = 1004.600, 1846.00, 0.0, 820.2391, 0.0, 0.0 -/ diff --git a/tests/parm/nems.configure.cpld.IN b/tests/parm/nems.configure.cpld.IN index 4a49653e0a..80dee17527 100644 --- a/tests/parm/nems.configure.cpld.IN +++ b/tests/parm/nems.configure.cpld.IN @@ -31,6 +31,7 @@ OCN_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true + mesh_ocn = @[MESHOCN_ICE] :: # ICE # @@ -41,7 +42,7 @@ ICE_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true - mesh_ice = @[MESHICE] + mesh_ice = @[MESHOCN_ICE] stop_n = @[RESTART_N] stop_option = nhours stop_ymd = -999 @@ -50,7 +51,7 @@ ICE_attributes:: # CMEPS warm run sequence runSeq:: @@[coupling_interval_slow_sec] - MED med_phases_prep_ocn_accum_avg + MED med_phases_prep_ocn_avg MED -> OCN :remapMethod=redist OCN @@[coupling_interval_fast_sec] @@ -61,14 +62,13 @@ runSeq:: ATM ICE ATM -> MED :remapMethod=redist + MED med_phases_post_atm ICE -> MED :remapMethod=redist - MED med_fraction_set - MED med_phases_prep_ocn_map - MED med_phases_prep_ocn_merge - MED med_phases_prep_ocn_accum_fast - MED med_phases_profile + MED med_phases_post_ice + MED med_phases_prep_ocn_accum @ OCN -> MED :remapMethod=redist + MED med_phases_post_ocn MED med_phases_restart_write @ :: @@ -82,7 +82,7 @@ MED_attributes:: ATM_model = @[atm_model] ICE_model = @[ice_model] OCN_model = @[ocn_model] - history_n = 0 + history_n = 1 history_option = nhours history_ymd = -999 coupling_mode = @[CPLMODE] @@ -93,10 +93,12 @@ ALLCOMP_attributes:: ScalarFieldIdxGridNY = 2 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] - case_name = ./RESTART/ufs.cpld + restart_dir = RESTART/ + case_name = ufs.cpld restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 dbug_flag = @[cap_dbug_flag] use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] :: diff --git a/tests/parm/nems.configure.cpld_wave.IN b/tests/parm/nems.configure.cpld_wave.IN index dda3ae7f99..5bb3443d54 100644 --- a/tests/parm/nems.configure.cpld_wave.IN +++ b/tests/parm/nems.configure.cpld_wave.IN @@ -31,6 +31,7 @@ OCN_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true + mesh_ocn = @[MESHOCN_ICE] :: # ICE # @@ -41,10 +42,10 @@ ICE_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true - mesh_ice = @[MESHICE] + mesh_ice = @[MESHOCN_ICE] stop_n = @[RESTART_N] stop_option = nhours - stop_ymd = -999 + stop_ymd = -999 :: # WAV # @@ -58,7 +59,7 @@ WAV_attributes:: # CMEPS warm run sequence runSeq:: @@[coupling_interval_slow_sec] - MED med_phases_prep_ocn_accum_avg + MED med_phases_prep_ocn_avg MED -> OCN :remapMethod=redist OCN -> WAV WAV -> OCN :srcMaskValues=1 @@ -75,14 +76,13 @@ runSeq:: ICE WAV ATM -> MED :remapMethod=redist + MED med_phases_post_atm ICE -> MED :remapMethod=redist - MED med_fraction_set - MED med_phases_prep_ocn_map - MED med_phases_prep_ocn_merge - MED med_phases_prep_ocn_accum_fast - MED med_phases_profile + MED med_phases_post_ice + MED med_phases_prep_ocn_accum @ OCN -> MED :remapMethod=redist + MED med_phases_post_ocn MED med_phases_restart_write @ :: @@ -96,7 +96,7 @@ MED_attributes:: ATM_model = @[atm_model] ICE_model = @[ice_model] OCN_model = @[ocn_model] - history_n = 0 + history_n = 1 history_option = nhours history_ymd = -999 coupling_mode = @[CPLMODE] @@ -107,10 +107,12 @@ ALLCOMP_attributes:: ScalarFieldIdxGridNY = 2 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] - case_name = ./RESTART/ufs.cpld + restart_dir = RESTART/ + case_name = ufs.cpld restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 dbug_flag = @[cap_dbug_flag] use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] :: diff --git a/tests/parm/nems.configure.datm.IN b/tests/parm/nems.configure.datm.IN index 737404901c..c4c6782960 100644 --- a/tests/parm/nems.configure.datm.IN +++ b/tests/parm/nems.configure.datm.IN @@ -21,7 +21,6 @@ ATM_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true - DebugFlag = 0 :: # OCN # @@ -32,6 +31,7 @@ OCN_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true + mesh_ocn = @[MESHOCN_ICE] :: # ICE # @@ -42,7 +42,7 @@ ICE_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true - mesh_ice = @[MESHICE] + mesh_ice = @[MESHOCN_ICE] stop_n = @[RESTART_N] stop_option = nhours stop_ymd = -999 @@ -52,7 +52,7 @@ ICE_attributes:: runSeq:: @@[coupling_interval_slow_sec] - MED med_phases_prep_ocn_accum_avg + MED med_phases_prep_ocn_avg MED -> OCN :remapMethod=redist OCN @@[coupling_interval_fast_sec] @@ -61,14 +61,14 @@ runSeq:: ATM ICE ATM -> MED :remapMethod=redist + MED med_phases_post_atm ICE -> MED :remapMethod=redist - MED med_fraction_set - MED med_phases_prep_ocn_map + MED med_phases_post_ice MED med_phases_aofluxes_run - MED med_phases_prep_ocn_merge - MED med_phases_prep_ocn_accum_fast + MED med_phases_prep_ocn_accum @ OCN -> MED :remapMethod=redist + MED med_phases_post_ocn MED med_phases_restart_write @ :: @@ -82,7 +82,7 @@ MED_attributes:: ATM_model = datm ICE_model = cice6 OCN_model = mom - history_n = 0 + history_n = 1 history_option = nhours history_ymd = -999 coupling_mode = nems_orig_data @@ -93,14 +93,16 @@ ALLCOMP_attributes:: ScalarFieldIdxGridNY = 2 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] - case_name = RESTART/DATM_@[DATM_SRC] + restart_dir = RESTART/ + case_name = DATM_@[DATM_SRC] restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 dbug_flag = @[cap_dbug_flag] use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] coldair_outbreak_mod = .false. - flds_wiso = .false. - flux_convergence = 0.0 - flux_max_iteration = 1 + flux_convergence = @[flux_convergence] + flux_max_iteration = @[flux_iteration] + ocn_surface_flux_scheme = @[flux_scheme] :: diff --git a/tests/parm/rasmgshoc.nml.IN b/tests/parm/rasmgshoc.nml.IN deleted file mode 100644 index 57da39c4e3..0000000000 --- a/tests/parm/rasmgshoc.nml.IN +++ /dev/null @@ -1,304 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .F. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 13 - adjust_dry_mass = .F. - consv_te = 1. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - - fhouri = 2.0 - fac_n_spl = 2.0 -/ - -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - crtrh = 1.00,1.00,0.95 - ncld = 2 - imp_physics = 10 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .false.. - cal_pre = .false. - redrag = .true. - dspheat = .false. - hybedmf = @[HYBEDMF] - satmedmf = .false. - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .true. - cnvcld = .false. - imfshalcnv = -1 - imfdeepcnv = -1 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - - ras = .true. - cscnv = .false. - do_shoc = .true. - shoc_parm = 7000.0,1.0,2.0,0.7,-999.0 - do_aw = .false. - shoc_cld = .true. - h2o_phys = .true. - shcnvcw = .false. - xkzm_h = 1.0 - xkzm_m = 1.0 - xkzm_s = 1.0 - ccwf = 1.0,1.0 - dlqf = 0.25,0.05 - mg_dcs = 200.0 - mg_ts_auto_ice = 180.0,900.0 - mg_qcvar = 1.0 - fprcp = 2 - pdfflag = 4 - iccn = 0 - mg_do_graupel = .true. - mg_do_hail = .false. - do_sb_physics = .true. - mg_do_ice_gmao = .false. - mg_do_liq_liu = .true. - cs_parm = 8.0,4.0,1.0e3,3.5e3,20.0,1.0,0.0,1.0,0.6,0.0 - ctei_rm = 0.60,0.23 - max_lon = 8000 - max_lat = 4000 - rhcmax = 0.9999999 - effr_in = .true. - - nstf_name = @[NSTF_NAME] - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/regional.nml.IN b/tests/parm/regional.nml.IN deleted file mode 100644 index d854127859..0000000000 --- a/tests/parm/regional.nml.IN +++ /dev/null @@ -1,298 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - - &atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - - &fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - - &fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 2000200, - print_memory_usage = .false. -/ - - &fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - - &fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = 211 - npy = 193 - ntiles = 1, - npz = 64 - !grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .T. - reset_eta = .F. - n_sponge = 20 - nudge_qv = .T. - tau = 3.0 - rf_cutoff = 10.e2 - d2_bg_k1 = 0.16 - d2_bg_k2 = 0.02 - kord_tm = -10 - kord_mt = 10 - kord_wz = 10 - kord_tr = 10 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 1 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.08 - vtdm4 = 0.0 - delt_max = 0.008 - ke_bg = 0. - do_vort_damp = .T. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1.0 - hord_mt = 6 - hord_vt = -5 - hord_tm = -5 - hord_dp = -5 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 0. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - - do_schmidt = .true. - target_lat = 35.5 - target_lon = -97.5 - stretch_fac = 1.5 -!! nord_zs_filter = 4 - n_zs_filter = 0 - regional = .true. - bc_update_interval = 6 - regional_bcs_from_gsi = .false. - write_restart_with_bcs = @[WRITE_RESTART_WITH_BCS] - nrows_blend = 0 -/ - - &external_ic_nml - filtered_terrain = .true. - levp = 65 - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - - &gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .true. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .true. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 2.0, 0.25 ! NCEP default - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - nstf_name = 1,1,1,0,5 - cplflx = .F. - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] -/ - - &interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp" - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ - - &gfdl_cloud_microphysics_nml - sedi_transport = .false. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 180. - tau_v2l = 90. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 90. -/ - -&nam_stochy -/ - -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/regional_c768-model_configure.IN b/tests/parm/regional_c768-model_configure.IN deleted file mode 100644 index 25d43c0540..0000000000 --- a/tests/parm/regional_c768-model_configure.IN +++ /dev/null @@ -1,60 +0,0 @@ -print_esmf: .true. - -total_member: 1 -PE_MEMBER01: 480 - -start_year: 2018 -start_month: 10 -start_day: 15 -start_hour: 00 -start_minute: 0 -start_second: 0 -nhours_fcst: 3 -RUN_CONTINUE: .false. -ENS_SPS: .false. -dt_atmos: 90 -cpl: .false. -calendar: 'julian' -memuse_verbose: .false. -atmos_nthreads: 1 -use_hyper_thread: .false. -ncores_per_node: 24 -debug_affinity: .true. -restart_interval: 0 -output_1st_tstep_rst: .false. - -quilting: .true. -write_groups: 2 -write_tasks_per_group: 24 -num_files: 2 -filename_base: 'dyn' 'phy' -output_file: 'netcdf' -write_nemsioflip: .false. -write_fsyncflag: .false. - -# output_grid: 'gaussian_grid' -# imo: 384 -# jmo: 190 - - output_grid: 'regional_latlon' - lon1: 225.0 - lon2: 300.0 - lat1: 10.0 - lat2: 60.0 - dlon: 0.2 - dlat: 0.2 - -# output_grid: 'rotated_latlon' -# cen_lon: -97.5 # central longitude -# cen_lat: 34.5 # central latitude -# lon1: -24.0 # longitude of lower-left point in rotated coordinate system (in degrees) -# lat1: -22.0 # latitude of lower-left . . . . -# lon2: 24.0 # longitude of upper-right . . . . -# lat2: 22.0 # latitude of upper-right . . . . -# dlon: 0.2 -# dlat: 0.2 - -nfhout: 3 -nfhmax_hf: 0 -nfhout_hf: 1 -nsout: -1 diff --git a/tests/parm/regional_c768.nml.IN b/tests/parm/regional_c768.nml.IN deleted file mode 100644 index 7b24731482..0000000000 --- a/tests/parm/regional_c768.nml.IN +++ /dev/null @@ -1,295 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - - &atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = 1 -/ - -&diag_manager_nml - prepend_date = .F. -/ - - &fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - - &fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - - &fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - - &fv_core_nml - layout = 24,20 - io_layout = 1,1 - npx = 1729 - npy = 1441 - ntiles = 1, - npz = 64 - !grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .T. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .T. - tau = 5. - rf_cutoff = 20.e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.04 - kord_tm = -11 - kord_mt = 11 - kord_wz = 11 - kord_tr = 11 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 4 - n_split = 5 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 1 - fv_sg_adj = 300 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.008 - ke_bg = 0. - do_vort_damp = .T. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1.0 - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 0. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - - do_schmidt = .true. - target_lat = 35.5 - target_lon = -97.5 - stretch_fac = 1.5 -!! nord_zs_filter = 4 - n_zs_filter = 0 - regional = .true. - bc_update_interval = 6 -/ - - &external_ic_nml - filtered_terrain = .true. - levp = 65 - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - - &gfs_physics_nml - fhzero = 3. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .false. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .false. - trans_trac = .true. - cnvcld = .false. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5, 0.25 ! NCEP default - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - nstf_name = 1,1,1,0,5 - cplflx = .F. - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] -/ - - &interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp" - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ - - &gfdl_cloud_microphysics_nml - sedi_transport = .false. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 180. - tau_v2l = 90. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 90. -/ - -&nam_stochy -/ - -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/stretched-input.nml.IN b/tests/parm/stretched-input.nml.IN deleted file mode 100644 index 412c9e8f3d..0000000000 --- a/tests/parm/stretched-input.nml.IN +++ /dev/null @@ -1,292 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = 97 - npy = 97 - ntiles = 6, - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 30 - nudge_qv = .T. - rf_fast = .F. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 1 - n_split = 8 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 1 - fv_sg_adj = 600 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 1. - do_sat_adj = .T. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - no_dycore = .false. - z_tracer = .T. - - do_schmidt = .true. - target_lat = 35.5 - target_lon = -97.5 - stretch_fac = 1.5 - -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .false. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - nstf_name = @[NSTF_NAME] - xkzminv = 0.3 - xkzm_m = 1.0 - xkzm_h = 1.0 -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 300. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/stretched-nest-input.nml.IN b/tests/parm/stretched-nest-input.nml.IN deleted file mode 100644 index a7c8e4749e..0000000000 --- a/tests/parm/stretched-nest-input.nml.IN +++ /dev/null @@ -1,300 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 24 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml -! grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = 97 - npy = 97 - ntiles = 6, - npz = @[NPZ] -! grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 30 - nudge_qv = .T. - rf_fast = .F. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 1 - n_split = 8 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 1 - fv_sg_adj = 600 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 1. - do_sat_adj = .T. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - no_dycore = .false. - z_tracer = .T. - - do_schmidt = .true. - target_lat = 35.5 - target_lon = -97.5 - stretch_fac = 1.5 - -/ -&fv_nest_nml - grid_pes = 48, 48 - grid_coarse = 0, 1 - tile_coarse = 0, 6 - nest_refine = 0, 3 - nest_ioffsets= 1, 14 - nest_joffsets= 1, 19 -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .false. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - nstf_name = @[NSTF_NAME] - xkzminv = 0.3 - xkzm_m = 1.0 - xkzm_h = 1.0 -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 300. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/thompson.nml.IN b/tests/parm/thompson.nml.IN deleted file mode 100644 index 4e6ee49127..0000000000 --- a/tests/parm/thompson.nml.IN +++ /dev/null @@ -1,273 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6, - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .T. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 1. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" -/ - -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 2 - imp_physics = 8 - lradar = @[LRADAR] - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .true. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - nstf_name = @[NSTF_NAME] - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010, -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/v15p2_c96.nml.IN b/tests/parm/v15p2_c96.nml.IN deleted file mode 100644 index e39dfc2dcf..0000000000 --- a/tests/parm/v15p2_c96.nml.IN +++ /dev/null @@ -1,307 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi' - date_out_of_range = 'climo' -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = 1 - fhmax = 384 - fhout = 3 - fhmaxhf = 120 - fhouthf = 1 -/ - -&diag_manager_nml - prepend_date = .false. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&fms_nml - clock_grain = 'ROUTINE' - domains_stack_size = 3000000 - print_memory_usage = .false. -/ - -&fv_core_nml - layout = 3,8 - io_layout = 1,1 - npx = 97 - npy = 97 - ntiles = 6 - npz = 64 - grid_type = -1 - make_nh = .false. - fv_debug = .false. - range_warn = .false. - reset_eta = .false. - n_sponge = 10 - nudge_qv = .true. - nudge_dz = .false. - tau = 10. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = 0 - d_ext = 0. - dnats = 1 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = .true. - external_eta = .true. - gfs_phil = .false. - nggps_ic = .true. - mountain = .false. - ncep_ic = .false. - d_con = 1. - hord_mt = 5 - hord_vt = 5 - hord_tm = 5 - hord_dp = -5 - hord_tr = 8 - adjust_dry_mass = .false. - consv_te = 1. - do_sat_adj = .true. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = .false. - no_dycore = .false. - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = .false. - res_latlon_dynamics = "" -/ - -&external_ic_nml - filtered_terrain = .true. - levp = 65 - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6 - h2o_phys = .true. - ldiag3d = .false. - fhcyc = 24 - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - iaer = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .true. - random_clds = .false. - trans_trac = .true. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - debug = .false. - nstf_name = 2,1,0,0,0 - nst_anl = .true. - psautco = 0.0008,0.0005 - prautco = 0.00015,0.00015 - lgfdlmprad = .true. - effr_in = .true. - do_sppt = .true. - do_shum = .true. - do_skeb = .true. - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = 'global_glacier.2x2.grb' - FNMXIC = 'global_maxice.2x2.grb' - FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' - FNSNOC = 'global_snoclim.1.875.grb' - FNZORC = 'igbp' - FNALBC = 'global_snowfree_albedo.bosu.t126.384.190.rg.grb' - FNALBC2 = 'global_albedo4.1x1.grb' - FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' - FNTG3C = 'global_tg3clim.2.6x1.5.grb' - FNVEGC = 'global_vegfrac.0.144.decpercent.grb' - FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' - FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' - FNSMCC = 'global_soilmgldas.t126.384.190.grb' - FNMSKH = 'seaice_newland.grb' - FNTSFA = '' - FNACNA = '' - FNSNOA = '' - FNVMNC = 'global_shdmin.0.144x0.144.grb' - FNVMXC = 'global_shdmax.0.144x0.144.grb' - FNSLPC = 'global_slope.1x1.grb' - FNABSC = 'global_mxsnoalb.uariz.t126.384.190.rg.grb' - LDEBUG = .false. - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - LANDICE = .true. - FTSFS = 90 - FAISL = 99999 - FAISS = 99999 - FSNOL = 99999 - FSNOS = 99999 - FSICL = 99999 - FSICS = 99999 - FTSFL = 99999 - FVETL = 99999 - FSOTL = 99999 - FvmnL = 99999 - FvmxL = 99999 - FSLPL = 99999 - FABSL = 99999 -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&nam_stochy - ntrunc = 766 - lon_s = 1536 - lat_s = 768 - skeb = 0.3 - iseed_skeb = 2019102712451 - iseed_shum = 2019102712452 - iseed_sppt = 2019102712453 - skeb_tau = 21600. - skeb_lscale = 500000. - skebnorm = 0 - skeb_npass = 30 - skeb_vdof = 5 - shum = 0.005 - shum_tau = 21600. - shum_lscale = 500000. - sppt = 0.5 - sppt_tau = 21600. - sppt_lscale = 500000. - sppt_logit = .true. - sppt_sfclimit = .true. - use_zmtnblck = .true. -/ - -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ - diff --git a/tests/parm/wsm6.nml.IN b/tests/parm/wsm6.nml.IN deleted file mode 100644 index 6510881f21..0000000000 --- a/tests/parm/wsm6.nml.IN +++ /dev/null @@ -1,273 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6, - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .T. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 1. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" -/ - -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 2 - imp_physics = 6 - lradar = @[LRADAR] - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .true. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - nstf_name = @[NSTF_NAME] - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "seaice_newland.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010, -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/rt.conf b/tests/rt.conf index 93b34facd9..2dd89c69e9 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -1,242 +1,192 @@ -####################################################################################################################################################################################### -# CCPP PROD tests # -####################################################################################################################################################################################### - -COMPILE | CCPP=Y 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_iau | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_iau | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_iau | standard | hera.intel | fv3 | -RUN | fv3_ccpp_iau | standard | orion.intel | fv3 | -RUN | fv3_ccpp_iau | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_ca | standard | hera.intel | fv3 | -RUN | fv3_ccpp_ca | standard | orion.intel | fv3 | -RUN | fv3_ccpp_ca | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_lndp | standard | hera.intel | fv3 | +################################################################################################################################################################################### +# PROD tests # +################################################################################################################################################################################### + +COMPILE | SUITES=FV3_GFS_2017 | | fv3 | + +RUN | fv3_ccpp_control | | fv3 | +RUN | fv3_ccpp_decomp | - jet.intel | | +RUN | fv3_ccpp_2threads | | | +RUN | fv3_ccpp_restart | | | fv3_ccpp_control +RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control +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 | gaea.intel | fv3 | -RUN | fv3_ccpp_iau | standard | jet.intel | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | hera.intel | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | gaea.intel | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | jet.intel | fv3 | -RUN | fv3_ccpp_lheatstrg | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control +RUN | fv3_ccpp_lheatstrg | | fv3 | # WW3 not working on Cheyenne in the past, need to check if it works now -COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | hera.intel | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfdlmprad | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_atmwav | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfdlmprad_atmwav | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_atmwav | standard | orion.intel | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | hera.intel | fv3 | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | orion.intel | fv3 | -#RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | wcoss_dell_p3 | fv3 | - -COMPILE | CCPP=Y SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | standard | | fv3 | -RUN | fv3_ccpp_multigases | standard | | fv3 | - -COMPILE | CCPP=Y 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 | CCPP=Y 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 | -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 | CCPP=Y 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 | CCPP=Y 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 | CCPP=Y 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 | wcoss_cray | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | hera.intel | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | gaea.intel | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | jet.intel | fv3 | -RUN | fv3_ccpp_satmedmfq | standard | cheyenne.intel | fv3 | - -COMPILE | CCPP=Y 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 | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | cheyenne.intel | 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 | -RUN | fv3_ccpp_thompson | standard | | fv3 | -RUN | fv3_ccpp_thompson_no_aero | 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_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_v16_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 | - 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 | wcoss_cray | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | hera.intel | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | orion.intel | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_rrfs_v1beta | standard | gaea.intel | fv3 | - -COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | hera.intel | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | orion.intel | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2 | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2 | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2 | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP | standard | cheyenne.intel | fv3 | - -COMPILE | CCPP=Y SUITES=FV3_GFS_v16_csawmg | standard | | 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 | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfsv16_csawmg | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfsv16_csawmg | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmg | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | standard | wcoss_cray | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | standard | orion.intel | fv3 | - -COMPILE | CCPP=Y 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 | CCPP=Y 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 | - -####################################################################################################################################################################################### -# CCPP DEBUG tests # -####################################################################################################################################################################################### +RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | +# fv3_ccpp_gfs_v15p2 and fv3_ccpp_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 +RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16 | | fv3 | +RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 +RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | 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 | - cheyenne.intel | fv3 | +RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | +RUN | fv3_ccpp_gocart_clm | | fv3 | +RUN | fv3_ccpp_gfs_v16_flake | | fv3 | + +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 | | 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 | +RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 | +RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | fv3 | + +################################################################################################################################################################################### +# DEBUG tests # +################################################################################################################################################################################### # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -COMPILE | CCPP=Y DEBUG=Y | standard | hera.intel | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16beta_RRTMGP DEBUG=Y | standard | orion.intel | fv3 | -COMPILE | CCPP=Y DEBUG=Y | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | standard | cheeyenne.intel| fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | orion.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta_RRTMGP_debug | standard | cheyenne.intel | fv3 | - -COMPILE | CCPP=Y 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 | CCPP=Y 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 | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | cheyenne.intel | fv3 | -RUN | cpld_control | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_control | standard | cheyenne.intel | fv3 | -#RUN | cpld_control_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_restart | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_12h -RUN | cpld_2threads | standard | hera.intel orion.intel wcoss_dell_p3 | | -#RUN | cpld_2threads | standard | cheyenne.intel | | -RUN | cpld_decomp | standard | hera.intel orion.intel wcoss_dell_p3 | | -#RUN | cpld_decomp | standard | cheyenne.intel | | -RUN | cpld_satmedmf | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_satmedmf | standard | cheyenne.intel | fv3 | -RUN | cpld_ca | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_ca | standard | cheyenne.intel | fv3 | - -# restart test at c96mx025 -RUN | cpld_control_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_control_mx025 | standard | cheyenne.intel | fv3 | -RUN | cpld_control_mx025_12h | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_control_mx025_12h | standard | cheyenne.intel | fv3 | -RUN | cpld_restart_mx025 | standard | hera.intel orion.intel wcoss_dell_p3 | | cpld_control_mx025_12h -#RUN | cpld_restart_mx025 | standard | cheyenne.intel | | cpld_control_mx025_12h - -RUN | cpld_control_c192 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_control_c192 | standard | cheyenne.intel | fv3 | -RUN | cpld_control_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_control_c384 | standard | cheyenne.intel | fv3 | -RUN | cpld_controlfrac_c384 | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_controlfrac_c384 | standard | cheyenne.intel | fv3 | -RUN | cpld_bmark | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_bmark | standard | cheyenne.intel | fv3 | - -COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | standard | cheyenne.intel | fv3 | -RUN | cpld_bmark_wave | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_bmark_wave | standard | cheyenne.intel | fv3 | - -COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | cheyenne.intel | fv3 | -RUN | cpld_debug | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | -#RUN | cpld_debug | standard | cheyenne.intel | fv3 | - -####################################################################################################################################################################################### -# Data Atmosphere tests -####################################################################################################################################################################################### - -COMPILE | DATM=Y S2S=Y | standard | hera.intel orion.intel | fv3 | -#COMPILE | DATM=Y S2S=Y | standard | cheyenne.intel | fv3 | -RUN | datm_control_cfsr | standard | hera.intel orion.intel | fv3 | -#RUN | datm_control_cfsr | standard | cheyenne.intel | fv3 | -RUN | datm_control_gefs | standard | hera.intel orion.intel | fv3 | -#RUN | datm_control_gefs | standard | cheyenne.intel | fv3 | -RUN | datm_mx025_cfsr | standard | hera.intel orion.intel | fv3 | -#RUN | datm_mx025_cfsr | standard | cheyenne.intel | fv3 | -RUN | datm_mx025_gefs | standard | hera.intel orion.intel | fv3 | -#RUN | datm_mx025_gefs | standard | cheyenne.intel | fv3 | +# Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 +COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +COMPILE | DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | +RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16_debug | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | + +COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_regional_control_debug | | fv3 | +RUN | fv3_ccpp_control_debug | | fv3 | +RUN | fv3_ccpp_stretched_nest_debug | | 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,FV3_GFS_v16b_ugwpv1 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 | +RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 | + +################################################################################################################################################################################### +# CPLD tests # +################################################################################################################################################################################### + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | +RUN | cpld_control | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control +RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restartfrac | - wcoss_cray jet.intel | | cpld_controlfrac + +RUN | cpld_2threads | - wcoss_cray jet.intel | | +RUN | cpld_decomp | - wcoss_cray jet.intel | | +RUN | cpld_satmedmf | - wcoss_cray jet.intel | fv3 | +RUN | cpld_ca | - wcoss_cray jet.intel | fv3 | + +#12h/36h/48h restart tests +RUN | cpld_control_c192 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_c192 | - wcoss_cray jet.intel | | cpld_control_c192 +RUN | cpld_controlfrac_c192 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restartfrac_c192 | - wcoss_cray jet.intel | | cpld_controlfrac_c192 + +RUN | cpld_control_c384 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_c384 | - wcoss_cray jet.intel | | cpld_control_c384 +RUN | cpld_controlfrac_c384 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restartfrac_c384 | - wcoss_cray jet.intel | | cpld_controlfrac_c384 + +RUN | cpld_bmark | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_bmark | - wcoss_cray jet.intel | | cpld_bmark +RUN | cpld_bmarkfrac | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac | - wcoss_cray jet.intel | | cpld_bmarkfrac + +#6h/6h/12h restart test +# test fails on gaea with esmfpio error +RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_control_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,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | +RUN | cpld_debug | - wcoss_cray jet.intel | fv3 | +RUN | cpld_debugfrac | - wcoss_cray jet.intel | fv3 | + +################################################################################################################################################################################### +# Data Atmosphere tests # +################################################################################################################################################################################### + +COMPILE | DATM=Y S2S=Y | - wcoss_cray jet.intel | fv3 | +RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 | +RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr +RUN | datm_control_gefs | - wcoss_cray jet.intel | fv3 | + +RUN | datm_bulk_cfsr | - wcoss_cray jet.intel | fv3 | +RUN | datm_bulk_gefs | - wcoss_cray jet.intel | fv3 | + +RUN | datm_mx025_cfsr | - wcoss_cray jet.intel | fv3 | +RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 | + +COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 | +RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index c4febceeac..d2a16ac9c0 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 @@ -31,13 +29,20 @@ usage() { rt_single() { local compile_line='' local run_line='' - while read -r line; do + while read -r line || [ "$line" ]; do line="${line#"${line%%[![:space:]]*}"}" [[ ${#line} == 0 ]] && continue [[ $line == \#* ]] && continue - if [[ $line =~ COMPILE && $line =~ ${MACHINE_ID} ]]; then - compile_line=$line + if [[ $line == COMPILE* ]] ; then + MACHINES=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') + if [[ ${MACHINES} == '' ]]; then + compile_line=$line + elif [[ ${MACHINES} == -* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] || compile_line=$line + elif [[ ${MACHINES} == +* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] && compile_line=$line + fi fi if [[ $line =~ RUN ]]; then @@ -173,13 +178,38 @@ elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then cp fv3_conf/fv3_bsub.IN_wcoss_dell_p3 fv3_conf/fv3_bsub.IN cp fv3_conf/compile_bsub.IN_wcoss_dell_p3 fv3_conf/compile_bsub.IN -elif [[ $MACHINE_ID = gaea.* ]]; then +elif [[ $MACHINE_ID = wcoss2 ]]; then + + source /apps/prod/lmodules/startLmod - module load cray-python/3.7.3.2 + #module use /usrx/local/dev/emc_rocoto/modulefiles + #module load ruby/2.5.1 rocoto/1.3.0rc2 + #ROCOTORUN=$(which rocotorun) + #ROCOTOSTAT=$(which rocotostat) + #ROCOTOCOMPLETE=$(which rocotocomplete) + #ROCOTO_SCHEDULER=lsf - export PATH=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/bin:$PATH - export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/lib/python3.7/site-packages - ECFLOW_START=/lustre/f2/pdata/esrl/gsd/contrib/ecFlow-5.3.1/bin/ecflow_start.sh + #module load ips/18.0.1.163 + #module load ecflow/4.7.1 + #ECFLOW_START=${ECF_ROOT}/intel/bin/ecflow_start.sh + #ECF_PORT=$(grep $USER /usrx/local/sys/ecflow/assigned_ports.txt | awk '{print $2}') + + DISKNM=/lfs/h1/emc/ptmp/Dusan.Jovic/RT + QUEUE=workq + COMPILE_QUEUE=workq + PARTITION= + ACCNR=GFS-DEV + STMP=/lfs/h1/emc/stmp + PTMP=/lfs/h1/emc/ptmp + SCHEDULER=pbs + cp fv3_conf/fv3_qsub.IN_wcoss2 fv3_conf/fv3_qsub.IN + cp fv3_conf/compile_qsub.IN_wcoss2 fv3_conf/compile_qsub.IN + +elif [[ $MACHINE_ID = gaea.* ]]; then + + export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages + ECFLOW_START=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) DISKNM=/lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT @@ -212,7 +242,7 @@ elif [[ $MACHINE_ID = hera.* ]]; then QUEUE=batch COMPILE_QUEUE=batch -# ACCNR=fv3-cpu + #ACCNR=fv3-cpu PARTITION= dprefix=/scratch1/NCEPDEV DISKNM=$dprefix/nems/emc.nemspara/RT @@ -257,9 +287,9 @@ elif [[ $MACHINE_ID = jet.* ]]; then ROCOTOCOMPLETE=$(which rocotocomplete) ROCOTO_SCHEDULER=slurm - export PATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/bin:$PATH - export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/lib/python2.7/site-packages - ECFLOW_START=/lfs4/HFIP/hfv3gfs/software/ecFlow-5.3.1/bin/ecflow_start.sh + export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages + ECFLOW_START=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=batch @@ -277,10 +307,9 @@ elif [[ $MACHINE_ID = jet.* ]]; then elif [[ $MACHINE_ID = cheyenne.* ]]; then - module load python/2.7.16 - export PATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/bin:$PATH - export PYTHONPATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/lib/python2.7/site-packages - ECFLOW_START=/glade/p/ral/jntp/tools/ecFlow-5.3.1/bin/ecflow_start.sh + export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages + ECFLOW_START=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=regular @@ -317,7 +346,7 @@ fi mkdir -p ${STMP}/${USER} # Different own baseline directories for different compilers on Theia/Cheyenne -NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST_GSL_DEVELOP +NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]]; then NEW_BASELINE=${NEW_BASELINE}_${RT_COMPILER^^} fi @@ -335,22 +364,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 @@ -359,7 +379,6 @@ while getopts ":cfsl:mn:kreh" opt; do n) SINGLE_NAME=$OPTARG TESTS_FILE='rt.conf.single' - SET_ID=' ' rm -f $TESTS_FILE ;; k) @@ -396,12 +415,13 @@ 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-20201204/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210217/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20201204} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210217} fi -INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20201201/} +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210212} +INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20201220 shift $((OPTIND-1)) [[ $# -gt 1 ]] && usage @@ -451,6 +471,10 @@ if [[ $ROCOTO == true ]]; then QUEUE=dev COMPILE_QUEUE=dev_transfer ROCOTO_SCHEDULER=lsf + elif [[ $MACHINE_ID = wcoss2 ]]; then + QUEUE=workq + COMPILE_QUEUE=workq + ROCOTO_SCHEDULER=pbs elif [[ $MACHINE_ID = hera.* ]]; then QUEUE=batch COMPILE_QUEUE=batch @@ -476,6 +500,7 @@ if [[ $ROCOTO == true ]]; then + ]> @@ -488,6 +513,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} @@ -502,8 +536,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 @@ -512,6 +546,8 @@ EOF QUEUE=dev elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then QUEUE=dev + elif [[ $MACHINE_ID = wcoss2 ]]; then + QUEUE=workq elif [[ $MACHINE_ID = hera.* ]]; then QUEUE=batch elif [[ $MACHINE_ID = orion.* ]]; then @@ -538,7 +574,7 @@ in_metatask=false [[ -f $TESTS_FILE ]] || die "$TESTS_FILE does not exist" -while read -r line; do +while read -r line || [ "$line" ]; do line="${line#"${line%%[![:space:]]*}"}" [[ ${#line} == 0 ]] && continue @@ -546,70 +582,86 @@ while read -r 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) - CB=$( echo $line | cut -d'|' -f5) + MAKE_OPT=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') + MACHINES=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') + CB=$( echo $line | cut -d'|' -f4) - [[ $SET_ID != ' ' && $SET != *${SET_ID}* ]] && continue - [[ $MACHINES != ' ' && $MACHINES != *${MACHINE_ID}* ]] && continue - [[ $CREATE_BASELINE == true && $CB != *fv3* ]] && continue + [[ $CREATE_BASELINE == true && $CB != *fv3* ]] && continue - (( COMPILE_NR += 1 )) + if [[ ${MACHINES} != '' ]]; then + if [[ ${MACHINES} == -* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] && continue + elif [[ ${MACHINES} == +* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] || continue + else + echo "MACHINES=|${MACHINES}|" + die "MACHINES spec must be either an empty string or start with either '+' or '-'" + fi + fi - cat << EOF > ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env - export MACHINE_ID=${MACHINE_ID} - export RT_COMPILER=${RT_COMPILER} - export PATHRT=${PATHRT} - export PATHTR=${PATHTR} - export SCHEDULER=${SCHEDULER} - export ACCNR=${ACCNR} - export QUEUE=${COMPILE_QUEUE} - export PARTITION=${PARTITION} - export ROCOTO=${ROCOTO} - export ECFLOW=${ECFLOW} - export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG} - export LOG_DIR=${LOG_DIR} + (( COMPILE_NR += 1 )) + + cat << EOF > ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env + export MACHINE_ID=${MACHINE_ID} + export RT_COMPILER=${RT_COMPILER} + export PATHRT=${PATHRT} + export PATHTR=${PATHTR} + export SCHEDULER=${SCHEDULER} + export ACCNR=${ACCNR} + export QUEUE=${COMPILE_QUEUE} + export PARTITION=${PARTITION} + export ROCOTO=${ROCOTO} + export ECFLOW=${ECFLOW} + export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG} + export LOG_DIR=${LOG_DIR} EOF - if [[ $ROCOTO == true ]]; then - rocoto_create_compile_task - elif [[ $ECFLOW == true ]]; then - ecflow_create_compile_task - else - ./compile.sh $MACHINE_ID "${MAKE_OPT}" $COMPILE_NR > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1 - fi + if [[ $ROCOTO == true ]]; then + rocoto_create_compile_task + elif [[ $ECFLOW == true ]]; then + ecflow_create_compile_task + else + ./compile.sh $MACHINE_ID "${MAKE_OPT}" $COMPILE_NR > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1 + fi - # Set RT_SUFFIX (regression test run directories and log files) and BL_SUFFIX - # (regression test baseline directories) for REPRO (IPD, CCPP) or PROD (CCPP) runs - if [[ ${MAKE_OPT^^} =~ "REPRO=Y" ]]; then - RT_SUFFIX="_repro" - BL_SUFFIX="_repro" - elif [[ ${MAKE_OPT^^} =~ "CCPP=Y" ]]; then - RT_SUFFIX="_prod" - BL_SUFFIX="_ccpp" - fi + # Set RT_SUFFIX (regression test run directories and log files) and BL_SUFFIX + # (regression test baseline directories) for REPRO or PROD runs + if [[ ${MAKE_OPT^^} =~ "REPRO=Y" ]]; then + RT_SUFFIX="_repro" + BL_SUFFIX="_repro" + else + RT_SUFFIX="_prod" + BL_SUFFIX="_ccpp" + fi - if [[ ${MAKE_OPT^^} =~ "WW3=Y" ]]; then - COMPILE_PREV_WW3_NR=${COMPILE_NR} - fi + if [[ ${MAKE_OPT^^} =~ "WW3=Y" ]]; then + COMPILE_PREV_WW3_NR=${COMPILE_NR} + fi continue 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) - 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 - [[ $MACHINES != ' ' && $MACHINES != *${MACHINE_ID}* ]] && continue [[ $CREATE_BASELINE == true && $CB != *fv3* ]] && continue + if [[ ${MACHINES} != '' ]]; then + if [[ ${MACHINES} == -* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] && continue + elif [[ ${MACHINES} == +* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] || continue + else + echo "MACHINES=|${MACHINES}|" + die "MACHINES spec must be either an empty string or start with either '+' or '-'" + fi + fi + # 35 day tests [[ $TEST_35D == true ]] && rt_35d @@ -647,6 +699,7 @@ EOF export RT_COMPILER=${RT_COMPILER} export RTPWD=${RTPWD} export INPUTDATA_ROOT=${INPUTDATA_ROOT} + export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export NEW_BASELINE=${NEW_BASELINE} @@ -722,6 +775,7 @@ else [[ ${KEEP_RUNDIR} == false ]] && rm -rf ${RUNDIR_ROOT} [[ ${ROCOTO} == true ]] && rm -f ${ROCOTO_XML} ${ROCOTO_DB} *_lock.db [[ ${TEST_35D} == true ]] && rm -f tests/cpld_bmark*_20* + [[ ${SINGLE_NAME} != '' ]] && rm -f rt.conf.single fi date >> ${REGRESSIONTEST_LOG} diff --git a/tests/rt_35d.conf b/tests/rt_35d.conf index 2e9ab03950..9397d51c46 100644 --- a/tests/rt_35d.conf +++ b/tests/rt_35d.conf @@ -1,19 +1,49 @@ -COMPILE | CCPP=Y 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 | CCPP=Y 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 + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | + hera.intel orion.intel | fv3 | | +RUN | cpld_bmarkfrac_35d | | fv3 | | 2012010100 +RUN | cpld_bmarkfrac_35d | | fv3 | | 2012040100 +RUN | cpld_bmarkfrac_35d | | fv3 | | 2012070100 +RUN | cpld_bmarkfrac_35d | | fv3 | | 2012100100 +RUN | cpld_bmarkfrac_35d | | fv3 | | 2013010100 +RUN | cpld_bmarkfrac_35d | | fv3 | | 2013040100 +RUN | cpld_bmarkfrac_35d | | fv3 | | 2013070100 +RUN | cpld_bmarkfrac_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_bmarkfrac_wave_35d | | fv3 | | 2012010100 +RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2012040100 +RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2012070100 +RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2012100100 +RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2013010100 +RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2013040100 +RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2013070100 +RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2013100100 + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | + hera.intel orion.intel | fv3 | | +RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012010100 +RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012040100 +RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012070100 +RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012100100 +RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2013010100 +RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2013040100 +RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2013070100 +RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2013100100 diff --git a/tests/rt_ccpp_dev.conf b/tests/rt_ccpp_dev.conf index 109c9b0e44..562022cb6f 100644 --- a/tests/rt_ccpp_dev.conf +++ b/tests/rt_ccpp_dev.conf @@ -1,59 +1,59 @@ -################################################################################################################################################################################# -# Note: this file has been used for testing additional physics on Hera and Cheyenne with both Intel and GNU # -# # -# CCPP REPRO tests # -################################################################################################################################################################################# - -COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah | standard | | 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_lndp | standard | | fv3 | -RUN | fv3_ccpp_gsd_noah | standard | | fv3 | -RUN | fv3_ccpp_gsd_noah_lndp | standard | | fv3 | - -COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | standard | | fv3 | - -RUN | fv3_ccpp_gsd_mynnsfc | standard | | fv3 | -RUN | fv3_ccpp_gsd_noah_mynnsfc | standard | | fv3 | - -COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_v15_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | standard | | 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 | - -COMPILE | CCPP=Y 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 | +############################################################################################################################################################ +# Note: this file has been used for testing additional physics on Hera and Cheyenne with both Intel and GNU # +# # +# CCPP REPRO tests # +############################################################################################################################################################ + +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 | | 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_lndp | | fv3 | +RUN | fv3_ccpp_gsd_noah | | fv3 | +RUN | fv3_ccpp_gsd_noah_lndp | | fv3 | + +COMPILE | REPRO=Y SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | | fv3 | + +RUN | fv3_ccpp_gsd_mynnsfc | | fv3 | +RUN | fv3_ccpp_gsd_noah_mynnsfc | | fv3 | + +COMPILE | REPRO=Y SUITES=FV3_GFS_v16_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | | 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 | | 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 | CCPP=Y 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 | CCPP=Y 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_v16_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 CCPP=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 0787803fc2..e6821e3cb6 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -1,67 +1,72 @@ -####################################################################################################################################################################################### -# CCPP PROD tests # -####################################################################################################################################################################################### +################################################################################################################################################################## +# CCPP PROD tests # +################################################################################################################################################################## -COMPILE | CCPP=Y 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 | CCPP=Y 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_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | -RUN | fv3_ccpp_gfs_v15p2 | standard | | fv3 | -RUN | fv3_ccpp_gfs_v16beta | 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_v16 | | fv3 | +RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 +RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | +RUN | fv3_ccpp_gfs_v16_flake | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | -COMPILE | CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y | standard | | fv3 | +COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v16_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 | CCPP=Y 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_GFS_v16b_ugwpv1 | | 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 | +RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 | +RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | 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 | CCPP=Y 32BIT=Y DEBUG=Y | standard | | fv3 | -RUN | fv3_ccpp_control_debug | standard | | fv3 | - -COMPILE | CCPP=Y 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 | CCPP=Y SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | standard | | fv3 | -RUN | fv3_ccpp_multigases | standard | | fv3 | - -COMPILE | CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | standard | | 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 | - -COMPILE | CCPP=Y 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 | - -####################################################################################################################################################################################### -# S2S tests -####################################################################################################################################################################################### - -COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.gnu | fv3 | - -####################################################################################################################################################################################### -# Data Atmosphere tests -####################################################################################################################################################################################### - -COMPILE | DATM=Y S2S=Y | standard | hera.gnu | fv3 | +COMPILE | 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_control_debug | | fv3 | + +COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16_debug | | fv3 | +RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | + +COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | +RUN | fv3_ccpp_multigases | | fv3 | + +COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | +RUN | fv3_ccpp_regional_control_debug | | 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,FV3_GFS_v16b_ugwpv1 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 | +RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 | + +################################################################################################################################################################## +# S2S tests # +################################################################################################################################################################## + +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | | fv3 | + +################################################################################################################################################################## +# Data Atmosphere tests # +################################################################################################################################################################## + +COMPILE | DATM=Y S2S=Y | | fv3 | diff --git a/tests/rt_stampede.conf b/tests/rt_stampede.conf deleted file mode 100644 index f2859ff45b..0000000000 --- a/tests/rt_stampede.conf +++ /dev/null @@ -1,13 +0,0 @@ -####################################################################################################################################################################################### -# CCPP PROD tests # -####################################################################################################################################################################################### - -COMPILE | CCPP=Y SUITES=FV3_GFS_2017 | standard | | fv3 | - -RUN | fv3_ccpp_control | standard | | fv3 | - -COMPILE | CCPP=Y 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 | diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index acb1b8745b..52f9dd8f6a 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -154,6 +154,9 @@ submit_and_wait() { echo "Slurm unknown status ${status}. Check sacct ..." sacct -n -j ${slurm_id} --format=JobID,state%20,Jobname%20 status_label=$( sacct -n -j ${slurm_id} --format=JobID,state%20,Jobname%20 | grep "^${slurm_id}" | grep ${JBNME} | awk '{print $2}' ) + if [[ $status_label = 'FAILED' ]]; then + test_status='FAIL' + fi fi elif [[ $SCHEDULER = 'lsf' ]]; then @@ -267,13 +270,23 @@ check_results() { else - d=$( cmp ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i | wc -l ) + cmp ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i >/dev/null 2>&1 && d=$? || d=$? + if [[ $d -eq 2 ]]; then + echo "....CMP ERROR" >> ${REGRESSIONTEST_LOG} + echo "....CMP ERROR" + exit 1 + fi - if [[ $d -ne 0 ]] ; then + if [[ $d -eq 1 && ${i##*.} == 'nc' ]] ; then if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss_dell_p3 || ${MACHINE_ID} =~ wcoss_cray || ${MACHINE_ID} =~ cheyenne || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet ]]; then printf ".......ALT CHECK.." >> ${REGRESSIONTEST_LOG} printf ".......ALT CHECK.." - d=$( ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i 2>/dev/null | wc -l ) + ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i >/dev/null 2>&1 && d=$? || d=$? + if [[ $d -eq 1 ]]; then + echo "....ERROR" >> ${REGRESSIONTEST_LOG} + echo "....ERROR" + exit 1 + fi fi fi diff --git a/tests/tests/cpld_bmark b/tests/tests/cpld_bmark index 1f6586ef04..a3df8a215d 100644 --- a/tests/tests/cpld_bmark +++ b/tests/tests/cpld_bmark @@ -1,6 +1,7 @@ # # cpld_bmark test # + export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test" export CNTL_DIR="cpld_bmark" @@ -59,6 +60,9 @@ export LIST_FILES="phyf024.tile1.nc \ export_fv3 export_cpl +export RESTART_INTERVAL="12" +export RESTART_N=${RESTART_INTERVAL} + export SYEAR="2013" export SMONTH="04" export SDAY="01" @@ -89,6 +93,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} @@ -101,11 +108,9 @@ export CPL_FAST=${DT_ATMOS} export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -export FRAC_GRID_INPUT='.F.' - # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" @@ -121,6 +126,7 @@ export OZ_PHYS_NEW=".T." export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' export RUNID="cpcice" diff --git a/tests/tests/cpld_bmark_35d b/tests/tests/cpld_bmark_35d index 16f2b94a21..b389b653c9 100644 --- a/tests/tests/cpld_bmark_35d +++ b/tests/tests/cpld_bmark_35d @@ -42,6 +42,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} @@ -54,11 +57,9 @@ export CPL_FAST=${DT_ATMOS} export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -export FRAC_GRID_INPUT='.F.' - # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_bmark_wave b/tests/tests/cpld_bmark_wave index 8dd049fea8..4ff8cb3cff 100644 --- a/tests/tests/cpld_bmark_wave +++ b/tests/tests/cpld_bmark_wave @@ -95,6 +95,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} @@ -108,14 +111,12 @@ export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -export FRAC_GRID_INPUT='.F.' - export CPLWAV='.T.' export CPLWAV2ATM='.T.' # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_bmark_wave_35d b/tests/tests/cpld_bmark_wave_35d index 3179e6bef5..2fe7071e5f 100644 --- a/tests/tests/cpld_bmark_wave_35d +++ b/tests/tests/cpld_bmark_wave_35d @@ -56,6 +56,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} @@ -69,14 +72,12 @@ export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -export FRAC_GRID_INPUT='.F.' - export CPLWAV='.T.' export CPLWAV2ATM='.T.' # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_bmarkfrac b/tests/tests/cpld_bmarkfrac new file mode 100644 index 0000000000..7b842ad1e1 --- /dev/null +++ b/tests/tests/cpld_bmarkfrac @@ -0,0 +1,141 @@ +# +# cpld_bmarkfrac test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - frac grid" + +export CNTL_DIR="cpld_bmarkfrac" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-02-00000.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc" + +export_fv3 +export_cpl + +export RESTART_INTERVAL="12" +export RESTART_N=${RESTART_INTERVAL} + +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export TASKS=$TASKS_cpl_bmrk +export TPN=$TPN_cpl_bmrk +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export THRD=$THRD_cpl_bmrk +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk + +export med_petlist_bounds=$MPB_cpl_bmrk +export atm_petlist_bounds=$APB_cpl_bmrk +export ocn_petlist_bounds=$OPB_cpl_bmrk +export ice_petlist_bounds=$IPB_cpl_bmrk + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + +# set component and coupling timesteps +export DT_ATMOS='450' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' + +export RUNID="cpcice" + +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_control_mx025_12h b/tests/tests/cpld_bmarkfrac_v16 similarity index 64% rename from tests/tests/cpld_control_mx025_12h rename to tests/tests/cpld_bmarkfrac_v16 index 490b360f25..6fc6279a19 100644 --- a/tests/tests/cpld_control_mx025_12h +++ b/tests/tests/cpld_bmarkfrac_v16 @@ -1,9 +1,10 @@ # -# cpld_control 12h test +# cpld_bmarkfrac_v16 test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX025 12h" -export CNTL_DIR="cpld_control_mx025_12h" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - frac grid - v16" + +export CNTL_DIR="cpld_bmarkfrac_v16" export LIST_FILES="phyf012.tile1.nc \ phyf012.tile2.nc \ @@ -53,57 +54,95 @@ export LIST_FILES="phyf012.tile1.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2016-10-03-43200.nc \ - RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc" + RESTART/iced.2013-04-01-43200.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc" export_fv3 export_cpl -export DAYS="0.50" +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export DAYS="0.5" export FHMAX="12" -export RESTART_N=${FHMAX} +export RESTART_INTERVAL="6" +export RESTART_N=${RESTART_INTERVAL} -# replicate current tests; explicitly set values for c96/mx025 -export TASKS=$TASKS_cpl_c384 -export TPN=$TPN_cpl_c384 -export INPES=$INPES_cpl_c384 -export JNPES=$JNPES_cpl_c384 -export THRD=$THRD_cpl_c384 +export TASKS=$TASKS_cpl_bmrk +export TPN=$TPN_cpl_bmrk +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export THRD=$THRD_cpl_bmrk +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk -export WRTTASK_PER_GROUP=$WPG_cpl_c384 -export med_petlist_bounds=$MPB_cpl_c384 -export atm_petlist_bounds=$APB_cpl_c384 -export ocn_petlist_bounds=$OPB_cpl_c384 -export ice_petlist_bounds=$IPB_cpl_c384 +export med_petlist_bounds=$MPB_cpl_bmrk +export atm_petlist_bounds=$APB_cpl_bmrk +export ocn_petlist_bounds=$OPB_cpl_bmrk +export ice_petlist_bounds=$IPB_cpl_bmrk # atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + export OCNRES='025' export ICERES='0.25' export NX_GLB=1440 export NY_GLB=1080 - export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps +export DT_ATMOS='300' +export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' export CPL_SLOW=${DT_THERM_MOM6} export CPL_FAST=${DT_ATMOS} -export FRAC_GRID_INPUT='.F.' - # nems.configure export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +export NPZ=127 +export NPZP=128 +#export DZ_MIN=6 + # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' + +export RUNID="cpcice" + +export INPUT_NML=input.benchmark_v16.nml.IN + +export FIELD_TABLE="field_table_gfsv16" +export DIAG_TABLE="diag_table_gfsv16" +export SUITE_NAME="FV3_GFS_v16_coupled" -export FV3_RUN=cpld_control_run.IN +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave b/tests/tests/cpld_bmarkfrac_wave new file mode 100644 index 0000000000..667579157f --- /dev/null +++ b/tests/tests/cpld_bmarkfrac_wave @@ -0,0 +1,148 @@ +# +# cpld_bmarkfrac_wave test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384 MX025 - Benchmark test with waves - frac grid" + +export CNTL_DIR="cpld_bmarkfrac_wave" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + 20130402.000000.out_grd.gwes_30m \ + 20130402.000000.out_pnt.points \ + 20130402.000000.restart.gwes_30m \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-02-00000.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc" + +export_fv3 +export_cpl + +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export WLCLK=60 + +export TASKS=$TASKS_cpl_wwav +export TPN=$TPN_cpl_wwav +export INPES=$INPES_cpl_wwav +export JNPES=$JNPES_cpl_wwav +export THRD=$THRD_cpl_wwav +export WRTTASK_PER_GROUP=$WPG_cpl_wwav + +export med_petlist_bounds=$MPB_cpl_wwav +export atm_petlist_bounds=$APB_cpl_wwav +export ocn_petlist_bounds=$OPB_cpl_wwav +export ice_petlist_bounds=$IPB_cpl_wwav +export wav_petlist_bounds=$WPB_cpl_wwav + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + +# set component and coupling timesteps +export DT_ATMOS='450' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +export CPLWAV='.T.' +export CPLWAV2ATM='.T.' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_USE_WAVES='True' +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' + +export RUNID="cpcice" + +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_35d b/tests/tests/cpld_bmarkfrac_wave_35d new file mode 100644 index 0000000000..15bfdb299e --- /dev/null +++ b/tests/tests/cpld_bmarkfrac_wave_35d @@ -0,0 +1,110 @@ +# +# cpld_bmarkfrac_wave 35D +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384 MX025 - Benchmark 35d test with waves - frac grid" + +export_35d_run +export_fv3 +export_cpl + +export SYEAR +export SMONTH +export SDAY="01" +export SHOUR="00" + +export DAYS="35" +export FHMAX="840" +export RESTART_N=${FHMAX} +export WLCLK=480 + +#export TASKS=$TASKS_cpl_wwav +#export TPN=$TPN_cpl_wwav +#export INPES=$INPES_cpl_wwav +#export JNPES=$JNPES_cpl_wwav +#export THRD=$THRD_cpl_wwav +#export WRTTASK_PER_GROUP=$WPG_cpl_wwav + +#export med_petlist_bounds=$MPB_cpl_wwav +#export atm_petlist_bounds=$APB_cpl_wwav +#export ocn_petlist_bounds=$OPB_cpl_wwav +#export ice_petlist_bounds=$IPB_cpl_wwav +#export wav_petlist_bounds=$WPB_cpl_wwav + +export TASKS=866 +export TPN=40 +export INPES=6 +export JNPES=12 +export THRD=1 +export WRTTASK_PER_GROUP=24 + +export med_petlist_bounds="0 431" +export atm_petlist_bounds="0 455" +export ocn_petlist_bounds="456 695" +export ice_petlist_bounds="696 743" +export wav_petlist_bounds="744 865" + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + +# set component and coupling timesteps +export DT_ATMOS='450' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +export CPLWAV='.T.' +export CPLWAV2ATM='.T.' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_USE_WAVES='True' +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' + +export RUNID="cpcice" + +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export RT35D='.T.' +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_v16 b/tests/tests/cpld_bmarkfrac_wave_v16 new file mode 100644 index 0000000000..a9eca4e243 --- /dev/null +++ b/tests/tests/cpld_bmarkfrac_wave_v16 @@ -0,0 +1,157 @@ +# +# cpld_bmarkfrac_wave_v16 test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark test with waves-frac grid - v16" + +export CNTL_DIR="cpld_bmarkfrac_wave_v16" + +export LIST_FILES="phyf012.tile1.nc \ + phyf012.tile2.nc \ + phyf012.tile3.nc \ + phyf012.tile4.nc \ + phyf012.tile5.nc \ + phyf012.tile6.nc \ + dynf012.tile1.nc \ + dynf012.tile2.nc \ + dynf012.tile3.nc \ + dynf012.tile4.nc \ + dynf012.tile5.nc \ + dynf012.tile6.nc \ + 20130401.120000.out_grd.gwes_30m \ + 20130401.120000.out_pnt.points \ + 20130401.120000.restart.gwes_30m \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-01-43200.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc" + +export_fv3 +export_cpl + +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export DAYS="0.5" +export FHMAX="12" +export RESTART_INTERVAL=${FHMAX} +export RESTART_N=${RESTART_INTERVAL} + +#export WLCLK=60 + +export TASKS=$TASKS_cpl_wwav +export TPN=$TPN_cpl_wwav +export INPES=$INPES_cpl_wwav +export JNPES=$JNPES_cpl_wwav +export THRD=$THRD_cpl_wwav +export WRTTASK_PER_GROUP=$WPG_cpl_wwav + +export med_petlist_bounds=$MPB_cpl_wwav +export atm_petlist_bounds=$APB_cpl_wwav +export ocn_petlist_bounds=$OPB_cpl_wwav +export ice_petlist_bounds=$IPB_cpl_wwav +export wav_petlist_bounds=$WPB_cpl_wwav + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + +# set component and coupling timesteps +export DT_ATMOS='300' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +export NPZ=127 +export NPZP=128 +#export DZ_MIN=6 + +export CPLWAV='.T.' +export CPLWAV2ATM='.T.' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_USE_WAVES='True' +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' + +export RUNID="cpcice" + +export INPUT_NML=input.benchmark_v16.nml.IN + +export FIELD_TABLE="field_table_gfsv16" +export DIAG_TABLE="diag_table_gfsv16" +export SUITE_NAME="FV3_GFS_v16_coupled" +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_v16_35d b/tests/tests/cpld_bmarkfrac_wave_v16_35d new file mode 100644 index 0000000000..b517120052 --- /dev/null +++ b/tests/tests/cpld_bmarkfrac_wave_v16_35d @@ -0,0 +1,125 @@ +# +# cpld_bmark_v16 35D +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark 35d test with v16" + +export_35d_run +export_fv3 +export_cpl + +export SYEAR +export SMONTH +export SDAY="01" +export SHOUR="00" + +export DAYS="35" +export FHMAX="840" +export RESTART_N=${FHMAX} +export WLCLK=480 + +#export TASKS=$TASKS_cpl_wwav +#export TPN=$TPN_cpl_wwav +#export INPES=$INPES_cpl_wwav +#export JNPES=$JNPES_cpl_wwav +#export THRD=$THRD_cpl_wwav +#export WRTTASK_PER_GROUP=$WPG_cpl_wwav + +#export med_petlist_bounds=$MPB_cpl_wwav +#export atm_petlist_bounds=$APB_cpl_wwav +#export ocn_petlist_bounds=$OPB_cpl_wwav +#export ice_petlist_bounds=$IPB_cpl_wwav +#export wav_petlist_bounds=$WPB_cpl_wwav + +export TPN=40 +export THRD=1 +export WRTTASK_PER_GROUP=24 + +# 6x12 setting +#export TASKS=866 +#export INPES=6 +#export JNPES=12 +#export med_petlist_bounds="0 431" +#export atm_petlist_bounds="0 455" +#export ocn_petlist_bounds="456 695" +#export ice_petlist_bounds="696 743" +#export wav_petlist_bounds="744 865" + +# 8x12 setting +export TASKS=1010 +export INPES=8 +export JNPES=12 +export med_petlist_bounds="0 575" +export atm_petlist_bounds="0 599" +export ocn_petlist_bounds="600 839" +export ice_petlist_bounds="840 887" +export wav_petlist_bounds="888 1009" + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + +# set component and coupling timesteps +export DT_ATMOS='300' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +export NPZ=127 +export NPZP=128 +#export DZ_MIN=6 + +export CPLWAV='.T.' +export CPLWAV2ATM='.T.' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_USE_WAVES='True' +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' + +export RUNID="cpcice" + +export INPUT_NML=input.benchmark_v16.nml.IN + +export FIELD_TABLE="field_table_gfsv16" +export DIAG_TABLE="diag_table_gfsv16" +export SUITE_NAME="FV3_GFS_v16_coupled" +export RT35D='.T.' +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_control b/tests/tests/cpld_control index 529b6e8ffc..08ea8070ef 100644 --- a/tests/tests/cpld_control +++ b/tests/tests/cpld_control @@ -57,4 +57,7 @@ export LIST_FILES="phyf024.tile1.nc \ export_fv3 export_cpl +export RESTART_INTERVAL="12" +export RESTART_N=${RESTART_INTERVAL} + export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_c192 b/tests/tests/cpld_control_c192 index 95751a6191..57fd01e586 100644 --- a/tests/tests/cpld_control_c192 +++ b/tests/tests/cpld_control_c192 @@ -5,18 +5,18 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050" export CNTL_DIR="cpld_control_c192" -export LIST_FILES="phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ +export LIST_FILES="phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -50,12 +50,17 @@ export LIST_FILES="phyf024.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-04-00000.nc \ - RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" + RESTART/iced.2016-10-05-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc" export_fv3 export_cpl +export DAYS="2" +export FHMAX="48" +export RESTART_INTERVAL="12" +export RESTART_N=${RESTART_INTERVAL} + export TASKS=$TASKS_cpl_c192 export TPN=$TPN_cpl_c192 export INPES=$INPES_cpl_c192 @@ -82,6 +87,9 @@ export NX_GLB=720 export NY_GLB=576 export NPROC_ICE='24' +# resolution dependent setting +export CDMBWD=${CDMBWD_c192} + # set component and coupling timesteps export DT_ATMOS='900' export DT_CICE=${DT_ATMOS} @@ -96,7 +104,7 @@ export coupling_interval_fast_sec=${CPL_FAST} # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" diff --git a/tests/tests/cpld_control_c384 b/tests/tests/cpld_control_c384 index 94e2333f32..d704cfc886 100644 --- a/tests/tests/cpld_control_c384 +++ b/tests/tests/cpld_control_c384 @@ -59,7 +59,8 @@ export LIST_FILES="phyf024.tile1.nc \ export_fv3 export_cpl -export WLCLK=60 +export RESTART_INTERVAL="12" +export RESTART_N=${RESTART_INTERVAL} export TASKS=$TASKS_cpl_c384 export TPN=$TPN_cpl_c384 @@ -86,6 +87,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} @@ -98,11 +102,9 @@ export CPL_FAST=${DT_ATMOS} export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} -export FRAC_GRID_INPUT='.F.' - # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" @@ -115,6 +117,5 @@ export FNSMCC="'global_soilmgldas.t766.1536.768.grb'," export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," export MOM6_RIVER_RUNOFF='True' -export MOM6_REPRO_LA='True' export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/fv3_decomp b/tests/tests/cpld_control_wave similarity index 63% rename from tests/tests/fv3_decomp rename to tests/tests/cpld_control_wave index fbcb05426f..6f1c9e43d7 100644 --- a/tests/tests/fv3_decomp +++ b/tests/tests/cpld_control_wave @@ -1,37 +1,17 @@ -############################################################################### # -# FV3 domain decomposition test with different PEs +# cpld_control_wave test # -############################################################################### -export TEST_DESCR="Compare FV3 decomp results with previous trunk version" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 with waves" -export CNTL_DIR=fv3_control +export CNTL_DIR="cpld_control_wave" -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ +export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ phyf024.tile3.nc \ phyf024.tile4.nc \ phyf024.tile5.nc \ phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ dynf024.tile1.nc \ dynf024.tile2.nc \ dynf024.tile3.nc \ @@ -69,11 +49,33 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ RESTART/sfc_data.tile3.nc \ RESTART/sfc_data.tile4.nc \ RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc \ + 20161004.000000.out_grd.glo_1deg \ + 20161004.000000.out_pnt.points \ + 20161004.000000.restart.glo_1deg" export_fv3 +export_cpl + +export TASKS=$TASKS_cpl_dflt_wwav +export TPN=$TPN_cpl_dflt_wwav +export INPES=$INPES_cpl_dflt_wwav +export JNPES=$JNPES_cpl_dflt_wwav +export THRD=$THRD_cpl_dflt_wwav +export WRTTASK_PER_GROUP=$WPG_cpl_dflt_wwav + +export med_petlist_bounds=$MPB_cpl_dflt_wwav +export atm_petlist_bounds=$APB_cpl_dflt_wwav +export ocn_petlist_bounds=$OPB_cpl_dflt_wwav +export ice_petlist_bounds=$IPB_cpl_dflt_wwav +export wav_petlist_bounds=$WPB_cpl_dflt_wwav -export INPES=6 -export JNPES=4 +# nems.configure +export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" +export CPLWAV='.T.' +export CPLWAV2ATM='.T.' +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_12h b/tests/tests/cpld_controlfrac similarity index 69% rename from tests/tests/cpld_control_12h rename to tests/tests/cpld_controlfrac index 4e367dbcfc..e1379fbd91 100644 --- a/tests/tests/cpld_control_12h +++ b/tests/tests/cpld_controlfrac @@ -1,23 +1,23 @@ # -# cpld_control 12h test -# NOTE: test is not currently used; restarts are tested at c96mx025 +# cpld_controlfrac test +# -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 12h" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - frac grid" -export CNTL_DIR="cpld_control_12h" +export CNTL_DIR="cpld_controlfrac" -export LIST_FILES="phyf012.tile1.nc \ - phyf012.tile2.nc \ - phyf012.tile3.nc \ - phyf012.tile4.nc \ - phyf012.tile5.nc \ - phyf012.tile6.nc \ - dynf012.tile1.nc \ - dynf012.tile2.nc \ - dynf012.tile3.nc \ - dynf012.tile4.nc \ - dynf012.tile5.nc \ - dynf012.tile6.nc \ +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -51,14 +51,16 @@ export LIST_FILES="phyf012.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ - RESTART/iced.2016-10-03-43200.nc \ - RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc" + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 export_cpl -export DAYS="0.50" -export FHMAX="12" -export RESTART_N=${FHMAX} +export RESTART_INTERVAL="12" +export RESTART_N=${RESTART_INTERVAL} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_controlfrac_c192 b/tests/tests/cpld_controlfrac_c192 new file mode 100644 index 0000000000..33e2d266bf --- /dev/null +++ b/tests/tests/cpld_controlfrac_c192 @@ -0,0 +1,124 @@ +# +# cpld_controlfrac_c192 test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - frac grid" + +export CNTL_DIR="cpld_controlfrac_c192" + +export LIST_FILES="phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/iced.2016-10-05-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc" + +export_fv3 +export_cpl + +export DAYS="2" +export FHMAX="48" +export RESTART_INTERVAL="12" +export RESTART_N=${RESTART_INTERVAL} + +export TASKS=$TASKS_cpl_c192 +export TPN=$TPN_cpl_c192 +export INPES=$INPES_cpl_c192 +export JNPES=$JNPES_cpl_c192 +export THRD=$THRD_cpl_c192 +export WRTTASK_PER_GROUP=$WPG_cpl_c192 +export WRITE_GROUP=1 + +export med_petlist_bounds=$MPB_cpl_c192 +export atm_petlist_bounds=$APB_cpl_c192 +export ocn_petlist_bounds=$OPB_cpl_c192 +export ice_petlist_bounds=$IPB_cpl_c192 + +# atm/ocn/ice resolution +export ATMRES='C192' +export NPX=193 +export NPY=193 +export IMO=768 +export JMO=384 + +export OCNRES='050' +export ICERES='0.50' +export NX_GLB=720 +export NY_GLB=576 +export NPROC_ICE='24' + +# resolution dependent setting +export CDMBWD=${CDMBWD_c192} + +# set component and coupling timesteps +export DT_ATMOS='900' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='1800' +export DT_THERM_MOM6='3600' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t382.768.384.rg.grb'," +export FNVETC="'global_vegtype.igbp.t382.768.384.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," +export FNSMCC="'global_soilmgldas.t382.768.384.grb'," +export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," + +export MOM6_RIVER_RUNOFF='True' + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_controlfrac_c384 b/tests/tests/cpld_controlfrac_c384 index 4df558d65c..3115858e67 100644 --- a/tests/tests/cpld_controlfrac_c384 +++ b/tests/tests/cpld_controlfrac_c384 @@ -1,7 +1,7 @@ # # cpld_controlfrac_c384 frac grid test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025, frac grid " +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - frac grid " export CNTL_DIR="cpld_controlfrac_c384" @@ -59,6 +59,9 @@ export LIST_FILES="phyf024.tile1.nc \ export_fv3 export_cpl +export RESTART_INTERVAL="12" +export RESTART_N=${RESTART_INTERVAL} + export TASKS=$TASKS_cpl_c384 export TPN=$TPN_cpl_c384 export INPES=$INPES_cpl_c384 @@ -84,6 +87,9 @@ export NX_GLB=1440 export NY_GLB=1080 export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps export DT_ATMOS='450' export DT_CICE=${DT_ATMOS} @@ -97,12 +103,11 @@ export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} export FRAC_GRID='.T.' -export FRAC_GRID_INPUT='.T.' -export CPLMODE="nems_frac" +export CPLMODE='nems_frac' # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" @@ -115,6 +120,5 @@ export FNSMCC="'global_soilmgldas.t766.1536.768.grb'," export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," export MOM6_RIVER_RUNOFF='True' -export MOM6_REPRO_LA='True' export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/fv3_csawmgshoc b/tests/tests/cpld_debugfrac similarity index 60% rename from tests/tests/fv3_csawmgshoc rename to tests/tests/cpld_debugfrac index 5ac1c10cca..2eccfb9629 100644 --- a/tests/tests/fv3_csawmgshoc +++ b/tests/tests/cpld_debugfrac @@ -1,23 +1,23 @@ -############################################################################### # -# FV3 CSAWMGSHOC test +# cpld_debugfrac test # -############################################################################### -export TEST_DESCR="Compare FV3 csawmgshoc results with previous trunk version" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - debug - frac grid" -export CNTL_DIR=fv3_csawmgshoc +export CNTL_DIR="cpld_debugfrac" -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ +export LIST_FILES="phyf006.tile1.nc \ + phyf006.tile2.nc \ + phyf006.tile3.nc \ + phyf006.tile4.nc \ + phyf006.tile5.nc \ + phyf006.tile6.nc \ + dynf006.tile1.nc \ + dynf006.tile2.nc \ + dynf006.tile3.nc \ + dynf006.tile4.nc \ + dynf006.tile5.nc \ + dynf006.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -49,18 +49,23 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ RESTART/sfc_data.tile3.nc \ RESTART/sfc_data.tile4.nc \ RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/iced.2016-10-03-21600.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc" export_fv3 +export_cpl -DT_ATMOS="600" +export DAYS="0.25" +export FHMAX="6" +export NFHOUT_HF="1" +# requires extra time +export WLCLK=60 -export INPUT_NML=csawmgshoc.nml.IN -export FV3_RUN=csawmgshoc_run.IN -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. +export RESTART_N=${FHMAX} +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart b/tests/tests/cpld_restart index 9bd6f8d86e..8fe08388a7 100644 --- a/tests/tests/cpld_restart +++ b/tests/tests/cpld_restart @@ -1,8 +1,8 @@ # # cpld_restart test -# NOTE: test is not currently used; restarts are tested at c96mx025 +# -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - 12h restart" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - restart" export CNTL_DIR="cpld_control" @@ -57,11 +57,13 @@ export LIST_FILES="phyf024.tile1.nc \ export_fv3 export_cpl -export DAYS="0.50" -export FHMAX="24" export FHROT='12' export RESTART_N=$((FHMAX-$FHROT)) +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" + # ATM warm start WARM_START='.T.' MAKE_NH='.F.' diff --git a/tests/tests/cpld_restart_bmark b/tests/tests/cpld_restart_bmark new file mode 100644 index 0000000000..e5d9ecf2a5 --- /dev/null +++ b/tests/tests/cpld_restart_bmark @@ -0,0 +1,153 @@ +# +# cpld_restart_bmark test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - restart" + +export CNTL_DIR="cpld_bmark" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-02-00000.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc" + +export_fv3 +export_cpl + +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export FHROT='12' +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" + +export TASKS=$TASKS_cpl_bmrk +export TPN=$TPN_cpl_bmrk +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export THRD=$THRD_cpl_bmrk +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk + +export med_petlist_bounds=$MPB_cpl_bmrk +export atm_petlist_bounds=$APB_cpl_bmrk +export ocn_petlist_bounds=$OPB_cpl_bmrk +export ice_petlist_bounds=$IPB_cpl_bmrk + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + +# set component and coupling timesteps +export DT_ATMOS='450' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' + +export RUNID="cpcice" + +# ATM warm start +WARM_START='.T.' +MAKE_NH='.F.' +NA_INIT='0' +EXTERNAL_IC='.F.' +NGGPS_IC='.F.' +MOUNTAIN='.T.' + +# ICE warm start +RUNTYPE='continue' +export USE_RESTART_TIME='.true.' + +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_bmarkfrac b/tests/tests/cpld_restart_bmarkfrac new file mode 100644 index 0000000000..b0d1bb3f6f --- /dev/null +++ b/tests/tests/cpld_restart_bmarkfrac @@ -0,0 +1,156 @@ +# +# cpld_restart_bmarkfrac test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test - restart - frac grid" + +export CNTL_DIR="cpld_bmarkfrac" + +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-02-00000.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc" + +export_fv3 +export_cpl + +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export FHROT='12' +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" + +export TASKS=$TASKS_cpl_bmrk +export TPN=$TPN_cpl_bmrk +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export THRD=$THRD_cpl_bmrk +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk + +export med_petlist_bounds=$MPB_cpl_bmrk +export atm_petlist_bounds=$APB_cpl_bmrk +export ocn_petlist_bounds=$OPB_cpl_bmrk +export ice_petlist_bounds=$IPB_cpl_bmrk + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + +# set component and coupling timesteps +export DT_ATMOS='450' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' + +export RUNID="cpcice" + +# ATM warm start +WARM_START='.T.' +MAKE_NH='.F.' +NA_INIT='0' +EXTERNAL_IC='.F.' +NGGPS_IC='.F.' +MOUNTAIN='.T.' + +# ICE warm start +RUNTYPE='continue' +export USE_RESTART_TIME='.true.' + +export INPUT_NML=input.benchmark_ccpp.nml.IN + +export FIELD_TABLE="field_table.gfdlmp" +export SUITE_NAME="FV3_GFS_v15p2_coupled" + +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_bmarkfrac_v16 b/tests/tests/cpld_restart_bmarkfrac_v16 new file mode 100644 index 0000000000..864db722b7 --- /dev/null +++ b/tests/tests/cpld_restart_bmarkfrac_v16 @@ -0,0 +1,164 @@ +# +# cpld_restart_bmarkfrac_v16 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - restart - frac grid - v16" + +export CNTL_DIR="cpld_bmarkfrac_v16" + +export LIST_FILES="phyf012.tile1.nc \ + phyf012.tile2.nc \ + phyf012.tile3.nc \ + phyf012.tile4.nc \ + phyf012.tile5.nc \ + phyf012.tile6.nc \ + dynf012.tile1.nc \ + dynf012.tile2.nc \ + dynf012.tile3.nc \ + dynf012.tile4.nc \ + dynf012.tile5.nc \ + dynf012.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-01-43200.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc" + +export_fv3 +export_cpl + +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export DAYS="0.5" +export FHMAX="12" +export FHROT='6' +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" + +export TASKS=$TASKS_cpl_bmrk +export TPN=$TPN_cpl_bmrk +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export THRD=$THRD_cpl_bmrk +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk + +export med_petlist_bounds=$MPB_cpl_bmrk +export atm_petlist_bounds=$APB_cpl_bmrk +export ocn_petlist_bounds=$OPB_cpl_bmrk +export ice_petlist_bounds=$IPB_cpl_bmrk + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + +# set component and coupling timesteps +export DT_ATMOS='300' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +export NPZ=127 +export NPZP=128 +#export DZ_MIN=6 + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' + +export RUNID="cpcice" + +# ATM warm start +WARM_START='.T.' +MAKE_NH='.F.' +NA_INIT='0' +EXTERNAL_IC='.F.' +NGGPS_IC='.F.' +MOUNTAIN='.T.' + +# ICE warm start +RUNTYPE='continue' +export USE_RESTART_TIME='.true.' + +export INPUT_NML=input.benchmark_v16.nml.IN + +export FIELD_TABLE="field_table_gfsv16" +export DIAG_TABLE="diag_table_gfsv16" +export SUITE_NAME="FV3_GFS_v16_coupled" + +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_c192 b/tests/tests/cpld_restart_c192 new file mode 100644 index 0000000000..9d6ab05113 --- /dev/null +++ b/tests/tests/cpld_restart_c192 @@ -0,0 +1,140 @@ +# +# cpld_restart_c192 test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - 36h restart" + +export CNTL_DIR="cpld_control_c192" + +export LIST_FILES="phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/iced.2016-10-05-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc" + +export_fv3 +export_cpl + +export DAYS="2" +export FHMAX="48" +export FHROT='12' +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" + +export TASKS=$TASKS_cpl_c192 +export TPN=$TPN_cpl_c192 +export INPES=$INPES_cpl_c192 +export JNPES=$JNPES_cpl_c192 +export THRD=$THRD_cpl_c192 +export WRTTASK_PER_GROUP=$WPG_cpl_c192 +export WRITE_GROUP=1 + +export med_petlist_bounds=$MPB_cpl_c192 +export atm_petlist_bounds=$APB_cpl_c192 +export ocn_petlist_bounds=$OPB_cpl_c192 +export ice_petlist_bounds=$IPB_cpl_c192 + +# atm/ocn/ice resolution +export ATMRES='C192' +export NPX=193 +export NPY=193 +export IMO=768 +export JMO=384 + +export OCNRES='050' +export ICERES='0.50' +export NX_GLB=720 +export NY_GLB=576 +export NPROC_ICE='24' + +# resolution dependent setting +export CDMBWD=${CDMBWD_c192} + +# set component and coupling timesteps +export DT_ATMOS='900' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='1800' +export DT_THERM_MOM6='3600' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t382.768.384.rg.grb'," +export FNVETC="'global_vegtype.igbp.t382.768.384.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," +export FNSMCC="'global_soilmgldas.t382.768.384.grb'," +export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," + +export MOM6_RIVER_RUNOFF='True' + +# ATM warm start +WARM_START='.T.' +MAKE_NH='.F.' +NA_INIT='0' +EXTERNAL_IC='.F.' +NGGPS_IC='.F.' +MOUNTAIN='.T.' + +# ICE warm start +RUNTYPE='continue' +export USE_RESTART_TIME='.true.' + +# MOM6 warm start +export MOM6_RESTART_SETTING="r" + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_mx025 b/tests/tests/cpld_restart_c384 similarity index 80% rename from tests/tests/cpld_restart_mx025 rename to tests/tests/cpld_restart_c384 index 997ded5e0e..4a0d374ff9 100644 --- a/tests/tests/cpld_restart_mx025 +++ b/tests/tests/cpld_restart_c384 @@ -1,10 +1,9 @@ # -# cpld_restart test +# cpld_restart_c384 test # +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - restart" -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX025 - 12h restart" - -export CNTL_DIR="cpld_control_mx025" +export CNTL_DIR="cpld_control_c384" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ @@ -60,52 +59,67 @@ export LIST_FILES="phyf024.tile1.nc \ export_fv3 export_cpl -export DAYS="0.50" -export FHMAX="24" export FHROT='12' export RESTART_N=$((FHMAX-$FHROT)) -# replicate current tests; explicitly set values for c96/mx025 +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" + export TASKS=$TASKS_cpl_c384 export TPN=$TPN_cpl_c384 export INPES=$INPES_cpl_c384 export JNPES=$JNPES_cpl_c384 export THRD=$THRD_cpl_c384 - export WRTTASK_PER_GROUP=$WPG_cpl_c384 + export med_petlist_bounds=$MPB_cpl_c384 export atm_petlist_bounds=$APB_cpl_c384 export ocn_petlist_bounds=$OPB_cpl_c384 export ice_petlist_bounds=$IPB_cpl_c384 # atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + export OCNRES='025' export ICERES='0.25' export NX_GLB=1440 export NY_GLB=1080 - export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps +export DT_ATMOS='450' +export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' export CPL_SLOW=${DT_THERM_MOM6} export CPL_FAST=${DT_ATMOS} -export FRAC_GRID_INPUT='.F.' - # nems.configure export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + export MOM6_RIVER_RUNOFF='True' # ATM warm start diff --git a/tests/tests/fv3_control b/tests/tests/cpld_restartfrac similarity index 64% rename from tests/tests/fv3_control rename to tests/tests/cpld_restartfrac index 5e0e322878..392ddc3f93 100644 --- a/tests/tests/fv3_control +++ b/tests/tests/cpld_restartfrac @@ -1,37 +1,17 @@ -############################################################################### # -# FV3 control test +# cpld_restartfrac test # -############################################################################### -export TEST_DESCR="Compare FV3 control results with previous trunk version" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - restart - frac grid" -export CNTL_DIR=fv3_control +export CNTL_DIR="cpld_controlfrac" -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ +export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ phyf024.tile3.nc \ phyf024.tile4.nc \ phyf024.tile5.nc \ phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ dynf024.tile1.nc \ dynf024.tile2.nc \ dynf024.tile3.nc \ @@ -69,8 +49,37 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ RESTART/sfc_data.tile3.nc \ RESTART/sfc_data.tile4.nc \ RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/iced.2016-10-04-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc" export_fv3 +export_cpl + +export FHROT='12' +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +# ATM warm start +WARM_START='.T.' +MAKE_NH='.F.' +NA_INIT='0' +EXTERNAL_IC='.F.' +NGGPS_IC='.F.' +MOUNTAIN='.T.' + +# ICE warm start +RUNTYPE='continue' +export USE_RESTART_TIME='.true.' + +# MOM6 warm start +export MOM6_RESTART_SETTING="r" +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restartfrac_c192 b/tests/tests/cpld_restartfrac_c192 new file mode 100644 index 0000000000..5bc62e8ddc --- /dev/null +++ b/tests/tests/cpld_restartfrac_c192 @@ -0,0 +1,144 @@ +# +# cpld_restartfrac_c192 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - 36h restart - frac grid" + +export CNTL_DIR="cpld_controlfrac_c192" + +export LIST_FILES="phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/iced.2016-10-05-00000.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc" + +export_fv3 +export_cpl + +export DAYS="2" +export FHMAX="48" +export FHROT='12' +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" + +export TASKS=$TASKS_cpl_c192 +export TPN=$TPN_cpl_c192 +export INPES=$INPES_cpl_c192 +export JNPES=$JNPES_cpl_c192 +export THRD=$THRD_cpl_c192 +export WRTTASK_PER_GROUP=$WPG_cpl_c192 +export WRITE_GROUP=1 + +export med_petlist_bounds=$MPB_cpl_c192 +export atm_petlist_bounds=$APB_cpl_c192 +export ocn_petlist_bounds=$OPB_cpl_c192 +export ice_petlist_bounds=$IPB_cpl_c192 + +# atm/ocn/ice resolution +export ATMRES='C192' +export NPX=193 +export NPY=193 +export IMO=768 +export JMO=384 + +export OCNRES='050' +export ICERES='0.50' +export NX_GLB=720 +export NY_GLB=576 +export NPROC_ICE='24' + +# resolution dependent setting +export CDMBWD=${CDMBWD_c192} + +# set component and coupling timesteps +export DT_ATMOS='900' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='1800' +export DT_THERM_MOM6='3600' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t382.768.384.rg.grb'," +export FNVETC="'global_vegtype.igbp.t382.768.384.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," +export FNSMCC="'global_soilmgldas.t382.768.384.grb'," +export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," + +export MOM6_RIVER_RUNOFF='True' + +# ATM warm start +WARM_START='.T.' +MAKE_NH='.F.' +NA_INIT='0' +EXTERNAL_IC='.F.' +NGGPS_IC='.F.' +MOUNTAIN='.T.' + +# ICE warm start +RUNTYPE='continue' +export USE_RESTART_TIME='.true.' + +# MOM6 warm start +export MOM6_RESTART_SETTING="r" + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_mx025 b/tests/tests/cpld_restartfrac_c384 similarity index 73% rename from tests/tests/cpld_control_mx025 rename to tests/tests/cpld_restartfrac_c384 index 2212c0a6b8..352050179f 100644 --- a/tests/tests/cpld_control_mx025 +++ b/tests/tests/cpld_restartfrac_c384 @@ -1,9 +1,9 @@ # -# cpld_control test +# cpld_restartfrac_c384 test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX025" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - restart - frac grid" -export CNTL_DIR="cpld_control_mx025" +export CNTL_DIR="cpld_controlfrac_c384" export LIST_FILES="phyf024.tile1.nc \ phyf024.tile2.nc \ @@ -59,46 +59,85 @@ export LIST_FILES="phyf024.tile1.nc \ export_fv3 export_cpl -# replicate current tests; explicitly set values for c96/mx025 +export FHROT='12' +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" + export TASKS=$TASKS_cpl_c384 export TPN=$TPN_cpl_c384 export INPES=$INPES_cpl_c384 export JNPES=$JNPES_cpl_c384 export THRD=$THRD_cpl_c384 - export WRTTASK_PER_GROUP=$WPG_cpl_c384 + export med_petlist_bounds=$MPB_cpl_c384 export atm_petlist_bounds=$APB_cpl_c384 export ocn_petlist_bounds=$OPB_cpl_c384 export ice_petlist_bounds=$IPB_cpl_c384 # atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + export OCNRES='025' export ICERES='0.25' export NX_GLB=1440 export NY_GLB=1080 - export NPROC_ICE='48' +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + # set component and coupling timesteps +export DT_ATMOS='450' +export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' export CPL_SLOW=${DT_THERM_MOM6} export CPL_FAST=${DT_ATMOS} -export FRAC_GRID_INPUT='.F.' - # nems.configure export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + export MOM6_RIVER_RUNOFF='True' + +# ATM warm start +WARM_START='.T.' +MAKE_NH='.F.' +NA_INIT='0' +EXTERNAL_IC='.F.' +NGGPS_IC='.F.' +MOUNTAIN='.T.' + +# ICE warm start +RUNTYPE='continue' +export USE_RESTART_TIME='.true.' + +# MOM6 warm start +export MOM6_RESTART_SETTING="r" + export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/datm_bulk_cfsr b/tests/tests/datm_bulk_cfsr new file mode 100644 index 0000000000..991243da75 --- /dev/null +++ b/tests/tests/datm_bulk_cfsr @@ -0,0 +1,21 @@ +# +# DATM_MOM6_CICE_CMEPS_CFSR test +# + +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_CFSR - bulk flux test" + +export CNTL_DIR="datm_bulk_cfsr" + +export LIST_FILES="RESTART/MOM.res.nc \ + RESTART/iced.2011-10-02-00000.nc \ + RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" + +export_datm +export DATM_SRC="CFSR" +export FILENAME_BASE='cfsr.' +export IATM=1760 +export JATM=880 + +export flux_scheme='-1' + +export FV3_RUN=cpld_datm_cfsr.IN diff --git a/tests/tests/datm_bulk_gefs b/tests/tests/datm_bulk_gefs new file mode 100644 index 0000000000..3436624b60 --- /dev/null +++ b/tests/tests/datm_bulk_gefs @@ -0,0 +1,21 @@ +# +# DATM_MOM6_CICE_CMEPS_GEFS test +# + +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_GEFS - bulk flux test" + +export CNTL_DIR="datm_bulk_gefs" + +export LIST_FILES="RESTART/MOM.res.nc \ + RESTART/iced.2011-10-02-00000.nc \ + RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc" + +export_datm +export DATM_SRC="GEFS" +export FILENAME_BASE='gefs.' +export IATM=1760 +export JATM=880 + +export flux_scheme='-1' + +export FV3_RUN=cpld_datm_gefs.IN diff --git a/tests/tests/datm_control_cfsr b/tests/tests/datm_control_cfsr index 8cec449e7b..0707918590 100644 --- a/tests/tests/datm_control_cfsr +++ b/tests/tests/datm_control_cfsr @@ -1,8 +1,8 @@ # -# DATM_MOM6_CICE_CMEPS_COLD_CFSR test +# DATM_MOM6_CICE_CMEPS_CFSR test # -export TEST_DESCR="DATM-MOM6-CICE-CMEPS_CFSR - 1 step cold start" +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_CFSR - control " export CNTL_DIR="datm_control_cfsr" @@ -15,4 +15,5 @@ export DATM_SRC="CFSR" export FILENAME_BASE='cfsr.' export IATM=1760 export JATM=880 +export RESTART_N=12 export FV3_RUN=cpld_datm_cfsr.IN diff --git a/tests/tests/datm_control_gefs b/tests/tests/datm_control_gefs index 3ddb614eac..176170a8a9 100644 --- a/tests/tests/datm_control_gefs +++ b/tests/tests/datm_control_gefs @@ -1,8 +1,8 @@ # -# DATM_MOM6_CICE_CMEPS_COLD_GEFS test +# DATM_MOM6_CICE_CMEPS_GEFS test # -export TEST_DESCR="DATM-MOM6-CICE-CMEPS_GEFS - 1 step cold start" +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_GEFS - control" export CNTL_DIR="datm_control_gefs" diff --git a/tests/tests/datm_debug_cfsr b/tests/tests/datm_debug_cfsr new file mode 100644 index 0000000000..d1fab439bb --- /dev/null +++ b/tests/tests/datm_debug_cfsr @@ -0,0 +1,21 @@ +# +# DATM_MOM6_CICE_CMEPS_CFSR debug test +# + +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_CFSR - debug test " + +export CNTL_DIR="datm_debug_cfsr" + +export LIST_FILES="RESTART/MOM.res.nc \ + RESTART/iced.2011-10-01-21600.nc \ + RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc" + +export_datm +export DATM_SRC="CFSR" +export FILENAME_BASE='cfsr.' +export IATM=1760 +export JATM=880 +export DAYS="0.25" +export FHMAX="6" +export RESTART_N=${FHMAX} +export FV3_RUN=cpld_datm_cfsr.IN diff --git a/tests/tests/datm_mx025_cfsr b/tests/tests/datm_mx025_cfsr index 8f7273d2f4..78aaab184d 100644 --- a/tests/tests/datm_mx025_cfsr +++ b/tests/tests/datm_mx025_cfsr @@ -1,8 +1,8 @@ # -# DATM_MOM6_CICE_CMEPS_1_STEP_COLD_CFSR test +# DATM_MOM6_CICE_CMEPS_CFSR test # -export TEST_DESCR="DATM-MOM6-CICE-CMEPS_CFSR - 1-step cold start" +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_CFSR - 1/4deg ocean+ice" export CNTL_DIR="datm_mx025_cfsr" @@ -20,12 +20,12 @@ export FILENAME_BASE='cfsr.' export IATM=1760 export JATM=880 -export atm_petlist_bounds="0 39" -export med_petlist_bounds="0 39" -export ocn_petlist_bounds="40 159" -export ice_petlist_bounds="160 207" -export TASKS=208 -export TPN=40 +export TASKS=$TASKS_datm_025 +export TPN=$TPN_datm_025 +export atm_petlist_bounds=$APB_datm_025 +export med_petlist_bounds=$MPB_datm_025 +export ocn_petlist_bounds=$OPB_datm_025 +export ice_petlist_bounds=$IPB_datm_025 export NPROC_ICE='48' # atm/ocn/ice resolution @@ -36,7 +36,7 @@ export NY_GLB=1080 # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM='"seawifs-clim-1997-2010.1440x1080.v20180328.nc"' diff --git a/tests/tests/datm_mx025_gefs b/tests/tests/datm_mx025_gefs index a4489f5129..a7e6201ab8 100644 --- a/tests/tests/datm_mx025_gefs +++ b/tests/tests/datm_mx025_gefs @@ -1,8 +1,8 @@ # -# DATM_MOM6_CICE_CMEPS_1_STEP_COLD_GEFS test +# DATM_MOM6_CICE_CMEPS_GEFS test # -export TEST_DESCR="DATM-MOM6-CICE-CMEPS_GEFS - 1-step cold start" +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_GEFS - 1/4deg ocean+ice" export CNTL_DIR="datm_mx025_gefs" @@ -16,12 +16,12 @@ export LIST_FILES="RESTART/MOM.res.nc \ export_datm export WLCLK=40 -export atm_petlist_bounds="0 39" -export med_petlist_bounds="0 39" -export ocn_petlist_bounds="40 159" -export ice_petlist_bounds="160 207" -export TASKS=208 -export TPN=40 +export TASKS=$TASKS_datm_025 +export TPN=$TPN_datm_025 +export atm_petlist_bounds=$APB_datm_025 +export med_petlist_bounds=$MPB_datm_025 +export ocn_petlist_bounds=$OPB_datm_025 +export ice_petlist_bounds=$IPB_datm_025 export NPROC_ICE='48' # atm/ocn/ice resolution @@ -32,7 +32,7 @@ export NY_GLB=1080 # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHICE="mesh.mx${OCNRES}.nc" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" export CHLCLIM='"seawifs-clim-1997-2010.1440x1080.v20180328.nc"' diff --git a/tests/tests/datm_restart_cfsr b/tests/tests/datm_restart_cfsr new file mode 100644 index 0000000000..6d7e86015f --- /dev/null +++ b/tests/tests/datm_restart_cfsr @@ -0,0 +1,26 @@ +# +# DATM_MOM6_CICE_CMEPS_CFSR restart test +# + +export TEST_DESCR="DATM-MOM6-CICE-CMEPS_CFSR - restart test " + +export CNTL_DIR="datm_control_cfsr" + +export LIST_FILES="RESTART/MOM.res.nc \ + RESTART/iced.2011-10-02-00000.nc \ + RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" + +export_datm +export DATM_SRC="CFSR" +export FILENAME_BASE='cfsr.' +export IATM=1760 +export JATM=880 +export DAYS="1" +export FHMAX="24" +export FHROT="12" +export WARM_START='.T.' +export RESTART_N=$((FHMAX-$FHROT)) +export RUNTYPE='continue' +export USE_RESTART_TIME='.true.' +export MOM6_RESTART_SETTING="r" +export FV3_RUN=cpld_datm_cfsr.IN diff --git a/tests/tests/fv3_2threads b/tests/tests/fv3_2threads deleted file mode 100644 index c9363d96b6..0000000000 --- a/tests/tests/fv3_2threads +++ /dev/null @@ -1,82 +0,0 @@ -############################################################################### -# -# FV3 2 threads test -# -############################################################################### - -export TEST_DESCR="Compare FV3 2 threads results with previous trunk version" - -export CNTL_DIR=fv3_control - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 -export THRD=2 -export TASKS=$TASKS_thrd -export TPN=$TPN_thrd -export INPES=$INPES_thrd -export JNPES=$JNPES_thrd -export WRTTASK_PER_GROUP=12 - diff --git a/tests/tests/fv3_appbuild b/tests/tests/fv3_appbuild deleted file mode 100644 index 2411077f08..0000000000 --- a/tests/tests/fv3_appbuild +++ /dev/null @@ -1,76 +0,0 @@ -############################################################################### -# -# FV3 control test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control results with previous trunk version using NEMSAppBuilder" - -export CNTL_DIR=fv3_control - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - diff --git a/tests/tests/fv3_ccpp_2threads b/tests/tests/fv3_ccpp_2threads index fe0c77a406..0d1dee9a71 100644 --- a/tests/tests/fv3_ccpp_2threads +++ b/tests/tests/fv3_ccpp_2threads @@ -82,6 +82,5 @@ export WRTTASK_PER_GROUP=12 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf b/tests/tests/fv3_ccpp_HAFS_v0_hwrf index f5f98bf782..b9e2eae107 100644 --- a/tests/tests/fv3_ccpp_HAFS_v0_hwrf +++ b/tests/tests/fv3_ccpp_HAFS_v0_hwrf @@ -79,7 +79,6 @@ DT_ATMOS="600" export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN export OZ_PHYS_OLD=.F. diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug index 07bb1e7332..08833a6720 100644 --- a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug +++ b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug @@ -82,7 +82,6 @@ DT_ATMOS="600" export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN export OZ_PHYS_OLD=.F. diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson index de913c0c93..3b17849361 100644 --- a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson +++ b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson @@ -79,7 +79,6 @@ DT_ATMOS="600" export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf_thompson -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN export OZ_PHYS_OLD=.F. diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug index 72ea02ed14..b56589d179 100644 --- a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug +++ b/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug @@ -82,7 +82,6 @@ DT_ATMOS="600" export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf_thompson -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN export OZ_PHYS_OLD=.F. diff --git a/tests/tests/fv3_ccpp_appbuild b/tests/tests/fv3_ccpp_appbuild index 7e2e20962f..30ec1a9b0d 100644 --- a/tests/tests/fv3_ccpp_appbuild +++ b/tests/tests/fv3_ccpp_appbuild @@ -75,6 +75,5 @@ export_fv3 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_ca b/tests/tests/fv3_ccpp_ca index 4547eaad51..0ea62c1dfc 100644 --- a/tests/tests/fv3_ccpp_ca +++ b/tests/tests/fv3_ccpp_ca @@ -75,7 +75,6 @@ export_fv3 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_ca.nml.IN export DO_CA=.T. diff --git a/tests/tests/fv3_ccpp_control b/tests/tests/fv3_ccpp_control index 16c99d8284..d9301b68b4 100644 --- a/tests/tests/fv3_ccpp_control +++ b/tests/tests/fv3_ccpp_control @@ -73,9 +73,9 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 +export RESTART_INTERVAL=12 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_control_32bit b/tests/tests/fv3_ccpp_control_32bit index c1db0d7db7..b435bd109d 100644 --- a/tests/tests/fv3_ccpp_control_32bit +++ b/tests/tests/fv3_ccpp_control_32bit @@ -76,6 +76,5 @@ export_fv3 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_control_debug b/tests/tests/fv3_ccpp_control_debug index 0c3bfb6f05..f30a5058b2 100644 --- a/tests/tests/fv3_ccpp_control_debug +++ b/tests/tests/fv3_ccpp_control_debug @@ -39,6 +39,5 @@ export FHMAX="06" export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_cpt b/tests/tests/fv3_ccpp_cpt index 667f523061..a182a6a2d5 100644 --- a/tests/tests/fv3_ccpp_cpt +++ b/tests/tests/fv3_ccpp_cpt @@ -83,7 +83,6 @@ export NPZP='128' export INPUT_NML=ccpp_cpt.nml.IN export FV3_RUN=ccpp_cpt_run.IN export CCPP_SUITE=FV3_CPT_v0 -export CCPP_LIB_DIR=ccpp/lib export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'nemsio'" export WRITE_NEMSIOFLIP=.true. diff --git a/tests/tests/fv3_ccpp_csawmg b/tests/tests/fv3_ccpp_csawmg index 237cca0f63..d49f2a48a1 100644 --- a/tests/tests/fv3_ccpp_csawmg +++ b/tests/tests/fv3_ccpp_csawmg @@ -59,7 +59,6 @@ DT_ATMOS="600" export INPUT_NML=ccpp_csawmg.nml.IN export FV3_RUN=ccpp_csawmg_run.IN export CCPP_SUITE=FV3_GFS_2017_csawmg -export CCPP_LIB_DIR=ccpp/lib export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'nemsio'" export WRITE_NEMSIOFLIP=.true. diff --git a/tests/tests/fv3_ccpp_csawmg3shoc127 b/tests/tests/fv3_ccpp_csawmg3shoc127 index 810903271f..1fb11f4584 100644 --- a/tests/tests/fv3_ccpp_csawmg3shoc127 +++ b/tests/tests/fv3_ccpp_csawmg3shoc127 @@ -78,5 +78,4 @@ export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. export CCPP_SUITE=FV3_GFS_2017_csawmgshoc -export CCPP_LIB_DIR=ccpp/lib diff --git a/tests/tests/fv3_ccpp_csawmgshoc b/tests/tests/fv3_ccpp_csawmgshoc index 86e0a04560..f68bc3504a 100644 --- a/tests/tests/fv3_ccpp_csawmgshoc +++ b/tests/tests/fv3_ccpp_csawmgshoc @@ -64,6 +64,5 @@ export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. export CCPP_SUITE=FV3_GFS_2017_csawmgshoc -export CCPP_LIB_DIR=ccpp/lib diff --git a/tests/tests/fv3_ccpp_decomp b/tests/tests/fv3_ccpp_decomp index 6843ae6a6f..da4e91205a 100644 --- a/tests/tests/fv3_ccpp_decomp +++ b/tests/tests/fv3_ccpp_decomp @@ -79,6 +79,5 @@ export JNPES=4 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson b/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson index 0ddd652f0c..2188cfa3a9 100644 --- a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson +++ b/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson @@ -32,7 +32,6 @@ DT_ATMOS="300" export FV3_RUN=ccpp_esg_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf_thompson -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_esg_HAFS_v0_hwrf.nml.IN export MODEL_CONFIGURE=ccpp_esg_HAFS_v0_hwrf-model_configure.IN diff --git a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug b/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug index 8e00080af9..dea85c2bf3 100644 --- a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug +++ b/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug @@ -32,7 +32,6 @@ DT_ATMOS="300" export FV3_RUN=ccpp_esg_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf_thompson -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_esg_HAFS_v0_hwrf.nml.IN export MODEL_CONFIGURE=ccpp_esg_HAFS_v0_hwrf-model_configure.IN diff --git a/tests/tests/fv3_ccpp_gf b/tests/tests/fv3_ccpp_gf index bf9adfa750..00a7fcfe30 100644 --- a/tests/tests/fv3_ccpp_gf +++ b/tests/tests/fv3_ccpp_gf @@ -80,7 +80,6 @@ export DO_SAT_ADJ=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GFS_v15_gf -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gf_thompson b/tests/tests/fv3_ccpp_gf_thompson index cd764ce395..78922beb8c 100644 --- a/tests/tests/fv3_ccpp_gf_thompson +++ b/tests/tests/fv3_ccpp_gf_thompson @@ -82,7 +82,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GFS_v15_gf_thompson -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gfdlmp b/tests/tests/fv3_ccpp_gfdlmp index ea5c81b418..a965807bc1 100644 --- a/tests/tests/fv3_ccpp_gfdlmp +++ b/tests/tests/fv3_ccpp_gfdlmp @@ -62,6 +62,5 @@ export WRITE_FSYNCFLAG=.true. export FV3_RUN=ccpp_gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfdlmp_32bit b/tests/tests/fv3_ccpp_gfdlmp_32bit index a318bf2b4a..1249268bb1 100644 --- a/tests/tests/fv3_ccpp_gfdlmp_32bit +++ b/tests/tests/fv3_ccpp_gfdlmp_32bit @@ -62,6 +62,5 @@ export WRITE_FSYNCFLAG=.true. export FV3_RUN=ccpp_gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfdlmprad b/tests/tests/fv3_ccpp_gfdlmprad index 7f6eb68d57..5d1b9ccdf2 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad +++ b/tests/tests/fv3_ccpp_gfdlmprad @@ -76,7 +76,6 @@ export coupling_interval_sec=3600.0 #coupling time step, want it to be multiple export NEMS_CONFIGURE="nems.configure.blocked_atm_wav.IN" export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN export FV3_RUN=ccpp_gfdlmp_run.IN diff --git a/tests/tests/fv3_ccpp_gfdlmprad_32bit_post b/tests/tests/fv3_ccpp_gfdlmprad_32bit_post index 8c0829d0a2..ba5813bef1 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad_32bit_post +++ b/tests/tests/fv3_ccpp_gfdlmprad_32bit_post @@ -70,7 +70,6 @@ export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN export FV3_RUN=ccpp_gfdlmp_run.IN diff --git a/tests/tests/fv3_ccpp_gfdlmprad_atmwav b/tests/tests/fv3_ccpp_gfdlmprad_atmwav index c69a5f2b88..69fcd18edd 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad_atmwav +++ b/tests/tests/fv3_ccpp_gfdlmprad_atmwav @@ -77,7 +77,6 @@ export coupling_interval_sec=1200.0 #coupling time step, want it to be multiple export NEMS_CONFIGURE="nems.configure.blocked_atm_wav_2way.IN" export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN export FV3_RUN=ccpp_gfdlmp_run.IN diff --git a/tests/tests/fv3_ccpp_gfdlmprad_gwd b/tests/tests/fv3_ccpp_gfdlmprad_gwd index ddc358763d..cba744dbdb 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad_gwd +++ b/tests/tests/fv3_ccpp_gfdlmprad_gwd @@ -66,7 +66,6 @@ export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN export FV3_RUN=ccpp_gfdlmp_run.IN diff --git a/tests/tests/fv3_ccpp_gfdlmprad_noahmp b/tests/tests/fv3_ccpp_gfdlmprad_noahmp index d910b643b9..7eb7ac54c4 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad_noahmp +++ b/tests/tests/fv3_ccpp_gfdlmprad_noahmp @@ -66,7 +66,6 @@ export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. export CCPP_SUITE=FV3_GFS_2017_gfdlmp_noahmp -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN export FV3_RUN=ccpp_gfdlmp_run.IN diff --git a/tests/tests/fv3_ccpp_gfs_myj b/tests/tests/fv3_ccpp_gfs_myj index d4336b0a35..df3839f09c 100644 --- a/tests/tests/fv3_ccpp_gfs_myj +++ b/tests/tests/fv3_ccpp_gfs_myj @@ -78,7 +78,6 @@ DT_ATMOS="900" export FV3_RUN=ccpp_gfs_v15_run.IN export CCPP_SUITE=FV3_GFS_2017_myj -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v15p2 b/tests/tests/fv3_ccpp_gfs_v15p2 index db66245f03..3ebd1474dc 100644 --- a/tests/tests/fv3_ccpp_gfs_v15p2 +++ b/tests/tests/fv3_ccpp_gfs_v15p2 @@ -78,6 +78,5 @@ DT_ATMOS="1200" export FV3_RUN=ccpp_gfs_v15_run.IN export CCPP_SUITE=FV3_GFS_v15p2 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_v15p2_c96.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP b/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP index 2dae53db76..ad6bb66faf 100644 --- a/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP +++ b/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP @@ -79,6 +79,5 @@ export DO_RRTMGP=.T. export FV3_RUN=ccpp_gfs_v15_run.IN export CCPP_SUITE=FV3_GFS_v15p2_RRTMGP -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_v15p2_c96_rrtmgp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP_debug b/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP_debug index dcb83b2f8e..ba67d28114 100644 --- a/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP_debug +++ b/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP_debug @@ -79,6 +79,5 @@ export DO_RRTMGP=.T. export FV3_RUN=ccpp_gfs_v15_run.IN export CCPP_SUITE=FV3_GFS_v15p2_RRTMGP -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_v15p2_c96_rrtmgp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v15p2_debug b/tests/tests/fv3_ccpp_gfs_v15p2_debug index b7689af1fc..f5f6b59a2d 100644 --- a/tests/tests/fv3_ccpp_gfs_v15p2_debug +++ b/tests/tests/fv3_ccpp_gfs_v15p2_debug @@ -78,6 +78,5 @@ DT_ATMOS="1200" export FV3_RUN=ccpp_gfs_v15_run.IN export CCPP_SUITE=FV3_GFS_v15p2 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_v15p2_c96.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16beta_RRTMGP b/tests/tests/fv3_ccpp_gfs_v16 similarity index 79% rename from tests/tests/fv3_ccpp_gfs_v16beta_RRTMGP rename to tests/tests/fv3_ccpp_gfs_v16 index 62cb7571eb..89550fc9cc 100644 --- a/tests/tests/fv3_ccpp_gfs_v16beta_RRTMGP +++ b/tests/tests/fv3_ccpp_gfs_v16 @@ -1,12 +1,12 @@ ############################################################################### # -# FV3 CCPP GFS v16beta w/ RRTMGP test +# FV3 CCPP GFS v16 compiled with 32-bit dynamics test # ############################################################################### -export TEST_DESCR="Compare FV3 CCPP GFS v16beta w/ RRTMGP results with previous trunk version" +export TEST_DESCR="Compare FV3 32bit CCPP GFS v16 results with previous trunk version" -export CNTL_DIR=fv3_gfs_v16beta_RRTMGP +export CNTL_DIR=fv3_gfs_v16 export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ @@ -26,6 +26,12 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ phyf024.tile4.nc \ phyf024.tile5.nc \ phyf024.tile6.nc \ + phyf048.tile1.nc \ + phyf048.tile2.nc \ + phyf048.tile3.nc \ + phyf048.tile4.nc \ + phyf048.tile5.nc \ + phyf048.tile6.nc \ dynf000.tile1.nc \ dynf000.tile2.nc \ dynf000.tile3.nc \ @@ -38,6 +44,12 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ dynf024.tile4.nc \ dynf024.tile5.nc \ dynf024.tile6.nc \ + dynf048.tile1.nc \ + dynf048.tile2.nc \ + dynf048.tile3.nc \ + dynf048.tile4.nc \ + dynf048.tile5.nc \ + dynf048.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -75,10 +87,14 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 DT_ATMOS="1200" -export DO_RRTMGP=.T. + +export FHMAX=48 +export RESTART_INTERVAL=24 + +export NSTF_NAME=2,1,0,0,0 export FV3_RUN=ccpp_gfs_v16_run.IN -export CCPP_SUITE=FV3_GFS_v16beta_RRTMGP -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_v16beta_c96_rrtmgp.nml.IN +export CCPP_SUITE=FV3_GFS_v16 +export INPUT_NML=ccpp_v16_c96.nml.IN +export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gfs_v16beta b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP similarity index 92% rename from tests/tests/fv3_ccpp_gfs_v16beta rename to tests/tests/fv3_ccpp_gfs_v16_RRTMGP index be7c331f6c..574fe3ae0d 100644 --- a/tests/tests/fv3_ccpp_gfs_v16beta +++ b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP @@ -1,12 +1,12 @@ ############################################################################### # -# FV3 CCPP GFS v16beta compiled with 32-bit dynamics test +# FV3 CCPP GFS v16 w/ RRTMGP test # ############################################################################### -export TEST_DESCR="Compare FV3 32bit CCPP GFS v16beta results with previous trunk version" +export TEST_DESCR="Compare FV3 CCPP GFS v16 w/ RRTMGP results with previous trunk version" -export CNTL_DIR=fv3_gfs_v16beta +export CNTL_DIR=fv3_gfs_v16_RRTMGP export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ @@ -75,9 +75,9 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 DT_ATMOS="1200" +export DO_RRTMGP=.T. export FV3_RUN=ccpp_gfs_v16_run.IN -export CCPP_SUITE=FV3_GFS_v16beta -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_v16beta_c96.nml.IN +export CCPP_SUITE=FV3_GFS_v16_RRTMGP +export INPUT_NML=ccpp_v16_c96_rrtmgp.nml.IN diff --git a/tests/tests/fv3_ca b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 similarity index 68% rename from tests/tests/fv3_ca rename to tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 index 759d0c2284..c65e2f5034 100644 --- a/tests/tests/fv3_ca +++ b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 @@ -1,20 +1,14 @@ ############################################################################### # -# FV3 cellular automata test +# FV3 CCPP GFS v16 w/ RRTMGP test # ############################################################################### -export TEST_DESCR="Compare FV3 cellular automata results with previous trunk version (sub-grid and global)" +export TEST_DESCR="Compare FV3 c192L217 CCPP GFS v16 w/ RRTMGP results with previous trunk version" -export CNTL_DIR=fv3_ca +export CNTL_DIR=fv3_gfs_v16_RRTMGP_c192L127 -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ +export LIST_FILES="phyf000.tile1.nc \ phyf000.tile2.nc \ phyf000.tile3.nc \ phyf000.tile4.nc \ @@ -58,24 +52,51 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ RESTART/fv_tracer.res.tile4.nc \ RESTART/fv_tracer.res.tile5.nc \ RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ RESTART/sfc_data.tile1.nc \ RESTART/sfc_data.tile2.nc \ RESTART/sfc_data.tile3.nc \ RESTART/sfc_data.tile4.nc \ RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" export_fv3 -export DO_CA=.T. -export CA_SGS=.T. -export CA_GLOBAL=.T. +export DO_RRTMGP=.T. +export TASKS=150 +export INPES=3 +export JNPES=8 +export NPX=193 +export NPY=193 +export NPZ=127 +export NPZP=128 +export SYEAR=2019 +export SMONTH=01 +export SDAY=20 +export DT_ATMOS=450 export FHMAX=12 +export WLCLK=30 +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export OUTPUT_GRID="'cubed_sphere_grid'" +export OUTPUT_FILE="'netcdf'" +export WRITE_NEMSIOFLIP=.true. +export WRITE_FSYNCFLAG=.true. +export IMO=768 +export JMO=384 +export FNALBC="'global_snowfree_albedo.bosu.t382.768.384.rg.grb'," +export FNVETC="'global_vegtype.igbp.t382.768.384.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t382.768.384.grb'," +export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," + +export FV3_RUN=ccpp_gfs_v16_run_c192L127.IN +export CCPP_SUITE=FV3_GFS_v16_RRTMGP +export INPUT_NML=ccpp_v16_c192L127_rrtmgp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16beta_debug b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_debug similarity index 91% rename from tests/tests/fv3_ccpp_gfs_v16beta_debug rename to tests/tests/fv3_ccpp_gfs_v16_RRTMGP_debug index 12cd66ccb4..169f6415ac 100644 --- a/tests/tests/fv3_ccpp_gfs_v16beta_debug +++ b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_debug @@ -1,12 +1,12 @@ ############################################################################### # -# FV3 CCPP GFS v16beta compiled with 32-bit dynamics test in DEBUG mode +# FV3 CCPP GFS v16 w/ RRTMGP test in DEBUG mode # ############################################################################### -export TEST_DESCR="Run FV3 32bit CCPP GFS v16beta in DEBUG mode" +export TEST_DESCR="Run FV3 CCPP GFS v16 w/ RRTMGP in DEBUG mode" -export CNTL_DIR=fv3_gfs_v16beta_debug +export CNTL_DIR=fv3_gfs_v16_RRTMGP_debug export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ @@ -75,9 +75,9 @@ export_fv3 export FHMAX="06" DT_ATMOS="1200" +export DO_RRTMGP=.T. export FV3_RUN=ccpp_gfs_v16_run.IN -export CCPP_SUITE=FV3_GFS_v16beta -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_v16beta_c96.nml.IN +export CCPP_SUITE=FV3_GFS_v16_RRTMGP +export INPUT_NML=ccpp_v16_c96_rrtmgp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16beta_RRTMGP_debug b/tests/tests/fv3_ccpp_gfs_v16_debug similarity index 90% rename from tests/tests/fv3_ccpp_gfs_v16beta_RRTMGP_debug rename to tests/tests/fv3_ccpp_gfs_v16_debug index 53ff31bed7..f27083f806 100644 --- a/tests/tests/fv3_ccpp_gfs_v16beta_RRTMGP_debug +++ b/tests/tests/fv3_ccpp_gfs_v16_debug @@ -1,12 +1,12 @@ ############################################################################### # -# FV3 CCPP GFS v16beta w/ RRTMGP test in DEBUG mode +# FV3 CCPP GFS v16 compiled with 32-bit dynamics test in DEBUG mode # ############################################################################### -export TEST_DESCR="Run FV3 CCPP GFS v16beta w/ RRTMGP in DEBUG mode" +export TEST_DESCR="Run FV3 32bit CCPP GFS v16 in DEBUG mode" -export CNTL_DIR=fv3_gfs_v16beta_RRTMGP_debug +export CNTL_DIR=fv3_gfs_v16_debug export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ @@ -75,10 +75,10 @@ export_fv3 export FHMAX="06" DT_ATMOS="1200" -export DO_RRTMGP=.T. + +export NSTF_NAME=2,1,0,0,0 export FV3_RUN=ccpp_gfs_v16_run.IN -export CCPP_SUITE=FV3_GFS_v16beta_RRTMGP -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_v16beta_c96_rrtmgp.nml.IN +export CCPP_SUITE=FV3_GFS_v16 +export INPUT_NML=ccpp_v16_c96.nml.IN diff --git a/tests/tests/fv3_gfs_v15p2 b/tests/tests/fv3_ccpp_gfs_v16_flake similarity index 90% rename from tests/tests/fv3_gfs_v15p2 rename to tests/tests/fv3_ccpp_gfs_v16_flake index a2b6faf962..bd270d5b2c 100644 --- a/tests/tests/fv3_gfs_v15p2 +++ b/tests/tests/fv3_ccpp_gfs_v16_flake @@ -1,12 +1,12 @@ ############################################################################### # -# FV3 GFS v15.2 compiled with 32-bit dynamics test +# FV3 CCPP GFS v16 compiled with 32-bit dynamics test # ############################################################################### -export TEST_DESCR="Compare FV3 32bit GFS v15.2 results with previous trunk version" +export TEST_DESCR="Compare FV3 32bit CCPP GFS v16 flake results with previous trunk version" -export CNTL_DIR=fv3_gfs_v15p2 +export CNTL_DIR=fv3_gfs_v16_flake export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ @@ -76,6 +76,7 @@ export_fv3 DT_ATMOS="1200" -export FV3_RUN=gfs_v15_run.IN -export INPUT_NML=v15p2_c96.nml.IN +export FV3_RUN=ccpp_gfs_v16_flake_run.IN +export CCPP_SUITE=FV3_GFS_v16_flake +export INPUT_NML=ccpp_v16_flake_c96.nml.IN diff --git a/tests/tests/fv3_restart b/tests/tests/fv3_ccpp_gfs_v16_restart similarity index 68% rename from tests/tests/fv3_restart rename to tests/tests/fv3_ccpp_gfs_v16_restart index 11f312f336..c95489ea5e 100644 --- a/tests/tests/fv3_restart +++ b/tests/tests/fv3_ccpp_gfs_v16_restart @@ -1,37 +1,19 @@ ############################################################################### # -# FV3 restart test +# FV3 CCPP GFS v16 compiled with 32-bit dynamics test # ############################################################################### -export TEST_DESCR="Compare FV3 restart results with previous trunk version" +export TEST_DESCR="Compare FV3 32bit CCPP GFS v16 results with previous trunk version" -export CNTL_DIR=fv3_restart +export CNTL_DIR=fv3_gfs_v16 -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf027.tile1.nc \ - phyf027.tile2.nc \ - phyf027.tile3.nc \ - phyf027.tile4.nc \ - phyf027.tile5.nc \ - phyf027.tile6.nc \ - phyf048.tile1.nc \ +export LIST_FILES="phyf048.tile1.nc \ phyf048.tile2.nc \ phyf048.tile3.nc \ phyf048.tile4.nc \ phyf048.tile5.nc \ phyf048.tile6.nc \ - dynf027.tile1.nc \ - dynf027.tile2.nc \ - dynf027.tile3.nc \ - dynf027.tile4.nc \ - dynf027.tile5.nc \ - dynf027.tile6.nc \ dynf048.tile1.nc \ dynf048.tile2.nc \ dynf048.tile3.nc \ @@ -58,30 +40,35 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ RESTART/fv_tracer.res.tile4.nc \ RESTART/fv_tracer.res.tile5.nc \ RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ RESTART/sfc_data.tile1.nc \ RESTART/sfc_data.tile2.nc \ RESTART/sfc_data.tile3.nc \ RESTART/sfc_data.tile4.nc \ RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" export_fv3 +DT_ATMOS="1200" + +export FHMAX=48 +export RESTART_INTERVAL=24 + export WARM_START=.T. export NGGPS_IC=.F. export EXTERNAL_IC=.F. export MAKE_NH=.F. export MOUNTAIN=.T. -export NA_INIT=0 -export FHMAX=48 -export FDIAG=3 -export NSTF_NAME=2,0,1,0,5 +export NSTF_NAME=2,0,0,0,0 +export FV3_RUN=ccpp_gfs_v16_run.IN +export CCPP_SUITE=FV3_GFS_v16 +export INPUT_NML=ccpp_v16_c96.nml.IN diff --git a/tests/tests/fv3_stochy b/tests/tests/fv3_ccpp_gfs_v16_stochy similarity index 87% rename from tests/tests/fv3_stochy rename to tests/tests/fv3_ccpp_gfs_v16_stochy index 08910eb079..007c1f02fe 100644 --- a/tests/tests/fv3_stochy +++ b/tests/tests/fv3_ccpp_gfs_v16_stochy @@ -1,12 +1,12 @@ ############################################################################### # -# FV3 stochastic test +# FV3 CCPP GFS v16 stochastic test, compiled with 32-bit dynamics # ############################################################################### -export TEST_DESCR="Compare FV3 stochastic results with previous trunk version" +export TEST_DESCR="Compare FV3 32bit CCPP GFS v16 stochastic results with previous trunk version" -export CNTL_DIR=fv3_stochy +export CNTL_DIR=fv3_gfs_v16_stochy export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ @@ -58,28 +58,35 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ RESTART/fv_tracer.res.tile4.nc \ RESTART/fv_tracer.res.tile5.nc \ RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ RESTART/sfc_data.tile1.nc \ RESTART/sfc_data.tile2.nc \ RESTART/sfc_data.tile3.nc \ RESTART/sfc_data.tile4.nc \ RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" export_fv3 +DT_ATMOS=600 +export FHMAX=12 + +export NSTF_NAME=2,1,0,0,0 + export DO_SPPT=.T. export DO_SHUM=.T. export DO_SKEB=.T. export SKEB=0.3 export SHUM=0.003 export SPPT=0.2 -export DT_ATMOS=600 -export FHMAX=12 + +export FV3_RUN=ccpp_gfs_v16_run.IN +export CCPP_SUITE=FV3_GFS_v16 +export INPUT_NML=ccpp_v16_c96.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16beta_flake b/tests/tests/fv3_ccpp_gfs_v16beta_flake deleted file mode 100644 index 751b59febf..0000000000 --- a/tests/tests/fv3_ccpp_gfs_v16beta_flake +++ /dev/null @@ -1,83 +0,0 @@ -############################################################################### -# -# FV3 CCPP GFS v16beta compiled with 32-bit dynamics test -# -############################################################################### - -export TEST_DESCR="Compare FV3 32bit CCPP GFS v16beta flake results with previous trunk version" - -export CNTL_DIR=fv3_gfs_v16beta_flake - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="1200" - -export FV3_RUN=ccpp_gfs_v16_flake_run.IN -export CCPP_SUITE=FV3_GFS_v16beta_flake -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_v16beta_flake_c96.nml.IN - diff --git a/tests/tests/fv3_ccpp_gfsv16_csawmg b/tests/tests/fv3_ccpp_gfsv16_csawmg index 0069adba7d..58c49ff18e 100644 --- a/tests/tests/fv3_ccpp_gfsv16_csawmg +++ b/tests/tests/fv3_ccpp_gfsv16_csawmg @@ -64,6 +64,5 @@ export WRITE_FSYNCFLAG=.true. export IAER=1111 export CCPP_SUITE=FV3_GFS_v16_csawmg -export CCPP_LIB_DIR=ccpp/lib diff --git a/tests/tests/fv3_ccpp_gfsv16_csawmgt b/tests/tests/fv3_ccpp_gfsv16_csawmgt index 1532752ebb..60c86f3271 100644 --- a/tests/tests/fv3_ccpp_gfsv16_csawmgt +++ b/tests/tests/fv3_ccpp_gfsv16_csawmgt @@ -64,6 +64,5 @@ export WRITE_FSYNCFLAG=.true. export IAER=111 export CCPP_SUITE=FV3_GFS_v16_csawmg -export CCPP_LIB_DIR=ccpp/lib diff --git a/tests/tests/fv3_gfs_v16beta b/tests/tests/fv3_ccpp_gfsv16_ugwpv1 similarity index 81% rename from tests/tests/fv3_gfs_v16beta rename to tests/tests/fv3_ccpp_gfsv16_ugwpv1 index 66816ff08e..daec8b1c96 100644 --- a/tests/tests/fv3_gfs_v16beta +++ b/tests/tests/fv3_ccpp_gfsv16_ugwpv1 @@ -1,20 +1,14 @@ ############################################################################### # -# FV3 GFS v16beta compiled with 32-bit dynamics test +# FV3 CCPP GFS v16beta with ugwpv1 and gsldrag: fv3_ccpp_gfsv16_ugwpv1 # ############################################################################### -export TEST_DESCR="Compare FV3 32bit GFS v16beta results with previous trunk version" +export TEST_DESCR="Compare fv3_ccpp_gfsv16_ugwpv1 with previous trunk version" -export CNTL_DIR=fv3_gfs_v16beta +export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1 -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ +export LIST_FILES="phyf000.tile1.nc \ phyf000.tile2.nc \ phyf000.tile3.nc \ phyf000.tile4.nc \ @@ -74,8 +68,21 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 -DT_ATMOS="1200" +export SYEAR=2019 +export SMONTH=07 +export SDAY=01 +export SHOUR=00 -export FV3_RUN=gfs_v16_run.IN -export INPUT_NML=v16beta_c96.nml.IN +DT_ATMOS="600" + +export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN +export CCPP_SUITE=FV3_GFS_v16b_ugwpv1 +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN +export WLCLK=30 + +# Cold start, these are defaults +#export WARM_START=.F. +#export EXTERNAL_IC=.T. +#export MOUNTAIN=.F. diff --git a/tests/tests/fv3_multigases b/tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug similarity index 71% rename from tests/tests/fv3_multigases rename to tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug index b48993ef27..718f438483 100644 --- a/tests/tests/fv3_multigases +++ b/tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug @@ -1,20 +1,14 @@ -############################################################################### +########################################################################################### # -# FV3 multi-gases test +# FV3 CCPP GFS v16beta with ugwpv1 and gsldrag in DEBUG mode: fv3_ccpp_gfsv16_ugwpv1_debug # -############################################################################### +########################################################################################### -export TEST_DESCR="Compare FV3 multi-gases results with previous trunk version" +export TEST_DESCR="Compare fv3_ccpp_gfsv16_ugwpv1 DEBUG with previous trunk version" -export CNTL_DIR=fv3_multigases +export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1_debug -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ +export LIST_FILES="phyf000.tile1.nc \ phyf000.tile2.nc \ phyf000.tile3.nc \ phyf000.tile4.nc \ @@ -58,12 +52,6 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ RESTART/fv_tracer.res.tile4.nc \ RESTART/fv_tracer.res.tile5.nc \ RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ RESTART/sfc_data.tile1.nc \ RESTART/sfc_data.tile2.nc \ RESTART/sfc_data.tile3.nc \ @@ -77,17 +65,24 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ RESTART/phy_data.tile5.nc \ RESTART/phy_data.tile6.nc" - export_fv3 -export NPZ=149 -export NPZP=150 -DT_ATMOS="225" -SYEAR="2017" -SMONTH="01" -SDAY="19" -SHOUR="06" -export FHMAX=06 -export FDIAG=0,1,2,3,4,5,6 -export NSTF_NAME=0,0,1,0,5 -export INPUT_NML=multi_gases.nml.IN -export FV3_RUN=multigases_run.IN + +export SYEAR=2019 +export SMONTH=07 +export SDAY=01 +export SHOUR=00 + +DT_ATMOS="600" +export FHMAX=6 + +export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN +export CCPP_SUITE=FV3_GFS_v16b_ugwpv1 +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN +export WLCLK=30 + +# Cold start, these are defaults +#export WARM_START=.F. +#export EXTERNAL_IC=.T. +#export MOUNTAIN=.F. + diff --git a/tests/tests/fv3_wsm6 b/tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart similarity index 81% rename from tests/tests/fv3_wsm6 rename to tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart index a6ac835a1a..049302c5da 100644 --- a/tests/tests/fv3_wsm6 +++ b/tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart @@ -1,20 +1,14 @@ ############################################################################### # -# FV3 WSM6 MP test +# FV3 CCPP GFS v16beta with ugwpv1 and gsldrag, warm start: fv3_ccpp_gfsv16_ugwpv1_warmstart # ############################################################################### -export TEST_DESCR="Compare FV3 WSM6 MP results with previous trunk version" +export TEST_DESCR="Compare fv3_ccpp_gfsv16_ugwpv1 with previous trunk version" -export CNTL_DIR=fv3_wsm6 +export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1_warmstart -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ +export LIST_FILES="phyf000.tile1.nc \ phyf000.tile2.nc \ phyf000.tile3.nc \ phyf000.tile4.nc \ @@ -74,9 +68,21 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 -export DT_ATMOS="1200" -export LRADAR=.T. +export SYEAR=2019 +export SMONTH=07 +export SDAY=02 +export SHOUR=00 -export INPUT_NML=wsm6.nml.IN -export FV3_RUN=wsm6_run.IN +DT_ATMOS="600" + +export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN +export CCPP_SUITE=FV3_GFS_v16b_ugwpv1 +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN +export WLCLK=30 + +# Warm start +export WARM_START=.T. +export EXTERNAL_IC=.F. +export MOUNTAIN=.T. diff --git a/tests/tests/fv3_ccpp_gocart_clm b/tests/tests/fv3_ccpp_gocart_clm index 85a88e8ffa..3c27595ec7 100644 --- a/tests/tests/fv3_ccpp_gocart_clm +++ b/tests/tests/fv3_ccpp_gocart_clm @@ -65,7 +65,6 @@ export SATMEDMF=.false. export FV3_RUN=ccpp_gocart.IN export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp.gocart.nml.IN # Increase the number of nodes on Cheyenne to avoid out of memory errors diff --git a/tests/tests/fv3_ccpp_gsd b/tests/tests/fv3_ccpp_gsd index 077446b405..b1e1a7bb5d 100644 --- a/tests/tests/fv3_ccpp_gsd +++ b/tests/tests/fv3_ccpp_gsd @@ -109,7 +109,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_read_inc b/tests/tests/fv3_ccpp_gsd_RRTMGP similarity index 66% rename from tests/tests/fv3_read_inc rename to tests/tests/fv3_ccpp_gsd_RRTMGP index 4e6706aab7..2fb8236872 100644 --- a/tests/tests/fv3_read_inc +++ b/tests/tests/fv3_ccpp_gsd_RRTMGP @@ -1,12 +1,12 @@ ############################################################################### # -# FV3 read_inc test +# FV3 CCPP GSD RRTMGP (GF CU + Thompson MP + MYNN PBL + RUC LSM + RRTMGP) full (0-48h) test # ############################################################################### -export TEST_DESCR="Compare FV3 read_inc results with previous trunk version" +export TEST_DESCR="Compare FV3 CCPP GSD RRTMGP results with previous trunk version" -export CNTL_DIR=fv3_read_inc +export CNTL_DIR=fv3_gsd_RRTMGP export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ @@ -14,6 +14,18 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile4.nc \ atmos_4xdaily.tile5.nc \ atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ phyf027.tile1.nc \ phyf027.tile2.nc \ phyf027.tile3.nc \ @@ -26,6 +38,18 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ phyf048.tile4.nc \ phyf048.tile5.nc \ phyf048.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ dynf027.tile1.nc \ dynf027.tile2.nc \ dynf027.tile3.nc \ @@ -71,18 +95,30 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc" - export_fv3 -export WARM_START=.T. -export NGGPS_IC=.F. -export EXTERNAL_IC=.F. -export MAKE_NH=.F. -export MOUNTAIN=.T. -export NA_INIT=0 export FHMAX=48 export FDIAG=3 -export READ_INCREMENT=.T. -export NSTF_NAME=2,0,1,0,5 +export DT_ATMOS="600" +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.F. +export LRADAR=.T. +export LTAEROSOL=.T. + +export FV3_RUN=ccpp_gsd_RRTMGP_run.IN +export CCPP_SUITE=FV3_GSD_v0_RRTMGP +export INPUT_NML=ccpp_gsd_RRTMGP.nml.IN + +export HYBEDMF=.F. +export DO_MYNNEDMF=.T. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export FHCYC=0 +export LSM=3 +export LSOIL_LSM=9 + + +export WLCLK=30 diff --git a/tests/tests/fv3_h2ophys b/tests/tests/fv3_ccpp_gsd_RRTMGP_debug similarity index 68% rename from tests/tests/fv3_h2ophys rename to tests/tests/fv3_ccpp_gsd_RRTMGP_debug index c24e25828d..00d6519138 100644 --- a/tests/tests/fv3_h2ophys +++ b/tests/tests/fv3_ccpp_gsd_RRTMGP_debug @@ -1,12 +1,12 @@ -############################################################################### +########################################################################################## # -# FV3 H2O physics test +# FV3 CCPP GSD RRTMGP (GF CU + Thompson MP + MYNN PBL + RUC LSM + RRTMGP) 24h test in DEBUG mode # -############################################################################### +########################################################################################## -export TEST_DESCR="Compare FV3 H2O physics results with previous trunk version" +export TEST_DESCR="Compare FV3 CCPP GSD RRTMGP DEBUG results with previous trunk version" -export CNTL_DIR=fv3_h2ophys +export CNTL_DIR=fv3_gsd_RRTMGP_debug export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ @@ -20,24 +20,24 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ phyf000.tile4.nc \ phyf000.tile5.nc \ phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ + phyf003.tile1.nc \ + phyf003.tile2.nc \ + phyf003.tile3.nc \ + phyf003.tile4.nc \ + phyf003.tile5.nc \ + phyf003.tile6.nc \ dynf000.tile1.nc \ dynf000.tile2.nc \ dynf000.tile3.nc \ dynf000.tile4.nc \ dynf000.tile5.nc \ dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ + dynf003.tile1.nc \ + dynf003.tile2.nc \ + dynf003.tile3.nc \ + dynf003.tile4.nc \ + dynf003.tile5.nc \ + dynf003.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -71,11 +71,29 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ RESTART/sfc_data.tile5.nc \ RESTART/sfc_data.tile6.nc" - export_fv3 -export FV3_RUN=fv3_run.IN -export INPUT_NML=input.nml.IN +export FHMAX=3 +export FDIAG=3 + +export DT_ATMOS="600" +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.F. +export LRADAR=.T. +export LTAEROSOL=.T. + +export FV3_RUN=ccpp_gsd_RRTMGP_run.IN +export CCPP_SUITE=FV3_GSD_v0_RRTMGP +export INPUT_NML=ccpp_gsd_RRTMGP.nml.IN + +export HYBEDMF=.F. +export DO_MYNNEDMF=.T. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export FHCYC=0 +export LSM=3 +export LSOIL_LSM=9 -export H2O_PHYS=.T. +export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_coldstart b/tests/tests/fv3_ccpp_gsd_coldstart index d1343f0b9b..df3293e5c7 100644 --- a/tests/tests/fv3_ccpp_gsd_coldstart +++ b/tests/tests/fv3_ccpp_gsd_coldstart @@ -47,7 +47,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_debug b/tests/tests/fv3_ccpp_gsd_debug index e665bbf9e3..ae0c15445b 100644 --- a/tests/tests/fv3_ccpp_gsd_debug +++ b/tests/tests/fv3_ccpp_gsd_debug @@ -85,7 +85,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_diag3d_debug b/tests/tests/fv3_ccpp_gsd_diag3d_debug index cade76ed3e..c9797035f7 100644 --- a/tests/tests/fv3_ccpp_gsd_diag3d_debug +++ b/tests/tests/fv3_ccpp_gsd_diag3d_debug @@ -89,7 +89,6 @@ export MAX_OUTPUT_FIELDS=400 export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_drag_suite b/tests/tests/fv3_ccpp_gsd_drag_suite index e7f7cdfc0a..b10aeee7c2 100644 --- a/tests/tests/fv3_ccpp_gsd_drag_suite +++ b/tests/tests/fv3_ccpp_gsd_drag_suite @@ -85,7 +85,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0_drag_suite -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp b/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp index 022cd47b69..b598f56bc6 100644 --- a/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp +++ b/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp @@ -85,7 +85,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0_unified_ugwp_suite -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_lndp b/tests/tests/fv3_ccpp_gsd_lndp index ab71cc1fb5..51f18f714e 100644 --- a/tests/tests/fv3_ccpp_gsd_lndp +++ b/tests/tests/fv3_ccpp_gsd_lndp @@ -82,7 +82,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_mynnsfc b/tests/tests/fv3_ccpp_gsd_mynnsfc index fae4d8512b..e9bccdd285 100644 --- a/tests/tests/fv3_ccpp_gsd_mynnsfc +++ b/tests/tests/fv3_ccpp_gsd_mynnsfc @@ -110,7 +110,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0_mynnsfc -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_mynnsfc_debug b/tests/tests/fv3_ccpp_gsd_mynnsfc_debug index 21d9901715..f1967d6f46 100644 --- a/tests/tests/fv3_ccpp_gsd_mynnsfc_debug +++ b/tests/tests/fv3_ccpp_gsd_mynnsfc_debug @@ -86,7 +86,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0_mynnsfc -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_noah b/tests/tests/fv3_ccpp_gsd_noah index ff9dce91e7..59ca150b7e 100644 --- a/tests/tests/fv3_ccpp_gsd_noah +++ b/tests/tests/fv3_ccpp_gsd_noah @@ -109,7 +109,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_noah -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_noah_lndp b/tests/tests/fv3_ccpp_gsd_noah_lndp index 777c159993..41355f5a64 100644 --- a/tests/tests/fv3_ccpp_gsd_noah_lndp +++ b/tests/tests/fv3_ccpp_gsd_noah_lndp @@ -82,7 +82,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_noah -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc b/tests/tests/fv3_ccpp_gsd_noah_mynnsfc index 513ada1dc9..6cfa7b4e1f 100644 --- a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc +++ b/tests/tests/fv3_ccpp_gsd_noah_mynnsfc @@ -110,7 +110,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_noah_mynnsfc -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug b/tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug index 9aa27721d0..6ea180f71c 100644 --- a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug +++ b/tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug @@ -86,7 +86,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_noah_mynnsfc -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_sar b/tests/tests/fv3_ccpp_gsd_sar index 50118054cd..a5b06e5e7c 100644 --- a/tests/tests/fv3_ccpp_gsd_sar +++ b/tests/tests/fv3_ccpp_gsd_sar @@ -29,7 +29,6 @@ export TASKS=24 export MODEL_CONFIGURE=ccpp_gsd_sar-model_configure.IN export FV3_RUN=ccpp_gsd_sar_run.IN export CCPP_SUITE=FV3_GSD_SAR -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd_sar.nml.IN export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_sar_debug b/tests/tests/fv3_ccpp_gsd_sar_debug index 5c42084042..673f76627b 100644 --- a/tests/tests/fv3_ccpp_gsd_sar_debug +++ b/tests/tests/fv3_ccpp_gsd_sar_debug @@ -29,7 +29,6 @@ export TASKS=24 export MODEL_CONFIGURE=ccpp_gsd_sar-model_configure.IN export FV3_RUN=ccpp_gsd_sar_run.IN export CCPP_SUITE=FV3_GSD_SAR -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd_sar.nml.IN export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_unified_ugwp b/tests/tests/fv3_ccpp_gsd_unified_ugwp index 1425c0c4aa..abc40f8a08 100644 --- a/tests/tests/fv3_ccpp_gsd_unified_ugwp +++ b/tests/tests/fv3_ccpp_gsd_unified_ugwp @@ -109,7 +109,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0_unified_ugwp_suite -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gsd_warmstart b/tests/tests/fv3_ccpp_gsd_warmstart index 0d9d28950d..f00337997d 100644 --- a/tests/tests/fv3_ccpp_gsd_warmstart +++ b/tests/tests/fv3_ccpp_gsd_warmstart @@ -87,7 +87,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_h2ophys b/tests/tests/fv3_ccpp_h2ophys index a5fa8c0c61..3ff22e78f6 100644 --- a/tests/tests/fv3_ccpp_h2ophys +++ b/tests/tests/fv3_ccpp_h2ophys @@ -76,7 +76,6 @@ export_fv3 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017_h2ophys -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN export H2O_PHYS=.T. diff --git a/tests/tests/fv3_ccpp_hrrr b/tests/tests/fv3_ccpp_hrrr index 70c67c1afc..27e19500f5 100644 --- a/tests/tests/fv3_ccpp_hrrr +++ b/tests/tests/fv3_ccpp_hrrr @@ -85,7 +85,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_HRRR -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_iau b/tests/tests/fv3_ccpp_iau index 46d4d63e85..bbcc387dc0 100644 --- a/tests/tests/fv3_ccpp_iau +++ b/tests/tests/fv3_ccpp_iau @@ -88,6 +88,5 @@ export IAU_DRYMASSFIXER=.true. export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_lheatstrg b/tests/tests/fv3_ccpp_lheatstrg index 3b4e217ffd..6d40d3c63e 100644 --- a/tests/tests/fv3_ccpp_lheatstrg +++ b/tests/tests/fv3_ccpp_lheatstrg @@ -56,7 +56,6 @@ export_fv3 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN export LHEATSTRG=.T. diff --git a/tests/tests/fv3_ccpp_lndp b/tests/tests/fv3_ccpp_lndp index fa06bff90e..9ea3dc2847 100644 --- a/tests/tests/fv3_ccpp_lndp +++ b/tests/tests/fv3_ccpp_lndp @@ -77,7 +77,6 @@ export NODES=$(expr $TASKS / $TPN + 1) export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_lndp.nml.IN export LNDP_TYPE=2 diff --git a/tests/tests/fv3_ccpp_multigases b/tests/tests/fv3_ccpp_multigases index 26ebceffa7..8b2e579305 100644 --- a/tests/tests/fv3_ccpp_multigases +++ b/tests/tests/fv3_ccpp_multigases @@ -92,4 +92,3 @@ export NSTF_NAME=0,0,1,0,5 export INPUT_NML=ccpp_multi_gases.nml.IN export FV3_RUN=ccpp_multigases_run.IN export CCPP_SUITE=FV3_GFS_2017_fv3wam -export CCPP_LIB_DIR=ccpp/lib diff --git a/tests/tests/fv3_ccpp_mynn b/tests/tests/fv3_ccpp_mynn index 25d7243d7b..16a48c1714 100644 --- a/tests/tests/fv3_ccpp_mynn +++ b/tests/tests/fv3_ccpp_mynn @@ -80,7 +80,6 @@ export DO_SAT_ADJ=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GFS_v15_mynn -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_ntiedtke b/tests/tests/fv3_ccpp_ntiedtke index a4cf323740..6bae221a55 100644 --- a/tests/tests/fv3_ccpp_ntiedtke +++ b/tests/tests/fv3_ccpp_ntiedtke @@ -78,7 +78,6 @@ DT_ATMOS="600" export FV3_RUN=ccpp_gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_ntiedtke -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN diff --git a/tests/tests/fv3_ccpp_ozphys_2015 b/tests/tests/fv3_ccpp_ozphys_2015 index 9b17b13f56..95fe9918b9 100644 --- a/tests/tests/fv3_ccpp_ozphys_2015 +++ b/tests/tests/fv3_ccpp_ozphys_2015 @@ -76,7 +76,6 @@ export_fv3 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017_ozphys_2015 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN export OZ_PHYS_OLD=.F. diff --git a/tests/tests/fv3_ccpp_rap b/tests/tests/fv3_ccpp_rap index d3b2ab7df5..32df243fa0 100644 --- a/tests/tests/fv3_ccpp_rap +++ b/tests/tests/fv3_ccpp_rap @@ -85,7 +85,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_RAP -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_read_inc b/tests/tests/fv3_ccpp_read_inc index 85eae43bb9..d49e8ddb81 100644 --- a/tests/tests/fv3_ccpp_read_inc +++ b/tests/tests/fv3_ccpp_read_inc @@ -87,6 +87,5 @@ export NSTF_NAME=2,0,1,0,5 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_regional_c768 b/tests/tests/fv3_ccpp_regional_c768 index 16f1e0689e..6571c76bc6 100644 --- a/tests/tests/fv3_ccpp_regional_c768 +++ b/tests/tests/fv3_ccpp_regional_c768 @@ -25,7 +25,6 @@ export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional_c768 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_regional_c768.nml.IN export MODEL_CONFIGURE=regional_c768-model_configure.IN export FV3_RUN=ccpp_regional_c786_run.IN diff --git a/tests/tests/fv3_ccpp_regional_control b/tests/tests/fv3_ccpp_regional_control index 9381131b2b..4325f8a065 100644 --- a/tests/tests/fv3_ccpp_regional_control +++ b/tests/tests/fv3_ccpp_regional_control @@ -23,9 +23,9 @@ export FV3_RUN=ccpp_regional_run.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. +export HYBEDMF=.F. -export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional -export CCPP_LIB_DIR=ccpp/lib +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export INPUT_NML=ccpp_regional.nml.IN export FDIAG=3 diff --git a/tests/tests/fv3_ccpp_regional_control_debug b/tests/tests/fv3_ccpp_regional_control_debug new file mode 100644 index 0000000000..736ad8ada6 --- /dev/null +++ b/tests/tests/fv3_ccpp_regional_control_debug @@ -0,0 +1,35 @@ +############################################################################### +# +# FV3 CCPP regional control test +# +############################################################################### + +export TEST_DESCR="Compare FV3 CCPP regional control results with previous trunk version" + +export CNTL_DIR=fv3_regional_control_debug + +export LIST_FILES=" atmos_4xdaily.nc \ + fv3_history2d.nc \ + fv3_history.nc \ + RESTART/fv_core.res.tile1_new.nc \ + RESTART/fv_tracer.res.tile1_new.nc" + +export_fv3 + +export TASKS=40 +export FHMAX="01" + +export FV3_RUN=ccpp_regional_run.IN + +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. +export H2O_PHYS=.T. +export HYBEDMF=.F. + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn +export INPUT_NML=ccpp_regional.nml.IN + +export FDIAG=1 +export INPES=5 +export JNPES=8 +export WRITE_RESTART_WITH_BCS=.true. diff --git a/tests/tests/fv3_ccpp_regional_quilt b/tests/tests/fv3_ccpp_regional_quilt index bfb1d72d06..43b6eae94a 100644 --- a/tests/tests/fv3_ccpp_regional_quilt +++ b/tests/tests/fv3_ccpp_regional_quilt @@ -23,11 +23,13 @@ export FV3_RUN=ccpp_regional_run.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. +export HYBEDMF=.F. -export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional -export CCPP_LIB_DIR=ccpp/lib +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export INPUT_NML=ccpp_regional.nml.IN export FDIAG=3 export INPES=6 export JNPES=4 + +export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel b/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel index 126305f6ee..c1659a9681 100644 --- a/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel +++ b/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel @@ -23,12 +23,13 @@ export FV3_RUN=ccpp_regional_run.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. +export HYBEDMF=.F. - -export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional -export CCPP_LIB_DIR=ccpp/lib +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export INPUT_NML=ccpp_regional.nml.IN export FDIAG=3 export INPES=6 export JNPES=4 + +export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_regional_restart b/tests/tests/fv3_ccpp_regional_restart index c369ded8b5..db2fde1a4e 100644 --- a/tests/tests/fv3_ccpp_regional_restart +++ b/tests/tests/fv3_ccpp_regional_restart @@ -22,9 +22,9 @@ export FV3_RUN=ccpp_regional_run.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. +export HYBEDMF=.F. -export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional -export CCPP_LIB_DIR=ccpp/lib +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export INPUT_NML=ccpp_regional.nml.IN export FDIAG=3 diff --git a/tests/tests/fv3_ccpp_restart b/tests/tests/fv3_ccpp_restart index 2d1d34e98e..5a04227a59 100644 --- a/tests/tests/fv3_ccpp_restart +++ b/tests/tests/fv3_ccpp_restart @@ -6,38 +6,20 @@ export TEST_DESCR="Compare FV3 CCPP restart results with previous trunk version" -export CNTL_DIR=fv3_restart +export CNTL_DIR=fv3_control -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf027.tile1.nc \ - phyf027.tile2.nc \ - phyf027.tile3.nc \ - phyf027.tile4.nc \ - phyf027.tile5.nc \ - phyf027.tile6.nc \ - phyf048.tile1.nc \ - phyf048.tile2.nc \ - phyf048.tile3.nc \ - phyf048.tile4.nc \ - phyf048.tile5.nc \ - phyf048.tile6.nc \ - dynf027.tile1.nc \ - dynf027.tile2.nc \ - dynf027.tile3.nc \ - dynf027.tile4.nc \ - dynf027.tile5.nc \ - dynf027.tile6.nc \ - dynf048.tile1.nc \ - dynf048.tile2.nc \ - dynf048.tile3.nc \ - dynf048.tile4.nc \ - dynf048.tile5.nc \ - dynf048.tile6.nc \ +export LIST_FILES="phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -73,6 +55,8 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 +export FHROT=12 +export FHMAX=24 export WARM_START=.T. export NGGPS_IC=.F. @@ -80,12 +64,10 @@ export EXTERNAL_IC=.F. export MAKE_NH=.F. export MOUNTAIN=.T. export NA_INIT=0 -export FHMAX=48 export FDIAG=3 export NSTF_NAME=2,0,1,0,5 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_rrfs_v1beta b/tests/tests/fv3_ccpp_rrfs_v1beta index 793a4db849..61f83dd207 100644 --- a/tests/tests/fv3_ccpp_rrfs_v1beta +++ b/tests/tests/fv3_ccpp_rrfs_v1beta @@ -85,7 +85,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_RRFS_v1beta -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_rrfs_v1beta_debug b/tests/tests/fv3_ccpp_rrfs_v1beta_debug index 04db6bef3d..8c7475ef38 100644 --- a/tests/tests/fv3_ccpp_rrfs_v1beta_debug +++ b/tests/tests/fv3_ccpp_rrfs_v1beta_debug @@ -85,7 +85,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_RRFS_v1beta -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_sas b/tests/tests/fv3_ccpp_sas index 8ed7a46651..ab1bfd25aa 100644 --- a/tests/tests/fv3_ccpp_sas +++ b/tests/tests/fv3_ccpp_sas @@ -64,6 +64,5 @@ export WRITE_FSYNCFLAG=.true. export FV3_RUN=ccpp_gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_sas -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN diff --git a/tests/tests/fv3_ccpp_satmedmf b/tests/tests/fv3_ccpp_satmedmf index 956331ff6e..514e1a62c6 100644 --- a/tests/tests/fv3_ccpp_satmedmf +++ b/tests/tests/fv3_ccpp_satmedmf @@ -64,6 +64,5 @@ export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. export FV3_RUN=ccpp_satmedmf_run.IN export CCPP_SUITE=FV3_GFS_2017_satmedmf -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_satmedmfq b/tests/tests/fv3_ccpp_satmedmfq index 18c70c48f9..b4c4aa8d7b 100644 --- a/tests/tests/fv3_ccpp_satmedmfq +++ b/tests/tests/fv3_ccpp_satmedmfq @@ -65,6 +65,5 @@ export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. export FV3_RUN=ccpp_satmedmf_run.IN export CCPP_SUITE=FV3_GFS_2017_satmedmfq -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_shinhong b/tests/tests/fv3_ccpp_shinhong index 70a98a1988..77c65967a2 100644 --- a/tests/tests/fv3_ccpp_shinhong +++ b/tests/tests/fv3_ccpp_shinhong @@ -78,7 +78,6 @@ DT_ATMOS="1200" export FV3_RUN=ccpp_gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_shinhong -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN diff --git a/tests/tests/fv3_ccpp_stochy b/tests/tests/fv3_ccpp_stochy index e889d1dbf4..6ac9305c72 100644 --- a/tests/tests/fv3_ccpp_stochy +++ b/tests/tests/fv3_ccpp_stochy @@ -85,6 +85,5 @@ export FHMAX=12 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_stretched b/tests/tests/fv3_ccpp_stretched index 41745fd584..3bcca69498 100644 --- a/tests/tests/fv3_ccpp_stretched +++ b/tests/tests/fv3_ccpp_stretched @@ -88,5 +88,4 @@ export INPUT_NML=ccpp_stretched-input.nml.IN export FV3_RUN=ccpp_stretched_run.IN export CCPP_SUITE=FV3_GFS_2017_stretched -export CCPP_LIB_DIR=ccpp/lib diff --git a/tests/tests/fv3_ccpp_stretched_nest b/tests/tests/fv3_ccpp_stretched_nest index dc597842d7..378f384794 100644 --- a/tests/tests/fv3_ccpp_stretched_nest +++ b/tests/tests/fv3_ccpp_stretched_nest @@ -104,7 +104,6 @@ export INPUT_NEST02_NML=ccpp_input_nest02.nml.IN export FV3_RUN=ccpp_stretched_run.IN export CCPP_SUITE=FV3_GFS_2017_stretched -export CCPP_LIB_DIR=ccpp/lib if [[ $MACHINE_ID = *.gnu ]]; then export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_stretched_nest_debug b/tests/tests/fv3_ccpp_stretched_nest_debug index f23abe1623..ff207a968e 100644 --- a/tests/tests/fv3_ccpp_stretched_nest_debug +++ b/tests/tests/fv3_ccpp_stretched_nest_debug @@ -60,4 +60,3 @@ export INPUT_NEST02_NML=ccpp_input_nest02.nml.IN export FV3_RUN=ccpp_stretched_run.IN export CCPP_SUITE=FV3_GFS_2017_stretched -export CCPP_LIB_DIR=ccpp/lib diff --git a/tests/tests/fv3_ccpp_stretched_nest_quilt b/tests/tests/fv3_ccpp_stretched_nest_quilt index d5fa598f7c..8a9f8f6081 100644 --- a/tests/tests/fv3_ccpp_stretched_nest_quilt +++ b/tests/tests/fv3_ccpp_stretched_nest_quilt @@ -102,5 +102,4 @@ export MODEL_CONFIGURE=stretched-nest-quilt-model_configure.IN export FV3_RUN=ccpp_stretched_run.IN export CCPP_SUITE=FV3_GFS_2017_stretched -export CCPP_LIB_DIR=ccpp/lib diff --git a/tests/tests/fv3_ccpp_thompson b/tests/tests/fv3_ccpp_thompson index 8bbdde00fe..67ecbe9321 100644 --- a/tests/tests/fv3_ccpp_thompson +++ b/tests/tests/fv3_ccpp_thompson @@ -81,12 +81,19 @@ export LRADAR=.T. export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN -export CCPP_SUITE=FV3_GFS_v15_thompson -export CCPP_LIB_DIR=ccpp/lib +export CCPP_SUITE=FV3_GFS_v16_thompson export INPUT_NML=ccpp_gsd.nml.IN -export HYBEDMF=.T. +export HYBEDMF=.F. +export SATMEDMF=.T. export DO_MYNNEDMF=.F. + export IMFSHALCNV=2 export IMFDEEPCNV=2 +export IAER=5111 +export ICLIQ_SW=2 +export IOVR=3 + +export LHEATSTRG=.T. +export DO_TOFD=.T. diff --git a/tests/tests/fv3_ccpp_thompson_debug b/tests/tests/fv3_ccpp_thompson_debug index bbee9d6d58..d7586cb1ea 100644 --- a/tests/tests/fv3_ccpp_thompson_debug +++ b/tests/tests/fv3_ccpp_thompson_debug @@ -84,12 +84,19 @@ export LRADAR=.T. export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN -export CCPP_SUITE=FV3_GFS_v15_thompson -export CCPP_LIB_DIR=ccpp/lib +export CCPP_SUITE=FV3_GFS_v16_thompson export INPUT_NML=ccpp_gsd.nml.IN -export HYBEDMF=.T. +export HYBEDMF=.F. +export SATMEDMF=.T. export DO_MYNNEDMF=.F. + export IMFSHALCNV=2 export IMFDEEPCNV=2 +export IAER=5111 +export ICLIQ_SW=2 +export IOVR=3 + +export LHEATSTRG=.T. +export DO_TOFD=.T. diff --git a/tests/tests/fv3_ccpp_thompson_mynn b/tests/tests/fv3_ccpp_thompson_mynn index 665fbb31ea..18f643eed1 100644 --- a/tests/tests/fv3_ccpp_thompson_mynn +++ b/tests/tests/fv3_ccpp_thompson_mynn @@ -82,7 +82,6 @@ export LTAEROSOL=.T. export FV3_RUN=ccpp_gsd_run.IN export CCPP_SUITE=FV3_GFS_v15_thompson_mynn -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gsd.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_thompson_no_aero b/tests/tests/fv3_ccpp_thompson_no_aero index d177706e55..41b6e4696a 100644 --- a/tests/tests/fv3_ccpp_thompson_no_aero +++ b/tests/tests/fv3_ccpp_thompson_no_aero @@ -82,12 +82,19 @@ export NSRADAR_RESET=3600.0 export LTAEROSOL=.F. export FV3_RUN=ccpp_gsd_run.IN -export CCPP_SUITE=FV3_GFS_v15_thompson -export CCPP_LIB_DIR=ccpp/lib +export CCPP_SUITE=FV3_GFS_v16_thompson export INPUT_NML=ccpp_gsd.nml.IN -export HYBEDMF=.T. +export HYBEDMF=.F. +export SATMEDMF=.T. export DO_MYNNEDMF=.F. + export IMFSHALCNV=2 export IMFDEEPCNV=2 +export IAER=5111 +export ICLIQ_SW=2 +export IOVR=3 + +export LHEATSTRG=.T. +export DO_TOFD=.T. diff --git a/tests/tests/fv3_ccpp_thompson_no_aero_debug b/tests/tests/fv3_ccpp_thompson_no_aero_debug index 6a2cb30eb3..c21269307b 100644 --- a/tests/tests/fv3_ccpp_thompson_no_aero_debug +++ b/tests/tests/fv3_ccpp_thompson_no_aero_debug @@ -85,12 +85,19 @@ export NSRADAR_RESET=3600.0 export LTAEROSOL=.F. export FV3_RUN=ccpp_gsd_run.IN -export CCPP_SUITE=FV3_GFS_v15_thompson -export CCPP_LIB_DIR=ccpp/lib +export CCPP_SUITE=FV3_GFS_v16_thompson export INPUT_NML=ccpp_gsd.nml.IN -export HYBEDMF=.T. +export HYBEDMF=.F. +export SATMEDMF=.T. export DO_MYNNEDMF=.F. + export IMFSHALCNV=2 export IMFDEEPCNV=2 +export IAER=5111 +export ICLIQ_SW=2 +export IOVR=3 + +export LHEATSTRG=.T. +export DO_TOFD=.T. diff --git a/tests/tests/fv3_ccpp_wrtGauss_nemsio b/tests/tests/fv3_ccpp_wrtGauss_nemsio index f2abae72c2..e25c6e8342 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_nemsio +++ b/tests/tests/fv3_ccpp_wrtGauss_nemsio @@ -61,6 +61,5 @@ export WRITE_FSYNCFLAG=.true. export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGauss_nemsio_c192 b/tests/tests/fv3_ccpp_wrtGauss_nemsio_c192 index a711c51fcd..91ee4a51da 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_nemsio_c192 +++ b/tests/tests/fv3_ccpp_wrtGauss_nemsio_c192 @@ -82,6 +82,5 @@ export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGauss_nemsio_c768 b/tests/tests/fv3_ccpp_wrtGauss_nemsio_c768 index 8745937c65..756bb1639b 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_nemsio_c768 +++ b/tests/tests/fv3_ccpp_wrtGauss_nemsio_c768 @@ -104,6 +104,5 @@ export NEMS_CONFIGURE="nems.configure.blocked_atm_wav.IN" export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGauss_netcdf b/tests/tests/fv3_ccpp_wrtGauss_netcdf index 599c4147cf..aee1d8c0d6 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_netcdf +++ b/tests/tests/fv3_ccpp_wrtGauss_netcdf @@ -59,6 +59,5 @@ export OUTPUT_FILE="'netcdf'" export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGauss_netcdf_esmf b/tests/tests/fv3_ccpp_wrtGauss_netcdf_esmf index 5f94f1c878..fb3f5ef002 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_netcdf_esmf +++ b/tests/tests/fv3_ccpp_wrtGauss_netcdf_esmf @@ -59,6 +59,5 @@ export OUTPUT_FILE="'netcdf_esmf'" export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel b/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel index 83353fa45d..4653734353 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel +++ b/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel @@ -62,5 +62,4 @@ export NBITS=14 export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGlatlon_netcdf b/tests/tests/fv3_ccpp_wrtGlatlon_netcdf index cdb6f6314c..14e7f1778a 100644 --- a/tests/tests/fv3_ccpp_wrtGlatlon_netcdf +++ b/tests/tests/fv3_ccpp_wrtGlatlon_netcdf @@ -59,6 +59,5 @@ export OUTPUT_FILE="'netcdf'" export FV3_RUN=ccpp_control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_control.nml.IN diff --git a/tests/tests/fv3_ccpp_ysu b/tests/tests/fv3_ccpp_ysu index 734e687a87..6292f8e5d9 100644 --- a/tests/tests/fv3_ccpp_ysu +++ b/tests/tests/fv3_ccpp_ysu @@ -78,7 +78,6 @@ DT_ATMOS="600" export FV3_RUN=ccpp_gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_ysu -export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_gfdlmp.nml.IN diff --git a/tests/tests/fv3_control_32bit b/tests/tests/fv3_control_32bit deleted file mode 100644 index ef2468808a..0000000000 --- a/tests/tests/fv3_control_32bit +++ /dev/null @@ -1,76 +0,0 @@ -############################################################################### -# -# FV3 control compiled with 32-bit dynamics test -# -############################################################################### - -export TEST_DESCR="Compare FV3 32bit control results with previous trunk version" - -export CNTL_DIR=fv3_control_32bit - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - diff --git a/tests/tests/fv3_control_debug b/tests/tests/fv3_control_debug deleted file mode 100644 index be1e7098b9..0000000000 --- a/tests/tests/fv3_control_debug +++ /dev/null @@ -1,16 +0,0 @@ -############################################################################### -# -# FV3 control test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control results with previous trunk version" - -export CNTL_DIR=fv3_control - -export LIST_FILES="" - -export_fv3 - -export FHMAX="06" - diff --git a/tests/tests/fv3_cpt b/tests/tests/fv3_cpt deleted file mode 100644 index 776789a2c6..0000000000 --- a/tests/tests/fv3_cpt +++ /dev/null @@ -1,89 +0,0 @@ -############################################################################### -# -# FV3 CPT test -# -############################################################################### - -export TEST_DESCR="Compare FV3 CPT results with previous trunk version" - -export CNTL_DIR=fv3_cpt - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -export SATMEDMF=.F. -export HYBEDMF=.T. - -export DT_ATMOS="300" -export SYEAR='2017' -export SMONTH='08' -export SDAY='22' -export SHOUR='00' -export TASKS=204 -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=12 - - -export INPES='4' -export JNPES='8' - -export NPZ='127' -export NPZP='128' - - -export INPUT_NML=cpt.nml.IN -export FV3_RUN=cpt_run.IN -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - diff --git a/tests/tests/fv3_csawmg b/tests/tests/fv3_csawmg deleted file mode 100644 index ec0c0ec414..0000000000 --- a/tests/tests/fv3_csawmg +++ /dev/null @@ -1,66 +0,0 @@ -############################################################################### -# -# FV3 CSAWMG test -# -############################################################################### - -export TEST_DESCR="Compare FV3 csawmg results with previous trunk version" - -export CNTL_DIR=fv3_csawmg - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="600" - -export INPUT_NML=csawmg.nml.IN -export FV3_RUN=csawmg_run.IN -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - - diff --git a/tests/tests/fv3_csawmg3shoc127 b/tests/tests/fv3_csawmg3shoc127 deleted file mode 100644 index 04866b2fd2..0000000000 --- a/tests/tests/fv3_csawmg3shoc127 +++ /dev/null @@ -1,79 +0,0 @@ -############################################################################### -# -# FV3 CSAWMG3SHOC127 test -# -############################################################################### - -export TEST_DESCR="Compare 127 L FV3 with CSAW MG3 and SHOC results with previous trunk version" - -export CNTL_DIR=fv3_csawmg3shoc127 - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export DT_ATMOS="300" -export SYEAR='2017' -export SMONTH='08' -export SDAY='22' -export SHOUR='00' -export TASKS=204 -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=12 - - -export INPES='4' -export JNPES='8' - -export NPZ='127' -export NPZP='128' - -export INPUT_NML=csawmg3shoc127.nml.IN -export FV3_RUN=csawmg3shoc127_run.IN -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - diff --git a/tests/tests/fv3_gfdlmp b/tests/tests/fv3_gfdlmp deleted file mode 100644 index 58e176d08b..0000000000 --- a/tests/tests/fv3_gfdlmp +++ /dev/null @@ -1,65 +0,0 @@ -############################################################################### -# -# FV3 GFDL-MP test -# -############################################################################### - -export TEST_DESCR="Compare FV3 GFDL-MP results with previous trunk version" - -export CNTL_DIR=fv3_gfdlmp - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="1200" -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - -export INPUT_NML=gfdlmp.nml.IN -export FV3_RUN=gfdlmp_run.IN - diff --git a/tests/tests/fv3_gfdlmp_32bit b/tests/tests/fv3_gfdlmp_32bit deleted file mode 100644 index b4a11f0ef6..0000000000 --- a/tests/tests/fv3_gfdlmp_32bit +++ /dev/null @@ -1,65 +0,0 @@ -############################################################################### -# -# FV3 GFDL-MP compiled with 32-bit dynamics test -# -############################################################################### - -export TEST_DESCR="Compare FV3 32bit GFDL-MP results with previous trunk version" - -export CNTL_DIR=fv3_gfdlmp_32bit - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="1200" -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - -export INPUT_NML=gfdlmp.nml.IN -export FV3_RUN=gfdlmp_run.IN - diff --git a/tests/tests/fv3_gfdlmprad b/tests/tests/fv3_gfdlmprad deleted file mode 100644 index 47c4748d9c..0000000000 --- a/tests/tests/fv3_gfdlmprad +++ /dev/null @@ -1,80 +0,0 @@ -############################################################################### -# -# FV3 GFDL-MPrad test -# -############################################################################### - -export TEST_DESCR="Compare FV3 GFDL-MP radiation interaction option with the control" - -export CNTL_DIR=fv3_gfdlmprad - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - out_grd.glo_30m" - - -export_fv3 - -export TASKS=192 - -DT_ATMOS="1200" -export LGFDLMPRAD=.true. -export EFFR_IN=.true. - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - -export CPL=.true. -export CPLWAV=.T. -export atm_model='fv3' -export atm_petlist_bounds="0 149" -export wav_model='ww3' -export wav_petlist_bounds="150 191" -export coupling_interval_sec=3600.0 #coupling time step, want it to be multiple of 1800 and FV3 time step -export NEMS_CONFIGURE="nems.configure.blocked_atm_wav.IN" - -export INPUT_NML=gfdlmp.nml.IN -export FV3_RUN=gfdlmp_run.IN - diff --git a/tests/tests/fv3_gfdlmprad_32bit_post b/tests/tests/fv3_gfdlmprad_32bit_post deleted file mode 100644 index 2a9db85ab1..0000000000 --- a/tests/tests/fv3_gfdlmprad_32bit_post +++ /dev/null @@ -1,75 +0,0 @@ -############################################################################### -# -# FV3 GFDL-MPrad test -# -############################################################################### - -export TEST_DESCR="Compare FV3 GFDL-MP radiation interaction option with the control" - -export CNTL_DIR=fv3_gfdlmprad_32bit_post - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - GFSFLX.GrbF00 \ - GFSPRS.GrbF00 \ - GFSFLX.GrbF24 \ - GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="1200" -export LGFDLMPRAD=.true. -export EFFR_IN=.true. - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export OUTPUT_HISTORY=.true. -export WRITE_DOPOST=.true. -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - - -export INPUT_NML=gfdlmp.nml.IN -export FV3_RUN=gfdlmp_run.IN - diff --git a/tests/tests/fv3_gfdlmprad_atmwav b/tests/tests/fv3_gfdlmprad_atmwav deleted file mode 100644 index 57d1a101e0..0000000000 --- a/tests/tests/fv3_gfdlmprad_atmwav +++ /dev/null @@ -1,81 +0,0 @@ -############################################################################### -# -# FV3 GFDL-MPrad 2way atm-way coupling test -# -############################################################################### - -export TEST_DESCR="Compare FV3 GFDL-MP radiation interaction 2way atm-way coupling option with the control" - -export CNTL_DIR=fv3_gfdlmprad_atmwav - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - out_grd.glo_30m" - - -export_fv3 - -export TASKS=192 - -DT_ATMOS="1200" -export LGFDLMPRAD=.true. -export EFFR_IN=.true. - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - -export CPL=.true. -export CPLWAV=.T. -export CPLWAV2ATM=.T. -export atm_model='fv3' -export atm_petlist_bounds="0 149" -export wav_model='ww3' -export wav_petlist_bounds="150 191" -export coupling_interval_sec=1200.0 #coupling time step, want it to be multiple of 1800 and FV3 time step -export NEMS_CONFIGURE="nems.configure.blocked_atm_wav_2way.IN" - -export INPUT_NML=gfdlmp.nml.IN -export FV3_RUN=gfdlmp_run.IN - diff --git a/tests/tests/fv3_gfdlmprad_gwd b/tests/tests/fv3_gfdlmprad_gwd deleted file mode 100644 index a3e8e59dc2..0000000000 --- a/tests/tests/fv3_gfdlmprad_gwd +++ /dev/null @@ -1,70 +0,0 @@ -############################################################################### -# -# FV3 GFDL-MPrad gravity wave drag test -# -############################################################################### - -export TEST_DESCR="Compare FV3 GFDL-MP radiation interaction option and gravity wave drag with the control" - -export CNTL_DIR=fv3_gfdlmprad_gwd - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="1200" -export LGFDLMPRAD=.true. -export EFFR_IN=.true. -export DO_UGWP=.true. -export DO_TOFD=.true. - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - -export INPUT_NML=gfdlmp.nml.IN -export FV3_RUN=gfdlmp_run.IN - diff --git a/tests/tests/fv3_gfdlmprad_noahmp b/tests/tests/fv3_gfdlmprad_noahmp deleted file mode 100644 index 8c507c858b..0000000000 --- a/tests/tests/fv3_gfdlmprad_noahmp +++ /dev/null @@ -1,71 +0,0 @@ -############################################################################### -# -# FV3 GFDL-MPrad Noah MP test -# -############################################################################### - -export TEST_DESCR="Compare FV3 GFDL-MP radiation interaction and Noah MP with the control" - -export CNTL_DIR=fv3_gfdlmprad_noahmp - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="1200" -export LGFDLMPRAD=.true. -export EFFR_IN=.true. -export LSM=2 -export LANDICE=.false. - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - - -export INPUT_NML=gfdlmp.nml.IN -export FV3_RUN=gfdlmp_run.IN - diff --git a/tests/tests/fv3_gfsv16_csawmg b/tests/tests/fv3_gfsv16_csawmg deleted file mode 100644 index 329296f167..0000000000 --- a/tests/tests/fv3_gfsv16_csawmg +++ /dev/null @@ -1,67 +0,0 @@ -############################################################################### -# -# FV3 gfsv16_csawmg test -# -############################################################################### - -export TEST_DESCR="Compare FV3 gfsv16 csawmg results with previous trunk version" - -export CNTL_DIR=fv3_gfsv16_csawmg - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="600" - -export INPUT_NML=gfsv16_csawmg.nml.IN -export FV3_RUN=gfsv16_csawmg_run.IN -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. -export IAER=1111 - - diff --git a/tests/tests/fv3_gfsv16_csawmgt b/tests/tests/fv3_gfsv16_csawmgt deleted file mode 100644 index 540f7f6ec1..0000000000 --- a/tests/tests/fv3_gfsv16_csawmgt +++ /dev/null @@ -1,67 +0,0 @@ -############################################################################### -# -# FV3 gfsv16_csawmgt test -# -############################################################################### - -export TEST_DESCR="Compare FV3 gfsv16 csawmgt results with previous trunk version" - -export CNTL_DIR=fv3_gfsv16_csawmgt - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="600" - -export INPUT_NML=gfsv16_csawmg.nml.IN -export FV3_RUN=gfsv16_csawmg_run.IN -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. -export IAER=111 - - diff --git a/tests/tests/fv3_gocart_clm b/tests/tests/fv3_gocart_clm deleted file mode 100644 index 4edc8b8892..0000000000 --- a/tests/tests/fv3_gocart_clm +++ /dev/null @@ -1,69 +0,0 @@ -############################################################################### -# -# FV3 gocart_clm test -# -############################################################################### - -export TEST_DESCR="Compare FV3 gocart_clm results with previous trunk version" - -export CNTL_DIR=fv3_gocart_clm - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="1200" -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. -export IAER=1111 -export HYBEDMF=.true. -export SATMEDMF=.false. - - -export INPUT_NML=fv3.gocart.nml.IN -export FV3_RUN=fv3_gocart.IN - diff --git a/tests/tests/fv3_iau b/tests/tests/fv3_iau deleted file mode 100644 index 3a0065eb1a..0000000000 --- a/tests/tests/fv3_iau +++ /dev/null @@ -1,89 +0,0 @@ -############################################################################### -# -# FV3 IAU test -# -############################################################################### - -export TEST_DESCR="Compare FV3 IAU results with previous trunk version" - -export CNTL_DIR=fv3_iau - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf027.tile1.nc \ - phyf027.tile2.nc \ - phyf027.tile3.nc \ - phyf027.tile4.nc \ - phyf027.tile5.nc \ - phyf027.tile6.nc \ - phyf048.tile1.nc \ - phyf048.tile2.nc \ - phyf048.tile3.nc \ - phyf048.tile4.nc \ - phyf048.tile5.nc \ - phyf048.tile6.nc \ - dynf027.tile1.nc \ - dynf027.tile2.nc \ - dynf027.tile3.nc \ - dynf027.tile4.nc \ - dynf027.tile5.nc \ - dynf027.tile6.nc \ - dynf048.tile1.nc \ - dynf048.tile2.nc \ - dynf048.tile3.nc \ - dynf048.tile4.nc \ - dynf048.tile5.nc \ - dynf048.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export WARM_START=.T. -export NGGPS_IC=.F. -export EXTERNAL_IC=.F. -export MAKE_NH=.F. -export MOUNTAIN=.T. -export NA_INIT=0 -export FHMAX=48 -export FDIAG=3 -export NSTF_NAME=2,0,1,0,5 -export IAU_INC_FILES="fv3_increment.nc" -export IAU_DRYMASSFIXER=.true. - - diff --git a/tests/tests/fv3_lheatstrg b/tests/tests/fv3_lheatstrg deleted file mode 100644 index 093173f650..0000000000 --- a/tests/tests/fv3_lheatstrg +++ /dev/null @@ -1,62 +0,0 @@ -############################################################################### -# -# FV3 lheatstrg test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control with lheatstrg on Gaussian grid nemsio output results with previous trunk version" - -export CNTL_DIR=fv3_lheatstrg - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export LHEATSTRG=.T. -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - diff --git a/tests/tests/fv3_ozphys_2015 b/tests/tests/fv3_ozphys_2015 deleted file mode 100644 index 9bcb51bb9f..0000000000 --- a/tests/tests/fv3_ozphys_2015 +++ /dev/null @@ -1,81 +0,0 @@ -############################################################################### -# -# FV3 ozone physics 2015 test -# -############################################################################### - -export TEST_DESCR="Compare FV3 ozone physics 2015 results with previous trunk version" - -export CNTL_DIR=fv3_ozphys_2015 - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export FV3_RUN=fv3_run.IN - -export OZ_PHYS_OLD=.F. -export OZ_PHYS_NEW=.T. - diff --git a/tests/tests/fv3_regional_c768 b/tests/tests/fv3_regional_c768 deleted file mode 100644 index 348196c5da..0000000000 --- a/tests/tests/fv3_regional_c768 +++ /dev/null @@ -1,22 +0,0 @@ -############################################################################### -# -# FV3 regional c768 test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional c768 results with previous trunk version" - -export CNTL_DIR=fv3_regional_c768 - -export LIST_FILES=" atmos_4xdaily.nc \ - fv3_history2d.nc \ - fv3_history.nc " - -export_fv3 - -export TASKS=480 -export WLCLK=30 - -export FV3_RUN=fv3_regional_run.IN - -export INPUT_NML=regional_c768.nml.IN \ No newline at end of file diff --git a/tests/tests/fv3_regional_control b/tests/tests/fv3_regional_control deleted file mode 100644 index df60ffb255..0000000000 --- a/tests/tests/fv3_regional_control +++ /dev/null @@ -1,28 +0,0 @@ -############################################################################### -# -# FV3 regional control test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional control results with previous trunk version" - -export CNTL_DIR=fv3_regional_control - -export LIST_FILES=" atmos_4xdaily.nc \ - fv3_history2d.nc \ - fv3_history.nc \ - RESTART/fv_core.res.tile1_new.nc \ - RESTART/fv_tracer.res.tile1_new.nc" - -export_fv3 - -export TASKS=24 - -export FV3_RUN=fv3_regional_run.IN - -export INPUT_NML=regional.nml.IN - -export FDIAG=3 -export INPES=4 -export JNPES=6 -export WRITE_RESTART_WITH_BCS=.true. diff --git a/tests/tests/fv3_regional_quilt b/tests/tests/fv3_regional_quilt deleted file mode 100644 index 2b46afbc52..0000000000 --- a/tests/tests/fv3_regional_quilt +++ /dev/null @@ -1,27 +0,0 @@ -############################################################################### -# -# FV3 regional control test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional quilt results with previous trunk version" - -export CNTL_DIR=fv3_regional_quilt - -export LIST_FILES=" atmos_4xdaily.nc \ - dynf000.nc \ - dynf024.nc \ - phyf000.nc \ - phyf024.nc " - -export_fv3 - -export TASKS=28 - -export FV3_RUN=fv3_regional_run.IN - -export INPUT_NML=regional.nml.IN - -export FDIAG=3 -export INPES=6 -export JNPES=4 diff --git a/tests/tests/fv3_regional_restart b/tests/tests/fv3_regional_restart deleted file mode 100644 index d6c84732be..0000000000 --- a/tests/tests/fv3_regional_restart +++ /dev/null @@ -1,37 +0,0 @@ -############################################################################### -# -# FV3 regional restart test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional restart results with previous trunk version" - -export CNTL_DIR=fv3_regional_restart - -export LIST_FILES=" atmos_4xdaily.nc \ - fv3_history2d.nc \ - fv3_history.nc " - -export_fv3 - -export TASKS=24 -export WARM_START=.T. - -export FV3_RUN=fv3_regional_run.IN - -export INPUT_NML=regional.nml.IN - -export FDIAG=3 -export INPES=4 -export JNPES=6 - -export WARM_START=.T. -export NGGPS_IC=.F. -export EXTERNAL_IC=.F. -# DH* The correct setting would be .F.? However the official -# regression test baseline uses MAKE_NH=.T. -#export MAKE_NH=.F. -export MAKE_NH=.T. -# *DH -export MOUNTAIN=.T. -export NA_INIT=0 diff --git a/tests/tests/fv3_sas b/tests/tests/fv3_sas deleted file mode 100644 index 0c86ddc372..0000000000 --- a/tests/tests/fv3_sas +++ /dev/null @@ -1,67 +0,0 @@ -############################################################################### -# -# FV3 SAS test -# -############################################################################### - -export TEST_DESCR="Compare FV3 SAS results with previous trunk version" - -export CNTL_DIR=fv3_sas - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="1200" -export IMFSHALCNV=1 -export IMFDEEPCNV=1 -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - -export INPUT_NML=gfdlmp.nml.IN -export FV3_RUN=gfdlmp_run.IN - diff --git a/tests/tests/fv3_satmedmf b/tests/tests/fv3_satmedmf deleted file mode 100644 index da8a7ed947..0000000000 --- a/tests/tests/fv3_satmedmf +++ /dev/null @@ -1,66 +0,0 @@ -############################################################################### -# -# FV3 satmedmf test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control with satmedmf on Gaussian grid nemsio output results with previous trunk version" - -export CNTL_DIR=fv3_satmedmf - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export DT_ATMOS="1200" - -export SATMEDMF=.T. -export HYBEDMF=.F. -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. -export FV3_RUN=satmedmf_run.IN - diff --git a/tests/tests/fv3_satmedmfq b/tests/tests/fv3_satmedmfq deleted file mode 100644 index eb2c3b2e24..0000000000 --- a/tests/tests/fv3_satmedmfq +++ /dev/null @@ -1,67 +0,0 @@ -############################################################################### -# -# FV3 satmedmfq test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control with satmedmfq on Gaussian grid nemsio output results with previous trunk version" - -export CNTL_DIR=fv3_satmedmfq - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export DT_ATMOS="1200" - -export SATMEDMF=.T. -export ISATMEDMF=1 -export HYBEDMF=.F. -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. -export FV3_RUN=satmedmf_run.IN - diff --git a/tests/tests/fv3_stretched b/tests/tests/fv3_stretched deleted file mode 100644 index 94ccbb2936..0000000000 --- a/tests/tests/fv3_stretched +++ /dev/null @@ -1,88 +0,0 @@ -############################################################################### -# -# FV3 control test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control results with previous trunk version" - -export CNTL_DIR=fv3_stretched -export LIST_FILES=" atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - fv3_history2d.tile1.nc \ - fv3_history2d.tile2.nc \ - fv3_history2d.tile3.nc \ - fv3_history2d.tile4.nc \ - fv3_history2d.tile5.nc \ - fv3_history2d.tile6.nc \ - fv3_history.tile1.nc \ - fv3_history.tile2.nc \ - fv3_history.tile3.nc \ - fv3_history.tile4.nc \ - fv3_history.tile5.nc \ - fv3_history.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - -export_fv3 - -INPES=$INPES_stretch -JNPES=$JNPES_stretch -TPN=$TPN_stretch -TASKS=$TASKS_stretch - -MAKE_NH='.T.' -NA_INIT='1' -EXTERNAL_IC='.T.' -NGGPS_IC='.T.' -MOUNTAIN='.F.' -WARM_START='.F.' -FDIAG='3' - -HYBEDMF='.T.' -SATMEDMF='.F.' - -SYEAR="2018" -SMONTH="10" -SDAY="15" -SHOUR="00" -FHMAX="48" -DT_ATMOS="450" -QUILTING=.false. - -export INPUT_NML=stretched-input.nml.IN -export FV3_RUN=fv3_stretched_run.IN diff --git a/tests/tests/fv3_stretched_nest b/tests/tests/fv3_stretched_nest deleted file mode 100644 index 4107db9b07..0000000000 --- a/tests/tests/fv3_stretched_nest +++ /dev/null @@ -1,108 +0,0 @@ -############################################################################### -# -# FV3 control test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control results with previous trunk version" - -export CNTL_DIR=fv3_stretched_nest -export LIST_FILES=" atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - atmos_4xdaily.nest02.nc \ - fv3_history2d.tile1.nc \ - fv3_history2d.tile2.nc \ - fv3_history2d.tile3.nc \ - fv3_history2d.tile4.nc \ - fv3_history2d.tile5.nc \ - fv3_history2d.tile6.nc \ - fv3_history2d.nest02.nc \ - fv3_history.tile1.nc \ - fv3_history.tile2.nc \ - fv3_history.tile3.nc \ - fv3_history.tile4.nc \ - fv3_history.tile5.nc \ - fv3_history.tile6.nc \ - fv3_history.nest02.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.nest02.nc \ - RESTART/fv_BC_ne.res.nest02.nc \ - RESTART/fv_BC_sw.res.nest02.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_core.res.nest02.tile7.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_srf_wnd.res.nest02.tile7.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/fv_tracer.res.nest02.tile7.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/phy_data.nest02.tile7.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/sfc_data.nest02.tile7.nc" - -export_fv3 - -INPES=$INPES_strnest -JNPES=$JNPES_strnest -TPN=$TPN_strnest -TASKS=$TASKS_strnest - -export INPES_NEST='6' -export JNPES_NEST='8' -export MAKE_NH_NEST='.F.' - -export MAKE_NH='.T.' -export NA_INIT='1' -export EXTERNAL_IC='.T.' -export NGGPS_IC='.T.' -export MOUNTAIN='.F.' -export WARM_START='.F.' -export FDIAG='3' - -export HYBEDMF='.T.' -export SATMEDMF='.F.' - -export SYEAR="2018" -export SMONTH="10" -export SDAY="15" -export SHOUR="00" -export FHMAX="48" -export DT_ATMOS="450" -QUILTING=.false. - -export INPUT_NML=stretched-nest-input.nml.IN -export INPUT_NEST02_NML=input_nest02.nml.IN -export FV3_RUN=fv3_stretched_run.IN - -if [[ $MACHINE_ID = *.gnu ]]; then - export WLCLK=30 -fi diff --git a/tests/tests/fv3_stretched_nest_debug b/tests/tests/fv3_stretched_nest_debug deleted file mode 100644 index 446ee9502c..0000000000 --- a/tests/tests/fv3_stretched_nest_debug +++ /dev/null @@ -1,46 +0,0 @@ -############################################################################### -# -# FV3 control test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control results with previous trunk version" - -export CNTL_DIR=fv3_stretched_nest -export LIST_FILES= - -export_fv3 - -INPES=$INPES_strnest -JNPES=$JNPES_strnest -TPN=$TPN_strnest -TASKS=$TASKS_strnest - -export INPES_NEST='6' -export JNPES_NEST='8' -export MAKE_NH_NEST='.F.' - -export MAKE_NH='.T.' -export NA_INIT='1' -export EXTERNAL_IC='.T.' -export NGGPS_IC='.T.' -export MOUNTAIN='.F.' -export WARM_START='.F.' -export FDIAG='3' - -export HYBEDMF='.T.' -export SATMEDMF='.F.' - -export SYEAR="2018" -export SMONTH="10" -export SDAY="15" -export SHOUR="00" -export FHMAX="03" -export DT_ATMOS="450" -QUILTING=.false. - -export WLCLK=30 - -export INPUT_NML=stretched-nest-input.nml.IN -export INPUT_NEST02_NML=input_nest02.nml.IN -export FV3_RUN=fv3_stretched_run.IN diff --git a/tests/tests/fv3_stretched_nest_quilt b/tests/tests/fv3_stretched_nest_quilt deleted file mode 100644 index 4b9a79ba43..0000000000 --- a/tests/tests/fv3_stretched_nest_quilt +++ /dev/null @@ -1,102 +0,0 @@ -############################################################################### -# -# FV3 control test -# -############################################################################### - -export TEST_DESCR="Compare FV3 control results with previous trunk version" - -export CNTL_DIR=fv3_stretched_nest_quilt -export LIST_FILES=" atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - atmos_4xdaily.nest02.nc \ - dynf000.nc \ - dynf001.nc \ - dynf006.nc \ - dynf012.nc \ - dynf024.nc \ - dynf048.nc \ - phyf000.nc \ - phyf001.nc \ - phyf006.nc \ - phyf012.nc \ - phyf024.nc \ - phyf048.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.nest02.nc \ - RESTART/fv_BC_ne.res.nest02.nc \ - RESTART/fv_BC_sw.res.nest02.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_core.res.nest02.tile7.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_srf_wnd.res.nest02.tile7.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/fv_tracer.res.nest02.tile7.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/phy_data.nest02.tile7.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/sfc_data.nest02.tile7.nc" - -export_fv3 - -INPES=$INPES_strnest -JNPES=$JNPES_strnest -TPN=$TPN_strnest -TASKS=108 - -export INPES_NEST='6' -export JNPES_NEST='8' -export MAKE_NH_NEST='.F.' - -export MAKE_NH='.T.' -export NA_INIT='1' -export EXTERNAL_IC='.T.' -export NGGPS_IC='.T.' -export MOUNTAIN='.F.' -export WARM_START='.F.' -export FDIAG='3' - -export HYBEDMF='.T.' -export SATMEDMF='.F.' - -export SYEAR="2018" -export SMONTH="10" -export SDAY="15" -export SHOUR="00" -export FHMAX="48" -export DT_ATMOS="450" - -export INPUT_NML=stretched-nest-input.nml.IN -export INPUT_NEST02_NML=input_nest02.nml.IN -export MODEL_CONFIGURE=stretched-nest-quilt-model_configure.IN -export FV3_RUN=fv3_stretched_run.IN diff --git a/tests/tests/fv3_thompson b/tests/tests/fv3_thompson deleted file mode 100644 index fdb367122c..0000000000 --- a/tests/tests/fv3_thompson +++ /dev/null @@ -1,86 +0,0 @@ -############################################################################### -# -# FV3 Thompson MP test -# -############################################################################### - -export TEST_DESCR="Compare FV3 Thompson MP results with previous trunk version" - -export CNTL_DIR=fv3_thompson - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc" - - -export_fv3 - -export DT_ATMOS="1200" -export LRADAR=.T. - -export INPUT_NML=thompson.nml.IN -export FV3_RUN=thompson_run.IN - - -if [[ $MACHINE_ID = cheyenne.intel ]]; then - export WLCLK=30 -fi \ No newline at end of file diff --git a/tests/tests/fv3_wrtGauss_nemsio b/tests/tests/fv3_wrtGauss_nemsio deleted file mode 100644 index 20d2362686..0000000000 --- a/tests/tests/fv3_wrtGauss_nemsio +++ /dev/null @@ -1,61 +0,0 @@ -############################################################################### -# -# FV3 Gaussian grid nemsio output test -# -############################################################################### - -export TEST_DESCR="Compare FV3 Gaussian grid nemsio output results with previous trunk version" - -export CNTL_DIR=fv3_wrtGauss_nemsio - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - diff --git a/tests/tests/fv3_wrtGauss_nemsio_c192 b/tests/tests/fv3_wrtGauss_nemsio_c192 deleted file mode 100644 index 3adc298761..0000000000 --- a/tests/tests/fv3_wrtGauss_nemsio_c192 +++ /dev/null @@ -1,83 +0,0 @@ -############################################################################### -# -# FV3 c192 Gaussian grid nemsio output test -# -################################################################################ - -export TEST_DESCR="Compare FV3 c192 Gaussian grid nemsio output results with previous trunk version" - -export CNTL_DIR=fv3_wrtGauss_nemsio_c192 - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 -export TASKS=300 -export INPES=6 -export JNPES=8 -export NPX=193 -export NPY=193 -export NPZ=64 -export NPZP=65 -export SYEAR=2017 -export SMONTH=11 -export SDAY=01 -export DT_ATMOS=900 -export FHMAX=24 -export WLCLK=30 -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=12 -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. -export IMO=768 -export JMO=384 -export FNALBC="'global_snowfree_albedo.bosu.t382.768.384.rg.grb'," -export FNVETC="'global_vegtype.igbp.t382.768.384.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," -export FNSMCC="'global_soilmgldas.t382.768.384.grb'," -export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," - -# diff --git a/tests/tests/fv3_wrtGauss_nemsio_c768 b/tests/tests/fv3_wrtGauss_nemsio_c768 deleted file mode 100644 index 566c744e48..0000000000 --- a/tests/tests/fv3_wrtGauss_nemsio_c768 +++ /dev/null @@ -1,104 +0,0 @@ -############################################################################### -# -# FV3 c768 Gaussian grid nemsio output test -# -################################################################################ - -export TEST_DESCR="Compare FV3 c768 Gaussian grid nemsio output results with previous trunk version" - -export CNTL_DIR=fv3_wrtGauss_nemsio_c768 - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf006.nemsio \ - dynf006.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - out_grd.glo_10m - out_grd.ant_9km - out_grd.aoc_9km" - - -export_fv3 - -export TASKS=1470 -if [[ $MACHINE_ID = cheyenne.* ]]; then - export TPN=36 -elif [[ $MACHINE_ID = hera.* ]]; then - export TPN=10 -elif [[ $MACHINE_ID = wcoss_cray ]]; then - export TPN=6 -else - export TPN=12 -fi - -export INPES=16 -export JNPES=12 -export NPX=769 -export NPY=769 -export NPZ=64 -export NPZP=65 -export SYEAR=2017 -export SMONTH=01 -export SDAY=06 -export DT_ATMOS=225 -export FHMAX=06 -export WLCLK=30 -export WRITE_GROUP=3 -export WRTTASK_PER_GROUP=36 -export FDIAG=0,1,2,3,4,5,6 -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. -export IMO=3072 -export JMO=1536 -export FNALBC="'global_snowfree_albedo.bosu.t1534.3072.1536.rg.grb'," -export FNVETC="'global_vegtype.igbp.t1534.3072.1536.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t1534.3072.1536.rg.grb'," -export FNSMCC="'global_soilmgldas.t1534.3072.1536.grb'," -export FNABSC="'global_mxsnoalb.uariz.t1534.3072.1536.rg.grb'," - -export CPL=.true. -export CPLWAV=.T. -export atm_model='fv3' -export atm_petlist_bounds="0 1259" -export wav_model='ww3' -export wav_petlist_bounds="1260 1469" -export coupling_interval_sec=1800.0 #coupling time step, want it to be multiple of 1800 and FV3 time step -export NEMS_CONFIGURE="nems.configure.blocked_atm_wav.IN" - diff --git a/tests/tests/fv3_wrtGauss_netcdf b/tests/tests/fv3_wrtGauss_netcdf deleted file mode 100644 index c0690ec0e3..0000000000 --- a/tests/tests/fv3_wrtGauss_netcdf +++ /dev/null @@ -1,59 +0,0 @@ -############################################################################### -# -# FV3 Gaussian grid netcdf output test -# -############################################################################### - -export TEST_DESCR="Compare FV3 Gaussian grid netcdf output results with previous trunk version" - -export CNTL_DIR=fv3_wrtGauss_netcdf - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nc \ - phyf024.nc \ - dynf000.nc \ - dynf024.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'netcdf'" - diff --git a/tests/tests/fv3_wrtGauss_netcdf_debug b/tests/tests/fv3_wrtGauss_netcdf_debug deleted file mode 100644 index fe2799abe9..0000000000 --- a/tests/tests/fv3_wrtGauss_netcdf_debug +++ /dev/null @@ -1,18 +0,0 @@ -############################################################################### -# -# FV3 Gaussian grid netcdf output test -# -############################################################################### - -export TEST_DESCR="Compare FV3 Gaussian grid netcdf output results with previous trunk version" - -export CNTL_DIR=fv3_wrtGauss_netcdf - -export LIST_FILES="" - -export_fv3 - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'netcdf'" -export FHMAX="03" - diff --git a/tests/tests/fv3_wrtGauss_netcdf_esmf b/tests/tests/fv3_wrtGauss_netcdf_esmf deleted file mode 100644 index 63c5713f1f..0000000000 --- a/tests/tests/fv3_wrtGauss_netcdf_esmf +++ /dev/null @@ -1,59 +0,0 @@ -############################################################################### -# -# FV3 Gaussian grid netcdf output test -# -############################################################################### - -export TEST_DESCR="Compare FV3 Gaussian grid netcdf output results with previous trunk version" - -export CNTL_DIR=fv3_wrtGauss_netcdf_esmf - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nc \ - phyf024.nc \ - dynf000.nc \ - dynf024.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'netcdf_esmf'" - diff --git a/tests/tests/fv3_wrtGlatlon_netcdf b/tests/tests/fv3_wrtGlatlon_netcdf deleted file mode 100644 index 1c38e65078..0000000000 --- a/tests/tests/fv3_wrtGlatlon_netcdf +++ /dev/null @@ -1,59 +0,0 @@ -############################################################################### -# -# FV3 Global latlon grid netcdf output test -# -############################################################################### - -export TEST_DESCR="Compare FV3 global latlon grid netcdf output results with previous trunk version" - -export CNTL_DIR=fv3_wrtGlatlon_netcdf - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nc \ - phyf024.nc \ - dynf000.nc \ - dynf024.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -export OUTPUT_GRID="'global_latlon'" -export OUTPUT_FILE="'netcdf'" - diff --git a/tests/utest b/tests/utest index a84e7c93e2..e9dcc83413 100755 --- a/tests/utest +++ b/tests/utest @@ -136,8 +136,6 @@ run_utests() { case $rc in std_base) CREATE_BASELINE=true - RTPWD=$baseline_location - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env export UNIT_TEST=true @@ -147,8 +145,6 @@ run_utests() { ;; std) CREATE_BASELINE=false - RTPWD=$NEW_BASELINE - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env export UNIT_TEST=true @@ -157,8 +153,6 @@ run_utests() { ;; thr) CREATE_BASELINE=false - RTPWD=$NEW_BASELINE - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base THRD=2 # INPES is sometimes odd, so use JNPES. Make sure JNPES is divisible by THRD @@ -178,8 +172,6 @@ run_utests() { ;; mpi) CREATE_BASELINE=false - RTPWD=$NEW_BASELINE - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base JNPES=$(( JNPES/2 )) WRITE_GROUP=2 @@ -198,8 +190,6 @@ run_utests() { ;; dcp) CREATE_BASELINE=false - RTPWD=$NEW_BASELINE - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base temp=$INPES INPES=$JNPES @@ -213,8 +203,6 @@ run_utests() { ;; rst) # this is not going to work for regional model CREATE_BASELINE=false - RTPWD=$NEW_BASELINE - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_std_base # Set up date and time of restart files for restart run RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( SHOUR + FHMAX/2 )))0000" @@ -277,8 +265,6 @@ run_utests() { ;; bit_base) CREATE_BASELINE=true - RTPWD=$baseline_location - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_bit_base comp_nm=bit cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env @@ -288,8 +274,6 @@ run_utests() { ;; bit) CREATE_BASELINE=false - RTPWD=$NEW_BASELINE - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_bit_base comp_nm=bit cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env @@ -299,8 +283,6 @@ run_utests() { ;; dbg_base) CREATE_BASELINE=true - RTPWD=$baseline_location - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_dbg_base comp_nm=dbg WLCLK=30 @@ -312,8 +294,6 @@ run_utests() { ;; dbg) CREATE_BASELINE=false - RTPWD=$NEW_BASELINE - INPUTDATA_ROOT=$RTPWD BL_SUFFIX=_dbg_base comp_nm=dbg WLCLK=30 @@ -329,6 +309,7 @@ run_utests() { export MACHINE_ID=${MACHINE_ID} export RTPWD=${RTPWD} export INPUTDATA_ROOT=${INPUTDATA_ROOT} + export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export NEW_BASELINE=${NEW_BASELINE} @@ -721,17 +702,12 @@ fi mkdir -p ${STMP}/${USER} NEW_BASELINE=${STMP}/${USER}/FV3_UT/UNIT_TEST -if [[ $MACHINE_ID == hera.* || $MACHINE_ID == orion.* ]]; then - baseline_location=$DISKNM/NEMSfv3gfs/develop-20201118/${RT_COMPILER^^} -else - baseline_location=$DISKNM/NEMSfv3gfs/develop-20201118 -fi -RTPWD=$baseline_location -INPUTDATA_ROOT=$RTPWD +RTPWD=${NEW_BASELINE} +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210115} +INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20201220/ rm -rf $NEW_BASELINE mkdir -p $NEW_BASELINE -ln -s ${RTPWD}/FV3_input_data ${NEW_BASELINE} rm -f fail_unit_test ${unittest_log} diff --git a/tests/utest.bld b/tests/utest.bld index 94f05cbad3..90814bc59e 100644 --- a/tests/utest.bld +++ b/tests/utest.bld @@ -1,22 +1,22 @@ -fv3_ccpp_control | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGauss_netcdf_esmf | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGauss_netcdf | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGlatlon_netcdf | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGauss_nemsio | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_stochy | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_iau | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_ca | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_lheatstrg | CCPP=Y SUITES=FV3_GFS_2017 -fv3_ccpp_gfdlmprad | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -fv3_ccpp_atmwav | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -fv3_ccpp_multigases | CCPP=Y SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -fv3_ccpp_gfdlmp | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp -fv3_ccpp_gfdlmprad_gwd | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp -fv3_ccpp_gfdlmprad_noahmp | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_noahmp -fv3_ccpp_csawmg | CCPP=Y SUITES=FV3_GFS_2017_csawmg -fv3_ccpp_satmedmf | CCPP=Y SUITES=FV3_GFS_2017_satmedmf -fv3_ccpp_satmedmfq | CCPP=Y SUITES=FV3_GFS_2017_satmedmfq -fv3_ccpp_gfsv16_csawmg | CCPP=Y SUITES=FV3_GFS_v16_csawmg -fv3_ccpp_gfsv16_csawmgt | CCPP=Y SUITES=FV3_GFS_v16_csawmg -fv3_ccpp_gocart_clm | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16beta_flake -fv3_ccpp_gfs_v16beta_flake | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16beta_flake +fv3_ccpp_control | SUITES=FV3_GFS_2017 +fv3_ccpp_wrtGauss_netcdf_esmf | SUITES=FV3_GFS_2017 +fv3_ccpp_wrtGauss_netcdf | SUITES=FV3_GFS_2017 +fv3_ccpp_wrtGlatlon_netcdf | SUITES=FV3_GFS_2017 +fv3_ccpp_wrtGauss_nemsio | SUITES=FV3_GFS_2017 +fv3_ccpp_stochy | SUITES=FV3_GFS_2017 +fv3_ccpp_iau | SUITES=FV3_GFS_2017 +fv3_ccpp_ca | SUITES=FV3_GFS_2017 +fv3_ccpp_lheatstrg | SUITES=FV3_GFS_2017 +fv3_ccpp_gfdlmprad | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y +fv3_ccpp_atmwav | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y +fv3_ccpp_multigases | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +fv3_ccpp_gfdlmp | SUITES=FV3_GFS_2017_gfdlmp +fv3_ccpp_gfdlmprad_gwd | SUITES=FV3_GFS_2017_gfdlmp +fv3_ccpp_gfdlmprad_noahmp | SUITES=FV3_GFS_2017_gfdlmp_noahmp +fv3_ccpp_csawmg | SUITES=FV3_GFS_2017_csawmg +fv3_ccpp_satmedmf | SUITES=FV3_GFS_2017_satmedmf +fv3_ccpp_satmedmfq | SUITES=FV3_GFS_2017_satmedmfq +fv3_ccpp_gfsv16_csawmg | SUITES=FV3_GFS_v16_csawmg +fv3_ccpp_gfsv16_csawmgt | SUITES=FV3_GFS_v16_csawmg +fv3_ccpp_gocart_clm | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +fv3_ccpp_gfs_v16_flake | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake From 4c3b6d5578adeb8e393062495874adf6db6151ab Mon Sep 17 00:00:00 2001 From: dustinswales Date: Thu, 25 Feb 2021 10:37:21 -0700 Subject: [PATCH 072/109] Update ccpp-physics. Make RRTMGP thread safe (#418) Changes to the initialization and setup of the RRTMGP radiation scheme to allow for use across multiple OpenMP threads. * Moved Interstitial RRTMGP DDTs (ty_rrtmgp_gas_optics, ty_cloud_optics) to static fields defined during initialization in module memory. * Add "$omp critical" statements around the calling type-bound procedures during initialization. * Move allocation of ty_gas_conc from Interstitial to GFS_typedefs. Initialize ty_gas_concs for all blocks during initialization. --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 66 +-- tests/RegressionTests_cheyenne.intel.log | 508 ++++++++++++--------- tests/RegressionTests_gaea.intel.log | 484 +++++++++++--------- tests/RegressionTests_hera.gnu.log | 66 +-- tests/RegressionTests_hera.intel.log | 530 ++++++++++++---------- tests/RegressionTests_jet.intel.log | 296 +++++++----- tests/RegressionTests_orion.intel.log | 526 +++++++++++---------- tests/RegressionTests_wcoss_cray.log | 144 +++--- tests/RegressionTests_wcoss_dell_p3.log | 530 ++++++++++++---------- tests/rt.conf | 1 + tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd | 84 ++++ 12 files changed, 1865 insertions(+), 1372 deletions(-) create mode 100644 tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd diff --git a/FV3 b/FV3 index 70e55f21b8..4908898cdd 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 70e55f21b80df17f2c4b8b1a270fddb8d28ff75b +Subproject commit 4908898cdd71a84cef482a7e6c330697a39c7378 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index fdb44ea6fd..610cecdf52 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Wed Feb 17 13:05:22 MST 2021 +Wed Feb 24 11:31:32 MST 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/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-20210217/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/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-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -199,7 +199,7 @@ Test 003 fv3_ccpp_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -249,7 +249,7 @@ Test 004 fv3_ccpp_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -317,7 +317,7 @@ Test 005 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,7 +385,7 @@ Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/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-20210217/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -521,7 +521,7 @@ Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/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-20210217/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/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-20210217/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/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-20210217/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/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-20210217/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/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-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/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-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -965,7 +965,7 @@ Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1027,7 +1027,7 @@ Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1057,7 +1057,7 @@ Test 017 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1125,7 +1125,7 @@ Test 018 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1193,7 +1193,7 @@ Test 019 fv3_ccpp_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1261,7 +1261,7 @@ Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,7 +1329,7 @@ Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1403,7 +1403,7 @@ Test 022 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_regional_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1414,7 +1414,7 @@ Test 023 fv3_ccpp_regional_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,7 +1482,7 @@ Test 024 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1550,7 +1550,7 @@ Test 025 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1618,7 +1618,7 @@ Test 026 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1686,7 +1686,7 @@ Test 027 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1754,7 +1754,7 @@ Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1772,7 +1772,7 @@ Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1834,5 +1834,5 @@ Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 17 13:22:49 MST 2021 -Elapsed time: 00h:17m:28s. Have a nice day! +Wed Feb 24 11:50:16 MST 2021 +Elapsed time: 00h:18m:44s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 361f44df77..a7564553e0 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Wed Feb 17 13:30:04 MST 2021 +Wed Feb 24 12:37:37 MST 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -430,7 +430,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 .........OK + Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_lndp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_iau_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -1075,7 +1075,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_stretched_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,7 +1131,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -1198,7 +1198,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,7 +1209,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,7 +1218,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,18 +1229,18 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 + Comparing phyf024.nc ............ALT CHECK......OK Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1288,7 +1288,7 @@ Test 025 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1336,7 +1336,7 @@ Test 026 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1384,7 +1384,7 @@ Test 027 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1432,7 +1432,7 @@ Test 028 fv3_ccpp_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1480,7 +1480,7 @@ Test 029 fv3_ccpp_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,7 +1528,7 @@ Test 030 fv3_ccpp_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1576,7 +1576,7 @@ Test 031 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,7 +1628,7 @@ Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_cpt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,7 +1682,7 @@ Test 033 fv3_ccpp_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 034 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_rap_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_rap_prod Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 035 fv3_ccpp_rap PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_hrrr_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_hrrr_prod Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 036 fv3_ccpp_hrrr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,7 +1978,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -2046,7 +2046,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2114,7 +2114,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_prod Checking test 040 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2194,7 +2194,7 @@ Test 040 fv3_ccpp_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_restart_prod Checking test 041 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2244,7 +2244,7 @@ Test 041 fv3_ccpp_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_stochy_prod Checking test 042 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2312,7 +2312,7 @@ Test 042 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 043 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2380,7 +2380,7 @@ Test 043 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2441,9 +2441,77 @@ Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_2thrd 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 045 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS + + baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gocart_clm_prod -Checking test 045 fv3_ccpp_gocart_clm results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gocart_clm_prod +Checking test 046 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2486,12 +2554,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 046 fv3_ccpp_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_flake_prod -Checking test 046 fv3_ccpp_gfs_v16_flake results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_flake_prod +Checking test 047 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2554,12 +2622,12 @@ Checking test 046 fv3_ccpp_gfs_v16_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_v16_flake PASS +Test 047 fv3_ccpp_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 048 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 @@ -2622,12 +2690,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 048 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2640,12 +2708,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 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 049 fv3_ccpp_gfsv16_ugwpv1 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2702,12 +2770,12 @@ Checking test 049 fv3_ccpp_gfsv16_ugwpv1 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_gfsv16_ugwpv1 PASS +Test 050 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2764,12 +2832,12 @@ Checking test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart 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_gfsv16_ugwpv1_warmstart PASS +Test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -2832,12 +2900,12 @@ Checking test 051 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 051 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-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_debug_prod -Checking test 052 fv3_ccpp_gfs_v16_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_debug_prod +Checking test 053 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2900,12 +2968,12 @@ Checking test 052 fv3_ccpp_gfs_v16_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_v16_debug PASS +Test 053 fv3_ccpp_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -2968,12 +3036,12 @@ Checking test 053 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 053 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-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3036,23 +3104,23 @@ Checking test 054 fv3_ccpp_gfs_v16_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_v16_RRTMGP_debug PASS +Test 055 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_control_debug_prod -Checking test 055 fv3_ccpp_regional_control_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_control_debug_prod +Checking test 056 fv3_ccpp_regional_control_debug 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 055 fv3_ccpp_regional_control_debug PASS +Test 056 fv3_ccpp_regional_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_control_debug_prod -Checking test 056 fv3_ccpp_control_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_control_debug_prod +Checking test 057 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3077,12 +3145,12 @@ Checking test 056 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 056 fv3_ccpp_control_debug PASS +Test 057 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_stretched_nest_debug_prod -Checking test 057 fv3_ccpp_stretched_nest_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_stretched_nest_debug_prod +Checking test 058 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 @@ -3097,12 +3165,12 @@ Checking test 057 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 057 fv3_ccpp_stretched_nest_debug PASS +Test 058 fv3_ccpp_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gsd_debug_prod -Checking test 058 fv3_ccpp_gsd_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3165,12 +3233,12 @@ Checking test 058 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 058 fv3_ccpp_gsd_debug PASS +Test 059 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 059 fv3_ccpp_gsd_diag3d_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3233,12 +3301,12 @@ Checking test 059 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 059 fv3_ccpp_gsd_diag3d_debug PASS +Test 060 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_thompson_debug_prod -Checking test 060 fv3_ccpp_thompson_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3301,12 +3369,12 @@ Checking test 060 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 060 fv3_ccpp_thompson_debug PASS +Test 061 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 061 fv3_ccpp_thompson_no_aero_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3369,12 +3437,12 @@ Checking test 061 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 061 fv3_ccpp_thompson_no_aero_debug PASS +Test 062 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 062 fv3_ccpp_rrfs_v1beta_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3437,12 +3505,12 @@ Checking test 062 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 062 fv3_ccpp_rrfs_v1beta_debug PASS +Test 063 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3505,12 +3573,12 @@ Checking test 063 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 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 Comparing phyf001.nc .........OK @@ -3523,12 +3591,12 @@ Checking test 064 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 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 065 fv3_ccpp_gfsv16_ugwpv1_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 066 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3585,12 +3653,12 @@ Checking test 065 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 065 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 066 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_prod -Checking test 066 cpld_control results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_control_prod +Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3638,12 +3706,12 @@ Checking test 066 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 066 cpld_control PASS +Test 067 cpld_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_prod -Checking test 067 cpld_restart results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_prod +Checking test 068 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3691,12 +3759,12 @@ Checking test 067 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 067 cpld_restart PASS +Test 068 cpld_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_controlfrac_prod -Checking test 068 cpld_controlfrac results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_controlfrac_prod +Checking test 069 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3744,12 +3812,12 @@ Checking test 068 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 068 cpld_controlfrac PASS +Test 069 cpld_controlfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restartfrac_prod -Checking test 069 cpld_restartfrac results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restartfrac_prod +Checking test 070 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3797,12 +3865,12 @@ Checking test 069 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 069 cpld_restartfrac PASS +Test 070 cpld_restartfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_2threads_prod -Checking test 070 cpld_2threads results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_2threads_prod +Checking test 071 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3850,12 +3918,12 @@ Checking test 070 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 070 cpld_2threads PASS +Test 071 cpld_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_decomp_prod -Checking test 071 cpld_decomp results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_decomp_prod +Checking test 072 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3903,12 +3971,12 @@ Checking test 071 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 071 cpld_decomp PASS +Test 072 cpld_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_satmedmf_prod -Checking test 072 cpld_satmedmf results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_satmedmf_prod +Checking test 073 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3956,12 +4024,12 @@ Checking test 072 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 072 cpld_satmedmf PASS +Test 073 cpld_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_ca_prod -Checking test 073 cpld_ca results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_ca_prod +Checking test 074 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4009,12 +4077,12 @@ Checking test 073 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 073 cpld_ca PASS +Test 074 cpld_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_c192_prod -Checking test 074 cpld_control_c192 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -4062,12 +4130,12 @@ Checking test 074 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 074 cpld_control_c192 PASS +Test 075 cpld_control_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_c192_prod -Checking test 075 cpld_restart_c192 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -4115,12 +4183,12 @@ Checking test 075 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 075 cpld_restart_c192 PASS +Test 076 cpld_restart_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_controlfrac_c192_prod -Checking test 076 cpld_controlfrac_c192 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -4168,12 +4236,12 @@ Checking test 076 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 076 cpld_controlfrac_c192 PASS +Test 077 cpld_controlfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restartfrac_c192_prod -Checking test 077 cpld_restartfrac_c192 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -4221,12 +4289,12 @@ Checking test 077 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 077 cpld_restartfrac_c192 PASS +Test 078 cpld_restartfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_c384_prod -Checking test 078 cpld_control_c384 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -4277,12 +4345,12 @@ Checking test 078 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 078 cpld_control_c384 PASS +Test 079 cpld_control_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_c384_prod -Checking test 079 cpld_restart_c384 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -4333,12 +4401,12 @@ Checking test 079 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 079 cpld_restart_c384 PASS +Test 080 cpld_restart_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_controlfrac_c384_prod -Checking test 080 cpld_controlfrac_c384 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -4389,12 +4457,12 @@ Checking test 080 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 080 cpld_controlfrac_c384 PASS +Test 081 cpld_controlfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restartfrac_c384_prod -Checking test 081 cpld_restartfrac_c384 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -4445,12 +4513,12 @@ Checking test 081 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 081 cpld_restartfrac_c384 PASS +Test 082 cpld_restartfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmark_prod -Checking test 082 cpld_bmark results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmark_prod +Checking test 083 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4501,12 +4569,12 @@ Checking test 082 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 082 cpld_bmark PASS +Test 083 cpld_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_bmark_prod -Checking test 083 cpld_restart_bmark results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -4557,12 +4625,12 @@ Checking test 083 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 083 cpld_restart_bmark PASS +Test 084 cpld_restart_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_prod -Checking test 084 cpld_bmarkfrac results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmarkfrac_prod +Checking test 085 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4613,12 +4681,12 @@ Checking test 084 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 084 cpld_bmarkfrac PASS +Test 085 cpld_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_bmarkfrac_prod -Checking test 085 cpld_restart_bmarkfrac results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -4669,12 +4737,12 @@ Checking test 085 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 085 cpld_restart_bmarkfrac PASS +Test 086 cpld_restart_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_v16_prod -Checking test 086 cpld_bmarkfrac_v16 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -4725,12 +4793,12 @@ Checking test 086 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 086 cpld_bmarkfrac_v16 PASS +Test 087 cpld_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_bmarkfrac_v16_prod -Checking test 087 cpld_restart_bmarkfrac_v16 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -4781,12 +4849,12 @@ Checking test 087 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 087 cpld_restart_bmarkfrac_v16 PASS +Test 088 cpld_restart_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmark_wave_prod -Checking test 088 cpld_bmark_wave results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -4840,12 +4908,12 @@ Checking test 088 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 088 cpld_bmark_wave PASS +Test 089 cpld_bmark_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_wave_prod -Checking test 089 cpld_bmarkfrac_wave results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -4899,12 +4967,12 @@ Checking test 089 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 089 cpld_bmarkfrac_wave PASS +Test 090 cpld_bmarkfrac_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_wave_v16_prod -Checking test 090 cpld_bmarkfrac_wave_v16 results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 @@ -4958,12 +5026,12 @@ Checking test 090 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 090 cpld_bmarkfrac_wave_v16 PASS +Test 091 cpld_bmarkfrac_wave_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_wave_prod -Checking test 091 cpld_control_wave results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_control_wave_prod +Checking test 092 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5014,12 +5082,12 @@ Checking test 091 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 091 cpld_control_wave PASS +Test 092 cpld_control_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_debug_prod -Checking test 092 cpld_debug results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_debug_prod +Checking test 093 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5067,12 +5135,12 @@ Checking test 092 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 092 cpld_debug PASS +Test 093 cpld_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_debugfrac_prod -Checking test 093 cpld_debugfrac results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_debugfrac_prod +Checking test 094 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5120,87 +5188,87 @@ Checking test 093 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 093 cpld_debugfrac PASS +Test 094 cpld_debugfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_control_cfsr -Checking test 094 datm_control_cfsr results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 094 datm_control_cfsr PASS +Test 095 datm_control_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_restart_cfsr -Checking test 095 datm_restart_cfsr results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 095 datm_restart_cfsr PASS +Test 096 datm_restart_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_control_gefs -Checking test 096 datm_control_gefs results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 096 datm_control_gefs PASS +Test 097 datm_control_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_bulk_cfsr -Checking test 097 datm_bulk_cfsr results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 097 datm_bulk_cfsr PASS +Test 098 datm_bulk_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_bulk_gefs -Checking test 098 datm_bulk_gefs results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 098 datm_bulk_gefs PASS +Test 099 datm_bulk_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_mx025_cfsr -Checking test 099 datm_mx025_cfsr results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 099 datm_mx025_cfsr PASS +Test 100 datm_mx025_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_mx025_gefs -Checking test 100 datm_mx025_gefs results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 100 datm_mx025_gefs PASS +Test 101 datm_mx025_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_debug_cfsr -Checking test 101 datm_debug_cfsr results .... +working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/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 101 datm_debug_cfsr PASS +Test 102 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 17 14:49:52 MST 2021 -Elapsed time: 01h:19m:48s. Have a nice day! +Wed Feb 24 13:57:44 MST 2021 +Elapsed time: 01h:20m:08s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 368d969a32..b0eee6bc1e 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Wed Feb 17 18:30:56 EST 2021 +Tue Feb 23 19:30:29 EST 2021 Start Regression test baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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-20210217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_decomp_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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-20210217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_2threads_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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-20210217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_restart_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_read_inc_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stochy_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_ca_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_lndp_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_iau_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_lheatstrg_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_multigases_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_control_32bit_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -1075,7 +1075,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stretched_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,7 +1131,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stretched_nest_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -1198,7 +1198,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_control_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,7 +1209,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_restart_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,7 +1218,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_quilt_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,7 +1229,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -1240,7 +1240,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmp_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1288,7 +1288,7 @@ Test 025 fv3_ccpp_gfdlmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1336,7 +1336,7 @@ Test 026 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1384,7 +1384,7 @@ Test 027 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_csawmg_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1432,7 +1432,7 @@ Test 028 fv3_ccpp_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_satmedmf_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1480,7 +1480,7 @@ Test 029 fv3_ccpp_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_satmedmfq_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,7 +1528,7 @@ Test 030 fv3_ccpp_satmedmfq PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1576,7 +1576,7 @@ Test 031 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,7 +1628,7 @@ Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_cpt_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,7 +1682,7 @@ Test 033 fv3_ccpp_cpt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gsd_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 034 fv3_ccpp_gsd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_rap_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_rap_prod Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 035 fv3_ccpp_rap PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_hrrr_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_hrrr_prod Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 036 fv3_ccpp_hrrr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_thompson_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,7 +1978,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_thompson_no_aero_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -2046,7 +2046,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_rrfs_v1beta_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2114,7 +2114,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v15p2_prod Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2182,7 +2182,7 @@ Test 040 fv3_ccpp_gfs_v15p2 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_prod Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2262,7 +2262,7 @@ Test 041 fv3_ccpp_gfs_v16 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_restart_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_restart_prod Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2312,7 +2312,7 @@ Test 042 fv3_ccpp_gfs_v16_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_stochy_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_stochy_prod Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2380,7 +2380,7 @@ Test 043 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2448,7 +2448,7 @@ Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2516,7 +2516,7 @@ Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2577,9 +2577,77 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd 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_v16_RRTMGP_2thrd PASS + + baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_csawmg_prod -Checking test 047 fv3_ccpp_gfsv16_csawmg results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -2622,12 +2690,12 @@ Checking test 047 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 047 fv3_ccpp_gfsv16_csawmg PASS +Test 048 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -2670,12 +2738,12 @@ Checking test 048 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 048 fv3_ccpp_gfsv16_csawmgt PASS +Test 049 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gocart_clm_prod -Checking test 049 fv3_ccpp_gocart_clm results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -2718,12 +2786,12 @@ Checking test 049 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 049 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-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_flake_prod -Checking test 050 fv3_ccpp_gfs_v16_flake results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_flake_prod +Checking test 051 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2786,12 +2854,12 @@ Checking test 050 fv3_ccpp_gfs_v16_flake 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_gfs_v16_flake PASS +Test 051 fv3_ccpp_gfs_v16_flake PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -2854,12 +2922,12 @@ Checking test 051 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 051 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-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -2872,12 +2940,12 @@ Checking test 052 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 052 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-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 054 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2934,12 +3002,12 @@ Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfsv16_ugwpv1 PASS +Test 054 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2996,12 +3064,12 @@ Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -3064,12 +3132,12 @@ Checking test 055 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 055 fv3_ccpp_gfs_v15p2_debug PASS +Test 056 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_debug_prod -Checking test 056 fv3_ccpp_gfs_v16_debug results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_debug_prod +Checking test 057 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3132,12 +3200,12 @@ Checking test 056 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS +Test 057 fv3_ccpp_gfs_v16_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/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 @@ -3200,12 +3268,12 @@ Checking test 057 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 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 059 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3268,23 +3336,23 @@ Checking test 058 fv3_ccpp_gfs_v16_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 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 059 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_control_debug_prod -Checking test 059 fv3_ccpp_regional_control_debug results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_regional_control_debug_prod +Checking test 060 fv3_ccpp_regional_control_debug 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 059 fv3_ccpp_regional_control_debug PASS +Test 060 fv3_ccpp_regional_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_control_debug_prod -Checking test 060 fv3_ccpp_control_debug results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_control_debug_prod +Checking test 061 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3309,12 +3377,12 @@ Checking test 060 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 060 fv3_ccpp_control_debug PASS +Test 061 fv3_ccpp_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stretched_nest_debug_prod -Checking test 061 fv3_ccpp_stretched_nest_debug results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_stretched_nest_debug_prod +Checking test 062 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 @@ -3329,12 +3397,12 @@ Checking test 061 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 061 fv3_ccpp_stretched_nest_debug PASS +Test 062 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gsd_debug_prod +Checking test 063 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3397,12 +3465,12 @@ Checking test 062 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 062 fv3_ccpp_gsd_debug PASS +Test 063 fv3_ccpp_gsd_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 064 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3465,12 +3533,12 @@ Checking test 063 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 063 fv3_ccpp_gsd_diag3d_debug PASS +Test 064 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_thompson_debug_prod +Checking test 065 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3533,12 +3601,12 @@ Checking test 064 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 064 fv3_ccpp_thompson_debug PASS +Test 065 fv3_ccpp_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 066 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 @@ -3601,12 +3669,12 @@ Checking test 065 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 065 fv3_ccpp_thompson_no_aero_debug PASS +Test 066 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 067 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3669,12 +3737,12 @@ Checking test 066 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 066 fv3_ccpp_rrfs_v1beta_debug PASS +Test 067 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 068 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 @@ -3737,12 +3805,12 @@ Checking test 067 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 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3755,12 +3823,12 @@ Checking test 068 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 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 070 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3817,12 +3885,12 @@ Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 069 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 070 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_prod -Checking test 070 cpld_control results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_control_prod +Checking test 071 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3870,12 +3938,12 @@ Checking test 070 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 070 cpld_control PASS +Test 071 cpld_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_prod -Checking test 071 cpld_restart results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_restart_prod +Checking test 072 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3923,12 +3991,12 @@ Checking test 071 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 071 cpld_restart PASS +Test 072 cpld_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_prod -Checking test 072 cpld_controlfrac results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_controlfrac_prod +Checking test 073 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3976,12 +4044,12 @@ Checking test 072 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 072 cpld_controlfrac PASS +Test 073 cpld_controlfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_prod -Checking test 073 cpld_restartfrac results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_restartfrac_prod +Checking test 074 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4029,12 +4097,12 @@ Checking test 073 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 073 cpld_restartfrac PASS +Test 074 cpld_restartfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_2threads_prod -Checking test 074 cpld_2threads results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_2threads_prod +Checking test 075 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4082,12 +4150,12 @@ Checking test 074 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 074 cpld_2threads PASS +Test 075 cpld_2threads PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_decomp_prod -Checking test 075 cpld_decomp results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_decomp_prod +Checking test 076 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4135,12 +4203,12 @@ Checking test 075 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 075 cpld_decomp PASS +Test 076 cpld_decomp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_satmedmf_prod -Checking test 076 cpld_satmedmf results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_satmedmf_prod +Checking test 077 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4188,12 +4256,12 @@ Checking test 076 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 076 cpld_satmedmf PASS +Test 077 cpld_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_ca_prod -Checking test 077 cpld_ca results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_ca_prod +Checking test 078 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4241,12 +4309,12 @@ Checking test 077 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 077 cpld_ca PASS +Test 078 cpld_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_c192_prod -Checking test 078 cpld_control_c192 results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_control_c192_prod +Checking test 079 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4294,12 +4362,12 @@ Checking test 078 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 078 cpld_control_c192 PASS +Test 079 cpld_control_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_c192_prod -Checking test 079 cpld_restart_c192 results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_restart_c192_prod +Checking test 080 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4347,12 +4415,12 @@ Checking test 079 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 079 cpld_restart_c192 PASS +Test 080 cpld_restart_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_c192_prod -Checking test 080 cpld_controlfrac_c192 results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_controlfrac_c192_prod +Checking test 081 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4400,12 +4468,12 @@ Checking test 080 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 080 cpld_controlfrac_c192 PASS +Test 081 cpld_controlfrac_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_c192_prod -Checking test 081 cpld_restartfrac_c192 results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_restartfrac_c192_prod +Checking test 082 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4453,12 +4521,12 @@ Checking test 081 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 081 cpld_restartfrac_c192 PASS +Test 082 cpld_restartfrac_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_c384_prod -Checking test 082 cpld_control_c384 results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_control_c384_prod +Checking test 083 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4509,12 +4577,12 @@ Checking test 082 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 082 cpld_control_c384 PASS +Test 083 cpld_control_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_c384_prod -Checking test 083 cpld_restart_c384 results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_restart_c384_prod +Checking test 084 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4565,12 +4633,12 @@ Checking test 083 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 083 cpld_restart_c384 PASS +Test 084 cpld_restart_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_c384_prod -Checking test 084 cpld_controlfrac_c384 results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_controlfrac_c384_prod +Checking test 085 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4621,12 +4689,12 @@ Checking test 084 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 084 cpld_controlfrac_c384 PASS +Test 085 cpld_controlfrac_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_c384_prod -Checking test 085 cpld_restartfrac_c384 results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_restartfrac_c384_prod +Checking test 086 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4677,12 +4745,12 @@ Checking test 085 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 085 cpld_restartfrac_c384 PASS +Test 086 cpld_restartfrac_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_bmark_prod -Checking test 086 cpld_bmark results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_bmark_prod +Checking test 087 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4733,12 +4801,12 @@ Checking test 086 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 086 cpld_bmark PASS +Test 087 cpld_bmark PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_bmark_prod -Checking test 087 cpld_restart_bmark results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_restart_bmark_prod +Checking test 088 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4789,12 +4857,12 @@ Checking test 087 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 087 cpld_restart_bmark PASS +Test 088 cpld_restart_bmark PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_bmarkfrac_prod -Checking test 088 cpld_bmarkfrac results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_bmarkfrac_prod +Checking test 089 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4845,12 +4913,12 @@ Checking test 088 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 088 cpld_bmarkfrac PASS +Test 089 cpld_bmarkfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_bmarkfrac_prod -Checking test 089 cpld_restart_bmarkfrac results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_restart_bmarkfrac_prod +Checking test 090 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4901,12 +4969,12 @@ Checking test 089 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 089 cpld_restart_bmarkfrac PASS +Test 090 cpld_restart_bmarkfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_debug_prod -Checking test 090 cpld_debug results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_debug_prod +Checking test 091 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4954,12 +5022,12 @@ Checking test 090 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 090 cpld_debug PASS +Test 091 cpld_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_debugfrac_prod -Checking test 091 cpld_debugfrac results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_debugfrac_prod +Checking test 092 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5007,87 +5075,87 @@ Checking test 091 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 091 cpld_debugfrac PASS +Test 092 cpld_debugfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_control_cfsr -Checking test 092 datm_control_cfsr results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/datm_control_cfsr +Checking test 093 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 092 datm_control_cfsr PASS +Test 093 datm_control_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_restart_cfsr -Checking test 093 datm_restart_cfsr results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/datm_restart_cfsr +Checking test 094 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 093 datm_restart_cfsr PASS +Test 094 datm_restart_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_control_gefs -Checking test 094 datm_control_gefs results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/datm_control_gefs +Checking test 095 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 094 datm_control_gefs PASS +Test 095 datm_control_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_bulk_cfsr -Checking test 095 datm_bulk_cfsr results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/datm_bulk_cfsr +Checking test 096 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 095 datm_bulk_cfsr PASS +Test 096 datm_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_bulk_gefs -Checking test 096 datm_bulk_gefs results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/datm_bulk_gefs +Checking test 097 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 096 datm_bulk_gefs PASS +Test 097 datm_bulk_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_mx025_cfsr -Checking test 097 datm_mx025_cfsr results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/datm_mx025_cfsr +Checking test 098 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 097 datm_mx025_cfsr PASS +Test 098 datm_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_mx025_gefs -Checking test 098 datm_mx025_gefs results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/datm_mx025_gefs +Checking test 099 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 098 datm_mx025_gefs PASS +Test 099 datm_mx025_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_debug_cfsr -Checking test 099 datm_debug_cfsr results .... +working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/datm_debug_cfsr +Checking test 100 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 099 datm_debug_cfsr PASS +Test 100 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 17 20:13:13 EST 2021 -Elapsed time: 01h:42m:18s. Have a nice day! +Tue Feb 23 20:51:42 EST 2021 +Elapsed time: 01h:21m:13s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 50d1df6ef8..0414420ef5 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Wed Feb 17 20:45:37 UTC 2021 +Wed Feb 24 04:48:13 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/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-20210217/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/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-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -199,7 +199,7 @@ Test 003 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -249,7 +249,7 @@ Test 004 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -317,7 +317,7 @@ Test 005 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,7 +385,7 @@ Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/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-20210217/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -521,7 +521,7 @@ Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/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-20210217/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/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-20210217/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/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-20210217/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/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-20210217/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/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-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/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-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -965,7 +965,7 @@ Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1027,7 +1027,7 @@ Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1057,7 +1057,7 @@ Test 017 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1125,7 +1125,7 @@ Test 018 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1193,7 +1193,7 @@ Test 019 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1261,7 +1261,7 @@ Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,7 +1329,7 @@ Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1403,7 +1403,7 @@ Test 022 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_regional_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1414,7 +1414,7 @@ Test 023 fv3_ccpp_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,7 +1482,7 @@ Test 024 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1550,7 +1550,7 @@ Test 025 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1618,7 +1618,7 @@ Test 026 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1686,7 +1686,7 @@ Test 027 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1754,7 +1754,7 @@ Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1772,7 +1772,7 @@ Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1834,5 +1834,5 @@ Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 17 21:14:47 UTC 2021 -Elapsed time: 00h:29m:11s. Have a nice day! +Wed Feb 24 05:56:35 UTC 2021 +Elapsed time: 01h:08m:22s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 5cdfec543e..b6580365e6 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Thu Feb 18 02:57:16 UTC 2021 +Wed Feb 24 00:14:15 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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 @@ -429,10 +429,10 @@ 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 ............ALT CHECK......OK + Comparing phyf000.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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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 @@ -1031,7 +1031,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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 @@ -1080,7 +1080,7 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1154,7 +1154,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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 @@ -1222,7 +1222,7 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1278,7 +1278,7 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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 @@ -1345,7 +1345,7 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1356,7 +1356,7 @@ Test 024 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1365,7 +1365,7 @@ Test 025 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1376,7 +1376,7 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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 @@ -1387,7 +1387,7 @@ Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1435,7 +1435,7 @@ Test 028 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1483,7 +1483,7 @@ Test 029 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1531,7 +1531,7 @@ Test 030 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,7 +1579,7 @@ Test 031 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,7 +1627,7 @@ Test 032 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1675,7 +1675,7 @@ Test 033 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1723,7 +1723,7 @@ Test 034 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1775,7 +1775,7 @@ Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1829,7 +1829,7 @@ Test 036 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1921,7 +1921,7 @@ Test 037 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_rap_prod Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1989,7 +1989,7 @@ Test 038 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_hrrr_prod Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2057,7 +2057,7 @@ Test 039 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_thompson_prod Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2125,7 +2125,7 @@ Test 040 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_thompson_no_aero_prod Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2193,7 +2193,7 @@ Test 041 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_rrfs_v1beta_prod Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2261,7 +2261,7 @@ Test 042 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v15p2_prod Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2329,7 +2329,7 @@ Test 043 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_prod Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2409,7 +2409,7 @@ Test 044 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_restart_prod Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2459,7 +2459,7 @@ Test 045 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_stochy_prod Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2527,7 +2527,7 @@ Test 046 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2595,7 +2595,7 @@ Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2663,7 +2663,7 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2724,9 +2724,77 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd 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 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS + + baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_csawmg_prod -Checking test 050 fv3_ccpp_gfsv16_csawmg results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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 @@ -2769,12 +2837,12 @@ Checking test 050 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 050 fv3_ccpp_gfsv16_csawmg PASS +Test 051 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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 @@ -2817,12 +2885,12 @@ Checking test 051 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 051 fv3_ccpp_gfsv16_csawmgt PASS +Test 052 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gocart_clm_prod -Checking test 052 fv3_ccpp_gocart_clm results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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 @@ -2865,12 +2933,12 @@ Checking test 052 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 052 fv3_ccpp_gocart_clm PASS +Test 053 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_flake_prod -Checking test 053 fv3_ccpp_gfs_v16_flake results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_flake_prod +Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2933,12 +3001,12 @@ Checking test 053 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfs_v16_flake PASS +Test 054 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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 @@ -3001,12 +3069,12 @@ Checking test 054 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 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/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 @@ -3019,12 +3087,12 @@ Checking test 055 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 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3081,12 +3149,12 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS +Test 057 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3143,12 +3211,12 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart 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_gfsv16_ugwpv1_warmstart PASS +Test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3211,12 +3279,12 @@ Checking test 058 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 058 fv3_ccpp_gfs_v15p2_debug PASS +Test 059 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_debug_prod -Checking test 059 fv3_ccpp_gfs_v16_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_debug_prod +Checking test 060 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3279,12 +3347,12 @@ Checking test 059 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS +Test 060 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 061 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 @@ -3347,12 +3415,12 @@ Checking test 060 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 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3415,23 +3483,23 @@ Checking test 061 fv3_ccpp_gfs_v16_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 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_control_debug_prod -Checking test 062 fv3_ccpp_regional_control_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_control_debug_prod +Checking test 063 fv3_ccpp_regional_control_debug 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 062 fv3_ccpp_regional_control_debug PASS +Test 063 fv3_ccpp_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_control_debug_prod -Checking test 063 fv3_ccpp_control_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_control_debug_prod +Checking test 064 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3456,12 +3524,12 @@ Checking test 063 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 063 fv3_ccpp_control_debug PASS +Test 064 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stretched_nest_debug_prod -Checking test 064 fv3_ccpp_stretched_nest_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_stretched_nest_debug_prod +Checking test 065 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 @@ -3476,12 +3544,12 @@ Checking test 064 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 064 fv3_ccpp_stretched_nest_debug PASS +Test 065 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_debug_prod -Checking test 065 fv3_ccpp_gsd_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gsd_debug_prod +Checking test 066 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3544,12 +3612,12 @@ Checking test 065 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 065 fv3_ccpp_gsd_debug PASS +Test 066 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3612,12 +3680,12 @@ Checking test 066 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 066 fv3_ccpp_gsd_diag3d_debug PASS +Test 067 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_debug_prod -Checking test 067 fv3_ccpp_thompson_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_thompson_debug_prod +Checking test 068 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3680,12 +3748,12 @@ Checking test 067 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 067 fv3_ccpp_thompson_debug PASS +Test 068 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 069 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 @@ -3748,12 +3816,12 @@ Checking test 068 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 068 fv3_ccpp_thompson_no_aero_debug PASS +Test 069 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3816,12 +3884,12 @@ Checking test 069 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 069 fv3_ccpp_rrfs_v1beta_debug PASS +Test 070 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 071 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 @@ -3884,12 +3952,12 @@ Checking test 070 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 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3902,12 +3970,12 @@ Checking test 071 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 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3964,12 +4032,12 @@ Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 073 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_prod -Checking test 073 cpld_control results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_control_prod +Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4017,12 +4085,12 @@ Checking test 073 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 073 cpld_control PASS +Test 074 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_prod -Checking test 074 cpld_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_prod +Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4070,12 +4138,12 @@ Checking test 074 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 074 cpld_restart PASS +Test 075 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_prod -Checking test 075 cpld_controlfrac results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_controlfrac_prod +Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4123,12 +4191,12 @@ Checking test 075 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 075 cpld_controlfrac PASS +Test 076 cpld_controlfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_prod -Checking test 076 cpld_restartfrac results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restartfrac_prod +Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4176,12 +4244,12 @@ Checking test 076 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 076 cpld_restartfrac PASS +Test 077 cpld_restartfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_2threads_prod -Checking test 077 cpld_2threads results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_2threads_prod +Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4229,12 +4297,12 @@ Checking test 077 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 077 cpld_2threads PASS +Test 078 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_decomp_prod -Checking test 078 cpld_decomp results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_decomp_prod +Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4282,12 +4350,12 @@ Checking test 078 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 078 cpld_decomp PASS +Test 079 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_satmedmf_prod -Checking test 079 cpld_satmedmf results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_satmedmf_prod +Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4335,12 +4403,12 @@ Checking test 079 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 079 cpld_satmedmf PASS +Test 080 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_ca_prod -Checking test 080 cpld_ca results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_ca_prod +Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4388,12 +4456,12 @@ Checking test 080 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 080 cpld_ca PASS +Test 081 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_c192_prod -Checking test 081 cpld_control_c192 results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_control_c192_prod +Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4441,12 +4509,12 @@ Checking test 081 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 081 cpld_control_c192 PASS +Test 082 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_c192_prod -Checking test 082 cpld_restart_c192 results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_c192_prod +Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4494,12 +4562,12 @@ Checking test 082 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 082 cpld_restart_c192 PASS +Test 083 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_c192_prod -Checking test 083 cpld_controlfrac_c192 results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_controlfrac_c192_prod +Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4547,12 +4615,12 @@ Checking test 083 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 083 cpld_controlfrac_c192 PASS +Test 084 cpld_controlfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_c192_prod -Checking test 084 cpld_restartfrac_c192 results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restartfrac_c192_prod +Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4600,12 +4668,12 @@ Checking test 084 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 084 cpld_restartfrac_c192 PASS +Test 085 cpld_restartfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_c384_prod -Checking test 085 cpld_control_c384 results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_control_c384_prod +Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4656,12 +4724,12 @@ Checking test 085 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 085 cpld_control_c384 PASS +Test 086 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_c384_prod -Checking test 086 cpld_restart_c384 results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_c384_prod +Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4712,12 +4780,12 @@ Checking test 086 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 086 cpld_restart_c384 PASS +Test 087 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_c384_prod -Checking test 087 cpld_controlfrac_c384 results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_controlfrac_c384_prod +Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4768,12 +4836,12 @@ Checking test 087 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 087 cpld_controlfrac_c384 PASS +Test 088 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_c384_prod -Checking test 088 cpld_restartfrac_c384 results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restartfrac_c384_prod +Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4824,12 +4892,12 @@ Checking test 088 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 088 cpld_restartfrac_c384 PASS +Test 089 cpld_restartfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmark_prod -Checking test 089 cpld_bmark results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmark_prod +Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4880,12 +4948,12 @@ Checking test 089 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 089 cpld_bmark PASS +Test 090 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmark_prod -Checking test 090 cpld_restart_bmark results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_bmark_prod +Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4936,12 +5004,12 @@ Checking test 090 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 090 cpld_restart_bmark PASS +Test 091 cpld_restart_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_prod -Checking test 091 cpld_bmarkfrac results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmarkfrac_prod +Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4992,12 +5060,12 @@ Checking test 091 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 091 cpld_bmarkfrac PASS +Test 092 cpld_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmarkfrac_prod -Checking test 092 cpld_restart_bmarkfrac results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_bmarkfrac_prod +Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5048,12 +5116,12 @@ Checking test 092 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 092 cpld_restart_bmarkfrac PASS +Test 093 cpld_restart_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_v16_prod -Checking test 093 cpld_bmarkfrac_v16 results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmarkfrac_v16_prod +Checking test 094 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5104,12 +5172,12 @@ Checking test 093 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 093 cpld_bmarkfrac_v16 PASS +Test 094 cpld_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmarkfrac_v16_prod -Checking test 094 cpld_restart_bmarkfrac_v16 results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_bmarkfrac_v16_prod +Checking test 095 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5160,12 +5228,12 @@ Checking test 094 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 094 cpld_restart_bmarkfrac_v16 PASS +Test 095 cpld_restart_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmark_wave_prod -Checking test 095 cpld_bmark_wave results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmark_wave_prod +Checking test 096 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5219,12 +5287,12 @@ Checking test 095 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 095 cpld_bmark_wave PASS +Test 096 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_wave_prod -Checking test 096 cpld_bmarkfrac_wave results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmarkfrac_wave_prod +Checking test 097 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5278,12 +5346,12 @@ Checking test 096 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 096 cpld_bmarkfrac_wave PASS +Test 097 cpld_bmarkfrac_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_wave_v16_prod -Checking test 097 cpld_bmarkfrac_wave_v16 results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmarkfrac_wave_v16_prod +Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5337,12 +5405,12 @@ Checking test 097 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 097 cpld_bmarkfrac_wave_v16 PASS +Test 098 cpld_bmarkfrac_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_wave_prod -Checking test 098 cpld_control_wave results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_control_wave_prod +Checking test 099 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5393,12 +5461,12 @@ Checking test 098 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 098 cpld_control_wave PASS +Test 099 cpld_control_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_debug_prod -Checking test 099 cpld_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_debug_prod +Checking test 100 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5446,12 +5514,12 @@ Checking test 099 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 099 cpld_debug PASS +Test 100 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_debugfrac_prod -Checking test 100 cpld_debugfrac results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_debugfrac_prod +Checking test 101 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5499,87 +5567,87 @@ Checking test 100 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 100 cpld_debugfrac PASS +Test 101 cpld_debugfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_control_cfsr -Checking test 101 datm_control_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_control_cfsr +Checking test 102 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 101 datm_control_cfsr PASS +Test 102 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_restart_cfsr -Checking test 102 datm_restart_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_restart_cfsr +Checking test 103 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 102 datm_restart_cfsr PASS +Test 103 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_control_gefs -Checking test 103 datm_control_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_control_gefs +Checking test 104 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 103 datm_control_gefs PASS +Test 104 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_bulk_cfsr -Checking test 104 datm_bulk_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_bulk_cfsr +Checking test 105 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 104 datm_bulk_cfsr PASS +Test 105 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_bulk_gefs -Checking test 105 datm_bulk_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_bulk_gefs +Checking test 106 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 105 datm_bulk_gefs PASS +Test 106 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_mx025_cfsr -Checking test 106 datm_mx025_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_mx025_cfsr +Checking test 107 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 106 datm_mx025_cfsr PASS +Test 107 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_mx025_gefs -Checking test 107 datm_mx025_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_mx025_gefs +Checking test 108 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 107 datm_mx025_gefs PASS +Test 108 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_debug_cfsr -Checking test 108 datm_debug_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_debug_cfsr +Checking test 109 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 108 datm_debug_cfsr PASS +Test 109 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 18 04:38:47 UTC 2021 -Elapsed time: 01h:41m:32s. Have a nice day! +Wed Feb 24 07:06:43 UTC 2021 +Elapsed time: 06h:52m:29s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 178216a8c5..eb3246e5e6 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Wed Feb 17 22:55:09 GMT 2021 +Wed Feb 24 02:19:55 GMT 2021 Start Regression test baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/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-20210217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_2threads_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_2threads_prod Checking test 002 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_2threads PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_restart_prod Checking test 003 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -189,7 +189,7 @@ Test 003 fv3_ccpp_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_read_inc_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_read_inc_prod Checking test 004 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_read_inc PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -305,7 +305,7 @@ Test 005 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_wrtGauss_netcdf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -353,7 +353,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -401,7 +401,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -449,7 +449,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -497,7 +497,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -545,7 +545,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_ca_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_ca_prod Checking test 012 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_ca PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_lndp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_lndp_prod Checking test 013 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_lndp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_iau_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_iau_prod Checking test 014 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_iau PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_lheatstrg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -865,7 +865,7 @@ Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_multigases_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -939,7 +939,7 @@ Test 016 fv3_ccpp_multigases PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_control_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_control_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1063,7 +1063,7 @@ Test 018 fv3_ccpp_stretched PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_nest_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,7 +1130,7 @@ Test 019 fv3_ccpp_stretched_nest PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_control_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1141,7 +1141,7 @@ Test 020 fv3_ccpp_regional_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1150,7 +1150,7 @@ Test 021 fv3_ccpp_regional_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_quilt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1161,7 +1161,7 @@ Test 022 fv3_ccpp_regional_quilt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1172,7 +1172,7 @@ Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfdlmp_prod Checking test 024 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1220,7 +1220,7 @@ Test 024 fv3_ccpp_gfdlmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfdlmprad_gwd_prod Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1268,7 +1268,7 @@ Test 025 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1316,7 +1316,7 @@ Test 026 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1364,7 +1364,7 @@ Test 027 fv3_ccpp_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_satmedmf_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1412,7 +1412,7 @@ Test 028 fv3_ccpp_satmedmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_satmedmfq_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1460,7 +1460,7 @@ Test 029 fv3_ccpp_satmedmfq PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1508,7 +1508,7 @@ Test 030 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1560,7 +1560,7 @@ Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_cpt_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1614,7 +1614,7 @@ Test 032 fv3_ccpp_cpt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gsd_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1706,7 +1706,7 @@ Test 033 fv3_ccpp_gsd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 034 fv3_ccpp_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_no_aero_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 035 fv3_ccpp_thompson_no_aero PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v15p2_prod Checking test 036 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 036 fv3_ccpp_gfs_v15p2 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_prod Checking test 037 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1990,7 +1990,7 @@ Test 037 fv3_ccpp_gfs_v16 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_restart_prod Checking test 038 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2040,7 +2040,7 @@ Test 038 fv3_ccpp_gfs_v16_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_stochy_prod Checking test 039 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2108,7 +2108,7 @@ Test 039 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 040 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2176,7 +2176,7 @@ Test 040 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2244,7 +2244,7 @@ Test 041 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2305,9 +2305,77 @@ Checking test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 043 fv3_ccpp_gfs_v16_RRTMGP_2thrd 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_v16_RRTMGP_2thrd PASS + + baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_csawmg_prod -Checking test 043 fv3_ccpp_gfsv16_csawmg results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/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 @@ -2350,12 +2418,12 @@ Checking test 043 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 043 fv3_ccpp_gfsv16_csawmg PASS +Test 044 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 044 fv3_ccpp_gfsv16_csawmgt results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 045 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2398,12 +2466,12 @@ Checking test 044 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 044 fv3_ccpp_gfsv16_csawmgt PASS +Test 045 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gocart_clm_prod -Checking test 045 fv3_ccpp_gocart_clm results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gocart_clm_prod +Checking test 046 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2446,12 +2514,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 046 fv3_ccpp_gocart_clm PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_flake_prod -Checking test 046 fv3_ccpp_gfs_v16_flake results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_flake_prod +Checking test 047 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2514,12 +2582,12 @@ Checking test 046 fv3_ccpp_gfs_v16_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_v16_flake PASS +Test 047 fv3_ccpp_gfs_v16_flake PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 048 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 @@ -2582,12 +2650,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 048 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2600,12 +2668,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 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 049 fv3_ccpp_gfsv16_ugwpv1 results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2662,12 +2730,12 @@ Checking test 049 fv3_ccpp_gfsv16_ugwpv1 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_gfsv16_ugwpv1 PASS +Test 050 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2724,12 +2792,12 @@ Checking test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart 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_gfsv16_ugwpv1_warmstart PASS +Test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/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 @@ -2792,12 +2860,12 @@ Checking test 051 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 051 fv3_ccpp_gfs_v15p2_debug PASS +Test 052 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_debug_prod -Checking test 052 fv3_ccpp_gfs_v16_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_debug_prod +Checking test 053 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2860,12 +2928,12 @@ Checking test 052 fv3_ccpp_gfs_v16_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_v16_debug PASS +Test 053 fv3_ccpp_gfs_v16_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/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 @@ -2928,12 +2996,12 @@ Checking test 053 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 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2996,23 +3064,23 @@ Checking test 054 fv3_ccpp_gfs_v16_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_v16_RRTMGP_debug PASS +Test 055 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_control_debug_prod -Checking test 055 fv3_ccpp_regional_control_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_regional_control_debug_prod +Checking test 056 fv3_ccpp_regional_control_debug 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 055 fv3_ccpp_regional_control_debug PASS +Test 056 fv3_ccpp_regional_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_control_debug_prod -Checking test 056 fv3_ccpp_control_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_control_debug_prod +Checking test 057 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3037,12 +3105,12 @@ Checking test 056 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 056 fv3_ccpp_control_debug PASS +Test 057 fv3_ccpp_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_nest_debug_prod -Checking test 057 fv3_ccpp_stretched_nest_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_stretched_nest_debug_prod +Checking test 058 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 @@ -3057,12 +3125,12 @@ Checking test 057 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 057 fv3_ccpp_stretched_nest_debug PASS +Test 058 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gsd_debug_prod -Checking test 058 fv3_ccpp_gsd_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3125,12 +3193,12 @@ Checking test 058 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 058 fv3_ccpp_gsd_debug PASS +Test 059 fv3_ccpp_gsd_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 059 fv3_ccpp_gsd_diag3d_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3193,12 +3261,12 @@ Checking test 059 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 059 fv3_ccpp_gsd_diag3d_debug PASS +Test 060 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_debug_prod -Checking test 060 fv3_ccpp_thompson_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3261,12 +3329,12 @@ Checking test 060 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 060 fv3_ccpp_thompson_debug PASS +Test 061 fv3_ccpp_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 061 fv3_ccpp_thompson_no_aero_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3329,12 +3397,12 @@ Checking test 061 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 061 fv3_ccpp_thompson_no_aero_debug PASS +Test 062 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 062 fv3_ccpp_rrfs_v1beta_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3397,12 +3465,12 @@ Checking test 062 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 062 fv3_ccpp_rrfs_v1beta_debug PASS +Test 063 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3465,12 +3533,12 @@ Checking test 063 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 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/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 Comparing phyf001.nc .........OK @@ -3483,12 +3551,12 @@ Checking test 064 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 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 065 fv3_ccpp_gfsv16_ugwpv1_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 066 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3545,9 +3613,9 @@ Checking test 065 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 065 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 066 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 18 00:55:53 GMT 2021 -Elapsed time: 02h:00m:45s. Have a nice day! +Wed Feb 24 04:54:11 GMT 2021 +Elapsed time: 02h:34m:16s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index b150da682d..cceaaec641 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Feb 18 10:57:36 CST 2021 +Thu Feb 25 07:06:43 CST 2021 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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-20210217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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-20210217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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-20210217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_lndp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_lheatstrg_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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 @@ -1031,7 +1031,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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 @@ -1080,7 +1080,7 @@ Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1154,7 +1154,7 @@ Test 020 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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 @@ -1222,7 +1222,7 @@ Test 021 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1278,7 +1278,7 @@ Test 022 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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 @@ -1345,7 +1345,7 @@ Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1356,7 +1356,7 @@ Test 024 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1365,7 +1365,7 @@ Test 025 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1376,7 +1376,7 @@ Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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 @@ -1387,7 +1387,7 @@ Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1435,7 +1435,7 @@ Test 028 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1483,7 +1483,7 @@ Test 029 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1531,7 +1531,7 @@ Test 030 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,7 +1579,7 @@ Test 031 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,7 +1627,7 @@ Test 032 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_satmedmfq_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1675,7 +1675,7 @@ Test 033 fv3_ccpp_satmedmfq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1723,7 +1723,7 @@ Test 034 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1775,7 +1775,7 @@ Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1829,7 +1829,7 @@ Test 036 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1921,7 +1921,7 @@ Test 037 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rap_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_rap_prod Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1989,7 +1989,7 @@ Test 038 fv3_ccpp_rap PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_hrrr_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_hrrr_prod Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2057,7 +2057,7 @@ Test 039 fv3_ccpp_hrrr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_thompson_prod Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2125,7 +2125,7 @@ Test 040 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_thompson_no_aero_prod Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2193,7 +2193,7 @@ Test 041 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_rrfs_v1beta_prod Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2261,7 +2261,7 @@ Test 042 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v15p2_prod Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2329,7 +2329,7 @@ Test 043 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_prod Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2409,7 +2409,7 @@ Test 044 fv3_ccpp_gfs_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_restart_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_restart_prod Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2459,7 +2459,7 @@ Test 045 fv3_ccpp_gfs_v16_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_stochy_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_stochy_prod Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2527,7 +2527,7 @@ Test 046 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2595,7 +2595,7 @@ Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2663,7 +2663,7 @@ Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2724,9 +2724,77 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd 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 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS + + baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_csawmg_prod -Checking test 050 fv3_ccpp_gfsv16_csawmg results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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 @@ -2769,12 +2837,12 @@ Checking test 050 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 050 fv3_ccpp_gfsv16_csawmg PASS +Test 051 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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 @@ -2817,12 +2885,12 @@ Checking test 051 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 051 fv3_ccpp_gfsv16_csawmgt PASS +Test 052 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gocart_clm_prod -Checking test 052 fv3_ccpp_gocart_clm results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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 @@ -2865,12 +2933,12 @@ Checking test 052 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 052 fv3_ccpp_gocart_clm PASS +Test 053 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_flake_prod -Checking test 053 fv3_ccpp_gfs_v16_flake results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_flake_prod +Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2933,12 +3001,12 @@ Checking test 053 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfs_v16_flake PASS +Test 054 fv3_ccpp_gfs_v16_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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 @@ -3001,12 +3069,12 @@ Checking test 054 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 054 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-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/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 @@ -3019,12 +3087,12 @@ Checking test 055 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 055 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-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3081,12 +3149,12 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS +Test 057 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3143,12 +3211,12 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart 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_gfsv16_ugwpv1_warmstart PASS +Test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3211,12 +3279,12 @@ Checking test 058 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 058 fv3_ccpp_gfs_v15p2_debug PASS +Test 059 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_debug_prod -Checking test 059 fv3_ccpp_gfs_v16_debug results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_debug_prod +Checking test 060 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3279,12 +3347,12 @@ Checking test 059 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS +Test 060 fv3_ccpp_gfs_v16_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 061 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 @@ -3347,12 +3415,12 @@ Checking test 060 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 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3415,23 +3483,23 @@ Checking test 061 fv3_ccpp_gfs_v16_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 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_control_debug_prod -Checking test 062 fv3_ccpp_regional_control_debug results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_regional_control_debug_prod +Checking test 063 fv3_ccpp_regional_control_debug 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 062 fv3_ccpp_regional_control_debug PASS +Test 063 fv3_ccpp_regional_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_control_debug_prod -Checking test 063 fv3_ccpp_control_debug results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_control_debug_prod +Checking test 064 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3456,12 +3524,12 @@ Checking test 063 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 063 fv3_ccpp_control_debug PASS +Test 064 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stretched_nest_debug_prod -Checking test 064 fv3_ccpp_stretched_nest_debug results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_stretched_nest_debug_prod +Checking test 065 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 @@ -3476,12 +3544,12 @@ Checking test 064 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 064 fv3_ccpp_stretched_nest_debug PASS +Test 065 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_debug_prod -Checking test 065 fv3_ccpp_gsd_debug results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gsd_debug_prod +Checking test 066 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3544,12 +3612,12 @@ Checking test 065 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 065 fv3_ccpp_gsd_debug PASS +Test 066 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3612,12 +3680,12 @@ Checking test 066 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 066 fv3_ccpp_gsd_diag3d_debug PASS +Test 067 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_debug_prod -Checking test 067 fv3_ccpp_thompson_debug results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_thompson_debug_prod +Checking test 068 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3680,12 +3748,12 @@ Checking test 067 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 067 fv3_ccpp_thompson_debug PASS +Test 068 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 069 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 @@ -3748,12 +3816,12 @@ Checking test 068 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 068 fv3_ccpp_thompson_no_aero_debug PASS +Test 069 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3816,12 +3884,12 @@ Checking test 069 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 069 fv3_ccpp_rrfs_v1beta_debug PASS +Test 070 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 071 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 @@ -3884,12 +3952,12 @@ Checking test 070 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 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3902,12 +3970,12 @@ Checking test 071 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 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3964,12 +4032,12 @@ Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 073 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_prod -Checking test 073 cpld_control results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_control_prod +Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4017,12 +4085,12 @@ Checking test 073 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 073 cpld_control PASS +Test 074 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_prod -Checking test 074 cpld_restart results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restart_prod +Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4070,12 +4138,12 @@ Checking test 074 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 074 cpld_restart PASS +Test 075 cpld_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_prod -Checking test 075 cpld_controlfrac results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_controlfrac_prod +Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4123,12 +4191,12 @@ Checking test 075 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 075 cpld_controlfrac PASS +Test 076 cpld_controlfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_prod -Checking test 076 cpld_restartfrac results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restartfrac_prod +Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4176,12 +4244,12 @@ Checking test 076 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 076 cpld_restartfrac PASS +Test 077 cpld_restartfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_2threads_prod -Checking test 077 cpld_2threads results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_2threads_prod +Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4229,12 +4297,12 @@ Checking test 077 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 077 cpld_2threads PASS +Test 078 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_decomp_prod -Checking test 078 cpld_decomp results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_decomp_prod +Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4282,12 +4350,12 @@ Checking test 078 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 078 cpld_decomp PASS +Test 079 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_satmedmf_prod -Checking test 079 cpld_satmedmf results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_satmedmf_prod +Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4335,12 +4403,12 @@ Checking test 079 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 079 cpld_satmedmf PASS +Test 080 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_ca_prod -Checking test 080 cpld_ca results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_ca_prod +Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4388,12 +4456,12 @@ Checking test 080 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 080 cpld_ca PASS +Test 081 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_c192_prod -Checking test 081 cpld_control_c192 results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_control_c192_prod +Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4441,12 +4509,12 @@ Checking test 081 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 081 cpld_control_c192 PASS +Test 082 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_c192_prod -Checking test 082 cpld_restart_c192 results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restart_c192_prod +Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4494,12 +4562,12 @@ Checking test 082 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 082 cpld_restart_c192 PASS +Test 083 cpld_restart_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_c192_prod -Checking test 083 cpld_controlfrac_c192 results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_controlfrac_c192_prod +Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4547,12 +4615,12 @@ Checking test 083 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 083 cpld_controlfrac_c192 PASS +Test 084 cpld_controlfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_c192_prod -Checking test 084 cpld_restartfrac_c192 results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restartfrac_c192_prod +Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4600,12 +4668,12 @@ Checking test 084 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 084 cpld_restartfrac_c192 PASS +Test 085 cpld_restartfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_c384_prod -Checking test 085 cpld_control_c384 results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_control_c384_prod +Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4656,12 +4724,12 @@ Checking test 085 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 085 cpld_control_c384 PASS +Test 086 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_c384_prod -Checking test 086 cpld_restart_c384 results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restart_c384_prod +Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4712,12 +4780,12 @@ Checking test 086 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 086 cpld_restart_c384 PASS +Test 087 cpld_restart_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_c384_prod -Checking test 087 cpld_controlfrac_c384 results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_controlfrac_c384_prod +Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4768,12 +4836,12 @@ Checking test 087 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 087 cpld_controlfrac_c384 PASS +Test 088 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_c384_prod -Checking test 088 cpld_restartfrac_c384 results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restartfrac_c384_prod +Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4824,12 +4892,12 @@ Checking test 088 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 088 cpld_restartfrac_c384 PASS +Test 089 cpld_restartfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmark_prod -Checking test 089 cpld_bmark results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_bmark_prod +Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4880,12 +4948,12 @@ Checking test 089 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 089 cpld_bmark PASS +Test 090 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmark_prod -Checking test 090 cpld_restart_bmark results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restart_bmark_prod +Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4936,12 +5004,12 @@ Checking test 090 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 090 cpld_restart_bmark PASS +Test 091 cpld_restart_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_prod -Checking test 091 cpld_bmarkfrac results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_bmarkfrac_prod +Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4992,12 +5060,12 @@ Checking test 091 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 091 cpld_bmarkfrac PASS +Test 092 cpld_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmarkfrac_prod -Checking test 092 cpld_restart_bmarkfrac results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restart_bmarkfrac_prod +Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5048,12 +5116,12 @@ Checking test 092 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 092 cpld_restart_bmarkfrac PASS +Test 093 cpld_restart_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_v16_prod -Checking test 093 cpld_bmarkfrac_v16 results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_bmarkfrac_v16_prod +Checking test 094 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5104,12 +5172,12 @@ Checking test 093 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 093 cpld_bmarkfrac_v16 PASS +Test 094 cpld_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmarkfrac_v16_prod -Checking test 094 cpld_restart_bmarkfrac_v16 results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restart_bmarkfrac_v16_prod +Checking test 095 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5160,12 +5228,12 @@ Checking test 094 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 094 cpld_restart_bmarkfrac_v16 PASS +Test 095 cpld_restart_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmark_wave_prod -Checking test 095 cpld_bmark_wave results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_bmark_wave_prod +Checking test 096 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5219,12 +5287,12 @@ Checking test 095 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 095 cpld_bmark_wave PASS +Test 096 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_wave_prod -Checking test 096 cpld_bmarkfrac_wave results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_bmarkfrac_wave_prod +Checking test 097 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5278,12 +5346,12 @@ Checking test 096 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 096 cpld_bmarkfrac_wave PASS +Test 097 cpld_bmarkfrac_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_wave_v16_prod -Checking test 097 cpld_bmarkfrac_wave_v16 results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_bmarkfrac_wave_v16_prod +Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5337,12 +5405,12 @@ Checking test 097 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 097 cpld_bmarkfrac_wave_v16 PASS +Test 098 cpld_bmarkfrac_wave_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_wave_prod -Checking test 098 cpld_control_wave results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_control_wave_prod +Checking test 099 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5393,12 +5461,12 @@ Checking test 098 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 098 cpld_control_wave PASS +Test 099 cpld_control_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_debug_prod -Checking test 099 cpld_debug results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_debug_prod +Checking test 100 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5446,12 +5514,12 @@ Checking test 099 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 099 cpld_debug PASS +Test 100 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_debugfrac_prod -Checking test 100 cpld_debugfrac results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_debugfrac_prod +Checking test 101 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5499,87 +5567,87 @@ Checking test 100 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 100 cpld_debugfrac PASS +Test 101 cpld_debugfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_control_cfsr -Checking test 101 datm_control_cfsr results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/datm_control_cfsr +Checking test 102 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 101 datm_control_cfsr PASS +Test 102 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_restart_cfsr -Checking test 102 datm_restart_cfsr results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/datm_restart_cfsr +Checking test 103 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 102 datm_restart_cfsr PASS +Test 103 datm_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_control_gefs -Checking test 103 datm_control_gefs results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/datm_control_gefs +Checking test 104 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 103 datm_control_gefs PASS +Test 104 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_bulk_cfsr -Checking test 104 datm_bulk_cfsr results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/datm_bulk_cfsr +Checking test 105 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 104 datm_bulk_cfsr PASS +Test 105 datm_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_bulk_gefs -Checking test 105 datm_bulk_gefs results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/datm_bulk_gefs +Checking test 106 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 105 datm_bulk_gefs PASS +Test 106 datm_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_mx025_cfsr -Checking test 106 datm_mx025_cfsr results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/datm_mx025_cfsr +Checking test 107 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 106 datm_mx025_cfsr PASS +Test 107 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_mx025_gefs -Checking test 107 datm_mx025_gefs results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/datm_mx025_gefs +Checking test 108 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 107 datm_mx025_gefs PASS +Test 108 datm_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_debug_cfsr -Checking test 108 datm_debug_cfsr results .... +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/datm_debug_cfsr +Checking test 109 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 108 datm_debug_cfsr PASS +Test 109 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 18 21:22:48 CST 2021 -Elapsed time: 10h:25m:12s. Have a nice day! +Thu Feb 25 08:57:39 CST 2021 +Elapsed time: 01h:50m:57s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 102d04a38d..99a5aa8cc7 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Thu Feb 18 16:08:52 UTC 2021 +Wed Feb 24 18:26:04 UTC 2021 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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-20210217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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-20210217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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-20210217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_ca_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_lndp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -1075,7 +1075,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,7 +1131,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -1198,7 +1198,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,7 +1209,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1218,7 +1218,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1229,7 +1229,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -1240,7 +1240,7 @@ Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1288,7 +1288,7 @@ Test 025 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1336,7 +1336,7 @@ Test 026 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1384,7 +1384,7 @@ Test 027 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1432,7 +1432,7 @@ Test 028 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1480,7 +1480,7 @@ Test 029 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,7 +1528,7 @@ Test 030 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1576,7 +1576,7 @@ Test 031 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1628,7 +1628,7 @@ Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,7 +1682,7 @@ Test 033 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,7 +1774,7 @@ Test 034 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_rap_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_rap_prod Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,7 +1842,7 @@ Test 035 fv3_ccpp_rap PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_hrrr_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_hrrr_prod Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1910,7 +1910,7 @@ Test 036 fv3_ccpp_hrrr PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,7 +1978,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -2046,7 +2046,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2114,7 +2114,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v15p2_prod Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2182,7 +2182,7 @@ Test 040 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v16_prod Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2262,7 +2262,7 @@ Test 041 fv3_ccpp_gfs_v16 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_restart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v16_restart_prod Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2312,7 +2312,7 @@ Test 042 fv3_ccpp_gfs_v16_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_stochy_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v16_stochy_prod Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2380,7 +2380,7 @@ Test 043 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2448,7 +2448,7 @@ Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2516,7 +2516,7 @@ Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2578,7 +2578,7 @@ Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfsv16_csawmg_prod Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2626,7 +2626,7 @@ Test 047 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfsv16_csawmgt_prod Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2674,7 +2674,7 @@ Test 048 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -2722,7 +2722,7 @@ Test 049 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_flake_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v16_flake_prod Checking test 050 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2790,7 +2790,7 @@ Test 050 fv3_ccpp_gfs_v16_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -2858,7 +2858,7 @@ Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -2876,7 +2876,7 @@ Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2938,7 +2938,7 @@ Test 053 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3000,7 +3000,7 @@ Test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -3068,7 +3068,7 @@ Test 055 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v16_debug_prod Checking test 056 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3136,7 +3136,7 @@ Test 056 fv3_ccpp_gfs_v16_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -3204,7 +3204,7 @@ Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3272,7 +3272,7 @@ Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_control_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_regional_control_debug_prod Checking test 059 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3283,7 +3283,7 @@ Test 059 fv3_ccpp_regional_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_control_debug_prod Checking test 060 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3313,7 +3313,7 @@ Test 060 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_stretched_nest_debug_prod Checking test 061 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3333,7 +3333,7 @@ Test 061 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -3401,7 +3401,7 @@ Test 062 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -3469,7 +3469,7 @@ Test 063 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -3537,7 +3537,7 @@ Test 064 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -3605,7 +3605,7 @@ Test 065 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -3673,7 +3673,7 @@ Test 066 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -3741,7 +3741,7 @@ Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/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 @@ -3759,7 +3759,7 @@ Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3821,5 +3821,5 @@ Test 069 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 18 16:51:34 UTC 2021 -Elapsed time: 00h:42m:42s. Have a nice day! +Wed Feb 24 19:09:15 UTC 2021 +Elapsed time: 00h:43m:11s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 4dafe6fe6b..1879544152 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Thu Feb 18 21:24:50 UTC 2021 +Wed Feb 24 00:11:28 UTC 2021 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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-20210217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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-20210217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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-20210217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -257,7 +257,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -325,7 +325,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -373,7 +373,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -421,7 +421,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -430,9 +430,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 dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.nc .........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 @@ -469,7 +469,7 @@ Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -517,7 +517,7 @@ Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -565,7 +565,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -613,7 +613,7 @@ Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -681,7 +681,7 @@ Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_ca_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -749,7 +749,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_lndp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,7 +817,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -933,7 +933,7 @@ Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -982,7 +982,7 @@ Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -1031,7 +1031,7 @@ Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1105,7 +1105,7 @@ Test 019 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -1173,7 +1173,7 @@ Test 020 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1229,7 +1229,7 @@ Test 021 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -1296,7 +1296,7 @@ Test 022 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1307,7 +1307,7 @@ Test 023 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1316,7 +1316,7 @@ Test 024 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1327,7 +1327,7 @@ Test 025 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -1338,7 +1338,7 @@ Test 026 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1386,7 +1386,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -1434,7 +1434,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -1482,7 +1482,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,7 +1530,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,7 +1578,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1626,7 +1626,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -1674,7 +1674,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -1726,7 +1726,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1780,7 +1780,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1872,7 +1872,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_rap_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1940,7 +1940,7 @@ Test 037 fv3_ccpp_rap PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_hrrr_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2008,7 +2008,7 @@ Test 038 fv3_ccpp_hrrr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2076,7 +2076,7 @@ Test 039 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -2144,7 +2144,7 @@ Test 040 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -2212,7 +2212,7 @@ Test 041 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -2280,7 +2280,7 @@ Test 042 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_prod Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2360,7 +2360,7 @@ Test 043 fv3_ccpp_gfs_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_restart_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_restart_prod Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2410,7 +2410,7 @@ Test 044 fv3_ccpp_gfs_v16_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_stochy_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_stochy_prod Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2478,7 +2478,7 @@ Test 045 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -2546,7 +2546,7 @@ Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2614,7 +2614,7 @@ Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -2675,9 +2675,77 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_2thrd 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_v16_RRTMGP_2thrd PASS + + baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_csawmg_prod -Checking test 049 fv3_ccpp_gfsv16_csawmg results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -2720,12 +2788,12 @@ Checking test 049 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 049 fv3_ccpp_gfsv16_csawmg PASS +Test 050 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -2768,12 +2836,12 @@ Checking test 050 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 050 fv3_ccpp_gfsv16_csawmgt PASS +Test 051 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gocart_clm_prod -Checking test 051 fv3_ccpp_gocart_clm results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -2816,12 +2884,12 @@ Checking test 051 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 051 fv3_ccpp_gocart_clm PASS +Test 052 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_flake_prod -Checking test 052 fv3_ccpp_gfs_v16_flake results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_flake_prod +Checking test 053 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2884,12 +2952,12 @@ Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfs_v16_flake PASS +Test 053 fv3_ccpp_gfs_v16_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -2952,12 +3020,12 @@ Checking test 053 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 053 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-20210217/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 @@ -2970,12 +3038,12 @@ Checking test 054 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 054 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-20210217/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3032,12 +3100,12 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1 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_gfsv16_ugwpv1 PASS +Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3094,12 +3162,12 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3162,12 +3230,12 @@ Checking test 057 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 057 fv3_ccpp_gfs_v15p2_debug PASS +Test 058 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_debug_prod -Checking test 058 fv3_ccpp_gfs_v16_debug results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_debug_prod +Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3230,12 +3298,12 @@ Checking test 058 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS +Test 059 fv3_ccpp_gfs_v16_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3298,12 +3366,12 @@ Checking test 059 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 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3366,23 +3434,23 @@ Checking test 060 fv3_ccpp_gfs_v16_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 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_control_debug_prod -Checking test 061 fv3_ccpp_regional_control_debug results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_regional_control_debug_prod +Checking test 062 fv3_ccpp_regional_control_debug 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 061 fv3_ccpp_regional_control_debug PASS +Test 062 fv3_ccpp_regional_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_control_debug_prod -Checking test 062 fv3_ccpp_control_debug results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_control_debug_prod +Checking test 063 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3407,12 +3475,12 @@ Checking test 062 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 062 fv3_ccpp_control_debug PASS +Test 063 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stretched_nest_debug_prod -Checking test 063 fv3_ccpp_stretched_nest_debug results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_stretched_nest_debug_prod +Checking test 064 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 @@ -3427,12 +3495,12 @@ Checking test 063 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 063 fv3_ccpp_stretched_nest_debug PASS +Test 064 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gsd_debug_prod -Checking test 064 fv3_ccpp_gsd_debug results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gsd_debug_prod +Checking test 065 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3495,12 +3563,12 @@ Checking test 064 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 064 fv3_ccpp_gsd_debug PASS +Test 065 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3563,12 +3631,12 @@ Checking test 065 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 065 fv3_ccpp_gsd_diag3d_debug PASS +Test 066 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_debug_prod -Checking test 066 fv3_ccpp_thompson_debug results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_thompson_debug_prod +Checking test 067 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3631,12 +3699,12 @@ Checking test 066 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 066 fv3_ccpp_thompson_debug PASS +Test 067 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 068 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 @@ -3699,12 +3767,12 @@ Checking test 067 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 067 fv3_ccpp_thompson_no_aero_debug PASS +Test 068 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3767,12 +3835,12 @@ Checking test 068 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 068 fv3_ccpp_rrfs_v1beta_debug PASS +Test 069 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 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 @@ -3835,12 +3903,12 @@ Checking test 069 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 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3853,12 +3921,12 @@ Checking test 070 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 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3915,12 +3983,12 @@ Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_prod -Checking test 072 cpld_control results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_control_prod +Checking test 073 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3968,12 +4036,12 @@ Checking test 072 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 072 cpld_control PASS +Test 073 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_prod -Checking test 073 cpld_restart results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restart_prod +Checking test 074 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4021,12 +4089,12 @@ Checking test 073 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 073 cpld_restart PASS +Test 074 cpld_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_prod -Checking test 074 cpld_controlfrac results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_controlfrac_prod +Checking test 075 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4074,12 +4142,12 @@ Checking test 074 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 074 cpld_controlfrac PASS +Test 075 cpld_controlfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_prod -Checking test 075 cpld_restartfrac results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restartfrac_prod +Checking test 076 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4127,12 +4195,12 @@ Checking test 075 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 075 cpld_restartfrac PASS +Test 076 cpld_restartfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_2threads_prod -Checking test 076 cpld_2threads results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_2threads_prod +Checking test 077 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4180,12 +4248,12 @@ Checking test 076 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 076 cpld_2threads PASS +Test 077 cpld_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_decomp_prod -Checking test 077 cpld_decomp results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_decomp_prod +Checking test 078 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4233,12 +4301,12 @@ Checking test 077 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 077 cpld_decomp PASS +Test 078 cpld_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_satmedmf_prod -Checking test 078 cpld_satmedmf results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_satmedmf_prod +Checking test 079 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4286,12 +4354,12 @@ Checking test 078 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 078 cpld_satmedmf PASS +Test 079 cpld_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_ca_prod -Checking test 079 cpld_ca results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_ca_prod +Checking test 080 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4339,12 +4407,12 @@ Checking test 079 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 079 cpld_ca PASS +Test 080 cpld_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_c192_prod -Checking test 080 cpld_control_c192 results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_control_c192_prod +Checking test 081 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4392,12 +4460,12 @@ Checking test 080 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 080 cpld_control_c192 PASS +Test 081 cpld_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_c192_prod -Checking test 081 cpld_restart_c192 results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restart_c192_prod +Checking test 082 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4445,12 +4513,12 @@ Checking test 081 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 081 cpld_restart_c192 PASS +Test 082 cpld_restart_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_c192_prod -Checking test 082 cpld_controlfrac_c192 results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_controlfrac_c192_prod +Checking test 083 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4498,12 +4566,12 @@ Checking test 082 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 082 cpld_controlfrac_c192 PASS +Test 083 cpld_controlfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_c192_prod -Checking test 083 cpld_restartfrac_c192 results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restartfrac_c192_prod +Checking test 084 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4551,12 +4619,12 @@ Checking test 083 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 083 cpld_restartfrac_c192 PASS +Test 084 cpld_restartfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_c384_prod -Checking test 084 cpld_control_c384 results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_control_c384_prod +Checking test 085 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4607,12 +4675,12 @@ Checking test 084 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 084 cpld_control_c384 PASS +Test 085 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_c384_prod -Checking test 085 cpld_restart_c384 results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restart_c384_prod +Checking test 086 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4663,12 +4731,12 @@ Checking test 085 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 085 cpld_restart_c384 PASS +Test 086 cpld_restart_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_c384_prod -Checking test 086 cpld_controlfrac_c384 results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_controlfrac_c384_prod +Checking test 087 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4719,12 +4787,12 @@ Checking test 086 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 086 cpld_controlfrac_c384 PASS +Test 087 cpld_controlfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_c384_prod -Checking test 087 cpld_restartfrac_c384 results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restartfrac_c384_prod +Checking test 088 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4775,12 +4843,12 @@ Checking test 087 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 087 cpld_restartfrac_c384 PASS +Test 088 cpld_restartfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmark_prod -Checking test 088 cpld_bmark results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_bmark_prod +Checking test 089 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4831,12 +4899,12 @@ Checking test 088 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 088 cpld_bmark PASS +Test 089 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmark_prod -Checking test 089 cpld_restart_bmark results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restart_bmark_prod +Checking test 090 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4887,12 +4955,12 @@ Checking test 089 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 089 cpld_restart_bmark PASS +Test 090 cpld_restart_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_prod -Checking test 090 cpld_bmarkfrac results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_bmarkfrac_prod +Checking test 091 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4943,12 +5011,12 @@ Checking test 090 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 090 cpld_bmarkfrac PASS +Test 091 cpld_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmarkfrac_prod -Checking test 091 cpld_restart_bmarkfrac results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restart_bmarkfrac_prod +Checking test 092 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4999,12 +5067,12 @@ Checking test 091 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 091 cpld_restart_bmarkfrac PASS +Test 092 cpld_restart_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_v16_prod -Checking test 092 cpld_bmarkfrac_v16 results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_bmarkfrac_v16_prod +Checking test 093 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5055,12 +5123,12 @@ Checking test 092 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 092 cpld_bmarkfrac_v16 PASS +Test 093 cpld_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmarkfrac_v16_prod -Checking test 093 cpld_restart_bmarkfrac_v16 results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restart_bmarkfrac_v16_prod +Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5111,12 +5179,12 @@ Checking test 093 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 093 cpld_restart_bmarkfrac_v16 PASS +Test 094 cpld_restart_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmark_wave_prod -Checking test 094 cpld_bmark_wave results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_bmark_wave_prod +Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5170,12 +5238,12 @@ Checking test 094 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 094 cpld_bmark_wave PASS +Test 095 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_wave_prod -Checking test 095 cpld_bmarkfrac_wave results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_bmarkfrac_wave_prod +Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5229,12 +5297,12 @@ Checking test 095 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 095 cpld_bmarkfrac_wave PASS +Test 096 cpld_bmarkfrac_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_wave_v16_prod -Checking test 096 cpld_bmarkfrac_wave_v16 results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_bmarkfrac_wave_v16_prod +Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5288,12 +5356,12 @@ Checking test 096 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 096 cpld_bmarkfrac_wave_v16 PASS +Test 097 cpld_bmarkfrac_wave_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_wave_prod -Checking test 097 cpld_control_wave results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_control_wave_prod +Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5344,12 +5412,12 @@ Checking test 097 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 097 cpld_control_wave PASS +Test 098 cpld_control_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_debug_prod -Checking test 098 cpld_debug results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_debug_prod +Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5397,12 +5465,12 @@ Checking test 098 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 098 cpld_debug PASS +Test 099 cpld_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_debugfrac_prod -Checking test 099 cpld_debugfrac results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_debugfrac_prod +Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5450,87 +5518,87 @@ Checking test 099 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 099 cpld_debugfrac PASS +Test 100 cpld_debugfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_control_cfsr -Checking test 100 datm_control_cfsr results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/datm_control_cfsr +Checking test 101 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 100 datm_control_cfsr PASS +Test 101 datm_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_restart_cfsr -Checking test 101 datm_restart_cfsr results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/datm_restart_cfsr +Checking test 102 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 101 datm_restart_cfsr PASS +Test 102 datm_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_control_gefs -Checking test 102 datm_control_gefs results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/datm_control_gefs +Checking test 103 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 102 datm_control_gefs PASS +Test 103 datm_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_bulk_cfsr -Checking test 103 datm_bulk_cfsr results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/datm_bulk_cfsr +Checking test 104 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 103 datm_bulk_cfsr PASS +Test 104 datm_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_bulk_gefs -Checking test 104 datm_bulk_gefs results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/datm_bulk_gefs +Checking test 105 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 104 datm_bulk_gefs PASS +Test 105 datm_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_mx025_cfsr -Checking test 105 datm_mx025_cfsr results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/datm_mx025_cfsr +Checking test 106 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 105 datm_mx025_cfsr PASS +Test 106 datm_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_mx025_gefs -Checking test 106 datm_mx025_gefs results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/datm_mx025_gefs +Checking test 107 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 106 datm_mx025_gefs PASS +Test 107 datm_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_debug_cfsr -Checking test 107 datm_debug_cfsr results .... +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/datm_debug_cfsr +Checking test 108 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 107 datm_debug_cfsr PASS +Test 108 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 19 05:44:09 UTC 2021 -Elapsed time: 08h:19m:22s. Have a nice day! +Wed Feb 24 03:37:34 UTC 2021 +Elapsed time: 03h:26m:08s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index 2dd89c69e9..f9ac7777d1 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -81,6 +81,7 @@ RUN | fv3_ccpp_gfs_v16_stochy RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP_2thrd | - wcoss_cray | fv3 | COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | # fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests diff --git a/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd new file mode 100644 index 0000000000..d009b4d768 --- /dev/null +++ b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd @@ -0,0 +1,84 @@ +############################################################################### +# +# FV3 CCPP GFS v16 w/ RRTMGP test using two openMP threads +# +############################################################################### + +export TEST_DESCR="Compare FV3 CCPP GFS v16 w/ RRTMGP using two threads results with previous trunk version" + +export CNTL_DIR=fv3_gfs_v16_RRTMGP + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 +export THRD=2 +export TPN=$TPN_thrd +DT_ATMOS="1200" +export DO_RRTMGP=.T. + +export FV3_RUN=ccpp_gfs_v16_run.IN +export CCPP_SUITE=FV3_GFS_v16_RRTMGP +export INPUT_NML=ccpp_v16_c96_rrtmgp.nml.IN + From cd755dccbd0c89ae591e98ef04fe5a4cf6374185 Mon Sep 17 00:00:00 2001 From: BrianCurtis-NOAA <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Thu, 25 Feb 2021 17:18:11 -0500 Subject: [PATCH 073/109] Feature/rt automation (#403) * rt automation script * rt automation script w/o token * getting machine name test * Updates to python script, and addition of YAML database * added check for approved users, added check for triggers in pr comments * Script now interacts with github directly, is able to process triggers * Added threaded process submition with callback for regression tests * remove an extra sys.exit() * Switched to using Labels * Rename RegressionTests_hera.intel.log to RegressionTests_neon.intel.log temp change to test function * Rename RegressionTests_neon.intel.log to RegressionTests_hera.intel.log reverted * AUTO: Updated tests log --- tests/auto/rt_auto.py | 316 ++++++++++++++++++++++++++++++++++++++++++ tests/auto/rt_auto.sh | 45 ++++++ 2 files changed, 361 insertions(+) create mode 100644 tests/auto/rt_auto.py create mode 100644 tests/auto/rt_auto.sh diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py new file mode 100644 index 0000000000..a5d23ff33e --- /dev/null +++ b/tests/auto/rt_auto.py @@ -0,0 +1,316 @@ +"""Automation of UFS Regression Testing + +This script automates the process of UFS regression testing for code managers +at NOAA-EMC + +This script should be started through rt_auto.sh so that env vars are set up +prior to start. +""" +from __future__ import print_function +from github import Github as gh +import argparse +import datetime +import subprocess +import re +import os +import logging + +class GHInterface: + ''' + This class stores information for communicating with GitHub + ... + + Attributes + ---------- + GHACCESSTOKEN : str + API token to autheticate with GitHub + client : pyGitHub communication object + The connection to GitHub to make API requests + ''' + def __init__(self): + self.logger = logging.getLogger('GHINTERFACE') + try: + self.client = gh(os.getenv('ghapitoken')) + except Exception as e: + self.logger.critical(f'Exception is {e}') + raise(e) + +def parse_args_in(): + ''' Parse all input arguments coming from rt_auto.sh ''' + logger = logging.getLogger('PARSE_ARGS_IN') + # Create Parse + parser = argparse.ArgumentParser() + + # Setup Input Arguments + choices = ['hera.intel', 'orion.intel', 'gaea.intel', 'jet.intel', 'wcoss_dell_p3'] + parser.add_argument('-m', '--machine', help='Machine and Compiler combination', required=True, choices=choices, type=str) + parser.add_argument('-w', '--workdir', help='Working directory', required=True, type=str) + + # Get Arguments + args = parser.parse_args() + + return args + +def input_data(args): + ''' Create dictionaries of data needed for processing UFS pull requests ''' + logger = logging.getLogger('INPUT_DATA') + machine_dict = { + 'name': args.machine, + 'workdir': args.workdir + } + repo_list_dict = [{ + 'name': 'ufs-weather-model', + 'address': 'ufs-community/ufs-weather-model', + 'base': 'develop' + }] + action_list_dict = [{ + 'name': 'RT', + 'command': 'cd tests && /bin/bash --login ./rt.sh -e', + 'callback_fnc': 'move_rt_logs' + }] + + return machine_dict, repo_list_dict, action_list_dict + +def match_label_with_action(machine, actions, label): + ''' Match the label that initiates a job with an action in the dict''' + logger = logging.getLogger('MATCH_LABEL_WITH_ACTIONS') + split_label = label.name.split('-') + + if len(split_label) != 3: return False + if not re.match(split_label[0], 'Auto'): return False + if not re.match(split_label[2], machine['name'].split('.')[0]): return False + action_match = next((action for action in actions if re.match(action['name'], split_label[1])), False) + + return action_match + + +def get_preqs_with_actions(repos, machine, ghinterface_obj, actions): + ''' Create list of dictionaries of a pull request and its machine label and action ''' + logger = logging.getLogger('GET_PREQS_WITH_ACTIONS') + gh_preqs = [ghinterface_obj.client.get_repo(repo['address']).get_pulls(state='open', sort='created', base=repo['base']) for repo in repos] + each_pr = [preq for gh_preq in gh_preqs for preq in gh_preq] + preq_labels = [{'preq': pr, 'label': label} for pr in each_pr for label in pr.get_labels()] + + for i, pr_label in enumerate(preq_labels): + match = match_label_with_action(machine, actions, pr_label['label']) + if match: + preq_labels[i]['action'] = match + else: + preq_labels[i] = False + + preq_dict = [x for x in preq_labels if x] + + return preq_dict + +class Job: + ''' + This class stores all information needed to run jobs on this machine. + This class provides all methods needed to run all jobs. + ... + + Attributes + ---------- + preq_dict: dict + Dictionary of all data that comes from the GitHub pull request + ghinterface_obj: object + An interface to GitHub setup through class GHInterface + machine: dict + Information about the machine the jobs will be running on + provided by the bash script + ''' + + def __init__(self, preq_dict, ghinterface_obj, machine): + self.logger = logging.getLogger('JOB') + self.preq_dict = preq_dict + self.ghinterface_obj = ghinterface_obj + self.machine = machine + + def remove_pr_label(self): + ''' Removes the pull request label that initiated the job run from PR ''' + self.logger.info(f'Removing Label: {self.preq_dict["label"]}') + self.preq_dict['preq'].remove_from_labels(self.preq_dict['label']) + + def send_log_name_as_comment(self): + logger = logging.getLogger('JOB/SEND_LOG_NAME_AS_COMMENT') + logger.info('Removing last months logs (if any)') + last_month = datetime.date.today().replace(day=1) - datetime.timedelta(days=1) + rm_command = [[f'rm rt_auto_*_{last_month.strftime("%Y%m")}*.log', os.getcwd()]] + logger.info(f'Running "{rm_command}"') + try: + self.run_commands(rm_command) + except Exception as e: + logger.warning(f'"{rm_command}" failed with error:{e}') + + new_log_name = f'rt_auto_{self.machine["name"]}_'\ + f'{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}.log' + cp_command = [[f'cp rt_auto.log {new_log_name}', os.getcwd()]] + logger.info(f'Running "{cp_command}"') + try: + self.run_commands(cp_command) + except Exception as e: + logger.warning('Renaming rt_auto failed') + else: + comment_text = f'Log Name:{new_log_name}\n'\ + f'Log Location:{os.getcwd()}\n'\ + 'Logs are kept for one month' + try: + self.preq_dict['preq'].create_issue_comment(comment_text) + except Exception as e: + logger.warning('Creating comment with log location failed with:{e}') + else: + logger.info(f'{comment_text}') + + def run_commands(self, commands_with_cwd): + logger = logging.getLogger('JOB/RUN_COMMANDS') + for command, in_cwd in commands_with_cwd: + logger.info(f'Running "{command}" in location "{in_cwd}"') + try: + output = subprocess.Popen(command, shell=True, cwd=in_cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + out, err = output.communicate() + out = [] if not out else out.decode('utf8').split('\n') + err = [] if not err else err.decode('utf8').split('\n') + except Exception as e: + logger.critical(e) + [logger.critical(f'stdout: {item}') for item in out if not None] + [logger.critical(f'stderr: {eitem}') for eitem in err if not None] + assert(e) + else: + logger.info(f'Finished running: {command}') + [logger.debug(f'stdout: {item}') for item in out if not None] + [logger.debug(f'stderr: {eitem}') for eitem in err if not None] + + def remove_pr_dir(self): + logger = logging.getLogger('JOB/REMOVE_PR_DIR') + pr_dir_str = f'{self.machine["workdir"]}/{str(self.preq_dict["preq"].id)}' + rm_command = [[f'rm -rf {pr_dir_str}', self.pr_repo_loc]] + logger.info(f'Running "{rm_command}"') + self.run_commands(rm_command) + + def clone_pr_repo(self): + ''' clone the GitHub pull request repo, via command line ''' + logger = logging.getLogger('JOB/CLONE_PR_REPO') + repo_name = self.preq_dict['preq'].head.repo.name + self.branch = self.preq_dict['preq'].head.ref + git_url = self.preq_dict['preq'].head.repo.html_url.split('//') + git_url = f'{git_url[0]}//${{ghapitoken}}@{git_url[1]}' + logger.info(f'GIT URL: {git_url}') + logger.info('Starting repo clone') + repo_dir_str = f'{self.machine["workdir"]}/{str(self.preq_dict["preq"].id)}/{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}' + + create_repo_commands = [ + [f'mkdir -p "{repo_dir_str}"', self.machine['workdir']], + [f'git clone -b {self.branch} {git_url}', repo_dir_str], + [f'git submodule update --init --recursive', f'{repo_dir_str}/{repo_name}'] + ] + + self.run_commands(create_repo_commands) + + logger.info('Finished repo clone') + self.pr_repo_loc = repo_dir_str+"/"+repo_name + return self.pr_repo_loc + + def run_function(self): + ''' Run the command associted with the label used to initiate this job ''' + logger = logging.getLogger('JOB/RUN_FUNCTION') + try: + logger.info(f'Running: "{self.preq_dict["action"]["command"]}" in "{self.pr_repo_loc}"') + output = subprocess.Popen(self.preq_dict['action']['command'], cwd=self.pr_repo_loc, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + out,err = output.communicate() + out = [] if not out else out.decode('utf8').split('\n') + err = [] if not err else err.decode('utf8').split('\n') + except Exception as e: + logger.critical(e) + [logger.critical(f'stdout: {item}') for item in out if not None] + [logger.critical(f'stderr: {eitem}') for eitem in err if not None] + assert(e) + else: + if output.returncode != 0: + logger.critical(f'{self.preq_dict["action"]["command"]} Failed') + [logger.critical(f'stdout: {item}') for item in out if not None] + [logger.critical(f'stderr: {eitem}') for eitem in err if not None] + else: + try: + logger.info(f'Attempting to run callback: {self.preq_dict["action"]["callback_fnc"]}') + getattr(self, self.preq_dict['action']['callback_fnc'])() + except Exception as e: + logger.critical(f'Callback function {self.preq_dict["action"]["callback_fnc"]} failed with "{e}"') + goodexit = False + assert(e) + else: + logger.info(f'Finished callback {self.preq_dict["action"]["callback_fnc"]}') + [logger.debug(f'stdout: {item}') for item in out if not None] + [logger.debug(f'stderr: {eitem}') for eitem in err if not None] + + # Add Callback Functions After Here + def move_rt_logs(self): + ''' This is the callback function associated with the "RT" command ''' + logger = logging.getLogger('JOB/MOVE_RT_LOGS') + rt_log = f'tests/RegressionTests_{self.machine["name"]}.log' + filepath = f'{self.pr_repo_loc}/{rt_log}' + rm_filepath = '/'.join((self.pr_repo_loc.split('/'))[:-1]) + if os.path.exists(filepath): + move_rt_commands = [ + [f'git add {rt_log}', self.pr_repo_loc], + [f'git commit -m "Auto: Added Updated RT Log file: {rt_log}"', self.pr_repo_loc], + [f'git pull --no-edit origin {self.branch}', self.pr_repo_loc], + ['sleep 10', self.pr_repo_loc], + [f'git push origin {self.branch}', self.pr_repo_loc] + ] + self.run_commands(move_rt_commands) + + else: + logger.critical('Could not find RT log') + raise FileNotFoundError('Could not find RT log') + +def main(): + + # handle logging + log_path = os.getcwd() + log_filename = 'rt_auto.log' + # Please don't run the following on cron with level=logging.DEBUG + # as it exposes the GH API Token + # Only set it to DEBUG while debugging + logging.basicConfig(filename=log_filename, filemode='w', level=logging.INFO) + logger = logging.getLogger('MAIN') + logger.info('Starting Script') + # handle input args + logger.info('Parsing input args') + args = parse_args_in() + + # get input data + logger.info('Calling input_data().') + machine, repos, actions = input_data(args) + + # setup interface with GitHub + logger.info('Setting up GitHub interface.') + ghinterface_obj = GHInterface() + + # get all pull requests from the GitHub object + logger.info('Getting all pull requests, labels and actions applicable to this machine.') + preq_dict = get_preqs_with_actions(repos, machine, ghinterface_obj, actions) + + # add Job objects and run them + logger.info('Adding all jobs to an object list and running them.') + jobs = [Job(pullreq, ghinterface_obj, machine) for pullreq in preq_dict] + for job in jobs: + logger.info(f'Starting Job: {job}') + try: + logger.info('Calling remove_pr_label') + job.remove_pr_label() + logger.info('Calling clone_pr_repo') + job.clone_pr_repo() + logger.info('Calling run_function') + job.run_function() + logger.info('Calling remove_pr_dir') + job.remove_pr_dir() + logger.info('Calling send_log_name_as_comment') + job.send_log_name_as_comment() + except Exception as e: + logger.critical(e) + assert(e) + + logger.info('Script Finished') + + +if __name__ == '__main__': + main() diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh new file mode 100644 index 0000000000..61fe523c6e --- /dev/null +++ b/tests/auto/rt_auto.sh @@ -0,0 +1,45 @@ +#!/bin/bash --login +set -eux +if [ -f "accesstoken.sh" ]; then + source ./accesstoken.sh +else + echo "Please create accesstoken.sh (600) with the following content\n" + echo "export ghapitoken=" + exit 1 +fi + +export RT_COMPILER='intel' +source ../detect_machine.sh +echo "Machine ID: "+$MACHINE_ID +if [[ $MACHINE_ID = hera.* ]]; then + WORKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test + export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH + export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages +elif [[ $MACHINE_ID = orion.* ]]; then + WORKDIR=/work/noaa/nems/bcurtis/test + export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH + export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages +elif [[ $MACHINE_ID = jet.* ]]; then + WORKDIR=/lfs4/HFIP/h-nems/Brian.Curtis/test + export ACCNR="h-nems" + export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages +elif [[ $MACHINE_ID = gaea.* ]]; then + WORKDIR=/lustre/f2/pdata/ncep/Brian.Curtis/test + export LOADEDMODULES=$LOADEDMODULES + export ACCNR="nggps_emc" # This applies to Brian.Curtis, may need change later + export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH + export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages +elif [[ $MACHINE_ID = cheyenne.* ]]; then + #export PATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/bin:$PATH + #export PYTHONPATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/lib/python2.7/site-packages + echo "cheyenne not currently supported. automated RT not starting" + exit 1 +else + echo "No Python Path for this machine. automated RT not starting" + exit 1 +fi + +python rt_auto.py -m $MACHINE_ID -w $WORKDIR + +exit 0 From 99bd3e44ae19aec9b5bf040e99ce3d16ab91e429 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Fri, 26 Feb 2021 16:19:48 -0700 Subject: [PATCH 074/109] Remove inconsistencies in computation of air density with Thompson MP (#64) * Update submodule pointer for fv3atm --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index c48b45a947..730ac5d8d3 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c48b45a9473a7f21a66c7c2217fd6e06590d6297 +Subproject commit 730ac5d8d334438dbef93e974b32cd7872d73404 From 4fbebd7cd6b66590b199990a4abc5e802abc8c77 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 3 Mar 2021 10:15:35 -0700 Subject: [PATCH 075/109] Move Noah MP init to CCPP and update Noah MP regression tests, ice flux init bug fix in CCPP (#425) * change the namelist setting for noahmp * Consolidate namelist templates for NoahMP tests Co-authored-by: Helin Wei Co-authored-by: Brian Curtis --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 126 +++--- tests/RegressionTests_cheyenne.intel.log | 418 ++++++++++---------- tests/RegressionTests_gaea.intel.log | 408 ++++++++++---------- tests/RegressionTests_hera.gnu.log | 126 +++--- tests/RegressionTests_hera.intel.log | 446 ++++++++++----------- tests/RegressionTests_jet.intel.log | 272 ++++++------- tests/RegressionTests_orion.intel.log | 444 ++++++++++----------- tests/RegressionTests_wcoss_cray.log | 442 ++++++++++++--------- tests/RegressionTests_wcoss_dell_p3.log | 450 +++++++++++----------- tests/default_vars.sh | 2 + tests/parm/ccpp_gfdlmp.nml.IN | 4 +- tests/parm/ccpp_gsd.nml.IN | 4 +- tests/parm/ccpp_v16_c96_rrtmgp.nml.IN | 2 +- tests/rt.conf | 2 +- tests/rt.sh | 4 +- tests/tests/fv3_ccpp_gfdlmprad_noahmp | 4 + tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd | 5 + tests/tests/fv3_ccpp_rrfs_v1beta | 2 + tests/tests/fv3_ccpp_rrfs_v1beta_debug | 3 + 20 files changed, 1625 insertions(+), 1541 deletions(-) diff --git a/FV3 b/FV3 index 4908898cdd..ddb56fe83e 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 4908898cdd71a84cef482a7e6c330697a39c7378 +Subproject commit ddb56fe83ee75b62bcc9dd03f74228f569a76ff0 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 610cecdf52..e0ae195238 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Wed Feb 24 11:31:32 MST 2021 +Mon Mar 1 13:22:06 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/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-20210217/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/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-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -198,8 +198,8 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -248,8 +248,8 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -316,8 +316,8 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,8 +384,8 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/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-20210217/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -520,8 +520,8 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/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-20210217/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/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-20210217/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/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-20210217/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/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-20210217/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/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-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/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-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -964,8 +964,8 @@ Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1026,8 +1026,8 @@ Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1056,8 +1056,8 @@ Checking test 017 fv3_ccpp_control_debug results .... Test 017 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,8 +1124,8 @@ Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1192,8 +1192,8 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1260,8 +1260,8 @@ Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,8 +1328,8 @@ Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,8 +1402,8 @@ Checking test 022 fv3_ccpp_multigases results .... Test 022 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_regional_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_regional_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1413,8 +1413,8 @@ Checking test 023 fv3_ccpp_regional_control_debug results .... Test 023 fv3_ccpp_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,8 +1481,8 @@ Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Test 024 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1549,8 +1549,8 @@ Checking test 025 fv3_ccpp_gsd_debug results .... Test 025 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1617,8 +1617,8 @@ Checking test 026 fv3_ccpp_thompson_debug results .... Test 026 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1685,8 +1685,8 @@ Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Test 027 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1753,8 +1753,8 @@ Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1771,8 +1771,8 @@ Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_2817/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1834,5 +1834,5 @@ Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 24 11:50:16 MST 2021 -Elapsed time: 00h:18m:44s. Have a nice day! +Mon Mar 1 13:45:15 MST 2021 +Elapsed time: 00h:23m:09s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index a7564553e0..c4c08af4a5 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Wed Feb 24 12:37:37 MST 2021 +Mon Mar 1 13:21:50 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210217/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -324,8 +324,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-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -372,8 +372,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-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -420,8 +420,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-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -431,7 +431,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -468,8 +468,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-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -516,8 +516,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-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -564,8 +564,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-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -612,8 +612,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-20210217/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,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-20210217/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ 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-20210217/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_lndp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lndp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,19 +1228,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1335,8 +1335,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1383,8 +1383,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1431,8 +1431,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,8 +1479,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1527,8 +1527,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1575,8 +1575,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,8 +1681,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_rap_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rap_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_rap_prod Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 035 fv3_ccpp_rap results .... Test 035 fv3_ccpp_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_hrrr_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_hrrr_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_hrrr_prod Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 036 fv3_ccpp_hrrr results .... Test 036 fv3_ccpp_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 037 fv3_ccpp_thompson results .... Test 037 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -2045,8 +2045,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2113,8 +2113,8 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_prod Checking test 040 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2193,8 +2193,8 @@ Checking test 040 fv3_ccpp_gfs_v16 results .... Test 040 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_restart_prod Checking test 041 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2243,8 +2243,8 @@ Checking test 041 fv3_ccpp_gfs_v16_restart results .... Test 041 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_stochy_prod Checking test 042 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2311,8 +2311,8 @@ Checking test 042 fv3_ccpp_gfs_v16_stochy results .... Test 042 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 043 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2379,8 +2379,8 @@ Checking test 043 fv3_ccpp_gfs_v16_RRTMGP results .... Test 043 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2441,8 +2441,8 @@ Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2509,8 +2509,8 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 045 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gocart_clm_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gocart_clm_prod Checking test 046 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2557,8 +2557,8 @@ Checking test 046 fv3_ccpp_gocart_clm results .... Test 046 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_flake_prod Checking test 047 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2625,8 +2625,8 @@ Checking test 047 fv3_ccpp_gfs_v16_flake results .... Test 047 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2693,8 +2693,8 @@ Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 048 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2711,8 +2711,8 @@ Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2773,8 +2773,8 @@ Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... Test 050 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2835,8 +2835,8 @@ Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -2903,8 +2903,8 @@ Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... Test 052 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_debug_prod Checking test 053 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2971,8 +2971,8 @@ Checking test 053 fv3_ccpp_gfs_v16_debug results .... Test 053 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -3039,8 +3039,8 @@ Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3107,8 +3107,8 @@ Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 055 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_regional_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_regional_control_debug_prod Checking test 056 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3118,8 +3118,8 @@ Checking test 056 fv3_ccpp_regional_control_debug results .... Test 056 fv3_ccpp_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_control_debug_prod Checking test 057 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3148,8 +3148,8 @@ Checking test 057 fv3_ccpp_control_debug results .... Test 057 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_stretched_nest_debug_prod Checking test 058 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3168,8 +3168,8 @@ Checking test 058 fv3_ccpp_stretched_nest_debug results .... Test 058 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -3236,8 +3236,8 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Test 059 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -3304,8 +3304,8 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Test 060 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -3372,8 +3372,8 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Test 061 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -3440,8 +3440,8 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Test 062 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -3508,8 +3508,8 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Test 063 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -3576,8 +3576,8 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -3594,8 +3594,8 @@ Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 066 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3656,8 +3656,8 @@ Checking test 066 fv3_ccpp_gfsv16_ugwpv1_debug results .... Test 066 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_control_prod Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3709,8 +3709,8 @@ Checking test 067 cpld_control results .... Test 067 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restart_prod Checking test 068 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3762,8 +3762,8 @@ Checking test 068 cpld_restart results .... Test 068 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_controlfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_controlfrac_prod Checking test 069 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3815,8 +3815,8 @@ Checking test 069 cpld_controlfrac results .... Test 069 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restartfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restartfrac_prod Checking test 070 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3868,8 +3868,8 @@ Checking test 070 cpld_restartfrac results .... Test 070 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_2threads_prod Checking test 071 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3921,8 +3921,8 @@ Checking test 071 cpld_2threads results .... Test 071 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_decomp_prod Checking test 072 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3974,8 +3974,8 @@ Checking test 072 cpld_decomp results .... Test 072 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_satmedmf_prod Checking test 073 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4027,8 +4027,8 @@ Checking test 073 cpld_satmedmf results .... Test 073 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_ca_prod Checking test 074 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4080,8 +4080,8 @@ Checking test 074 cpld_ca results .... Test 074 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_control_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_control_c192_prod Checking test 075 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4133,8 +4133,8 @@ Checking test 075 cpld_control_c192 results .... Test 075 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restart_c192_prod Checking test 076 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4186,8 +4186,8 @@ Checking test 076 cpld_restart_c192 results .... Test 076 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_controlfrac_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_controlfrac_c192_prod Checking test 077 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4239,8 +4239,8 @@ Checking test 077 cpld_controlfrac_c192 results .... Test 077 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restartfrac_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restartfrac_c192_prod Checking test 078 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4292,8 +4292,8 @@ Checking test 078 cpld_restartfrac_c192 results .... Test 078 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_control_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_control_c384_prod Checking test 079 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4348,8 +4348,8 @@ Checking test 079 cpld_control_c384 results .... Test 079 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restart_c384_prod Checking test 080 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4404,8 +4404,8 @@ Checking test 080 cpld_restart_c384 results .... Test 080 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_controlfrac_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_controlfrac_c384_prod Checking test 081 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4460,8 +4460,8 @@ Checking test 081 cpld_controlfrac_c384 results .... Test 081 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restartfrac_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restartfrac_c384_prod Checking test 082 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4516,8 +4516,8 @@ Checking test 082 cpld_restartfrac_c384 results .... Test 082 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmark_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_bmark_prod Checking test 083 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4572,8 +4572,8 @@ Checking test 083 cpld_bmark results .... Test 083 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_bmark_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restart_bmark_prod Checking test 084 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4628,8 +4628,8 @@ Checking test 084 cpld_restart_bmark results .... Test 084 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmarkfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_bmarkfrac_prod Checking test 085 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4684,8 +4684,8 @@ Checking test 085 cpld_bmarkfrac results .... Test 085 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_bmarkfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restart_bmarkfrac_prod Checking test 086 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4740,8 +4740,8 @@ Checking test 086 cpld_restart_bmarkfrac results .... Test 086 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmarkfrac_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_bmarkfrac_v16_prod Checking test 087 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4796,8 +4796,8 @@ Checking test 087 cpld_bmarkfrac_v16 results .... Test 087 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_restart_bmarkfrac_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restart_bmarkfrac_v16_prod Checking test 088 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4852,8 +4852,8 @@ Checking test 088 cpld_restart_bmarkfrac_v16 results .... Test 088 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmark_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_bmark_wave_prod Checking test 089 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4911,8 +4911,8 @@ Checking test 089 cpld_bmark_wave results .... Test 089 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmarkfrac_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_bmarkfrac_wave_prod Checking test 090 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4970,8 +4970,8 @@ Checking test 090 cpld_bmarkfrac_wave results .... Test 090 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_bmarkfrac_wave_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_bmarkfrac_wave_v16_prod Checking test 091 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5029,8 +5029,8 @@ Checking test 091 cpld_bmarkfrac_wave_v16 results .... Test 091 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_control_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_control_wave_prod Checking test 092 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5085,8 +5085,8 @@ Checking test 092 cpld_control_wave results .... Test 092 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_debug_prod Checking test 093 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5138,8 +5138,8 @@ Checking test 093 cpld_debug results .... Test 093 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/cpld_debugfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_debugfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_debugfrac_prod Checking test 094 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5191,8 +5191,8 @@ Checking test 094 cpld_debugfrac results .... Test 094 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_control_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -5200,8 +5200,8 @@ Checking test 095 datm_control_cfsr results .... Test 095 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_restart_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -5209,8 +5209,8 @@ Checking test 096 datm_restart_cfsr results .... Test 096 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_control_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -5218,8 +5218,8 @@ Checking test 097 datm_control_gefs results .... Test 097 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_bulk_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -5227,8 +5227,8 @@ Checking test 098 datm_bulk_cfsr results .... Test 098 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_bulk_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -5236,8 +5236,8 @@ Checking test 099 datm_bulk_gefs results .... Test 099 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_mx025_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/datm_mx025_cfsr Checking test 100 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5248,8 +5248,8 @@ Checking test 100 datm_mx025_cfsr results .... Test 100 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_mx025_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/datm_mx025_gefs Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5260,8 +5260,8 @@ Checking test 101 datm_mx025_gefs results .... Test 101 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_40081/datm_debug_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/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 @@ -5270,5 +5270,5 @@ Test 102 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 24 13:57:44 MST 2021 -Elapsed time: 01h:20m:08s. Have a nice day! +Mon Mar 1 14:47:00 MST 2021 +Elapsed time: 01h:25m:11s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index b0eee6bc1e..6e1f2b729d 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Tue Feb 23 19:30:29 EST 2021 +Mon Mar 1 22:33:47 EST 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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-20210217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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-20210217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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-20210217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210217/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 @@ -324,8 +324,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-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 @@ -372,8 +372,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-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 @@ -420,8 +420,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-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 @@ -468,8 +468,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-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 @@ -516,8 +516,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-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 @@ -564,8 +564,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-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 @@ -612,8 +612,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-20210217/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210217/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_ca_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ca_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_lndp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lndp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_iau_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_iau_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,19 +1228,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 phyf000.nc ............ALT CHECK......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-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1335,8 +1335,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1383,8 +1383,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1431,8 +1431,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,8 +1479,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1527,8 +1527,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1575,8 +1575,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_cpt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,8 +1681,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gsd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_rap_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rap_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_rap_prod Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 035 fv3_ccpp_rap results .... Test 035 fv3_ccpp_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_hrrr_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_hrrr_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_hrrr_prod Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 036 fv3_ccpp_hrrr results .... Test 036 fv3_ccpp_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 037 fv3_ccpp_thompson results .... Test 037 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 @@ -2045,8 +2045,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2113,8 +2113,8 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v15p2_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v15p2_prod Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2181,8 +2181,8 @@ Checking test 040 fv3_ccpp_gfs_v15p2 results .... Test 040 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_prod Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2261,8 +2261,8 @@ Checking test 041 fv3_ccpp_gfs_v16 results .... Test 041 fv3_ccpp_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_restart_prod Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2311,8 +2311,8 @@ Checking test 042 fv3_ccpp_gfs_v16_restart results .... Test 042 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_stochy_prod Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2379,8 +2379,8 @@ Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Test 043 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2447,8 +2447,8 @@ Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2515,8 +2515,8 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2577,8 +2577,8 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2645,8 +2645,8 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 @@ -2693,8 +2693,8 @@ Checking test 048 fv3_ccpp_gfsv16_csawmg results .... Test 048 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 @@ -2741,8 +2741,8 @@ Checking test 049 fv3_ccpp_gfsv16_csawmgt results .... Test 049 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gocart_clm_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 @@ -2789,8 +2789,8 @@ Checking test 050 fv3_ccpp_gocart_clm results .... Test 050 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_flake_prod Checking test 051 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2857,8 +2857,8 @@ Checking test 051 fv3_ccpp_gfs_v16_flake results .... Test 051 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 @@ -2925,8 +2925,8 @@ Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 @@ -2943,8 +2943,8 @@ Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 054 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3005,8 +3005,8 @@ Checking test 054 fv3_ccpp_gfsv16_ugwpv1 results .... Test 054 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3067,8 +3067,8 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 @@ -3135,8 +3135,8 @@ Checking test 056 fv3_ccpp_gfs_v15p2_debug results .... Test 056 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_debug_prod Checking test 057 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3203,8 +3203,8 @@ Checking test 057 fv3_ccpp_gfs_v16_debug results .... Test 057 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/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 @@ -3271,8 +3271,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 059 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3339,8 +3339,8 @@ Checking test 059 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 059 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_regional_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_regional_control_debug_prod Checking test 060 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3350,8 +3350,8 @@ Checking test 060 fv3_ccpp_regional_control_debug results .... Test 060 fv3_ccpp_regional_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_control_debug_prod Checking test 061 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3380,8 +3380,8 @@ Checking test 061 fv3_ccpp_control_debug results .... Test 061 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_stretched_nest_debug_prod Checking test 062 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3400,8 +3400,8 @@ Checking test 062 fv3_ccpp_stretched_nest_debug results .... Test 062 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gsd_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gsd_debug_prod Checking test 063 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3468,8 +3468,8 @@ Checking test 063 fv3_ccpp_gsd_debug results .... Test 063 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gsd_diag3d_debug_prod Checking test 064 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3536,8 +3536,8 @@ Checking test 064 fv3_ccpp_gsd_diag3d_debug results .... Test 064 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_thompson_debug_prod Checking test 065 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3604,8 +3604,8 @@ Checking test 065 fv3_ccpp_thompson_debug results .... Test 065 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_thompson_no_aero_debug_prod Checking test 066 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3672,8 +3672,8 @@ Checking test 066 fv3_ccpp_thompson_no_aero_debug results .... Test 066 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 067 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3740,8 +3740,8 @@ Checking test 067 fv3_ccpp_rrfs_v1beta_debug results .... Test 067 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3808,8 +3808,8 @@ Checking test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3826,8 +3826,8 @@ Checking test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 070 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3888,8 +3888,8 @@ Checking test 070 fv3_ccpp_gfsv16_ugwpv1_debug results .... Test 070 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_control_prod Checking test 071 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3941,8 +3941,8 @@ Checking test 071 cpld_control results .... Test 071 cpld_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_restart_prod Checking test 072 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3994,8 +3994,8 @@ Checking test 072 cpld_restart results .... Test 072 cpld_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_controlfrac_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_controlfrac_prod Checking test 073 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4047,8 +4047,8 @@ Checking test 073 cpld_controlfrac results .... Test 073 cpld_controlfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_restartfrac_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_restartfrac_prod Checking test 074 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4100,8 +4100,8 @@ Checking test 074 cpld_restartfrac results .... Test 074 cpld_restartfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_2threads_prod Checking test 075 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4153,8 +4153,8 @@ Checking test 075 cpld_2threads results .... Test 075 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_decomp_prod Checking test 076 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4206,8 +4206,8 @@ Checking test 076 cpld_decomp results .... Test 076 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_satmedmf_prod Checking test 077 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4259,8 +4259,8 @@ Checking test 077 cpld_satmedmf results .... Test 077 cpld_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_ca_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_ca_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_ca_prod Checking test 078 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4312,8 +4312,8 @@ Checking test 078 cpld_ca results .... Test 078 cpld_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_control_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_control_c192_prod Checking test 079 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4365,8 +4365,8 @@ Checking test 079 cpld_control_c192 results .... Test 079 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_restart_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_restart_c192_prod Checking test 080 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4418,8 +4418,8 @@ Checking test 080 cpld_restart_c192 results .... Test 080 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_controlfrac_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_controlfrac_c192_prod Checking test 081 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4471,8 +4471,8 @@ Checking test 081 cpld_controlfrac_c192 results .... Test 081 cpld_controlfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_restartfrac_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_restartfrac_c192_prod Checking test 082 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4524,8 +4524,8 @@ Checking test 082 cpld_restartfrac_c192 results .... Test 082 cpld_restartfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_control_c384_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_control_c384_prod Checking test 083 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4580,8 +4580,8 @@ Checking test 083 cpld_control_c384 results .... Test 083 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_restart_c384_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_restart_c384_prod Checking test 084 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4636,8 +4636,8 @@ Checking test 084 cpld_restart_c384 results .... Test 084 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_controlfrac_c384_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_controlfrac_c384_prod Checking test 085 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4692,8 +4692,8 @@ Checking test 085 cpld_controlfrac_c384 results .... Test 085 cpld_controlfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_restartfrac_c384_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_restartfrac_c384_prod Checking test 086 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4748,8 +4748,8 @@ Checking test 086 cpld_restartfrac_c384 results .... Test 086 cpld_restartfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_bmark_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_bmark_prod Checking test 087 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4804,8 +4804,8 @@ Checking test 087 cpld_bmark results .... Test 087 cpld_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_restart_bmark_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_restart_bmark_prod Checking test 088 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4860,8 +4860,8 @@ Checking test 088 cpld_restart_bmark results .... Test 088 cpld_restart_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_bmarkfrac_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_bmarkfrac_prod Checking test 089 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4916,8 +4916,8 @@ Checking test 089 cpld_bmarkfrac results .... Test 089 cpld_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_restart_bmarkfrac_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_restart_bmarkfrac_prod Checking test 090 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4972,8 +4972,8 @@ Checking test 090 cpld_restart_bmarkfrac results .... Test 090 cpld_restart_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_debug_prod Checking test 091 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5025,8 +5025,8 @@ Checking test 091 cpld_debug results .... Test 091 cpld_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/cpld_debugfrac_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_debugfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_debugfrac_prod Checking test 092 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5078,8 +5078,8 @@ Checking test 092 cpld_debugfrac results .... Test 092 cpld_debugfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/datm_control_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/datm_control_cfsr Checking test 093 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5087,8 +5087,8 @@ Checking test 093 datm_control_cfsr results .... Test 093 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/datm_restart_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/datm_restart_cfsr Checking test 094 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5096,8 +5096,8 @@ Checking test 094 datm_restart_cfsr results .... Test 094 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/datm_control_gefs +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/datm_control_gefs Checking test 095 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5105,8 +5105,8 @@ Checking test 095 datm_control_gefs results .... Test 095 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/datm_bulk_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/datm_bulk_cfsr Checking test 096 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5114,8 +5114,8 @@ Checking test 096 datm_bulk_cfsr results .... Test 096 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/datm_bulk_gefs +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/datm_bulk_gefs Checking test 097 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5123,8 +5123,8 @@ Checking test 097 datm_bulk_gefs results .... Test 097 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/datm_mx025_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_mx025_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/datm_mx025_cfsr Checking test 098 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5135,8 +5135,8 @@ Checking test 098 datm_mx025_cfsr results .... Test 098 datm_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/datm_mx025_gefs +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/datm_mx025_gefs Checking test 099 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5147,8 +5147,8 @@ Checking test 099 datm_mx025_gefs results .... Test 099 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Dusan.Jovic/FV3_RT/rt_20298/datm_debug_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/datm_debug_cfsr Checking test 100 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5157,5 +5157,5 @@ Test 100 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 23 20:51:42 EST 2021 -Elapsed time: 01h:21m:13s. Have a nice day! +Tue Mar 2 00:16:16 EST 2021 +Elapsed time: 01h:42m:31s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 0414420ef5..84b4351768 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Wed Feb 24 04:48:13 UTC 2021 +Mon Mar 1 18:37:55 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/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-20210217/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/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-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -198,8 +198,8 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -248,8 +248,8 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -316,8 +316,8 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,8 +384,8 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/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-20210217/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -520,8 +520,8 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/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-20210217/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/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-20210217/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/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-20210217/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/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-20210217/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/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-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/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-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -964,8 +964,8 @@ Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1026,8 +1026,8 @@ Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1056,8 +1056,8 @@ Checking test 017 fv3_ccpp_control_debug results .... Test 017 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,8 +1124,8 @@ Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1192,8 +1192,8 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1260,8 +1260,8 @@ Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,8 +1328,8 @@ Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,8 +1402,8 @@ Checking test 022 fv3_ccpp_multigases results .... Test 022 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_regional_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_regional_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1413,8 +1413,8 @@ Checking test 023 fv3_ccpp_regional_control_debug results .... Test 023 fv3_ccpp_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,8 +1481,8 @@ Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Test 024 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1549,8 +1549,8 @@ Checking test 025 fv3_ccpp_gsd_debug results .... Test 025 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1617,8 +1617,8 @@ Checking test 026 fv3_ccpp_thompson_debug results .... Test 026 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1685,8 +1685,8 @@ Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Test 027 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1753,8 +1753,8 @@ Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1771,8 +1771,8 @@ Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_289552/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1834,5 +1834,5 @@ Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 24 05:56:35 UTC 2021 -Elapsed time: 01h:08m:22s. Have a nice day! +Mon Mar 1 19:32:17 UTC 2021 +Elapsed time: 00h:54m:23s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index b6580365e6..577b9c6dac 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Wed Feb 24 00:14:15 UTC 2021 +Mon Mar 1 18:38:03 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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 @@ -324,8 +324,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-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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 @@ -372,8 +372,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-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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 @@ -420,8 +420,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-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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 @@ -429,10 +429,10 @@ 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 + 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 @@ -468,8 +468,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-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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 @@ -516,8 +516,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-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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 @@ -564,8 +564,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-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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 @@ -612,8 +612,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-20210217/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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 @@ -1030,8 +1030,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-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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 @@ -1079,8 +1079,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-20210217/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1153,8 +1153,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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 @@ -1221,8 +1221,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-20210217/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1277,8 +1277,8 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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 @@ -1344,8 +1344,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-20210217/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1355,8 +1355,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-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1364,8 +1364,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-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1375,8 +1375,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-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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 @@ -1386,8 +1386,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-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1434,8 +1434,8 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,8 +1482,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,8 +1530,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,8 +1578,8 @@ Checking test 031 fv3_ccpp_csawmg results .... Test 031 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1626,8 +1626,8 @@ Checking test 032 fv3_ccpp_satmedmf results .... Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1674,8 +1674,8 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,8 +1722,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,8 +1774,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1828,8 +1828,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1920,8 +1920,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_rap_prod Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1988,8 +1988,8 @@ Checking test 038 fv3_ccpp_rap results .... Test 038 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_hrrr_prod Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2056,8 +2056,8 @@ Checking test 039 fv3_ccpp_hrrr results .... Test 039 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_thompson_prod Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2124,8 +2124,8 @@ Checking test 040 fv3_ccpp_thompson results .... Test 040 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_thompson_no_aero_prod Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2192,8 +2192,8 @@ Checking test 041 fv3_ccpp_thompson_no_aero results .... Test 041 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_rrfs_v1beta_prod Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2260,8 +2260,8 @@ Checking test 042 fv3_ccpp_rrfs_v1beta results .... Test 042 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v15p2_prod Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2328,8 +2328,8 @@ Checking test 043 fv3_ccpp_gfs_v15p2 results .... Test 043 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_prod Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2408,8 +2408,8 @@ Checking test 044 fv3_ccpp_gfs_v16 results .... Test 044 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_restart_prod Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2458,8 +2458,8 @@ Checking test 045 fv3_ccpp_gfs_v16_restart results .... Test 045 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_stochy_prod Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2526,8 +2526,8 @@ Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Test 046 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2594,8 +2594,8 @@ Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2662,8 +2662,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2724,8 +2724,8 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2792,8 +2792,8 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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 @@ -2840,8 +2840,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-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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 @@ -2888,8 +2888,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-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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 @@ -2936,8 +2936,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-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_flake_prod Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3004,8 +3004,8 @@ Checking test 054 fv3_ccpp_gfs_v16_flake results .... Test 054 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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 @@ -3072,8 +3072,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-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/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 @@ -3090,8 +3090,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-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3152,8 +3152,8 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Test 057 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3214,8 +3214,8 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v15p2_debug_prod Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3282,8 +3282,8 @@ Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Test 059 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_debug_prod Checking test 060 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3350,8 +3350,8 @@ Checking test 060 fv3_ccpp_gfs_v16_debug results .... Test 060 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3418,8 +3418,8 @@ Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3486,8 +3486,8 @@ Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_regional_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_regional_control_debug_prod Checking test 063 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3497,8 +3497,8 @@ Checking test 063 fv3_ccpp_regional_control_debug results .... Test 063 fv3_ccpp_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_control_debug_prod Checking test 064 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3527,8 +3527,8 @@ Checking test 064 fv3_ccpp_control_debug results .... Test 064 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_stretched_nest_debug_prod Checking test 065 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3547,8 +3547,8 @@ Checking test 065 fv3_ccpp_stretched_nest_debug results .... Test 065 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gsd_debug_prod Checking test 066 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3615,8 +3615,8 @@ Checking test 066 fv3_ccpp_gsd_debug results .... Test 066 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gsd_diag3d_debug_prod Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3683,8 +3683,8 @@ Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Test 067 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_thompson_debug_prod Checking test 068 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3751,8 +3751,8 @@ Checking test 068 fv3_ccpp_thompson_debug results .... Test 068 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_thompson_no_aero_debug_prod Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3819,8 +3819,8 @@ Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Test 069 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3887,8 +3887,8 @@ Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Test 070 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3955,8 +3955,8 @@ Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3973,8 +3973,8 @@ Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4035,8 +4035,8 @@ Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Test 073 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_control_prod Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4088,8 +4088,8 @@ Checking test 074 cpld_control results .... Test 074 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restart_prod Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4141,8 +4141,8 @@ Checking test 075 cpld_restart results .... Test 075 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_controlfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_controlfrac_prod Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4194,8 +4194,8 @@ Checking test 076 cpld_controlfrac results .... Test 076 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restartfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restartfrac_prod Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4247,8 +4247,8 @@ Checking test 077 cpld_restartfrac results .... Test 077 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_2threads_prod Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4300,8 +4300,8 @@ Checking test 078 cpld_2threads results .... Test 078 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_decomp_prod Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4353,8 +4353,8 @@ Checking test 079 cpld_decomp results .... Test 079 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_satmedmf_prod Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4406,8 +4406,8 @@ Checking test 080 cpld_satmedmf results .... Test 080 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_ca_prod Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4459,8 +4459,8 @@ Checking test 081 cpld_ca results .... Test 081 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_control_c192_prod Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4512,8 +4512,8 @@ Checking test 082 cpld_control_c192 results .... Test 082 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restart_c192_prod Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4565,8 +4565,8 @@ Checking test 083 cpld_restart_c192 results .... Test 083 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_controlfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_controlfrac_c192_prod Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4618,8 +4618,8 @@ Checking test 084 cpld_controlfrac_c192 results .... Test 084 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restartfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restartfrac_c192_prod Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4671,8 +4671,8 @@ Checking test 085 cpld_restartfrac_c192 results .... Test 085 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_control_c384_prod Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4727,8 +4727,8 @@ Checking test 086 cpld_control_c384 results .... Test 086 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restart_c384_prod Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4783,8 +4783,8 @@ Checking test 087 cpld_restart_c384 results .... Test 087 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_controlfrac_c384_prod Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4839,8 +4839,8 @@ Checking test 088 cpld_controlfrac_c384 results .... Test 088 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restartfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restartfrac_c384_prod Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4895,8 +4895,8 @@ Checking test 089 cpld_restartfrac_c384 results .... Test 089 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_bmark_prod Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4951,8 +4951,8 @@ Checking test 090 cpld_bmark results .... Test 090 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restart_bmark_prod Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5007,8 +5007,8 @@ Checking test 091 cpld_restart_bmark results .... Test 091 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_bmarkfrac_prod Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5063,8 +5063,8 @@ Checking test 092 cpld_bmarkfrac results .... Test 092 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restart_bmarkfrac_prod Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5119,8 +5119,8 @@ Checking test 093 cpld_restart_bmarkfrac results .... Test 093 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_bmarkfrac_v16_prod Checking test 094 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5175,8 +5175,8 @@ Checking test 094 cpld_bmarkfrac_v16 results .... Test 094 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_restart_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restart_bmarkfrac_v16_prod Checking test 095 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5231,8 +5231,8 @@ Checking test 095 cpld_restart_bmarkfrac_v16 results .... Test 095 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_bmark_wave_prod Checking test 096 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5290,8 +5290,8 @@ Checking test 096 cpld_bmark_wave results .... Test 096 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmarkfrac_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_bmarkfrac_wave_prod Checking test 097 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5349,8 +5349,8 @@ Checking test 097 cpld_bmarkfrac_wave results .... Test 097 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_bmarkfrac_wave_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_bmarkfrac_wave_v16_prod Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5408,8 +5408,8 @@ Checking test 098 cpld_bmarkfrac_wave_v16 results .... Test 098 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_control_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_control_wave_prod Checking test 099 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5464,8 +5464,8 @@ Checking test 099 cpld_control_wave results .... Test 099 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_debug_prod Checking test 100 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5517,8 +5517,8 @@ Checking test 100 cpld_debug results .... Test 100 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/cpld_debugfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_debugfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_debugfrac_prod Checking test 101 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5570,8 +5570,8 @@ Checking test 101 cpld_debugfrac results .... Test 101 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/datm_control_cfsr Checking test 102 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5579,8 +5579,8 @@ Checking test 102 datm_control_cfsr results .... Test 102 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/datm_restart_cfsr Checking test 103 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5588,8 +5588,8 @@ Checking test 103 datm_restart_cfsr results .... Test 103 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/datm_control_gefs Checking test 104 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5597,8 +5597,8 @@ Checking test 104 datm_control_gefs results .... Test 104 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/datm_bulk_cfsr Checking test 105 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5606,8 +5606,8 @@ Checking test 105 datm_bulk_cfsr results .... Test 105 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/datm_bulk_gefs Checking test 106 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5615,8 +5615,8 @@ Checking test 106 datm_bulk_gefs results .... Test 106 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/datm_mx025_cfsr Checking test 107 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5627,8 +5627,8 @@ Checking test 107 datm_mx025_cfsr results .... Test 107 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/datm_mx025_gefs Checking test 108 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5639,8 +5639,8 @@ Checking test 108 datm_mx025_gefs results .... Test 108 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_168882/datm_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/datm_debug_cfsr Checking test 109 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5649,5 +5649,5 @@ Test 109 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 24 07:06:43 UTC 2021 -Elapsed time: 06h:52m:29s. Have a nice day! +Mon Mar 1 20:50:59 UTC 2021 +Elapsed time: 02h:12m:57s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index eb3246e5e6..d17b7f1059 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Wed Feb 24 02:19:55 GMT 2021 +Mon Mar 1 21:17:06 GMT 2021 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_2threads_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_2threads_prod Checking test 002 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -138,8 +138,8 @@ Checking test 002 fv3_ccpp_2threads results .... Test 002 fv3_ccpp_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_restart_prod Checking test 003 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -188,8 +188,8 @@ Checking test 003 fv3_ccpp_restart results .... Test 003 fv3_ccpp_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_read_inc_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_read_inc_prod Checking test 004 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -256,8 +256,8 @@ Checking test 004 fv3_ccpp_read_inc results .... Test 004 fv3_ccpp_read_inc PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -304,8 +304,8 @@ Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Test 005 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_wrtGauss_netcdf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -352,8 +352,8 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Test 006 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -362,7 +362,7 @@ Checking test 007 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 RESTART/coupler.res .........OK @@ -400,8 +400,8 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 007 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -448,8 +448,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -496,8 +496,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -544,8 +544,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_stochy_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -612,8 +612,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_ca_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ca_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_ca_prod Checking test 012 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 012 fv3_ccpp_ca results .... Test 012 fv3_ccpp_ca PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_lndp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lndp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_lndp_prod Checking test 013 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_lndp results .... Test 013 fv3_ccpp_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_iau_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_iau_prod Checking test 014 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_iau results .... Test 014 fv3_ccpp_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_lheatstrg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -864,8 +864,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_multigases_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_control_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_stretched_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1062,8 +1062,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_stretched_nest_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1129,8 +1129,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_regional_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1140,8 +1140,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_regional_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1149,8 +1149,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_regional_quilt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1160,8 +1160,8 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1171,8 +1171,8 @@ Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfdlmp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfdlmp_prod Checking test 024 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 024 fv3_ccpp_gfdlmp results .... Test 024 fv3_ccpp_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfdlmprad_gwd_prod Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,8 +1267,8 @@ Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Test 025 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Test 026 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_csawmg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,8 +1363,8 @@ Checking test 027 fv3_ccpp_csawmg results .... Test 027 fv3_ccpp_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_satmedmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,8 +1411,8 @@ Checking test 028 fv3_ccpp_satmedmf results .... Test 028 fv3_ccpp_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_satmedmfq_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,8 +1459,8 @@ Checking test 029 fv3_ccpp_satmedmfq results .... Test 029 fv3_ccpp_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,8 +1507,8 @@ Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Test 030 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,8 +1559,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_cpt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,8 +1613,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gsd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v15p2_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v15p2_prod Checking test 036 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 036 fv3_ccpp_gfs_v15p2 results .... Test 036 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_prod Checking test 037 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1989,8 +1989,8 @@ Checking test 037 fv3_ccpp_gfs_v16 results .... Test 037 fv3_ccpp_gfs_v16 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_restart_prod Checking test 038 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2039,8 +2039,8 @@ Checking test 038 fv3_ccpp_gfs_v16_restart results .... Test 038 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_stochy_prod Checking test 039 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,8 +2107,8 @@ Checking test 039 fv3_ccpp_gfs_v16_stochy results .... Test 039 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 040 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2175,8 +2175,8 @@ Checking test 040 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 040 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,8 +2243,8 @@ Checking test 041 fv3_ccpp_gfs_v16_RRTMGP results .... Test 041 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2305,8 +2305,8 @@ Checking test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 043 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2373,8 +2373,8 @@ Checking test 043 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 043 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/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 @@ -2421,8 +2421,8 @@ Checking test 044 fv3_ccpp_gfsv16_csawmg results .... Test 044 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfsv16_csawmgt_prod Checking test 045 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2469,8 +2469,8 @@ Checking test 045 fv3_ccpp_gfsv16_csawmgt results .... Test 045 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gocart_clm_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gocart_clm_prod Checking test 046 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2517,8 +2517,8 @@ Checking test 046 fv3_ccpp_gocart_clm results .... Test 046 fv3_ccpp_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_flake_prod Checking test 047 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2585,8 +2585,8 @@ Checking test 047 fv3_ccpp_gfs_v16_flake results .... Test 047 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2653,8 +2653,8 @@ Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 048 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2671,8 +2671,8 @@ Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2733,8 +2733,8 @@ Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... Test 050 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2795,8 +2795,8 @@ Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/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 @@ -2863,8 +2863,8 @@ Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... Test 052 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_debug_prod Checking test 053 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2931,8 +2931,8 @@ Checking test 053 fv3_ccpp_gfs_v16_debug results .... Test 053 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/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 @@ -2999,8 +2999,8 @@ Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3067,8 +3067,8 @@ Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 055 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_regional_control_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_regional_control_debug_prod Checking test 056 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3078,8 +3078,8 @@ Checking test 056 fv3_ccpp_regional_control_debug results .... Test 056 fv3_ccpp_regional_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_control_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_control_debug_prod Checking test 057 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3108,8 +3108,8 @@ Checking test 057 fv3_ccpp_control_debug results .... Test 057 fv3_ccpp_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_stretched_nest_debug_prod Checking test 058 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3128,8 +3128,8 @@ Checking test 058 fv3_ccpp_stretched_nest_debug results .... Test 058 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gsd_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/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 @@ -3196,8 +3196,8 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Test 059 fv3_ccpp_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/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 @@ -3264,8 +3264,8 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Test 060 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/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 @@ -3332,8 +3332,8 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Test 061 fv3_ccpp_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/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 @@ -3400,8 +3400,8 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Test 062 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/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 @@ -3468,8 +3468,8 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Test 063 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/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 @@ -3536,8 +3536,8 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/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 @@ -3554,8 +3554,8 @@ Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_256415/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 066 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3617,5 +3617,5 @@ Test 066 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 24 04:54:11 GMT 2021 -Elapsed time: 02h:34m:16s. Have a nice day! +Mon Mar 1 23:30:56 GMT 2021 +Elapsed time: 02h:13m:50s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index cceaaec641..3b6974e14b 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Feb 25 07:06:43 CST 2021 +Mon Mar 1 18:31:16 CST 2021 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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-20210217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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-20210217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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-20210217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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 @@ -324,8 +324,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-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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 @@ -372,8 +372,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-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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 @@ -420,8 +420,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-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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 @@ -432,7 +432,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........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 @@ -468,8 +468,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-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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 @@ -516,8 +516,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-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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 @@ -564,8 +564,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-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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 @@ -612,8 +612,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-20210217/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_lndp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_lheatstrg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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 @@ -1030,8 +1030,8 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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 @@ -1079,8 +1079,8 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1153,8 +1153,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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 @@ -1221,8 +1221,8 @@ Checking test 021 fv3_ccpp_control_32bit results .... Test 021 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1277,8 +1277,8 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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 @@ -1344,8 +1344,8 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Test 023 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1355,8 +1355,8 @@ Checking test 024 fv3_ccpp_regional_control results .... Test 024 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1364,8 +1364,8 @@ Checking test 025 fv3_ccpp_regional_restart results .... Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1375,8 +1375,8 @@ Checking test 026 fv3_ccpp_regional_quilt results .... Test 026 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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 @@ -1386,8 +1386,8 @@ Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1434,8 +1434,8 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,8 +1482,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,8 +1530,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,8 +1578,8 @@ Checking test 031 fv3_ccpp_csawmg results .... Test 031 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1626,8 +1626,8 @@ Checking test 032 fv3_ccpp_satmedmf results .... Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_satmedmfq_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1674,8 +1674,8 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,8 +1722,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,8 +1774,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1828,8 +1828,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1920,8 +1920,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_rap_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_rap_prod Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1988,8 +1988,8 @@ Checking test 038 fv3_ccpp_rap results .... Test 038 fv3_ccpp_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_hrrr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_hrrr_prod Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2056,8 +2056,8 @@ Checking test 039 fv3_ccpp_hrrr results .... Test 039 fv3_ccpp_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_thompson_prod Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2124,8 +2124,8 @@ Checking test 040 fv3_ccpp_thompson results .... Test 040 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_thompson_no_aero_prod Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2192,8 +2192,8 @@ Checking test 041 fv3_ccpp_thompson_no_aero results .... Test 041 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_rrfs_v1beta_prod Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2260,8 +2260,8 @@ Checking test 042 fv3_ccpp_rrfs_v1beta results .... Test 042 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v15p2_prod Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2328,8 +2328,8 @@ Checking test 043 fv3_ccpp_gfs_v15p2 results .... Test 043 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_prod Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2408,8 +2408,8 @@ Checking test 044 fv3_ccpp_gfs_v16 results .... Test 044 fv3_ccpp_gfs_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_restart_prod Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2458,8 +2458,8 @@ Checking test 045 fv3_ccpp_gfs_v16_restart results .... Test 045 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_stochy_prod Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2526,8 +2526,8 @@ Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Test 046 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2594,8 +2594,8 @@ Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2662,8 +2662,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2724,8 +2724,8 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2792,8 +2792,8 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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 @@ -2840,8 +2840,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Test 051 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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 @@ -2888,8 +2888,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Test 052 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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 @@ -2936,8 +2936,8 @@ Checking test 053 fv3_ccpp_gocart_clm results .... Test 053 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_flake_prod Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3004,8 +3004,8 @@ Checking test 054 fv3_ccpp_gfs_v16_flake results .... Test 054 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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 @@ -3072,8 +3072,8 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/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 @@ -3090,8 +3090,8 @@ Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3152,8 +3152,8 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Test 057 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3214,8 +3214,8 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v15p2_debug_prod Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3282,8 +3282,8 @@ Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Test 059 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_debug_prod Checking test 060 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3350,8 +3350,8 @@ Checking test 060 fv3_ccpp_gfs_v16_debug results .... Test 060 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3418,8 +3418,8 @@ Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3486,8 +3486,8 @@ Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_regional_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_regional_control_debug_prod Checking test 063 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3497,8 +3497,8 @@ Checking test 063 fv3_ccpp_regional_control_debug results .... Test 063 fv3_ccpp_regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_control_debug_prod Checking test 064 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3527,8 +3527,8 @@ Checking test 064 fv3_ccpp_control_debug results .... Test 064 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_stretched_nest_debug_prod Checking test 065 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3547,8 +3547,8 @@ Checking test 065 fv3_ccpp_stretched_nest_debug results .... Test 065 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gsd_debug_prod Checking test 066 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3615,8 +3615,8 @@ Checking test 066 fv3_ccpp_gsd_debug results .... Test 066 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gsd_diag3d_debug_prod Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3683,8 +3683,8 @@ Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Test 067 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_thompson_debug_prod Checking test 068 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3751,8 +3751,8 @@ Checking test 068 fv3_ccpp_thompson_debug results .... Test 068 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_thompson_no_aero_debug_prod Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3819,8 +3819,8 @@ Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Test 069 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3887,8 +3887,8 @@ Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Test 070 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3955,8 +3955,8 @@ Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3973,8 +3973,8 @@ Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4035,8 +4035,8 @@ Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Test 073 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_control_prod Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4088,8 +4088,8 @@ Checking test 074 cpld_control results .... Test 074 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restart_prod Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4141,8 +4141,8 @@ Checking test 075 cpld_restart results .... Test 075 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_controlfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_controlfrac_prod Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4194,8 +4194,8 @@ Checking test 076 cpld_controlfrac results .... Test 076 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restartfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restartfrac_prod Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4247,8 +4247,8 @@ Checking test 077 cpld_restartfrac results .... Test 077 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_2threads_prod Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4300,8 +4300,8 @@ Checking test 078 cpld_2threads results .... Test 078 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_decomp_prod Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4353,8 +4353,8 @@ Checking test 079 cpld_decomp results .... Test 079 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_satmedmf_prod Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4406,8 +4406,8 @@ Checking test 080 cpld_satmedmf results .... Test 080 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_ca_prod Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4459,8 +4459,8 @@ Checking test 081 cpld_ca results .... Test 081 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_control_c192_prod Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4512,8 +4512,8 @@ Checking test 082 cpld_control_c192 results .... Test 082 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restart_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restart_c192_prod Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4565,8 +4565,8 @@ Checking test 083 cpld_restart_c192 results .... Test 083 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_controlfrac_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_controlfrac_c192_prod Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4618,8 +4618,8 @@ Checking test 084 cpld_controlfrac_c192 results .... Test 084 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restartfrac_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restartfrac_c192_prod Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4671,8 +4671,8 @@ Checking test 085 cpld_restartfrac_c192 results .... Test 085 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_control_c384_prod Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4727,8 +4727,8 @@ Checking test 086 cpld_control_c384 results .... Test 086 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restart_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restart_c384_prod Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4783,8 +4783,8 @@ Checking test 087 cpld_restart_c384 results .... Test 087 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_controlfrac_c384_prod Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4839,8 +4839,8 @@ Checking test 088 cpld_controlfrac_c384 results .... Test 088 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restartfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restartfrac_c384_prod Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4895,8 +4895,8 @@ Checking test 089 cpld_restartfrac_c384 results .... Test 089 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_bmark_prod Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4951,8 +4951,8 @@ Checking test 090 cpld_bmark results .... Test 090 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restart_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restart_bmark_prod Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5007,8 +5007,8 @@ Checking test 091 cpld_restart_bmark results .... Test 091 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_bmarkfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_bmarkfrac_prod Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5063,8 +5063,8 @@ Checking test 092 cpld_bmarkfrac results .... Test 092 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restart_bmarkfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restart_bmarkfrac_prod Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5119,8 +5119,8 @@ Checking test 093 cpld_restart_bmarkfrac results .... Test 093 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_bmarkfrac_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_bmarkfrac_v16_prod Checking test 094 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5175,8 +5175,8 @@ Checking test 094 cpld_bmarkfrac_v16 results .... Test 094 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_restart_bmarkfrac_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restart_bmarkfrac_v16_prod Checking test 095 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5231,8 +5231,8 @@ Checking test 095 cpld_restart_bmarkfrac_v16 results .... Test 095 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_bmark_wave_prod Checking test 096 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5290,8 +5290,8 @@ Checking test 096 cpld_bmark_wave results .... Test 096 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_bmarkfrac_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_bmarkfrac_wave_prod Checking test 097 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5349,8 +5349,8 @@ Checking test 097 cpld_bmarkfrac_wave results .... Test 097 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_bmarkfrac_wave_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_bmarkfrac_wave_v16_prod Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5408,8 +5408,8 @@ Checking test 098 cpld_bmarkfrac_wave_v16 results .... Test 098 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_control_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_wave_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_control_wave_prod Checking test 099 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5464,8 +5464,8 @@ Checking test 099 cpld_control_wave results .... Test 099 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_debug_prod Checking test 100 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5517,8 +5517,8 @@ Checking test 100 cpld_debug results .... Test 100 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/cpld_debugfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_debugfrac_prod Checking test 101 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5570,8 +5570,8 @@ Checking test 101 cpld_debugfrac results .... Test 101 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/datm_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/datm_control_cfsr Checking test 102 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5579,8 +5579,8 @@ Checking test 102 datm_control_cfsr results .... Test 102 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/datm_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/datm_restart_cfsr Checking test 103 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5588,8 +5588,8 @@ Checking test 103 datm_restart_cfsr results .... Test 103 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/datm_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/datm_control_gefs Checking test 104 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5597,8 +5597,8 @@ Checking test 104 datm_control_gefs results .... Test 104 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/datm_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/datm_bulk_cfsr Checking test 105 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5606,8 +5606,8 @@ Checking test 105 datm_bulk_cfsr results .... Test 105 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/datm_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/datm_bulk_gefs Checking test 106 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5615,8 +5615,8 @@ Checking test 106 datm_bulk_gefs results .... Test 106 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/datm_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/datm_mx025_cfsr Checking test 107 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5627,8 +5627,8 @@ Checking test 107 datm_mx025_cfsr results .... Test 107 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/datm_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/datm_mx025_gefs Checking test 108 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5639,8 +5639,8 @@ Checking test 108 datm_mx025_gefs results .... Test 108 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_388225/datm_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/datm_debug_cfsr Checking test 109 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5649,5 +5649,5 @@ Test 109 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 25 08:57:39 CST 2021 -Elapsed time: 01h:50m:57s. Have a nice day! +Mon Mar 1 22:25:02 CST 2021 +Elapsed time: 03h:53m:47s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 99a5aa8cc7..443726c0b5 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Wed Feb 24 18:26:04 UTC 2021 +Mon Mar 1 23:27:43 UTC 2021 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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-20210217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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-20210217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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-20210217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210217/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -324,8 +324,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-20210217/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -372,8 +372,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-20210217/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -420,8 +420,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-20210217/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -468,8 +468,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-20210217/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -516,8 +516,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-20210217/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -564,8 +564,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-20210217/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -612,8 +612,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-20210217/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210217/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_ca_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_ca_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_lndp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_lndp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,8 +1228,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -1239,8 +1239,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1335,8 +1335,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1383,8 +1383,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1431,8 +1431,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,8 +1479,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1527,8 +1527,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1575,8 +1575,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,8 +1681,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_rap_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_rap_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_rap_prod Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 035 fv3_ccpp_rap results .... Test 035 fv3_ccpp_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_hrrr_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_hrrr_prod Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 036 fv3_ccpp_hrrr results .... Test 036 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 037 fv3_ccpp_thompson results .... Test 037 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -2045,8 +2045,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2113,8 +2113,8 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v15p2_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v15p2_prod Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2181,8 +2181,8 @@ Checking test 040 fv3_ccpp_gfs_v15p2 results .... Test 040 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v16_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_prod Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2261,8 +2261,8 @@ Checking test 041 fv3_ccpp_gfs_v16 results .... Test 041 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_restart_prod Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2311,8 +2311,8 @@ Checking test 042 fv3_ccpp_gfs_v16_restart results .... Test 042 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_stochy_prod Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2379,8 +2379,8 @@ Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Test 043 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2447,8 +2447,8 @@ Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2515,8 +2515,8 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2577,9 +2577,77 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfsv16_csawmg_prod -Checking test 047 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd 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_v16_RRTMGP_2thrd PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -2622,12 +2690,12 @@ Checking test 047 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 047 fv3_ccpp_gfsv16_csawmg PASS +Test 048 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -2670,12 +2738,12 @@ Checking test 048 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 048 fv3_ccpp_gfsv16_csawmgt PASS +Test 049 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gocart_clm_prod -Checking test 049 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -2718,12 +2786,12 @@ Checking test 049 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 049 fv3_ccpp_gocart_clm PASS +Test 050 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v16_flake_prod -Checking test 050 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_flake_prod +Checking test 051 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2786,12 +2854,12 @@ Checking test 050 fv3_ccpp_gfs_v16_flake 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_gfs_v16_flake PASS +Test 051 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -2854,12 +2922,12 @@ Checking test 051 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 051 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-20210217/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -2872,12 +2940,12 @@ Checking test 052 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 052 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-20210217/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 054 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2934,12 +3002,12 @@ Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfsv16_ugwpv1 PASS +Test 054 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2996,12 +3064,12 @@ Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -3064,12 +3132,12 @@ Checking test 055 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 055 fv3_ccpp_gfs_v15p2_debug PASS +Test 056 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v16_debug_prod -Checking test 056 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_debug_prod +Checking test 057 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3132,12 +3200,12 @@ Checking test 056 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS +Test 057 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/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 @@ -3200,12 +3268,12 @@ Checking test 057 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 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 059 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3268,23 +3336,23 @@ Checking test 058 fv3_ccpp_gfs_v16_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 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 059 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_regional_control_debug_prod -Checking test 059 fv3_ccpp_regional_control_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_regional_control_debug_prod +Checking test 060 fv3_ccpp_regional_control_debug 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 059 fv3_ccpp_regional_control_debug PASS +Test 060 fv3_ccpp_regional_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_control_debug_prod -Checking test 060 fv3_ccpp_control_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_control_debug_prod +Checking test 061 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3309,12 +3377,12 @@ Checking test 060 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 060 fv3_ccpp_control_debug PASS +Test 061 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_stretched_nest_debug_prod -Checking test 061 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_stretched_nest_debug_prod +Checking test 062 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 @@ -3329,12 +3397,12 @@ Checking test 061 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 061 fv3_ccpp_stretched_nest_debug PASS +Test 062 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gsd_debug_prod +Checking test 063 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3397,12 +3465,12 @@ Checking test 062 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 062 fv3_ccpp_gsd_debug PASS +Test 063 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 064 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3465,12 +3533,12 @@ Checking test 063 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 063 fv3_ccpp_gsd_diag3d_debug PASS +Test 064 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_thompson_debug_prod +Checking test 065 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3533,12 +3601,12 @@ Checking test 064 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 064 fv3_ccpp_thompson_debug PASS +Test 065 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 066 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 @@ -3601,12 +3669,12 @@ Checking test 065 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 065 fv3_ccpp_thompson_no_aero_debug PASS +Test 066 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 067 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3669,12 +3737,12 @@ Checking test 066 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 066 fv3_ccpp_rrfs_v1beta_debug PASS +Test 067 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 068 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 @@ -3737,12 +3805,12 @@ Checking test 067 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 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3755,12 +3823,12 @@ Checking test 068 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 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_34115/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 070 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3817,9 +3885,9 @@ Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 069 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 070 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 24 19:09:15 UTC 2021 -Elapsed time: 00h:43m:11s. Have a nice day! +Tue Mar 2 00:12:09 UTC 2021 +Elapsed time: 00h:44m:26s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 1879544152..a8efac8a55 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Wed Feb 24 00:11:28 UTC 2021 +Tue Mar 2 11:39:56 UTC 2021 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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-20210217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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-20210217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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-20210217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210217/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -324,8 +324,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-20210217/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -372,8 +372,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-20210217/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -420,8 +420,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-20210217/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -429,10 +429,10 @@ 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 phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc ............ALT CHECK......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 @@ -468,8 +468,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-20210217/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -516,8 +516,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-20210217/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -564,8 +564,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-20210217/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -612,8 +612,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-20210217/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210217/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_ca_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_lndp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_lndp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -1030,8 +1030,8 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1104,8 +1104,8 @@ Checking test 019 fv3_ccpp_multigases results .... Test 019 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -1172,8 +1172,8 @@ Checking test 020 fv3_ccpp_control_32bit results .... Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1228,8 +1228,8 @@ Checking test 021 fv3_ccpp_stretched results .... Test 021 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -1295,8 +1295,8 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1306,8 +1306,8 @@ Checking test 023 fv3_ccpp_regional_control results .... Test 023 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 024 fv3_ccpp_regional_restart results .... Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1326,19 +1326,19 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc .........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-20210217/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1385,8 +1385,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -1433,8 +1433,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -1481,8 +1481,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1529,8 +1529,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1577,8 +1577,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1625,8 +1625,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -1673,8 +1673,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -1725,8 +1725,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1779,8 +1779,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1871,8 +1871,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_rap_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_rap_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1939,8 +1939,8 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_hrrr_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2007,8 +2007,8 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2075,8 +2075,8 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -2143,8 +2143,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -2211,8 +2211,8 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v15p2_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -2279,8 +2279,8 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v16_prod Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2359,8 +2359,8 @@ Checking test 043 fv3_ccpp_gfs_v16 results .... Test 043 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v16_restart_prod Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2409,8 +2409,8 @@ Checking test 044 fv3_ccpp_gfs_v16_restart results .... Test 044 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v16_stochy_prod Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2477,8 +2477,8 @@ Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Test 045 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -2545,8 +2545,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2613,8 +2613,8 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -2675,8 +2675,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2743,8 +2743,8 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 049 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -2791,8 +2791,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmg results .... Test 050 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -2839,8 +2839,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... Test 051 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -2887,8 +2887,8 @@ Checking test 052 fv3_ccpp_gocart_clm results .... Test 052 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v16_flake_prod Checking test 053 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2955,8 +2955,8 @@ Checking test 053 fv3_ccpp_gfs_v16_flake results .... Test 053 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -3023,8 +3023,8 @@ Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -3041,8 +3041,8 @@ Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3103,8 +3103,8 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3165,8 +3165,8 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -3233,8 +3233,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v16_debug_prod Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3301,8 +3301,8 @@ Checking test 059 fv3_ccpp_gfs_v16_debug results .... Test 059 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/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 @@ -3369,8 +3369,8 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3437,8 +3437,8 @@ Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_regional_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_regional_control_debug_prod Checking test 062 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3448,8 +3448,8 @@ Checking test 062 fv3_ccpp_regional_control_debug results .... Test 062 fv3_ccpp_regional_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_control_debug_prod Checking test 063 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3478,8 +3478,8 @@ Checking test 063 fv3_ccpp_control_debug results .... Test 063 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_stretched_nest_debug_prod Checking test 064 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3498,8 +3498,8 @@ Checking test 064 fv3_ccpp_stretched_nest_debug results .... Test 064 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gsd_debug_prod Checking test 065 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3566,8 +3566,8 @@ Checking test 065 fv3_ccpp_gsd_debug results .... Test 065 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gsd_diag3d_debug_prod Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3634,8 +3634,8 @@ Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... Test 066 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_thompson_debug_prod Checking test 067 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3702,8 +3702,8 @@ Checking test 067 fv3_ccpp_thompson_debug results .... Test 067 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_thompson_no_aero_debug_prod Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3770,8 +3770,8 @@ Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... Test 068 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3838,8 +3838,8 @@ Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... Test 069 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3906,8 +3906,8 @@ Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3924,8 +3924,8 @@ Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3986,8 +3986,8 @@ Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_control_prod Checking test 073 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4039,8 +4039,8 @@ Checking test 073 cpld_control results .... Test 073 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restart_prod Checking test 074 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4092,8 +4092,8 @@ Checking test 074 cpld_restart results .... Test 074 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_controlfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_controlfrac_prod Checking test 075 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4145,8 +4145,8 @@ Checking test 075 cpld_controlfrac results .... Test 075 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restartfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restartfrac_prod Checking test 076 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4198,8 +4198,8 @@ Checking test 076 cpld_restartfrac results .... Test 076 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_2threads_prod Checking test 077 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4251,8 +4251,8 @@ Checking test 077 cpld_2threads results .... Test 077 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_decomp_prod Checking test 078 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4304,8 +4304,8 @@ Checking test 078 cpld_decomp results .... Test 078 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_satmedmf_prod Checking test 079 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4357,8 +4357,8 @@ Checking test 079 cpld_satmedmf results .... Test 079 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_ca_prod Checking test 080 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4410,8 +4410,8 @@ Checking test 080 cpld_ca results .... Test 080 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_control_c192_prod Checking test 081 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4463,8 +4463,8 @@ Checking test 081 cpld_control_c192 results .... Test 081 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restart_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restart_c192_prod Checking test 082 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4516,8 +4516,8 @@ Checking test 082 cpld_restart_c192 results .... Test 082 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_controlfrac_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_controlfrac_c192_prod Checking test 083 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4569,8 +4569,8 @@ Checking test 083 cpld_controlfrac_c192 results .... Test 083 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restartfrac_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restartfrac_c192_prod Checking test 084 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4622,8 +4622,8 @@ Checking test 084 cpld_restartfrac_c192 results .... Test 084 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_control_c384_prod Checking test 085 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4678,8 +4678,8 @@ Checking test 085 cpld_control_c384 results .... Test 085 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restart_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restart_c384_prod Checking test 086 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4734,8 +4734,8 @@ Checking test 086 cpld_restart_c384 results .... Test 086 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_controlfrac_c384_prod Checking test 087 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4790,8 +4790,8 @@ Checking test 087 cpld_controlfrac_c384 results .... Test 087 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restartfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restartfrac_c384_prod Checking test 088 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4846,8 +4846,8 @@ Checking test 088 cpld_restartfrac_c384 results .... Test 088 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_bmark_prod Checking test 089 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4902,8 +4902,8 @@ Checking test 089 cpld_bmark results .... Test 089 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restart_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restart_bmark_prod Checking test 090 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4958,8 +4958,8 @@ Checking test 090 cpld_restart_bmark results .... Test 090 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_bmarkfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_bmarkfrac_prod Checking test 091 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5014,8 +5014,8 @@ Checking test 091 cpld_bmarkfrac results .... Test 091 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restart_bmarkfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restart_bmarkfrac_prod Checking test 092 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5070,8 +5070,8 @@ Checking test 092 cpld_restart_bmarkfrac results .... Test 092 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_bmarkfrac_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_bmarkfrac_v16_prod Checking test 093 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5126,8 +5126,8 @@ Checking test 093 cpld_bmarkfrac_v16 results .... Test 093 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_restart_bmarkfrac_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restart_bmarkfrac_v16_prod Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5182,8 +5182,8 @@ Checking test 094 cpld_restart_bmarkfrac_v16 results .... Test 094 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_bmark_wave_prod Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5241,8 +5241,8 @@ Checking test 095 cpld_bmark_wave results .... Test 095 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_bmarkfrac_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmarkfrac_wave_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_bmarkfrac_wave_prod Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5300,8 +5300,8 @@ Checking test 096 cpld_bmarkfrac_wave results .... Test 096 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_bmarkfrac_wave_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmarkfrac_wave_v16_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_bmarkfrac_wave_v16_prod Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5359,8 +5359,8 @@ Checking test 097 cpld_bmarkfrac_wave_v16 results .... Test 097 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_control_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_wave_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_control_wave_prod Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5415,8 +5415,8 @@ Checking test 098 cpld_control_wave results .... Test 098 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_debug_prod Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5468,8 +5468,8 @@ Checking test 099 cpld_debug results .... Test 099 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/cpld_debugfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_debugfrac_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_debugfrac_prod Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5521,8 +5521,8 @@ Checking test 100 cpld_debugfrac results .... Test 100 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/datm_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/datm_control_cfsr Checking test 101 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5530,8 +5530,8 @@ Checking test 101 datm_control_cfsr results .... Test 101 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/datm_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/datm_restart_cfsr Checking test 102 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5539,8 +5539,8 @@ Checking test 102 datm_restart_cfsr results .... Test 102 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/datm_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/datm_control_gefs Checking test 103 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5548,8 +5548,8 @@ Checking test 103 datm_control_gefs results .... Test 103 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/datm_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/datm_bulk_cfsr Checking test 104 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5557,8 +5557,8 @@ Checking test 104 datm_bulk_cfsr results .... Test 104 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/datm_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/datm_bulk_gefs Checking test 105 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5566,8 +5566,8 @@ Checking test 105 datm_bulk_gefs results .... Test 105 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/datm_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/datm_mx025_cfsr Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5578,8 +5578,8 @@ Checking test 106 datm_mx025_cfsr results .... Test 106 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/datm_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/datm_mx025_gefs Checking test 107 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5590,8 +5590,8 @@ Checking test 107 datm_mx025_gefs results .... Test 107 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_6798/datm_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/datm_debug_cfsr Checking test 108 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5600,5 +5600,5 @@ Test 108 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 24 03:37:34 UTC 2021 -Elapsed time: 03h:26m:08s. Have a nice day! +Wed Mar 3 04:22:16 UTC 2021 +Elapsed time: 16h:42m:22s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 3820f68695..cccd6814c7 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -399,6 +399,8 @@ export LSM=1 export LSOIL_LSM=4 export LANDICE=.T. export KICE=2 +export IALB=1 +export IEMS=1 # Ozone / stratospheric H2O export OZ_PHYS_OLD=.T. diff --git a/tests/parm/ccpp_gfdlmp.nml.IN b/tests/parm/ccpp_gfdlmp.nml.IN index dac3f57557..3440922edf 100644 --- a/tests/parm/ccpp_gfdlmp.nml.IN +++ b/tests/parm/ccpp_gfdlmp.nml.IN @@ -128,8 +128,8 @@ pdfcld = .false. fhswr = 3600. fhlwr = 3600. - ialb = 1 - iems = 1 + ialb = @[IALB] + iems = @[IEMS] IAER = 111 ico2 = 2 isubc_sw = 2 diff --git a/tests/parm/ccpp_gsd.nml.IN b/tests/parm/ccpp_gsd.nml.IN index 0ac2931d75..df71eadb12 100644 --- a/tests/parm/ccpp_gsd.nml.IN +++ b/tests/parm/ccpp_gsd.nml.IN @@ -132,8 +132,8 @@ pdfcld = .false. fhswr = 3600. fhlwr = 3600. - ialb = 1 - iems = 1 + ialb = @[IALB] + iems = @[IEMS] iaer = @[IAER] icliq_sw = @[ICLIQ_SW] iovr = @[IOVR] diff --git a/tests/parm/ccpp_v16_c96_rrtmgp.nml.IN b/tests/parm/ccpp_v16_c96_rrtmgp.nml.IN index 1eb9124907..0d6df12991 100644 --- a/tests/parm/ccpp_v16_c96_rrtmgp.nml.IN +++ b/tests/parm/ccpp_v16_c96_rrtmgp.nml.IN @@ -41,7 +41,7 @@ deflate_level=1 / &fv_core_nml - layout = 3,8 + layout = @[INPES],@[JNPES] io_layout = 1,1 npx = 97 npy = 97 diff --git a/tests/rt.conf b/tests/rt.conf index f9ac7777d1..140a0333b9 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -81,7 +81,7 @@ RUN | fv3_ccpp_gfs_v16_stochy RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP_2thrd | - wcoss_cray | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP_2thrd | | fv3 | COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | # fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests diff --git a/tests/rt.sh b/tests/rt.sh index d2a16ac9c0..6c704a0a38 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -415,9 +415,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-20210217/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210301/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210217} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210301} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210212} diff --git a/tests/tests/fv3_ccpp_gfdlmprad_noahmp b/tests/tests/fv3_ccpp_gfdlmprad_noahmp index 7eb7ac54c4..3767fd7804 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad_noahmp +++ b/tests/tests/fv3_ccpp_gfdlmprad_noahmp @@ -59,6 +59,10 @@ export LGFDLMPRAD=.true. export EFFR_IN=.true. export LSM=2 export LANDICE=.false. +export LHEATSTRG=.false. +export IALB=2 +export IEMS=2 + export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'nemsio'" diff --git a/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd index d009b4d768..ec4d6d131f 100644 --- a/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd +++ b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd @@ -74,7 +74,12 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 export THRD=2 +export TASKS=$TASKS_thrd export TPN=$TPN_thrd +export INPES=$INPES_thrd +export JNPES=$JNPES_thrd +export WRTTASK_PER_GROUP=12 + DT_ATMOS="1200" export DO_RRTMGP=.T. diff --git a/tests/tests/fv3_ccpp_rrfs_v1beta b/tests/tests/fv3_ccpp_rrfs_v1beta index 61f83dd207..d5a9f5f686 100644 --- a/tests/tests/fv3_ccpp_rrfs_v1beta +++ b/tests/tests/fv3_ccpp_rrfs_v1beta @@ -93,6 +93,8 @@ export IMFSHALCNV=-1 export IMFDEEPCNV=-1 export LSM=2 export LSOIL_LSM=4 +export IALB=2 +export IEMS=2 #export GWD_OPT=3 #export DO_UGWP_V0=.F. #export DO_UGWP_V0_OROG_ONLY=.F. diff --git a/tests/tests/fv3_ccpp_rrfs_v1beta_debug b/tests/tests/fv3_ccpp_rrfs_v1beta_debug index 8c7475ef38..66e4b02ed7 100644 --- a/tests/tests/fv3_ccpp_rrfs_v1beta_debug +++ b/tests/tests/fv3_ccpp_rrfs_v1beta_debug @@ -93,6 +93,9 @@ export IMFSHALCNV=-1 export IMFDEEPCNV=-1 export LSM=2 export LSOIL_LSM=4 +export IALB=2 +export IEMS=2 + #export GWD_OPT=3 #export DO_UGWP_V0=.F. #export DO_UGWP_V0_OROG_ONLY=.F. From 0b8a88925d4c4a49824cbc74088320b807ae423a Mon Sep 17 00:00:00 2001 From: BrianCurtis-NOAA <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Wed, 3 Mar 2021 16:18:19 -0500 Subject: [PATCH 076/109] Add GNU and Cheyenne Support to Automated RT (#444) * Add capability for GNU and Add support for Cheyenne Co-authored-by: climbfuji --- tests/auto/rt_auto.py | 119 +++++++++++++++++++++++----------------- tests/auto/rt_auto.sh | 36 +++++++----- tests/detect_machine.sh | 6 ++ 3 files changed, 96 insertions(+), 65 deletions(-) diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index a5d23ff33e..2ded8b6fcb 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -42,8 +42,8 @@ def parse_args_in(): parser = argparse.ArgumentParser() # Setup Input Arguments - choices = ['hera.intel', 'orion.intel', 'gaea.intel', 'jet.intel', 'wcoss_dell_p3'] - parser.add_argument('-m', '--machine', help='Machine and Compiler combination', required=True, choices=choices, type=str) + choices = ['cheyenne', 'hera', 'orion', 'gaea', 'jet', 'wcoss_dell_p3'] + parser.add_argument('-m', '--machine', help='Machine name', required=True, choices=choices, type=str) parser.add_argument('-w', '--workdir', help='Working directory', required=True, type=str) # Get Arguments @@ -73,15 +73,19 @@ def input_data(args): def match_label_with_action(machine, actions, label): ''' Match the label that initiates a job with an action in the dict''' + # -- i.e. hera-gnu-RT + # RT = full regression test suite logger = logging.getLogger('MATCH_LABEL_WITH_ACTIONS') split_label = label.name.split('-') - - if len(split_label) != 3: return False - if not re.match(split_label[0], 'Auto'): return False - if not re.match(split_label[2], machine['name'].split('.')[0]): return False - action_match = next((action for action in actions if re.match(action['name'], split_label[1])), False) - - return action_match + if len(split_label) != 3: return False, False #Make sure it has three parts + if not re.match(split_label[0], machine['name']): return False, False #First check machine name matches + compiler = split_label[1] + if not str(compiler) in ["intel", "gnu"]: return False, False + action_match = next((action for action in actions if re.match(action['name'], split_label[2])), False) + action_match["command"] = f'export RT_COMPILER="{compiler}" && {action_match["command"]}' + if split_label[2] == "RT" and compiler == "gnu": + action_match["command"] = f'{action_match["command"]} -l rt_gnu.conf' + return compiler, action_match def get_preqs_with_actions(repos, machine, ghinterface_obj, actions): @@ -92,9 +96,10 @@ def get_preqs_with_actions(repos, machine, ghinterface_obj, actions): preq_labels = [{'preq': pr, 'label': label} for pr in each_pr for label in pr.get_labels()] for i, pr_label in enumerate(preq_labels): - match = match_label_with_action(machine, actions, pr_label['label']) + compiler, match = match_label_with_action(machine, actions, pr_label['label']) if match: preq_labels[i]['action'] = match + preq_labels[i]['compiler'] = compiler else: preq_labels[i] = False @@ -130,8 +135,20 @@ def remove_pr_label(self): self.logger.info(f'Removing Label: {self.preq_dict["label"]}') self.preq_dict['preq'].remove_from_labels(self.preq_dict['label']) - def send_log_name_as_comment(self): + def check_label_before_job_start(self): + # LETS Check the label still exists before the start of the job in the + # case of multiple jobs + label_to_check = f'{self.machine["name"]}-{self.preq_dict["compiler"]}-{self.preq_dict["action"]["name"]}' + labels = self.preq_dict['preq'].get_labels() + label_match = next((label for label in labels if re.match(label.name, label_to_check)), False) + + return label_match + + + def send_log_name_as_comment(self, log_filename): logger = logging.getLogger('JOB/SEND_LOG_NAME_AS_COMMENT') + + #Remove LAST MONTHS LOGS logger.info('Removing last months logs (if any)') last_month = datetime.date.today().replace(day=1) - datetime.timedelta(days=1) rm_command = [[f'rm rt_auto_*_{last_month.strftime("%Y%m")}*.log', os.getcwd()]] @@ -141,24 +158,16 @@ def send_log_name_as_comment(self): except Exception as e: logger.warning(f'"{rm_command}" failed with error:{e}') - new_log_name = f'rt_auto_{self.machine["name"]}_'\ - f'{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}.log' - cp_command = [[f'cp rt_auto.log {new_log_name}', os.getcwd()]] - logger.info(f'Running "{cp_command}"') + # Add log information to PR. + comment_text = f'Log Name:{log_filename}\n'\ + f'Log Location:{os.getcwd()}\n'\ + 'Logs are kept for one month' try: - self.run_commands(cp_command) + self.preq_dict['preq'].create_issue_comment(comment_text) except Exception as e: - logger.warning('Renaming rt_auto failed') + logger.warning('Creating comment with log location failed with:{e}') else: - comment_text = f'Log Name:{new_log_name}\n'\ - f'Log Location:{os.getcwd()}\n'\ - 'Logs are kept for one month' - try: - self.preq_dict['preq'].create_issue_comment(comment_text) - except Exception as e: - logger.warning('Creating comment with log location failed with:{e}') - else: - logger.info(f'{comment_text}') + logger.info(f'{comment_text}') def run_commands(self, commands_with_cwd): logger = logging.getLogger('JOB/RUN_COMMANDS') @@ -212,9 +221,12 @@ def clone_pr_repo(self): def run_function(self): ''' Run the command associted with the label used to initiate this job ''' logger = logging.getLogger('JOB/RUN_FUNCTION') + compiler = self.preq_dict['compiler'] + logger.info(f'Compiler being used for command is {compiler}') + command = self.preq_dict["action"]["command"] try: - logger.info(f'Running: "{self.preq_dict["action"]["command"]}" in "{self.pr_repo_loc}"') - output = subprocess.Popen(self.preq_dict['action']['command'], cwd=self.pr_repo_loc, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + logger.info(f'Running: "{command}" in "{self.pr_repo_loc}"') + output = subprocess.Popen(command, cwd=self.pr_repo_loc, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) out,err = output.communicate() out = [] if not out else out.decode('utf8').split('\n') err = [] if not err else err.decode('utf8').split('\n') @@ -225,7 +237,13 @@ def run_function(self): assert(e) else: if output.returncode != 0: - logger.critical(f'{self.preq_dict["action"]["command"]} Failed') + comment_text = f'rt.sh failed \n'\ + f'machine: {self.machine["name"]} \n'\ + f'compiler: {self.preq_dict["compiler"]}\n'\ + f'STDOUT: {out} \n'\ + f'STDERR: {err}' + self.preq_dict['preq'].create_issue_comment(comment_text) + logger.critical(f'{command} Failed') [logger.critical(f'stdout: {item}') for item in out if not None] [logger.critical(f'stderr: {eitem}') for eitem in err if not None] else: @@ -245,28 +263,27 @@ def run_function(self): def move_rt_logs(self): ''' This is the callback function associated with the "RT" command ''' logger = logging.getLogger('JOB/MOVE_RT_LOGS') - rt_log = f'tests/RegressionTests_{self.machine["name"]}.log' + rt_log = f'tests/RegressionTests_{self.machine["name"]}.{self.preq_dict["compiler"]}.log' filepath = f'{self.pr_repo_loc}/{rt_log}' - rm_filepath = '/'.join((self.pr_repo_loc.split('/'))[:-1]) if os.path.exists(filepath): move_rt_commands = [ + [f'git pull --ff-only origin {self.branch}', self.pr_repo_loc], [f'git add {rt_log}', self.pr_repo_loc], - [f'git commit -m "Auto: Added Updated RT Log file: {rt_log}"', self.pr_repo_loc], - [f'git pull --no-edit origin {self.branch}', self.pr_repo_loc], + [f'git commit -m "Auto: Add RT Log file: {rt_log} skip-ci"', self.pr_repo_loc], ['sleep 10', self.pr_repo_loc], [f'git push origin {self.branch}', self.pr_repo_loc] ] self.run_commands(move_rt_commands) else: - logger.critical('Could not find RT log') - raise FileNotFoundError('Could not find RT log') + logger.critical('Could not find Intel RT log') + raise FileNotFoundError('Could not find Intel RT log') def main(): # handle logging log_path = os.getcwd() - log_filename = 'rt_auto.log' + log_filename = f'rt_auto_{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}.log' # Please don't run the following on cron with level=logging.DEBUG # as it exposes the GH API Token # Only set it to DEBUG while debugging @@ -288,26 +305,26 @@ def main(): # get all pull requests from the GitHub object logger.info('Getting all pull requests, labels and actions applicable to this machine.') preq_dict = get_preqs_with_actions(repos, machine, ghinterface_obj, actions) - # add Job objects and run them logger.info('Adding all jobs to an object list and running them.') jobs = [Job(pullreq, ghinterface_obj, machine) for pullreq in preq_dict] for job in jobs: logger.info(f'Starting Job: {job}') - try: - logger.info('Calling remove_pr_label') - job.remove_pr_label() - logger.info('Calling clone_pr_repo') - job.clone_pr_repo() - logger.info('Calling run_function') - job.run_function() - logger.info('Calling remove_pr_dir') - job.remove_pr_dir() - logger.info('Calling send_log_name_as_comment') - job.send_log_name_as_comment() - except Exception as e: - logger.critical(e) - assert(e) + if job.check_label_before_job_start(): + try: + logger.info('Calling remove_pr_label') + job.remove_pr_label() + logger.info('Calling clone_pr_repo') + job.clone_pr_repo() + logger.info('Calling run_function') + job.run_function() + logger.info('Calling remove_pr_dir') + # job.remove_pr_dir() + # logger.info('Calling send_log_name_as_comment') + job.send_log_name_as_comment(log_filename) + except Exception as e: + logger.critical(e) + assert(e) logger.info('Script Finished') diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh index 61fe523c6e..17d7e6ff00 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/rt_auto.sh @@ -1,45 +1,53 @@ #!/bin/bash --login set -eux if [ -f "accesstoken.sh" ]; then - source ./accesstoken.sh + if [ $(stat -L -c "%a" "accesstoken.sh") == "600" ]; then + echo "Sourcing accesstoken.sh" + source ./accesstoken.sh + else + echo "accesstoken.sh permissions NEED to be set to 600 before starting" + exit 1 + fi else echo "Please create accesstoken.sh (600) with the following content\n" echo "export ghapitoken=" exit 1 fi -export RT_COMPILER='intel' -source ../detect_machine.sh -echo "Machine ID: "+$MACHINE_ID -if [[ $MACHINE_ID = hera.* ]]; then +if [[ $HOSTNAME == hfe* ]]; then + MACHINE_NAME=hera WORKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages -elif [[ $MACHINE_ID = orion.* ]]; then +elif [[ $HOSTNAME == Orion-login-* ]]; then + MACHINE_NAME=orion WORKDIR=/work/noaa/nems/bcurtis/test export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages -elif [[ $MACHINE_ID = jet.* ]]; then +elif [[ $HOSTNAME == fe* ]]; then + MACHINE_NAME=jet WORKDIR=/lfs4/HFIP/h-nems/Brian.Curtis/test export ACCNR="h-nems" export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages -elif [[ $MACHINE_ID = gaea.* ]]; then +elif [[ $HOSTNAME == gaea* ]]; then + MACHINE_NAME=gaea WORKDIR=/lustre/f2/pdata/ncep/Brian.Curtis/test export LOADEDMODULES=$LOADEDMODULES export ACCNR="nggps_emc" # This applies to Brian.Curtis, may need change later export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages -elif [[ $MACHINE_ID = cheyenne.* ]]; then - #export PATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/bin:$PATH - #export PYTHONPATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/lib/python2.7/site-packages - echo "cheyenne not currently supported. automated RT not starting" - exit 1 +elif [[ $HOSTNAME == *.cheyenne.ucar.edu ]]; then + MACHINE_NAME=cheyenne + WORKDIR=/glade/work/heinzell/fv3/ufs-weather-model/auto-rt + export ACCNR="P48503002" + export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages else echo "No Python Path for this machine. automated RT not starting" exit 1 fi -python rt_auto.py -m $MACHINE_ID -w $WORKDIR +python rt_auto.py -m $MACHINE_NAME -w $WORKDIR exit 0 diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index c4bea08a2e..0356b38bce 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -88,6 +88,12 @@ case $(hostname -f) in cheyenne4.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne4 cheyenne5.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne5 cheyenne6.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne6 + chadmin1.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 + chadmin2.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 + chadmin3.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 + chadmin4.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 + chadmin5.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 + chadmin6.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 login1.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede1 login2.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede2 From 35d1897ccfd34217e8657b1d555414f32be74081 Mon Sep 17 00:00:00 2001 From: jiandewang Date: Thu, 4 Mar 2021 21:32:10 -0500 Subject: [PATCH 077/109] update MOM6 to GFDL 20210224 main branch commit (#439) * pointing MOM6 to feature/update-MOM6-20210224 branch modify mom6_files.cmake to reflect the files being added and removed in framework directory * add MOM6_Extra_FORTRAN_FLAGS in CMakeLists.txt which is defined in configure_gaea.intel.cmake * update RTPWD to 20210303 * remove datm_mx25_cfsr case on GAEA temporary --- MOM6-interface/CMakeLists.txt | 1 + MOM6-interface/MOM6 | 2 +- MOM6-interface/mom6_files.cmake | 19 +- cmake/configure_gaea.intel.cmake | 1 + tests/RegressionTests_cheyenne.gnu.log | 126 +++---- tests/RegressionTests_cheyenne.intel.log | 416 ++++++++++----------- tests/RegressionTests_gaea.intel.log | 424 +++++++++++---------- tests/RegressionTests_hera.gnu.log | 126 +++---- tests/RegressionTests_hera.intel.log | 444 +++++++++++----------- tests/RegressionTests_jet.intel.log | 270 +++++++------- tests/RegressionTests_orion.intel.log | 444 +++++++++++----------- tests/RegressionTests_wcoss_cray.log | 286 +++++++-------- tests/RegressionTests_wcoss_dell_p3.log | 446 +++++++++++------------ tests/rt.conf | 2 +- tests/rt.sh | 4 +- 15 files changed, 1507 insertions(+), 1504 deletions(-) diff --git a/MOM6-interface/CMakeLists.txt b/MOM6-interface/CMakeLists.txt index 0c09b62619..bfae700e40 100644 --- a/MOM6-interface/CMakeLists.txt +++ b/MOM6-interface/CMakeLists.txt @@ -16,6 +16,7 @@ elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") else() message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") endif() +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} ${MOM6_Extra_FORTRAN_FLAGS}") # User option to build MOM6 solo executable set(MOM6SOLO OFF CACHE BOOL "Build MOM6 solo") diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index cdc7690f41..a729a7fb40 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit cdc7690f41fb747df435a07b92dcf3fa02420a6b +Subproject commit a729a7fb400d8d441868606abdb3e722ceb2b8f5 diff --git a/MOM6-interface/mom6_files.cmake b/MOM6-interface/mom6_files.cmake index f36553641d..fe8ff26fd8 100644 --- a/MOM6-interface/mom6_files.cmake +++ b/MOM6-interface/mom6_files.cmake @@ -46,6 +46,7 @@ list(APPEND mom6_src_files MOM6/src/diagnostics/MOM_PointAccel.F90 MOM6/src/diagnostics/MOM_debugging.F90 + MOM6/src/diagnostics/MOM_spatial_means.F90 MOM6/src/diagnostics/MOM_diagnostics.F90 MOM6/src/diagnostics/MOM_obsolete_diagnostics.F90 MOM6/src/diagnostics/MOM_obsolete_params.F90 @@ -96,33 +97,45 @@ list(APPEND mom6_src_files MOM6/src/framework/MOM_array_transform.F90 MOM6/src/framework/MOM_checksums.F90 MOM6/src/framework/MOM_coms.F90 + MOM6/src/framework/MOM_coms_infra.F90 MOM6/src/framework/MOM_constants.F90 + MOM6/src/framework/MOM_coupler_types.F90 + MOM6/src/framework/MOM_couplertype_infra.F90 MOM6/src/framework/MOM_cpu_clock.F90 - MOM6/src/framework/MOM_diag_manager_wrapper.F90 + MOM6/src/framework/MOM_cpu_clock_infra.F90 + MOM6/src/framework/MOM_data_override.F90 + MOM6/src/framework/MOM_data_override_infra.F90 + MOM6/src/framework/MOM_diag_manager_infra.F90 MOM6/src/framework/MOM_diag_mediator.F90 MOM6/src/framework/MOM_diag_remap.F90 MOM6/src/framework/MOM_diag_vkernels.F90 MOM6/src/framework/MOM_document.F90 + MOM6/src/framework/MOM_domain_infra.F90 MOM6/src/framework/MOM_domains.F90 MOM6/src/framework/MOM_dyn_horgrid.F90 + MOM6/src/framework/MOM_ensemble_manager.F90 + MOM6/src/framework/MOM_ensemble_manager_infra.F90 MOM6/src/framework/MOM_error_handler.F90 + MOM6/src/framework/MOM_error_infra.F90 MOM6/src/framework/MOM_file_parser.F90 MOM6/src/framework/MOM_get_input.F90 MOM6/src/framework/MOM_hor_index.F90 MOM6/src/framework/MOM_horizontal_regridding.F90 + MOM6/src/framework/MOM_interp_infra.F90 + MOM6/src/framework/MOM_interpolate.F90 MOM6/src/framework/MOM_intrinsic_functions.F90 MOM6/src/framework/MOM_io.F90 + MOM6/src/framework/MOM_io_infra.F90 MOM6/src/framework/MOM_random.F90 MOM6/src/framework/MOM_restart.F90 MOM6/src/framework/MOM_safe_alloc.F90 - MOM6/src/framework/MOM_spatial_means.F90 MOM6/src/framework/MOM_string_functions.F90 MOM6/src/framework/MOM_time_manager.F90 - MOM6/src/framework/MOM_transform_FMS.F90 MOM6/src/framework/MOM_unit_scaling.F90 MOM6/src/framework/MOM_write_cputime.F90 MOM6/src/ice_shelf/MOM_ice_shelf.F90 + MOM6/src/ice_shelf/MOM_ice_shelf_diag_mediator.F90 MOM6/src/ice_shelf/MOM_ice_shelf_dynamics.F90 MOM6/src/ice_shelf/MOM_ice_shelf_initialize.F90 MOM6/src/ice_shelf/MOM_ice_shelf_state.F90 diff --git a/cmake/configure_gaea.intel.cmake b/cmake/configure_gaea.intel.cmake index c8a689be6c..84390226fe 100644 --- a/cmake/configure_gaea.intel.cmake +++ b/cmake/configure_gaea.intel.cmake @@ -1,3 +1,4 @@ set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) +set(MOM6_Extra_FORTRAN_FLAGS "-xsse2") diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index e0ae195238..a06f539dd9 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Mon Mar 1 13:22:06 MST 2021 +Thu Mar 4 10:01:14 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/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-20210301/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/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-20210301/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -198,8 +198,8 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -248,8 +248,8 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -316,8 +316,8 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,8 +384,8 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/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-20210301/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -520,8 +520,8 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/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-20210301/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/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-20210301/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/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-20210301/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/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-20210301/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/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-20210301/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/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-20210301/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -964,8 +964,8 @@ Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1026,8 +1026,8 @@ Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1056,8 +1056,8 @@ Checking test 017 fv3_ccpp_control_debug results .... Test 017 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,8 +1124,8 @@ Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1192,8 +1192,8 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1260,8 +1260,8 @@ Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,8 +1328,8 @@ Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,8 +1402,8 @@ Checking test 022 fv3_ccpp_multigases results .... Test 022 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_regional_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_regional_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1413,8 +1413,8 @@ Checking test 023 fv3_ccpp_regional_control_debug results .... Test 023 fv3_ccpp_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,8 +1481,8 @@ Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Test 024 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1549,8 +1549,8 @@ Checking test 025 fv3_ccpp_gsd_debug results .... Test 025 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1617,8 +1617,8 @@ Checking test 026 fv3_ccpp_thompson_debug results .... Test 026 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1685,8 +1685,8 @@ Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Test 027 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1753,8 +1753,8 @@ Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1771,8 +1771,8 @@ Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_32758/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1834,5 +1834,5 @@ Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 1 13:45:15 MST 2021 -Elapsed time: 00h:23m:09s. Have a nice day! +Thu Mar 4 10:24:02 MST 2021 +Elapsed time: 00h:22m:48s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index c4c08af4a5..93f607957f 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Mon Mar 1 13:21:50 MST 2021 +Thu Mar 4 11:01:32 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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-20210301/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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-20210301/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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-20210301/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210301/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -324,8 +324,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-20210301/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -372,8 +372,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-20210301/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -420,8 +420,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-20210301/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -430,7 +430,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 ............ALT CHECK......OK Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK @@ -468,8 +468,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-20210301/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -516,8 +516,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-20210301/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -564,8 +564,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-20210301/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -612,8 +612,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-20210301/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,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-20210301/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ 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-20210301/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_lndp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lndp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,8 +1228,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -1239,8 +1239,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1335,8 +1335,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1383,8 +1383,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1431,8 +1431,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,8 +1479,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1527,8 +1527,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1575,8 +1575,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,8 +1681,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_rap_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rap_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_rap_prod Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 035 fv3_ccpp_rap results .... Test 035 fv3_ccpp_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_hrrr_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_hrrr_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_hrrr_prod Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 036 fv3_ccpp_hrrr results .... Test 036 fv3_ccpp_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 037 fv3_ccpp_thompson results .... Test 037 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -2045,8 +2045,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2113,8 +2113,8 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_prod Checking test 040 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2193,8 +2193,8 @@ Checking test 040 fv3_ccpp_gfs_v16 results .... Test 040 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_restart_prod Checking test 041 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2243,8 +2243,8 @@ Checking test 041 fv3_ccpp_gfs_v16_restart results .... Test 041 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_stochy_prod Checking test 042 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2311,8 +2311,8 @@ Checking test 042 fv3_ccpp_gfs_v16_stochy results .... Test 042 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 043 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2379,8 +2379,8 @@ Checking test 043 fv3_ccpp_gfs_v16_RRTMGP results .... Test 043 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2441,8 +2441,8 @@ Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2509,8 +2509,8 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 045 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gocart_clm_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gocart_clm_prod Checking test 046 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2557,8 +2557,8 @@ Checking test 046 fv3_ccpp_gocart_clm results .... Test 046 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_flake_prod Checking test 047 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2625,8 +2625,8 @@ Checking test 047 fv3_ccpp_gfs_v16_flake results .... Test 047 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2693,8 +2693,8 @@ Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 048 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2711,8 +2711,8 @@ Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2773,8 +2773,8 @@ Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... Test 050 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2835,8 +2835,8 @@ Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -2903,8 +2903,8 @@ Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... Test 052 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_debug_prod Checking test 053 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2971,8 +2971,8 @@ Checking test 053 fv3_ccpp_gfs_v16_debug results .... Test 053 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -3039,8 +3039,8 @@ Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3107,8 +3107,8 @@ Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 055 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_regional_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_regional_control_debug_prod Checking test 056 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3118,8 +3118,8 @@ Checking test 056 fv3_ccpp_regional_control_debug results .... Test 056 fv3_ccpp_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_control_debug_prod Checking test 057 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3148,8 +3148,8 @@ Checking test 057 fv3_ccpp_control_debug results .... Test 057 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_stretched_nest_debug_prod Checking test 058 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3168,8 +3168,8 @@ Checking test 058 fv3_ccpp_stretched_nest_debug results .... Test 058 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -3236,8 +3236,8 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Test 059 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -3304,8 +3304,8 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Test 060 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -3372,8 +3372,8 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Test 061 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -3440,8 +3440,8 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Test 062 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -3508,8 +3508,8 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Test 063 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -3576,8 +3576,8 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -3594,8 +3594,8 @@ Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 066 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3656,8 +3656,8 @@ Checking test 066 fv3_ccpp_gfsv16_ugwpv1_debug results .... Test 066 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_control_prod Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3709,8 +3709,8 @@ Checking test 067 cpld_control results .... Test 067 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restart_prod Checking test 068 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3762,8 +3762,8 @@ Checking test 068 cpld_restart results .... Test 068 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_controlfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_controlfrac_prod Checking test 069 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3815,8 +3815,8 @@ Checking test 069 cpld_controlfrac results .... Test 069 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restartfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restartfrac_prod Checking test 070 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3868,8 +3868,8 @@ Checking test 070 cpld_restartfrac results .... Test 070 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_2threads_prod Checking test 071 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3921,8 +3921,8 @@ Checking test 071 cpld_2threads results .... Test 071 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_decomp_prod Checking test 072 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3974,8 +3974,8 @@ Checking test 072 cpld_decomp results .... Test 072 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_satmedmf_prod Checking test 073 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4027,8 +4027,8 @@ Checking test 073 cpld_satmedmf results .... Test 073 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_ca_prod Checking test 074 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4080,8 +4080,8 @@ Checking test 074 cpld_ca results .... Test 074 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_control_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_control_c192_prod Checking test 075 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4133,8 +4133,8 @@ Checking test 075 cpld_control_c192 results .... Test 075 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restart_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restart_c192_prod Checking test 076 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4186,8 +4186,8 @@ Checking test 076 cpld_restart_c192 results .... Test 076 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_controlfrac_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_controlfrac_c192_prod Checking test 077 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4239,8 +4239,8 @@ Checking test 077 cpld_controlfrac_c192 results .... Test 077 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restartfrac_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restartfrac_c192_prod Checking test 078 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4292,8 +4292,8 @@ Checking test 078 cpld_restartfrac_c192 results .... Test 078 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_control_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_control_c384_prod Checking test 079 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4348,8 +4348,8 @@ Checking test 079 cpld_control_c384 results .... Test 079 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restart_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restart_c384_prod Checking test 080 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4404,8 +4404,8 @@ Checking test 080 cpld_restart_c384 results .... Test 080 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_controlfrac_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_controlfrac_c384_prod Checking test 081 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4460,8 +4460,8 @@ Checking test 081 cpld_controlfrac_c384 results .... Test 081 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restartfrac_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restartfrac_c384_prod Checking test 082 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4516,8 +4516,8 @@ Checking test 082 cpld_restartfrac_c384 results .... Test 082 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_bmark_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_bmark_prod Checking test 083 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4572,8 +4572,8 @@ Checking test 083 cpld_bmark results .... Test 083 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restart_bmark_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restart_bmark_prod Checking test 084 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4628,8 +4628,8 @@ Checking test 084 cpld_restart_bmark results .... Test 084 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_bmarkfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_bmarkfrac_prod Checking test 085 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4684,8 +4684,8 @@ Checking test 085 cpld_bmarkfrac results .... Test 085 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restart_bmarkfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restart_bmarkfrac_prod Checking test 086 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4740,8 +4740,8 @@ Checking test 086 cpld_restart_bmarkfrac results .... Test 086 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_bmarkfrac_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_bmarkfrac_v16_prod Checking test 087 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4796,8 +4796,8 @@ Checking test 087 cpld_bmarkfrac_v16 results .... Test 087 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_restart_bmarkfrac_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restart_bmarkfrac_v16_prod Checking test 088 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4852,8 +4852,8 @@ Checking test 088 cpld_restart_bmarkfrac_v16 results .... Test 088 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_bmark_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_bmark_wave_prod Checking test 089 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4911,8 +4911,8 @@ Checking test 089 cpld_bmark_wave results .... Test 089 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_bmarkfrac_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_bmarkfrac_wave_prod Checking test 090 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4970,8 +4970,8 @@ Checking test 090 cpld_bmarkfrac_wave results .... Test 090 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_bmarkfrac_wave_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_bmarkfrac_wave_v16_prod Checking test 091 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5029,8 +5029,8 @@ Checking test 091 cpld_bmarkfrac_wave_v16 results .... Test 091 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_control_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_control_wave_prod Checking test 092 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5085,8 +5085,8 @@ Checking test 092 cpld_control_wave results .... Test 092 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_debug_prod Checking test 093 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5138,8 +5138,8 @@ Checking test 093 cpld_debug results .... Test 093 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/cpld_debugfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_debugfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_debugfrac_prod Checking test 094 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5191,8 +5191,8 @@ Checking test 094 cpld_debugfrac results .... Test 094 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/datm_control_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -5200,8 +5200,8 @@ Checking test 095 datm_control_cfsr results .... Test 095 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/datm_restart_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -5209,8 +5209,8 @@ Checking test 096 datm_restart_cfsr results .... Test 096 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/datm_control_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -5218,8 +5218,8 @@ Checking test 097 datm_control_gefs results .... Test 097 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/datm_bulk_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -5227,8 +5227,8 @@ Checking test 098 datm_bulk_cfsr results .... Test 098 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/datm_bulk_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -5236,8 +5236,8 @@ Checking test 099 datm_bulk_gefs results .... Test 099 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/datm_mx025_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/datm_mx025_cfsr Checking test 100 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5248,8 +5248,8 @@ Checking test 100 datm_mx025_cfsr results .... Test 100 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/datm_mx025_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/datm_mx025_gefs Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5260,8 +5260,8 @@ Checking test 101 datm_mx025_gefs results .... Test 101 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_14190/datm_debug_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/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 @@ -5270,5 +5270,5 @@ Test 102 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 1 14:47:00 MST 2021 -Elapsed time: 01h:25m:11s. Have a nice day! +Thu Mar 4 12:31:19 MST 2021 +Elapsed time: 01h:29m:47s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 6e1f2b729d..ef4f0ffc65 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Mon Mar 1 22:33:47 EST 2021 +Thu Mar 4 11:40:36 EST 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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-20210301/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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-20210301/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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-20210301/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210301/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 @@ -324,8 +324,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-20210301/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 @@ -372,8 +372,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-20210301/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 @@ -420,8 +420,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-20210301/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 @@ -468,8 +468,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-20210301/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 @@ -516,8 +516,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-20210301/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 @@ -564,8 +564,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-20210301/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 @@ -612,8 +612,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-20210301/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210301/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_ca_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ca_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_lndp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lndp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_iau_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_iau_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,19 +1228,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 ............ALT CHECK......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-20210301/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1335,8 +1335,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1383,8 +1383,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1431,8 +1431,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,8 +1479,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1527,8 +1527,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1575,8 +1575,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_cpt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,8 +1681,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gsd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_rap_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rap_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_rap_prod Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 035 fv3_ccpp_rap results .... Test 035 fv3_ccpp_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_hrrr_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_hrrr_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_hrrr_prod Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 036 fv3_ccpp_hrrr results .... Test 036 fv3_ccpp_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 037 fv3_ccpp_thompson results .... Test 037 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 @@ -2045,8 +2045,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2113,8 +2113,8 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v15p2_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v15p2_prod Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2181,8 +2181,8 @@ Checking test 040 fv3_ccpp_gfs_v15p2 results .... Test 040 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_prod Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2261,8 +2261,8 @@ Checking test 041 fv3_ccpp_gfs_v16 results .... Test 041 fv3_ccpp_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_restart_prod Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2311,8 +2311,8 @@ Checking test 042 fv3_ccpp_gfs_v16_restart results .... Test 042 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_stochy_prod Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2379,8 +2379,8 @@ Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Test 043 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2447,8 +2447,8 @@ Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2515,8 +2515,8 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2577,8 +2577,8 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2645,8 +2645,8 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 @@ -2693,8 +2693,8 @@ Checking test 048 fv3_ccpp_gfsv16_csawmg results .... Test 048 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 @@ -2741,8 +2741,8 @@ Checking test 049 fv3_ccpp_gfsv16_csawmgt results .... Test 049 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gocart_clm_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 @@ -2789,8 +2789,8 @@ Checking test 050 fv3_ccpp_gocart_clm results .... Test 050 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_flake_prod Checking test 051 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2857,8 +2857,8 @@ Checking test 051 fv3_ccpp_gfs_v16_flake results .... Test 051 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 @@ -2925,8 +2925,8 @@ Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 @@ -2943,8 +2943,8 @@ Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 054 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3005,8 +3005,8 @@ Checking test 054 fv3_ccpp_gfsv16_ugwpv1 results .... Test 054 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3067,8 +3067,8 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 @@ -3135,8 +3135,8 @@ Checking test 056 fv3_ccpp_gfs_v15p2_debug results .... Test 056 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_debug_prod Checking test 057 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3203,8 +3203,8 @@ Checking test 057 fv3_ccpp_gfs_v16_debug results .... Test 057 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/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 @@ -3271,8 +3271,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 059 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3339,8 +3339,8 @@ Checking test 059 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 059 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_regional_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_regional_control_debug_prod Checking test 060 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3350,8 +3350,8 @@ Checking test 060 fv3_ccpp_regional_control_debug results .... Test 060 fv3_ccpp_regional_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_control_debug_prod Checking test 061 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3380,8 +3380,8 @@ Checking test 061 fv3_ccpp_control_debug results .... Test 061 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_stretched_nest_debug_prod Checking test 062 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3400,8 +3400,8 @@ Checking test 062 fv3_ccpp_stretched_nest_debug results .... Test 062 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gsd_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gsd_debug_prod Checking test 063 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3468,8 +3468,8 @@ Checking test 063 fv3_ccpp_gsd_debug results .... Test 063 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gsd_diag3d_debug_prod Checking test 064 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3536,8 +3536,8 @@ Checking test 064 fv3_ccpp_gsd_diag3d_debug results .... Test 064 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_thompson_debug_prod Checking test 065 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3604,8 +3604,8 @@ Checking test 065 fv3_ccpp_thompson_debug results .... Test 065 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_thompson_no_aero_debug_prod Checking test 066 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3672,8 +3672,8 @@ Checking test 066 fv3_ccpp_thompson_no_aero_debug results .... Test 066 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 067 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3740,8 +3740,8 @@ Checking test 067 fv3_ccpp_rrfs_v1beta_debug results .... Test 067 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3808,8 +3808,8 @@ Checking test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3826,8 +3826,8 @@ Checking test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 070 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3888,8 +3888,8 @@ Checking test 070 fv3_ccpp_gfsv16_ugwpv1_debug results .... Test 070 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_control_prod Checking test 071 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3941,8 +3941,8 @@ Checking test 071 cpld_control results .... Test 071 cpld_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_restart_prod Checking test 072 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3994,8 +3994,8 @@ Checking test 072 cpld_restart results .... Test 072 cpld_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_controlfrac_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_controlfrac_prod Checking test 073 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4047,8 +4047,8 @@ Checking test 073 cpld_controlfrac results .... Test 073 cpld_controlfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_restartfrac_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_restartfrac_prod Checking test 074 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4100,8 +4100,8 @@ Checking test 074 cpld_restartfrac results .... Test 074 cpld_restartfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_2threads_prod Checking test 075 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4153,8 +4153,8 @@ Checking test 075 cpld_2threads results .... Test 075 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_decomp_prod Checking test 076 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4206,8 +4206,8 @@ Checking test 076 cpld_decomp results .... Test 076 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_satmedmf_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_satmedmf_prod Checking test 077 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4259,8 +4259,8 @@ Checking test 077 cpld_satmedmf results .... Test 077 cpld_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_ca_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_ca_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_ca_prod Checking test 078 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4312,8 +4312,8 @@ Checking test 078 cpld_ca results .... Test 078 cpld_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_control_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_control_c192_prod Checking test 079 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4365,8 +4365,8 @@ Checking test 079 cpld_control_c192 results .... Test 079 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_restart_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_restart_c192_prod Checking test 080 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4418,8 +4418,8 @@ Checking test 080 cpld_restart_c192 results .... Test 080 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_controlfrac_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_controlfrac_c192_prod Checking test 081 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4471,8 +4471,8 @@ Checking test 081 cpld_controlfrac_c192 results .... Test 081 cpld_controlfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_restartfrac_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_restartfrac_c192_prod Checking test 082 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4524,8 +4524,8 @@ Checking test 082 cpld_restartfrac_c192 results .... Test 082 cpld_restartfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_control_c384_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_control_c384_prod Checking test 083 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4580,8 +4580,8 @@ Checking test 083 cpld_control_c384 results .... Test 083 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_restart_c384_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_restart_c384_prod Checking test 084 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4636,8 +4636,8 @@ Checking test 084 cpld_restart_c384 results .... Test 084 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_controlfrac_c384_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_controlfrac_c384_prod Checking test 085 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4692,8 +4692,8 @@ Checking test 085 cpld_controlfrac_c384 results .... Test 085 cpld_controlfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_restartfrac_c384_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_restartfrac_c384_prod Checking test 086 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4748,8 +4748,8 @@ Checking test 086 cpld_restartfrac_c384 results .... Test 086 cpld_restartfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_bmark_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_bmark_prod Checking test 087 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4804,8 +4804,8 @@ Checking test 087 cpld_bmark results .... Test 087 cpld_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_restart_bmark_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_restart_bmark_prod Checking test 088 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4860,8 +4860,8 @@ Checking test 088 cpld_restart_bmark results .... Test 088 cpld_restart_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_bmarkfrac_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_bmarkfrac_prod Checking test 089 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4916,8 +4916,8 @@ Checking test 089 cpld_bmarkfrac results .... Test 089 cpld_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_restart_bmarkfrac_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_restart_bmarkfrac_prod Checking test 090 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4972,8 +4972,8 @@ Checking test 090 cpld_restart_bmarkfrac results .... Test 090 cpld_restart_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_debug_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_debug_prod Checking test 091 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5025,8 +5025,8 @@ Checking test 091 cpld_debug results .... Test 091 cpld_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_debugfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/cpld_debugfrac_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_debugfrac_ccpp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_debugfrac_prod Checking test 092 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5078,8 +5078,8 @@ Checking test 092 cpld_debugfrac results .... Test 092 cpld_debugfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/datm_control_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/datm_control_cfsr Checking test 093 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5087,8 +5087,8 @@ Checking test 093 datm_control_cfsr results .... Test 093 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/datm_restart_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/datm_restart_cfsr Checking test 094 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5096,8 +5096,8 @@ Checking test 094 datm_restart_cfsr results .... Test 094 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/datm_control_gefs +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/datm_control_gefs Checking test 095 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5105,8 +5105,8 @@ Checking test 095 datm_control_gefs results .... Test 095 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/datm_bulk_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/datm_bulk_cfsr Checking test 096 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5114,8 +5114,8 @@ Checking test 096 datm_bulk_cfsr results .... Test 096 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/datm_bulk_gefs +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/datm_bulk_gefs Checking test 097 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5123,39 +5123,27 @@ Checking test 097 datm_bulk_gefs results .... Test 097 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_mx025_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/datm_mx025_cfsr -Checking test 098 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 098 datm_mx025_cfsr PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/datm_mx025_gefs -Checking test 099 datm_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/datm_mx025_gefs +Checking test 098 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 099 datm_mx025_gefs PASS +Test 098 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_26412/datm_debug_cfsr -Checking test 100 datm_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/datm_debug_cfsr +Checking test 099 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 100 datm_debug_cfsr PASS +Test 099 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 2 00:16:16 EST 2021 -Elapsed time: 01h:42m:31s. Have a nice day! +Thu Mar 4 13:05:49 EST 2021 +Elapsed time: 01h:25m:14s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 84b4351768..443d382487 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Mon Mar 1 18:37:55 UTC 2021 +Thu Mar 4 15:31:33 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/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-20210301/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/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-20210301/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -198,8 +198,8 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -248,8 +248,8 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -316,8 +316,8 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,8 +384,8 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/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-20210301/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -520,8 +520,8 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/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-20210301/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/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-20210301/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/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-20210301/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/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-20210301/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/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-20210301/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/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-20210301/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -964,8 +964,8 @@ Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1026,8 +1026,8 @@ Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1056,8 +1056,8 @@ Checking test 017 fv3_ccpp_control_debug results .... Test 017 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,8 +1124,8 @@ Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1192,8 +1192,8 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1260,8 +1260,8 @@ Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,8 +1328,8 @@ Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,8 +1402,8 @@ Checking test 022 fv3_ccpp_multigases results .... Test 022 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_regional_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_regional_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1413,8 +1413,8 @@ Checking test 023 fv3_ccpp_regional_control_debug results .... Test 023 fv3_ccpp_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,8 +1481,8 @@ Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Test 024 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1549,8 +1549,8 @@ Checking test 025 fv3_ccpp_gsd_debug results .... Test 025 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1617,8 +1617,8 @@ Checking test 026 fv3_ccpp_thompson_debug results .... Test 026 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1685,8 +1685,8 @@ Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Test 027 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1753,8 +1753,8 @@ Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1771,8 +1771,8 @@ Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_99769/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1834,5 +1834,5 @@ Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 1 19:32:17 UTC 2021 -Elapsed time: 00h:54m:23s. Have a nice day! +Thu Mar 4 15:56:48 UTC 2021 +Elapsed time: 00h:25m:15s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 577b9c6dac..ef7ace4d61 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Mon Mar 1 18:38:03 UTC 2021 +Thu Mar 4 19:01:24 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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-20210301/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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-20210301/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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-20210301/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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 @@ -324,8 +324,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-20210301/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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 @@ -372,8 +372,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-20210301/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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 @@ -420,8 +420,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-20210301/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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 @@ -429,7 +429,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 ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK @@ -468,8 +468,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-20210301/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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 @@ -516,8 +516,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-20210301/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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 @@ -564,8 +564,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-20210301/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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 @@ -612,8 +612,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-20210301/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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 @@ -1030,8 +1030,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-20210301/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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 @@ -1079,8 +1079,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-20210301/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1153,8 +1153,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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 @@ -1221,8 +1221,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-20210301/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1277,8 +1277,8 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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 @@ -1344,8 +1344,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-20210301/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1355,8 +1355,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-20210301/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1364,8 +1364,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-20210301/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1375,8 +1375,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-20210301/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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 @@ -1386,8 +1386,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-20210301/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1434,8 +1434,8 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,8 +1482,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,8 +1530,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,8 +1578,8 @@ Checking test 031 fv3_ccpp_csawmg results .... Test 031 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1626,8 +1626,8 @@ Checking test 032 fv3_ccpp_satmedmf results .... Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1674,8 +1674,8 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,8 +1722,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,8 +1774,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1828,8 +1828,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1920,8 +1920,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_rap_prod Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1988,8 +1988,8 @@ Checking test 038 fv3_ccpp_rap results .... Test 038 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_hrrr_prod Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2056,8 +2056,8 @@ Checking test 039 fv3_ccpp_hrrr results .... Test 039 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_thompson_prod Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2124,8 +2124,8 @@ Checking test 040 fv3_ccpp_thompson results .... Test 040 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_thompson_no_aero_prod Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2192,8 +2192,8 @@ Checking test 041 fv3_ccpp_thompson_no_aero results .... Test 041 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_rrfs_v1beta_prod Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2260,8 +2260,8 @@ Checking test 042 fv3_ccpp_rrfs_v1beta results .... Test 042 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v15p2_prod Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2328,8 +2328,8 @@ Checking test 043 fv3_ccpp_gfs_v15p2 results .... Test 043 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_prod Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2408,8 +2408,8 @@ Checking test 044 fv3_ccpp_gfs_v16 results .... Test 044 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_restart_prod Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2458,8 +2458,8 @@ Checking test 045 fv3_ccpp_gfs_v16_restart results .... Test 045 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_stochy_prod Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2526,8 +2526,8 @@ Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Test 046 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2594,8 +2594,8 @@ Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2662,8 +2662,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2724,8 +2724,8 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2792,8 +2792,8 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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 @@ -2840,8 +2840,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-20210301/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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 @@ -2888,8 +2888,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-20210301/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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 @@ -2936,8 +2936,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-20210301/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_flake_prod Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3004,8 +3004,8 @@ Checking test 054 fv3_ccpp_gfs_v16_flake results .... Test 054 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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 @@ -3072,8 +3072,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-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/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 @@ -3090,8 +3090,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-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3152,8 +3152,8 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Test 057 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3214,8 +3214,8 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v15p2_debug_prod Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3282,8 +3282,8 @@ Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Test 059 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_debug_prod Checking test 060 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3350,8 +3350,8 @@ Checking test 060 fv3_ccpp_gfs_v16_debug results .... Test 060 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3418,8 +3418,8 @@ Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3486,8 +3486,8 @@ Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_regional_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_regional_control_debug_prod Checking test 063 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3497,8 +3497,8 @@ Checking test 063 fv3_ccpp_regional_control_debug results .... Test 063 fv3_ccpp_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_control_debug_prod Checking test 064 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3527,8 +3527,8 @@ Checking test 064 fv3_ccpp_control_debug results .... Test 064 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_stretched_nest_debug_prod Checking test 065 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3547,8 +3547,8 @@ Checking test 065 fv3_ccpp_stretched_nest_debug results .... Test 065 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gsd_debug_prod Checking test 066 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3615,8 +3615,8 @@ Checking test 066 fv3_ccpp_gsd_debug results .... Test 066 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gsd_diag3d_debug_prod Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3683,8 +3683,8 @@ Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Test 067 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_thompson_debug_prod Checking test 068 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3751,8 +3751,8 @@ Checking test 068 fv3_ccpp_thompson_debug results .... Test 068 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_thompson_no_aero_debug_prod Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3819,8 +3819,8 @@ Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Test 069 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3887,8 +3887,8 @@ Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Test 070 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3955,8 +3955,8 @@ Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3973,8 +3973,8 @@ Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4035,8 +4035,8 @@ Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Test 073 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_control_prod Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4088,8 +4088,8 @@ Checking test 074 cpld_control results .... Test 074 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restart_prod Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4141,8 +4141,8 @@ Checking test 075 cpld_restart results .... Test 075 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_controlfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_controlfrac_prod Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4194,8 +4194,8 @@ Checking test 076 cpld_controlfrac results .... Test 076 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restartfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restartfrac_prod Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4247,8 +4247,8 @@ Checking test 077 cpld_restartfrac results .... Test 077 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_2threads_prod Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4300,8 +4300,8 @@ Checking test 078 cpld_2threads results .... Test 078 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_decomp_prod Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4353,8 +4353,8 @@ Checking test 079 cpld_decomp results .... Test 079 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_satmedmf_prod Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4406,8 +4406,8 @@ Checking test 080 cpld_satmedmf results .... Test 080 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_ca_prod Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4459,8 +4459,8 @@ Checking test 081 cpld_ca results .... Test 081 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_control_c192_prod Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4512,8 +4512,8 @@ Checking test 082 cpld_control_c192 results .... Test 082 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restart_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restart_c192_prod Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4565,8 +4565,8 @@ Checking test 083 cpld_restart_c192 results .... Test 083 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_controlfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_controlfrac_c192_prod Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4618,8 +4618,8 @@ Checking test 084 cpld_controlfrac_c192 results .... Test 084 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restartfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restartfrac_c192_prod Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4671,8 +4671,8 @@ Checking test 085 cpld_restartfrac_c192 results .... Test 085 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_control_c384_prod Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4727,8 +4727,8 @@ Checking test 086 cpld_control_c384 results .... Test 086 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restart_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restart_c384_prod Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4783,8 +4783,8 @@ Checking test 087 cpld_restart_c384 results .... Test 087 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_controlfrac_c384_prod Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4839,8 +4839,8 @@ Checking test 088 cpld_controlfrac_c384 results .... Test 088 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restartfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restartfrac_c384_prod Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4895,8 +4895,8 @@ Checking test 089 cpld_restartfrac_c384 results .... Test 089 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_bmark_prod Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4951,8 +4951,8 @@ Checking test 090 cpld_bmark results .... Test 090 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restart_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restart_bmark_prod Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5007,8 +5007,8 @@ Checking test 091 cpld_restart_bmark results .... Test 091 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_bmarkfrac_prod Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5063,8 +5063,8 @@ Checking test 092 cpld_bmarkfrac results .... Test 092 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restart_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restart_bmarkfrac_prod Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5119,8 +5119,8 @@ Checking test 093 cpld_restart_bmarkfrac results .... Test 093 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_bmarkfrac_v16_prod Checking test 094 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5175,8 +5175,8 @@ Checking test 094 cpld_bmarkfrac_v16 results .... Test 094 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_restart_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restart_bmarkfrac_v16_prod Checking test 095 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5231,8 +5231,8 @@ Checking test 095 cpld_restart_bmarkfrac_v16 results .... Test 095 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_bmark_wave_prod Checking test 096 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5290,8 +5290,8 @@ Checking test 096 cpld_bmark_wave results .... Test 096 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_bmarkfrac_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_bmarkfrac_wave_prod Checking test 097 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5349,8 +5349,8 @@ Checking test 097 cpld_bmarkfrac_wave results .... Test 097 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_bmarkfrac_wave_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_bmarkfrac_wave_v16_prod Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5408,8 +5408,8 @@ Checking test 098 cpld_bmarkfrac_wave_v16 results .... Test 098 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_control_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_control_wave_prod Checking test 099 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5464,8 +5464,8 @@ Checking test 099 cpld_control_wave results .... Test 099 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_debug_prod Checking test 100 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5517,8 +5517,8 @@ Checking test 100 cpld_debug results .... Test 100 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/cpld_debugfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_debugfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_debugfrac_prod Checking test 101 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5570,8 +5570,8 @@ Checking test 101 cpld_debugfrac results .... Test 101 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/datm_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/datm_control_cfsr Checking test 102 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5579,8 +5579,8 @@ Checking test 102 datm_control_cfsr results .... Test 102 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/datm_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/datm_restart_cfsr Checking test 103 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5588,8 +5588,8 @@ Checking test 103 datm_restart_cfsr results .... Test 103 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/datm_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/datm_control_gefs Checking test 104 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5597,8 +5597,8 @@ Checking test 104 datm_control_gefs results .... Test 104 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/datm_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/datm_bulk_cfsr Checking test 105 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5606,8 +5606,8 @@ Checking test 105 datm_bulk_cfsr results .... Test 105 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/datm_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/datm_bulk_gefs Checking test 106 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5615,8 +5615,8 @@ Checking test 106 datm_bulk_gefs results .... Test 106 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/datm_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/datm_mx025_cfsr Checking test 107 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5627,8 +5627,8 @@ Checking test 107 datm_mx025_cfsr results .... Test 107 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/datm_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/datm_mx025_gefs Checking test 108 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5639,8 +5639,8 @@ Checking test 108 datm_mx025_gefs results .... Test 108 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_101415/datm_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/datm_debug_cfsr Checking test 109 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5649,5 +5649,5 @@ Test 109 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 1 20:50:59 UTC 2021 -Elapsed time: 02h:12m:57s. Have a nice day! +Thu Mar 4 21:17:58 UTC 2021 +Elapsed time: 02h:16m:34s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index d17b7f1059..becc1aa726 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Mon Mar 1 21:17:06 GMT 2021 +Thu Mar 4 15:31:24 GMT 2021 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_2threads_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_2threads_prod Checking test 002 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -138,8 +138,8 @@ Checking test 002 fv3_ccpp_2threads results .... Test 002 fv3_ccpp_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_restart_prod Checking test 003 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -188,8 +188,8 @@ Checking test 003 fv3_ccpp_restart results .... Test 003 fv3_ccpp_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_read_inc_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_read_inc_prod Checking test 004 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -256,8 +256,8 @@ Checking test 004 fv3_ccpp_read_inc results .... Test 004 fv3_ccpp_read_inc PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -304,8 +304,8 @@ Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Test 005 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_wrtGauss_netcdf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -352,8 +352,8 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Test 006 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -400,8 +400,8 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 007 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -448,8 +448,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -496,8 +496,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -544,8 +544,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_stochy_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -612,8 +612,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_ca_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ca_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_ca_prod Checking test 012 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 012 fv3_ccpp_ca results .... Test 012 fv3_ccpp_ca PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_lndp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lndp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_lndp_prod Checking test 013 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_lndp results .... Test 013 fv3_ccpp_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_iau_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_iau_prod Checking test 014 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_iau results .... Test 014 fv3_ccpp_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_lheatstrg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -864,8 +864,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_multigases_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_control_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_stretched_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1062,8 +1062,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_stretched_nest_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1129,8 +1129,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_regional_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1140,8 +1140,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_regional_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1149,8 +1149,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_regional_quilt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1160,8 +1160,8 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1171,8 +1171,8 @@ Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfdlmp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfdlmp_prod Checking test 024 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 024 fv3_ccpp_gfdlmp results .... Test 024 fv3_ccpp_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfdlmprad_gwd_prod Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,8 +1267,8 @@ Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Test 025 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Test 026 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_csawmg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,8 +1363,8 @@ Checking test 027 fv3_ccpp_csawmg results .... Test 027 fv3_ccpp_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_satmedmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,8 +1411,8 @@ Checking test 028 fv3_ccpp_satmedmf results .... Test 028 fv3_ccpp_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_satmedmfq_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,8 +1459,8 @@ Checking test 029 fv3_ccpp_satmedmfq results .... Test 029 fv3_ccpp_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,8 +1507,8 @@ Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Test 030 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,8 +1559,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_cpt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,8 +1613,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gsd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v15p2_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v15p2_prod Checking test 036 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 036 fv3_ccpp_gfs_v15p2 results .... Test 036 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_prod Checking test 037 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1989,8 +1989,8 @@ Checking test 037 fv3_ccpp_gfs_v16 results .... Test 037 fv3_ccpp_gfs_v16 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_restart_prod Checking test 038 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2039,8 +2039,8 @@ Checking test 038 fv3_ccpp_gfs_v16_restart results .... Test 038 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_stochy_prod Checking test 039 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,8 +2107,8 @@ Checking test 039 fv3_ccpp_gfs_v16_stochy results .... Test 039 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 040 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2175,8 +2175,8 @@ Checking test 040 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 040 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,8 +2243,8 @@ Checking test 041 fv3_ccpp_gfs_v16_RRTMGP results .... Test 041 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2305,8 +2305,8 @@ Checking test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 043 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2373,8 +2373,8 @@ Checking test 043 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 043 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/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 @@ -2421,8 +2421,8 @@ Checking test 044 fv3_ccpp_gfsv16_csawmg results .... Test 044 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfsv16_csawmgt_prod Checking test 045 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2469,8 +2469,8 @@ Checking test 045 fv3_ccpp_gfsv16_csawmgt results .... Test 045 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gocart_clm_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gocart_clm_prod Checking test 046 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2517,8 +2517,8 @@ Checking test 046 fv3_ccpp_gocart_clm results .... Test 046 fv3_ccpp_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_flake_prod Checking test 047 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2585,8 +2585,8 @@ Checking test 047 fv3_ccpp_gfs_v16_flake results .... Test 047 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2653,8 +2653,8 @@ Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 048 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2671,8 +2671,8 @@ Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2733,8 +2733,8 @@ Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... Test 050 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2795,8 +2795,8 @@ Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/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 @@ -2863,8 +2863,8 @@ Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... Test 052 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_debug_prod Checking test 053 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2931,8 +2931,8 @@ Checking test 053 fv3_ccpp_gfs_v16_debug results .... Test 053 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/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 @@ -2999,8 +2999,8 @@ Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3067,8 +3067,8 @@ Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 055 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_regional_control_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_regional_control_debug_prod Checking test 056 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3078,8 +3078,8 @@ Checking test 056 fv3_ccpp_regional_control_debug results .... Test 056 fv3_ccpp_regional_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_control_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_control_debug_prod Checking test 057 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3108,8 +3108,8 @@ Checking test 057 fv3_ccpp_control_debug results .... Test 057 fv3_ccpp_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_stretched_nest_debug_prod Checking test 058 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3128,8 +3128,8 @@ Checking test 058 fv3_ccpp_stretched_nest_debug results .... Test 058 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gsd_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/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 @@ -3196,8 +3196,8 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Test 059 fv3_ccpp_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/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 @@ -3264,8 +3264,8 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Test 060 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/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 @@ -3332,8 +3332,8 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Test 061 fv3_ccpp_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/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 @@ -3400,8 +3400,8 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Test 062 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/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 @@ -3468,8 +3468,8 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Test 063 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/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 @@ -3536,8 +3536,8 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/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 @@ -3554,8 +3554,8 @@ Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_23129/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 066 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3617,5 +3617,5 @@ Test 066 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 1 23:30:56 GMT 2021 -Elapsed time: 02h:13m:50s. Have a nice day! +Thu Mar 4 17:49:35 GMT 2021 +Elapsed time: 02h:18m:12s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 3b6974e14b..5536e33263 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Mon Mar 1 18:31:16 CST 2021 +Thu Mar 4 14:46:13 CST 2021 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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-20210301/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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-20210301/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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-20210301/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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 @@ -324,8 +324,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-20210301/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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 @@ -372,8 +372,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-20210301/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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 @@ -420,8 +420,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-20210301/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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 @@ -430,7 +430,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 @@ -468,8 +468,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-20210301/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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 @@ -516,8 +516,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-20210301/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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 @@ -564,8 +564,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-20210301/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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 @@ -612,8 +612,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-20210301/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_lndp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_lheatstrg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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 @@ -1030,8 +1030,8 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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 @@ -1079,8 +1079,8 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1153,8 +1153,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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 @@ -1221,8 +1221,8 @@ Checking test 021 fv3_ccpp_control_32bit results .... Test 021 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1277,8 +1277,8 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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 @@ -1344,8 +1344,8 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Test 023 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1355,8 +1355,8 @@ Checking test 024 fv3_ccpp_regional_control results .... Test 024 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1364,8 +1364,8 @@ Checking test 025 fv3_ccpp_regional_restart results .... Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1375,8 +1375,8 @@ Checking test 026 fv3_ccpp_regional_quilt results .... Test 026 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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 @@ -1386,8 +1386,8 @@ Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1434,8 +1434,8 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,8 +1482,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,8 +1530,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,8 +1578,8 @@ Checking test 031 fv3_ccpp_csawmg results .... Test 031 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1626,8 +1626,8 @@ Checking test 032 fv3_ccpp_satmedmf results .... Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_satmedmfq_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1674,8 +1674,8 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,8 +1722,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,8 +1774,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1828,8 +1828,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1920,8 +1920,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_rap_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_rap_prod Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1988,8 +1988,8 @@ Checking test 038 fv3_ccpp_rap results .... Test 038 fv3_ccpp_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_hrrr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_hrrr_prod Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2056,8 +2056,8 @@ Checking test 039 fv3_ccpp_hrrr results .... Test 039 fv3_ccpp_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_thompson_prod Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2124,8 +2124,8 @@ Checking test 040 fv3_ccpp_thompson results .... Test 040 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_thompson_no_aero_prod Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2192,8 +2192,8 @@ Checking test 041 fv3_ccpp_thompson_no_aero results .... Test 041 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_rrfs_v1beta_prod Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2260,8 +2260,8 @@ Checking test 042 fv3_ccpp_rrfs_v1beta results .... Test 042 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v15p2_prod Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2328,8 +2328,8 @@ Checking test 043 fv3_ccpp_gfs_v15p2 results .... Test 043 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_prod Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2408,8 +2408,8 @@ Checking test 044 fv3_ccpp_gfs_v16 results .... Test 044 fv3_ccpp_gfs_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_restart_prod Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2458,8 +2458,8 @@ Checking test 045 fv3_ccpp_gfs_v16_restart results .... Test 045 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_stochy_prod Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2526,8 +2526,8 @@ Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Test 046 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2594,8 +2594,8 @@ Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2662,8 +2662,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2724,8 +2724,8 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2792,8 +2792,8 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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 @@ -2840,8 +2840,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Test 051 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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 @@ -2888,8 +2888,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Test 052 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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 @@ -2936,8 +2936,8 @@ Checking test 053 fv3_ccpp_gocart_clm results .... Test 053 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_flake_prod Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3004,8 +3004,8 @@ Checking test 054 fv3_ccpp_gfs_v16_flake results .... Test 054 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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 @@ -3072,8 +3072,8 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/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 @@ -3090,8 +3090,8 @@ Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3152,8 +3152,8 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Test 057 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3214,8 +3214,8 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v15p2_debug_prod Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3282,8 +3282,8 @@ Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Test 059 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_debug_prod Checking test 060 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3350,8 +3350,8 @@ Checking test 060 fv3_ccpp_gfs_v16_debug results .... Test 060 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3418,8 +3418,8 @@ Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3486,8 +3486,8 @@ Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_regional_control_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_regional_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_regional_control_debug_prod Checking test 063 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3497,8 +3497,8 @@ Checking test 063 fv3_ccpp_regional_control_debug results .... Test 063 fv3_ccpp_regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_control_debug_prod Checking test 064 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3527,8 +3527,8 @@ Checking test 064 fv3_ccpp_control_debug results .... Test 064 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_stretched_nest_debug_prod Checking test 065 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3547,8 +3547,8 @@ Checking test 065 fv3_ccpp_stretched_nest_debug results .... Test 065 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gsd_debug_prod Checking test 066 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3615,8 +3615,8 @@ Checking test 066 fv3_ccpp_gsd_debug results .... Test 066 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gsd_diag3d_debug_prod Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3683,8 +3683,8 @@ Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Test 067 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_thompson_debug_prod Checking test 068 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3751,8 +3751,8 @@ Checking test 068 fv3_ccpp_thompson_debug results .... Test 068 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_thompson_no_aero_debug_prod Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3819,8 +3819,8 @@ Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Test 069 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3887,8 +3887,8 @@ Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Test 070 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3955,8 +3955,8 @@ Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3973,8 +3973,8 @@ Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4035,8 +4035,8 @@ Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Test 073 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_control_prod Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4088,8 +4088,8 @@ Checking test 074 cpld_control results .... Test 074 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restart_prod Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4141,8 +4141,8 @@ Checking test 075 cpld_restart results .... Test 075 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_controlfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_controlfrac_prod Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4194,8 +4194,8 @@ Checking test 076 cpld_controlfrac results .... Test 076 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restartfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restartfrac_prod Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4247,8 +4247,8 @@ Checking test 077 cpld_restartfrac results .... Test 077 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_2threads_prod Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4300,8 +4300,8 @@ Checking test 078 cpld_2threads results .... Test 078 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_decomp_prod Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4353,8 +4353,8 @@ Checking test 079 cpld_decomp results .... Test 079 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_satmedmf_prod Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4406,8 +4406,8 @@ Checking test 080 cpld_satmedmf results .... Test 080 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_ca_prod Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4459,8 +4459,8 @@ Checking test 081 cpld_ca results .... Test 081 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_control_c192_prod Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4512,8 +4512,8 @@ Checking test 082 cpld_control_c192 results .... Test 082 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restart_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restart_c192_prod Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4565,8 +4565,8 @@ Checking test 083 cpld_restart_c192 results .... Test 083 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_controlfrac_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_controlfrac_c192_prod Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4618,8 +4618,8 @@ Checking test 084 cpld_controlfrac_c192 results .... Test 084 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restartfrac_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restartfrac_c192_prod Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4671,8 +4671,8 @@ Checking test 085 cpld_restartfrac_c192 results .... Test 085 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_control_c384_prod Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4727,8 +4727,8 @@ Checking test 086 cpld_control_c384 results .... Test 086 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restart_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restart_c384_prod Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4783,8 +4783,8 @@ Checking test 087 cpld_restart_c384 results .... Test 087 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_controlfrac_c384_prod Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4839,8 +4839,8 @@ Checking test 088 cpld_controlfrac_c384 results .... Test 088 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restartfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restartfrac_c384_prod Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4895,8 +4895,8 @@ Checking test 089 cpld_restartfrac_c384 results .... Test 089 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_bmark_prod Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4951,8 +4951,8 @@ Checking test 090 cpld_bmark results .... Test 090 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restart_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restart_bmark_prod Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5007,8 +5007,8 @@ Checking test 091 cpld_restart_bmark results .... Test 091 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_bmarkfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_bmarkfrac_prod Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5063,8 +5063,8 @@ Checking test 092 cpld_bmarkfrac results .... Test 092 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restart_bmarkfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restart_bmarkfrac_prod Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5119,8 +5119,8 @@ Checking test 093 cpld_restart_bmarkfrac results .... Test 093 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_bmarkfrac_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_bmarkfrac_v16_prod Checking test 094 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5175,8 +5175,8 @@ Checking test 094 cpld_bmarkfrac_v16 results .... Test 094 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_restart_bmarkfrac_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restart_bmarkfrac_v16_prod Checking test 095 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5231,8 +5231,8 @@ Checking test 095 cpld_restart_bmarkfrac_v16 results .... Test 095 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_bmark_wave_prod Checking test 096 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5290,8 +5290,8 @@ Checking test 096 cpld_bmark_wave results .... Test 096 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_bmarkfrac_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_bmarkfrac_wave_prod Checking test 097 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5349,8 +5349,8 @@ Checking test 097 cpld_bmarkfrac_wave results .... Test 097 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_bmarkfrac_wave_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_bmarkfrac_wave_v16_prod Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5408,8 +5408,8 @@ Checking test 098 cpld_bmarkfrac_wave_v16 results .... Test 098 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_control_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_wave_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_control_wave_prod Checking test 099 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5464,8 +5464,8 @@ Checking test 099 cpld_control_wave results .... Test 099 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_debug_prod Checking test 100 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5517,8 +5517,8 @@ Checking test 100 cpld_debug results .... Test 100 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/cpld_debugfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_debugfrac_prod Checking test 101 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5570,8 +5570,8 @@ Checking test 101 cpld_debugfrac results .... Test 101 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/datm_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/datm_control_cfsr Checking test 102 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5579,8 +5579,8 @@ Checking test 102 datm_control_cfsr results .... Test 102 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/datm_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/datm_restart_cfsr Checking test 103 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5588,8 +5588,8 @@ Checking test 103 datm_restart_cfsr results .... Test 103 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/datm_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/datm_control_gefs Checking test 104 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5597,8 +5597,8 @@ Checking test 104 datm_control_gefs results .... Test 104 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/datm_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/datm_bulk_cfsr Checking test 105 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5606,8 +5606,8 @@ Checking test 105 datm_bulk_cfsr results .... Test 105 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/datm_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/datm_bulk_gefs Checking test 106 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5615,8 +5615,8 @@ Checking test 106 datm_bulk_gefs results .... Test 106 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/datm_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/datm_mx025_cfsr Checking test 107 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5627,8 +5627,8 @@ Checking test 107 datm_mx025_cfsr results .... Test 107 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/datm_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/datm_mx025_gefs Checking test 108 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5639,8 +5639,8 @@ Checking test 108 datm_mx025_gefs results .... Test 108 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_179327/datm_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/datm_debug_cfsr Checking test 109 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5649,5 +5649,5 @@ Test 109 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 1 22:25:02 CST 2021 -Elapsed time: 03h:53m:47s. Have a nice day! +Thu Mar 4 16:27:02 CST 2021 +Elapsed time: 01h:40m:50s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 443726c0b5..763ff1dfe3 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Mon Mar 1 23:27:43 UTC 2021 +Thu Mar 4 15:13:52 UTC 2021 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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-20210301/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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-20210301/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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-20210301/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210301/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -324,8 +324,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-20210301/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -372,8 +372,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-20210301/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -420,8 +420,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-20210301/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -468,8 +468,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-20210301/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -516,8 +516,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-20210301/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -564,8 +564,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-20210301/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -612,8 +612,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-20210301/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210301/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_ca_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_ca_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_lndp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_lndp_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,8 +1228,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -1239,8 +1239,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1335,8 +1335,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1383,8 +1383,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1431,8 +1431,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,8 +1479,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1527,8 +1527,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1575,8 +1575,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,8 +1681,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_rap_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_rap_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_rap_prod Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 035 fv3_ccpp_rap results .... Test 035 fv3_ccpp_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_hrrr_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_hrrr_prod Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 036 fv3_ccpp_hrrr results .... Test 036 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 037 fv3_ccpp_thompson results .... Test 037 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -2045,8 +2045,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2113,8 +2113,8 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v15p2_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v15p2_prod Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2181,8 +2181,8 @@ Checking test 040 fv3_ccpp_gfs_v15p2 results .... Test 040 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_prod Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2261,8 +2261,8 @@ Checking test 041 fv3_ccpp_gfs_v16 results .... Test 041 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_restart_prod Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2311,8 +2311,8 @@ Checking test 042 fv3_ccpp_gfs_v16_restart results .... Test 042 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_stochy_prod Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2379,8 +2379,8 @@ Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Test 043 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2447,8 +2447,8 @@ Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2515,8 +2515,8 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2577,8 +2577,8 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2645,8 +2645,8 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -2693,8 +2693,8 @@ Checking test 048 fv3_ccpp_gfsv16_csawmg results .... Test 048 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -2741,8 +2741,8 @@ Checking test 049 fv3_ccpp_gfsv16_csawmgt results .... Test 049 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -2789,8 +2789,8 @@ Checking test 050 fv3_ccpp_gocart_clm results .... Test 050 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_flake_prod Checking test 051 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2857,8 +2857,8 @@ Checking test 051 fv3_ccpp_gfs_v16_flake results .... Test 051 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -2925,8 +2925,8 @@ Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -2943,8 +2943,8 @@ Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 054 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3005,8 +3005,8 @@ Checking test 054 fv3_ccpp_gfsv16_ugwpv1 results .... Test 054 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3067,8 +3067,8 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -3135,8 +3135,8 @@ Checking test 056 fv3_ccpp_gfs_v15p2_debug results .... Test 056 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_debug_prod Checking test 057 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3203,8 +3203,8 @@ Checking test 057 fv3_ccpp_gfs_v16_debug results .... Test 057 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/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 @@ -3271,8 +3271,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 059 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3339,8 +3339,8 @@ Checking test 059 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 059 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_regional_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_regional_control_debug_prod Checking test 060 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3350,8 +3350,8 @@ Checking test 060 fv3_ccpp_regional_control_debug results .... Test 060 fv3_ccpp_regional_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_control_debug_prod Checking test 061 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3380,8 +3380,8 @@ Checking test 061 fv3_ccpp_control_debug results .... Test 061 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_stretched_nest_debug_prod Checking test 062 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3400,8 +3400,8 @@ Checking test 062 fv3_ccpp_stretched_nest_debug results .... Test 062 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gsd_debug_prod Checking test 063 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3468,8 +3468,8 @@ Checking test 063 fv3_ccpp_gsd_debug results .... Test 063 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gsd_diag3d_debug_prod Checking test 064 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3536,8 +3536,8 @@ Checking test 064 fv3_ccpp_gsd_diag3d_debug results .... Test 064 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_thompson_debug_prod Checking test 065 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3604,8 +3604,8 @@ Checking test 065 fv3_ccpp_thompson_debug results .... Test 065 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_thompson_no_aero_debug_prod Checking test 066 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3672,8 +3672,8 @@ Checking test 066 fv3_ccpp_thompson_no_aero_debug results .... Test 066 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 067 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3740,8 +3740,8 @@ Checking test 067 fv3_ccpp_rrfs_v1beta_debug results .... Test 067 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3808,8 +3808,8 @@ Checking test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3826,8 +3826,8 @@ Checking test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_12305/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 070 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3889,5 +3889,5 @@ Test 070 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 2 00:12:09 UTC 2021 -Elapsed time: 00h:44m:26s. Have a nice day! +Thu Mar 4 16:04:29 UTC 2021 +Elapsed time: 00h:50m:38s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index a8efac8a55..ccc94128bb 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Tue Mar 2 11:39:56 UTC 2021 +Thu Mar 4 10:11:43 EST 2021 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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-20210301/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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-20210301/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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-20210301/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210301/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -324,8 +324,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-20210301/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -372,8 +372,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-20210301/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -420,8 +420,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-20210301/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -429,10 +429,10 @@ 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 ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc ............ALT CHECK......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 @@ -468,8 +468,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-20210301/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -516,8 +516,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-20210301/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -564,8 +564,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-20210301/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -612,8 +612,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-20210301/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210301/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_ca_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_lndp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_lndp_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -1030,8 +1030,8 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1104,8 +1104,8 @@ Checking test 019 fv3_ccpp_multigases results .... Test 019 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -1172,8 +1172,8 @@ Checking test 020 fv3_ccpp_control_32bit results .... Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1228,8 +1228,8 @@ Checking test 021 fv3_ccpp_stretched results .... Test 021 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -1295,8 +1295,8 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1306,8 +1306,8 @@ Checking test 023 fv3_ccpp_regional_control results .... Test 023 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 024 fv3_ccpp_regional_restart results .... Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1326,19 +1326,19 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 ............ALT CHECK......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-20210301/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1385,8 +1385,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -1433,8 +1433,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -1481,8 +1481,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1529,8 +1529,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1577,8 +1577,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1625,8 +1625,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -1673,8 +1673,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -1725,8 +1725,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1779,8 +1779,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1871,8 +1871,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_rap_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_rap_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1939,8 +1939,8 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_hrrr_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2007,8 +2007,8 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2075,8 +2075,8 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -2143,8 +2143,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -2211,8 +2211,8 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v15p2_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -2279,8 +2279,8 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v16_prod Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2359,8 +2359,8 @@ Checking test 043 fv3_ccpp_gfs_v16 results .... Test 043 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v16_restart_prod Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2409,8 +2409,8 @@ Checking test 044 fv3_ccpp_gfs_v16_restart results .... Test 044 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v16_stochy_prod Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2477,8 +2477,8 @@ Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Test 045 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -2545,8 +2545,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2613,8 +2613,8 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -2675,8 +2675,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2743,8 +2743,8 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 049 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -2791,8 +2791,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmg results .... Test 050 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -2839,8 +2839,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... Test 051 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -2887,8 +2887,8 @@ Checking test 052 fv3_ccpp_gocart_clm results .... Test 052 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v16_flake_prod Checking test 053 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2955,8 +2955,8 @@ Checking test 053 fv3_ccpp_gfs_v16_flake results .... Test 053 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -3023,8 +3023,8 @@ Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -3041,8 +3041,8 @@ Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3103,8 +3103,8 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3165,8 +3165,8 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -3233,8 +3233,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v16_debug_prod Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3301,8 +3301,8 @@ Checking test 059 fv3_ccpp_gfs_v16_debug results .... Test 059 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/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 @@ -3369,8 +3369,8 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3437,8 +3437,8 @@ Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_regional_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_regional_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_regional_control_debug_prod Checking test 062 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3448,8 +3448,8 @@ Checking test 062 fv3_ccpp_regional_control_debug results .... Test 062 fv3_ccpp_regional_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_control_debug_prod Checking test 063 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3478,8 +3478,8 @@ Checking test 063 fv3_ccpp_control_debug results .... Test 063 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_stretched_nest_debug_prod Checking test 064 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3498,8 +3498,8 @@ Checking test 064 fv3_ccpp_stretched_nest_debug results .... Test 064 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gsd_debug_prod Checking test 065 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3566,8 +3566,8 @@ Checking test 065 fv3_ccpp_gsd_debug results .... Test 065 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gsd_diag3d_debug_prod Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3634,8 +3634,8 @@ Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... Test 066 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_thompson_debug_prod Checking test 067 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3702,8 +3702,8 @@ Checking test 067 fv3_ccpp_thompson_debug results .... Test 067 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_thompson_no_aero_debug_prod Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3770,8 +3770,8 @@ Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... Test 068 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3838,8 +3838,8 @@ Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... Test 069 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3906,8 +3906,8 @@ Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3924,8 +3924,8 @@ Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3986,8 +3986,8 @@ Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_control_prod Checking test 073 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4039,8 +4039,8 @@ Checking test 073 cpld_control results .... Test 073 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restart_prod Checking test 074 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4092,8 +4092,8 @@ Checking test 074 cpld_restart results .... Test 074 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_controlfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_controlfrac_prod Checking test 075 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4145,8 +4145,8 @@ Checking test 075 cpld_controlfrac results .... Test 075 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restartfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restartfrac_prod Checking test 076 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4198,8 +4198,8 @@ Checking test 076 cpld_restartfrac results .... Test 076 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_2threads_prod Checking test 077 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4251,8 +4251,8 @@ Checking test 077 cpld_2threads results .... Test 077 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_decomp_prod Checking test 078 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4304,8 +4304,8 @@ Checking test 078 cpld_decomp results .... Test 078 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_satmedmf_prod Checking test 079 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4357,8 +4357,8 @@ Checking test 079 cpld_satmedmf results .... Test 079 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_ca_prod Checking test 080 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4410,8 +4410,8 @@ Checking test 080 cpld_ca results .... Test 080 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_control_c192_prod Checking test 081 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4463,8 +4463,8 @@ Checking test 081 cpld_control_c192 results .... Test 081 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restart_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restart_c192_prod Checking test 082 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4516,8 +4516,8 @@ Checking test 082 cpld_restart_c192 results .... Test 082 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_controlfrac_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_controlfrac_c192_prod Checking test 083 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4569,8 +4569,8 @@ Checking test 083 cpld_controlfrac_c192 results .... Test 083 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restartfrac_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restartfrac_c192_prod Checking test 084 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4622,8 +4622,8 @@ Checking test 084 cpld_restartfrac_c192 results .... Test 084 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_control_c384_prod Checking test 085 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4678,8 +4678,8 @@ Checking test 085 cpld_control_c384 results .... Test 085 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restart_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restart_c384_prod Checking test 086 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4734,8 +4734,8 @@ Checking test 086 cpld_restart_c384 results .... Test 086 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_controlfrac_c384_prod Checking test 087 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4790,8 +4790,8 @@ Checking test 087 cpld_controlfrac_c384 results .... Test 087 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restartfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restartfrac_c384_prod Checking test 088 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4846,8 +4846,8 @@ Checking test 088 cpld_restartfrac_c384 results .... Test 088 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_bmark_prod Checking test 089 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4902,8 +4902,8 @@ Checking test 089 cpld_bmark results .... Test 089 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restart_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restart_bmark_prod Checking test 090 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4958,8 +4958,8 @@ Checking test 090 cpld_restart_bmark results .... Test 090 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_bmarkfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_bmarkfrac_prod Checking test 091 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5014,8 +5014,8 @@ Checking test 091 cpld_bmarkfrac results .... Test 091 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restart_bmarkfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restart_bmarkfrac_prod Checking test 092 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5070,8 +5070,8 @@ Checking test 092 cpld_restart_bmarkfrac results .... Test 092 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_bmarkfrac_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_bmarkfrac_v16_prod Checking test 093 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5126,8 +5126,8 @@ Checking test 093 cpld_bmarkfrac_v16 results .... Test 093 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_restart_bmarkfrac_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restart_bmarkfrac_v16_prod Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5182,8 +5182,8 @@ Checking test 094 cpld_restart_bmarkfrac_v16 results .... Test 094 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_bmark_wave_prod Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5241,8 +5241,8 @@ Checking test 095 cpld_bmark_wave results .... Test 095 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_bmarkfrac_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmarkfrac_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_bmarkfrac_wave_prod Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5300,8 +5300,8 @@ Checking test 096 cpld_bmarkfrac_wave results .... Test 096 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_bmarkfrac_wave_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmarkfrac_wave_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_bmarkfrac_wave_v16_prod Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5359,8 +5359,8 @@ Checking test 097 cpld_bmarkfrac_wave_v16 results .... Test 097 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_control_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_control_wave_prod Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5415,8 +5415,8 @@ Checking test 098 cpld_control_wave results .... Test 098 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_debug_prod Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5468,8 +5468,8 @@ Checking test 099 cpld_debug results .... Test 099 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/cpld_debugfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_debugfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_debugfrac_prod Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5521,8 +5521,8 @@ Checking test 100 cpld_debugfrac results .... Test 100 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/datm_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/datm_control_cfsr Checking test 101 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5530,8 +5530,8 @@ Checking test 101 datm_control_cfsr results .... Test 101 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/datm_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/datm_restart_cfsr Checking test 102 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5539,8 +5539,8 @@ Checking test 102 datm_restart_cfsr results .... Test 102 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/datm_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/datm_control_gefs Checking test 103 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5548,8 +5548,8 @@ Checking test 103 datm_control_gefs results .... Test 103 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/datm_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/datm_bulk_cfsr Checking test 104 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5557,8 +5557,8 @@ Checking test 104 datm_bulk_cfsr results .... Test 104 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/datm_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/datm_bulk_gefs Checking test 105 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5566,8 +5566,8 @@ Checking test 105 datm_bulk_gefs results .... Test 105 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/datm_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/datm_mx025_cfsr Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5578,8 +5578,8 @@ Checking test 106 datm_mx025_cfsr results .... Test 106 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/datm_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/datm_mx025_gefs Checking test 107 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5590,8 +5590,8 @@ Checking test 107 datm_mx025_gefs results .... Test 107 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210301/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195703/datm_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/datm_debug_cfsr Checking test 108 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5600,5 +5600,5 @@ Test 108 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 3 04:22:16 UTC 2021 -Elapsed time: 16h:42m:22s. Have a nice day! +Thu Mar 4 12:59:26 EST 2021 +Elapsed time: 02h:47m:45s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index 140a0333b9..42900a07ad 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -186,7 +186,7 @@ RUN | datm_control_gefs RUN | datm_bulk_cfsr | - wcoss_cray jet.intel | fv3 | RUN | datm_bulk_gefs | - wcoss_cray jet.intel | fv3 | -RUN | datm_mx025_cfsr | - wcoss_cray jet.intel | fv3 | +RUN | datm_mx025_cfsr | - wcoss_cray jet.intel gaea.intel | fv3 | RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 | COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 6c704a0a38..addc556ecb 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -415,9 +415,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-20210301/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210303/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210301} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210303} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210212} From 9004b5e7a6808aeca8591446e568f15141e0c70d Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Tue, 9 Mar 2021 12:02:21 -0500 Subject: [PATCH 078/109] correct benchmark diag_tables for coupled model configurations; move bm_ic directory out of inputdata directory; use aws ec2 for CI test; auto-rt fixes (#426) * Modifications to run tests on aws ec2 instances * Change layout numbers. Include all utests (#7) * Remove unnecessary sleep in build_test.yml and buidl_status_check.py * Increase sleep period in build_status_check.py to meet 60 requests/hr * Add sleep back to build_status.check.py * Minor changes. Change CI to develop branch * update diag_tables *add config variable for diag_table *set up diag_table templates for benchmarks (pre/v16) versions * fix diag table variable for v16 tests * add 35 v16 bmark frac test * add missing diag_table in bmark restart tests * Move bm_ic directory out of input-data directory * Replace sys exit with valueError in build_status_check.py * updates for v16 stability * remove un-used dz_min=6 parameter setting in bmark v16 tests * add psm_bc variable and set to value of 1 (default 0) for v16 tests * set dt_atmos=225 in v16 tests * updates for dated BM_IC directory * add INPUTDATA_ROOT_BMIC to rt.sh * remove BM_IC variable in cpld_bmark_run.IN and use explict path to specify IC sources for ATM,MOM6,CICE5 and WW3 (only for 35d test) * add variables in parm/input.benchmark_v16.nml.IN * set dddmp = 0.2 and FSICL to 0 in v16 bmark tests * modify v16 tests * keep FSICL at default value for now * reduce time for v16 wave test to 6hr * update RTPWD to 20130308; skip-ci * fix cpld_bmarkfrac_wave_v16 test * fix timestamps on files for comparison to baseline after switching to 6hour test length * remove restart file from WW3 comparison. Currently the restart file writes out only at hour 12. This is set in ww3_multi.inp. A change to allow writing a restart at hour 6 would require an update to the ww3 input data directory Co-authored-by: MinsukJi-NOAA Co-authored-by: Brian Curtis Co-authored-by: climbfuji --- .../workflows/{main.yml => build_test.yml} | 27 +- .../{manage.yml => manage_workflows.yml} | 7 +- .github/workflows/start_runners.yml | 33 ++ .github/workflows/stop_runners.yml | 25 + tests/RegressionTests_cheyenne.gnu.log | 126 ++--- tests/RegressionTests_cheyenne.intel.log | 451 ++++++++-------- tests/RegressionTests_gaea.intel.log | 404 +++++++-------- tests/RegressionTests_hera.gnu.log | 126 ++--- tests/RegressionTests_hera.intel.log | 475 +++++++++-------- tests/RegressionTests_jet.intel.log | 272 +++++----- tests/RegressionTests_orion.intel.log | 477 +++++++++-------- tests/RegressionTests_wcoss_cray.log | 286 +++++------ tests/RegressionTests_wcoss_dell_p3.log | 481 +++++++++--------- tests/auto/rt_auto.py | 198 +++---- tests/ci/build_status_check.py | 55 ++ tests/ci/ci.sh | 10 +- tests/ci/ci.test | 2 +- tests/ci/json_helper.py | 1 + tests/default_vars.sh | 7 +- tests/fv3_conf/cpld_bmark_run.IN | 16 +- ...le_benchmark => diag_table_bmark_template} | 0 tests/parm/diag_table_bmark_v16_template | 270 ++++++++++ tests/parm/input.benchmark_v16.nml.IN | 5 +- tests/rt.sh | 7 +- tests/run_test.sh | 8 +- tests/tests/cpld_bmark | 1 + tests/tests/cpld_bmark_35d | 1 + tests/tests/cpld_bmark_wave | 1 + tests/tests/cpld_bmark_wave_35d | 1 + tests/tests/cpld_bmarkfrac | 1 + tests/tests/cpld_bmarkfrac_v16 | 7 +- tests/tests/cpld_bmarkfrac_v16_35d | 96 ++++ tests/tests/cpld_bmarkfrac_wave | 1 + tests/tests/cpld_bmarkfrac_wave_35d | 1 + tests/tests/cpld_bmarkfrac_wave_v16 | 44 +- tests/tests/cpld_bmarkfrac_wave_v16_35d | 7 +- tests/tests/cpld_restart_bmark | 1 + tests/tests/cpld_restart_bmarkfrac | 1 + tests/tests/cpld_restart_bmarkfrac_v16 | 7 +- tests/utest | 48 +- 40 files changed, 2256 insertions(+), 1731 deletions(-) rename .github/workflows/{main.yml => build_test.yml} (80%) rename .github/workflows/{manage.yml => manage_workflows.yml} (94%) create mode 100644 .github/workflows/start_runners.yml create mode 100644 .github/workflows/stop_runners.yml create mode 100755 tests/ci/build_status_check.py rename tests/parm/{diag_table_benchmark => diag_table_bmark_template} (100%) create mode 100644 tests/parm/diag_table_bmark_v16_template create mode 100644 tests/tests/cpld_bmarkfrac_v16_35d diff --git a/.github/workflows/main.yml b/.github/workflows/build_test.yml similarity index 80% rename from .github/workflows/main.yml rename to .github/workflows/build_test.yml index 4afd19b6e6..5130be682a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/build_test.yml @@ -1,17 +1,16 @@ -name: Pull Request Tests +name: Pull request tests on: push: - branches: - - develop - pull_request: - branches: - - develop + branches: ['develop'] + pull_request_review: + types: [submitted] + branches: ['develop'] jobs: setup: name: Set up - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 outputs: tn: ${{ steps.parse.outputs.tn }} @@ -46,7 +45,8 @@ jobs: build: name: Build (${{ matrix.bld_set }}) needs: setup - runs-on: ubuntu-latest + if: github.event_name == 'push' || (github.event.review.state == 'approved' && toJson(github.event.pull_request.requested_reviewers) == '[]') + runs-on: ubuntu-20.04 strategy: fail-fast: false @@ -85,8 +85,7 @@ jobs: utest: name: Unit test (${{ needs.setup.outputs.tn }}, ${{ matrix.test_set }}) needs: [setup,build] - runs-on: ubuntu-latest - #runs-on: self-hosted + runs-on: self-hosted strategy: fail-fast: false @@ -101,7 +100,7 @@ jobs: - name: Prepare artifacts run: | tar xvjf artifact.tar.bz2 && rm -f artifact.tar.bz2 - sudo docker load --input ${{ needs.setup.outputs.img }}.tar.gz && rm -f ${{ needs.setup.outputs.img }}.tar.gz + docker load --input ${{ needs.setup.outputs.img }}.tar.gz && rm -f ${{ needs.setup.outputs.img }}.tar.gz - name: Run utest run: ./ci.sh -n ${{ needs.setup.outputs.tn }} -r ${{ matrix.test_set }} @@ -117,5 +116,7 @@ jobs: if: ${{ always() }} run: | rm -f ci.sh ci.test - sudo docker rm my-container && sudo docker rmi ${{ needs.setup.outputs.img }}:latest - sudo docker volume rm DataVolume + docker stop my-container && docker rm my-container && docker rmi ${{ needs.setup.outputs.img }}:latest + docker volume rm DataVolume + #docker rmi minsukjinoaa/fv3-input-data:input-data-20210115 + rm -f memory_stat diff --git a/.github/workflows/manage.yml b/.github/workflows/manage_workflows.yml similarity index 94% rename from .github/workflows/manage.yml rename to .github/workflows/manage_workflows.yml index c933b36e64..57a1552ddd 100644 --- a/.github/workflows/manage.yml +++ b/.github/workflows/manage_workflows.yml @@ -2,14 +2,14 @@ name: Manage workflows on: workflow_run: - workflows: ["Pull Request Tests"] + workflows: ["Pull request tests"] types: - requested jobs: job1: - name: Job 1 - runs-on: ubuntu-latest + name: Cancel workflows + runs-on: ubuntu-20.04 steps: - name: Checkout codes @@ -17,6 +17,7 @@ jobs: - name: Check if skip-ci is requested run: | + sleep 40 cd ${GITHUB_WORKSPACE}/tests/ci repo="${GITHUB_API_URL}/repos/${GITHUB_REPOSITORY}/actions/runs" tr_id=$(cat ${GITHUB_EVENT_PATH} | ./json_helper.py get_trigger_id) diff --git a/.github/workflows/start_runners.yml b/.github/workflows/start_runners.yml new file mode 100644 index 0000000000..423315de58 --- /dev/null +++ b/.github/workflows/start_runners.yml @@ -0,0 +1,33 @@ +name: Start runners + +on: + workflow_run: + workflows: ["Pull request tests"] + types: + - requested + +jobs: + job1: + name: Start AWS runners + runs-on: ubuntu-20.04 + + steps: + - name: Check out codes + uses: actions/checkout@v2 + + - name: Configure AWS + uses: aws-actions/configure-aws-credentials@v1 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: us-east-1 + + - name: Check the status of build and start self-hosted runners + env: + aws_instance_id: ${{ secrets.AWS_INSTANCE_ID }} + run: | + cd ${GITHUB_WORKSPACE}/tests/ci + conclusion=$(cat ${GITHUB_EVENT_PATH} | ./build_status_check.py) + if [[ $conclusion == "success" ]]; then + aws ec2 start-instances --instance-ids $aws_instance_id + fi diff --git a/.github/workflows/stop_runners.yml b/.github/workflows/stop_runners.yml new file mode 100644 index 0000000000..f3497318c3 --- /dev/null +++ b/.github/workflows/stop_runners.yml @@ -0,0 +1,25 @@ +name: Stop runners + +on: + workflow_run: + workflows: ["Pull request tests"] + types: + - completed + +jobs: + job1: + name: Stop AWS runners + runs-on: ubuntu-20.04 + + steps: + - name: Configure AWS + uses: aws-actions/configure-aws-credentials@v1 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: us-east-1 + + - name: Stop self-hosted runners + env: + aws_instance_id: ${{ secrets.AWS_INSTANCE_ID }} + run: aws ec2 stop-instances --instance-ids $aws_instance_id diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index a06f539dd9..eb26a6f777 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Thu Mar 4 10:01:14 MST 2021 +Mon Mar 8 14:01:04 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/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-20210303/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/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-20210303/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -198,8 +198,8 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -248,8 +248,8 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -316,8 +316,8 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,8 +384,8 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/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-20210303/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -520,8 +520,8 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/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-20210303/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/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-20210303/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/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-20210303/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/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-20210303/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/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-20210303/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/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-20210303/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -964,8 +964,8 @@ Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1026,8 +1026,8 @@ Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1056,8 +1056,8 @@ Checking test 017 fv3_ccpp_control_debug results .... Test 017 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,8 +1124,8 @@ Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1192,8 +1192,8 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1260,8 +1260,8 @@ Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,8 +1328,8 @@ Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,8 +1402,8 @@ Checking test 022 fv3_ccpp_multigases results .... Test 022 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_regional_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_regional_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1413,8 +1413,8 @@ Checking test 023 fv3_ccpp_regional_control_debug results .... Test 023 fv3_ccpp_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,8 +1481,8 @@ Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Test 024 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1549,8 +1549,8 @@ Checking test 025 fv3_ccpp_gsd_debug results .... Test 025 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1617,8 +1617,8 @@ Checking test 026 fv3_ccpp_thompson_debug results .... Test 026 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1685,8 +1685,8 @@ Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Test 027 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1753,8 +1753,8 @@ Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1771,8 +1771,8 @@ Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_27009/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1834,5 +1834,5 @@ Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 4 10:24:02 MST 2021 -Elapsed time: 00h:22m:48s. Have a nice day! +Mon Mar 8 14:18:48 MST 2021 +Elapsed time: 00h:17m:44s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 93f607957f..f0328ef041 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Thu Mar 4 11:01:32 MST 2021 +Mon Mar 8 16:15:11 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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-20210303/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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-20210303/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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-20210303/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210303/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -324,8 +324,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-20210303/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -372,8 +372,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-20210303/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -420,8 +420,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-20210303/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -431,8 +431,8 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc .........OK + Comparing dynf000.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 @@ -468,8 +468,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-20210303/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -516,8 +516,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-20210303/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -564,8 +564,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-20210303/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -612,8 +612,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-20210303/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,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-20210303/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ 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-20210303/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_lndp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lndp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,8 +1228,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -1239,8 +1239,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1335,8 +1335,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1383,8 +1383,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_csawmg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1431,8 +1431,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,8 +1479,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_satmedmfq_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1527,8 +1527,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1575,8 +1575,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_cpt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,8 +1681,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_rap_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rap_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_rap_prod Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 035 fv3_ccpp_rap results .... Test 035 fv3_ccpp_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_hrrr_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_hrrr_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_hrrr_prod Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 036 fv3_ccpp_hrrr results .... Test 036 fv3_ccpp_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 037 fv3_ccpp_thompson results .... Test 037 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -2045,8 +2045,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2113,8 +2113,8 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_prod Checking test 040 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2193,8 +2193,8 @@ Checking test 040 fv3_ccpp_gfs_v16 results .... Test 040 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_restart_prod Checking test 041 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2243,8 +2243,8 @@ Checking test 041 fv3_ccpp_gfs_v16_restart results .... Test 041 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_stochy_prod Checking test 042 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2311,8 +2311,8 @@ Checking test 042 fv3_ccpp_gfs_v16_stochy results .... Test 042 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 043 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2379,8 +2379,8 @@ Checking test 043 fv3_ccpp_gfs_v16_RRTMGP results .... Test 043 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2441,8 +2441,8 @@ Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2509,8 +2509,8 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 045 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gocart_clm_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gocart_clm_prod Checking test 046 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2557,8 +2557,8 @@ Checking test 046 fv3_ccpp_gocart_clm results .... Test 046 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_flake_prod Checking test 047 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2625,8 +2625,8 @@ Checking test 047 fv3_ccpp_gfs_v16_flake results .... Test 047 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2693,8 +2693,8 @@ Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 048 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2711,8 +2711,8 @@ Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2773,8 +2773,8 @@ Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... Test 050 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2835,8 +2835,8 @@ Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -2903,8 +2903,8 @@ Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... Test 052 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_debug_prod Checking test 053 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2971,8 +2971,8 @@ Checking test 053 fv3_ccpp_gfs_v16_debug results .... Test 053 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -3039,8 +3039,8 @@ Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3107,8 +3107,8 @@ Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 055 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_regional_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_regional_control_debug_prod Checking test 056 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3118,8 +3118,8 @@ Checking test 056 fv3_ccpp_regional_control_debug results .... Test 056 fv3_ccpp_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_control_debug_prod Checking test 057 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3148,8 +3148,8 @@ Checking test 057 fv3_ccpp_control_debug results .... Test 057 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_stretched_nest_debug_prod Checking test 058 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3168,8 +3168,8 @@ Checking test 058 fv3_ccpp_stretched_nest_debug results .... Test 058 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -3236,8 +3236,8 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Test 059 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -3304,8 +3304,8 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Test 060 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -3372,8 +3372,8 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Test 061 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -3440,8 +3440,8 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Test 062 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -3508,8 +3508,8 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Test 063 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -3576,8 +3576,8 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -3594,8 +3594,8 @@ Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 066 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3656,8 +3656,8 @@ Checking test 066 fv3_ccpp_gfsv16_ugwpv1_debug results .... Test 066 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_control_prod Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3709,8 +3709,8 @@ Checking test 067 cpld_control results .... Test 067 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restart_prod Checking test 068 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3762,8 +3762,8 @@ Checking test 068 cpld_restart results .... Test 068 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_controlfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_controlfrac_prod Checking test 069 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3815,8 +3815,8 @@ Checking test 069 cpld_controlfrac results .... Test 069 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restartfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restartfrac_prod Checking test 070 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3868,8 +3868,8 @@ Checking test 070 cpld_restartfrac results .... Test 070 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_2threads_prod Checking test 071 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3921,8 +3921,8 @@ Checking test 071 cpld_2threads results .... Test 071 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_decomp_prod Checking test 072 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3974,8 +3974,8 @@ Checking test 072 cpld_decomp results .... Test 072 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_satmedmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_satmedmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_satmedmf_prod Checking test 073 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4027,8 +4027,8 @@ Checking test 073 cpld_satmedmf results .... Test 073 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_ca_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_ca_prod Checking test 074 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4080,8 +4080,8 @@ Checking test 074 cpld_ca results .... Test 074 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_control_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_control_c192_prod Checking test 075 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4133,8 +4133,8 @@ Checking test 075 cpld_control_c192 results .... Test 075 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restart_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restart_c192_prod Checking test 076 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4186,8 +4186,8 @@ Checking test 076 cpld_restart_c192 results .... Test 076 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_controlfrac_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_controlfrac_c192_prod Checking test 077 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4239,8 +4239,8 @@ Checking test 077 cpld_controlfrac_c192 results .... Test 077 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restartfrac_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restartfrac_c192_prod Checking test 078 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4292,8 +4292,8 @@ Checking test 078 cpld_restartfrac_c192 results .... Test 078 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_control_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_control_c384_prod Checking test 079 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4348,8 +4348,8 @@ Checking test 079 cpld_control_c384 results .... Test 079 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restart_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restart_c384_prod Checking test 080 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4404,8 +4404,8 @@ Checking test 080 cpld_restart_c384 results .... Test 080 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_controlfrac_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_controlfrac_c384_prod Checking test 081 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4460,8 +4460,8 @@ Checking test 081 cpld_controlfrac_c384 results .... Test 081 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restartfrac_c384_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restartfrac_c384_prod Checking test 082 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4516,8 +4516,8 @@ Checking test 082 cpld_restartfrac_c384 results .... Test 082 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_bmark_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_bmark_prod Checking test 083 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4572,8 +4572,8 @@ Checking test 083 cpld_bmark results .... Test 083 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restart_bmark_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restart_bmark_prod Checking test 084 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4628,8 +4628,8 @@ Checking test 084 cpld_restart_bmark results .... Test 084 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_bmarkfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_bmarkfrac_prod Checking test 085 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4684,8 +4684,8 @@ Checking test 085 cpld_bmarkfrac results .... Test 085 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restart_bmarkfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restart_bmarkfrac_prod Checking test 086 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4740,8 +4740,8 @@ Checking test 086 cpld_restart_bmarkfrac results .... Test 086 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_bmarkfrac_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_bmarkfrac_v16_prod Checking test 087 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4796,8 +4796,8 @@ Checking test 087 cpld_bmarkfrac_v16 results .... Test 087 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_restart_bmarkfrac_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restart_bmarkfrac_v16_prod Checking test 088 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -4852,8 +4852,8 @@ Checking test 088 cpld_restart_bmarkfrac_v16 results .... Test 088 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_bmark_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_wave_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_bmark_wave_prod Checking test 089 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4911,8 +4911,8 @@ Checking test 089 cpld_bmark_wave results .... Test 089 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_bmarkfrac_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_bmarkfrac_wave_prod Checking test 090 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4970,24 +4970,23 @@ Checking test 090 cpld_bmarkfrac_wave results .... Test 090 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_bmarkfrac_wave_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.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 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........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 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 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5024,13 +5023,13 @@ Checking test 091 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Test 091 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_control_wave_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_wave_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_control_wave_prod Checking test 092 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5085,8 +5084,8 @@ Checking test 092 cpld_control_wave results .... Test 092 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_debug_prod Checking test 093 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5138,8 +5137,8 @@ Checking test 093 cpld_debug results .... Test 093 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/cpld_debugfrac_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_debugfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_debugfrac_prod Checking test 094 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5191,8 +5190,8 @@ Checking test 094 cpld_debugfrac results .... Test 094 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/datm_control_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -5200,8 +5199,8 @@ Checking test 095 datm_control_cfsr results .... Test 095 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/datm_restart_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -5209,8 +5208,8 @@ Checking test 096 datm_restart_cfsr results .... Test 096 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/datm_control_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -5218,8 +5217,8 @@ Checking test 097 datm_control_gefs results .... Test 097 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/datm_bulk_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -5227,8 +5226,8 @@ Checking test 098 datm_bulk_cfsr results .... Test 098 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/datm_bulk_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_bulk_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -5236,8 +5235,8 @@ Checking test 099 datm_bulk_gefs results .... Test 099 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/datm_mx025_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/datm_mx025_cfsr Checking test 100 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5248,8 +5247,8 @@ Checking test 100 datm_mx025_cfsr results .... Test 100 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/datm_mx025_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_mx025_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/datm_mx025_gefs Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5260,8 +5259,8 @@ Checking test 101 datm_mx025_gefs results .... Test 101 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_68807/datm_debug_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_debug_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_35650/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 @@ -5270,5 +5269,5 @@ Test 102 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 4 12:31:19 MST 2021 -Elapsed time: 01h:29m:47s. Have a nice day! +Mon Mar 8 17:36:46 MST 2021 +Elapsed time: 01h:21m:35s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index ef4f0ffc65..6839e2ab1f 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Thu Mar 4 11:40:36 EST 2021 +Mon Mar 8 16:06:02 EST 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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-20210303/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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-20210303/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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-20210303/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210303/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 @@ -324,8 +324,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-20210303/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 @@ -372,8 +372,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-20210303/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 @@ -420,8 +420,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-20210303/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 @@ -468,8 +468,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-20210303/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 @@ -516,8 +516,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-20210303/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 @@ -564,8 +564,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-20210303/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 @@ -612,8 +612,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-20210303/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210303/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_ca_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ca_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_lndp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lndp_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_iau_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_iau_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,19 +1228,19 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 phyf000.nc ............ALT CHECK......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-20210303/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfdlmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1335,8 +1335,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1383,8 +1383,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1431,8 +1431,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,8 +1479,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_satmedmfq_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1527,8 +1527,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1575,8 +1575,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_cpt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,8 +1681,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gsd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_rap_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rap_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_rap_prod Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 035 fv3_ccpp_rap results .... Test 035 fv3_ccpp_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_hrrr_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_hrrr_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_hrrr_prod Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 036 fv3_ccpp_hrrr results .... Test 036 fv3_ccpp_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 037 fv3_ccpp_thompson results .... Test 037 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 @@ -2045,8 +2045,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2113,8 +2113,8 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v15p2_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v15p2_prod Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2181,8 +2181,8 @@ Checking test 040 fv3_ccpp_gfs_v15p2 results .... Test 040 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_prod Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2261,8 +2261,8 @@ Checking test 041 fv3_ccpp_gfs_v16 results .... Test 041 fv3_ccpp_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_restart_prod Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2311,8 +2311,8 @@ Checking test 042 fv3_ccpp_gfs_v16_restart results .... Test 042 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_stochy_prod Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2379,8 +2379,8 @@ Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Test 043 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2447,8 +2447,8 @@ Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2515,8 +2515,8 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2577,8 +2577,8 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2645,8 +2645,8 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 @@ -2693,8 +2693,8 @@ Checking test 048 fv3_ccpp_gfsv16_csawmg results .... Test 048 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 @@ -2741,8 +2741,8 @@ Checking test 049 fv3_ccpp_gfsv16_csawmgt results .... Test 049 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gocart_clm_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 @@ -2789,8 +2789,8 @@ Checking test 050 fv3_ccpp_gocart_clm results .... Test 050 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_flake_prod Checking test 051 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2857,8 +2857,8 @@ Checking test 051 fv3_ccpp_gfs_v16_flake results .... Test 051 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 @@ -2925,8 +2925,8 @@ Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 @@ -2943,8 +2943,8 @@ Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 054 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3005,8 +3005,8 @@ Checking test 054 fv3_ccpp_gfsv16_ugwpv1 results .... Test 054 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3067,8 +3067,8 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 @@ -3135,8 +3135,8 @@ Checking test 056 fv3_ccpp_gfs_v15p2_debug results .... Test 056 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_debug_prod Checking test 057 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3203,8 +3203,8 @@ Checking test 057 fv3_ccpp_gfs_v16_debug results .... Test 057 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/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 @@ -3271,8 +3271,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 059 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3339,8 +3339,8 @@ Checking test 059 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 059 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_regional_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_regional_control_debug_prod Checking test 060 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3350,8 +3350,8 @@ Checking test 060 fv3_ccpp_regional_control_debug results .... Test 060 fv3_ccpp_regional_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_control_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_control_debug_prod Checking test 061 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3380,8 +3380,8 @@ Checking test 061 fv3_ccpp_control_debug results .... Test 061 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_stretched_nest_debug_prod Checking test 062 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3400,8 +3400,8 @@ Checking test 062 fv3_ccpp_stretched_nest_debug results .... Test 062 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gsd_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gsd_debug_prod Checking test 063 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3468,8 +3468,8 @@ Checking test 063 fv3_ccpp_gsd_debug results .... Test 063 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gsd_diag3d_debug_prod Checking test 064 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3536,8 +3536,8 @@ Checking test 064 fv3_ccpp_gsd_diag3d_debug results .... Test 064 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_thompson_debug_prod Checking test 065 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3604,8 +3604,8 @@ Checking test 065 fv3_ccpp_thompson_debug results .... Test 065 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_thompson_no_aero_debug_prod Checking test 066 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3672,8 +3672,8 @@ Checking test 066 fv3_ccpp_thompson_no_aero_debug results .... Test 066 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 067 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3740,8 +3740,8 @@ Checking test 067 fv3_ccpp_rrfs_v1beta_debug results .... Test 067 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3808,8 +3808,8 @@ Checking test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3826,8 +3826,8 @@ Checking test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 070 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3888,8 +3888,8 @@ Checking test 070 fv3_ccpp_gfsv16_ugwpv1_debug results .... Test 070 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_control_prod Checking test 071 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3941,8 +3941,8 @@ Checking test 071 cpld_control results .... Test 071 cpld_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_restart_prod Checking test 072 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3994,8 +3994,8 @@ Checking test 072 cpld_restart results .... Test 072 cpld_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_controlfrac_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_controlfrac_prod Checking test 073 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4047,8 +4047,8 @@ Checking test 073 cpld_controlfrac results .... Test 073 cpld_controlfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_restartfrac_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_restartfrac_prod Checking test 074 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4100,8 +4100,8 @@ Checking test 074 cpld_restartfrac results .... Test 074 cpld_restartfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_2threads_prod Checking test 075 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4153,8 +4153,8 @@ Checking test 075 cpld_2threads results .... Test 075 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_decomp_prod Checking test 076 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4206,8 +4206,8 @@ Checking test 076 cpld_decomp results .... Test 076 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_satmedmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_satmedmf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_satmedmf_prod Checking test 077 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4259,8 +4259,8 @@ Checking test 077 cpld_satmedmf results .... Test 077 cpld_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_ca_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_ca_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_ca_prod Checking test 078 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4312,8 +4312,8 @@ Checking test 078 cpld_ca results .... Test 078 cpld_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_control_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_control_c192_prod Checking test 079 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4365,8 +4365,8 @@ Checking test 079 cpld_control_c192 results .... Test 079 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_restart_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_restart_c192_prod Checking test 080 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4418,8 +4418,8 @@ Checking test 080 cpld_restart_c192 results .... Test 080 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_controlfrac_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_controlfrac_c192_prod Checking test 081 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4471,8 +4471,8 @@ Checking test 081 cpld_controlfrac_c192 results .... Test 081 cpld_controlfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_restartfrac_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_restartfrac_c192_prod Checking test 082 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4524,8 +4524,8 @@ Checking test 082 cpld_restartfrac_c192 results .... Test 082 cpld_restartfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_control_c384_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_control_c384_prod Checking test 083 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4580,8 +4580,8 @@ Checking test 083 cpld_control_c384 results .... Test 083 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_restart_c384_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_restart_c384_prod Checking test 084 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4636,8 +4636,8 @@ Checking test 084 cpld_restart_c384 results .... Test 084 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_controlfrac_c384_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_controlfrac_c384_prod Checking test 085 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4692,8 +4692,8 @@ Checking test 085 cpld_controlfrac_c384 results .... Test 085 cpld_controlfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_restartfrac_c384_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_restartfrac_c384_prod Checking test 086 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4748,8 +4748,8 @@ Checking test 086 cpld_restartfrac_c384 results .... Test 086 cpld_restartfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_bmark_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_bmark_prod Checking test 087 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4804,8 +4804,8 @@ Checking test 087 cpld_bmark results .... Test 087 cpld_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_restart_bmark_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_restart_bmark_prod Checking test 088 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4860,8 +4860,8 @@ Checking test 088 cpld_restart_bmark results .... Test 088 cpld_restart_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_bmarkfrac_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_bmarkfrac_prod Checking test 089 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4916,8 +4916,8 @@ Checking test 089 cpld_bmarkfrac results .... Test 089 cpld_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_restart_bmarkfrac_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_restart_bmarkfrac_prod Checking test 090 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4972,8 +4972,8 @@ Checking test 090 cpld_restart_bmarkfrac results .... Test 090 cpld_restart_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_debug_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_debug_prod Checking test 091 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5025,8 +5025,8 @@ Checking test 091 cpld_debug results .... Test 091 cpld_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_debugfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/cpld_debugfrac_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_debugfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_debugfrac_prod Checking test 092 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5078,8 +5078,8 @@ Checking test 092 cpld_debugfrac results .... Test 092 cpld_debugfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/datm_control_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/datm_control_cfsr Checking test 093 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5087,8 +5087,8 @@ Checking test 093 datm_control_cfsr results .... Test 093 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/datm_restart_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/datm_restart_cfsr Checking test 094 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5096,8 +5096,8 @@ Checking test 094 datm_restart_cfsr results .... Test 094 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/datm_control_gefs +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/datm_control_gefs Checking test 095 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5105,8 +5105,8 @@ Checking test 095 datm_control_gefs results .... Test 095 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/datm_bulk_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/datm_bulk_cfsr Checking test 096 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5114,8 +5114,8 @@ Checking test 096 datm_bulk_cfsr results .... Test 096 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/datm_bulk_gefs +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/datm_bulk_gefs Checking test 097 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5123,8 +5123,8 @@ Checking test 097 datm_bulk_gefs results .... Test 097 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/datm_mx025_gefs +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/datm_mx025_gefs Checking test 098 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5135,8 +5135,8 @@ Checking test 098 datm_mx025_gefs results .... Test 098 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_14125/datm_debug_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/datm_debug_cfsr Checking test 099 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5145,5 +5145,5 @@ Test 099 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 4 13:05:49 EST 2021 -Elapsed time: 01h:25m:14s. Have a nice day! +Mon Mar 8 17:33:59 EST 2021 +Elapsed time: 01h:27m:58s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 443d382487..ea267abfb0 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Thu Mar 4 15:31:33 UTC 2021 +Tue Mar 9 02:24:31 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/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-20210303/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/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-20210303/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -198,8 +198,8 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -248,8 +248,8 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -316,8 +316,8 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,8 +384,8 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/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-20210303/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -520,8 +520,8 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/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-20210303/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/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-20210303/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/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-20210303/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/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-20210303/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/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-20210303/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/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-20210303/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -964,8 +964,8 @@ Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1026,8 +1026,8 @@ Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1056,8 +1056,8 @@ Checking test 017 fv3_ccpp_control_debug results .... Test 017 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,8 +1124,8 @@ Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1192,8 +1192,8 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1260,8 +1260,8 @@ Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,8 +1328,8 @@ Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,8 +1402,8 @@ Checking test 022 fv3_ccpp_multigases results .... Test 022 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_regional_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_regional_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1413,8 +1413,8 @@ Checking test 023 fv3_ccpp_regional_control_debug results .... Test 023 fv3_ccpp_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,8 +1481,8 @@ Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Test 024 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1549,8 +1549,8 @@ Checking test 025 fv3_ccpp_gsd_debug results .... Test 025 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1617,8 +1617,8 @@ Checking test 026 fv3_ccpp_thompson_debug results .... Test 026 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1685,8 +1685,8 @@ Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Test 027 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1753,8 +1753,8 @@ Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1771,8 +1771,8 @@ Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_115400/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1834,5 +1834,5 @@ Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 4 15:56:48 UTC 2021 -Elapsed time: 00h:25m:15s. Have a nice day! +Tue Mar 9 02:51:47 UTC 2021 +Elapsed time: 00h:27m:16s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index ef7ace4d61..bb3973682d 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Thu Mar 4 19:01:24 UTC 2021 +Tue Mar 9 11:36:16 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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-20210303/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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-20210303/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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-20210303/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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 @@ -324,8 +324,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-20210303/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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 @@ -372,8 +372,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-20210303/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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 @@ -420,8 +420,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-20210303/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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 @@ -468,8 +468,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-20210303/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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 @@ -516,8 +516,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-20210303/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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 @@ -564,8 +564,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-20210303/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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 @@ -612,8 +612,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-20210303/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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 @@ -1030,8 +1030,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-20210303/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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 @@ -1079,8 +1079,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-20210303/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1153,8 +1153,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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 @@ -1221,8 +1221,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-20210303/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1277,8 +1277,8 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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 @@ -1344,8 +1344,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-20210303/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1355,8 +1355,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-20210303/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1364,8 +1364,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-20210303/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1375,8 +1375,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-20210303/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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 @@ -1386,8 +1386,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-20210303/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1434,8 +1434,8 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,8 +1482,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,8 +1530,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,8 +1578,8 @@ Checking test 031 fv3_ccpp_csawmg results .... Test 031 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1626,8 +1626,8 @@ Checking test 032 fv3_ccpp_satmedmf results .... Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_satmedmfq_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1674,8 +1674,8 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,8 +1722,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,8 +1774,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_cpt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1828,8 +1828,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1920,8 +1920,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_rap_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_rap_prod Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1988,8 +1988,8 @@ Checking test 038 fv3_ccpp_rap results .... Test 038 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_hrrr_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_hrrr_prod Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2056,8 +2056,8 @@ Checking test 039 fv3_ccpp_hrrr results .... Test 039 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_thompson_prod Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2124,8 +2124,8 @@ Checking test 040 fv3_ccpp_thompson results .... Test 040 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_thompson_no_aero_prod Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2192,8 +2192,8 @@ Checking test 041 fv3_ccpp_thompson_no_aero results .... Test 041 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_rrfs_v1beta_prod Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2260,8 +2260,8 @@ Checking test 042 fv3_ccpp_rrfs_v1beta results .... Test 042 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v15p2_prod Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2328,8 +2328,8 @@ Checking test 043 fv3_ccpp_gfs_v15p2 results .... Test 043 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_prod Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2408,8 +2408,8 @@ Checking test 044 fv3_ccpp_gfs_v16 results .... Test 044 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_restart_prod Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2458,8 +2458,8 @@ Checking test 045 fv3_ccpp_gfs_v16_restart results .... Test 045 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_stochy_prod Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2526,8 +2526,8 @@ Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Test 046 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2594,8 +2594,8 @@ Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2662,8 +2662,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2724,8 +2724,8 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2792,8 +2792,8 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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 @@ -2840,8 +2840,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-20210303/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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 @@ -2888,8 +2888,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-20210303/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gocart_clm_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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 @@ -2936,8 +2936,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-20210303/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_flake_prod Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3004,8 +3004,8 @@ Checking test 054 fv3_ccpp_gfs_v16_flake results .... Test 054 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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 @@ -3072,8 +3072,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-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/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 @@ -3090,8 +3090,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-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3152,8 +3152,8 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Test 057 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3214,8 +3214,8 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v15p2_debug_prod Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3282,8 +3282,8 @@ Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Test 059 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_debug_prod Checking test 060 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3350,8 +3350,8 @@ Checking test 060 fv3_ccpp_gfs_v16_debug results .... Test 060 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3418,8 +3418,8 @@ Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3486,8 +3486,8 @@ Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_regional_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_regional_control_debug_prod Checking test 063 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3497,8 +3497,8 @@ Checking test 063 fv3_ccpp_regional_control_debug results .... Test 063 fv3_ccpp_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_control_debug_prod Checking test 064 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3527,8 +3527,8 @@ Checking test 064 fv3_ccpp_control_debug results .... Test 064 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_stretched_nest_debug_prod Checking test 065 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3547,8 +3547,8 @@ Checking test 065 fv3_ccpp_stretched_nest_debug results .... Test 065 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gsd_debug_prod Checking test 066 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3615,8 +3615,8 @@ Checking test 066 fv3_ccpp_gsd_debug results .... Test 066 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gsd_diag3d_debug_prod Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3683,8 +3683,8 @@ Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Test 067 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_thompson_debug_prod Checking test 068 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3751,8 +3751,8 @@ Checking test 068 fv3_ccpp_thompson_debug results .... Test 068 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_thompson_no_aero_debug_prod Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3819,8 +3819,8 @@ Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Test 069 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3887,8 +3887,8 @@ Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Test 070 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3955,8 +3955,8 @@ Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3973,8 +3973,8 @@ Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4035,8 +4035,8 @@ Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Test 073 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_control_prod Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4088,8 +4088,8 @@ Checking test 074 cpld_control results .... Test 074 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restart_prod Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4141,8 +4141,8 @@ Checking test 075 cpld_restart results .... Test 075 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_controlfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_controlfrac_prod Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4194,8 +4194,8 @@ Checking test 076 cpld_controlfrac results .... Test 076 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restartfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restartfrac_prod Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4247,8 +4247,8 @@ Checking test 077 cpld_restartfrac results .... Test 077 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_2threads_prod Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4300,8 +4300,8 @@ Checking test 078 cpld_2threads results .... Test 078 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_decomp_prod Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4353,8 +4353,8 @@ Checking test 079 cpld_decomp results .... Test 079 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_satmedmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_satmedmf_prod Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4406,8 +4406,8 @@ Checking test 080 cpld_satmedmf results .... Test 080 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_ca_prod Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4459,8 +4459,8 @@ Checking test 081 cpld_ca results .... Test 081 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_control_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_control_c192_prod Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4512,8 +4512,8 @@ Checking test 082 cpld_control_c192 results .... Test 082 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restart_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restart_c192_prod Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4565,8 +4565,8 @@ Checking test 083 cpld_restart_c192 results .... Test 083 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_controlfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_controlfrac_c192_prod Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4618,8 +4618,8 @@ Checking test 084 cpld_controlfrac_c192 results .... Test 084 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restartfrac_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restartfrac_c192_prod Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4671,8 +4671,8 @@ Checking test 085 cpld_restartfrac_c192 results .... Test 085 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_control_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_control_c384_prod Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4727,8 +4727,8 @@ Checking test 086 cpld_control_c384 results .... Test 086 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restart_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restart_c384_prod Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4783,8 +4783,8 @@ Checking test 087 cpld_restart_c384 results .... Test 087 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_controlfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_controlfrac_c384_prod Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4839,8 +4839,8 @@ Checking test 088 cpld_controlfrac_c384 results .... Test 088 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restartfrac_c384_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restartfrac_c384_prod Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4895,8 +4895,8 @@ Checking test 089 cpld_restartfrac_c384 results .... Test 089 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_bmark_prod Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4951,8 +4951,8 @@ Checking test 090 cpld_bmark results .... Test 090 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restart_bmark_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restart_bmark_prod Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5007,8 +5007,8 @@ Checking test 091 cpld_restart_bmark results .... Test 091 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_bmarkfrac_prod Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5063,8 +5063,8 @@ Checking test 092 cpld_bmarkfrac results .... Test 092 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restart_bmarkfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restart_bmarkfrac_prod Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5119,8 +5119,8 @@ Checking test 093 cpld_restart_bmarkfrac results .... Test 093 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_bmarkfrac_v16_prod Checking test 094 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5175,8 +5175,8 @@ Checking test 094 cpld_bmarkfrac_v16 results .... Test 094 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_restart_bmarkfrac_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restart_bmarkfrac_v16_prod Checking test 095 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5231,8 +5231,8 @@ Checking test 095 cpld_restart_bmarkfrac_v16 results .... Test 095 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_bmark_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_bmark_wave_prod Checking test 096 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5290,8 +5290,8 @@ Checking test 096 cpld_bmark_wave results .... Test 096 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_bmarkfrac_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_bmarkfrac_wave_prod Checking test 097 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5349,24 +5349,23 @@ Checking test 097 cpld_bmarkfrac_wave results .... Test 097 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_bmarkfrac_wave_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_bmarkfrac_wave_v16_prod Checking test 098 cpld_bmarkfrac_wave_v16 results .... - 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 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 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........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 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 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5403,13 +5402,13 @@ Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Test 098 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_control_wave_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_control_wave_prod Checking test 099 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5464,8 +5463,8 @@ Checking test 099 cpld_control_wave results .... Test 099 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_debug_prod Checking test 100 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5517,8 +5516,8 @@ Checking test 100 cpld_debug results .... Test 100 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/cpld_debugfrac_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_debugfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_debugfrac_prod Checking test 101 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5570,8 +5569,8 @@ Checking test 101 cpld_debugfrac results .... Test 101 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/datm_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/datm_control_cfsr Checking test 102 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5579,8 +5578,8 @@ Checking test 102 datm_control_cfsr results .... Test 102 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/datm_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/datm_restart_cfsr Checking test 103 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5588,8 +5587,8 @@ Checking test 103 datm_restart_cfsr results .... Test 103 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/datm_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/datm_control_gefs Checking test 104 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5597,8 +5596,8 @@ Checking test 104 datm_control_gefs results .... Test 104 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/datm_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/datm_bulk_cfsr Checking test 105 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5606,8 +5605,8 @@ Checking test 105 datm_bulk_cfsr results .... Test 105 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/datm_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/datm_bulk_gefs Checking test 106 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5615,8 +5614,8 @@ Checking test 106 datm_bulk_gefs results .... Test 106 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/datm_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/datm_mx025_cfsr Checking test 107 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5627,8 +5626,8 @@ Checking test 107 datm_mx025_cfsr results .... Test 107 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/datm_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/datm_mx025_gefs Checking test 108 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5639,8 +5638,8 @@ Checking test 108 datm_mx025_gefs results .... Test 108 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_104712/datm_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/datm_debug_cfsr Checking test 109 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5649,5 +5648,5 @@ Test 109 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 4 21:17:58 UTC 2021 -Elapsed time: 02h:16m:34s. Have a nice day! +Tue Mar 9 12:50:18 UTC 2021 +Elapsed time: 01h:14m:02s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index becc1aa726..6bfda87c1b 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Thu Mar 4 15:31:24 GMT 2021 +Mon Mar 8 20:07:53 GMT 2021 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/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 = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_2threads_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_2threads_prod Checking test 002 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -138,8 +138,8 @@ Checking test 002 fv3_ccpp_2threads results .... Test 002 fv3_ccpp_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_restart_prod Checking test 003 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -188,8 +188,8 @@ Checking test 003 fv3_ccpp_restart results .... Test 003 fv3_ccpp_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_read_inc_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_read_inc_prod Checking test 004 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -256,8 +256,8 @@ Checking test 004 fv3_ccpp_read_inc results .... Test 004 fv3_ccpp_read_inc PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -304,8 +304,8 @@ Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Test 005 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_wrtGauss_netcdf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -352,8 +352,8 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Test 006 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -362,7 +362,7 @@ Checking test 007 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 @@ -400,8 +400,8 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Test 007 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -448,8 +448,8 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -496,8 +496,8 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -544,8 +544,8 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_stochy_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -612,8 +612,8 @@ Checking test 011 fv3_ccpp_stochy results .... Test 011 fv3_ccpp_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_ca_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ca_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_ca_prod Checking test 012 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 012 fv3_ccpp_ca results .... Test 012 fv3_ccpp_ca PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_lndp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lndp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_lndp_prod Checking test 013 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_lndp results .... Test 013 fv3_ccpp_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_iau_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_iau_prod Checking test 014 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_iau results .... Test 014 fv3_ccpp_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_lheatstrg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -864,8 +864,8 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_multigases_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,8 +938,8 @@ Checking test 016 fv3_ccpp_multigases results .... Test 016 fv3_ccpp_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_control_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_control_32bit results .... Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_stretched_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1062,8 +1062,8 @@ Checking test 018 fv3_ccpp_stretched results .... Test 018 fv3_ccpp_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_stretched_nest_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1129,8 +1129,8 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_regional_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1140,8 +1140,8 @@ Checking test 020 fv3_ccpp_regional_control results .... Test 020 fv3_ccpp_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_regional_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1149,8 +1149,8 @@ Checking test 021 fv3_ccpp_regional_restart results .... Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_regional_quilt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1160,8 +1160,8 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1171,8 +1171,8 @@ Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfdlmp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfdlmp_prod Checking test 024 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,8 +1219,8 @@ Checking test 024 fv3_ccpp_gfdlmp results .... Test 024 fv3_ccpp_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfdlmprad_gwd_prod Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,8 +1267,8 @@ Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Test 025 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Test 026 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_csawmg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,8 +1363,8 @@ Checking test 027 fv3_ccpp_csawmg results .... Test 027 fv3_ccpp_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_satmedmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,8 +1411,8 @@ Checking test 028 fv3_ccpp_satmedmf results .... Test 028 fv3_ccpp_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_satmedmfq_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,8 +1459,8 @@ Checking test 029 fv3_ccpp_satmedmfq results .... Test 029 fv3_ccpp_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,8 +1507,8 @@ Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Test 030 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,8 +1559,8 @@ Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_cpt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,8 +1613,8 @@ Checking test 032 fv3_ccpp_cpt results .... Test 032 fv3_ccpp_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gsd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,8 +1705,8 @@ Checking test 033 fv3_ccpp_gsd results .... Test 033 fv3_ccpp_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 034 fv3_ccpp_thompson results .... Test 034 fv3_ccpp_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_thompson_no_aero_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Test 035 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v15p2_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v15p2_prod Checking test 036 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 036 fv3_ccpp_gfs_v15p2 results .... Test 036 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_prod Checking test 037 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1989,8 +1989,8 @@ Checking test 037 fv3_ccpp_gfs_v16 results .... Test 037 fv3_ccpp_gfs_v16 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_restart_prod Checking test 038 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2039,8 +2039,8 @@ Checking test 038 fv3_ccpp_gfs_v16_restart results .... Test 038 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_stochy_prod Checking test 039 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2107,8 +2107,8 @@ Checking test 039 fv3_ccpp_gfs_v16_stochy results .... Test 039 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 040 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2175,8 +2175,8 @@ Checking test 040 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 040 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,8 +2243,8 @@ Checking test 041 fv3_ccpp_gfs_v16_RRTMGP results .... Test 041 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2305,8 +2305,8 @@ Checking test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 043 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2373,8 +2373,8 @@ Checking test 043 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 043 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/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 @@ -2421,8 +2421,8 @@ Checking test 044 fv3_ccpp_gfsv16_csawmg results .... Test 044 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfsv16_csawmgt_prod Checking test 045 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2469,8 +2469,8 @@ Checking test 045 fv3_ccpp_gfsv16_csawmgt results .... Test 045 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gocart_clm_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gocart_clm_prod Checking test 046 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2517,8 +2517,8 @@ Checking test 046 fv3_ccpp_gocart_clm results .... Test 046 fv3_ccpp_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_flake_prod Checking test 047 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2585,8 +2585,8 @@ Checking test 047 fv3_ccpp_gfs_v16_flake results .... Test 047 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2653,8 +2653,8 @@ Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 048 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2671,8 +2671,8 @@ Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2733,8 +2733,8 @@ Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... Test 050 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2795,8 +2795,8 @@ Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/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 @@ -2863,8 +2863,8 @@ Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... Test 052 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_debug_prod Checking test 053 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2931,8 +2931,8 @@ Checking test 053 fv3_ccpp_gfs_v16_debug results .... Test 053 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/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 @@ -2999,8 +2999,8 @@ Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3067,8 +3067,8 @@ Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 055 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_regional_control_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_regional_control_debug_prod Checking test 056 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3078,8 +3078,8 @@ Checking test 056 fv3_ccpp_regional_control_debug results .... Test 056 fv3_ccpp_regional_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_control_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_control_debug_prod Checking test 057 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3108,8 +3108,8 @@ Checking test 057 fv3_ccpp_control_debug results .... Test 057 fv3_ccpp_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_stretched_nest_debug_prod Checking test 058 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3128,8 +3128,8 @@ Checking test 058 fv3_ccpp_stretched_nest_debug results .... Test 058 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gsd_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/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 @@ -3196,8 +3196,8 @@ Checking test 059 fv3_ccpp_gsd_debug results .... Test 059 fv3_ccpp_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/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 @@ -3264,8 +3264,8 @@ Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... Test 060 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/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 @@ -3332,8 +3332,8 @@ Checking test 061 fv3_ccpp_thompson_debug results .... Test 061 fv3_ccpp_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/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 @@ -3400,8 +3400,8 @@ Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... Test 062 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/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 @@ -3468,8 +3468,8 @@ Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... Test 063 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/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 @@ -3536,8 +3536,8 @@ Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/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 @@ -3554,8 +3554,8 @@ Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Brian.Curtis/RT_RUNDIRS/Brian.Curtis/FV3_RT/rt_248561/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 066 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3617,5 +3617,5 @@ Test 066 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 4 17:49:35 GMT 2021 -Elapsed time: 02h:18m:12s. Have a nice day! +Mon Mar 8 22:15:05 GMT 2021 +Elapsed time: 02h:07m:12s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 5536e33263..022e285878 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Mar 4 14:46:13 CST 2021 +Mon Mar 8 21:01:16 CST 2021 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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-20210303/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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-20210303/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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-20210303/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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 @@ -324,8 +324,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-20210303/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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 @@ -372,8 +372,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-20210303/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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 @@ -420,8 +420,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-20210303/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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 @@ -430,7 +430,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 .........OK + Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK @@ -468,8 +468,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-20210303/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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 @@ -516,8 +516,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-20210303/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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 @@ -564,8 +564,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-20210303/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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 @@ -612,8 +612,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-20210303/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_lndp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_lheatstrg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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 @@ -1030,8 +1030,8 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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 @@ -1079,8 +1079,8 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1153,8 +1153,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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 @@ -1221,8 +1221,8 @@ Checking test 021 fv3_ccpp_control_32bit results .... Test 021 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1277,8 +1277,8 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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 @@ -1344,8 +1344,8 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Test 023 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1355,8 +1355,8 @@ Checking test 024 fv3_ccpp_regional_control results .... Test 024 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1364,8 +1364,8 @@ Checking test 025 fv3_ccpp_regional_restart results .... Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1375,8 +1375,8 @@ Checking test 026 fv3_ccpp_regional_quilt results .... Test 026 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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 @@ -1386,8 +1386,8 @@ Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfdlmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1434,8 +1434,8 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,8 +1482,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,8 +1530,8 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,8 +1578,8 @@ Checking test 031 fv3_ccpp_csawmg results .... Test 031 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1626,8 +1626,8 @@ Checking test 032 fv3_ccpp_satmedmf results .... Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_satmedmfq_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1674,8 +1674,8 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,8 +1722,8 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1774,8 +1774,8 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_cpt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1828,8 +1828,8 @@ Checking test 036 fv3_ccpp_cpt results .... Test 036 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gsd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1920,8 +1920,8 @@ Checking test 037 fv3_ccpp_gsd results .... Test 037 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_rap_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_rap_prod Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1988,8 +1988,8 @@ Checking test 038 fv3_ccpp_rap results .... Test 038 fv3_ccpp_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_hrrr_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_hrrr_prod Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2056,8 +2056,8 @@ Checking test 039 fv3_ccpp_hrrr results .... Test 039 fv3_ccpp_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_thompson_prod Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2124,8 +2124,8 @@ Checking test 040 fv3_ccpp_thompson results .... Test 040 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_thompson_no_aero_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_thompson_no_aero_prod Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2192,8 +2192,8 @@ Checking test 041 fv3_ccpp_thompson_no_aero results .... Test 041 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_rrfs_v1beta_prod Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2260,8 +2260,8 @@ Checking test 042 fv3_ccpp_rrfs_v1beta results .... Test 042 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v15p2_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v15p2_prod Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2328,8 +2328,8 @@ Checking test 043 fv3_ccpp_gfs_v15p2 results .... Test 043 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_prod Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2408,8 +2408,8 @@ Checking test 044 fv3_ccpp_gfs_v16 results .... Test 044 fv3_ccpp_gfs_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_restart_prod Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2458,8 +2458,8 @@ Checking test 045 fv3_ccpp_gfs_v16_restart results .... Test 045 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_stochy_prod Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2526,8 +2526,8 @@ Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Test 046 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2594,8 +2594,8 @@ Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2662,8 +2662,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2724,8 +2724,8 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2792,8 +2792,8 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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 @@ -2840,8 +2840,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Test 051 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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 @@ -2888,8 +2888,8 @@ Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Test 052 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gocart_clm_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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 @@ -2936,8 +2936,8 @@ Checking test 053 fv3_ccpp_gocart_clm results .... Test 053 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_flake_prod Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3004,8 +3004,8 @@ Checking test 054 fv3_ccpp_gfs_v16_flake results .... Test 054 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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 @@ -3072,8 +3072,8 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/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 @@ -3090,8 +3090,8 @@ Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3152,8 +3152,8 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Test 057 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3214,8 +3214,8 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v15p2_debug_prod Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3282,8 +3282,8 @@ Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Test 059 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_debug_prod Checking test 060 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3350,8 +3350,8 @@ Checking test 060 fv3_ccpp_gfs_v16_debug results .... Test 060 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3418,8 +3418,8 @@ Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3486,8 +3486,8 @@ Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_regional_control_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_regional_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_regional_control_debug_prod Checking test 063 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3497,8 +3497,8 @@ Checking test 063 fv3_ccpp_regional_control_debug results .... Test 063 fv3_ccpp_regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_control_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_control_debug_prod Checking test 064 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3527,8 +3527,8 @@ Checking test 064 fv3_ccpp_control_debug results .... Test 064 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_stretched_nest_debug_prod Checking test 065 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3547,8 +3547,8 @@ Checking test 065 fv3_ccpp_stretched_nest_debug results .... Test 065 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gsd_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gsd_debug_prod Checking test 066 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3615,8 +3615,8 @@ Checking test 066 fv3_ccpp_gsd_debug results .... Test 066 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gsd_diag3d_debug_prod Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3683,8 +3683,8 @@ Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Test 067 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_thompson_debug_prod Checking test 068 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3751,8 +3751,8 @@ Checking test 068 fv3_ccpp_thompson_debug results .... Test 068 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_thompson_no_aero_debug_prod Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3819,8 +3819,8 @@ Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Test 069 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3887,8 +3887,8 @@ Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Test 070 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3955,8 +3955,8 @@ Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3973,8 +3973,8 @@ Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4035,8 +4035,8 @@ Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Test 073 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_control_prod Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4088,8 +4088,8 @@ Checking test 074 cpld_control results .... Test 074 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restart_prod Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4141,8 +4141,8 @@ Checking test 075 cpld_restart results .... Test 075 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_controlfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_controlfrac_prod Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4194,8 +4194,8 @@ Checking test 076 cpld_controlfrac results .... Test 076 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restartfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restartfrac_prod Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4247,8 +4247,8 @@ Checking test 077 cpld_restartfrac results .... Test 077 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_2threads_prod Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4300,8 +4300,8 @@ Checking test 078 cpld_2threads results .... Test 078 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_decomp_prod Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4353,8 +4353,8 @@ Checking test 079 cpld_decomp results .... Test 079 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_satmedmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_satmedmf_prod Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4406,8 +4406,8 @@ Checking test 080 cpld_satmedmf results .... Test 080 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_ca_prod Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4459,8 +4459,8 @@ Checking test 081 cpld_ca results .... Test 081 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_control_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_control_c192_prod Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4512,8 +4512,8 @@ Checking test 082 cpld_control_c192 results .... Test 082 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restart_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restart_c192_prod Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4565,8 +4565,8 @@ Checking test 083 cpld_restart_c192 results .... Test 083 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_controlfrac_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_controlfrac_c192_prod Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4618,8 +4618,8 @@ Checking test 084 cpld_controlfrac_c192 results .... Test 084 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restartfrac_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restartfrac_c192_prod Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4671,8 +4671,8 @@ Checking test 085 cpld_restartfrac_c192 results .... Test 085 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_control_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_control_c384_prod Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4727,8 +4727,8 @@ Checking test 086 cpld_control_c384 results .... Test 086 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restart_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restart_c384_prod Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4783,8 +4783,8 @@ Checking test 087 cpld_restart_c384 results .... Test 087 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_controlfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_controlfrac_c384_prod Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4839,8 +4839,8 @@ Checking test 088 cpld_controlfrac_c384 results .... Test 088 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restartfrac_c384_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restartfrac_c384_prod Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4895,8 +4895,8 @@ Checking test 089 cpld_restartfrac_c384 results .... Test 089 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_bmark_prod Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4951,8 +4951,8 @@ Checking test 090 cpld_bmark results .... Test 090 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restart_bmark_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restart_bmark_prod Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5007,8 +5007,8 @@ Checking test 091 cpld_restart_bmark results .... Test 091 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_bmarkfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_bmarkfrac_prod Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5063,8 +5063,8 @@ Checking test 092 cpld_bmarkfrac results .... Test 092 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restart_bmarkfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restart_bmarkfrac_prod Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5119,8 +5119,8 @@ Checking test 093 cpld_restart_bmarkfrac results .... Test 093 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_bmarkfrac_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_bmarkfrac_v16_prod Checking test 094 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5175,8 +5175,8 @@ Checking test 094 cpld_bmarkfrac_v16 results .... Test 094 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_restart_bmarkfrac_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restart_bmarkfrac_v16_prod Checking test 095 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5231,8 +5231,8 @@ Checking test 095 cpld_restart_bmarkfrac_v16 results .... Test 095 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_bmark_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_bmark_wave_prod Checking test 096 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5290,8 +5290,8 @@ Checking test 096 cpld_bmark_wave results .... Test 096 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_bmarkfrac_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_bmarkfrac_wave_prod Checking test 097 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5349,24 +5349,23 @@ Checking test 097 cpld_bmarkfrac_wave results .... Test 097 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_bmarkfrac_wave_v16_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_bmarkfrac_wave_v16_prod Checking test 098 cpld_bmarkfrac_wave_v16 results .... - 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 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 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........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 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 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5403,13 +5402,13 @@ Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Test 098 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_control_wave_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_wave_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_control_wave_prod Checking test 099 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5464,8 +5463,8 @@ Checking test 099 cpld_control_wave results .... Test 099 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_debug_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_debug_prod Checking test 100 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5517,8 +5516,8 @@ Checking test 100 cpld_debug results .... Test 100 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/cpld_debugfrac_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_debugfrac_prod Checking test 101 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5570,8 +5569,8 @@ Checking test 101 cpld_debugfrac results .... Test 101 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/datm_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/datm_control_cfsr Checking test 102 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5579,8 +5578,8 @@ Checking test 102 datm_control_cfsr results .... Test 102 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/datm_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/datm_restart_cfsr Checking test 103 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5588,8 +5587,8 @@ Checking test 103 datm_restart_cfsr results .... Test 103 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/datm_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/datm_control_gefs Checking test 104 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5597,8 +5596,8 @@ Checking test 104 datm_control_gefs results .... Test 104 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/datm_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/datm_bulk_cfsr Checking test 105 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5606,8 +5605,8 @@ Checking test 105 datm_bulk_cfsr results .... Test 105 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/datm_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/datm_bulk_gefs Checking test 106 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5615,8 +5614,8 @@ Checking test 106 datm_bulk_gefs results .... Test 106 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/datm_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/datm_mx025_cfsr Checking test 107 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5627,8 +5626,8 @@ Checking test 107 datm_mx025_cfsr results .... Test 107 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/datm_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/datm_mx025_gefs Checking test 108 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5639,8 +5638,8 @@ Checking test 108 datm_mx025_gefs results .... Test 108 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/jiwang/stmp/jiwang/FV3_RT/rt_152616/datm_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/datm_debug_cfsr Checking test 109 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5649,5 +5648,5 @@ Test 109 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 4 16:27:02 CST 2021 -Elapsed time: 01h:40m:50s. Have a nice day! +Tue Mar 9 01:13:25 CST 2021 +Elapsed time: 04h:12m:10s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 763ff1dfe3..f38d1e5f14 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Thu Mar 4 15:13:52 UTC 2021 +Mon Mar 8 19:05:51 UTC 2021 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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-20210303/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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-20210303/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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-20210303/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210303/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -324,8 +324,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-20210303/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -372,8 +372,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-20210303/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -420,8 +420,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-20210303/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -468,8 +468,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-20210303/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -516,8 +516,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-20210303/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -564,8 +564,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-20210303/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -612,8 +612,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-20210303/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210303/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_ca_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_ca_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_lndp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_lndp_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,8 +1006,8 @@ Checking test 017 fv3_ccpp_multigases results .... Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -1074,8 +1074,8 @@ Checking test 018 fv3_ccpp_control_32bit results .... Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,8 +1130,8 @@ Checking test 019 fv3_ccpp_stretched results .... Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -1197,8 +1197,8 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1208,8 +1208,8 @@ Checking test 021 fv3_ccpp_regional_control results .... Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1217,8 +1217,8 @@ Checking test 022 fv3_ccpp_regional_restart results .... Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1228,8 +1228,8 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -1239,8 +1239,8 @@ Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1287,8 +1287,8 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1335,8 +1335,8 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1383,8 +1383,8 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1431,8 +1431,8 @@ Checking test 028 fv3_ccpp_csawmg results .... Test 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,8 +1479,8 @@ Checking test 029 fv3_ccpp_satmedmf results .... Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1527,8 +1527,8 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1575,8 +1575,8 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,8 +1627,8 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_cpt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,8 +1681,8 @@ Checking test 033 fv3_ccpp_cpt results .... Test 033 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gsd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1773,8 +1773,8 @@ Checking test 034 fv3_ccpp_gsd results .... Test 034 fv3_ccpp_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_rap_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_rap_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_rap_prod Checking test 035 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1841,8 +1841,8 @@ Checking test 035 fv3_ccpp_rap results .... Test 035 fv3_ccpp_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_hrrr_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_hrrr_prod Checking test 036 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1909,8 +1909,8 @@ Checking test 036 fv3_ccpp_hrrr results .... Test 036 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,8 +1977,8 @@ Checking test 037 fv3_ccpp_thompson results .... Test 037 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -2045,8 +2045,8 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Test 038 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2113,8 +2113,8 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Test 039 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v15p2_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v15p2_prod Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2181,8 +2181,8 @@ Checking test 040 fv3_ccpp_gfs_v15p2 results .... Test 040 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_prod Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2261,8 +2261,8 @@ Checking test 041 fv3_ccpp_gfs_v16 results .... Test 041 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_restart_prod Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2311,8 +2311,8 @@ Checking test 042 fv3_ccpp_gfs_v16_restart results .... Test 042 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_stochy_prod Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2379,8 +2379,8 @@ Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Test 043 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2447,8 +2447,8 @@ Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2515,8 +2515,8 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2577,8 +2577,8 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2645,8 +2645,8 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -2693,8 +2693,8 @@ Checking test 048 fv3_ccpp_gfsv16_csawmg results .... Test 048 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -2741,8 +2741,8 @@ Checking test 049 fv3_ccpp_gfsv16_csawmgt results .... Test 049 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -2789,8 +2789,8 @@ Checking test 050 fv3_ccpp_gocart_clm results .... Test 050 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_flake_prod Checking test 051 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2857,8 +2857,8 @@ Checking test 051 fv3_ccpp_gfs_v16_flake results .... Test 051 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -2925,8 +2925,8 @@ Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 052 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -2943,8 +2943,8 @@ Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 054 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3005,8 +3005,8 @@ Checking test 054 fv3_ccpp_gfsv16_ugwpv1 results .... Test 054 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3067,8 +3067,8 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -3135,8 +3135,8 @@ Checking test 056 fv3_ccpp_gfs_v15p2_debug results .... Test 056 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_debug_prod Checking test 057 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3203,8 +3203,8 @@ Checking test 057 fv3_ccpp_gfs_v16_debug results .... Test 057 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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 @@ -3271,8 +3271,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 059 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3339,8 +3339,8 @@ Checking test 059 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 059 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_regional_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_regional_control_debug_prod Checking test 060 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3350,8 +3350,8 @@ Checking test 060 fv3_ccpp_regional_control_debug results .... Test 060 fv3_ccpp_regional_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_control_debug_prod Checking test 061 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3380,8 +3380,8 @@ Checking test 061 fv3_ccpp_control_debug results .... Test 061 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_stretched_nest_debug_prod Checking test 062 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3400,8 +3400,8 @@ Checking test 062 fv3_ccpp_stretched_nest_debug results .... Test 062 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gsd_debug_prod Checking test 063 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3468,8 +3468,8 @@ Checking test 063 fv3_ccpp_gsd_debug results .... Test 063 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gsd_diag3d_debug_prod Checking test 064 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3536,8 +3536,8 @@ Checking test 064 fv3_ccpp_gsd_diag3d_debug results .... Test 064 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_thompson_debug_prod Checking test 065 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3604,8 +3604,8 @@ Checking test 065 fv3_ccpp_thompson_debug results .... Test 065 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_thompson_no_aero_debug_prod Checking test 066 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3672,8 +3672,8 @@ Checking test 066 fv3_ccpp_thompson_no_aero_debug results .... Test 066 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 067 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3740,8 +3740,8 @@ Checking test 067 fv3_ccpp_rrfs_v1beta_debug results .... Test 067 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3808,8 +3808,8 @@ Checking test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3826,8 +3826,8 @@ Checking test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_32651/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 070 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3889,5 +3889,5 @@ Test 070 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 4 16:04:29 UTC 2021 -Elapsed time: 00h:50m:38s. Have a nice day! +Mon Mar 8 19:51:03 UTC 2021 +Elapsed time: 00h:45m:13s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index ccc94128bb..038d25c17e 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Thu Mar 4 10:11:43 EST 2021 +Tue Mar 9 00:03:19 UTC 2021 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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-20210303/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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-20210303/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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-20210303/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,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-20210303/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -324,8 +324,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-20210303/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -372,8 +372,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-20210303/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -420,8 +420,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-20210303/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -429,10 +429,10 @@ 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 phyf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc .........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 @@ -468,8 +468,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-20210303/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -516,8 +516,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-20210303/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -564,8 +564,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-20210303/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -612,8 +612,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-20210303/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ 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-20210303/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_ca_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_lndp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_lndp_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -1030,8 +1030,8 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1104,8 +1104,8 @@ Checking test 019 fv3_ccpp_multigases results .... Test 019 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -1172,8 +1172,8 @@ Checking test 020 fv3_ccpp_control_32bit results .... Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1228,8 +1228,8 @@ Checking test 021 fv3_ccpp_stretched results .... Test 021 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -1295,8 +1295,8 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1306,8 +1306,8 @@ Checking test 023 fv3_ccpp_regional_control results .... Test 023 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1315,8 +1315,8 @@ Checking test 024 fv3_ccpp_regional_restart results .... Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1326,19 +1326,19 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_regional_quilt_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........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-20210303/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfdlmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1385,8 +1385,8 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfdlmprad_gwd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -1433,8 +1433,8 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfdlmprad_noahmp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -1481,8 +1481,8 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1529,8 +1529,8 @@ Checking test 030 fv3_ccpp_csawmg results .... Test 030 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1577,8 +1577,8 @@ Checking test 031 fv3_ccpp_satmedmf results .... Test 031 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_satmedmfq_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1625,8 +1625,8 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Test 032 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfdlmp_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -1673,8 +1673,8 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Test 033 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfdlmprad_32bit_post_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -1725,8 +1725,8 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_cpt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1779,8 +1779,8 @@ Checking test 035 fv3_ccpp_cpt results .... Test 035 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gsd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1871,8 +1871,8 @@ Checking test 036 fv3_ccpp_gsd results .... Test 036 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_rap_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_rap_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_rap_prod Checking test 037 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1939,8 +1939,8 @@ Checking test 037 fv3_ccpp_rap results .... Test 037 fv3_ccpp_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_hrrr_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_hrrr_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_hrrr_prod Checking test 038 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2007,8 +2007,8 @@ Checking test 038 fv3_ccpp_hrrr results .... Test 038 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_thompson_prod Checking test 039 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2075,8 +2075,8 @@ Checking test 039 fv3_ccpp_thompson results .... Test 039 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_thompson_no_aero_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -2143,8 +2143,8 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Test 040 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -2211,8 +2211,8 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Test 041 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v15p2_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v15p2_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -2279,8 +2279,8 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Test 042 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v16_prod Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2359,8 +2359,8 @@ Checking test 043 fv3_ccpp_gfs_v16 results .... Test 043 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v16_restart_prod Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2409,8 +2409,8 @@ Checking test 044 fv3_ccpp_gfs_v16_restart results .... Test 044 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v16_stochy_prod Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2477,8 +2477,8 @@ Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Test 045 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -2545,8 +2545,8 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2613,8 +2613,8 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -2675,8 +2675,8 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2743,8 +2743,8 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Test 049 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfsv16_csawmg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -2791,8 +2791,8 @@ Checking test 050 fv3_ccpp_gfsv16_csawmg results .... Test 050 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfsv16_csawmgt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -2839,8 +2839,8 @@ Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... Test 051 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gocart_clm_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -2887,8 +2887,8 @@ Checking test 052 fv3_ccpp_gocart_clm results .... Test 052 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v16_flake_prod Checking test 053 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2955,8 +2955,8 @@ Checking test 053 fv3_ccpp_gfs_v16_flake results .... Test 053 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -3023,8 +3023,8 @@ Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -3041,8 +3041,8 @@ Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3103,8 +3103,8 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3165,8 +3165,8 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -3233,8 +3233,8 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Test 058 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v16_debug_prod Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3301,8 +3301,8 @@ Checking test 059 fv3_ccpp_gfs_v16_debug results .... Test 059 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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 @@ -3369,8 +3369,8 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3437,8 +3437,8 @@ Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_regional_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_regional_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_regional_control_debug_prod Checking test 062 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3448,8 +3448,8 @@ Checking test 062 fv3_ccpp_regional_control_debug results .... Test 062 fv3_ccpp_regional_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_control_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_control_debug_prod Checking test 063 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3478,8 +3478,8 @@ Checking test 063 fv3_ccpp_control_debug results .... Test 063 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_stretched_nest_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_stretched_nest_debug_prod Checking test 064 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3498,8 +3498,8 @@ Checking test 064 fv3_ccpp_stretched_nest_debug results .... Test 064 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gsd_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gsd_debug_prod Checking test 065 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3566,8 +3566,8 @@ Checking test 065 fv3_ccpp_gsd_debug results .... Test 065 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gsd_diag3d_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gsd_diag3d_debug_prod Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3634,8 +3634,8 @@ Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... Test 066 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_thompson_debug_prod Checking test 067 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3702,8 +3702,8 @@ Checking test 067 fv3_ccpp_thompson_debug results .... Test 067 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_thompson_no_aero_debug_prod Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3770,8 +3770,8 @@ Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... Test 068 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3838,8 +3838,8 @@ Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... Test 069 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3906,8 +3906,8 @@ Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3924,8 +3924,8 @@ Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3986,8 +3986,8 @@ Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_control_prod Checking test 073 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4039,8 +4039,8 @@ Checking test 073 cpld_control results .... Test 073 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restart_prod Checking test 074 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4092,8 +4092,8 @@ Checking test 074 cpld_restart results .... Test 074 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_controlfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_controlfrac_prod Checking test 075 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4145,8 +4145,8 @@ Checking test 075 cpld_controlfrac results .... Test 075 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restartfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restartfrac_prod Checking test 076 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4198,8 +4198,8 @@ Checking test 076 cpld_restartfrac results .... Test 076 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_2threads_prod Checking test 077 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4251,8 +4251,8 @@ Checking test 077 cpld_2threads results .... Test 077 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_decomp_prod Checking test 078 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4304,8 +4304,8 @@ Checking test 078 cpld_decomp results .... Test 078 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_satmedmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_satmedmf_prod Checking test 079 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4357,8 +4357,8 @@ Checking test 079 cpld_satmedmf results .... Test 079 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_ca_prod Checking test 080 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4410,8 +4410,8 @@ Checking test 080 cpld_ca results .... Test 080 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_control_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_control_c192_prod Checking test 081 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4463,8 +4463,8 @@ Checking test 081 cpld_control_c192 results .... Test 081 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restart_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restart_c192_prod Checking test 082 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4516,8 +4516,8 @@ Checking test 082 cpld_restart_c192 results .... Test 082 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_controlfrac_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_controlfrac_c192_prod Checking test 083 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4569,8 +4569,8 @@ Checking test 083 cpld_controlfrac_c192 results .... Test 083 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restartfrac_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restartfrac_c192_prod Checking test 084 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4622,8 +4622,8 @@ Checking test 084 cpld_restartfrac_c192 results .... Test 084 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_control_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_control_c384_prod Checking test 085 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4678,8 +4678,8 @@ Checking test 085 cpld_control_c384 results .... Test 085 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restart_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restart_c384_prod Checking test 086 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4734,8 +4734,8 @@ Checking test 086 cpld_restart_c384 results .... Test 086 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_controlfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_controlfrac_c384_prod Checking test 087 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4790,8 +4790,8 @@ Checking test 087 cpld_controlfrac_c384 results .... Test 087 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restartfrac_c384_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restartfrac_c384_prod Checking test 088 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4846,8 +4846,8 @@ Checking test 088 cpld_restartfrac_c384 results .... Test 088 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_bmark_prod Checking test 089 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4902,8 +4902,8 @@ Checking test 089 cpld_bmark results .... Test 089 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restart_bmark_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restart_bmark_prod Checking test 090 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4958,8 +4958,8 @@ Checking test 090 cpld_restart_bmark results .... Test 090 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_bmarkfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_bmarkfrac_prod Checking test 091 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5014,8 +5014,8 @@ Checking test 091 cpld_bmarkfrac results .... Test 091 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restart_bmarkfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restart_bmarkfrac_prod Checking test 092 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5070,8 +5070,8 @@ Checking test 092 cpld_restart_bmarkfrac results .... Test 092 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_bmarkfrac_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_bmarkfrac_v16_prod Checking test 093 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5126,8 +5126,8 @@ Checking test 093 cpld_bmarkfrac_v16 results .... Test 093 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_restart_bmarkfrac_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restart_bmarkfrac_v16_prod Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5182,8 +5182,8 @@ Checking test 094 cpld_restart_bmarkfrac_v16 results .... Test 094 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_bmark_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_bmark_wave_prod Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5241,8 +5241,8 @@ Checking test 095 cpld_bmark_wave results .... Test 095 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_bmarkfrac_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmarkfrac_wave_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_bmarkfrac_wave_prod Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5300,24 +5300,23 @@ Checking test 096 cpld_bmarkfrac_wave results .... Test 096 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_bmarkfrac_wave_v16_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmarkfrac_wave_v16_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_bmarkfrac_wave_v16_prod Checking test 097 cpld_bmarkfrac_wave_v16 results .... - 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 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 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........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 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 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5354,13 +5353,13 @@ Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK 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 + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Test 097 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_control_wave_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_wave_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_control_wave_prod Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5415,8 +5414,8 @@ Checking test 098 cpld_control_wave results .... Test 098 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_debug_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_debug_prod Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5468,8 +5467,8 @@ Checking test 099 cpld_debug results .... Test 099 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/cpld_debugfrac_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_debugfrac_ccpp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_debugfrac_prod Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5521,8 +5520,8 @@ Checking test 100 cpld_debugfrac results .... Test 100 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/datm_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/datm_control_cfsr Checking test 101 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5530,8 +5529,8 @@ Checking test 101 datm_control_cfsr results .... Test 101 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/datm_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/datm_restart_cfsr Checking test 102 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5539,8 +5538,8 @@ Checking test 102 datm_restart_cfsr results .... Test 102 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/datm_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/datm_control_gefs Checking test 103 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5548,8 +5547,8 @@ Checking test 103 datm_control_gefs results .... Test 103 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/datm_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/datm_bulk_cfsr Checking test 104 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5557,8 +5556,8 @@ Checking test 104 datm_bulk_cfsr results .... Test 104 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/datm_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/datm_bulk_gefs Checking test 105 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK @@ -5566,8 +5565,8 @@ Checking test 105 datm_bulk_gefs results .... Test 105 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/datm_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/datm_mx025_cfsr Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5578,8 +5577,8 @@ Checking test 106 datm_mx025_cfsr results .... Test 106 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/datm_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/datm_mx025_gefs Checking test 107 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5590,8 +5589,8 @@ Checking test 107 datm_mx025_gefs results .... Test 107 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210303/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_115974/datm_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/datm_debug_cfsr Checking test 108 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK @@ -5600,5 +5599,5 @@ Test 108 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 4 12:59:26 EST 2021 -Elapsed time: 02h:47m:45s. Have a nice day! +Tue Mar 9 03:55:14 UTC 2021 +Elapsed time: 03h:51m:56s. Have a nice day! diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index 2ded8b6fcb..5e0859531d 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -6,7 +6,6 @@ This script should be started through rt_auto.sh so that env vars are set up prior to start. """ -from __future__ import print_function from github import Github as gh import argparse import datetime @@ -65,27 +64,40 @@ def input_data(args): }] action_list_dict = [{ 'name': 'RT', - 'command': 'cd tests && /bin/bash --login ./rt.sh -e', - 'callback_fnc': 'move_rt_logs' + 'callback_fnc': 'rt_callback' + }, + { + 'name': 'BL', + 'callback_fnc': 'bl_callback' }] return machine_dict, repo_list_dict, action_list_dict -def match_label_with_action(machine, actions, label): +def set_action_from_label(machine, actions, label): ''' Match the label that initiates a job with an action in the dict''' # -- i.e. hera-gnu-RT # RT = full regression test suite logger = logging.getLogger('MATCH_LABEL_WITH_ACTIONS') split_label = label.name.split('-') if len(split_label) != 3: return False, False #Make sure it has three parts - if not re.match(split_label[0], machine['name']): return False, False #First check machine name matches - compiler = split_label[1] - if not str(compiler) in ["intel", "gnu"]: return False, False - action_match = next((action for action in actions if re.match(action['name'], split_label[2])), False) - action_match["command"] = f'export RT_COMPILER="{compiler}" && {action_match["command"]}' - if split_label[2] == "RT" and compiler == "gnu": - action_match["command"] = f'{action_match["command"]} -l rt_gnu.conf' - return compiler, action_match + label_machine = split_label[0] + label_compiler = split_label[1] + label_action = split_label[2] + if not re.match(label_machine, machine['name']): return False, False #check machine name matches + if not str(label_compiler) in ["intel", "gnu"]: return False, False #Compiler must be intel or gnu + action_match = next((action for action in actions if re.match(action['name'], label_action)), False) + if label_action == 'RT': # SET ACTIONS BASED ON RT COMMAND + if label_compiler == "intel": + action_match["command"] = f'export RT_COMPILER="intel" && cd tests && /bin/bash --login ./rt.sh -e' + elif label_compiler == "gnu": + action_match["command"] = f'export RT_COMPILER="gnu" && cd tests && /bin/bash --login ./rt.sh -e -l rt_gnu.conf' + elif label_action == 'BL': # SET ACTIONS BASED ON BL COMMAND + if label_compiler == "intel": + action_match["command"] = f'export RT_COMPILER="intel" && cd tests && /bin/bash --login ./rt.sh -e -c' + elif label_compiler == "gnu": + action_match["command"] = f'export RT_COMPILER="gnu" && cd tests && /bin/bash --login ./rt.sh -e -c -l rt_gnu.conf' + + return label_compiler, action_match def get_preqs_with_actions(repos, machine, ghinterface_obj, actions): @@ -95,17 +107,15 @@ def get_preqs_with_actions(repos, machine, ghinterface_obj, actions): each_pr = [preq for gh_preq in gh_preqs for preq in gh_preq] preq_labels = [{'preq': pr, 'label': label} for pr in each_pr for label in pr.get_labels()] - for i, pr_label in enumerate(preq_labels): - compiler, match = match_label_with_action(machine, actions, pr_label['label']) + return_preq = [] + for pr_label in preq_labels: + compiler, match = set_action_from_label(machine, actions, pr_label['label']) if match: - preq_labels[i]['action'] = match - preq_labels[i]['compiler'] = compiler - else: - preq_labels[i] = False - - preq_dict = [x for x in preq_labels if x] + pr_label['action'] = match.copy() + pr_label['compiler'] = compiler + return_preq.append(pr_label.copy()) - return preq_dict + return return_preq class Job: ''' @@ -144,31 +154,6 @@ def check_label_before_job_start(self): return label_match - - def send_log_name_as_comment(self, log_filename): - logger = logging.getLogger('JOB/SEND_LOG_NAME_AS_COMMENT') - - #Remove LAST MONTHS LOGS - logger.info('Removing last months logs (if any)') - last_month = datetime.date.today().replace(day=1) - datetime.timedelta(days=1) - rm_command = [[f'rm rt_auto_*_{last_month.strftime("%Y%m")}*.log', os.getcwd()]] - logger.info(f'Running "{rm_command}"') - try: - self.run_commands(rm_command) - except Exception as e: - logger.warning(f'"{rm_command}" failed with error:{e}') - - # Add log information to PR. - comment_text = f'Log Name:{log_filename}\n'\ - f'Log Location:{os.getcwd()}\n'\ - 'Logs are kept for one month' - try: - self.preq_dict['preq'].create_issue_comment(comment_text) - except Exception as e: - logger.warning('Creating comment with log location failed with:{e}') - else: - logger.info(f'{comment_text}') - def run_commands(self, commands_with_cwd): logger = logging.getLogger('JOB/RUN_COMMANDS') for command, in_cwd in commands_with_cwd: @@ -179,19 +164,18 @@ def run_commands(self, commands_with_cwd): out = [] if not out else out.decode('utf8').split('\n') err = [] if not err else err.decode('utf8').split('\n') except Exception as e: - logger.critical(e) - [logger.critical(f'stdout: {item}') for item in out if not None] - [logger.critical(f'stderr: {eitem}') for eitem in err if not None] - assert(e) + self.job_failed(logger, f'Command {command}', exception=e, out=out, err=err) else: logger.info(f'Finished running: {command}') [logger.debug(f'stdout: {item}') for item in out if not None] - [logger.debug(f'stderr: {eitem}') for eitem in err if not None] - def remove_pr_dir(self): - logger = logging.getLogger('JOB/REMOVE_PR_DIR') + def remove_pr_data(self): + logger = logging.getLogger('JOB/REMOVE_PR_DATA') pr_dir_str = f'{self.machine["workdir"]}/{str(self.preq_dict["preq"].id)}' - rm_command = [[f'rm -rf {pr_dir_str}', self.pr_repo_loc]] + rm_command = [ + [f'rm -rf {self.rt_dir}', self.pr_repo_loc], + [f'rm -rf {pr_dir_str}', self.pr_repo_loc] + ] logger.info(f'Running "{rm_command}"') self.run_commands(rm_command) @@ -205,7 +189,7 @@ def clone_pr_repo(self): logger.info(f'GIT URL: {git_url}') logger.info('Starting repo clone') repo_dir_str = f'{self.machine["workdir"]}/{str(self.preq_dict["preq"].id)}/{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}' - + self.pr_repo_loc = repo_dir_str+"/"+repo_name create_repo_commands = [ [f'mkdir -p "{repo_dir_str}"', self.machine['workdir']], [f'git clone -b {self.branch} {git_url}', repo_dir_str], @@ -215,69 +199,101 @@ def clone_pr_repo(self): self.run_commands(create_repo_commands) logger.info('Finished repo clone') - self.pr_repo_loc = repo_dir_str+"/"+repo_name return self.pr_repo_loc - def run_function(self): + def execute_command(self): ''' Run the command associted with the label used to initiate this job ''' - logger = logging.getLogger('JOB/RUN_FUNCTION') + logger = logging.getLogger('JOB/EXECUTE_COMMAND') compiler = self.preq_dict['compiler'] logger.info(f'Compiler being used for command is {compiler}') command = self.preq_dict["action"]["command"] + try: logger.info(f'Running: "{command}" in "{self.pr_repo_loc}"') output = subprocess.Popen(command, cwd=self.pr_repo_loc, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) out,err = output.communicate() + except Exception as e: out = [] if not out else out.decode('utf8').split('\n') err = [] if not err else err.decode('utf8').split('\n') - except Exception as e: - logger.critical(e) - [logger.critical(f'stdout: {item}') for item in out if not None] - [logger.critical(f'stderr: {eitem}') for eitem in err if not None] - assert(e) + self.job_failed(logger, f'Command {command}', exception=e, out=out, err=err) else: if output.returncode != 0: - comment_text = f'rt.sh failed \n'\ - f'machine: {self.machine["name"]} \n'\ - f'compiler: {self.preq_dict["compiler"]}\n'\ - f'STDOUT: {out} \n'\ - f'STDERR: {err}' - self.preq_dict['preq'].create_issue_comment(comment_text) - logger.critical(f'{command} Failed') - [logger.critical(f'stdout: {item}') for item in out if not None] - [logger.critical(f'stderr: {eitem}') for eitem in err if not None] + self.job_failed(logger, "Script rt.sh", exception=SystemExit, STDOUT=False) else: try: logger.info(f'Attempting to run callback: {self.preq_dict["action"]["callback_fnc"]}') getattr(self, self.preq_dict['action']['callback_fnc'])() except Exception as e: - logger.critical(f'Callback function {self.preq_dict["action"]["callback_fnc"]} failed with "{e}"') - goodexit = False - assert(e) + self.job_failed(logger, f'Callback function {self.preq_dict["action"]["callback_fnc"]}', exception=e, STDOUT=False) else: logger.info(f'Finished callback {self.preq_dict["action"]["callback_fnc"]}') [logger.debug(f'stdout: {item}') for item in out if not None] - [logger.debug(f'stderr: {eitem}') for eitem in err if not None] + + def run(self): + logger = logging.getLogger('JOB/RUN') + logger.info(f'Starting Job: {self.preq_dict["label"]}') + if self.check_label_before_job_start(): + try: + logger.info('Calling remove_pr_label') + self.remove_pr_label() + logger.info('Calling clone_pr_repo') + self.clone_pr_repo() + logger.info('Calling execute_command') + self.execute_command() + except Exception as e: + self.job_failed(logger, f'run()', exception=e, STDOUT=False) + else: + logger.info(f'Cannot find label {self.preq_dict["label"]}') + + def job_failed(self, logger, job_name, exception=Exception, STDOUT=True, out=None, err=None): + comment_text = f'{job_name} FAILED \n'\ + f'Repo location: {self.pr_repo_loc} \n'\ + f'Machine: {self.machine["name"]} \n'\ + f'Compiler: {self.preq_dict["compiler"]} \n' + if STDOUT: + comment_text=comment_text+'\n'\ + f'STDOUT: {[item for item in out if not None]} \n'\ + f'STDERR: {[eitem for eitem in err if not None]} \n' + comment_text = comment_text+'Please make changes and add the following label back: '\ + f'{self.machine["name"]}-{self.preq_dict["compiler"]}-{self.preq_dict["action"]["name"]}' + logger.critical(comment_text) + self.preq_dict['preq'].create_issue_comment(comment_text) + raise exception + + def process_logfile(self, logfile): + self.rt_dir = [] + if os.path.exists(logfile): + with open(logfile) as f: + for line in f: + if 'working dir' in line and not self.rt_dir: + self.rt_dir = os.path.split(line.split()[-1])[0] + elif 'SUCCESSFUL' in line: + return True + self.job_failed(logger, "Regression Tests", STDOUT=False) + else: + logger.critical(f'Could not find {self.machine["name"]}.{self.preq_dict["compiler"]} RT log') + raise FileNotFoundError(f'Could not find {self.machine["name"]}.{self.preq_dict["compiler"]} RT log') # Add Callback Functions After Here - def move_rt_logs(self): + def rt_callback(self): ''' This is the callback function associated with the "RT" command ''' logger = logging.getLogger('JOB/MOVE_RT_LOGS') rt_log = f'tests/RegressionTests_{self.machine["name"]}.{self.preq_dict["compiler"]}.log' filepath = f'{self.pr_repo_loc}/{rt_log}' - if os.path.exists(filepath): + logfile_pass = self.process_logfile(filepath) + if logfile_pass: move_rt_commands = [ [f'git pull --ff-only origin {self.branch}', self.pr_repo_loc], [f'git add {rt_log}', self.pr_repo_loc], - [f'git commit -m "Auto: Add RT Log file: {rt_log} skip-ci"', self.pr_repo_loc], + [f'git commit -m "PASSED: {self.machine["name"]}.{self.preq_dict["compiler"]}. Log file uploaded. skip-ci"', self.pr_repo_loc], ['sleep 10', self.pr_repo_loc], [f'git push origin {self.branch}', self.pr_repo_loc] ] self.run_commands(move_rt_commands) + self.remove_pr_data() - else: - logger.critical('Could not find Intel RT log') - raise FileNotFoundError('Could not find Intel RT log') + def bl_callback(self): + pass def main(): @@ -308,23 +324,7 @@ def main(): # add Job objects and run them logger.info('Adding all jobs to an object list and running them.') jobs = [Job(pullreq, ghinterface_obj, machine) for pullreq in preq_dict] - for job in jobs: - logger.info(f'Starting Job: {job}') - if job.check_label_before_job_start(): - try: - logger.info('Calling remove_pr_label') - job.remove_pr_label() - logger.info('Calling clone_pr_repo') - job.clone_pr_repo() - logger.info('Calling run_function') - job.run_function() - logger.info('Calling remove_pr_dir') - # job.remove_pr_dir() - # logger.info('Calling send_log_name_as_comment') - job.send_log_name_as_comment(log_filename) - except Exception as e: - logger.critical(e) - assert(e) + [job.run() for job in jobs] logger.info('Script Finished') diff --git a/tests/ci/build_status_check.py b/tests/ci/build_status_check.py new file mode 100755 index 0000000000..0f84cc38f1 --- /dev/null +++ b/tests/ci/build_status_check.py @@ -0,0 +1,55 @@ +#!/usr/bin/env python3 + +import re +import sys +import json +import time +from urllib.request import urlopen + +def update_url_data(response): + data = json.loads(response.read().decode()) + indices=[] + for n in range(data["total_count"]): + if re.search("Build", data["jobs"][n]["name"]): + indices.append(n) + + if len(indices) == 0: + raise ValueError("No build job exists.") + + return data, indices + +def main(): + + time.sleep(40) + url = json.load(sys.stdin)["workflow_run"]["jobs_url"] + + status="not-completed" + no_completed_jobs = 0 + + while status != "completed": + response = urlopen(url) + data, indices = update_url_data(response) + + for i in indices: + if data["jobs"][i]["status"] == "completed": + no_completed_jobs += 1 + + if no_completed_jobs == len(indices): + status = "completed" + else: + no_completed_jobs = 0 + time.sleep(40) + + time.sleep(40) + conclusion="failure" + no_successful_jobs = 0 + for i in indices: + if data["jobs"][i]["conclusion"] == "success": + no_successful_jobs += 1 + + if no_successful_jobs == len(indices): + conclusion = "success" + + print(conclusion) + +if __name__ == "__main__": main() diff --git a/tests/ci/ci.sh b/tests/ci/ci.sh index f9af49440c..bcb90f2aec 100755 --- a/tests/ci/ci.sh +++ b/tests/ci/ci.sh @@ -72,15 +72,15 @@ if [ $BUILD = "true" ]; then elif [ $RUN == "true" ]; then - sudo docker run -d --rm -v DataVolume:/tmp minsukjinoaa/fv3-input-data:input-data-20210115 - sudo docker run -d -e test_case=${TEST_CASE} -v DataVolume:/home/builder/data/NEMSfv3gfs/input-data-20210115 --name my-container ${IMG_NAME} + docker run -d --rm -v DataVolume:/tmp minsukjinoaa/fv3-input-data:input-data-20210115 + docker run -d -e test_case=${TEST_CASE} --shm-size=512m -v DataVolume:/home/builder/data/NEMSfv3gfs/input-data-20210115 --name my-container ${IMG_NAME} echo 'cache,rss,shmem' >memory_stat sleep 3 - containerID=$(sudo docker ps -q --no-trunc) + containerID=$(docker ps -q --no-trunc) check_memory_usage $containerID >>memory_stat & - sudo docker logs -f $containerID - exit $(sudo docker inspect $containerID --format='{{.State.ExitCode}}') + docker logs -f $containerID + exit $(docker inspect $containerID --format='{{.State.ExitCode}}') fi diff --git a/tests/ci/ci.test b/tests/ci/ci.test index c414f778c2..c1ebb3278b 100644 --- a/tests/ci/ci.test +++ b/tests/ci/ci.test @@ -1,3 +1,3 @@ fv3_ccpp_control -rst bit +thr mpi dcp rst bit dbg ci-test-weather diff --git a/tests/ci/json_helper.py b/tests/ci/json_helper.py index cc4fd4f32c..c27c6df7f5 100755 --- a/tests/ci/json_helper.py +++ b/tests/ci/json_helper.py @@ -19,6 +19,7 @@ def cancel_workflow(data): x["id"]!=int(os.environ["GITHUB_RUN_ID"]) and x["id"]!=int(os.environ["TRIGGER_ID"]) and x["head_branch"]==os.environ["TRIGGER_BR"] and + x["event"]!="workflow_run" and (x["status"]=="queued" or x["status"]=="in_progress")] return wfs diff --git a/tests/default_vars.sh b/tests/default_vars.sh index cccd6814c7..7877c57161 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -146,7 +146,7 @@ elif [[ $MACHINE_ID = hera.* ]]; then elif [[ $MACHINE_ID = linux.* ]]; then if [[ $CI_TEST = true ]]; then - TASKS_dflt=12 ; TPN_dflt=16 ; INPES_dflt=1 ; JNPES_dflt=1 + TASKS_dflt=42 ; TPN_dflt=48 ; INPES_dflt=3 ; JNPES_dflt=2 else TASKS_dflt=150 ; TPN_dflt=40 ; INPES_dflt=3 ; JNPES_dflt=8 fi @@ -535,6 +535,7 @@ export FRAC_GRID_INPUT='.T.' export SUITE_NAME="FV3_GFS_2017_coupled" export INPUT_NML=input.mom6_ccpp.nml.IN export FIELD_TABLE="field_table" +export DIAG_TABLE="diag_table_template" export FHROT='0' export NSOUT='-1' @@ -549,7 +550,10 @@ export CPL='.true.' export NSTF_NAME='0,0,0,0,0' export DZ_MIN='2' +export PSM_BC='0' export MIN_SEAICE='1.0e-11' +export DDDMP='0.1' +export FSICL='99999' # resolution dependent settings export CDMBWD_c96='0.14,1.8,1.0,1.0' @@ -679,6 +683,7 @@ export flux_scheme='0' export INPUT_NML=input.mom6.nml.IN export MODEL_CONFIGURE=datm_configure.IN export FIELD_TABLE="field_table" +export DIAG_TABLE="diag_table_template" # MOM6 defaults; 1 degree export MOM_INPUT=MOM_input_template_100 diff --git a/tests/fv3_conf/cpld_bmark_run.IN b/tests/fv3_conf/cpld_bmark_run.IN index 443e09fd39..1ecddff757 100644 --- a/tests/fv3_conf/cpld_bmark_run.IN +++ b/tests/fv3_conf/cpld_bmark_run.IN @@ -8,17 +8,13 @@ fi ICERES="${OCNRES:0:1}.${OCNRES:1}" -BM_IC=BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR} if [[ ${FRAC_GRID_INPUT} = .F. ]]; then - FV3_IC=${BM_IC}/gfs/@[ATMRES]/INPUT + FV3_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/gfs/@[ATMRES]/INPUT elif [[ @[NPZ] == '127' ]]; then - FV3_IC=FV3_input_frac/${BM_IC}/gfs/@[ATMRES]_L@[NPZ]/INPUT + FV3_IC=FV3_input_frac/BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR}/gfs/@[ATMRES]_L@[NPZ]/INPUT else - FV3_IC=FV3_input_frac/${BM_IC}/gfs/@[ATMRES]/INPUT + FV3_IC=FV3_input_frac/BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR}/gfs/@[ATMRES]/INPUT fi -MOM6_IC=${BM_IC}/mom6_da -CICE_IC=${BM_IC}/cpc -WW3_IC=${BM_IC}/ww3 # FV3 fixed input cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/aerosol.dat . @@ -63,7 +59,7 @@ if [[ $CPLWAV == .T. && $CPLWAV2ATM == .T. ]]; then cp @[INPUTDATA_ROOT_WW3]/mod_def.* . if [[ $RT35D == .T. ]]; then cp @[INPUTDATA_ROOT_WW3]/ww3_multi_35d.inp ww3_multi.inp - cp @[INPUTDATA_ROOT]/${WW3_IC}/*.000000.restart.gwes_30m ./restart.gwes_30m + cp @[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/ww3/*.000000.restart.gwes_30m ./restart.gwes_30m else cp @[INPUTDATA_ROOT_WW3]/ww3_multi.inp . fi @@ -74,9 +70,9 @@ if [ $WARM_START = .F. ]; then # ICs cp @[INPUTDATA_ROOT]/${FV3_IC}/sfc_data*.nc ./INPUT cp @[INPUTDATA_ROOT]/${FV3_IC}/gfs_data*.nc ./INPUT - cp @[INPUTDATA_ROOT]/${MOM6_IC}/MOM*.nc ./INPUT + cp @[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/mom6_da/MOM*.nc ./INPUT # the BM ICs are still named cice5 and need to remain so until P5.0 is completed - cp @[INPUTDATA_ROOT]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc + cp @[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/cpc/cice5_model_@[ICERES].*.nc ./cice_model.res.nc else # NOTE: bmark-wave model is not currently tested for restart # Restart files diff --git a/tests/parm/diag_table_benchmark b/tests/parm/diag_table_bmark_template similarity index 100% rename from tests/parm/diag_table_benchmark rename to tests/parm/diag_table_bmark_template diff --git a/tests/parm/diag_table_bmark_v16_template b/tests/parm/diag_table_bmark_v16_template new file mode 100644 index 0000000000..a47879cfa6 --- /dev/null +++ b/tests/parm/diag_table_bmark_v16_template @@ -0,0 +1,270 @@ +YMD.00Z.ATMRES.64bit.non-mono +SYEAR SMONTH SDAY 00 0 0 + +"fv3_history", 0, "hours", 1, "hours", "time" +"fv3_history2d", 0, "hours", 1, "hours", "time" +###################### +"ocn%4yr%2mo%2dy%2hr", 6, "hours", 1, "hours", "time", 6, "hours", "1901 1 1 0 0 0" +"SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "1901 1 1 0 0 0" +############################################## +# static fields + "ocean_model", "geolon", "geolon", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_c", "geolon_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_c", "geolat_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_u", "geolon_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_u", "geolat_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_v", "geolon_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_v", "geolat_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "depth_ocean", "depth_ocean", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "wet", "wet", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_c", "wet_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_u", "wet_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_v", "wet_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "sin_rot", "sin_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "cos_rot", "cos_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + +# ocean output TSUV and others + "ocean_model", "SSH", "SSH", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SST", "SST", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSS", "SSS", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "speed", "speed", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSU", "SSU", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSV", "SSV", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "frazil", "frazil", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "ePBL_h_ML","ePBL", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# save daily SST + "ocean_model", "geolon", "geolon", "SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "SST", "sst", "SST%4yr%2mo%2dy", "all", .true., "none", 2 + +# Z-Space Fields Provided for CMIP6 (CMOR Names): +#=============================================== + "ocean_model_z","uo","uo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","vo","vo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","so","so" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","temp","temp" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# forcing + "ocean_model", "taux", "taux", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tauy", "tauy", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "latent", "latent", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "sensible", "sensible", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SW", "SW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LW", "LW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "evap", "evap", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lprec", "lprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +# "ocean_model", "frunoff", "frunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "fprec", "fprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +#============================================================================================= + +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "ice_nc", "nccice", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "rain_nc", "nconrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "cld_amt", "cld_amt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "pfhy", "preshy", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "pfnh", "presnh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 + +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 + +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rainc", "cnvprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/tests/parm/input.benchmark_v16.nml.IN b/tests/parm/input.benchmark_v16.nml.IN index 9490758bc3..89623cab9f 100644 --- a/tests/parm/input.benchmark_v16.nml.IN +++ b/tests/parm/input.benchmark_v16.nml.IN @@ -48,6 +48,7 @@ ntiles = 6, npz = @[NPZ] dz_min = @[DZ_MIN] + psm_bc = @[PSM_BC] grid_type = -1 make_nh = @[MAKE_NH] fv_debug = .false. @@ -79,7 +80,7 @@ fv_sg_adj = 450 d2_bg = 0. nord = 2 - dddmp = 0.1 + dddmp = @[DDDMP] d4_bg = 0.12 vtdm4 = 0.02 delt_max = 0.002 @@ -285,7 +286,7 @@ FAISS = 99999 FSNOL = 99999 FSNOS = 99999 - FSICL = 99999 + FSICL = @[FSICL] FSICS = 99999 FTSFL = 99999 FVETL = 99999 diff --git a/tests/rt.sh b/tests/rt.sh index addc556ecb..0006577623 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -415,13 +415,14 @@ 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-20210303/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210308/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210303} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210308} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210212} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20201220 +INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20210212} shift $((OPTIND-1)) [[ $# -gt 1 ]] && usage @@ -501,6 +502,7 @@ if [[ $ROCOTO == true ]]; then + ]> @@ -700,6 +702,7 @@ EOF export RTPWD=${RTPWD} export INPUTDATA_ROOT=${INPUTDATA_ROOT} export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3} + export INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export NEW_BASELINE=${NEW_BASELINE} diff --git a/tests/run_test.sh b/tests/run_test.sh index f26377efb8..1febc57b32 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -107,7 +107,7 @@ source ./fv3_run if [[ $DATM = 'true' ]] || [[ $S2S = 'true' ]]; then edit_ice_in < ${PATHRT}/parm/ice_in_template > ice_in edit_mom_input < ${PATHRT}/parm/${MOM_INPUT:-MOM_input_template_$OCNRES} > INPUT/MOM_input - edit_diag_table < ${PATHRT}/parm/diag_table_template > diag_table + edit_diag_table < ${PATHRT}/parm/${DIAG_TABLE:-diag_table_template} > diag_table edit_data_table < ${PATHRT}/parm/data_table_template > data_table # CMEPS cp ${PATHRT}/parm/fd_nems.yaml fd_nems.yaml @@ -150,7 +150,11 @@ atparse < ${PATHRT}/parm/${NEMS_CONFIGURE:-nems.configure} > nems.configure if [[ $SCHEDULER = 'none' ]]; then ulimit -s unlimited - mpiexec -n ${TASKS} ./fv3.exe >out 2> >(tee err >&3) + if [[ $CI_TEST = 'true' ]]; then + eval mpiexec -n ${TASKS} ${MPI_PROC_BIND} ./fv3.exe >out 2> >(tee err >&3) + else + mpiexec -n ${TASKS} ./fv3.exe >out 2> >(tee err >&3) + fi else diff --git a/tests/tests/cpld_bmark b/tests/tests/cpld_bmark index a3df8a215d..48990102db 100644 --- a/tests/tests/cpld_bmark +++ b/tests/tests/cpld_bmark @@ -133,6 +133,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmark_35d b/tests/tests/cpld_bmark_35d index b389b653c9..1a952f79ad 100644 --- a/tests/tests/cpld_bmark_35d +++ b/tests/tests/cpld_bmark_35d @@ -82,6 +82,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export RT35D='.T.' diff --git a/tests/tests/cpld_bmark_wave b/tests/tests/cpld_bmark_wave index 4ff8cb3cff..ea5aff0038 100644 --- a/tests/tests/cpld_bmark_wave +++ b/tests/tests/cpld_bmark_wave @@ -140,6 +140,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmark_wave_35d b/tests/tests/cpld_bmark_wave_35d index 2fe7071e5f..5990dba60d 100644 --- a/tests/tests/cpld_bmark_wave_35d +++ b/tests/tests/cpld_bmark_wave_35d @@ -101,6 +101,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export RT35D='.T.' diff --git a/tests/tests/cpld_bmarkfrac b/tests/tests/cpld_bmarkfrac index 7b842ad1e1..b4d857cba0 100644 --- a/tests/tests/cpld_bmarkfrac +++ b/tests/tests/cpld_bmarkfrac @@ -136,6 +136,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_v16 b/tests/tests/cpld_bmarkfrac_v16 index 6fc6279a19..20aac3cead 100644 --- a/tests/tests/cpld_bmarkfrac_v16 +++ b/tests/tests/cpld_bmarkfrac_v16 @@ -99,7 +99,7 @@ export NPROC_ICE='48' export CDMBWD=${CDMBWD_c384} # set component and coupling timesteps -export DT_ATMOS='300' +export DT_ATMOS='225' export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' @@ -115,7 +115,8 @@ export CPLMODE='nems_frac' export NPZ=127 export NPZP=128 -#export DZ_MIN=6 +export PSM_BC=1 +export DDDMP=0.2 # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" @@ -142,7 +143,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" -export DIAG_TABLE="diag_table_gfsv16" +export DIAG_TABLE="diag_table_bmark_v16_template" export SUITE_NAME="FV3_GFS_v16_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_v16_35d b/tests/tests/cpld_bmarkfrac_v16_35d new file mode 100644 index 0000000000..413504e17e --- /dev/null +++ b/tests/tests/cpld_bmarkfrac_v16_35d @@ -0,0 +1,96 @@ +# +# cpld_bmark_v16 35D +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark 35d test with v16" + +export_35d_run +export_fv3 +export_cpl + +export SYEAR +export SMONTH +export SDAY="01" +export SHOUR="00" + +export DAYS="35" +export FHMAX="840" +export RESTART_N=${FHMAX} +export WLCLK=480 + +export TASKS=$TASKS_cpl_bmrk +export TPN=$TPN_cpl_bmrk +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export THRD=$THRD_cpl_bmrk +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk + +export med_petlist_bounds=$MPB_cpl_bmrk +export atm_petlist_bounds=$APB_cpl_bmrk +export ocn_petlist_bounds=$OPB_cpl_bmrk +export ice_petlist_bounds=$IPB_cpl_bmrk + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + +# set component and coupling timesteps +export DT_ATMOS='225' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +export NPZ=127 +export NPZP=128 +export PSM_BC=1 +export DDDMP=0.2 + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' + +export RUNID="cpcice" + +export INPUT_NML=input.benchmark_v16.nml.IN + +export FIELD_TABLE="field_table_gfsv16" +export DIAG_TABLE="diag_table_bmark_v16_template" +export SUITE_NAME="FV3_GFS_v16_coupled" +export RT35D='.T.' +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave b/tests/tests/cpld_bmarkfrac_wave index 667579157f..1b0b44f201 100644 --- a/tests/tests/cpld_bmarkfrac_wave +++ b/tests/tests/cpld_bmarkfrac_wave @@ -143,6 +143,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_35d b/tests/tests/cpld_bmarkfrac_wave_35d index 15bfdb299e..86c0636497 100644 --- a/tests/tests/cpld_bmarkfrac_wave_35d +++ b/tests/tests/cpld_bmarkfrac_wave_35d @@ -104,6 +104,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export RT35D='.T.' diff --git a/tests/tests/cpld_bmarkfrac_wave_v16 b/tests/tests/cpld_bmarkfrac_wave_v16 index a9eca4e243..080555f979 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16 +++ b/tests/tests/cpld_bmarkfrac_wave_v16 @@ -5,21 +5,20 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 export CNTL_DIR="cpld_bmarkfrac_wave_v16" -export LIST_FILES="phyf012.tile1.nc \ - phyf012.tile2.nc \ - phyf012.tile3.nc \ - phyf012.tile4.nc \ - phyf012.tile5.nc \ - phyf012.tile6.nc \ - dynf012.tile1.nc \ - dynf012.tile2.nc \ - dynf012.tile3.nc \ - dynf012.tile4.nc \ - dynf012.tile5.nc \ - dynf012.tile6.nc \ - 20130401.120000.out_grd.gwes_30m \ - 20130401.120000.out_pnt.points \ - 20130401.120000.restart.gwes_30m \ +export LIST_FILES="phyf006.tile1.nc \ + phyf006.tile2.nc \ + phyf006.tile3.nc \ + phyf006.tile4.nc \ + phyf006.tile5.nc \ + phyf006.tile6.nc \ + dynf006.tile1.nc \ + dynf006.tile2.nc \ + dynf006.tile3.nc \ + dynf006.tile4.nc \ + dynf006.tile5.nc \ + dynf006.tile6.nc \ + 20130401.060000.out_grd.gwes_30m \ + 20130401.060000.out_pnt.points \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -56,8 +55,8 @@ export LIST_FILES="phyf012.tile1.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2013-04-01-43200.nc \ - RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc" + RESTART/iced.2013-04-01-21600.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc" export_fv3 export_cpl @@ -67,8 +66,8 @@ export SMONTH="04" export SDAY="01" export SHOUR="00" -export DAYS="0.5" -export FHMAX="12" +export DAYS="0.25" +export FHMAX="6" export RESTART_INTERVAL=${FHMAX} export RESTART_N=${RESTART_INTERVAL} @@ -104,7 +103,7 @@ export NPROC_ICE='48' export CDMBWD=${CDMBWD_c384} # set component and coupling timesteps -export DT_ATMOS='300' +export DT_ATMOS='225' export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' @@ -121,7 +120,8 @@ export CPLMODE='nems_frac' export NPZ=127 export NPZP=128 -#export DZ_MIN=6 +export PSM_BC=1 +export DDDMP=0.2 export CPLWAV='.T.' export CPLWAV2ATM='.T.' @@ -152,6 +152,6 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" -export DIAG_TABLE="diag_table_gfsv16" +export DIAG_TABLE="diag_table_bmark_v16_template" export SUITE_NAME="FV3_GFS_v16_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_v16_35d b/tests/tests/cpld_bmarkfrac_wave_v16_35d index b517120052..593ad312be 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16_35d +++ b/tests/tests/cpld_bmarkfrac_wave_v16_35d @@ -71,7 +71,7 @@ export NPROC_ICE='48' export CDMBWD=${CDMBWD_c384} # set component and coupling timesteps -export DT_ATMOS='300' +export DT_ATMOS='225' export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' @@ -88,7 +88,8 @@ export CPLMODE='nems_frac' export NPZ=127 export NPZP=128 -#export DZ_MIN=6 +export PSM_BC=1 +export DDDMP=0.2 export CPLWAV='.T.' export CPLWAV2ATM='.T.' @@ -119,7 +120,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" -export DIAG_TABLE="diag_table_gfsv16" +export DIAG_TABLE="diag_table_bmark_v16_template" export SUITE_NAME="FV3_GFS_v16_coupled" export RT35D='.T.' export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_bmark b/tests/tests/cpld_restart_bmark index e5d9ecf2a5..bde73202ec 100644 --- a/tests/tests/cpld_restart_bmark +++ b/tests/tests/cpld_restart_bmark @@ -148,6 +148,7 @@ export USE_RESTART_TIME='.true.' export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_bmarkfrac b/tests/tests/cpld_restart_bmarkfrac index b0d1bb3f6f..de460c2c21 100644 --- a/tests/tests/cpld_restart_bmarkfrac +++ b/tests/tests/cpld_restart_bmarkfrac @@ -151,6 +151,7 @@ export USE_RESTART_TIME='.true.' export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_bmarkfrac_v16 b/tests/tests/cpld_restart_bmarkfrac_v16 index 864db722b7..f969bc447a 100644 --- a/tests/tests/cpld_restart_bmarkfrac_v16 +++ b/tests/tests/cpld_restart_bmarkfrac_v16 @@ -103,7 +103,7 @@ export NPROC_ICE='48' export CDMBWD=${CDMBWD_c384} # set component and coupling timesteps -export DT_ATMOS='300' +export DT_ATMOS='225' export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' @@ -119,7 +119,8 @@ export CPLMODE='nems_frac' export NPZ=127 export NPZP=128 -#export DZ_MIN=6 +export PSM_BC=1 +export DDDMP=0.2 # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" @@ -158,7 +159,7 @@ export USE_RESTART_TIME='.true.' export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" -export DIAG_TABLE="diag_table_gfsv16" +export DIAG_TABLE="diag_table_bmark_v16_template" export SUITE_NAME="FV3_GFS_v16_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/utest b/tests/utest index e9dcc83413..6dd1394290 100755 --- a/tests/utest +++ b/tests/utest @@ -138,17 +138,21 @@ run_utests() { CREATE_BASELINE=true BL_SUFFIX=_std_base cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} export RESTART_INTERVAL=$(( FHMAX/2 )) + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41" EOF ;; std) CREATE_BASELINE=false BL_SUFFIX=_std_base cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41" EOF ;; thr) @@ -161,31 +165,41 @@ run_utests() { TPN=$(( TPN/THRD )) NODES=$(( TASKS/TPN + 1 )) cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} export THRD=${THRD} export JNPES=${JNPES} export TASKS=${TASKS} export TPN=${TPN} export NODES=${NODES} + export MPI_PROC_BIND="-bind-to user:0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,37,38,39,40,41" EOF ;; mpi) CREATE_BASELINE=false BL_SUFFIX=_std_base - JNPES=$(( JNPES/2 )) + if [[ ${CI_TEST} == true ]]; then + INPES=2 + JNPES=2 + else + JNPES=$(( JNPES/2 )) + fi WRITE_GROUP=2 WRTTASK_PER_GROUP=12 TASKS=$(( INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP )) NODES=$(( TASKS/TPN + 1 )) cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} + export INPES=${INPES} export JNPES=${JNPES} export WRITE_GROUP=${WRITE_GROUP} export WRTTASK_PER_GROUP=${WRTTASK_PER_GROUP} export TASKS=${TASKS} export NODES=${NODES} + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47" EOF ;; dcp) @@ -195,10 +209,12 @@ run_utests() { INPES=$JNPES JNPES=$temp cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} export INPES=${INPES} export JNPES=${JNPES} + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41" EOF ;; rst) # this is not going to work for regional model @@ -250,7 +266,8 @@ run_utests() { fi cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} export RESTART_FILE_PREFIX=${RESTART_FILE_PREFIX} export WARM_START=${WARM_START} @@ -261,6 +278,7 @@ run_utests() { export NA_INIT=${NA_INIT} export NSTF_NAME=${NSTF_NAME} export LIST_FILES="${LIST_FILES}" + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41" EOF ;; bit_base) @@ -268,8 +286,10 @@ run_utests() { BL_SUFFIX=_bit_base comp_nm=bit cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41" EOF ;; bit) @@ -277,8 +297,10 @@ run_utests() { BL_SUFFIX=_bit_base comp_nm=bit cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41" EOF ;; dbg_base) @@ -287,9 +309,11 @@ run_utests() { comp_nm=dbg WLCLK=30 cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} export WLCLK=${WLCLK} + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41" EOF ;; dbg) @@ -298,9 +322,11 @@ run_utests() { comp_nm=dbg WLCLK=30 cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} export WLCLK=${WLCLK} + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41" EOF ;; esac From e157c511355adfe4b54f7c74f535bed1b37de0cc Mon Sep 17 00:00:00 2001 From: Jun Wang <37633869+junwang-noaa@users.noreply.github.com> Date: Thu, 11 Mar 2021 18:18:26 -0500 Subject: [PATCH 079/109] Regional inlinepost (#364) * update fv3 and use new post lib * update fv3 to add Lambert conformal * add inline post in regional_quilt test, add inline post timer and fv3lam itag * update composite reflectivity name, fix field name name refl_10cm, fix cwm for post_regional, fix wtmpsfc in post, fix syntax in post_regional.F90, fix openmp sst field in regional post * add inline post for hafs regional latlon grid, use one input file directory for regional tests * add fv3_ccpp_regional_quilt_hafs test * update lam/hafs post control file with 75mb removed * fix fcstgrid and hbot, use hpc-stapc upp lib on hera * update upp lib to 10.0.4 * add lam3km xml file * fix the suite name in suite_FV3_GFS_v15_thompson_mynn_lam3km.xml * update post_itag_fv3lam * Add timing info for each test; skip-ci --- .github/workflows/build_test.yml | 4 +- .github/workflows/manage_workflows.yml | 11 +- FV3 | 2 +- modulefiles/cheyenne.gnu/fv3 | 2 +- modulefiles/cheyenne.gnu/fv3_debug | 2 +- modulefiles/cheyenne.intel/fv3 | 2 +- modulefiles/cheyenne.intel/fv3_debug | 2 +- modulefiles/gaea.intel/fv3 | 2 +- modulefiles/gaea.intel/fv3_debug | 2 +- modulefiles/hera.gnu/fv3 | 2 +- modulefiles/hera.intel/fv3 | 2 +- modulefiles/hera.intel/fv3_debug | 2 +- modulefiles/jet.intel/fv3 | 2 +- modulefiles/jet.intel/fv3_debug | 2 +- modulefiles/orion.intel/fv3 | 2 +- modulefiles/orion.intel/fv3_debug | 2 +- modulefiles/wcoss_cray/fv3 | 2 +- modulefiles/wcoss_cray/fv3_debug | 2 +- modulefiles/wcoss_dell_p3/fv3 | 2 +- modulefiles/wcoss_dell_p3/fv3_debug | 2 +- tests/RegressionTests_gaea.intel.log | 1025 +- tests/RegressionTests_hera.gnu.log | 216 +- tests/RegressionTests_hera.intel.log | 1121 +- tests/RegressionTests_jet.intel.log | 664 +- tests/RegressionTests_orion.intel.log | 795 +- tests/RegressionTests_wcoss_cray.log | 704 +- tests/RegressionTests_wcoss_dell_p3.log | 1120 +- tests/ci/json_helper.py | 8 +- tests/default_vars.sh | 1 + tests/fv3_conf/ccpp_gfdlmp_run.IN | 7 + tests/fv3_conf/ccpp_regional_run.IN | 16 +- tests/parm/model_configure_hafs.IN | 73 + tests/parm/model_configure_regional.IN | 78 + tests/parm/post_itag | 2 +- tests/parm/post_itag_fv3lam | 3 + tests/parm/post_itag_hafs | 4 + tests/parm/postxconfig-NT-fv3lam.txt | 17906 ++++++++++++++++ tests/parm/postxconfig-NT-hafs.txt | 3274 +++ tests/rt.conf | 1 + tests/rt.sh | 4 +- tests/rt_utils.sh | 4 + tests/run_test.sh | 6 - tests/tests/fv3_ccpp_gfdlmprad_32bit_post | 1 + tests/tests/fv3_ccpp_regional_control | 3 + tests/tests/fv3_ccpp_regional_control_debug | 2 + tests/tests/fv3_ccpp_regional_quilt | 16 +- tests/tests/fv3_ccpp_regional_quilt_hafs | 39 + .../fv3_ccpp_regional_quilt_netcdf_parallel | 3 + tests/tests/fv3_ccpp_regional_restart | 2 + 49 files changed, 25057 insertions(+), 2092 deletions(-) create mode 100755 tests/parm/model_configure_hafs.IN create mode 100755 tests/parm/model_configure_regional.IN create mode 100644 tests/parm/post_itag_fv3lam create mode 100644 tests/parm/post_itag_hafs create mode 100644 tests/parm/postxconfig-NT-fv3lam.txt create mode 100644 tests/parm/postxconfig-NT-hafs.txt create mode 100644 tests/tests/fv3_ccpp_regional_quilt_hafs diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 5130be682a..ae8e75dd7f 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -3,8 +3,7 @@ name: Pull request tests on: push: branches: ['develop'] - pull_request_review: - types: [submitted] + pull_request: branches: ['develop'] jobs: @@ -45,7 +44,6 @@ jobs: build: name: Build (${{ matrix.bld_set }}) needs: setup - if: github.event_name == 'push' || (github.event.review.state == 'approved' && toJson(github.event.pull_request.requested_reviewers) == '[]') runs-on: ubuntu-20.04 strategy: diff --git a/.github/workflows/manage_workflows.yml b/.github/workflows/manage_workflows.yml index 57a1552ddd..96544c3ca1 100644 --- a/.github/workflows/manage_workflows.yml +++ b/.github/workflows/manage_workflows.yml @@ -15,22 +15,23 @@ jobs: - name: Checkout codes uses: actions/checkout@v2 - - name: Check if skip-ci is requested + - name: Check if run-ci is requested run: | sleep 40 cd ${GITHUB_WORKSPACE}/tests/ci repo="${GITHUB_API_URL}/repos/${GITHUB_REPOSITORY}/actions/runs" tr_id=$(cat ${GITHUB_EVENT_PATH} | ./json_helper.py get_trigger_id) tr_br=$(cat ${GITHUB_EVENT_PATH} | ./json_helper.py get_trigger_br) - check=$(cat ${GITHUB_EVENT_PATH} | ./json_helper.py check_skip) + check=$(cat ${GITHUB_EVENT_PATH} | ./json_helper.py check_run) echo "TRIGGER_ID=${tr_id}" >> $GITHUB_ENV echo "TRIGGER_BR=${tr_br}" >> $GITHUB_ENV - echo "skip-ci: ${check}" - if [[ $check == yes ]]; then - echo "skip-ci is requested" + echo "run-ci: ${check}" + if [[ $check == no ]]; then + echo "run-ci is not requested" echo "CURR_JOB=cancelled" >> $GITHUB_ENV curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -H "Accept: application/vnd.github.v3+json" ${repo}/$tr_id/cancel else + echo "run-ci is requested" echo "CURR_JOB=running" >> $GITHUB_ENV fi diff --git a/FV3 b/FV3 index ddb56fe83e..1c6d8fe96c 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit ddb56fe83ee75b62bcc9dd03f74228f569a76ff0 +Subproject commit 1c6d8fe96c11e5ba2b88be06d77a7213b6e4ed91 diff --git a/modulefiles/cheyenne.gnu/fv3 b/modulefiles/cheyenne.gnu/fv3 index b9b86004be..1ff61402ce 100644 --- a/modulefiles/cheyenne.gnu/fv3 +++ b/modulefiles/cheyenne.gnu/fv3 @@ -42,4 +42,4 @@ 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 +module load upp/10.0.4 diff --git a/modulefiles/cheyenne.gnu/fv3_debug b/modulefiles/cheyenne.gnu/fv3_debug index 38d0a4a9af..1cbf4dbd07 100644 --- a/modulefiles/cheyenne.gnu/fv3_debug +++ b/modulefiles/cheyenne.gnu/fv3_debug @@ -42,4 +42,4 @@ 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 +module load upp/10.0.4 diff --git a/modulefiles/cheyenne.intel/fv3 b/modulefiles/cheyenne.intel/fv3 index 830e7c1f10..2c64847b3e 100644 --- a/modulefiles/cheyenne.intel/fv3 +++ b/modulefiles/cheyenne.intel/fv3 @@ -42,4 +42,4 @@ 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 +module load upp/10.0.4 diff --git a/modulefiles/cheyenne.intel/fv3_debug b/modulefiles/cheyenne.intel/fv3_debug index e757b778b3..fd32e5ea27 100644 --- a/modulefiles/cheyenne.intel/fv3_debug +++ b/modulefiles/cheyenne.intel/fv3_debug @@ -42,4 +42,4 @@ 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 +module load upp/10.0.4 diff --git a/modulefiles/gaea.intel/fv3 b/modulefiles/gaea.intel/fv3 index 34b193edbe..175b9702da 100644 --- a/modulefiles/gaea.intel/fv3 +++ b/modulefiles/gaea.intel/fv3 @@ -44,7 +44,7 @@ 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 +module load upp/10.0.4 # Needed at runtime: module load alps diff --git a/modulefiles/gaea.intel/fv3_debug b/modulefiles/gaea.intel/fv3_debug index e74d6f7d9f..74c180a7d5 100644 --- a/modulefiles/gaea.intel/fv3_debug +++ b/modulefiles/gaea.intel/fv3_debug @@ -44,7 +44,7 @@ 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 +module load upp/10.0.4 # Needed at runtime: module load alps diff --git a/modulefiles/hera.gnu/fv3 b/modulefiles/hera.gnu/fv3 index c20b313c4f..31255b1b3d 100644 --- a/modulefiles/hera.gnu/fv3 +++ b/modulefiles/hera.gnu/fv3 @@ -39,4 +39,4 @@ 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 +module load upp/10.0.4 diff --git a/modulefiles/hera.intel/fv3 b/modulefiles/hera.intel/fv3 index cdbfa0e629..7b20135794 100644 --- a/modulefiles/hera.intel/fv3 +++ b/modulefiles/hera.intel/fv3 @@ -39,4 +39,4 @@ 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 +module load upp/10.0.4 diff --git a/modulefiles/hera.intel/fv3_debug b/modulefiles/hera.intel/fv3_debug index ce6eb2fe40..dd65fa1b95 100644 --- a/modulefiles/hera.intel/fv3_debug +++ b/modulefiles/hera.intel/fv3_debug @@ -39,4 +39,4 @@ 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 +module load upp/10.0.4 diff --git a/modulefiles/jet.intel/fv3 b/modulefiles/jet.intel/fv3 index e2762bd904..c94db9a4c0 100644 --- a/modulefiles/jet.intel/fv3 +++ b/modulefiles/jet.intel/fv3 @@ -39,4 +39,4 @@ 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 +module load upp/10.0.4 diff --git a/modulefiles/jet.intel/fv3_debug b/modulefiles/jet.intel/fv3_debug index e2762bd904..c94db9a4c0 100644 --- a/modulefiles/jet.intel/fv3_debug +++ b/modulefiles/jet.intel/fv3_debug @@ -39,4 +39,4 @@ 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 +module load upp/10.0.4 diff --git a/modulefiles/orion.intel/fv3 b/modulefiles/orion.intel/fv3 index 017eaabe18..55f9a7b721 100644 --- a/modulefiles/orion.intel/fv3 +++ b/modulefiles/orion.intel/fv3 @@ -39,4 +39,4 @@ 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 +module load upp/10.0.4 diff --git a/modulefiles/orion.intel/fv3_debug b/modulefiles/orion.intel/fv3_debug index 95d2d15719..7f3e02d608 100644 --- a/modulefiles/orion.intel/fv3_debug +++ b/modulefiles/orion.intel/fv3_debug @@ -39,4 +39,4 @@ 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 +module load upp/10.0.4 diff --git a/modulefiles/wcoss_cray/fv3 b/modulefiles/wcoss_cray/fv3 index 2610523416..ef6fd67a9c 100644 --- a/modulefiles/wcoss_cray/fv3 +++ b/modulefiles/wcoss_cray/fv3 @@ -53,7 +53,7 @@ module load gfsio/1.4.1 module load sfcio/1.4.1 module load sigio/2.3.2 -module load upp/10.0.0 +module load upp/10.0.4 ## WCOSS Cray execution prereqs: module load rca diff --git a/modulefiles/wcoss_cray/fv3_debug b/modulefiles/wcoss_cray/fv3_debug index 2610523416..ef6fd67a9c 100644 --- a/modulefiles/wcoss_cray/fv3_debug +++ b/modulefiles/wcoss_cray/fv3_debug @@ -53,7 +53,7 @@ module load gfsio/1.4.1 module load sfcio/1.4.1 module load sigio/2.3.2 -module load upp/10.0.0 +module load upp/10.0.4 ## WCOSS Cray execution prereqs: module load rca diff --git a/modulefiles/wcoss_dell_p3/fv3 b/modulefiles/wcoss_dell_p3/fv3 index 94fc924ff0..a675477c49 100644 --- a/modulefiles/wcoss_dell_p3/fv3 +++ b/modulefiles/wcoss_dell_p3/fv3 @@ -41,4 +41,4 @@ 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 +module load upp/10.0.4 diff --git a/modulefiles/wcoss_dell_p3/fv3_debug b/modulefiles/wcoss_dell_p3/fv3_debug index 3fcf0c73cb..89b4a7ca85 100644 --- a/modulefiles/wcoss_dell_p3/fv3_debug +++ b/modulefiles/wcoss_dell_p3/fv3_debug @@ -41,4 +41,4 @@ 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 +module load upp/10.0.4 diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 6839e2ab1f..57c9707b75 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Mon Mar 8 16:06:02 EST 2021 +Wed Mar 10 23:49:30 EST 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -67,11 +67,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 71.879939 + Test 001 fv3_ccpp_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -135,11 +138,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 45.479937 + Test 002 fv3_ccpp_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -203,11 +209,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 67.437709 + Test 003 fv3_ccpp_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -253,11 +262,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 29.789835 + Test 004 fv3_ccpp_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 @@ -321,11 +333,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 46.534065 + Test 005 fv3_ccpp_read_inc PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 @@ -369,11 +384,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 102.810236 + Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 @@ -417,11 +435,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 57.094290 + Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 @@ -465,11 +486,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 106.821628 + Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 @@ -513,11 +537,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 56.212204 + Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 @@ -561,11 +588,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 40.633752 + Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 @@ -609,11 +639,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 111.998164 + Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +710,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 49.542202 + Test 012 fv3_ccpp_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_ca_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -745,11 +781,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 30.611443 + Test 013 fv3_ccpp_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_lndp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,11 +852,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 82.246724 + Test 014 fv3_ccpp_lndp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_iau_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -881,11 +923,14 @@ Checking test 015 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 + +The total amount of wall time = 41.432752 + Test 015 fv3_ccpp_iau PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -929,11 +974,14 @@ Checking test 016 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 + +The total amount of wall time = 55.593878 + Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1003,11 +1051,14 @@ 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 + +The total amount of wall time = 88.167645 + Test 017 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 @@ -1071,11 +1122,14 @@ 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 + +The total amount of wall time = 39.678305 + Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1127,11 +1181,14 @@ 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 + +The total amount of wall time = 308.729178 + Test 019 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 @@ -1194,54 +1251,87 @@ 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 + +The total amount of wall time = 336.800521 + Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 + +The total amount of wall time = 674.277602 + Test 021 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 + +The total amount of wall time = 369.867623 + Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF24 .........OK + +The total amount of wall time = 692.693256 + Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_regional_quilt_hafs_prod +Checking test 024 fv3_ccpp_regional_quilt_hafs results .... + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing HURPRS.GrbF00 .........OK + Comparing HURPRS.GrbF24 .........OK + +The total amount of wall time = 691.047012 + +Test 024 fv3_ccpp_regional_quilt_hafs PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS +The total amount of wall time = 696.277027 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfdlmp_prod -Checking test 025 fv3_ccpp_gfdlmp results .... +Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfdlmp_prod +Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1284,12 +1374,15 @@ 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 +The total amount of wall time = 47.019292 + +Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 027 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 +1425,15 @@ 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 + +The total amount of wall time = 57.698579 + +Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 028 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 +1476,15 @@ 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 +The total amount of wall time = 56.000749 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_csawmg_prod -Checking test 028 fv3_ccpp_csawmg results .... +Test 028 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_csawmg_prod +Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1428,12 +1527,15 @@ 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 +The total amount of wall time = 124.841259 + +Test 029 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_satmedmf_prod -Checking test 029 fv3_ccpp_satmedmf results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_satmedmf_prod +Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1476,12 +1578,15 @@ 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 +The total amount of wall time = 51.615928 + +Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_satmedmfq_prod -Checking test 030 fv3_ccpp_satmedmfq results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_satmedmfq_prod +Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1524,12 +1629,15 @@ 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 +The total amount of wall time = 51.791689 + +Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfdlmp_32bit_prod -Checking test 031 fv3_ccpp_gfdlmp_32bit results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfdlmp_32bit_prod +Checking test 032 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 +1680,15 @@ 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 + +The total amount of wall time = 61.169533 + +Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 033 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 +1735,15 @@ 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 +The total amount of wall time = 78.411476 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_cpt_prod -Checking test 033 fv3_ccpp_cpt results .... +Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_cpt_prod +Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1678,12 +1792,15 @@ 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 +The total amount of wall time = 294.630625 + +Test 034 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gsd_prod -Checking test 034 fv3_ccpp_gsd results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gsd_prod +Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1770,12 +1887,15 @@ 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 + +The total amount of wall time = 201.390045 + +Test 035 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_rap_prod -Checking test 035 fv3_ccpp_rap results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_rap_prod +Checking test 036 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1838,12 +1958,15 @@ Checking test 035 fv3_ccpp_rap 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_rap PASS +The total amount of wall time = 94.505161 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_hrrr_prod -Checking test 036 fv3_ccpp_hrrr results .... +Test 036 fv3_ccpp_rap PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_hrrr_prod +Checking test 037 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1906,12 +2029,15 @@ Checking test 036 fv3_ccpp_hrrr 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_hrrr PASS + +The total amount of wall time = 101.088927 + +Test 037 fv3_ccpp_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_thompson_prod -Checking test 037 fv3_ccpp_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_thompson_prod +Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1974,12 +2100,15 @@ 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 +The total amount of wall time = 96.127321 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_thompson_no_aero_prod -Checking test 038 fv3_ccpp_thompson_no_aero results .... +Test 038 fv3_ccpp_thompson PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_thompson_no_aero_prod +Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2042,12 +2171,15 @@ 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 +The total amount of wall time = 88.237360 + +Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_rrfs_v1beta_prod -Checking test 039 fv3_ccpp_rrfs_v1beta results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_rrfs_v1beta_prod +Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2110,12 +2242,15 @@ 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 + +The total amount of wall time = 127.295775 + +Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v15p2_prod -Checking test 040 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v15p2_prod +Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2178,12 +2313,15 @@ 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 +The total amount of wall time = 113.824807 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_prod -Checking test 041 fv3_ccpp_gfs_v16 results .... +Test 041 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_prod +Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2258,12 +2396,15 @@ Checking test 041 fv3_ccpp_gfs_v16 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_v16 PASS +The total amount of wall time = 118.238990 + +Test 042 fv3_ccpp_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_restart_prod -Checking test 042 fv3_ccpp_gfs_v16_restart results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_restart_prod +Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2308,12 +2449,15 @@ Checking test 042 fv3_ccpp_gfs_v16_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_v16_restart PASS +The total amount of wall time = 61.823498 + +Test 043 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_stochy_prod -Checking test 043 fv3_ccpp_gfs_v16_stochy results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_stochy_prod +Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2376,12 +2520,15 @@ Checking test 043 fv3_ccpp_gfs_v16_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_v16_stochy PASS +The total amount of wall time = 56.790071 + +Test 044 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2444,12 +2591,15 @@ 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 + +The total amount of wall time = 192.819262 + +Test 045 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2512,12 +2662,15 @@ Checking test 045 fv3_ccpp_gfs_v16_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_v16_RRTMGP PASS +The total amount of wall time = 188.241337 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +Test 046 fv3_ccpp_gfs_v16_RRTMGP PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2574,12 +2727,15 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 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_v16_RRTMGP_c192L127 PASS +The total amount of wall time = 721.716280 + +Test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod -Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2642,12 +2798,15 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd 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_v16_RRTMGP_2thrd PASS + +The total amount of wall time = 285.972241 + +Test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfsv16_csawmg_prod -Checking test 048 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2690,12 +2849,15 @@ Checking test 048 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 048 fv3_ccpp_gfsv16_csawmg PASS +The total amount of wall time = 134.805037 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 049 fv3_ccpp_gfsv16_csawmgt results .... +Test 049 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2738,12 +2900,15 @@ Checking test 049 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 049 fv3_ccpp_gfsv16_csawmgt PASS + +The total amount of wall time = 131.735341 + +Test 050 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gocart_clm_prod -Checking test 050 fv3_ccpp_gocart_clm results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2786,12 +2951,15 @@ Checking test 050 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 050 fv3_ccpp_gocart_clm PASS +The total amount of wall time = 93.155558 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_flake_prod -Checking test 051 fv3_ccpp_gfs_v16_flake results .... +Test 051 fv3_ccpp_gocart_clm PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_flake_prod +Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2854,12 +3022,15 @@ Checking test 051 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v16_flake PASS +The total amount of wall time = 125.310744 + +Test 052 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2922,12 +3093,15 @@ Checking test 052 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 052 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + +The total amount of wall time = 191.664954 + +Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 Comparing phyf012.nc .........OK @@ -2940,12 +3114,15 @@ Checking test 053 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 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +The total amount of wall time = 323.331796 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 054 fv3_ccpp_gfsv16_ugwpv1 results .... +Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3002,12 +3179,15 @@ Checking test 054 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gfsv16_ugwpv1 PASS +The total amount of wall time = 212.057827 + +Test 055 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3064,12 +3244,15 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart 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_gfsv16_ugwpv1_warmstart PASS +The total amount of wall time = 185.861434 + +Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 056 fv3_ccpp_gfs_v15p2_debug results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 @@ -3132,12 +3315,15 @@ Checking test 056 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 056 fv3_ccpp_gfs_v15p2_debug PASS +The total amount of wall time = 238.402428 + +Test 057 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_debug_prod -Checking test 057 fv3_ccpp_gfs_v16_debug results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_debug_prod +Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3200,12 +3386,15 @@ Checking test 057 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS + +The total amount of wall time = 169.431694 + +Test 058 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 @@ -3268,12 +3457,15 @@ Checking test 058 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 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +The total amount of wall time = 378.715427 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 059 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3336,23 +3528,29 @@ Checking test 059 fv3_ccpp_gfs_v16_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 059 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +The total amount of wall time = 385.737574 + +Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_regional_control_debug_prod -Checking test 060 fv3_ccpp_regional_control_debug results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_regional_control_debug_prod +Checking test 061 fv3_ccpp_regional_control_debug 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 060 fv3_ccpp_regional_control_debug PASS + +The total amount of wall time = 370.707402 + +Test 061 fv3_ccpp_regional_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_control_debug_prod -Checking test 061 fv3_ccpp_control_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_control_debug_prod +Checking test 062 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3377,12 +3575,15 @@ Checking test 061 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 061 fv3_ccpp_control_debug PASS +The total amount of wall time = 129.017790 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_stretched_nest_debug_prod -Checking test 062 fv3_ccpp_stretched_nest_debug results .... +Test 062 fv3_ccpp_control_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_stretched_nest_debug_prod +Checking test 063 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 @@ -3397,12 +3598,15 @@ Checking test 062 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 062 fv3_ccpp_stretched_nest_debug PASS + +The total amount of wall time = 436.258349 + +Test 063 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gsd_debug_prod -Checking test 063 fv3_ccpp_gsd_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gsd_debug_prod +Checking test 064 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3465,12 +3669,15 @@ Checking test 063 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 063 fv3_ccpp_gsd_debug PASS +The total amount of wall time = 195.679115 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 064 fv3_ccpp_gsd_diag3d_debug results .... +Test 064 fv3_ccpp_gsd_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3533,12 +3740,15 @@ Checking test 064 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 064 fv3_ccpp_gsd_diag3d_debug PASS +The total amount of wall time = 220.811716 + +Test 065 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_thompson_debug_prod -Checking test 065 fv3_ccpp_thompson_debug results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_thompson_debug_prod +Checking test 066 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3601,12 +3811,15 @@ Checking test 065 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 065 fv3_ccpp_thompson_debug PASS + +The total amount of wall time = 341.338745 + +Test 066 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 066 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 067 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 @@ -3669,12 +3882,15 @@ Checking test 066 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 066 fv3_ccpp_thompson_no_aero_debug PASS +The total amount of wall time = 334.493393 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 067 fv3_ccpp_rrfs_v1beta_debug results .... +Test 067 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3737,12 +3953,15 @@ Checking test 067 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 067 fv3_ccpp_rrfs_v1beta_debug PASS +The total amount of wall time = 192.572636 + +Test 068 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 069 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 @@ -3805,12 +4024,15 @@ Checking test 068 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 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +The total amount of wall time = 204.114611 + +Test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3823,12 +4045,15 @@ Checking test 069 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 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +The total amount of wall time = 377.484603 + +Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 070 fv3_ccpp_gfsv16_ugwpv1_debug results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3885,12 +4110,15 @@ Checking test 070 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 070 fv3_ccpp_gfsv16_ugwpv1_debug PASS + +The total amount of wall time = 578.718317 + +Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_control_prod -Checking test 071 cpld_control results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_control_prod +Checking test 072 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3938,12 +4166,15 @@ Checking test 071 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 071 cpld_control PASS +The total amount of wall time = 142.475405 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_restart_prod -Checking test 072 cpld_restart results .... +Test 072 cpld_control PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_restart_prod +Checking test 073 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3991,12 +4222,15 @@ Checking test 072 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 072 cpld_restart PASS +The total amount of wall time = 81.454095 + +Test 073 cpld_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_controlfrac_prod -Checking test 073 cpld_controlfrac results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_controlfrac_prod +Checking test 074 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4044,12 +4278,15 @@ Checking test 073 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 073 cpld_controlfrac PASS + +The total amount of wall time = 111.339128 + +Test 074 cpld_controlfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_restartfrac_prod -Checking test 074 cpld_restartfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_restartfrac_prod +Checking test 075 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4097,12 +4334,15 @@ Checking test 074 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 074 cpld_restartfrac PASS +The total amount of wall time = 84.296301 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_2threads_prod -Checking test 075 cpld_2threads results .... +Test 075 cpld_restartfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_2threads_prod +Checking test 076 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4150,12 +4390,15 @@ Checking test 075 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 075 cpld_2threads PASS + +The total amount of wall time = 148.825931 + +Test 076 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_decomp_prod -Checking test 076 cpld_decomp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_decomp_prod +Checking test 077 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4203,12 +4446,15 @@ Checking test 076 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 076 cpld_decomp PASS +The total amount of wall time = 141.368757 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_satmedmf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_satmedmf_prod -Checking test 077 cpld_satmedmf results .... +Test 077 cpld_decomp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_satmedmf_prod +Checking test 078 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4256,12 +4502,15 @@ Checking test 077 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 077 cpld_satmedmf PASS +The total amount of wall time = 117.089853 + +Test 078 cpld_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_ca_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_ca_prod -Checking test 078 cpld_ca results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_ca_prod +Checking test 079 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4309,12 +4558,15 @@ Checking test 078 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 078 cpld_ca PASS + +The total amount of wall time = 116.544807 + +Test 079 cpld_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_control_c192_prod -Checking test 079 cpld_control_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_control_c192_prod +Checking test 080 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4362,12 +4614,15 @@ Checking test 079 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 079 cpld_control_c192 PASS +The total amount of wall time = 411.886232 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_restart_c192_prod -Checking test 080 cpld_restart_c192 results .... +Test 080 cpld_control_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_restart_c192_prod +Checking test 081 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4415,12 +4670,15 @@ Checking test 080 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 080 cpld_restart_c192 PASS +The total amount of wall time = 309.309992 + +Test 081 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_controlfrac_c192_prod -Checking test 081 cpld_controlfrac_c192 results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_controlfrac_c192_prod +Checking test 082 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4468,12 +4726,15 @@ Checking test 081 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 081 cpld_controlfrac_c192 PASS +The total amount of wall time = 445.528386 + +Test 082 cpld_controlfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_restartfrac_c192_prod -Checking test 082 cpld_restartfrac_c192 results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_restartfrac_c192_prod +Checking test 083 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4521,12 +4782,15 @@ Checking test 082 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 082 cpld_restartfrac_c192 PASS +The total amount of wall time = 309.137753 + +Test 083 cpld_restartfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_control_c384_prod -Checking test 083 cpld_control_c384 results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_control_c384_prod +Checking test 084 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4577,12 +4841,15 @@ Checking test 083 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 083 cpld_control_c384 PASS + +The total amount of wall time = 1546.714039 + +Test 084 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_restart_c384_prod -Checking test 084 cpld_restart_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_restart_c384_prod +Checking test 085 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4633,12 +4900,15 @@ Checking test 084 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 084 cpld_restart_c384 PASS +The total amount of wall time = 796.800994 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_controlfrac_c384_prod -Checking test 085 cpld_controlfrac_c384 results .... +Test 085 cpld_restart_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_controlfrac_c384_prod +Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4689,12 +4959,15 @@ Checking test 085 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 085 cpld_controlfrac_c384 PASS +The total amount of wall time = 1553.722990 + +Test 086 cpld_controlfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_restartfrac_c384_prod -Checking test 086 cpld_restartfrac_c384 results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_restartfrac_c384_prod +Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4745,12 +5018,15 @@ Checking test 086 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 086 cpld_restartfrac_c384 PASS + +The total amount of wall time = 784.875883 + +Test 087 cpld_restartfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_bmark_prod -Checking test 087 cpld_bmark results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_bmark_prod +Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4801,12 +5077,15 @@ Checking test 087 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 087 cpld_bmark PASS +The total amount of wall time = 888.843350 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_restart_bmark_prod -Checking test 088 cpld_restart_bmark results .... +Test 088 cpld_bmark PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_restart_bmark_prod +Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4857,12 +5136,15 @@ Checking test 088 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 088 cpld_restart_bmark PASS + +The total amount of wall time = 487.983406 + +Test 089 cpld_restart_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_bmarkfrac_prod -Checking test 089 cpld_bmarkfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_bmarkfrac_prod +Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4913,12 +5195,15 @@ Checking test 089 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 089 cpld_bmarkfrac PASS +The total amount of wall time = 881.609724 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_restart_bmarkfrac_prod -Checking test 090 cpld_restart_bmarkfrac results .... +Test 090 cpld_bmarkfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_restart_bmarkfrac_prod +Checking test 091 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4969,12 +5254,15 @@ Checking test 090 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 090 cpld_restart_bmarkfrac PASS +The total amount of wall time = 484.045787 + +Test 091 cpld_restart_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_debug_prod -Checking test 091 cpld_debug results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_debug_prod +Checking test 092 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5022,12 +5310,15 @@ Checking test 091 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 091 cpld_debug PASS + +The total amount of wall time = 267.085066 + +Test 092 cpld_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_debugfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/cpld_debugfrac_prod -Checking test 092 cpld_debugfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_debugfrac_prod +Checking test 093 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5075,75 +5366,99 @@ Checking test 092 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 092 cpld_debugfrac PASS +The total amount of wall time = 296.262553 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/datm_control_cfsr -Checking test 093 datm_control_cfsr results .... +Test 093 cpld_debugfrac PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 093 datm_control_cfsr PASS +The total amount of wall time = 107.140837 + +Test 094 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/datm_restart_cfsr -Checking test 094 datm_restart_cfsr results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 094 datm_restart_cfsr PASS +The total amount of wall time = 87.418527 + +Test 095 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/datm_control_gefs -Checking test 095 datm_control_gefs results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 095 datm_control_gefs PASS +The total amount of wall time = 99.058010 + +Test 096 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/datm_bulk_cfsr -Checking test 096 datm_bulk_cfsr results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 096 datm_bulk_cfsr PASS + +The total amount of wall time = 101.950732 + +Test 097 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/datm_bulk_gefs -Checking test 097 datm_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/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 097 datm_bulk_gefs PASS +The total amount of wall time = 95.303315 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/datm_mx025_gefs -Checking test 098 datm_mx025_gefs results .... +Test 098 datm_bulk_gefs PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/datm_mx025_gefs +Checking test 099 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 098 datm_mx025_gefs PASS +The total amount of wall time = 413.509203 + +Test 099 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_16782/datm_debug_cfsr -Checking test 099 datm_debug_cfsr results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/datm_debug_cfsr +Checking test 100 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 099 datm_debug_cfsr PASS + +The total amount of wall time = 229.191832 + +Test 100 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 8 17:33:59 EST 2021 -Elapsed time: 01h:27m:58s. Have a nice day! +Thu Mar 11 01:32:31 EST 2021 +Elapsed time: 01h:43m:01s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index ea267abfb0..0cf96fbf28 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Tue Mar 9 02:24:31 UTC 2021 +Thu Mar 11 04:38:26 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -47,11 +47,14 @@ Checking test 001 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 + + 0: The total amount of wall time = 228.928511 + Test 001 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/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 @@ -115,11 +118,14 @@ Checking test 002 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 + + 0: The total amount of wall time = 577.414918 + Test 002 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -195,11 +201,14 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 612.909904 + Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -245,11 +254,14 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 299.511406 + Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -313,11 +325,14 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 351.324631 + Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -381,11 +396,14 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 600.387548 + Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/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 @@ -449,11 +467,14 @@ Checking test 007 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 + + 0: The total amount of wall time = 659.427112 + Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -517,11 +538,14 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 677.855428 + Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,11 +633,14 @@ Checking test 009 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 + + 0: The total amount of wall time = 800.970911 + Test 009 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +704,14 @@ Checking test 010 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 + + 0: The total amount of wall time = 383.554784 + Test 010 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/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 @@ -745,11 +775,14 @@ Checking test 011 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 + + 0: The total amount of wall time = 379.956664 + Test 011 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/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 @@ -813,11 +846,14 @@ Checking test 012 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 + + 0: The total amount of wall time = 401.095014 + Test 012 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/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 @@ -881,11 +917,14 @@ Checking test 013 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 + + 0: The total amount of wall time = 614.154864 + Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/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 @@ -899,11 +938,14 @@ Checking test 014 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 + + 0: The total amount of wall time = 440.167809 + Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -961,11 +1003,14 @@ Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 932.188774 + Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1023,11 +1068,14 @@ Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 898.067129 + Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1053,11 +1101,14 @@ Checking test 017 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK + + 0: The total amount of wall time = 84.248625 + Test 017 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1121,11 +1172,14 @@ Checking test 018 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 + + 0: The total amount of wall time = 266.443451 + Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1189,11 +1243,14 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 132.765800 + Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1257,11 +1314,14 @@ Checking test 020 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 + + 0: The total amount of wall time = 316.856819 + Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1325,11 +1385,14 @@ Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 323.819863 + Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1399,22 +1462,28 @@ Checking test 022 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 + + 0: The total amount of wall time = 422.991944 + Test 022 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_regional_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_regional_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug 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 + + 0: The total amount of wall time = 169.546328 + Test 023 fv3_ccpp_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1478,11 +1547,14 @@ Checking test 024 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 + + 0: The total amount of wall time = 119.057669 + Test 024 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1546,11 +1618,14 @@ Checking test 025 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 + + 0: The total amount of wall time = 123.232038 + Test 025 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1614,11 +1689,14 @@ Checking test 026 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 + + 0: The total amount of wall time = 201.192608 + Test 026 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,11 +1760,14 @@ Checking test 027 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 + + 0: The total amount of wall time = 193.279496 + Test 027 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1750,11 +1831,14 @@ Checking test 028 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 + + 0: The total amount of wall time = 132.791963 + Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1768,11 +1852,14 @@ Checking test 029 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 + + 0: The total amount of wall time = 218.005064 + Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Brian.Curtis/FV3_RT/rt_1783/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1830,9 +1917,12 @@ Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 390.871945 + Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 9 02:51:47 UTC 2021 -Elapsed time: 00h:27m:16s. Have a nice day! +Thu Mar 11 05:46:39 UTC 2021 +Elapsed time: 01h:08m:14s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index bb3973682d..8a0544f7ff 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Tue Mar 9 11:36:16 UTC 2021 +Thu Mar 11 04:47:28 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -67,11 +67,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 38.847021 + Test 001 fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -135,11 +138,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 40.020551 + Test 002 fv3_ccpp_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -203,11 +209,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 50.005275 + Test 003 fv3_ccpp_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -253,11 +262,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 18.911121 + Test 004 fv3_ccpp_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -321,11 +333,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 36.302064 + Test 005 fv3_ccpp_read_inc PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -369,11 +384,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 111.504889 + Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -417,11 +435,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 37.103751 + Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -465,11 +486,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 48.195836 + Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -513,11 +537,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 37.050624 + Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -561,11 +588,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 36.334234 + Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -609,11 +639,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 96.080035 + Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +710,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 40.746476 + Test 012 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -745,11 +781,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 26.308067 + Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,11 +852,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 43.231026 + Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -881,11 +923,14 @@ Checking test 015 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 + + 0: The total amount of wall time = 35.822357 + Test 015 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -929,11 +974,14 @@ Checking test 016 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 + + 0: The total amount of wall time = 36.172514 + Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -978,11 +1026,14 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK + + 0: The total amount of wall time = 644.400928 + Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -1027,11 +1078,14 @@ Checking test 018 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 + + 0: The total amount of wall time = 789.733393 + Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -1076,11 +1130,14 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing out_grd.glo_10m .........OK Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK + + 0: The total amount of wall time = 707.269801 + Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1150,11 +1207,14 @@ Checking test 020 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 + + 0: The total amount of wall time = 75.590668 + Test 020 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -1218,11 +1278,14 @@ Checking test 021 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 + + 0: The total amount of wall time = 35.829614 + Test 021 fv3_ccpp_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1274,11 +1337,14 @@ Checking test 022 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 + + 0: The total amount of wall time = 216.987196 + Test 022 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -1341,54 +1407,87 @@ Checking test 023 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 + + 0: The total amount of wall time = 237.923605 + Test 023 fv3_ccpp_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 + + 0: The total amount of wall time = 547.440857 + Test 024 fv3_ccpp_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 + + 0: The total amount of wall time = 303.407490 + Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF24 .........OK + + 0: The total amount of wall time = 578.057769 + Test 026 fv3_ccpp_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_regional_quilt_hafs_prod +Checking test 027 fv3_ccpp_regional_quilt_hafs results .... + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing HURPRS.GrbF00 .........OK + Comparing HURPRS.GrbF24 .........OK + + 0: The total amount of wall time = 574.433683 + +Test 027 fv3_ccpp_regional_quilt_hafs PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 028 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 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS + 0: The total amount of wall time = 575.556723 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfdlmp_prod -Checking test 028 fv3_ccpp_gfdlmp results .... +Test 028 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -1431,12 +1530,15 @@ 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 + + 0: The total amount of wall time = 41.546399 + +Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -1479,12 +1581,15 @@ 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 + 0: The total amount of wall time = 41.790392 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... +Test 030 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -1527,12 +1632,15 @@ 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 + + 0: The total amount of wall time = 41.817553 + +Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_csawmg_prod -Checking test 031 fv3_ccpp_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -1575,12 +1683,15 @@ 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 + 0: The total amount of wall time = 109.265795 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_satmedmf_prod -Checking test 032 fv3_ccpp_satmedmf results .... +Test 032 fv3_ccpp_csawmg PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -1623,12 +1734,15 @@ 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 + 0: The total amount of wall time = 45.453729 + +Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_satmedmfq_prod -Checking test 033 fv3_ccpp_satmedmfq results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -1671,12 +1785,15 @@ Checking test 033 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 033 fv3_ccpp_satmedmfq PASS + 0: The total amount of wall time = 45.522243 + +Test 034 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfdlmp_32bit_prod -Checking test 034 fv3_ccpp_gfdlmp_32bit results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -1719,12 +1836,15 @@ Checking test 034 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 034 fv3_ccpp_gfdlmp_32bit PASS + 0: The total amount of wall time = 37.302690 + +Test 035 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -1771,12 +1891,15 @@ Checking test 035 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 035 fv3_ccpp_gfdlmprad_32bit_post PASS + + 0: The total amount of wall time = 73.016685 + +Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_cpt_prod -Checking test 036 fv3_ccpp_cpt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -1825,12 +1948,15 @@ Checking test 036 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 036 fv3_ccpp_cpt PASS + 0: The total amount of wall time = 256.046674 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gsd_prod -Checking test 037 fv3_ccpp_gsd results .... +Test 037 fv3_ccpp_cpt PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -1917,12 +2043,15 @@ Checking test 037 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 037 fv3_ccpp_gsd PASS + + 0: The total amount of wall time = 177.453498 + +Test 038 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_rap_prod -Checking test 038 fv3_ccpp_rap results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -1985,12 +2114,15 @@ Checking test 038 fv3_ccpp_rap 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_rap PASS + 0: The total amount of wall time = 87.769241 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_hrrr_prod -Checking test 039 fv3_ccpp_hrrr results .... +Test 039 fv3_ccpp_rap PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -2053,12 +2185,15 @@ Checking test 039 fv3_ccpp_hrrr 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_hrrr PASS + 0: The total amount of wall time = 94.770760 + +Test 040 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_thompson_prod -Checking test 040 fv3_ccpp_thompson results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -2121,12 +2256,15 @@ Checking test 040 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 040 fv3_ccpp_thompson PASS + 0: The total amount of wall time = 83.374227 + +Test 041 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_thompson_no_aero_prod -Checking test 041 fv3_ccpp_thompson_no_aero results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -2189,12 +2327,15 @@ Checking test 041 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 041 fv3_ccpp_thompson_no_aero PASS + 0: The total amount of wall time = 78.551317 + +Test 042 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_rrfs_v1beta_prod -Checking test 042 fv3_ccpp_rrfs_v1beta results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -2257,12 +2398,15 @@ Checking test 042 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 042 fv3_ccpp_rrfs_v1beta PASS + + 0: The total amount of wall time = 96.522225 + +Test 043 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v15p2_prod -Checking test 043 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -2325,12 +2469,15 @@ Checking test 043 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 043 fv3_ccpp_gfs_v15p2 PASS + 0: The total amount of wall time = 91.161335 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_prod -Checking test 044 fv3_ccpp_gfs_v16 results .... +Test 044 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v16_prod +Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2405,12 +2552,15 @@ Checking test 044 fv3_ccpp_gfs_v16 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_v16 PASS + + 0: The total amount of wall time = 101.843061 + +Test 045 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_restart_prod -Checking test 045 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v16_restart_prod +Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2455,12 +2605,15 @@ Checking test 045 fv3_ccpp_gfs_v16_restart 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_v16_restart PASS + 0: The total amount of wall time = 53.515162 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_stochy_prod -Checking test 046 fv3_ccpp_gfs_v16_stochy results .... +Test 046 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v16_stochy_prod +Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2523,12 +2676,15 @@ Checking test 046 fv3_ccpp_gfs_v16_stochy 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_v16_stochy PASS + 0: The total amount of wall time = 46.702151 + +Test 047 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 @@ -2591,12 +2747,15 @@ Checking test 047 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 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS + 0: The total amount of wall time = 152.950553 + +Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2659,12 +2818,15 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP 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_gfs_v16_RRTMGP PASS + 0: The total amount of wall time = 156.221866 + +Test 049 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 Comparing phyf000.tile3.nc .........OK @@ -2721,12 +2883,15 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 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_v16_RRTMGP_c192L127 PASS + + 0: The total amount of wall time = 620.642311 + +Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod -Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2789,12 +2954,15 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd 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_gfs_v16_RRTMGP_2thrd PASS + 0: The total amount of wall time = 185.934517 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfsv16_csawmg_prod -Checking test 051 fv3_ccpp_gfsv16_csawmg results .... +Test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2837,12 +3005,15 @@ Checking test 051 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 051 fv3_ccpp_gfsv16_csawmg PASS + + 0: The total amount of wall time = 115.488065 + +Test 052 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2885,12 +3056,15 @@ Checking test 052 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 052 fv3_ccpp_gfsv16_csawmgt PASS + 0: The total amount of wall time = 113.993756 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gocart_clm_prod -Checking test 053 fv3_ccpp_gocart_clm results .... +Test 053 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2933,12 +3107,15 @@ Checking test 053 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 053 fv3_ccpp_gocart_clm PASS + 0: The total amount of wall time = 46.715761 + +Test 054 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_flake_prod -Checking test 054 fv3_ccpp_gfs_v16_flake results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v16_flake_prod +Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3001,12 +3178,15 @@ Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gfs_v16_flake PASS + 0: The total amount of wall time = 93.944884 + +Test 055 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3069,12 +3249,15 @@ Checking test 055 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 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + 0: The total amount of wall time = 141.035159 + +Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/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 Comparing phyf012.nc .........OK @@ -3087,12 +3270,15 @@ Checking test 056 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 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + 0: The total amount of wall time = 281.572364 + +Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3149,12 +3335,15 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1 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_gfsv16_ugwpv1 PASS + 0: The total amount of wall time = 164.423875 + +Test 058 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3211,12 +3400,15 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart 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_gfsv16_ugwpv1_warmstart PASS + 0: The total amount of wall time = 163.604922 + +Test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 060 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3279,12 +3471,15 @@ Checking test 059 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 059 fv3_ccpp_gfs_v15p2_debug PASS + 0: The total amount of wall time = 225.263121 + +Test 060 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_debug_prod -Checking test 060 fv3_ccpp_gfs_v16_debug results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v16_debug_prod +Checking test 061 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3347,12 +3542,15 @@ Checking test 060 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS + + 0: The total amount of wall time = 172.568789 + +Test 061 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 062 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 @@ -3415,12 +3613,15 @@ Checking test 061 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 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + 0: The total amount of wall time = 345.349891 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +Test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 063 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3483,23 +3684,29 @@ Checking test 062 fv3_ccpp_gfs_v16_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 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + 0: The total amount of wall time = 360.035713 + +Test 063 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_regional_control_debug_prod -Checking test 063 fv3_ccpp_regional_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_regional_control_debug_prod +Checking test 064 fv3_ccpp_regional_control_debug 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 063 fv3_ccpp_regional_control_debug PASS + 0: The total amount of wall time = 355.129690 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_control_debug_prod -Checking test 064 fv3_ccpp_control_debug results .... +Test 064 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_control_debug_prod +Checking test 065 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3524,12 +3731,15 @@ Checking test 064 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 064 fv3_ccpp_control_debug PASS + 0: The total amount of wall time = 135.087176 + +Test 065 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_stretched_nest_debug_prod -Checking test 065 fv3_ccpp_stretched_nest_debug results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_stretched_nest_debug_prod +Checking test 066 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 @@ -3544,12 +3754,15 @@ Checking test 065 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 065 fv3_ccpp_stretched_nest_debug PASS + 0: The total amount of wall time = 355.057531 + +Test 066 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gsd_debug_prod -Checking test 066 fv3_ccpp_gsd_debug results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gsd_debug_prod +Checking test 067 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3612,12 +3825,15 @@ Checking test 066 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 066 fv3_ccpp_gsd_debug PASS + 0: The total amount of wall time = 198.107482 + +Test 067 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 068 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3680,12 +3896,15 @@ Checking test 067 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 067 fv3_ccpp_gsd_diag3d_debug PASS + + 0: The total amount of wall time = 258.614235 + +Test 068 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_thompson_debug_prod -Checking test 068 fv3_ccpp_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_thompson_debug_prod +Checking test 069 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3748,12 +3967,15 @@ Checking test 068 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 068 fv3_ccpp_thompson_debug PASS + 0: The total amount of wall time = 330.440949 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... +Test 069 fv3_ccpp_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 070 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 @@ -3816,12 +4038,15 @@ Checking test 069 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 069 fv3_ccpp_thompson_no_aero_debug PASS + + 0: The total amount of wall time = 313.837494 + +Test 070 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 071 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3884,12 +4109,15 @@ Checking test 070 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 070 fv3_ccpp_rrfs_v1beta_debug PASS + 0: The total amount of wall time = 191.687250 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +Test 071 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 072 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 @@ -3952,12 +4180,15 @@ Checking test 071 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 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + 0: The total amount of wall time = 201.572832 + +Test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3970,12 +4201,15 @@ Checking test 072 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 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + 0: The total amount of wall time = 382.125025 + +Test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 074 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -4032,12 +4266,15 @@ Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 073 fv3_ccpp_gfsv16_ugwpv1_debug PASS + 0: The total amount of wall time = 552.967621 + +Test 074 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_control_prod -Checking test 074 cpld_control results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_control_prod +Checking test 075 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4085,12 +4322,15 @@ Checking test 074 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 074 cpld_control PASS + + 0: The total amount of wall time = 89.789485 + +Test 075 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restart_prod -Checking test 075 cpld_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restart_prod +Checking test 076 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4138,12 +4378,15 @@ Checking test 075 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 075 cpld_restart PASS + 0: The total amount of wall time = 56.698134 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_controlfrac_prod -Checking test 076 cpld_controlfrac results .... +Test 076 cpld_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_controlfrac_prod +Checking test 077 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4191,12 +4434,15 @@ Checking test 076 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 076 cpld_controlfrac PASS + + 0: The total amount of wall time = 88.567193 + +Test 077 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restartfrac_prod -Checking test 077 cpld_restartfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restartfrac_prod +Checking test 078 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4244,12 +4490,15 @@ Checking test 077 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 077 cpld_restartfrac PASS + 0: The total amount of wall time = 56.171508 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_2threads_prod -Checking test 078 cpld_2threads results .... +Test 078 cpld_restartfrac PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_2threads_prod +Checking test 079 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4297,12 +4546,15 @@ Checking test 078 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 078 cpld_2threads PASS + 0: The total amount of wall time = 118.642920 + +Test 079 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_decomp_prod -Checking test 079 cpld_decomp results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_decomp_prod +Checking test 080 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4350,12 +4602,15 @@ Checking test 079 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 079 cpld_decomp PASS + 0: The total amount of wall time = 86.529674 + +Test 080 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_satmedmf_prod -Checking test 080 cpld_satmedmf results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_satmedmf_prod +Checking test 081 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4403,12 +4658,15 @@ Checking test 080 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 080 cpld_satmedmf PASS + 0: The total amount of wall time = 87.046741 + +Test 081 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_ca_prod -Checking test 081 cpld_ca results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_ca_prod +Checking test 082 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4456,12 +4714,15 @@ Checking test 081 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 081 cpld_ca PASS + + 0: The total amount of wall time = 87.641169 + +Test 082 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_control_c192_prod -Checking test 082 cpld_control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_control_c192_prod +Checking test 083 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4509,12 +4770,15 @@ Checking test 082 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 082 cpld_control_c192 PASS + 0: The total amount of wall time = 380.448932 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restart_c192_prod -Checking test 083 cpld_restart_c192 results .... +Test 083 cpld_control_c192 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restart_c192_prod +Checking test 084 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4562,12 +4826,15 @@ Checking test 083 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 083 cpld_restart_c192 PASS + + 0: The total amount of wall time = 290.226976 + +Test 084 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_controlfrac_c192_prod -Checking test 084 cpld_controlfrac_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_controlfrac_c192_prod +Checking test 085 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4615,12 +4882,15 @@ Checking test 084 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 084 cpld_controlfrac_c192 PASS + 0: The total amount of wall time = 373.300011 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restartfrac_c192_prod -Checking test 085 cpld_restartfrac_c192 results .... +Test 085 cpld_controlfrac_c192 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restartfrac_c192_prod +Checking test 086 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4668,12 +4938,15 @@ Checking test 085 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 085 cpld_restartfrac_c192 PASS + 0: The total amount of wall time = 263.792896 + +Test 086 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_control_c384_prod -Checking test 086 cpld_control_c384 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_control_c384_prod +Checking test 087 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4724,12 +4997,15 @@ Checking test 086 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 086 cpld_control_c384 PASS + 0: The total amount of wall time = 1310.432379 + +Test 087 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restart_c384_prod -Checking test 087 cpld_restart_c384 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restart_c384_prod +Checking test 088 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4780,12 +5056,15 @@ Checking test 087 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 087 cpld_restart_c384 PASS + 0: The total amount of wall time = 705.530928 + +Test 088 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_controlfrac_c384_prod -Checking test 088 cpld_controlfrac_c384 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_controlfrac_c384_prod +Checking test 089 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4836,12 +5115,15 @@ Checking test 088 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 088 cpld_controlfrac_c384 PASS + + 0: The total amount of wall time = 1303.676220 + +Test 089 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restartfrac_c384_prod -Checking test 089 cpld_restartfrac_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restartfrac_c384_prod +Checking test 090 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4892,12 +5174,15 @@ Checking test 089 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 089 cpld_restartfrac_c384 PASS + 0: The total amount of wall time = 713.418890 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_bmark_prod -Checking test 090 cpld_bmark results .... +Test 090 cpld_restartfrac_c384 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_bmark_prod +Checking test 091 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4948,12 +5233,15 @@ Checking test 090 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 090 cpld_bmark PASS + + 0: The total amount of wall time = 811.332986 + +Test 091 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restart_bmark_prod -Checking test 091 cpld_restart_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restart_bmark_prod +Checking test 092 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5004,12 +5292,15 @@ Checking test 091 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 091 cpld_restart_bmark PASS + 0: The total amount of wall time = 480.510452 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_bmarkfrac_prod -Checking test 092 cpld_bmarkfrac results .... +Test 092 cpld_restart_bmark PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_bmarkfrac_prod +Checking test 093 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5060,12 +5351,15 @@ Checking test 092 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 092 cpld_bmarkfrac PASS + 0: The total amount of wall time = 811.847493 + +Test 093 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restart_bmarkfrac_prod -Checking test 093 cpld_restart_bmarkfrac results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restart_bmarkfrac_prod +Checking test 094 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5116,12 +5410,15 @@ Checking test 093 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 093 cpld_restart_bmarkfrac PASS + 0: The total amount of wall time = 458.627575 + +Test 094 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_bmarkfrac_v16_prod -Checking test 094 cpld_bmarkfrac_v16 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_bmarkfrac_v16_prod +Checking test 095 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5172,12 +5469,15 @@ Checking test 094 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 094 cpld_bmarkfrac_v16 PASS + 0: The total amount of wall time = 1316.643390 + +Test 095 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_restart_bmarkfrac_v16_prod -Checking test 095 cpld_restart_bmarkfrac_v16 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restart_bmarkfrac_v16_prod +Checking test 096 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5228,12 +5528,15 @@ Checking test 095 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 095 cpld_restart_bmarkfrac_v16 PASS + + 0: The total amount of wall time = 734.262756 + +Test 096 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_bmark_wave_prod -Checking test 096 cpld_bmark_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_bmark_wave_prod +Checking test 097 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5287,12 +5590,15 @@ Checking test 096 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 096 cpld_bmark_wave PASS + 0: The total amount of wall time = 1365.954724 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_bmarkfrac_wave_prod -Checking test 097 cpld_bmarkfrac_wave results .... +Test 097 cpld_bmark_wave PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_bmarkfrac_wave_prod +Checking test 098 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5346,12 +5652,15 @@ Checking test 097 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 097 cpld_bmarkfrac_wave PASS + + 0: The total amount of wall time = 1358.033744 + +Test 098 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_bmarkfrac_wave_v16_prod -Checking test 098 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_bmarkfrac_wave_v16_prod +Checking test 099 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5404,12 +5713,15 @@ Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -Test 098 cpld_bmarkfrac_wave_v16 PASS + 0: The total amount of wall time = 893.031224 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_control_wave_prod -Checking test 099 cpld_control_wave results .... +Test 099 cpld_bmarkfrac_wave_v16 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_control_wave_prod +Checking test 100 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5460,12 +5772,15 @@ Checking test 099 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 099 cpld_control_wave PASS + 0: The total amount of wall time = 775.019941 + +Test 100 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_debug_prod -Checking test 100 cpld_debug results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_debug_prod +Checking test 101 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5513,12 +5828,15 @@ Checking test 100 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 100 cpld_debug PASS + 0: The total amount of wall time = 286.728343 + +Test 101 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/cpld_debugfrac_prod -Checking test 101 cpld_debugfrac results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_debugfrac_prod +Checking test 102 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5566,87 +5884,114 @@ Checking test 101 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 101 cpld_debugfrac PASS + 0: The total amount of wall time = 289.000053 + +Test 102 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/datm_control_cfsr -Checking test 102 datm_control_cfsr results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/datm_control_cfsr +Checking test 103 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 102 datm_control_cfsr PASS + + 0: The total amount of wall time = 97.196312 + +Test 103 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/datm_restart_cfsr -Checking test 103 datm_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/datm_restart_cfsr +Checking test 104 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 103 datm_restart_cfsr PASS + 0: The total amount of wall time = 63.611350 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/datm_control_gefs -Checking test 104 datm_control_gefs results .... +Test 104 datm_restart_cfsr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/datm_control_gefs +Checking test 105 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 104 datm_control_gefs PASS + + 0: The total amount of wall time = 89.450115 + +Test 105 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/datm_bulk_cfsr -Checking test 105 datm_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/datm_bulk_cfsr +Checking test 106 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 105 datm_bulk_cfsr PASS + 0: The total amount of wall time = 93.005023 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/datm_bulk_gefs -Checking test 106 datm_bulk_gefs results .... +Test 106 datm_bulk_cfsr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/datm_bulk_gefs +Checking test 107 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 106 datm_bulk_gefs PASS + 0: The total amount of wall time = 90.160933 + +Test 107 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/datm_mx025_cfsr -Checking test 107 datm_mx025_cfsr results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/datm_mx025_cfsr +Checking test 108 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 107 datm_mx025_cfsr PASS + 0: The total amount of wall time = 355.074179 + +Test 108 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/datm_mx025_gefs -Checking test 108 datm_mx025_gefs results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/datm_mx025_gefs +Checking test 109 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 108 datm_mx025_gefs PASS + 0: The total amount of wall time = 358.539482 + +Test 109 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_308372/datm_debug_cfsr -Checking test 109 datm_debug_cfsr results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/datm_debug_cfsr +Checking test 110 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 109 datm_debug_cfsr PASS + + 0: The total amount of wall time = 267.365307 + +Test 110 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 9 12:50:18 UTC 2021 -Elapsed time: 01h:14m:02s. Have a nice day! +Thu Mar 11 07:06:33 UTC 2021 +Elapsed time: 02h:19m:06s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 6bfda87c1b..84597bf538 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Mon Mar 8 20:07:53 GMT 2021 +Thu Mar 11 04:46:29 GMT 2021 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -67,11 +67,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 66.542423 + Test 001 fv3_ccpp_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_2threads_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_2threads_prod Checking test 002 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -135,11 +138,14 @@ Checking test 002 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 286.101953 + Test 002 fv3_ccpp_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_restart_prod Checking test 003 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -185,11 +191,14 @@ Checking test 003 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 28.171468 + Test 003 fv3_ccpp_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_read_inc_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_read_inc_prod Checking test 004 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -253,11 +262,14 @@ Checking test 004 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 52.381358 + Test 004 fv3_ccpp_read_inc PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -301,11 +313,14 @@ Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 159.605990 + Test 005 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_wrtGauss_netcdf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -349,11 +364,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 52.505488 + Test 006 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -397,11 +415,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 66.462195 + Test 007 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -445,11 +466,14 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 57.380380 + Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -493,11 +517,14 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 52.269123 + Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -541,11 +568,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 140.476093 + Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_stochy_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,11 +639,14 @@ Checking test 011 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 58.271035 + Test 011 fv3_ccpp_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_ca_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_ca_prod Checking test 012 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +710,14 @@ Checking test 012 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 45.492455 + Test 012 fv3_ccpp_ca PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_lndp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_lndp_prod Checking test 013 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -745,11 +781,14 @@ Checking test 013 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 67.320315 + Test 013 fv3_ccpp_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_iau_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_iau_prod Checking test 014 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,11 +852,14 @@ 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 + +The total amount of wall time = 52.245505 + Test 014 fv3_ccpp_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_lheatstrg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -861,11 +903,14 @@ 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 + +The total amount of wall time = 51.784310 + Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_multigases_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -935,11 +980,14 @@ 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 + +The total amount of wall time = 103.909160 + Test 016 fv3_ccpp_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_control_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1003,11 +1051,14 @@ 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 + +The total amount of wall time = 57.944167 + Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_stretched_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1059,11 +1110,14 @@ 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 + +The total amount of wall time = 395.910595 + Test 018 fv3_ccpp_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_stretched_nest_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1126,54 +1180,87 @@ 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 + +The total amount of wall time = 423.202846 + Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_regional_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_regional_control_prod Checking test 020 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 + +The total amount of wall time = 853.534108 + Test 020 fv3_ccpp_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_regional_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK + +The total amount of wall time = 478.279084 + Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_regional_quilt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_regional_quilt_prod Checking test 022 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 + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF24 .........OK + +The total amount of wall time = 851.966658 + Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_regional_quilt_hafs_prod +Checking test 023 fv3_ccpp_regional_quilt_hafs results .... + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing HURPRS.GrbF00 .........OK + Comparing HURPRS.GrbF24 .........OK + +The total amount of wall time = 845.359204 + +Test 023 fv3_ccpp_regional_quilt_hafs PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/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 phyf024.nc .........OK -Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS +The total amount of wall time = 841.481521 + +Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfdlmp_prod -Checking test 024 fv3_ccpp_gfdlmp results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfdlmp_prod +Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1216,12 +1303,15 @@ 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 + +The total amount of wall time = 60.287781 + +Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 026 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 +1354,15 @@ 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 + +The total amount of wall time = 60.516353 + +Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 027 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 +1405,15 @@ 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 +The total amount of wall time = 60.731237 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_csawmg_prod -Checking test 027 fv3_ccpp_csawmg results .... +Test 027 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_csawmg_prod +Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1360,12 +1456,15 @@ 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 + +The total amount of wall time = 154.241454 + +Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_satmedmf_prod -Checking test 028 fv3_ccpp_satmedmf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_satmedmf_prod +Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1408,12 +1507,15 @@ 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 +The total amount of wall time = 64.474757 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_satmedmfq_prod -Checking test 029 fv3_ccpp_satmedmfq results .... +Test 029 fv3_ccpp_satmedmf PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_satmedmfq_prod +Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1456,12 +1558,15 @@ 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 + +The total amount of wall time = 65.118775 + +Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfdlmp_32bit_prod -Checking test 030 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfdlmp_32bit_prod +Checking test 031 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 +1609,15 @@ 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 +The total amount of wall time = 52.474730 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... +Test 031 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 032 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 +1664,15 @@ Checking test 031 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 031 fv3_ccpp_gfdlmprad_32bit_post PASS + +The total amount of wall time = 94.928597 + +Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_cpt_prod -Checking test 032 fv3_ccpp_cpt results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_cpt_prod +Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1610,12 +1721,15 @@ 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 +The total amount of wall time = 353.980954 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gsd_prod -Checking test 033 fv3_ccpp_gsd results .... +Test 033 fv3_ccpp_cpt PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gsd_prod +Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1702,12 +1816,15 @@ 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 +The total amount of wall time = 239.211682 + +Test 034 fv3_ccpp_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_thompson_prod -Checking test 034 fv3_ccpp_thompson results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_thompson_prod +Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1770,12 +1887,15 @@ 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 +The total amount of wall time = 113.543027 + +Test 035 fv3_ccpp_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_thompson_no_aero_prod -Checking test 035 fv3_ccpp_thompson_no_aero results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_thompson_no_aero_prod +Checking test 036 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 +1958,15 @@ 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 +The total amount of wall time = 108.265669 + +Test 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v15p2_prod -Checking test 036 fv3_ccpp_gfs_v15p2 results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v15p2_prod +Checking test 037 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1906,12 +2029,15 @@ Checking test 036 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 036 fv3_ccpp_gfs_v15p2 PASS +The total amount of wall time = 117.608873 + +Test 037 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_prod -Checking test 037 fv3_ccpp_gfs_v16 results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_prod +Checking test 038 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1986,12 +2112,15 @@ Checking test 037 fv3_ccpp_gfs_v16 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_v16 PASS + +The total amount of wall time = 145.470006 + +Test 038 fv3_ccpp_gfs_v16 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_restart_prod -Checking test 038 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_restart_prod +Checking test 039 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2036,12 +2165,15 @@ Checking test 038 fv3_ccpp_gfs_v16_restart 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_v16_restart PASS + +The total amount of wall time = 74.419832 + +Test 039 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_stochy_prod -Checking test 039 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_stochy_prod +Checking test 040 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2104,12 +2236,15 @@ Checking test 039 fv3_ccpp_gfs_v16_stochy 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_v16_stochy PASS +The total amount of wall time = 65.858731 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 040 fv3_ccpp_gfs_v15p2_RRTMGP results .... +Test 040 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2172,12 +2307,15 @@ Checking test 040 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 040 fv3_ccpp_gfs_v15p2_RRTMGP PASS + +The total amount of wall time = 185.507805 + +Test 041 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 041 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 042 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2240,12 +2378,15 @@ Checking test 041 fv3_ccpp_gfs_v16_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_v16_RRTMGP PASS +The total amount of wall time = 188.306399 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +Test 042 fv3_ccpp_gfs_v16_RRTMGP PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 043 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2302,12 +2443,15 @@ Checking test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 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_v16_RRTMGP_c192L127 PASS +The total amount of wall time = 802.559143 + +Test 043 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod -Checking test 043 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2370,12 +2514,15 @@ Checking test 043 fv3_ccpp_gfs_v16_RRTMGP_2thrd 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_v16_RRTMGP_2thrd PASS +The total amount of wall time = 828.600845 + +Test 044 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfsv16_csawmg_prod -Checking test 044 fv3_ccpp_gfsv16_csawmg results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/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 @@ -2418,12 +2565,15 @@ 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 +The total amount of wall time = 163.139133 + +Test 045 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 045 fv3_ccpp_gfsv16_csawmgt results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/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 @@ -2466,12 +2616,15 @@ 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 +The total amount of wall time = 160.882235 + +Test 046 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gocart_clm_prod -Checking test 046 fv3_ccpp_gocart_clm results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/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 @@ -2514,12 +2667,15 @@ 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 +The total amount of wall time = 66.997611 + +Test 047 fv3_ccpp_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_flake_prod -Checking test 047 fv3_ccpp_gfs_v16_flake results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_flake_prod +Checking test 048 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2582,12 +2738,15 @@ Checking test 047 fv3_ccpp_gfs_v16_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_v16_flake PASS +The total amount of wall time = 121.789071 + +Test 048 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/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 @@ -2650,12 +2809,15 @@ 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 +The total amount of wall time = 193.337111 + +Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/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 @@ -2668,12 +2830,15 @@ 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 +The total amount of wall time = 356.944431 + +Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2730,12 +2895,15 @@ Checking test 050 fv3_ccpp_gfsv16_ugwpv1 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_gfsv16_ugwpv1 PASS + +The total amount of wall time = 230.730935 + +Test 051 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2792,12 +2960,15 @@ Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + +The total amount of wall time = 229.743903 + +Test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2860,12 +3031,15 @@ 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 +The total amount of wall time = 271.090344 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_debug_prod -Checking test 053 fv3_ccpp_gfs_v16_debug results .... +Test 053 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_debug_prod +Checking test 054 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2928,12 +3102,15 @@ Checking test 053 fv3_ccpp_gfs_v16_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_v16_debug PASS + +The total amount of wall time = 208.458036 + +Test 054 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2996,12 +3173,15 @@ 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 +The total amount of wall time = 438.544615 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 056 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3064,23 +3244,29 @@ Checking test 055 fv3_ccpp_gfs_v16_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_v16_RRTMGP_debug PASS +The total amount of wall time = 447.399807 + +Test 056 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_regional_control_debug_prod -Checking test 056 fv3_ccpp_regional_control_debug results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_regional_control_debug_prod +Checking test 057 fv3_ccpp_regional_control_debug 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 056 fv3_ccpp_regional_control_debug PASS +The total amount of wall time = 453.523924 + +Test 057 fv3_ccpp_regional_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_control_debug_prod -Checking test 057 fv3_ccpp_control_debug results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_control_debug_prod +Checking test 058 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3105,12 +3291,15 @@ Checking test 057 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 057 fv3_ccpp_control_debug PASS +The total amount of wall time = 157.309296 + +Test 058 fv3_ccpp_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_stretched_nest_debug_prod -Checking test 058 fv3_ccpp_stretched_nest_debug results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_stretched_nest_debug_prod +Checking test 059 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 @@ -3125,12 +3314,15 @@ Checking test 058 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 058 fv3_ccpp_stretched_nest_debug PASS +The total amount of wall time = 534.118507 + +Test 059 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gsd_debug_prod -Checking test 059 fv3_ccpp_gsd_debug results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/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 @@ -3193,12 +3385,15 @@ Checking test 059 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 059 fv3_ccpp_gsd_debug PASS + +The total amount of wall time = 238.744935 + +Test 060 fv3_ccpp_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/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 @@ -3261,12 +3456,15 @@ Checking test 060 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 060 fv3_ccpp_gsd_diag3d_debug PASS + +The total amount of wall time = 271.068780 + +Test 061 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_thompson_debug_prod -Checking test 061 fv3_ccpp_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/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 @@ -3329,12 +3527,15 @@ Checking test 061 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 061 fv3_ccpp_thompson_debug PASS +The total amount of wall time = 417.402034 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... +Test 062 fv3_ccpp_thompson_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/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 @@ -3397,12 +3598,15 @@ Checking test 062 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 062 fv3_ccpp_thompson_no_aero_debug PASS + +The total amount of wall time = 401.078022 + +Test 063 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/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 @@ -3465,12 +3669,15 @@ Checking test 063 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 063 fv3_ccpp_rrfs_v1beta_debug PASS +The total amount of wall time = 231.439845 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +Test 064 fv3_ccpp_rrfs_v1beta_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/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 @@ -3533,12 +3740,15 @@ Checking test 064 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 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + +The total amount of wall time = 247.179931 + +Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/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 @@ -3551,12 +3761,15 @@ Checking test 065 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 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +The total amount of wall time = 464.466697 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_120427/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 066 fv3_ccpp_gfsv16_ugwpv1_debug results .... +Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 067 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3613,9 +3826,12 @@ Checking test 066 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 066 fv3_ccpp_gfsv16_ugwpv1_debug PASS + +The total amount of wall time = 711.095837 + +Test 067 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 8 22:15:05 GMT 2021 -Elapsed time: 02h:07m:12s. Have a nice day! +Thu Mar 11 08:26:21 GMT 2021 +Elapsed time: 03h:39m:52s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 022e285878..8b6d3e973f 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Mon Mar 8 21:01:16 CST 2021 +Tue Mar 9 22:01:21 CST 2021 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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-20210308/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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-20210308/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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-20210308/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -256,8 +256,8 @@ Checking test 004 fv3_ccpp_restart results .... Test 004 fv3_ccpp_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -324,8 +324,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-20210308/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -372,8 +372,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-20210308/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -420,8 +420,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-20210308/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -468,8 +468,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-20210308/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -516,8 +516,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-20210308/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -564,8 +564,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-20210308/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -612,8 +612,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-20210308/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -680,8 +680,8 @@ Checking test 012 fv3_ccpp_stochy results .... Test 012 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -748,8 +748,8 @@ Checking test 013 fv3_ccpp_ca results .... Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_lndp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,8 +816,8 @@ Checking test 014 fv3_ccpp_lndp results .... Test 014 fv3_ccpp_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,8 +884,8 @@ Checking test 015 fv3_ccpp_iau results .... Test 015 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_lheatstrg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -932,8 +932,8 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,8 +981,8 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -1030,8 +1030,8 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -1079,8 +1079,8 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1153,8 +1153,8 @@ Checking test 020 fv3_ccpp_multigases results .... Test 020 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -1221,8 +1221,8 @@ Checking test 021 fv3_ccpp_control_32bit results .... Test 021 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1277,8 +1277,8 @@ Checking test 022 fv3_ccpp_stretched results .... Test 022 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -1344,8 +1344,8 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Test 023 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1355,8 +1355,8 @@ Checking test 024 fv3_ccpp_regional_control results .... Test 024 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1364,31 +1364,46 @@ Checking test 025 fv3_ccpp_regional_restart results .... Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF24 .........OK Test 026 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_regional_quilt_hafs_prod +Checking test 027 fv3_ccpp_regional_quilt_hafs results .... 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 + Comparing HURPRS.GrbF00 .........OK + Comparing HURPRS.GrbF24 .........OK +Test 027 fv3_ccpp_regional_quilt_hafs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 028 fv3_ccpp_regional_quilt_netcdf_parallel results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK +Test 028 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfdlmp_prod -Checking test 028 fv3_ccpp_gfdlmp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -1431,12 +1446,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 029 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -1479,12 +1494,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 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -1527,12 +1542,12 @@ 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 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_csawmg_prod -Checking test 031 fv3_ccpp_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -1575,12 +1590,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 032 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_satmedmf_prod -Checking test 032 fv3_ccpp_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -1623,12 +1638,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 033 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_satmedmfq_prod -Checking test 033 fv3_ccpp_satmedmfq results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -1671,12 +1686,12 @@ Checking test 033 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 033 fv3_ccpp_satmedmfq PASS +Test 034 fv3_ccpp_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfdlmp_32bit_prod -Checking test 034 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -1719,12 +1734,12 @@ Checking test 034 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 034 fv3_ccpp_gfdlmp_32bit PASS +Test 035 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -1771,12 +1786,12 @@ Checking test 035 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 035 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_cpt_prod -Checking test 036 fv3_ccpp_cpt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -1825,12 +1840,12 @@ Checking test 036 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 036 fv3_ccpp_cpt PASS +Test 037 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gsd_prod -Checking test 037 fv3_ccpp_gsd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -1917,12 +1932,12 @@ Checking test 037 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 037 fv3_ccpp_gsd PASS +Test 038 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_rap_prod -Checking test 038 fv3_ccpp_rap results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -1985,12 +2000,12 @@ Checking test 038 fv3_ccpp_rap 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_rap PASS +Test 039 fv3_ccpp_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_hrrr_prod -Checking test 039 fv3_ccpp_hrrr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -2053,12 +2068,12 @@ Checking test 039 fv3_ccpp_hrrr 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_hrrr PASS +Test 040 fv3_ccpp_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_thompson_prod -Checking test 040 fv3_ccpp_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -2121,12 +2136,12 @@ Checking test 040 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 040 fv3_ccpp_thompson PASS +Test 041 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_thompson_no_aero_prod -Checking test 041 fv3_ccpp_thompson_no_aero results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -2189,12 +2204,12 @@ Checking test 041 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 041 fv3_ccpp_thompson_no_aero PASS +Test 042 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_rrfs_v1beta_prod -Checking test 042 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -2257,12 +2272,12 @@ Checking test 042 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 042 fv3_ccpp_rrfs_v1beta PASS +Test 043 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v15p2_prod -Checking test 043 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -2325,12 +2340,12 @@ Checking test 043 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 043 fv3_ccpp_gfs_v15p2 PASS +Test 044 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_prod -Checking test 044 fv3_ccpp_gfs_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v16_prod +Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2405,12 +2420,12 @@ Checking test 044 fv3_ccpp_gfs_v16 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_v16 PASS +Test 045 fv3_ccpp_gfs_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_restart_prod -Checking test 045 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v16_restart_prod +Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2455,12 +2470,12 @@ Checking test 045 fv3_ccpp_gfs_v16_restart 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_v16_restart PASS +Test 046 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_stochy_prod -Checking test 046 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v16_stochy_prod +Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2523,12 +2538,12 @@ Checking test 046 fv3_ccpp_gfs_v16_stochy 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_v16_stochy PASS +Test 047 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 @@ -2591,12 +2606,12 @@ Checking test 047 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 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2659,12 +2674,12 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP 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_gfs_v16_RRTMGP PASS +Test 049 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 Comparing phyf000.tile3.nc .........OK @@ -2721,12 +2736,12 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 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_v16_RRTMGP_c192L127 PASS +Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod -Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2789,12 +2804,12 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd 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_gfs_v16_RRTMGP_2thrd PASS +Test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfsv16_csawmg_prod -Checking test 051 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2837,12 +2852,12 @@ Checking test 051 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 051 fv3_ccpp_gfsv16_csawmg PASS +Test 052 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2885,12 +2900,12 @@ Checking test 052 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 052 fv3_ccpp_gfsv16_csawmgt PASS +Test 053 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gocart_clm_prod -Checking test 053 fv3_ccpp_gocart_clm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2933,12 +2948,12 @@ Checking test 053 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 053 fv3_ccpp_gocart_clm PASS +Test 054 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_flake_prod -Checking test 054 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v16_flake_prod +Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3001,12 +3016,12 @@ Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gfs_v16_flake PASS +Test 055 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3069,12 +3084,12 @@ Checking test 055 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 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/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 Comparing phyf012.nc .........OK @@ -3087,12 +3102,12 @@ Checking test 056 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 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3149,12 +3164,12 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1 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_gfsv16_ugwpv1 PASS +Test 058 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3211,12 +3226,12 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart 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_gfsv16_ugwpv1_warmstart PASS +Test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 060 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3279,12 +3294,12 @@ Checking test 059 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 059 fv3_ccpp_gfs_v15p2_debug PASS +Test 060 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_debug_prod -Checking test 060 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v16_debug_prod +Checking test 061 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3347,12 +3362,12 @@ Checking test 060 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS +Test 061 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 062 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 @@ -3415,12 +3430,12 @@ Checking test 061 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 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 063 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3483,23 +3498,23 @@ Checking test 062 fv3_ccpp_gfs_v16_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 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 063 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_regional_control_debug_prod -Checking test 063 fv3_ccpp_regional_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_regional_control_debug_prod +Checking test 064 fv3_ccpp_regional_control_debug 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 063 fv3_ccpp_regional_control_debug PASS +Test 064 fv3_ccpp_regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_control_debug_prod -Checking test 064 fv3_ccpp_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_control_debug_prod +Checking test 065 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3524,12 +3539,12 @@ Checking test 064 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 064 fv3_ccpp_control_debug PASS +Test 065 fv3_ccpp_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_stretched_nest_debug_prod -Checking test 065 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_stretched_nest_debug_prod +Checking test 066 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 @@ -3544,12 +3559,12 @@ Checking test 065 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 065 fv3_ccpp_stretched_nest_debug PASS +Test 066 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gsd_debug_prod -Checking test 066 fv3_ccpp_gsd_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gsd_debug_prod +Checking test 067 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3612,12 +3627,12 @@ Checking test 066 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 066 fv3_ccpp_gsd_debug PASS +Test 067 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 068 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3680,12 +3695,12 @@ Checking test 067 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 067 fv3_ccpp_gsd_diag3d_debug PASS +Test 068 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_thompson_debug_prod -Checking test 068 fv3_ccpp_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_thompson_debug_prod +Checking test 069 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3748,12 +3763,12 @@ Checking test 068 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 068 fv3_ccpp_thompson_debug PASS +Test 069 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 070 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 @@ -3816,12 +3831,12 @@ Checking test 069 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 069 fv3_ccpp_thompson_no_aero_debug PASS +Test 070 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 071 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3884,12 +3899,12 @@ Checking test 070 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 070 fv3_ccpp_rrfs_v1beta_debug PASS +Test 071 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 072 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 @@ -3952,12 +3967,12 @@ Checking test 071 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 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3970,12 +3985,12 @@ Checking test 072 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 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 074 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -4032,12 +4047,12 @@ Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 073 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 074 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_control_prod -Checking test 074 cpld_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_control_prod +Checking test 075 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4085,12 +4100,12 @@ Checking test 074 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 074 cpld_control PASS +Test 075 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restart_prod -Checking test 075 cpld_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restart_prod +Checking test 076 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4138,12 +4153,12 @@ Checking test 075 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 075 cpld_restart PASS +Test 076 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_controlfrac_prod -Checking test 076 cpld_controlfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_controlfrac_prod +Checking test 077 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4191,12 +4206,12 @@ Checking test 076 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 076 cpld_controlfrac PASS +Test 077 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restartfrac_prod -Checking test 077 cpld_restartfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restartfrac_prod +Checking test 078 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4244,12 +4259,12 @@ Checking test 077 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 077 cpld_restartfrac PASS +Test 078 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_2threads_prod -Checking test 078 cpld_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_2threads_prod +Checking test 079 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4297,12 +4312,12 @@ Checking test 078 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 078 cpld_2threads PASS +Test 079 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_decomp_prod -Checking test 079 cpld_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_decomp_prod +Checking test 080 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4350,12 +4365,12 @@ Checking test 079 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 079 cpld_decomp PASS +Test 080 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_satmedmf_prod -Checking test 080 cpld_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_satmedmf_prod +Checking test 081 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4403,12 +4418,12 @@ Checking test 080 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 080 cpld_satmedmf PASS +Test 081 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_ca_prod -Checking test 081 cpld_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_ca_prod +Checking test 082 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4456,12 +4471,12 @@ Checking test 081 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 081 cpld_ca PASS +Test 082 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_control_c192_prod -Checking test 082 cpld_control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_control_c192_prod +Checking test 083 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4509,12 +4524,12 @@ Checking test 082 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 082 cpld_control_c192 PASS +Test 083 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restart_c192_prod -Checking test 083 cpld_restart_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restart_c192_prod +Checking test 084 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4562,12 +4577,12 @@ Checking test 083 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 083 cpld_restart_c192 PASS +Test 084 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_controlfrac_c192_prod -Checking test 084 cpld_controlfrac_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_controlfrac_c192_prod +Checking test 085 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4615,12 +4630,12 @@ Checking test 084 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 084 cpld_controlfrac_c192 PASS +Test 085 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restartfrac_c192_prod -Checking test 085 cpld_restartfrac_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restartfrac_c192_prod +Checking test 086 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4668,12 +4683,12 @@ Checking test 085 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 085 cpld_restartfrac_c192 PASS +Test 086 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_control_c384_prod -Checking test 086 cpld_control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_control_c384_prod +Checking test 087 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4724,12 +4739,12 @@ Checking test 086 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 086 cpld_control_c384 PASS +Test 087 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restart_c384_prod -Checking test 087 cpld_restart_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restart_c384_prod +Checking test 088 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4780,12 +4795,12 @@ Checking test 087 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 087 cpld_restart_c384 PASS +Test 088 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_controlfrac_c384_prod -Checking test 088 cpld_controlfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_controlfrac_c384_prod +Checking test 089 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4836,12 +4851,12 @@ Checking test 088 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 088 cpld_controlfrac_c384 PASS +Test 089 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restartfrac_c384_prod -Checking test 089 cpld_restartfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restartfrac_c384_prod +Checking test 090 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4892,12 +4907,12 @@ Checking test 089 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 089 cpld_restartfrac_c384 PASS +Test 090 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_bmark_prod -Checking test 090 cpld_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_bmark_prod +Checking test 091 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4948,12 +4963,12 @@ Checking test 090 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 090 cpld_bmark PASS +Test 091 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restart_bmark_prod -Checking test 091 cpld_restart_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restart_bmark_prod +Checking test 092 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5004,12 +5019,12 @@ Checking test 091 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 091 cpld_restart_bmark PASS +Test 092 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_bmarkfrac_prod -Checking test 092 cpld_bmarkfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_bmarkfrac_prod +Checking test 093 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5060,12 +5075,12 @@ Checking test 092 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 092 cpld_bmarkfrac PASS +Test 093 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restart_bmarkfrac_prod -Checking test 093 cpld_restart_bmarkfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restart_bmarkfrac_prod +Checking test 094 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5116,12 +5131,12 @@ Checking test 093 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 093 cpld_restart_bmarkfrac PASS +Test 094 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_bmarkfrac_v16_prod -Checking test 094 cpld_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_bmarkfrac_v16_prod +Checking test 095 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5172,12 +5187,12 @@ Checking test 094 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 094 cpld_bmarkfrac_v16 PASS +Test 095 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_restart_bmarkfrac_v16_prod -Checking test 095 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restart_bmarkfrac_v16_prod +Checking test 096 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5228,12 +5243,12 @@ Checking test 095 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 095 cpld_restart_bmarkfrac_v16 PASS +Test 096 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_bmark_wave_prod -Checking test 096 cpld_bmark_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_bmark_wave_prod +Checking test 097 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5287,12 +5302,12 @@ Checking test 096 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 096 cpld_bmark_wave PASS +Test 097 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_bmarkfrac_wave_prod -Checking test 097 cpld_bmarkfrac_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_bmarkfrac_wave_prod +Checking test 098 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5346,12 +5361,12 @@ Checking test 097 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 097 cpld_bmarkfrac_wave PASS +Test 098 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_bmarkfrac_wave_v16_prod -Checking test 098 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_bmarkfrac_wave_v16_prod +Checking test 099 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5404,12 +5419,12 @@ Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -Test 098 cpld_bmarkfrac_wave_v16 PASS +Test 099 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_control_wave_prod -Checking test 099 cpld_control_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_wave_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_control_wave_prod +Checking test 100 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5460,12 +5475,12 @@ Checking test 099 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 099 cpld_control_wave PASS +Test 100 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_debug_prod -Checking test 100 cpld_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_debug_prod +Checking test 101 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5513,12 +5528,12 @@ Checking test 100 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 100 cpld_debug PASS +Test 101 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/cpld_debugfrac_prod -Checking test 101 cpld_debugfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_debugfrac_prod +Checking test 102 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5566,87 +5581,87 @@ Checking test 101 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 101 cpld_debugfrac PASS +Test 102 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/datm_control_cfsr -Checking test 102 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/datm_control_cfsr +Checking test 103 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 102 datm_control_cfsr PASS +Test 103 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/datm_restart_cfsr -Checking test 103 datm_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/datm_restart_cfsr +Checking test 104 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 103 datm_restart_cfsr PASS +Test 104 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/datm_control_gefs -Checking test 104 datm_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/datm_control_gefs +Checking test 105 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 104 datm_control_gefs PASS +Test 105 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/datm_bulk_cfsr -Checking test 105 datm_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/datm_bulk_cfsr +Checking test 106 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 105 datm_bulk_cfsr PASS +Test 106 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/datm_bulk_gefs -Checking test 106 datm_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/datm_bulk_gefs +Checking test 107 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 106 datm_bulk_gefs PASS +Test 107 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/datm_mx025_cfsr -Checking test 107 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/datm_mx025_cfsr +Checking test 108 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 107 datm_mx025_cfsr PASS +Test 108 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/datm_mx025_gefs -Checking test 108 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/datm_mx025_gefs +Checking test 109 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 108 datm_mx025_gefs PASS +Test 109 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_312427/datm_debug_cfsr -Checking test 109 datm_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/datm_debug_cfsr +Checking test 110 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 109 datm_debug_cfsr PASS +Test 110 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 9 01:13:25 CST 2021 -Elapsed time: 04h:12m:10s. Have a nice day! +Wed Mar 10 02:25:26 CST 2021 +Elapsed time: 04h:24m:06s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index f38d1e5f14..3364b291ec 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Mon Mar 8 19:05:51 UTC 2021 +Thu Mar 11 04:46:55 UTC 2021 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -67,11 +67,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 52.577492 + Test 001 fv3_ccpp_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -135,11 +138,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 53.707638 + Test 002 fv3_ccpp_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -203,11 +209,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 59.547174 + Test 003 fv3_ccpp_2threads PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -253,11 +262,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 24.173806 + Test 004 fv3_ccpp_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 @@ -321,11 +333,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 48.767420 + Test 005 fv3_ccpp_read_inc PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 @@ -369,11 +384,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 122.646505 + Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 @@ -417,11 +435,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 48.456693 + Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 @@ -465,11 +486,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 54.091812 + Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 @@ -513,11 +537,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 48.383472 + Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 @@ -561,11 +588,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 48.803296 + Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 @@ -609,11 +639,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 121.163893 + Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +710,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 54.055113 + Test 012 fv3_ccpp_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_ca_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ca_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -745,11 +781,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 39.261935 + Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_lndp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lndp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,11 +852,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 56.809802 + Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -881,11 +923,14 @@ Checking test 015 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 + +The total amount of wall time = 48.285537 + Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -929,11 +974,14 @@ Checking test 016 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 + +The total amount of wall time = 49.303040 + Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1003,11 +1051,14 @@ 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 + +The total amount of wall time = 89.244079 + Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 @@ -1071,11 +1122,14 @@ 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 + +The total amount of wall time = 47.801773 + Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1127,11 +1181,14 @@ 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 + +The total amount of wall time = 324.298928 + Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 @@ -1194,54 +1251,87 @@ 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 + +The total amount of wall time = 372.027288 + Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 + +The total amount of wall time = 691.925206 + Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 + +The total amount of wall time = 410.701960 + Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF24 .........OK + +The total amount of wall time = 698.630709 + Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_hafs_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_regional_quilt_hafs_prod +Checking test 024 fv3_ccpp_regional_quilt_hafs results .... + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing HURPRS.GrbF00 .........OK + Comparing HURPRS.GrbF24 .........OK + +The total amount of wall time = 697.468732 + +Test 024 fv3_ccpp_regional_quilt_hafs PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 025 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 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS + +The total amount of wall time = 699.407210 + +Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfdlmp_prod -Checking test 025 fv3_ccpp_gfdlmp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfdlmp_prod +Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1284,12 +1374,15 @@ 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 +The total amount of wall time = 58.205333 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... +Test 026 fv3_ccpp_gfdlmp PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 027 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 +1425,15 @@ 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 +The total amount of wall time = 56.123592 + +Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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-20210309/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 028 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 +1476,15 @@ 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 +The total amount of wall time = 53.399459 + +Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_csawmg_prod -Checking test 028 fv3_ccpp_csawmg results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_csawmg_prod +Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1428,12 +1527,15 @@ 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 +The total amount of wall time = 129.818653 + +Test 029 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_satmedmf_prod -Checking test 029 fv3_ccpp_satmedmf results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_satmedmf_prod +Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1476,12 +1578,15 @@ 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 +The total amount of wall time = 58.750578 + +Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_satmedmfq_prod -Checking test 030 fv3_ccpp_satmedmfq results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_satmedmfq_prod +Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1524,12 +1629,15 @@ 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 + +The total amount of wall time = 58.797629 + +Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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-20210309/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfdlmp_32bit_prod +Checking test 032 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 +1680,15 @@ 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 + +The total amount of wall time = 48.394857 + +Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/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-20210309/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 033 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 +1735,15 @@ 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 +The total amount of wall time = 88.047965 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_cpt_prod -Checking test 033 fv3_ccpp_cpt results .... +Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_cpt_prod +Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1678,12 +1792,15 @@ 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 + +The total amount of wall time = 287.933571 + +Test 034 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gsd_prod -Checking test 034 fv3_ccpp_gsd results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gsd_prod +Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1770,12 +1887,15 @@ 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 +The total amount of wall time = 199.280403 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_rap_prod -Checking test 035 fv3_ccpp_rap results .... +Test 035 fv3_ccpp_gsd PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rap_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_rap_prod +Checking test 036 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1838,12 +1958,15 @@ Checking test 035 fv3_ccpp_rap 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_rap PASS +The total amount of wall time = 101.501036 + +Test 036 fv3_ccpp_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_hrrr_prod -Checking test 036 fv3_ccpp_hrrr results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_hrrr_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_hrrr_prod +Checking test 037 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1906,12 +2029,15 @@ Checking test 036 fv3_ccpp_hrrr 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_hrrr PASS +The total amount of wall time = 109.462518 + +Test 037 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_thompson_prod -Checking test 037 fv3_ccpp_thompson results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_thompson_prod +Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1974,12 +2100,15 @@ 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 + +The total amount of wall time = 96.836135 + +Test 038 fv3_ccpp_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_thompson_no_aero_prod -Checking test 038 fv3_ccpp_thompson_no_aero results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_thompson_no_aero_prod +Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2042,12 +2171,15 @@ 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 + +The total amount of wall time = 93.696905 + +Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_rrfs_v1beta_prod -Checking test 039 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_rrfs_v1beta_prod +Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2110,12 +2242,15 @@ 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 +The total amount of wall time = 110.557157 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v15p2_prod -Checking test 040 fv3_ccpp_gfs_v15p2 results .... +Test 040 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v15p2_prod +Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2178,12 +2313,15 @@ 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 +The total amount of wall time = 103.011808 + +Test 041 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_prod -Checking test 041 fv3_ccpp_gfs_v16 results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_prod +Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2258,12 +2396,15 @@ Checking test 041 fv3_ccpp_gfs_v16 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_v16 PASS +The total amount of wall time = 120.211081 + +Test 042 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_restart_prod -Checking test 042 fv3_ccpp_gfs_v16_restart results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_restart_prod +Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2308,12 +2449,15 @@ Checking test 042 fv3_ccpp_gfs_v16_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_v16_restart PASS +The total amount of wall time = 66.074935 + +Test 043 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_stochy_prod -Checking test 043 fv3_ccpp_gfs_v16_stochy results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_stochy_prod +Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2376,12 +2520,15 @@ Checking test 043 fv3_ccpp_gfs_v16_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_v16_stochy PASS +The total amount of wall time = 59.679073 + +Test 044 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2444,12 +2591,15 @@ 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 + +The total amount of wall time = 173.161817 + +Test 045 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2512,12 +2662,15 @@ Checking test 045 fv3_ccpp_gfs_v16_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_v16_RRTMGP PASS + +The total amount of wall time = 173.521612 + +Test 046 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2574,12 +2727,15 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 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_v16_RRTMGP_c192L127 PASS +The total amount of wall time = 712.095000 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod -Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... +Test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2642,12 +2798,15 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_2thrd 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_v16_RRTMGP_2thrd PASS + +The total amount of wall time = 209.642009 + +Test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfsv16_csawmg_prod -Checking test 048 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2690,12 +2849,15 @@ Checking test 048 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 048 fv3_ccpp_gfsv16_csawmg PASS +The total amount of wall time = 138.504689 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 049 fv3_ccpp_gfsv16_csawmgt results .... +Test 049 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2738,12 +2900,15 @@ Checking test 049 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 049 fv3_ccpp_gfsv16_csawmgt PASS +The total amount of wall time = 138.372243 + +Test 050 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gocart_clm_prod -Checking test 050 fv3_ccpp_gocart_clm results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2786,12 +2951,15 @@ Checking test 050 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 050 fv3_ccpp_gocart_clm PASS +The total amount of wall time = 62.135236 + +Test 051 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_flake_prod -Checking test 051 fv3_ccpp_gfs_v16_flake results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_flake_prod +Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2854,12 +3022,15 @@ Checking test 051 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v16_flake PASS +The total amount of wall time = 107.629309 + +Test 052 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 052 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2922,12 +3093,15 @@ Checking test 052 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 052 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +The total amount of wall time = 164.015162 + +Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 Comparing phyf012.nc .........OK @@ -2940,12 +3114,15 @@ Checking test 053 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 053 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + +The total amount of wall time = 302.932211 + +Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 054 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3002,12 +3179,15 @@ Checking test 054 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gfsv16_ugwpv1 PASS + +The total amount of wall time = 194.444169 + +Test 055 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3064,12 +3244,15 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1_warmstart 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_gfsv16_ugwpv1_warmstart PASS +The total amount of wall time = 195.929873 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 056 fv3_ccpp_gfs_v15p2_debug results .... +Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 @@ -3132,12 +3315,15 @@ Checking test 056 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 056 fv3_ccpp_gfs_v15p2_debug PASS +The total amount of wall time = 211.227814 + +Test 057 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_debug_prod -Checking test 057 fv3_ccpp_gfs_v16_debug results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_debug_prod +Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3200,12 +3386,15 @@ Checking test 057 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS +The total amount of wall time = 160.810025 + +Test 058 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/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 @@ -3268,12 +3457,15 @@ Checking test 058 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 058 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + +The total amount of wall time = 340.970998 + +Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 059 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3336,23 +3528,29 @@ Checking test 059 fv3_ccpp_gfs_v16_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 059 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + +The total amount of wall time = 345.350881 + +Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_regional_control_debug_prod -Checking test 060 fv3_ccpp_regional_control_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_regional_control_debug_prod +Checking test 061 fv3_ccpp_regional_control_debug 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 060 fv3_ccpp_regional_control_debug PASS +The total amount of wall time = 352.143900 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_control_debug_prod -Checking test 061 fv3_ccpp_control_debug results .... +Test 061 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_control_debug_prod +Checking test 062 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3377,12 +3575,15 @@ Checking test 061 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 061 fv3_ccpp_control_debug PASS + +The total amount of wall time = 123.705091 + +Test 062 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_stretched_nest_debug_prod -Checking test 062 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_stretched_nest_debug_prod +Checking test 063 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 @@ -3397,12 +3598,15 @@ Checking test 062 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 062 fv3_ccpp_stretched_nest_debug PASS +The total amount of wall time = 408.457853 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gsd_debug_prod -Checking test 063 fv3_ccpp_gsd_debug results .... +Test 063 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gsd_debug_prod +Checking test 064 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3465,12 +3669,15 @@ Checking test 063 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 063 fv3_ccpp_gsd_debug PASS +The total amount of wall time = 195.513868 + +Test 064 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 064 fv3_ccpp_gsd_diag3d_debug results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3533,12 +3740,15 @@ Checking test 064 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 064 fv3_ccpp_gsd_diag3d_debug PASS +The total amount of wall time = 218.308053 + +Test 065 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_thompson_debug_prod -Checking test 065 fv3_ccpp_thompson_debug results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_thompson_debug_prod +Checking test 066 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3601,12 +3811,15 @@ Checking test 065 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 065 fv3_ccpp_thompson_debug PASS +The total amount of wall time = 319.711603 + +Test 066 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 066 fv3_ccpp_thompson_no_aero_debug results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 067 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 @@ -3669,12 +3882,15 @@ Checking test 066 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 066 fv3_ccpp_thompson_no_aero_debug PASS +The total amount of wall time = 312.289370 + +Test 067 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 067 fv3_ccpp_rrfs_v1beta_debug results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3737,12 +3953,15 @@ Checking test 067 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 067 fv3_ccpp_rrfs_v1beta_debug PASS + +The total amount of wall time = 185.020312 + +Test 068 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 069 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 @@ -3805,12 +4024,15 @@ Checking test 068 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 068 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + +The total amount of wall time = 187.193484 + +Test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3823,12 +4045,15 @@ Checking test 069 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 069 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +The total amount of wall time = 347.292230 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_16767/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 070 fv3_ccpp_gfsv16_ugwpv1_debug results .... +Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3885,9 +4110,12 @@ Checking test 070 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 070 fv3_ccpp_gfsv16_ugwpv1_debug PASS + +The total amount of wall time = 536.280986 + +Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 8 19:51:03 UTC 2021 -Elapsed time: 00h:45m:13s. Have a nice day! +Thu Mar 11 05:29:32 UTC 2021 +Elapsed time: 00h:42m:37s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 038d25c17e..dfd5eac42a 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Tue Mar 9 00:03:19 UTC 2021 +Thu Mar 11 12:43:52 UTC 2021 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -67,11 +67,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 50.000170 + Test 001 fv3_ccpp_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -135,11 +138,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 51.097902 + Test 002 fv3_ccpp_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -203,11 +209,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 57.265643 + Test 003 fv3_ccpp_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -253,11 +262,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 24.979591 + Test 004 fv3_ccpp_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 @@ -321,11 +333,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 46.771580 + Test 005 fv3_ccpp_read_inc PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 @@ -369,11 +384,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 159.555015 + Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 @@ -417,11 +435,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 46.127614 + Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 @@ -429,8 +450,8 @@ 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 ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK @@ -465,11 +486,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 63.457525 + Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 @@ -513,11 +537,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 46.293530 + Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 @@ -561,11 +588,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 45.453937 + Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 @@ -609,11 +639,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 124.632387 + Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +710,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 52.838354 + Test 012 fv3_ccpp_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ca_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -745,11 +781,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 35.998466 + Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_lndp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lndp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,11 +852,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 54.520516 + Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -881,11 +923,14 @@ Checking test 015 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 + +[0] The total amount of wall time = 46.818870 + Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -929,11 +974,14 @@ Checking test 016 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 + +[0] The total amount of wall time = 45.389247 + Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -978,11 +1026,14 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK + +[0] The total amount of wall time = 688.389811 + Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 @@ -1027,11 +1078,14 @@ Checking test 018 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 + +[0] The total amount of wall time = 863.289072 + Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1101,11 +1155,14 @@ Checking test 019 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 + +[0] The total amount of wall time = 95.093989 + Test 019 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 @@ -1169,11 +1226,14 @@ Checking test 020 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 + +[0] The total amount of wall time = 45.894044 + Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1225,11 +1285,14 @@ Checking test 021 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 + +[0] The total amount of wall time = 329.459552 + Test 021 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 @@ -1292,54 +1355,87 @@ Checking test 022 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 + +[0] The total amount of wall time = 350.140527 + Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 + +[0] The total amount of wall time = 717.689783 + Test 023 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 + +[0] The total amount of wall time = 404.142382 + Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF24 .........OK + +[0] The total amount of wall time = 744.220594 + Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 026 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_hafs_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_regional_quilt_hafs_prod +Checking test 026 fv3_ccpp_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 026 fv3_ccpp_regional_quilt_netcdf_parallel PASS + Comparing HURPRS.GrbF00 .........OK + Comparing HURPRS.GrbF24 .........OK + +[0] The total amount of wall time = 738.350026 +Test 026 fv3_ccpp_regional_quilt_hafs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfdlmp_prod -Checking test 027 fv3_ccpp_gfdlmp results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 + +[0] The total amount of wall time = 745.083792 + +Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfdlmp_prod +Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1382,12 +1478,15 @@ 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 +[0] The total amount of wall time = 52.156173 + +Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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-20210309/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1430,12 +1529,15 @@ 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 +[0] The total amount of wall time = 52.424551 + +Test 029 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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-20210309/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1478,12 +1580,15 @@ 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 +[0] The total amount of wall time = 52.974471 + +Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_csawmg_prod -Checking test 030 fv3_ccpp_csawmg results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_csawmg_prod +Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1526,12 +1631,15 @@ 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 + +[0] The total amount of wall time = 133.808065 + +Test 031 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_satmedmf_prod -Checking test 031 fv3_ccpp_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_satmedmf_prod +Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1574,12 +1682,15 @@ 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 +[0] The total amount of wall time = 56.301546 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_satmedmfq_prod -Checking test 032 fv3_ccpp_satmedmfq results .... +Test 032 fv3_ccpp_satmedmf PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_satmedmfq_prod +Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1622,12 +1733,15 @@ 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 + +[0] The total amount of wall time = 56.742917 + +Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/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-20210309/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfdlmp_32bit_prod +Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1670,12 +1784,15 @@ 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 +[0] The total amount of wall time = 45.651129 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... +Test 034 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1722,12 +1839,15 @@ 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 +[0] The total amount of wall time = 91.317348 + +Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_cpt_prod -Checking test 035 fv3_ccpp_cpt results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_cpt_prod +Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1776,12 +1896,15 @@ 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 +[0] The total amount of wall time = 310.414524 + +Test 036 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gsd_prod -Checking test 036 fv3_ccpp_gsd results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gsd_prod +Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1868,12 +1991,15 @@ 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 +[0] The total amount of wall time = 211.530788 + +Test 037 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_rap_prod -Checking test 037 fv3_ccpp_rap results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rap_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_rap_prod +Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1936,12 +2062,15 @@ Checking test 037 fv3_ccpp_rap 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_rap PASS + +[0] The total amount of wall time = 105.992854 + +Test 038 fv3_ccpp_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_hrrr_prod -Checking test 038 fv3_ccpp_hrrr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_hrrr_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_hrrr_prod +Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2004,12 +2133,15 @@ Checking test 038 fv3_ccpp_hrrr 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_hrrr PASS +[0] The total amount of wall time = 114.010924 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_thompson_prod -Checking test 039 fv3_ccpp_thompson results .... +Test 039 fv3_ccpp_hrrr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_thompson_prod +Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2072,12 +2204,15 @@ Checking test 039 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 039 fv3_ccpp_thompson PASS + +[0] The total amount of wall time = 100.649879 + +Test 040 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_thompson_no_aero_prod -Checking test 040 fv3_ccpp_thompson_no_aero results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_thompson_no_aero_prod +Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2140,12 +2275,15 @@ Checking test 040 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 040 fv3_ccpp_thompson_no_aero PASS +[0] The total amount of wall time = 95.745164 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_rrfs_v1beta_prod -Checking test 041 fv3_ccpp_rrfs_v1beta results .... +Test 041 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_rrfs_v1beta_prod +Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2208,12 +2346,15 @@ Checking test 041 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 041 fv3_ccpp_rrfs_v1beta PASS +[0] The total amount of wall time = 114.983398 + +Test 042 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v15p2_prod -Checking test 042 fv3_ccpp_gfs_v15p2 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v15p2_prod +Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2276,12 +2417,15 @@ Checking test 042 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 042 fv3_ccpp_gfs_v15p2 PASS +[0] The total amount of wall time = 102.924483 + +Test 043 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v16_prod -Checking test 043 fv3_ccpp_gfs_v16 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_prod +Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2356,12 +2500,15 @@ Checking test 043 fv3_ccpp_gfs_v16 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_v16 PASS +[0] The total amount of wall time = 123.114748 + +Test 044 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v16_restart_prod -Checking test 044 fv3_ccpp_gfs_v16_restart results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_restart_prod +Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2406,12 +2553,15 @@ Checking test 044 fv3_ccpp_gfs_v16_restart 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_v16_restart PASS + +[0] The total amount of wall time = 66.410819 + +Test 045 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v16_stochy_prod -Checking test 045 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_stochy_prod +Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2474,12 +2624,15 @@ Checking test 045 fv3_ccpp_gfs_v16_stochy 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_v16_stochy PASS +[0] The total amount of wall time = 59.505791 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... +Test 046 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2542,12 +2695,15 @@ Checking test 046 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 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS + +[0] The total amount of wall time = 175.455496 + +Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2610,12 +2766,15 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP 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_v16_RRTMGP PASS +[0] The total amount of wall time = 177.711389 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2672,12 +2831,15 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 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_gfs_v16_RRTMGP_c192L127 PASS +[0] The total amount of wall time = 755.594948 + +Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod -Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2740,12 +2902,15 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_2thrd 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_v16_RRTMGP_2thrd PASS +[0] The total amount of wall time = 217.138449 + +Test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfsv16_csawmg_prod -Checking test 050 fv3_ccpp_gfsv16_csawmg results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 @@ -2788,12 +2953,15 @@ Checking test 050 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 050 fv3_ccpp_gfsv16_csawmg PASS +[0] The total amount of wall time = 144.831219 + +Test 051 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 @@ -2836,12 +3004,15 @@ Checking test 051 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 051 fv3_ccpp_gfsv16_csawmgt PASS + +[0] The total amount of wall time = 141.054719 + +Test 052 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gocart_clm_prod -Checking test 052 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 @@ -2884,12 +3055,15 @@ Checking test 052 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 052 fv3_ccpp_gocart_clm PASS +[0] The total amount of wall time = 57.824693 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v16_flake_prod -Checking test 053 fv3_ccpp_gfs_v16_flake results .... +Test 053 fv3_ccpp_gocart_clm PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_flake_prod +Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2952,12 +3126,15 @@ Checking test 053 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfs_v16_flake PASS + +[0] The total amount of wall time = 105.127894 + +Test 054 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 @@ -3020,12 +3197,15 @@ Checking test 054 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 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +[0] The total amount of wall time = 172.897523 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/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 @@ -3038,12 +3218,15 @@ Checking test 055 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 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + +[0] The total amount of wall time = 316.577311 + +Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3100,12 +3283,15 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS +[0] The total amount of wall time = 196.784152 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +Test 057 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3162,12 +3348,15 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart 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_gfsv16_ugwpv1_warmstart PASS + +[0] The total amount of wall time = 198.342424 + +Test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3230,12 +3419,15 @@ Checking test 058 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 058 fv3_ccpp_gfs_v15p2_debug PASS +[0] The total amount of wall time = 260.812957 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v16_debug_prod -Checking test 059 fv3_ccpp_gfs_v16_debug results .... +Test 059 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_debug_prod +Checking test 060 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3298,12 +3490,15 @@ Checking test 059 fv3_ccpp_gfs_v16_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_gfs_v16_debug PASS +[0] The total amount of wall time = 203.453649 + +Test 060 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 061 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 @@ -3366,12 +3561,15 @@ Checking test 060 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 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +[0] The total amount of wall time = 408.215896 + +Test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3434,23 +3632,29 @@ Checking test 061 fv3_ccpp_gfs_v16_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 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +[0] The total amount of wall time = 415.075965 + +Test 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_regional_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_regional_control_debug_prod -Checking test 062 fv3_ccpp_regional_control_debug results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_regional_control_debug_prod +Checking test 063 fv3_ccpp_regional_control_debug 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 062 fv3_ccpp_regional_control_debug PASS + +[0] The total amount of wall time = 396.587708 + +Test 063 fv3_ccpp_regional_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_control_debug_prod -Checking test 063 fv3_ccpp_control_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_control_debug_prod +Checking test 064 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3475,12 +3679,15 @@ Checking test 063 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 063 fv3_ccpp_control_debug PASS +[0] The total amount of wall time = 159.248223 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_stretched_nest_debug_prod -Checking test 064 fv3_ccpp_stretched_nest_debug results .... +Test 064 fv3_ccpp_control_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_stretched_nest_debug_prod +Checking test 065 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 @@ -3495,12 +3702,15 @@ Checking test 064 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 064 fv3_ccpp_stretched_nest_debug PASS + +[0] The total amount of wall time = 468.753468 + +Test 065 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gsd_debug_prod -Checking test 065 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gsd_debug_prod +Checking test 066 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3563,12 +3773,15 @@ Checking test 065 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 065 fv3_ccpp_gsd_debug PASS +[0] The total amount of wall time = 233.574323 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... +Test 066 fv3_ccpp_gsd_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3631,12 +3844,15 @@ Checking test 066 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 066 fv3_ccpp_gsd_diag3d_debug PASS +[0] The total amount of wall time = 310.247818 + +Test 067 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_thompson_debug_prod -Checking test 067 fv3_ccpp_thompson_debug results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_thompson_debug_prod +Checking test 068 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3699,12 +3915,15 @@ Checking test 067 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 067 fv3_ccpp_thompson_debug PASS +[0] The total amount of wall time = 389.044991 + +Test 068 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 069 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 @@ -3767,12 +3986,15 @@ Checking test 068 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 068 fv3_ccpp_thompson_no_aero_debug PASS +[0] The total amount of wall time = 375.390396 + +Test 069 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3835,12 +4057,15 @@ Checking test 069 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 069 fv3_ccpp_rrfs_v1beta_debug PASS + +[0] The total amount of wall time = 226.270819 + +Test 070 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 071 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 @@ -3903,12 +4128,15 @@ Checking test 070 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 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +[0] The total amount of wall time = 237.685875 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +Test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3921,12 +4149,15 @@ Checking test 071 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 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + +[0] The total amount of wall time = 428.502973 + +Test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3983,12 +4214,15 @@ Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS +[0] The total amount of wall time = 646.136006 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_control_prod -Checking test 073 cpld_control results .... +Test 073 fv3_ccpp_gfsv16_ugwpv1_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_control_prod +Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4036,12 +4270,15 @@ Checking test 073 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 073 cpld_control PASS +[0] The total amount of wall time = 107.117170 + +Test 074 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restart_prod -Checking test 074 cpld_restart results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restart_prod +Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4089,12 +4326,15 @@ Checking test 074 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 074 cpld_restart PASS +[0] The total amount of wall time = 69.502819 + +Test 075 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_controlfrac_prod -Checking test 075 cpld_controlfrac results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_controlfrac_prod +Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4142,12 +4382,15 @@ Checking test 075 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 075 cpld_controlfrac PASS +[0] The total amount of wall time = 106.704952 + +Test 076 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restartfrac_prod -Checking test 076 cpld_restartfrac results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restartfrac_prod +Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4195,12 +4438,15 @@ Checking test 076 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 076 cpld_restartfrac PASS + +[0] The total amount of wall time = 68.847018 + +Test 077 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_2threads_prod -Checking test 077 cpld_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_2threads_prod +Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4248,12 +4494,15 @@ Checking test 077 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 077 cpld_2threads PASS +[0] The total amount of wall time = 106.323879 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_decomp_prod -Checking test 078 cpld_decomp results .... +Test 078 cpld_2threads PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_decomp_prod +Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4301,12 +4550,15 @@ Checking test 078 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 078 cpld_decomp PASS + +[0] The total amount of wall time = 106.069216 + +Test 079 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_satmedmf_prod -Checking test 079 cpld_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_satmedmf_prod +Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4354,12 +4606,15 @@ Checking test 079 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 079 cpld_satmedmf PASS +[0] The total amount of wall time = 106.779691 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_ca_prod -Checking test 080 cpld_ca results .... +Test 080 cpld_satmedmf PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_ca_prod +Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4407,12 +4662,15 @@ Checking test 080 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 080 cpld_ca PASS +[0] The total amount of wall time = 106.013338 + +Test 081 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_control_c192_prod -Checking test 081 cpld_control_c192 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_control_c192_prod +Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4460,12 +4718,15 @@ Checking test 081 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 081 cpld_control_c192 PASS +[0] The total amount of wall time = 434.649806 + +Test 082 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restart_c192_prod -Checking test 082 cpld_restart_c192 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restart_c192_prod +Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4513,12 +4774,15 @@ Checking test 082 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 082 cpld_restart_c192 PASS +[0] The total amount of wall time = 320.864397 + +Test 083 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_controlfrac_c192_prod -Checking test 083 cpld_controlfrac_c192 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_controlfrac_c192_prod +Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4566,12 +4830,15 @@ Checking test 083 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 083 cpld_controlfrac_c192 PASS +[0] The total amount of wall time = 432.138958 + +Test 084 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restartfrac_c192_prod -Checking test 084 cpld_restartfrac_c192 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restartfrac_c192_prod +Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4619,12 +4886,15 @@ Checking test 084 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 084 cpld_restartfrac_c192 PASS +[0] The total amount of wall time = 321.198145 + +Test 085 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_control_c384_prod -Checking test 085 cpld_control_c384 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_control_c384_prod +Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4675,12 +4945,15 @@ Checking test 085 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 085 cpld_control_c384 PASS +[0] The total amount of wall time = 1493.630548 + +Test 086 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restart_c384_prod -Checking test 086 cpld_restart_c384 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restart_c384_prod +Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4731,12 +5004,15 @@ Checking test 086 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 086 cpld_restart_c384 PASS +[0] The total amount of wall time = 815.327118 + +Test 087 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_controlfrac_c384_prod -Checking test 087 cpld_controlfrac_c384 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_controlfrac_c384_prod +Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4787,12 +5063,15 @@ Checking test 087 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 087 cpld_controlfrac_c384 PASS + +[0] The total amount of wall time = 1491.213978 + +Test 088 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restartfrac_c384_prod -Checking test 088 cpld_restartfrac_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restartfrac_c384_prod +Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4843,12 +5122,15 @@ Checking test 088 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 088 cpld_restartfrac_c384 PASS +[0] The total amount of wall time = 808.850546 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_bmark_prod -Checking test 089 cpld_bmark results .... +Test 089 cpld_restartfrac_c384 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_bmark_prod +Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4899,12 +5181,15 @@ Checking test 089 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 089 cpld_bmark PASS + +[0] The total amount of wall time = 906.600179 + +Test 090 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restart_bmark_prod -Checking test 090 cpld_restart_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restart_bmark_prod +Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4955,12 +5240,15 @@ Checking test 090 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 090 cpld_restart_bmark PASS +[0] The total amount of wall time = 529.414763 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_bmarkfrac_prod -Checking test 091 cpld_bmarkfrac results .... +Test 091 cpld_restart_bmark PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_bmarkfrac_prod +Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5011,12 +5299,15 @@ Checking test 091 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 091 cpld_bmarkfrac PASS +[0] The total amount of wall time = 915.413046 + +Test 092 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restart_bmarkfrac_prod -Checking test 092 cpld_restart_bmarkfrac results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restart_bmarkfrac_prod +Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5067,12 +5358,15 @@ Checking test 092 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 092 cpld_restart_bmarkfrac PASS +[0] The total amount of wall time = 532.294476 + +Test 093 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_bmarkfrac_v16_prod -Checking test 093 cpld_bmarkfrac_v16 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_bmarkfrac_v16_prod +Checking test 094 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5123,12 +5417,15 @@ Checking test 093 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 093 cpld_bmarkfrac_v16 PASS +[0] The total amount of wall time = 1542.506602 + +Test 094 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_restart_bmarkfrac_v16_prod -Checking test 094 cpld_restart_bmarkfrac_v16 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restart_bmarkfrac_v16_prod +Checking test 095 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5179,12 +5476,15 @@ Checking test 094 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 094 cpld_restart_bmarkfrac_v16 PASS + +[0] The total amount of wall time = 893.756381 + +Test 095 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_bmark_wave_prod -Checking test 095 cpld_bmark_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_bmark_wave_prod +Checking test 096 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5238,12 +5538,15 @@ Checking test 095 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 095 cpld_bmark_wave PASS +[0] The total amount of wall time = 1590.409264 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_bmarkfrac_wave_prod -Checking test 096 cpld_bmarkfrac_wave results .... +Test 096 cpld_bmark_wave PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_bmarkfrac_wave_prod +Checking test 097 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5297,12 +5600,15 @@ Checking test 096 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 096 cpld_bmarkfrac_wave PASS + +[0] The total amount of wall time = 1566.712665 + +Test 097 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_bmarkfrac_wave_v16_prod -Checking test 097 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_wave_v16_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_bmarkfrac_wave_v16_prod +Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5355,12 +5661,15 @@ Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -Test 097 cpld_bmarkfrac_wave_v16 PASS +[0] The total amount of wall time = 1067.448116 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_control_wave_prod -Checking test 098 cpld_control_wave results .... +Test 098 cpld_bmarkfrac_wave_v16 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_wave_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_control_wave_prod +Checking test 099 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5411,12 +5720,15 @@ Checking test 098 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 098 cpld_control_wave PASS +[0] The total amount of wall time = 867.812131 + +Test 099 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_debug_prod -Checking test 099 cpld_debug results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_debug_prod +Checking test 100 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5464,12 +5776,15 @@ Checking test 099 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 099 cpld_debug PASS +[0] The total amount of wall time = 332.447456 + +Test 100 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/cpld_debugfrac_prod -Checking test 100 cpld_debugfrac results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_debugfrac_ccpp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_debugfrac_prod +Checking test 101 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5517,87 +5832,114 @@ Checking test 100 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 100 cpld_debugfrac PASS +[0] The total amount of wall time = 333.045717 + +Test 101 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/datm_control_cfsr -Checking test 101 datm_control_cfsr results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/datm_control_cfsr +Checking test 102 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 101 datm_control_cfsr PASS + +[0] The total amount of wall time = 115.640456 + +Test 102 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/datm_restart_cfsr -Checking test 102 datm_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/datm_restart_cfsr +Checking test 103 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 102 datm_restart_cfsr PASS +[0] The total amount of wall time = 78.154943 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/datm_control_gefs -Checking test 103 datm_control_gefs results .... +Test 103 datm_restart_cfsr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/datm_control_gefs +Checking test 104 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 103 datm_control_gefs PASS + +[0] The total amount of wall time = 103.403567 + +Test 104 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/datm_bulk_cfsr -Checking test 104 datm_bulk_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/datm_bulk_cfsr +Checking test 105 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 104 datm_bulk_cfsr PASS +[0] The total amount of wall time = 106.987807 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/datm_bulk_gefs -Checking test 105 datm_bulk_gefs results .... +Test 105 datm_bulk_cfsr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/datm_bulk_gefs +Checking test 106 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 105 datm_bulk_gefs PASS +[0] The total amount of wall time = 106.850918 + +Test 106 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/datm_mx025_cfsr -Checking test 106 datm_mx025_cfsr results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/datm_mx025_cfsr +Checking test 107 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 106 datm_mx025_cfsr PASS +[0] The total amount of wall time = 410.491853 + +Test 107 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/datm_mx025_gefs -Checking test 107 datm_mx025_gefs results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/datm_mx025_gefs +Checking test 108 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 107 datm_mx025_gefs PASS +[0] The total amount of wall time = 412.402669 + +Test 108 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210308/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_49070/datm_debug_cfsr -Checking test 108 datm_debug_cfsr results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/datm_debug_cfsr +Checking test 109 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 108 datm_debug_cfsr PASS + +[0] The total amount of wall time = 315.582165 + +Test 109 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 9 03:55:14 UTC 2021 -Elapsed time: 03h:51m:56s. Have a nice day! +Thu Mar 11 17:55:22 UTC 2021 +Elapsed time: 05h:11m:32s. Have a nice day! diff --git a/tests/ci/json_helper.py b/tests/ci/json_helper.py index c27c6df7f5..80bdfff95b 100755 --- a/tests/ci/json_helper.py +++ b/tests/ci/json_helper.py @@ -6,9 +6,9 @@ import sys import json -def check_skip(data): +def check_run(data): msg = data["head_commit"]["message"] - if re.search("skip-ci", msg): + if re.search("run-ci", msg): return "yes" else: return "no" @@ -26,9 +26,9 @@ def cancel_workflow(data): def main(): - if sys.argv[1]=="check_skip": + if sys.argv[1]=="check_run": data = json.load(sys.stdin)["workflow_run"] - ans = check_skip(data) + ans = check_run(data) print(ans) elif sys.argv[1]=="get_trigger_id": print(json.load(sys.stdin)["workflow_run"]["id"]) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 7877c57161..8dffe79b7b 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -320,6 +320,7 @@ export WRITE_GROUP=1 export WRTTASK_PER_GROUP=6 export OUTPUT_HISTORY=.true. export WRITE_DOPOST=.false. +export POSTAPP='' export NUM_FILES=2 export FILENAME_BASE="'dyn' 'phy'" export OUTPUT_GRID="'cubed_sphere_grid'" diff --git a/tests/fv3_conf/ccpp_gfdlmp_run.IN b/tests/fv3_conf/ccpp_gfdlmp_run.IN index 1a2fbeae9c..af0e3d5f84 100644 --- a/tests/fv3_conf/ccpp_gfdlmp_run.IN +++ b/tests/fv3_conf/ccpp_gfdlmp_run.IN @@ -40,3 +40,10 @@ if [ $CPLWAV = .T. ]; then cp @[INPUTDATA_ROOT_WW3]/mod_def.* . cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . fi + +if [[ $POSTAPP = 'global' ]]; then + cp ${PATHRT}/parm/post_itag itag + cp ${PATHRT}/parm/postxconfig-NT.txt postxconfig-NT.txt + cp ${PATHRT}/parm/postxconfig-NT_FH00.txt postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +fi diff --git a/tests/fv3_conf/ccpp_regional_run.IN b/tests/fv3_conf/ccpp_regional_run.IN index e524384644..76cc74bd72 100644 --- a/tests/fv3_conf/ccpp_regional_run.IN +++ b/tests/fv3_conf/ccpp_regional_run.IN @@ -1,5 +1,7 @@ rsync -arv @[INPUTDATA_ROOT]/FV3_regional_input_data/. . -rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/model_configure . +if [ $WRITE_DOPOST = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_regional_input_data/diag_table_lam ./diag_table +fi rm -rf INPUT RESTART mkdir INPUT RESTART @@ -28,3 +30,15 @@ fi if [ $H2O_PHYS = .T. ]; then cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 fi + +if [[ $POSTAPP = 'lam' ]]; then + cp ${PATHRT}/parm/post_itag_fv3lam itag + cp ${PATHRT}/parm/postxconfig-NT-fv3lam.txt postxconfig-NT.txt + cp ${PATHRT}/parm/postxconfig-NT-fv3lam.txt postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +elif [[ $POSTAPP = 'hafs' ]]; then + cp ${PATHRT}/parm/post_itag_hafs itag + cp ${PATHRT}/parm/postxconfig-NT-hafs.txt postxconfig-NT.txt + cp ${PATHRT}/parm/postxconfig-NT-hafs.txt postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +fi diff --git a/tests/parm/model_configure_hafs.IN b/tests/parm/model_configure_hafs.IN new file mode 100755 index 0000000000..7458c443eb --- /dev/null +++ b/tests/parm/model_configure_hafs.IN @@ -0,0 +1,73 @@ +print_esmf: .true. + +total_member: 1 +PE_MEMBER01: 28 + +start_year: 2018 +start_month: 10 +start_day: 15 +start_hour: 00 +start_minute: 0 +start_second: 0 +nhours_fcst: 24 +RUN_CONTINUE: .false. +ENS_SPS: .false. +dt_atmos: 225 +cpl: .false. +calendar: 'julian' +memuse_verbose: .false. +atmos_nthreads: 1 +use_hyper_thread: .false. +ncores_per_node: 24 +debug_affinity: .true. +restart_interval: 0 +output_1st_tstep_rst: .false. + +quilting: .true. +write_groups: 1 +write_tasks_per_group: 4 +write_dopost: @[WRITE_DOPOST] +num_files: 2 +filename_base: 'dyn' 'phy' +output_file: 'netcdf' +write_nemsioflip: .false. +write_fsyncflag: .false. + +# output_grid: 'gaussian_grid' +# imo: 384 +# jmo: 190 + + output_grid: 'regional_latlon' + lon1: 225.0 + lon2: 300.0 + lat1: 10.0 + lat2: 60.0 + dlon: 0.2 + dlat: 0.2 + +# output_grid: 'rotated_latlon' +# cen_lon: -97.5 # central longitude +# cen_lat: 34.5 # central latitude +# lon1: -24.0 # longitude of lower-left point in rotated coordinate system (in degrees) +# lat1: -22.0 # latitude of lower-left . . . . +# lon2: 24.0 # longitude of upper-right . . . . +# lat2: 22.0 # latitude of upper-right . . . . +# dlon: 0.2 +# dlat: 0.2 + +# output_grid: 'lambert_conformal' +# cen_lon: -97.5 # central longitude +# cen_lat: 34.0 # central latitude +# stdlat1: 30.0 +# stdlat2: 60.0 +# nx: 450 # Number of points along x-axis. +# ny: 430 # Number of points along y-axis. +# lon1: -116.0 # longitude of first grid point (lower-left) (in degrees) +# lat1: 13.0 # latitude of first grid point (lower-left) (in degrees) +# dx: 10000.0 # x-direction grid length +# dy: 10000.0 # y-direction grid length + +nfhout: 3 +nfhmax_hf: 12 +nfhout_hf: 1 +nsout: -1 diff --git a/tests/parm/model_configure_regional.IN b/tests/parm/model_configure_regional.IN new file mode 100755 index 0000000000..50468b7b49 --- /dev/null +++ b/tests/parm/model_configure_regional.IN @@ -0,0 +1,78 @@ +print_esmf: .true. +PE_MEMBER01: @[TASKS] + +start_year: 2018 +start_month: 10 +start_day: 15 +start_hour: 00 +start_minute: 0 +start_second: 0 +nhours_fcst: @[FHMAX] +RUN_CONTINUE: .false. +ENS_SPS: .false. + +dt_atmos: 225 +cpl: .false. +calendar: 'julian' +memuse_verbose: .false. +atmos_nthreads: 1 +use_hyper_thread: .false. +ncores_per_node: @[TPN] +debug_affinity: .true. +restart_interval: @[RESTART_INTERVAL] +output_1st_tstep_rst: .false. + +quilting: @[QUILTING] +write_groups: 1 +write_tasks_per_group: 4 +write_dopost: @[WRITE_DOPOST] +num_files: 2 +filename_base: 'dyn' 'phy' +output_file: @[OUTPUT_FILE] +ideflate: @[IDEFLATE] +ichunk2d: -1 +jchunk2d: -1 +ichunk3d: -1 +jchunk3d: -1 +kchunk3d: -1 +write_nemsioflip: .false. +write_fsyncflag: .false. + +# output_grid: 'gaussian_grid' +# imo: 384 +# jmo: 190 + +# output_grid: 'regional_latlon' +# lon1: 225.0 +# lon2: 300.0 +# lat1: 10.0 +# lat2: 60.0 +# dlon: 0.2 +# dlat: 0.2 + + output_grid: 'rotated_latlon' + cen_lon: -97.5 # central longitude + cen_lat: 34.5 # central latitude + lon1: -24.0 # longitude of lower-left point in rotated coordinate system (in degrees) + lat1: -22.0 # latitude of lower-left . . . . + lon2: 24.0 # longitude of upper-right . . . . + lat2: 22.0 # latitude of upper-right . . . . + dlon: 0.2 + dlat: 0.2 + +# output_grid: 'lambert_conformal' +# cen_lon: -97.5 # central longitude +# cen_lat: 34.0 # central latitude +# stdlat1: 30.0 +# stdlat2: 60.0 +# nx: 450 # Number of points along x-axis. +# ny: 430 # Number of points along y-axis. +# lon1: -116.0 # longitude of first grid point (lower-left) (in degrees) +# lat1: 13.0 # latitude of first grid point (lower-left) (in degrees) +# dx: 10000.0 # x-direction grid length +# dy: 10000.0 # y-direction grid length + +nfhout: 3 +nfhmax_hf: 12 +nfhout_hf: 1 +nsout: -1 diff --git a/tests/parm/post_itag b/tests/parm/post_itag index c9973e56c7..9a9a3bddec 100644 --- a/tests/parm/post_itag +++ b/tests/parm/post_itag @@ -1,4 +1,4 @@ &NAMPGB - KPO=57,KPO=57,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,40.,30.,20.,15.,10.,7.,5.,3.,2.,1.,0.7,0.4,0.2,0.1,0.07,0.04,0.02,0.01, + KPO=57,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,40.,30.,20.,15.,10.,7.,5.,3.,2.,1.,0.7,0.4,0.2,0.1,0.07,0.04,0.02,0.01, / EOF diff --git a/tests/parm/post_itag_fv3lam b/tests/parm/post_itag_fv3lam new file mode 100644 index 0000000000..2fe39018b3 --- /dev/null +++ b/tests/parm/post_itag_fv3lam @@ -0,0 +1,3 @@ + &NAMPGB + KPO=47,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,30.,20.,10.,7.,5.,3.,2.,1., + / diff --git a/tests/parm/post_itag_hafs b/tests/parm/post_itag_hafs new file mode 100644 index 0000000000..87ad99e6dd --- /dev/null +++ b/tests/parm/post_itag_hafs @@ -0,0 +1,4 @@ +&NAMPGB + KPO=47,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,30.,20.,10.,7.,5.,3.,2.,1., + / +EOF diff --git a/tests/parm/postxconfig-NT-fv3lam.txt b/tests/parm/postxconfig-NT-fv3lam.txt new file mode 100644 index 0000000000..50ab5a8509 --- /dev/null +++ b/tests/parm/postxconfig-NT-fv3lam.txt @@ -0,0 +1,17906 @@ +2 +224 +259 +PRSLEV +32769 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +meso_nam12km +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +1 +PRES_ON_HYBRID_LVL +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +77 +HGT_ON_HYBRID_LVL +? +1 +tmpl4_0 +HGT +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +2 +TMP_ON_HYBRID_LVL +? +1 +tmpl4_0 +TMP +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +3 +POT_ON_HYBRID_LVL +? +1 +tmpl4_0 +POT +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +4 +DPT_ON_HYBRID_LVL +? +1 +tmpl4_0 +DPT +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +5 +SPFH_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPFH +? +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +6 +RH_ON_HYBRID_LVL +? +1 +tmpl4_0 +RH +? +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +7 +UGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +UGRD +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +8 +VGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +VGRD +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +9 +VVEL_ON_HYBRID_LVL +? +1 +tmpl4_0 +VVEL +? +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +264 +DZDT_ON_HYBRID_LVL +? +1 +tmpl4_0 +DZDT +? +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +11 +TKE_ON_HYBRID_LVL +? +1 +tmpl4_0 +TKE +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +181 +RWMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +RWMR +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +182 +SNMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +SNMR +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +187 +RIME_ON_HYBRID_LVL +? +1 +tmpl4_0 +RIME +NCEP +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +199 +TCOND_ON_HYBRID_LVL +? +1 +tmpl4_0 +TCOND +NCEP +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +250 +REFD_ON_HYBRID_LVL +? +1 +tmpl4_0 +REFD +NCEP +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +146 +BMIXL_ON_HYBRID_LVL +? +1 +tmpl4_0 +BMIXL +NCEP +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +15 +DPT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DPT +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +85 +MCONV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +MCONV +NCEP +? +isobaric_sfc +0 +? +2 +85000. 95000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +20 +VVEL_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VVEL +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +284 +DZDT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DZDT +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +10 +20000. 25000. 30000. 40000. 50000. 70000. 75000. 85000. 92500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +86 +STRM_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +STRM +? +? +isobaric_sfc +0 +? +2 +25000. 50000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +22 +TKE_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TKE +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +166 +ICMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ICMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +153 +CLWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +CLWMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +183 +RWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RWMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +416 +GRLE_ON_ISOBARIC_SFC +Graupel mixing ration on isobaric surface +1 +tmpl4_0 +GRLE +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +184 +SNMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SNMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +263 +RIME_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RIME +NCEP +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +23 +MSLET_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLET +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +105 +PRES_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +PRMSL +? +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +RH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +246 +PLPL_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PLPL +NCEP +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +158 +POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +POT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +159 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +27 +POT_ON_SURFACE +? +1 +tmpl4_0 +POT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +28 +SPFH_ON_SURFACE +? +1 +tmpl4_0 +SPFH +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +115 +TSOIL_ON_DEPTH_BEL_LAND_SFC_3m +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +0 +? +1 +3. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +116 +TSOIL_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +4 +2 2 2 2 +4 +0. 10. 40. 100. +depth_bel_land_sfc +4 +2 2 2 2 +4 +10. 40. 100. 200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +117 +SOILW_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILW +NCEP +? +depth_bel_land_sfc +4 +2 2 2 2 +4 +0. 10. 40. 100. +depth_bel_land_sfc +4 +2 2 2 2 +4 +10. 40. 100. 200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +225 +SOILL_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILL +NCEP +? +depth_bel_land_sfc +4 +2 2 2 2 +4 +0. 10. 40. 100. +depth_bel_land_sfc +4 +2 2 2 2 +4 +10. 40. 100. 200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +36 +SOILM_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILM +? +? +depth_bel_land_sfc +1 +2 +1 +0. +depth_bel_land_sfc +1 +2 +1 +200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +119 +WEASD_ON_SURFACE +? +1 +tmpl4_0 +WEASD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +120 +SNOWC_ON_SURFACE +? +1 +tmpl4_0 +SNOWC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +169 +SFEXC_ON_SURFACE +? +1 +tmpl4_0 +SFEXC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +170 +VEG_ON_SURFACE +? +1 +tmpl4_0 +VEG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +218 +VGTYP_ON_SURFACE +? +1 +tmpl4_0 +VGTYP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +219 +SOTYP_ON_SURFACE +? +1 +tmpl4_0 +SOTYP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +226 +SNFALB_ON_SURFACE +? +1 +tmpl4_0 +SNFALB +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +227 +MXSALB_ON_SURFACE +? +1 +tmpl4_0 +MXSALB +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +220 +CCOND_ON_SURFACE +? +1 +tmpl4_0 +CCOND +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +238 +RCS_ON_SURFACE +? +1 +tmpl4_0 +RCS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +239 +RCT_ON_SURFACE +? +1 +tmpl4_0 +RCT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +240 +RCQ_ON_SURFACE +? +1 +tmpl4_0 +RCQ +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +241 +RCSOL_ON_SURFACE +? +1 +tmpl4_0 +RCSOL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +237 +SMREF_ON_SURFACE +? +1 +tmpl4_0 +SMREF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +233 +POROS_ON_SURFACE +? +1 +tmpl4_0 +POROS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +235 +RLYRS_ON_SURFACE +? +1 +tmpl4_0 +RLYRS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +234 +RSMIN_ON_SURFACE +? +1 +tmpl4_0 +RSMIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +224 +SNOD_ON_SURFACE +? +1 +tmpl4_0 +SNOD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +232 +SMDRY_ON_SURFACE +? +1 +tmpl4_0 +SMDRY +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +236 +WILT_ON_SURFACE +? +1 +tmpl4_0 +WILT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +171 +MSTAV_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +MSTAV +NCEP +? +depth_bel_land_sfc +1 +2 +1 +0. +depth_bel_land_sfc +1 +2 +1 +100. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +152 +INST_GFLUX_ON_SURFACE +? +1 +tmpl4_0 +GFLUX +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +30 +LFTX_ON_ISOBARIC_SFC_500-1000hpa +? +1 +tmpl4_0 +LFTX +NCEP +? +isobaric_sfc +0 +? +1 +50000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +31 +4LFTX_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +4LFTX +NCEP +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +75 +PLI_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PLI +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +32 +CAPE_ON_SURFACE +? +1 +tmpl4_0 +CAPE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +566 +BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +582 +MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +584 +UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +107 +CIN_ON_SURFACE +? +1 +tmpl4_0 +CIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +567 +BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +583 +MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +585 +UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +PWAT +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +HLCY +? +? +spec_hgt_lvl_above_grnd +0 +? +2 +3000. 1000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +163 +USTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +USTM +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +164 +VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +VSTM +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +87 +ACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +34 +ACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +417 +CACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +419 +CACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +121 +ACM_SNOM_ON_SURFACE +? +1 +tmpl4_8 +SNOM +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +122 +ACM_SSRUN_ON_SURFACE +? +1 +tmpl4_8 +SSRUN +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +123 +ACM_BGRUN_ON_SURFACE +? +1 +tmpl4_8 +BGRUN +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +343 +ACM_WATR_ON_SURFACE +? +1 +tmpl4_8 +WATR +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +160 +INST_CRAIN_ON_SURFACE +? +1 +tmpl4_0 +CRAIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +551 +CSNOW_ON_SURFACE +Categorical snow on surface +1 +tmpl4_0 +CSNOW +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +552 +CICEP_ON_SURFACE +Categorical ice pellets on surface +1 +tmpl4_0 +CICEP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +553 +CFRZR_ON_SURFACE +Categorical freezing rain on surface +1 +tmpl4_0 +CFRZR +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +167 +INST_PRATE_ON_SURFACE +? +1 +tmpl4_0 +PRATE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +172 +CPOFP_ON_SURFACE +? +1 +tmpl4_0 +CPOFP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +124 +CLWMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +CLWMR +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +125 +ICMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +ICMR +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +415 +GRLE_ON_HYBRID_LVL +Graupel mixing ration on hybrid level +1 +tmpl4_0 +GRLE +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +145 +TCDC_ON_HYBRID_LVL +? +1 +tmpl4_0 +TCDC +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +37 +LCDC_ON_LOW_CLOUD_LYR +? +1 +tmpl4_0 +LCDC +? +? +low_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +38 +MCDC_ON_MID_CLOUD_LYR +? +1 +tmpl4_0 +MCDC +? +? +mid_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +39 +HCDC_ON_HIGH_CLOUD_LYR +? +1 +tmpl4_0 +HCDC +? +? +high_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +139 +AVE_CDLYR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +CDLYR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +180 +VIS_ON_SURFACE +? +1 +tmpl4_0 +VIS +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +410 +GSD_VIS_ON_CLOUD_TOP +GSD_visibility on cloud top +1 +tmpl4_0 +VIS +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +109 +HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC +? +1 +tmpl4_0 +HGT +? +? +lvl_of_adiab_cond_from_sfc +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +110 +PRES_ON_LVL_OF_ADIAB_COND_FROM_SFC +? +1 +tmpl4_0 +PRES +? +? +lvl_of_adiab_cond_from_sfc +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +126 +AVE_DSWRF_ON_SURFACE +? +1 +tmpl4_8 +DSWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +127 +AVE_DLWRF_ON_SURFACE +? +1 +tmpl4_8 +DLWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +128 +AVE_USWRF_ON_SURFACE +? +1 +tmpl4_8 +USWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +129 +AVE_ULWRF_ON_SURFACE +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +130 +AVE_USWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +USWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +131 +AVE_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +274 +INST_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +ULWRF +NCEP +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +275 +BRTMP_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +BRTMP +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +262 +INST_CSDSF_ON_SURFACE +? +1 +tmpl4_0 +CSDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +44 +SFCR_ON_SURFACE +? +1 +tmpl4_0 +SFCR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.7 +0 +0 +0 +? +? +? +45 +FRICV_ON_SURFACE +? +1 +tmpl4_0 +FRICV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +132 +CD_ON_SURFACE +? +1 +tmpl4_0 +CD +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +133 +UFLX_ON_SURFACE +? +1 +tmpl4_0 +UFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +134 +VFLX_ON_SURFACE +? +1 +tmpl4_0 +VFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +43 +AVE_SHTFL_ON_SURFACE +? +1 +tmpl4_8 +SHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +135 +AVE_GFLUX_ON_SURFACE +? +1 +tmpl4_8 +GFLUX +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +136 +AVE_SNOHF_ON_SURFACE +? +1 +tmpl4_8 +SNOHF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +42 +AVE_LHTFL_ON_SURFACE +? +1 +tmpl4_8 +LHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +47 +ACM_EVP_ON_SURFACE +? +1 +tmpl4_8 +EVP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +137 +ACM_PEVAP_ON_SURFACE +? +1 +tmpl4_8 +PEVAP +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +48 +NLAT_ON_SURFACE +? +1 +tmpl4_0 +NLAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +49 +ELON_ON_SURFACE +? +1 +tmpl4_0 +ELON +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +50 +LAND_ON_SURFACE +? +1 +tmpl4_0 +LAND +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +51 +ICEC_ON_SURFACE +? +1 +tmpl4_0 +ICEC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +150 +ALBDO_ON_SURFACE +? +1 +tmpl4_0 +ALBDO +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +151 +WTMP_ON_SURFACE +? +1 +tmpl4_0 +WTMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +54 +PRES_ON_TROPOPAUSE +? +1 +tmpl4_0 +PRES +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +177 +HGT_ON_TROPOPAUSE +? +1 +tmpl4_0 +HGT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +55 +TMP_ON_TROPOPAUSE +? +1 +tmpl4_0 +TMP +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +108 +POT_ON_TROPOPAUSE +? +1 +tmpl4_0 +POT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +56 +UGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +UGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +57 +VGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +VGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +58 +VWSH_ON_TROPOPAUSE +? +1 +tmpl4_0 +VWSH +NCEP +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +430 +VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +Vertical u-component shear between 0 to 1000m Above Ground +1 +tmpl4_0 +VUCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +431 +VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +Vertical v-component shear between 0 to 1000m Above Ground +1 +tmpl4_0 +VVCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +432 +VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km +Vertical u-component shear between 0 to 6000m Above Ground +1 +tmpl4_0 +VUCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +433 +VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km +Vertical v-component shear between 0 to 6000m Above Ground +1 +tmpl4_0 +VVCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +59 +TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +TMP +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +586 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +4 +30. 50. 80. 100. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +60 +UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +UGRD +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +576 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +4 +30. 50. 80. 100. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +61 +VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +VGRD +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +577 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +4 +30. 50. 80. 100. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +451 +SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +SPFH +? +? +spec_alt_above_mean_sea_lvl +0 +? +1 +305. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +578 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +4 +30. 50. 80. 100. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +579 +PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +PRES +? +? +spec_hgt_lvl_above_grnd +0 +? +4 +30. 50. 80. 100. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +62 +HGT_ON_0C_ISOTHERM +? +1 +tmpl4_0 +HGT +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +63 +RH_ON_0C_ISOTHERM +? +1 +tmpl4_0 +RH +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +165 +HGT_ON_HGHST_TROP_FRZ_LVL +? +1 +tmpl4_0 +HGT +? +? +hghst_trop_frz_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +247 +HGT_ON_LWST_LVL_OF_WET_BULB_ZERO +? +1 +tmpl4_0 +HGT +? +? +lwst_lvl_of_wet_bulb_zero +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +67 +PRES_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PRES +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +68 +TMP_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +TMP +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +69 +POT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +POT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +70 +DPT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +DPT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +71 +SPFH_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +SPFH +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +72 +RH_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +RH +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +88 +MCONV_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +MCONV +NCEP +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +89 +PWAT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PWAT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +73 +UGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +UGRD +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +74 +VGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +VGRD +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +90 +VVEL_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +VVEL +? +? +spec_pres_above_grnd +0 +? +3 +3000. 9000. 18000. +spec_pres_above_grnd +0 +? +3 +0. 6000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +148 +PRES_ON_CLOUD_BASE +? +1 +tmpl4_0 +PRES +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +149 +PRES_ON_CLOUD_TOP +? +1 +tmpl4_0 +PRES +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +178 +HGT_ON_CLOUD_BASE +? +1 +tmpl4_0 +HGT +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +179 +HGT_ON_CLOUD_TOP +? +1 +tmpl4_0 +HGT +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +173 +PRES_ON_MAX_WIND +? +1 +tmpl4_0 +PRES +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +174 +HGT_ON_MAX_WIND +? +1 +tmpl4_0 +HGT +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +175 +UGRD_ON_MAX_WIND +? +1 +tmpl4_0 +UGRD +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +176 +VGRD_ON_MAX_WIND +? +1 +tmpl4_0 +VGRD +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +276 +REFZR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFZR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +277 +REFZI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFZI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +253 +REFD_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +REFD +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +2 +4000. 1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +279 +REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +REFZR +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +2 +4000. 1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +280 +REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +REFZI +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +2 +4000. 1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +221 +HPBL_ON_SURFACE +? +1 +tmpl4_0 +HPBL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +194 +PRES_ON_GRID_SCALE_CLOUD_BOT_LVL +? +1 +tmpl4_0 +PRES +? +? +grid_scale_cloud_bot_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +195 +PRES_ON_GRID_SCALE_CLOUD_TOP_LVL +? +1 +tmpl4_0 +PRES +? +? +grid_scale_cloud_top_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +202 +TCOLR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +203 +TCOLS_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLS +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +204 +TCOLC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +428 +TCOLG_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLG +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +285 +TCLSW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCLSW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +286 +TCOLM_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLM +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +287 +HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR +? +1 +tmpl4_0 +HGT +? +? +lwst_bot_lvl_of_supercooled_liq_water_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +288 +HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR +? +1 +tmpl4_0 +HGT +? +? +hghst_top_lvl_of_supercooled_liq_water_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +260 +HGT_ON_CLOUD_CEILING +? +1 +tmpl4_0 +HGT +? +? +cloud_ceilng +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +256 +ACM_LSPA_ON_SURFACE +? +1 +tmpl4_8 +LSPA +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +282 +PRES_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +PRES +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +290 +SWHR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +SWHR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +291 +LWHR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +LWHR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +292 +AVE_LRGHR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +LRGHR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +295 +MCONV_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +MCONV +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +296 +TMP_ON_SIGMA_LVL_HPC +? +1 +tmpl4_0 +TMP +? +? +sigma_lvl +1 +4 +5 +9000. 8500. 8000. 7500. 7000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +344 +PBLREG_ON_SURFACE +? +1 +tmpl4_0 +PBLREG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +389 +UGRD_ON_PLANETARY_BOUND_LYR +? +1 +tmpl4_0 +UGRD +? +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +390 +VGRD_ON_PLANETARY_BOUND_LYR +? +1 +tmpl4_0 +VGRD +? +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +289 +HGT_ON_PLANETARY_BOUND_LYR +? +1 +tmpl4_0 +HGT +? +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +381 +MIXHT_ON_SURFACE +? +1 +tmpl4_0 +MIXHT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +400 +RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +RETOP +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +454 +VRATE_ON_PLANETARY_BOUND_LYR +Ventilation Rate on planetary boundary layer +1 +tmpl4_0 +VRATE +NCEP +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +455 +HINDEX_ON_SURFACE +Haines Index on surface +1 +tmpl4_0 +HINDEX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +345 +MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +TMAX +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +346 +MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +TMIN +? +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +347 +MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +MAXRH +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +348 +MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +MINRH +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +506 +MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +U Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXUW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +507 +MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +V Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXVW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground +1 +tmpl4_8 +WIND +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +421 +MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MAXREF +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +423 +MAX_MAXUVV_ON_ISOBARIC_SFC_10-100hpa +hourly maximum Upward Vertical Velocity between 10-100hpa +1 +tmpl4_8 +MAXUVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +424 +MAX_MAXDVV_ON_ISOBARIC_SFC_10-100hpa +hourly maximum Downward Vertical Velocity between 10-100hpa +1 +tmpl4_8 +MAXDVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +444 +LTNG_ON_SURFACE +lightning +1 +tmpl4_0 +LTNG +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +581 +VIL_ON_ENTIRE_ATMOS +entire atmosphere Vertically Integrated Liquid (kg/m-2) +1 +tmpl4_0 +VIL +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +427 +UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_0 +UPHL +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +786 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +791 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +790 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +793 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +890 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 +Hourly max relative vorticity on hybrid level 1 +1 +tmpl4_8 +RELV +? +MAX +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +792 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +785 +MAX_REF_ON_ISOTHERMAL_-10C +maximum reflectivity on -10C suface +1 +tmpl4_8 +MAXREF +NCEP +MAX +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +912 +REFD_ON_ISOTHERMAL +? +1 +tmpl4_0 +REFD +NCEP +? +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +NATLEV +32769 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +nmm_8km +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +5 +25000. 50000. 70000. 85000. 95000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +20 +VVEL_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VVEL +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1 +PRES_ON_HYBRID_LVL +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +77 +HGT_ON_HYBRID_LVL +? +1 +tmpl4_0 +HGT +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +2 +TMP_ON_HYBRID_LVL +? +1 +tmpl4_0 +TMP +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +5 +SPFH_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPFH +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +7 +UGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +UGRD +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +8 +VGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +VGRD +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +9 +VVEL_ON_HYBRID_LVL +? +1 +tmpl4_0 +VVEL +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +264 +DZDT_ON_HYBRID_LVL +? +1 +tmpl4_0 +DZDT +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +11 +TKE_ON_HYBRID_LVL +? +1 +tmpl4_0 +TKE +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +78 +AVE_LRGHR_ON_HYBRID_LVL +? +1 +tmpl4_8 +LRGHR +NCEP +AVE +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +23 +MSLET_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLET +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +105 +PRES_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +PRMSL +? +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +RH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +158 +POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +POT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +159 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +27 +POT_ON_SURFACE +? +1 +tmpl4_0 +POT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +28 +SPFH_ON_SURFACE +? +1 +tmpl4_0 +SPFH +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +423 +MAX_MAXUVV_ON_ISOBARIC_SFC_10-100hpa +hourly maximum Upward Vertical Velocity between 10-100hpa +1 +tmpl4_8 +MAXUVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +424 +MAX_MAXDVV_ON_ISOBARIC_SFC_10-100hpa +hourly maximum Downward Vertical Velocity between 10-100hpa +1 +tmpl4_8 +MAXDVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +790 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +786 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +791 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +793 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +890 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 +Hourly max relative vorticity on hybrid level 1 +1 +tmpl4_8 +RELV +? +MAX +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +792 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +506 +MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +U Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXUW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +507 +MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +V Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXVW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +421 +MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MAXREF +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +785 +MAX_REF_ON_ISOTHERMAL_-10C +maximum reflectivity on -10C suface +1 +tmpl4_8 +MAXREF +NCEP +MAX +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +912 +REFD_ON_ISOTHERMAL +? +1 +tmpl4_0 +REFD +NCEP +? +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +345 +MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +TMAX +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +346 +MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +TMIN +? +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +347 +MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +MAXRH +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +348 +MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +MINRH +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +116 +TSOIL_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +4 +2 2 2 2 +4 +0. 10. 40. 100. +depth_bel_land_sfc +4 +2 2 2 2 +4 +10. 40. 100. 200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +117 +SOILW_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILW +NCEP +? +depth_bel_land_sfc +4 +2 2 2 2 +4 +0. 10. 40. 100. +depth_bel_land_sfc +4 +2 2 2 2 +4 +10. 40. 100. 200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +36 +SOILM_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILM +? +? +depth_bel_land_sfc +1 +2 +1 +0. +depth_bel_land_sfc +1 +2 +1 +200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +169 +SFEXC_ON_SURFACE +? +1 +tmpl4_0 +SFEXC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +170 +VEG_ON_SURFACE +? +1 +tmpl4_0 +VEG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +171 +MSTAV_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +MSTAV +NCEP +? +depth_bel_land_sfc +1 +2 +1 +0. +depth_bel_land_sfc +1 +2 +1 +100. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +115 +TSOIL_ON_DEPTH_BEL_LAND_SFC_3m +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +0 +? +1 +3. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +152 +INST_GFLUX_ON_SURFACE +? +1 +tmpl4_0 +GFLUX +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +119 +WEASD_ON_SURFACE +? +1 +tmpl4_0 +WEASD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +31 +4LFTX_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +4LFTX +NCEP +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +PWAT +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +87 +ACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +34 +ACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +417 +CACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +419 +CACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +121 +ACM_SNOM_ON_SURFACE +? +1 +tmpl4_8 +SNOM +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +122 +ACM_SSRUN_ON_SURFACE +? +1 +tmpl4_8 +SSRUN +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +123 +ACM_BGRUN_ON_SURFACE +? +1 +tmpl4_8 +BGRUN +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +160 +INST_CRAIN_ON_SURFACE +? +1 +tmpl4_0 +CRAIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +551 +CSNOW_ON_SURFACE +Categorical snow on surface +1 +tmpl4_0 +CSNOW +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +552 +CICEP_ON_SURFACE +Categorical ice pellets on surface +1 +tmpl4_0 +CICEP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +553 +CFRZR_ON_SURFACE +Categorical freezing rain on surface +1 +tmpl4_0 +CFRZR +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +167 +INST_PRATE_ON_SURFACE +? +1 +tmpl4_0 +PRATE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +172 +CPOFP_ON_SURFACE +? +1 +tmpl4_0 +CPOFP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +124 +CLWMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +CLWMR +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +125 +ICMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +ICMR +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +415 +GRLE_ON_HYBRID_LVL +Graupel mixing ration on hybrid level +1 +tmpl4_0 +GRLE +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +145 +TCDC_ON_HYBRID_LVL +? +1 +tmpl4_0 +TCDC +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +181 +RWMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +RWMR +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +182 +SNMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +SNMR +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +187 +RIME_ON_HYBRID_LVL +? +1 +tmpl4_0 +RIME +NCEP +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +199 +TCOND_ON_HYBRID_LVL +? +1 +tmpl4_0 +TCOND +NCEP +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +185 +FRAIN_ON_HYBRID_LVL +? +1 +tmpl4_0 +FRAIN +NCEP +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +186 +FICE_ON_HYBRID_LVL +? +1 +tmpl4_0 +FICE +NCEP +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +37 +LCDC_ON_LOW_CLOUD_LYR +? +1 +tmpl4_0 +LCDC +? +? +low_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +38 +MCDC_ON_MID_CLOUD_LYR +? +1 +tmpl4_0 +MCDC +? +? +mid_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +39 +HCDC_ON_HIGH_CLOUD_LYR +? +1 +tmpl4_0 +HCDC +? +? +high_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +139 +AVE_CDLYR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +CDLYR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +126 +AVE_DSWRF_ON_SURFACE +? +1 +tmpl4_8 +DSWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +127 +AVE_DLWRF_ON_SURFACE +? +1 +tmpl4_8 +DLWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +128 +AVE_USWRF_ON_SURFACE +? +1 +tmpl4_8 +USWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +129 +AVE_ULWRF_ON_SURFACE +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +130 +AVE_USWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +USWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +131 +AVE_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +262 +INST_CSDSF_ON_SURFACE +? +1 +tmpl4_0 +CSDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +44 +SFCR_ON_SURFACE +? +1 +tmpl4_0 +SFCR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.7 +0 +0 +0 +? +? +? +45 +FRICV_ON_SURFACE +? +1 +tmpl4_0 +FRICV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +132 +CD_ON_SURFACE +? +1 +tmpl4_0 +CD +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +133 +UFLX_ON_SURFACE +? +1 +tmpl4_0 +UFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +134 +VFLX_ON_SURFACE +? +1 +tmpl4_0 +VFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +43 +AVE_SHTFL_ON_SURFACE +? +1 +tmpl4_8 +SHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +135 +AVE_GFLUX_ON_SURFACE +? +1 +tmpl4_8 +GFLUX +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +136 +AVE_SNOHF_ON_SURFACE +? +1 +tmpl4_8 +SNOHF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +42 +AVE_LHTFL_ON_SURFACE +? +1 +tmpl4_8 +LHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +47 +ACM_EVP_ON_SURFACE +? +1 +tmpl4_8 +EVP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +137 +ACM_PEVAP_ON_SURFACE +? +1 +tmpl4_8 +PEVAP +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +48 +NLAT_ON_SURFACE +? +1 +tmpl4_0 +NLAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +49 +ELON_ON_SURFACE +? +1 +tmpl4_0 +ELON +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +50 +LAND_ON_SURFACE +? +1 +tmpl4_0 +LAND +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +51 +ICEC_ON_SURFACE +? +1 +tmpl4_0 +ICEC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +52 +LMH_ON_SURFACE +? +1 +tmpl4_0 +LMH +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +53 +LMV_ON_SURFACE +? +1 +tmpl4_0 +LMV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +150 +ALBDO_ON_SURFACE +? +1 +tmpl4_0 +ALBDO +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +151 +WTMP_ON_SURFACE +? +1 +tmpl4_0 +WTMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +67 +PRES_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PRES +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +68 +TMP_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +TMP +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +69 +POT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +POT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +70 +DPT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +DPT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +71 +SPFH_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +SPFH +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +72 +RH_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +RH +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +88 +MCONV_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +MCONV +NCEP +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +89 +PWAT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PWAT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +73 +UGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +UGRD +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +74 +VGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +VGRD +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +256 +ACM_LSPA_ON_SURFACE +? +1 +tmpl4_8 +LSPA +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +282 +PRES_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +PRES +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +283 +PRES_ON_HYBRID_LVL_1L +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +1 +1. +hybrid_lvl +0 +? +1 +21. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +273 +PRES_ON_HYBRID_LVL_LLM +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +1 +1. +hybrid_lvl +0 +? +1 +61. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +152 +INST_GFLUX_ON_SURFACE +? +1 +tmpl4_0 +GFLUX +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +30 +LFTX_ON_ISOBARIC_SFC_500-1000hpa +? +1 +tmpl4_0 +LFTX +NCEP +? +isobaric_sfc +0 +? +1 +50000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +32 +CAPE_ON_SURFACE +? +1 +tmpl4_0 +CAPE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +566 +BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +582 +MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +584 +UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +107 +CIN_ON_SURFACE +? +1 +tmpl4_0 +CIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +567 +BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +583 +MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +585 +UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +246 +PLPL_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PLPL +NCEP +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +HLCY +? +? +spec_hgt_lvl_above_grnd +0 +? +2 +3000. 1000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +163 +USTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +USTM +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +164 +VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +VSTM +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +37 +LCDC_ON_LOW_CLOUD_LYR +? +1 +tmpl4_0 +LCDC +? +? +low_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +38 +MCDC_ON_MID_CLOUD_LYR +? +1 +tmpl4_0 +MCDC +? +? +mid_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +39 +HCDC_ON_HIGH_CLOUD_LYR +? +1 +tmpl4_0 +HCDC +? +? +high_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +139 +AVE_CDLYR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +CDLYR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +148 +PRES_ON_CLOUD_BASE +? +1 +tmpl4_0 +PRES +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +149 +PRES_ON_CLOUD_TOP +? +1 +tmpl4_0 +PRES +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +135 +AVE_GFLUX_ON_SURFACE +? +1 +tmpl4_8 +GFLUX +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +136 +AVE_SNOHF_ON_SURFACE +? +1 +tmpl4_8 +SNOHF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +47 +ACM_EVP_ON_SURFACE +? +1 +tmpl4_8 +EVP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +54 +PRES_ON_TROPOPAUSE +? +1 +tmpl4_0 +PRES +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +177 +HGT_ON_TROPOPAUSE +? +1 +tmpl4_0 +HGT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +55 +TMP_ON_TROPOPAUSE +? +1 +tmpl4_0 +TMP +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +56 +UGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +UGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +57 +VGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +VGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +58 +VWSH_ON_TROPOPAUSE +? +1 +tmpl4_0 +VWSH +NCEP +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +59 +TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +TMP +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +60 +UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +UGRD +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +61 +VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +VGRD +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +62 +HGT_ON_0C_ISOTHERM +? +1 +tmpl4_0 +HGT +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +63 +RH_ON_0C_ISOTHERM +? +1 +tmpl4_0 +RH +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +165 +HGT_ON_HGHST_TROP_FRZ_LVL +? +1 +tmpl4_0 +HGT +? +? +hghst_trop_frz_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +173 +PRES_ON_MAX_WIND +? +1 +tmpl4_0 +PRES +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +174 +HGT_ON_MAX_WIND +? +1 +tmpl4_0 +HGT +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +175 +UGRD_ON_MAX_WIND +? +1 +tmpl4_0 +UGRD +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +176 +VGRD_ON_MAX_WIND +? +1 +tmpl4_0 +VGRD +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground +1 +tmpl4_8 +WIND +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +178 +HGT_ON_CLOUD_BASE +? +1 +tmpl4_0 +HGT +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +179 +HGT_ON_CLOUD_TOP +? +1 +tmpl4_0 +HGT +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +180 +VIS_ON_SURFACE +? +1 +tmpl4_0 +VIS +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +194 +PRES_ON_GRID_SCALE_CLOUD_BOT_LVL +? +1 +tmpl4_0 +PRES +? +? +grid_scale_cloud_bot_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +195 +PRES_ON_GRID_SCALE_CLOUD_TOP_LVL +? +1 +tmpl4_0 +PRES +? +? +grid_scale_cloud_top_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +202 +TCOLR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +203 +TCOLS_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLS +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +204 +TCOLC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +428 +TCOLG_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLG +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +218 +VGTYP_ON_SURFACE +? +1 +tmpl4_0 +VGTYP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +219 +SOTYP_ON_SURFACE +? +1 +tmpl4_0 +SOTYP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +220 +CCOND_ON_SURFACE +? +1 +tmpl4_0 +CCOND +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +221 +HPBL_ON_SURFACE +? +1 +tmpl4_0 +HPBL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +224 +SNOD_ON_SURFACE +? +1 +tmpl4_0 +SNOD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +231 +SBSNO_ON_SURFACE +? +1 +tmpl4_0 +SBSNO +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +232 +SMDRY_ON_SURFACE +? +1 +tmpl4_0 +SMDRY +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +233 +POROS_ON_SURFACE +? +1 +tmpl4_0 +POROS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +234 +RSMIN_ON_SURFACE +? +1 +tmpl4_0 +RSMIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +235 +RLYRS_ON_SURFACE +? +1 +tmpl4_0 +RLYRS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +236 +WILT_ON_SURFACE +? +1 +tmpl4_0 +WILT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +237 +SMREF_ON_SURFACE +? +1 +tmpl4_0 +SMREF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +238 +RCS_ON_SURFACE +? +1 +tmpl4_0 +RCS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +239 +RCT_ON_SURFACE +? +1 +tmpl4_0 +RCT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +240 +RCQ_ON_SURFACE +? +1 +tmpl4_0 +RCQ +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +241 +RCSOL_ON_SURFACE +? +1 +tmpl4_0 +RCSOL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +242 +PEVPR_ON_SURFACE +? +1 +tmpl4_0 +PEVPR +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +247 +HGT_ON_LWST_LVL_OF_WET_BULB_ZERO +? +1 +tmpl4_0 +HGT +? +? +lwst_lvl_of_wet_bulb_zero +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +254 +LAI_ON_SURFACE +? +1 +tmpl4_0 +LAI +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +262 +INST_CSDSF_ON_SURFACE +? +1 +tmpl4_0 +CSDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +289 +HGT_ON_PLANETARY_BOUND_LYR +? +1 +tmpl4_0 +HGT +? +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +381 +MIXHT_ON_SURFACE +? +1 +tmpl4_0 +MIXHT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +505 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +500 +AVE_SNOWC_ON_SURFACE +? +1 +tmpl4_8 +SNOWC +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +501 +AVE_PRES_ON_SURFACE +? +1 +tmpl4_8 +PRES +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +502 +AVE_TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_8 +TMP +? +AVE +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +503 +AVE_AKHS_ON_SURFACE +? +1 +tmpl4_8 +AKHS +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +504 +AVE_AKMS_ON_SURFACE +? +1 +tmpl4_8 +AKMS +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? diff --git a/tests/parm/postxconfig-NT-hafs.txt b/tests/parm/postxconfig-NT-hafs.txt new file mode 100644 index 0000000000..03e551e5d7 --- /dev/null +++ b/tests/parm/postxconfig-NT-hafs.txt @@ -0,0 +1,3274 @@ +1 +88 +HURPRS +32769 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +hafs +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +284 +DZDT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DZDT +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +20 +VVEL_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VVEL +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +22 +TKE_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TKE +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +153 +CLWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +CLWMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +166 +ICMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ICMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +183 +RWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RWMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +184 +SNMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SNMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +416 +GRLE_ON_ISOBARIC_SFC +Graupel mixing ration on isobaric surface +1 +tmpl4_0 +GRLE +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +251 +REFD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +REFD +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +23 +MSLET_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLET +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +105 +PRES_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +PRMSL +? +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +RH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +158 +POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +POT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +27 +POT_ON_SURFACE +? +1 +tmpl4_0 +POT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +28 +SPFH_ON_SURFACE +? +1 +tmpl4_0 +SPFH +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +120 +SNOWC_ON_SURFACE +? +1 +tmpl4_0 +SNOWC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +169 +SFEXC_ON_SURFACE +? +1 +tmpl4_0 +SFEXC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +32 +CAPE_ON_SURFACE +? +1 +tmpl4_0 +CAPE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +107 +CIN_ON_SURFACE +? +1 +tmpl4_0 +CIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +PWAT +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +HLCY +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +87 +ACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +34 +ACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +167 +INST_PRATE_ON_SURFACE +? +1 +tmpl4_0 +PRATE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +139 +AVE_CDLYR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +CDLYR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +126 +AVE_DSWRF_ON_SURFACE +? +1 +tmpl4_8 +DSWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +127 +AVE_DLWRF_ON_SURFACE +? +1 +tmpl4_8 +DLWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +128 +AVE_USWRF_ON_SURFACE +? +1 +tmpl4_8 +USWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +129 +AVE_ULWRF_ON_SURFACE +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +130 +AVE_USWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +USWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +131 +AVE_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +274 +INST_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +ULWRF +NCEP +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +275 +BRTMP_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +BRTMP +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +44 +SFCR_ON_SURFACE +? +1 +tmpl4_0 +SFCR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +45 +FRICV_ON_SURFACE +? +1 +tmpl4_0 +FRICV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +132 +CD_ON_SURFACE +? +1 +tmpl4_0 +CD +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +133 +UFLX_ON_SURFACE +? +1 +tmpl4_0 +UFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +134 +VFLX_ON_SURFACE +? +1 +tmpl4_0 +VFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +43 +AVE_SHTFL_ON_SURFACE +? +1 +tmpl4_8 +SHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +42 +AVE_LHTFL_ON_SURFACE +? +1 +tmpl4_8 +LHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +47 +ACM_EVP_ON_SURFACE +? +1 +tmpl4_8 +EVP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +48 +NLAT_ON_SURFACE +? +1 +tmpl4_0 +NLAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +49 +ELON_ON_SURFACE +? +1 +tmpl4_0 +ELON +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +50 +LAND_ON_SURFACE +? +1 +tmpl4_0 +LAND +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +151 +WTMP_ON_SURFACE +? +1 +tmpl4_0 +WTMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +54 +PRES_ON_TROPOPAUSE +? +1 +tmpl4_0 +PRES +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +177 +HGT_ON_TROPOPAUSE +? +1 +tmpl4_0 +HGT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +55 +TMP_ON_TROPOPAUSE +? +1 +tmpl4_0 +TMP +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +108 +POT_ON_TROPOPAUSE +? +1 +tmpl4_0 +POT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +56 +UGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +UGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +57 +VGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +VGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +58 +VWSH_ON_TROPOPAUSE +? +1 +tmpl4_0 +VWSH +NCEP +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +221 +HPBL_ON_SURFACE +? +1 +tmpl4_0 +HPBL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +202 +TCOLR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +203 +TCOLS_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLS +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +204 +TCOLC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +285 +TCLSW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCLSW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +286 +TCOLM_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLM +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +291 +LWHR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +LWHR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +292 +AVE_LRGHR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +LRGHR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? diff --git a/tests/rt.conf b/tests/rt.conf index 42900a07ad..0c596e9aa1 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -40,6 +40,7 @@ COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y 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_hafs | | 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 | diff --git a/tests/rt.sh b/tests/rt.sh index 0006577623..90879ab31e 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -415,9 +415,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-20210308/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210309/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210308} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210309} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210212} diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 52f9dd8f6a..a6e982a4de 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -327,6 +327,10 @@ check_results() { fi + echo >> ${REGRESSIONTEST_LOG} + grep "The total amount of wall time" ${RUNDIR}/out >> ${REGRESSIONTEST_LOG} + echo >> ${REGRESSIONTEST_LOG} + echo "Test ${TEST_NR} ${TEST_NAME} ${test_status}" >> ${REGRESSIONTEST_LOG} echo >> ${REGRESSIONTEST_LOG} echo "Test ${TEST_NR} ${TEST_NAME} ${test_status}" diff --git a/tests/run_test.sh b/tests/run_test.sh index 1febc57b32..582e3bd179 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -79,12 +79,6 @@ cp ${PATHRT}/modules.fv3_${COMPILE_NR} modules.fv3 # Get the shell file that loads the "module" command and purges modules: cp ${PATHRT}/../NEMS/src/conf/module-setup.sh.inc module-setup.sh -if [[ $FV3 = 'true' ]]; then - cp ${PATHRT}/parm/post_itag itag - cp ${PATHRT}/parm/postxconfig-NT.txt postxconfig-NT.txt - cp ${PATHRT}/parm/postxconfig-NT_FH00.txt postxconfig-NT_FH00.txt - cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new -fi SRCD="${PATHTR}" RUND="${RUNDIR}" diff --git a/tests/tests/fv3_ccpp_gfdlmprad_32bit_post b/tests/tests/fv3_ccpp_gfdlmprad_32bit_post index ba5813bef1..129fab60f7 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad_32bit_post +++ b/tests/tests/fv3_ccpp_gfdlmprad_32bit_post @@ -66,6 +66,7 @@ export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'nemsio'" export OUTPUT_HISTORY=.true. export WRITE_DOPOST=.true. +export POSTAPP='global' export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. diff --git a/tests/tests/fv3_ccpp_regional_control b/tests/tests/fv3_ccpp_regional_control index 4325f8a065..dd7f2ee05c 100644 --- a/tests/tests/fv3_ccpp_regional_control +++ b/tests/tests/fv3_ccpp_regional_control @@ -24,6 +24,9 @@ export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. export HYBEDMF=.F. +export RESTART_INTERVAL=12 +export QUILTING=.false. +export MODEL_CONFIGURE=model_configure_regional.IN export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export INPUT_NML=ccpp_regional.nml.IN diff --git a/tests/tests/fv3_ccpp_regional_control_debug b/tests/tests/fv3_ccpp_regional_control_debug index 736ad8ada6..f03ca27909 100644 --- a/tests/tests/fv3_ccpp_regional_control_debug +++ b/tests/tests/fv3_ccpp_regional_control_debug @@ -25,6 +25,8 @@ export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. export HYBEDMF=.F. +export QUILTING=.false. +export MODEL_CONFIGURE=model_configure_regional.IN export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export INPUT_NML=ccpp_regional.nml.IN diff --git a/tests/tests/fv3_ccpp_regional_quilt b/tests/tests/fv3_ccpp_regional_quilt index 43b6eae94a..6fcc844d62 100644 --- a/tests/tests/fv3_ccpp_regional_quilt +++ b/tests/tests/fv3_ccpp_regional_quilt @@ -8,11 +8,14 @@ export TEST_DESCR="Compare FV3 CCPP regional quilt results with previous trunk v export CNTL_DIR=fv3_regional_quilt -export LIST_FILES=" atmos_4xdaily.nc \ - dynf000.nc \ - dynf024.nc \ - phyf000.nc \ - phyf024.nc " +export LIST_FILES="dynf000.nc \ + dynf024.nc \ + phyf000.nc \ + phyf024.nc \ + PRSLEV.GrbF00 \ + PRSLEV.GrbF24 \ + NATLEV.GrbF00 \ + NATLEV.GrbF24" export_fv3 @@ -24,9 +27,12 @@ export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. export HYBEDMF=.F. +export WRITE_DOPOST=.true. +export POSTAPP='lam' export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export INPUT_NML=ccpp_regional.nml.IN +export MODEL_CONFIGURE=model_configure_regional.IN export FDIAG=3 export INPES=6 diff --git a/tests/tests/fv3_ccpp_regional_quilt_hafs b/tests/tests/fv3_ccpp_regional_quilt_hafs new file mode 100644 index 0000000000..3cfbbbc2ef --- /dev/null +++ b/tests/tests/fv3_ccpp_regional_quilt_hafs @@ -0,0 +1,39 @@ +############################################################################### +# +# FV3 CCPP regional control test +# +############################################################################### + +export TEST_DESCR="Compare FV3 CCPP regional quilt results with previous trunk version" + +export CNTL_DIR=fv3_regional_quilt_hafs + +export LIST_FILES="dynf000.nc \ + dynf024.nc \ + phyf000.nc \ + phyf024.nc \ + HURPRS.GrbF00 \ + HURPRS.GrbF24" + +export_fv3 + +export TASKS=28 + +export FV3_RUN=ccpp_regional_run.IN + +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. +export H2O_PHYS=.T. +export HYBEDMF=.F. +export WRITE_DOPOST=.true. +export POSTAPP='hafs' + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn +export INPUT_NML=ccpp_regional.nml.IN +export MODEL_CONFIGURE=model_configure_hafs.IN + +export FDIAG=3 +export INPES=6 +export JNPES=4 + +export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel b/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel index c1659a9681..2a8ee350b0 100644 --- a/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel +++ b/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel @@ -24,6 +24,9 @@ export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. export HYBEDMF=.F. +export MODEL_CONFIGURE=model_configure_regional.IN +export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" +export IDEFLATE=1 export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export INPUT_NML=ccpp_regional.nml.IN diff --git a/tests/tests/fv3_ccpp_regional_restart b/tests/tests/fv3_ccpp_regional_restart index db2fde1a4e..cd4c21022d 100644 --- a/tests/tests/fv3_ccpp_regional_restart +++ b/tests/tests/fv3_ccpp_regional_restart @@ -23,6 +23,8 @@ export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. export HYBEDMF=.F. +export QUILTING=.false. +export MODEL_CONFIGURE=model_configure_regional.IN export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export INPUT_NML=ccpp_regional.nml.IN From d16a5a0c87c8195548533a8814a89db075f006cb Mon Sep 17 00:00:00 2001 From: jiandewang Date: Sat, 13 Mar 2021 19:41:11 -0500 Subject: [PATCH 080/109] update MOM6 to GFDL 20210308 main branch commit (#458) * (1) modify mom6_files.cmake to reflect the 12 files being moved out from framework directory to infra directory (2) modify CMakeLists.txt to reflect the directories being changed where *.h files are stored --- MOM6-interface/CMakeLists.txt | 8 +- MOM6-interface/MOM6 | 2 +- MOM6-interface/mom6_files.cmake | 47 +- tests/RegressionTests_cheyenne.gnu.log | 216 +++-- tests/RegressionTests_cheyenne.intel.log | 1056 ++++++++++++++-------- tests/RegressionTests_gaea.intel.log | 408 ++++----- tests/RegressionTests_hera.gnu.log | 126 +-- tests/RegressionTests_hera.intel.log | 446 ++++----- tests/RegressionTests_jet.intel.log | 276 +++--- tests/RegressionTests_orion.intel.log | 564 +++++++++--- tests/RegressionTests_wcoss_cray.log | 290 +++--- tests/RegressionTests_wcoss_dell_p3.log | 444 ++++----- 12 files changed, 2314 insertions(+), 1569 deletions(-) diff --git a/MOM6-interface/CMakeLists.txt b/MOM6-interface/CMakeLists.txt index bfae700e40..2ca5462610 100644 --- a/MOM6-interface/CMakeLists.txt +++ b/MOM6-interface/CMakeLists.txt @@ -28,7 +28,7 @@ include("mom6_files.cmake") add_library(mom6_obj OBJECT ${mom6_src_files}) set_target_properties(mom6_obj PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(mom6_obj PRIVATE $) -target_include_directories(mom6_obj PRIVATE $ +target_include_directories(mom6_obj PRIVATE $ $) target_link_libraries(mom6_obj PRIVATE fms NetCDF::NetCDF_Fortran) @@ -40,7 +40,7 @@ target_link_libraries(mom6_obj PRIVATE fms add_library(mom6_nuopc_obj OBJECT ${mom6_nuopc_src_files}) set_target_properties(mom6_nuopc_obj PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(mom6_nuopc_obj PRIVATE $) -target_include_directories(mom6_nuopc_obj PRIVATE $ +target_include_directories(mom6_nuopc_obj PRIVATE $ $) target_link_libraries(mom6_nuopc_obj PRIVATE mom6_obj fms @@ -55,7 +55,7 @@ add_library(mom6 STATIC $ $) target_include_directories(mom6 PUBLIC $ $) -target_include_directories(mom6 PUBLIC $ +target_include_directories(mom6 PUBLIC $ $) target_link_libraries(mom6 PUBLIC fms esmf @@ -73,7 +73,7 @@ if(MOM6SOLO) set_target_properties(mom6solo PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod_solo) target_include_directories(mom6solo PRIVATE $) target_include_directories(mom6solo PRIVATE $) - target_include_directories(mom6solo PRIVATE $ + target_include_directories(mom6solo PRIVATE $ $) target_link_libraries(mom6solo PRIVATE mom6_obj fms diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index a729a7fb40..3703ca7ddc 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit a729a7fb400d8d441868606abdb3e722ceb2b8f5 +Subproject commit 3703ca7ddc3dbd18d205581d32e47aa828fed976 diff --git a/MOM6-interface/mom6_files.cmake b/MOM6-interface/mom6_files.cmake index fe8ff26fd8..a968f227a1 100644 --- a/MOM6-interface/mom6_files.cmake +++ b/MOM6-interface/mom6_files.cmake @@ -97,40 +97,28 @@ list(APPEND mom6_src_files MOM6/src/framework/MOM_array_transform.F90 MOM6/src/framework/MOM_checksums.F90 MOM6/src/framework/MOM_coms.F90 - MOM6/src/framework/MOM_coms_infra.F90 - MOM6/src/framework/MOM_constants.F90 MOM6/src/framework/MOM_coupler_types.F90 - MOM6/src/framework/MOM_couplertype_infra.F90 MOM6/src/framework/MOM_cpu_clock.F90 - MOM6/src/framework/MOM_cpu_clock_infra.F90 MOM6/src/framework/MOM_data_override.F90 - MOM6/src/framework/MOM_data_override_infra.F90 - MOM6/src/framework/MOM_diag_manager_infra.F90 MOM6/src/framework/MOM_diag_mediator.F90 MOM6/src/framework/MOM_diag_remap.F90 MOM6/src/framework/MOM_diag_vkernels.F90 MOM6/src/framework/MOM_document.F90 - MOM6/src/framework/MOM_domain_infra.F90 MOM6/src/framework/MOM_domains.F90 MOM6/src/framework/MOM_dyn_horgrid.F90 MOM6/src/framework/MOM_ensemble_manager.F90 - MOM6/src/framework/MOM_ensemble_manager_infra.F90 MOM6/src/framework/MOM_error_handler.F90 - MOM6/src/framework/MOM_error_infra.F90 MOM6/src/framework/MOM_file_parser.F90 MOM6/src/framework/MOM_get_input.F90 MOM6/src/framework/MOM_hor_index.F90 MOM6/src/framework/MOM_horizontal_regridding.F90 - MOM6/src/framework/MOM_interp_infra.F90 MOM6/src/framework/MOM_interpolate.F90 MOM6/src/framework/MOM_intrinsic_functions.F90 MOM6/src/framework/MOM_io.F90 - MOM6/src/framework/MOM_io_infra.F90 MOM6/src/framework/MOM_random.F90 MOM6/src/framework/MOM_restart.F90 MOM6/src/framework/MOM_safe_alloc.F90 MOM6/src/framework/MOM_string_functions.F90 - MOM6/src/framework/MOM_time_manager.F90 MOM6/src/framework/MOM_unit_scaling.F90 MOM6/src/framework/MOM_write_cputime.F90 @@ -265,21 +253,34 @@ list(APPEND mom6_src_files MOM6/config_src/external/ODA_hooks/ocean_da_types.F90 MOM6/config_src/external/ODA_hooks/write_ocean_obs.F90 + MOM6/config_src/infra/FMS1/MOM_coms_infra.F90 + MOM6/config_src/infra/FMS1/MOM_constants.F90 + MOM6/config_src/infra/FMS1/MOM_couplertype_infra.F90 + MOM6/config_src/infra/FMS1/MOM_cpu_clock_infra.F90 + MOM6/config_src/infra/FMS1/MOM_data_override_infra.F90 + MOM6/config_src/infra/FMS1/MOM_diag_manager_infra.F90 + MOM6/config_src/infra/FMS1/MOM_domain_infra.F90 + MOM6/config_src/infra/FMS1/MOM_ensemble_manager_infra.F90 + MOM6/config_src/infra/FMS1/MOM_error_infra.F90 + MOM6/config_src/infra/FMS1/MOM_interp_infra.F90 + MOM6/config_src/infra/FMS1/MOM_io_infra.F90 + MOM6/config_src/infra/FMS1/MOM_time_manager.F90 + ) list(APPEND mom6_nuopc_src_files - MOM6/config_src/nuopc_driver/mom_cap.F90 - MOM6/config_src/nuopc_driver/time_utils.F90 - MOM6/config_src/nuopc_driver/mom_cap_methods.F90 - MOM6/config_src/nuopc_driver/mom_cap_time.F90 - MOM6/config_src/nuopc_driver/mom_ocean_model_nuopc.F90 - MOM6/config_src/nuopc_driver/mom_surface_forcing_nuopc.F90 + MOM6/config_src/drivers/nuopc_cap/mom_cap.F90 + MOM6/config_src/drivers/nuopc_cap/time_utils.F90 + MOM6/config_src/drivers/nuopc_cap/mom_cap_methods.F90 + MOM6/config_src/drivers/nuopc_cap/mom_cap_time.F90 + MOM6/config_src/drivers/nuopc_cap/mom_ocean_model_nuopc.F90 + MOM6/config_src/drivers/nuopc_cap/mom_surface_forcing_nuopc.F90 ) list(APPEND mom6_solo_src_files - MOM6/config_src/solo_driver/MESO_surface_forcing.F90 - MOM6/config_src/solo_driver/MOM_driver.F90 - MOM6/config_src/solo_driver/MOM_surface_forcing.F90 - MOM6/config_src/solo_driver/atmos_ocean_fluxes.F90 - MOM6/config_src/solo_driver/user_surface_forcing.F90 + MOM6/config_src/drivers/solo_driver/MESO_surface_forcing.F90 + MOM6/config_src/drivers/solo_driver/MOM_driver.F90 + MOM6/config_src/drivers/solo_driver/MOM_surface_forcing.F90 + MOM6/config_src/drivers/solo_driver/atmos_ocean_fluxes.F90 + MOM6/config_src/drivers/solo_driver/user_surface_forcing.F90 ) diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index eb26a6f777..fd499e6861 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Mon Mar 8 14:01:04 MST 2021 +Fri Mar 12 12:42:53 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -47,11 +47,14 @@ Checking test 001 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 + +The total amount of wall time = 73.838579 + Test 001 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/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 @@ -115,11 +118,14 @@ Checking test 002 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 + +The total amount of wall time = 137.778086 + Test 002 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -195,11 +201,14 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 186.857245 + Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -245,11 +254,14 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 97.727190 + Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -313,11 +325,14 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 88.961471 + Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -381,11 +396,14 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 142.759770 + Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/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 @@ -449,11 +467,14 @@ Checking test 007 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 + +The total amount of wall time = 251.704303 + Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -517,11 +538,14 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 254.807788 + Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,11 +633,14 @@ Checking test 009 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 + +The total amount of wall time = 353.606434 + Test 009 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +704,14 @@ Checking test 010 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 + +The total amount of wall time = 165.731563 + Test 010 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/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 @@ -745,11 +775,14 @@ Checking test 011 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 + +The total amount of wall time = 158.555752 + Test 011 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/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 @@ -813,11 +846,14 @@ Checking test 012 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 + +The total amount of wall time = 181.609534 + Test 012 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/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 @@ -881,11 +917,14 @@ Checking test 013 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 + +The total amount of wall time = 257.088027 + Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/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 @@ -899,11 +938,14 @@ Checking test 014 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 + +The total amount of wall time = 462.494306 + Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -961,11 +1003,14 @@ Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 305.773385 + Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1023,11 +1068,14 @@ Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 303.430926 + Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1053,11 +1101,14 @@ Checking test 017 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK + +The total amount of wall time = 76.438706 + Test 017 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1121,11 +1172,14 @@ Checking test 018 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 + +The total amount of wall time = 136.737799 + Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1189,11 +1243,14 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 96.923799 + Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1257,11 +1314,14 @@ Checking test 020 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 + +The total amount of wall time = 196.747410 + Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1325,11 +1385,14 @@ Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 198.064932 + Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1399,22 +1462,28 @@ Checking test 022 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 + +The total amount of wall time = 175.597425 + Test 022 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_regional_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_regional_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug 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 + +The total amount of wall time = 186.603794 + Test 023 fv3_ccpp_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1478,11 +1547,14 @@ Checking test 024 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 + +The total amount of wall time = 108.676293 + Test 024 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1546,11 +1618,14 @@ Checking test 025 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 + +The total amount of wall time = 114.617559 + Test 025 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1614,11 +1689,14 @@ Checking test 026 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 + +The total amount of wall time = 182.939559 + Test 026 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,11 +1760,14 @@ Checking test 027 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 + +The total amount of wall time = 177.493453 + Test 027 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1750,11 +1831,14 @@ Checking test 028 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 + +The total amount of wall time = 113.241309 + Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1768,11 +1852,14 @@ Checking test 029 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 + +The total amount of wall time = 214.642899 + Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_65764/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1830,9 +1917,12 @@ Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 302.395957 + Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 8 14:18:48 MST 2021 -Elapsed time: 00h:17m:44s. Have a nice day! +Fri Mar 12 12:59:56 MST 2021 +Elapsed time: 00h:17m:03s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index f0328ef041..1dd473844d 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Mon Mar 8 16:15:11 MST 2021 +Sat Mar 13 03:02:18 MST 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -67,11 +67,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 49.324713 + Test 001 fv3_ccpp_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -135,11 +138,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 48.807281 + Test 002 fv3_ccpp_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -203,11 +209,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 112.007898 + Test 003 fv3_ccpp_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -253,11 +262,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 24.951175 + Test 004 fv3_ccpp_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -321,11 +333,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 47.591388 + Test 005 fv3_ccpp_read_inc PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -369,11 +384,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 115.295959 + Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -417,11 +435,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 48.338354 + Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -465,11 +486,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 47.179453 + Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -513,11 +537,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 48.407107 + Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -561,11 +588,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 48.712389 + Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -609,11 +639,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 122.939260 + Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +710,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 57.755842 + Test 012 fv3_ccpp_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -745,11 +781,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 29.935693 + Test 013 fv3_ccpp_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_lndp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,11 +852,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 52.360622 + Test 014 fv3_ccpp_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -881,11 +923,14 @@ Checking test 015 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 + +The total amount of wall time = 46.731110 + Test 015 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -929,11 +974,14 @@ Checking test 016 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 + +The total amount of wall time = 47.109637 + Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1003,11 +1051,14 @@ 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 + +The total amount of wall time = 98.735939 + Test 017 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -1071,11 +1122,14 @@ 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 + +The total amount of wall time = 42.556136 + Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1127,11 +1181,14 @@ 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 + +The total amount of wall time = 331.757928 + Test 019 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -1194,54 +1251,87 @@ 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 + +The total amount of wall time = 345.210227 + Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 + +The total amount of wall time = 715.506439 + Test 021 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 + +The total amount of wall time = 395.121280 + Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF24 .........OK + +The total amount of wall time = 741.667364 + Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_regional_quilt_hafs_prod +Checking test 024 fv3_ccpp_regional_quilt_hafs results .... + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing HURPRS.GrbF00 .........OK + Comparing HURPRS.GrbF24 .........OK + +The total amount of wall time = 740.760918 + +Test 024 fv3_ccpp_regional_quilt_hafs PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 025 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 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS +The total amount of wall time = 741.861069 + +Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfdlmp_prod -Checking test 025 fv3_ccpp_gfdlmp results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfdlmp_prod +Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1284,12 +1374,15 @@ 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 +The total amount of wall time = 54.056128 + +Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 027 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 +1425,15 @@ 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 + +The total amount of wall time = 54.710451 + +Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 028 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 +1476,15 @@ 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 +The total amount of wall time = 52.818926 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_csawmg_prod -Checking test 028 fv3_ccpp_csawmg results .... +Test 028 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_csawmg_prod +Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1428,12 +1527,15 @@ 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 + +The total amount of wall time = 143.475625 + +Test 029 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_satmedmf_prod -Checking test 029 fv3_ccpp_satmedmf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_satmedmf_prod +Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1476,12 +1578,15 @@ 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 +The total amount of wall time = 59.650618 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_satmedmfq_prod -Checking test 030 fv3_ccpp_satmedmfq results .... +Test 030 fv3_ccpp_satmedmf PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_satmedmfq_prod +Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1524,12 +1629,15 @@ 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 +The total amount of wall time = 59.982939 + +Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfdlmp_32bit_prod -Checking test 031 fv3_ccpp_gfdlmp_32bit results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfdlmp_32bit_prod +Checking test 032 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 +1680,15 @@ 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 +The total amount of wall time = 42.197546 + +Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 033 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 +1735,15 @@ 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 +The total amount of wall time = 73.199716 + +Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_cpt_prod -Checking test 033 fv3_ccpp_cpt results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_cpt_prod +Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1678,12 +1792,15 @@ 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 + +The total amount of wall time = 334.325950 + +Test 034 fv3_ccpp_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gsd_prod -Checking test 034 fv3_ccpp_gsd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gsd_prod +Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1770,12 +1887,15 @@ 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 +The total amount of wall time = 202.301512 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_rap_prod -Checking test 035 fv3_ccpp_rap results .... +Test 035 fv3_ccpp_gsd PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_rap_prod +Checking test 036 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1838,12 +1958,15 @@ Checking test 035 fv3_ccpp_rap 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_rap PASS +The total amount of wall time = 101.842991 + +Test 036 fv3_ccpp_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_hrrr_prod -Checking test 036 fv3_ccpp_hrrr results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_hrrr_prod +Checking test 037 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1906,12 +2029,15 @@ Checking test 036 fv3_ccpp_hrrr 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_hrrr PASS + +The total amount of wall time = 105.631854 + +Test 037 fv3_ccpp_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_thompson_prod -Checking test 037 fv3_ccpp_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_thompson_prod +Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1974,12 +2100,15 @@ 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 +The total amount of wall time = 95.241450 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_thompson_no_aero_prod -Checking test 038 fv3_ccpp_thompson_no_aero results .... +Test 038 fv3_ccpp_thompson PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_thompson_no_aero_prod +Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2042,12 +2171,15 @@ 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 + +The total amount of wall time = 90.337951 + +Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_rrfs_v1beta_prod -Checking test 039 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_rrfs_v1beta_prod +Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2110,12 +2242,15 @@ 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 +The total amount of wall time = 107.514712 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_prod -Checking test 040 fv3_ccpp_gfs_v16 results .... +Test 040 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v16_prod +Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2190,12 +2325,15 @@ Checking test 040 fv3_ccpp_gfs_v16 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_v16 PASS +The total amount of wall time = 131.269317 + +Test 041 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_restart_prod -Checking test 041 fv3_ccpp_gfs_v16_restart results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v16_restart_prod +Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2240,12 +2378,15 @@ Checking test 041 fv3_ccpp_gfs_v16_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_v16_restart PASS + +The total amount of wall time = 67.194026 + +Test 042 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_stochy_prod -Checking test 042 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v16_stochy_prod +Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2308,12 +2449,15 @@ Checking test 042 fv3_ccpp_gfs_v16_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_v16_stochy PASS +The total amount of wall time = 65.653021 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 043 fv3_ccpp_gfs_v16_RRTMGP results .... +Test 043 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 044 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2376,12 +2520,15 @@ Checking test 043 fv3_ccpp_gfs_v16_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_v16_RRTMGP PASS +The total amount of wall time = 221.917939 + +Test 044 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 Comparing phyf000.tile3.nc .........OK @@ -2438,12 +2585,15 @@ Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 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_v16_RRTMGP_c192L127 PASS +The total amount of wall time = 930.492833 + +Test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod -Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2506,12 +2656,15 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_2thrd 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_v16_RRTMGP_2thrd PASS +The total amount of wall time = 479.726313 + +Test 046 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gocart_clm_prod -Checking test 046 fv3_ccpp_gocart_clm results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -2554,12 +2707,15 @@ 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 + +The total amount of wall time = 57.975349 + +Test 047 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_flake_prod -Checking test 047 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v16_flake_prod +Checking test 048 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2622,12 +2778,15 @@ Checking test 047 fv3_ccpp_gfs_v16_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_v16_flake PASS +The total amount of wall time = 112.900564 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 048 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +Test 048 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -2690,12 +2849,15 @@ 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 +The total amount of wall time = 195.202679 + +Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 049 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -2708,12 +2870,15 @@ 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 + +The total amount of wall time = 340.053508 + +Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 050 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2770,12 +2935,15 @@ Checking test 050 fv3_ccpp_gfsv16_ugwpv1 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_gfsv16_ugwpv1 PASS +The total amount of wall time = 215.217470 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +Test 051 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2832,12 +3000,15 @@ Checking test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + +The total amount of wall time = 215.958034 + +Test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 052 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2900,12 +3071,15 @@ 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 +The total amount of wall time = 244.073717 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_debug_prod -Checking test 053 fv3_ccpp_gfs_v16_debug results .... +Test 053 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v16_debug_prod +Checking test 054 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2968,12 +3142,15 @@ Checking test 053 fv3_ccpp_gfs_v16_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_v16_debug PASS +The total amount of wall time = 190.461519 + +Test 054 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 054 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -3036,12 +3213,15 @@ 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 +The total amount of wall time = 386.031910 + +Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 055 fv3_ccpp_gfs_v16_RRTMGP_debug results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 056 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3104,23 +3284,29 @@ Checking test 055 fv3_ccpp_gfs_v16_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_v16_RRTMGP_debug PASS +The total amount of wall time = 392.336004 + +Test 056 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_regional_control_debug_prod -Checking test 056 fv3_ccpp_regional_control_debug results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_regional_control_debug_prod +Checking test 057 fv3_ccpp_regional_control_debug 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 056 fv3_ccpp_regional_control_debug PASS + +The total amount of wall time = 367.901496 + +Test 057 fv3_ccpp_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_control_debug_prod -Checking test 057 fv3_ccpp_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_control_debug_prod +Checking test 058 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3145,12 +3331,15 @@ Checking test 057 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 057 fv3_ccpp_control_debug PASS +The total amount of wall time = 147.007204 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_stretched_nest_debug_prod -Checking test 058 fv3_ccpp_stretched_nest_debug results .... +Test 058 fv3_ccpp_control_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_stretched_nest_debug_prod +Checking test 059 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 @@ -3165,12 +3354,15 @@ Checking test 058 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 058 fv3_ccpp_stretched_nest_debug PASS + +The total amount of wall time = 433.745602 + +Test 059 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gsd_debug_prod -Checking test 059 fv3_ccpp_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -3233,12 +3425,15 @@ Checking test 059 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 059 fv3_ccpp_gsd_debug PASS +The total amount of wall time = 217.204227 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 060 fv3_ccpp_gsd_diag3d_debug results .... +Test 060 fv3_ccpp_gsd_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -3301,12 +3496,15 @@ Checking test 060 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 060 fv3_ccpp_gsd_diag3d_debug PASS +The total amount of wall time = 266.928633 + +Test 061 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_thompson_debug_prod -Checking test 061 fv3_ccpp_thompson_debug results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -3369,12 +3567,15 @@ Checking test 061 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 061 fv3_ccpp_thompson_debug PASS + +The total amount of wall time = 360.992494 + +Test 062 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 062 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -3437,12 +3638,15 @@ Checking test 062 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 062 fv3_ccpp_thompson_no_aero_debug PASS +The total amount of wall time = 347.477064 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 063 fv3_ccpp_rrfs_v1beta_debug results .... +Test 063 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -3505,12 +3709,15 @@ Checking test 063 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 063 fv3_ccpp_rrfs_v1beta_debug PASS +The total amount of wall time = 209.617432 + +Test 064 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -3573,12 +3780,15 @@ Checking test 064 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 064 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +The total amount of wall time = 223.159204 + +Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -3591,12 +3801,15 @@ Checking test 065 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 065 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +The total amount of wall time = 398.157260 + +Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 066 fv3_ccpp_gfsv16_ugwpv1_debug results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 067 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3653,12 +3866,15 @@ Checking test 066 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 066 fv3_ccpp_gfsv16_ugwpv1_debug PASS + +The total amount of wall time = 602.327759 + +Test 067 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_control_prod -Checking test 067 cpld_control results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_control_prod +Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3706,12 +3922,15 @@ Checking test 067 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 067 cpld_control PASS +The total amount of wall time = 97.569358 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restart_prod -Checking test 068 cpld_restart results .... +Test 068 cpld_control PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_restart_prod +Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3759,12 +3978,15 @@ Checking test 068 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 068 cpld_restart PASS +The total amount of wall time = 54.799656 + +Test 069 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_controlfrac_prod -Checking test 069 cpld_controlfrac results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_controlfrac_prod +Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3812,12 +4034,15 @@ Checking test 069 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 069 cpld_controlfrac PASS + +The total amount of wall time = 97.381089 + +Test 070 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restartfrac_prod -Checking test 070 cpld_restartfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_restartfrac_prod +Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3865,12 +4090,15 @@ Checking test 070 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 070 cpld_restartfrac PASS +The total amount of wall time = 54.178565 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_2threads_prod -Checking test 071 cpld_2threads results .... +Test 071 cpld_restartfrac PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_2threads_prod +Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3918,12 +4146,15 @@ Checking test 071 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 071 cpld_2threads PASS + +The total amount of wall time = 261.666568 + +Test 072 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_decomp_prod -Checking test 072 cpld_decomp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_decomp_prod +Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3971,12 +4202,15 @@ Checking test 072 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 072 cpld_decomp PASS +The total amount of wall time = 95.143209 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_satmedmf_prod -Checking test 073 cpld_satmedmf results .... +Test 073 cpld_decomp PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_satmedmf_prod +Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4024,12 +4258,15 @@ Checking test 073 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 073 cpld_satmedmf PASS +The total amount of wall time = 95.856709 + +Test 074 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_ca_prod -Checking test 074 cpld_ca results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_ca_prod +Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4077,12 +4314,15 @@ Checking test 074 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 074 cpld_ca PASS + +The total amount of wall time = 95.544459 + +Test 075 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_control_c192_prod -Checking test 075 cpld_control_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -4130,12 +4370,15 @@ Checking test 075 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 075 cpld_control_c192 PASS +The total amount of wall time = 410.134938 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restart_c192_prod -Checking test 076 cpld_restart_c192 results .... +Test 076 cpld_control_c192 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -4183,12 +4426,15 @@ Checking test 076 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 076 cpld_restart_c192 PASS +The total amount of wall time = 281.134484 + +Test 077 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_controlfrac_c192_prod -Checking test 077 cpld_controlfrac_c192 results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -4236,12 +4482,15 @@ Checking test 077 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 077 cpld_controlfrac_c192 PASS +The total amount of wall time = 409.512069 + +Test 078 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restartfrac_c192_prod -Checking test 078 cpld_restartfrac_c192 results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -4289,12 +4538,15 @@ Checking test 078 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 078 cpld_restartfrac_c192 PASS +The total amount of wall time = 280.218123 + +Test 079 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_control_c384_prod -Checking test 079 cpld_control_c384 results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -4345,12 +4597,15 @@ Checking test 079 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 079 cpld_control_c384 PASS + +The total amount of wall time = 1593.923756 + +Test 080 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restart_c384_prod -Checking test 080 cpld_restart_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -4401,12 +4656,15 @@ Checking test 080 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 080 cpld_restart_c384 PASS +The total amount of wall time = 783.336148 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_controlfrac_c384_prod -Checking test 081 cpld_controlfrac_c384 results .... +Test 081 cpld_restart_c384 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -4457,12 +4715,15 @@ Checking test 081 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 081 cpld_controlfrac_c384 PASS + +The total amount of wall time = 1483.087293 + +Test 082 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restartfrac_c384_prod -Checking test 082 cpld_restartfrac_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -4513,12 +4774,15 @@ Checking test 082 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 082 cpld_restartfrac_c384 PASS +The total amount of wall time = 836.625863 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_bmark_prod -Checking test 083 cpld_bmark results .... +Test 083 cpld_restartfrac_c384 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_bmark_prod +Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4569,12 +4833,15 @@ Checking test 083 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 083 cpld_bmark PASS +The total amount of wall time = 868.985025 + +Test 084 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restart_bmark_prod -Checking test 084 cpld_restart_bmark results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -4625,12 +4892,15 @@ Checking test 084 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 084 cpld_restart_bmark PASS +The total amount of wall time = 474.046173 + +Test 085 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_bmarkfrac_prod -Checking test 085 cpld_bmarkfrac results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_bmarkfrac_prod +Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4681,12 +4951,15 @@ Checking test 085 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 085 cpld_bmarkfrac PASS +The total amount of wall time = 871.214527 + +Test 086 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restart_bmarkfrac_prod -Checking test 086 cpld_restart_bmarkfrac results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -4737,12 +5010,15 @@ Checking test 086 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 086 cpld_restart_bmarkfrac PASS + +The total amount of wall time = 498.450311 + +Test 087 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_bmarkfrac_v16_prod -Checking test 087 cpld_bmarkfrac_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -4793,12 +5069,15 @@ Checking test 087 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 087 cpld_bmarkfrac_v16 PASS +The total amount of wall time = 1533.521005 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_restart_bmarkfrac_v16_prod -Checking test 088 cpld_restart_bmarkfrac_v16 results .... +Test 088 cpld_bmarkfrac_v16 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -4849,12 +5128,15 @@ Checking test 088 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 088 cpld_restart_bmarkfrac_v16 PASS +The total amount of wall time = 876.774965 + +Test 089 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_bmark_wave_prod -Checking test 089 cpld_bmark_wave results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_wave_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -4908,12 +5190,15 @@ Checking test 089 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 089 cpld_bmark_wave PASS + +The total amount of wall time = 1580.204104 + +Test 090 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_bmarkfrac_wave_prod -Checking test 090 cpld_bmarkfrac_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 @@ -4967,12 +5252,15 @@ Checking test 090 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 090 cpld_bmarkfrac_wave PASS +The total amount of wall time = 1534.215604 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_bmarkfrac_wave_v16_prod -Checking test 091 cpld_bmarkfrac_wave_v16 results .... +Test 091 cpld_bmarkfrac_wave PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_bmarkfrac_wave_v16_prod +Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5025,12 +5313,15 @@ Checking test 091 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -Test 091 cpld_bmarkfrac_wave_v16 PASS + +The total amount of wall time = 1031.270121 + +Test 092 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_control_wave_prod -Checking test 092 cpld_control_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_wave_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_control_wave_prod +Checking test 093 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5081,12 +5372,15 @@ Checking test 092 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 092 cpld_control_wave PASS +The total amount of wall time = 824.253284 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_debug_prod -Checking test 093 cpld_debug results .... +Test 093 cpld_control_wave PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_debug_prod +Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5134,12 +5428,15 @@ Checking test 093 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 093 cpld_debug PASS +The total amount of wall time = 306.617782 + +Test 094 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/cpld_debugfrac_prod -Checking test 094 cpld_debugfrac results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_debugfrac_prod +Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5187,87 +5484,114 @@ Checking test 094 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 094 cpld_debugfrac PASS + +The total amount of wall time = 307.057824 + +Test 095 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/datm_control_cfsr -Checking test 095 datm_control_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 095 datm_control_cfsr PASS +The total amount of wall time = 101.236443 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/datm_restart_cfsr -Checking test 096 datm_restart_cfsr results .... +Test 096 datm_control_cfsr PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 096 datm_restart_cfsr PASS +The total amount of wall time = 63.061128 + +Test 097 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_control_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/datm_control_gefs -Checking test 097 datm_control_gefs results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_control_gefs PASS +The total amount of wall time = 95.564987 + +Test 098 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/datm_bulk_cfsr -Checking test 098 datm_bulk_cfsr results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_bulk_cfsr PASS +The total amount of wall time = 98.389835 + +Test 099 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_bulk_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/datm_bulk_gefs -Checking test 099 datm_bulk_gefs results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 099 datm_bulk_gefs PASS + +The total amount of wall time = 96.252057 + +Test 100 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/datm_mx025_cfsr -Checking test 100 datm_mx025_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/datm_mx025_cfsr +Checking test 101 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 100 datm_mx025_cfsr PASS +The total amount of wall time = 392.968828 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_mx025_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/datm_mx025_gefs -Checking test 101 datm_mx025_gefs results .... +Test 101 datm_mx025_cfsr PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/datm_mx025_gefs +Checking test 102 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 101 datm_mx025_gefs PASS +The total amount of wall time = 390.331200 + +Test 102 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210308/INTEL/datm_debug_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_35650/datm_debug_cfsr -Checking test 102 datm_debug_cfsr results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_63441/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 102 datm_debug_cfsr PASS + +The total amount of wall time = 285.312378 + +Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 8 17:36:46 MST 2021 -Elapsed time: 01h:21m:35s. Have a nice day! +Sat Mar 13 04:46:17 MST 2021 +Elapsed time: 01h:44m:00s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 57c9707b75..5dab5d520e 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Wed Mar 10 23:49:30 EST 2021 +Thu Mar 11 22:52:29 EST 2021 Start Regression test baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,13 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 71.879939 +The total amount of wall time = 50.272513 Test 001 fv3_ccpp_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_decomp_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,13 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 45.479937 +The total amount of wall time = 46.297218 Test 002 fv3_ccpp_decomp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_2threads_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +210,13 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 67.437709 +The total amount of wall time = 70.367479 Test 003 fv3_ccpp_2threads PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_restart_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +263,13 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 29.789835 +The total amount of wall time = 24.430861 Test 004 fv3_ccpp_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_read_inc_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 @@ -334,13 +334,13 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.534065 +The total amount of wall time = 41.362615 Test 005 fv3_ccpp_read_inc PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 @@ -385,13 +385,13 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 102.810236 +The total amount of wall time = 104.933469 Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 @@ -436,13 +436,13 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.094290 +The total amount of wall time = 41.797248 Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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,13 +487,13 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 106.821628 +The total amount of wall time = 87.198764 Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 @@ -538,13 +538,13 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 56.212204 +The total amount of wall time = 53.182311 Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 @@ -589,13 +589,13 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 40.633752 +The total amount of wall time = 41.085040 Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 @@ -640,13 +640,13 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 111.998164 +The total amount of wall time = 112.424122 Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_stochy_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,13 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 49.542202 +The total amount of wall time = 73.420609 Test 012 fv3_ccpp_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_ca_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,13 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 30.611443 +The total amount of wall time = 61.586141 Test 013 fv3_ccpp_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_lndp_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,13 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 82.246724 +The total amount of wall time = 78.443799 Test 014 fv3_ccpp_lndp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_iau_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +924,13 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 41.432752 +The total amount of wall time = 47.016155 Test 015 fv3_ccpp_iau PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_lheatstrg_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +975,13 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 55.593878 +The total amount of wall time = 42.826864 Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_multigases_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1052,13 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 88.167645 +The total amount of wall time = 103.185056 Test 017 fv3_ccpp_multigases PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_control_32bit_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 @@ -1123,13 +1123,13 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 39.678305 +The total amount of wall time = 42.675949 Test 018 fv3_ccpp_control_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_stretched_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1182,13 +1182,13 @@ Checking test 019 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 308.729178 +The total amount of wall time = 307.476308 Test 019 fv3_ccpp_stretched PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_stretched_nest_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 @@ -1252,13 +1252,13 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 336.800521 +The total amount of wall time = 338.691479 Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_regional_control_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,25 +1266,25 @@ Checking test 021 fv3_ccpp_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 674.277602 +The total amount of wall time = 681.287460 Test 021 fv3_ccpp_regional_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_regional_restart_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 -The total amount of wall time = 369.867623 +The total amount of wall time = 366.757333 Test 022 fv3_ccpp_regional_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_regional_quilt_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1295,13 +1295,13 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 692.693256 +The total amount of wall time = 692.456318 Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_regional_quilt_hafs_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_regional_quilt_hafs_prod Checking test 024 fv3_ccpp_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1310,27 +1310,27 @@ Checking test 024 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 691.047012 +The total amount of wall time = 691.262233 Test 024 fv3_ccpp_regional_quilt_hafs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 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 phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK -The total amount of wall time = 696.277027 +The total amount of wall time = 693.347060 Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfdlmp_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,13 +1375,13 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 47.019292 +The total amount of wall time = 47.347707 Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1426,13 +1426,13 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 57.698579 +The total amount of wall time = 48.987011 Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1477,13 +1477,13 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 56.000749 +The total amount of wall time = 47.623452 Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_csawmg_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,13 +1528,13 @@ Checking test 029 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 124.841259 +The total amount of wall time = 124.487489 Test 029 fv3_ccpp_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_satmedmf_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,13 +1579,13 @@ Checking test 030 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.615928 +The total amount of wall time = 68.379090 Test 030 fv3_ccpp_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_satmedmfq_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1630,13 +1630,13 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.791689 +The total amount of wall time = 52.843001 Test 031 fv3_ccpp_satmedmfq PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,13 +1681,13 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.169533 +The total amount of wall time = 40.232950 Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1736,13 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 78.411476 +The total amount of wall time = 77.187638 Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_cpt_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,13 +1793,13 @@ Checking test 034 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 294.630625 +The total amount of wall time = 292.164168 Test 034 fv3_ccpp_cpt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gsd_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1888,13 @@ Checking test 035 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 201.390045 +The total amount of wall time = 193.157352 Test 035 fv3_ccpp_gsd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_rap_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_rap_prod Checking test 036 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1959,13 @@ Checking test 036 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 94.505161 +The total amount of wall time = 94.897888 Test 036 fv3_ccpp_rap PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_hrrr_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_hrrr_prod Checking test 037 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2030,13 @@ Checking test 037 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 101.088927 +The total amount of wall time = 100.012374 Test 037 fv3_ccpp_hrrr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_thompson_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2101,13 +2101,13 @@ Checking test 038 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 96.127321 +The total amount of wall time = 105.983524 Test 038 fv3_ccpp_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_thompson_no_aero_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2172,13 +2172,13 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 88.237360 +The total amount of wall time = 87.184424 Test 039 fv3_ccpp_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_rrfs_v1beta_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,13 +2243,13 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 127.295775 +The total amount of wall time = 102.559488 Test 040 fv3_ccpp_rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v15p2_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v15p2_prod Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2314,13 +2314,13 @@ Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 113.824807 +The total amount of wall time = 139.352157 Test 041 fv3_ccpp_gfs_v15p2 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_prod Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2397,13 +2397,13 @@ Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 118.238990 +The total amount of wall time = 144.325177 Test 042 fv3_ccpp_gfs_v16 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_restart_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_restart_prod Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2450,13 +2450,13 @@ Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.823498 +The total amount of wall time = 91.662009 Test 043 fv3_ccpp_gfs_v16_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_stochy_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_stochy_prod Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2521,13 +2521,13 @@ Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 56.790071 +The total amount of wall time = 58.574379 Test 044 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2592,13 +2592,13 @@ Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 192.819262 +The total amount of wall time = 183.653268 Test 045 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2663,13 +2663,13 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 188.241337 +The total amount of wall time = 189.274409 Test 046 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2728,13 +2728,13 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 721.716280 +The total amount of wall time = 720.712009 Test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2799,13 +2799,13 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 285.972241 +The total amount of wall time = 289.387629 Test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfsv16_csawmg_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 @@ -2850,13 +2850,13 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 134.805037 +The total amount of wall time = 134.154830 Test 049 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 @@ -2901,13 +2901,13 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 131.735341 +The total amount of wall time = 132.072619 Test 050 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gocart_clm_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 @@ -2952,13 +2952,13 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 93.155558 +The total amount of wall time = 53.990132 Test 051 fv3_ccpp_gocart_clm PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_flake_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_flake_prod Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3023,13 +3023,13 @@ Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 125.310744 +The total amount of wall time = 140.392957 Test 052 fv3_ccpp_gfs_v16_flake PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 @@ -3094,13 +3094,13 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 191.664954 +The total amount of wall time = 193.271890 Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 @@ -3115,13 +3115,13 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 323.331796 +The total amount of wall time = 306.146546 Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3180,13 +3180,13 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 212.057827 +The total amount of wall time = 186.629620 Test 055 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3245,13 +3245,13 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 185.861434 +The total amount of wall time = 196.320829 Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 @@ -3316,13 +3316,13 @@ Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 238.402428 +The total amount of wall time = 235.312832 Test 057 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_debug_prod Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3387,13 +3387,13 @@ Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 169.431694 +The total amount of wall time = 171.794758 Test 058 fv3_ccpp_gfs_v16_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 @@ -3458,13 +3458,13 @@ Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 378.715427 +The total amount of wall time = 378.670101 Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3529,13 +3529,13 @@ Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 385.737574 +The total amount of wall time = 382.539357 Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_regional_control_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_regional_control_debug_prod Checking test 061 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3543,13 +3543,13 @@ Checking test 061 fv3_ccpp_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 370.707402 +The total amount of wall time = 368.269754 Test 061 fv3_ccpp_regional_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_control_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_control_debug_prod Checking test 062 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3576,13 +3576,13 @@ Checking test 062 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 129.017790 +The total amount of wall time = 129.540539 Test 062 fv3_ccpp_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_stretched_nest_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_stretched_nest_debug_prod Checking test 063 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3599,13 +3599,13 @@ Checking test 063 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 436.258349 +The total amount of wall time = 434.928594 Test 063 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gsd_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gsd_debug_prod Checking test 064 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3670,13 +3670,13 @@ Checking test 064 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 195.679115 +The total amount of wall time = 196.219866 Test 064 fv3_ccpp_gsd_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gsd_diag3d_debug_prod Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3741,13 +3741,13 @@ Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 220.811716 +The total amount of wall time = 219.877183 Test 065 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_thompson_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_thompson_debug_prod Checking test 066 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3812,13 +3812,13 @@ Checking test 066 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 341.338745 +The total amount of wall time = 341.752881 Test 066 fv3_ccpp_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_thompson_no_aero_debug_prod Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3883,13 +3883,13 @@ Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 334.493393 +The total amount of wall time = 328.317350 Test 067 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3954,13 +3954,13 @@ Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 192.572636 +The total amount of wall time = 189.685880 Test 068 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4025,13 +4025,13 @@ Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 204.114611 +The total amount of wall time = 204.468763 Test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4046,13 +4046,13 @@ Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 377.484603 +The total amount of wall time = 376.498343 Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4111,13 +4111,13 @@ Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 578.718317 +The total amount of wall time = 578.801271 Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_control_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_control_prod Checking test 072 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4167,13 +4167,13 @@ Checking test 072 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 142.475405 +The total amount of wall time = 122.414567 Test 072 cpld_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_restart_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_restart_prod Checking test 073 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4223,13 +4223,13 @@ Checking test 073 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 81.454095 +The total amount of wall time = 87.211700 Test 073 cpld_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_controlfrac_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_controlfrac_prod Checking test 074 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4279,13 +4279,13 @@ Checking test 074 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 111.339128 +The total amount of wall time = 92.322170 Test 074 cpld_controlfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_restartfrac_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_restartfrac_prod Checking test 075 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4335,13 +4335,13 @@ Checking test 075 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 84.296301 +The total amount of wall time = 78.162262 Test 075 cpld_restartfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_2threads_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_2threads_prod Checking test 076 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4391,13 +4391,13 @@ Checking test 076 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 148.825931 +The total amount of wall time = 136.207200 Test 076 cpld_2threads PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_decomp_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_decomp_prod Checking test 077 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4447,13 +4447,13 @@ Checking test 077 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 141.368757 +The total amount of wall time = 96.221245 Test 077 cpld_decomp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_satmedmf_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_satmedmf_prod Checking test 078 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4503,13 +4503,13 @@ Checking test 078 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 117.089853 +The total amount of wall time = 91.835864 Test 078 cpld_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_ca_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_ca_prod Checking test 079 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4559,13 +4559,13 @@ Checking test 079 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 116.544807 +The total amount of wall time = 92.802804 Test 079 cpld_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_control_c192_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_control_c192_prod Checking test 080 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4615,13 +4615,13 @@ Checking test 080 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 411.886232 +The total amount of wall time = 416.471055 Test 080 cpld_control_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_restart_c192_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_restart_c192_prod Checking test 081 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4671,13 +4671,13 @@ Checking test 081 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 309.309992 +The total amount of wall time = 280.076686 Test 081 cpld_restart_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_controlfrac_c192_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_controlfrac_c192_prod Checking test 082 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4727,13 +4727,13 @@ Checking test 082 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 445.528386 +The total amount of wall time = 410.581013 Test 082 cpld_controlfrac_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_restartfrac_c192_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_restartfrac_c192_prod Checking test 083 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4783,13 +4783,13 @@ Checking test 083 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 309.137753 +The total amount of wall time = 305.646618 Test 083 cpld_restartfrac_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_control_c384_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_control_c384_prod Checking test 084 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4842,13 +4842,13 @@ Checking test 084 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1546.714039 +The total amount of wall time = 1527.942314 Test 084 cpld_control_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_restart_c384_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_restart_c384_prod Checking test 085 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4901,13 +4901,13 @@ Checking test 085 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 796.800994 +The total amount of wall time = 778.572470 Test 085 cpld_restart_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_controlfrac_c384_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_controlfrac_c384_prod Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4960,13 +4960,13 @@ Checking test 086 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1553.722990 +The total amount of wall time = 1569.066973 Test 086 cpld_controlfrac_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_restartfrac_c384_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_restartfrac_c384_prod Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5019,13 +5019,13 @@ Checking test 087 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 784.875883 +The total amount of wall time = 804.336610 Test 087 cpld_restartfrac_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_bmark_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_bmark_prod Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5078,13 +5078,13 @@ Checking test 088 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 888.843350 +The total amount of wall time = 882.324198 Test 088 cpld_bmark PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_restart_bmark_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_restart_bmark_prod Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5137,13 +5137,13 @@ Checking test 089 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 487.983406 +The total amount of wall time = 457.487007 Test 089 cpld_restart_bmark PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_bmarkfrac_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_bmarkfrac_prod Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5196,13 +5196,13 @@ Checking test 090 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 881.609724 +The total amount of wall time = 884.111401 Test 090 cpld_bmarkfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_restart_bmarkfrac_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_restart_bmarkfrac_prod Checking test 091 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5255,13 +5255,13 @@ Checking test 091 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 484.045787 +The total amount of wall time = 451.935720 Test 091 cpld_restart_bmarkfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_debug_prod Checking test 092 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5311,13 +5311,13 @@ Checking test 092 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 267.085066 +The total amount of wall time = 265.617069 Test 092 cpld_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/cpld_debugfrac_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_debugfrac_prod Checking test 093 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5367,73 +5367,73 @@ Checking test 093 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 296.262553 +The total amount of wall time = 270.392615 Test 093 cpld_debugfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 -The total amount of wall time = 107.140837 +The total amount of wall time = 101.043593 Test 094 datm_control_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/datm_restart_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 -The total amount of wall time = 87.418527 +The total amount of wall time = 60.964892 Test 095 datm_restart_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/datm_control_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 -The total amount of wall time = 99.058010 +The total amount of wall time = 97.675434 Test 096 datm_control_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 -The total amount of wall time = 101.950732 +The total amount of wall time = 94.868992 Test 097 datm_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/datm_bulk_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/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 -The total amount of wall time = 95.303315 +The total amount of wall time = 98.188875 Test 098 datm_bulk_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/datm_mx025_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/datm_mx025_gefs Checking test 099 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5442,23 +5442,23 @@ Checking test 099 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 413.509203 +The total amount of wall time = 390.752702 Test 099 datm_mx025_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_27608/datm_debug_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/datm_debug_cfsr Checking test 100 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 -The total amount of wall time = 229.191832 +The total amount of wall time = 225.443915 Test 100 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 11 01:32:31 EST 2021 -Elapsed time: 01h:43m:01s. Have a nice day! +Fri Mar 12 00:34:57 EST 2021 +Elapsed time: 01h:42m:29s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 0cf96fbf28..d268da65b3 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Thu Mar 11 04:38:26 UTC 2021 +Fri Mar 12 14:46:56 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -48,13 +48,13 @@ Checking test 001 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 228.928511 + 0: The total amount of wall time = 233.119063 Test 001 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/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,13 +119,13 @@ Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 577.414918 + 0: The total amount of wall time = 609.904177 Test 002 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -202,13 +202,13 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 612.909904 + 0: The total amount of wall time = 610.664999 Test 003 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -255,13 +255,13 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 299.511406 + 0: The total amount of wall time = 297.090061 Test 004 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -326,13 +326,13 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 351.324631 + 0: The total amount of wall time = 373.806438 Test 005 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -397,13 +397,13 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 600.387548 + 0: The total amount of wall time = 595.503917 Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/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 @@ -468,13 +468,13 @@ Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 659.427112 + 0: The total amount of wall time = 700.294798 Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -539,13 +539,13 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 677.855428 + 0: The total amount of wall time = 687.048840 Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -634,13 +634,13 @@ Checking test 009 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 800.970911 + 0: The total amount of wall time = 827.170795 Test 009 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -705,13 +705,13 @@ Checking test 010 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 383.554784 + 0: The total amount of wall time = 412.230816 Test 010 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/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 @@ -776,13 +776,13 @@ Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 379.956664 + 0: The total amount of wall time = 376.549301 Test 011 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/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 @@ -847,13 +847,13 @@ Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 401.095014 + 0: The total amount of wall time = 409.876442 Test 012 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/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 @@ -918,13 +918,13 @@ Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 614.154864 + 0: The total amount of wall time = 624.402794 Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/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 @@ -939,13 +939,13 @@ Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 440.167809 + 0: The total amount of wall time = 452.555023 Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1004,13 +1004,13 @@ Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 932.188774 + 0: The total amount of wall time = 903.319950 Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1069,13 +1069,13 @@ Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 898.067129 + 0: The total amount of wall time = 913.198778 Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1102,13 +1102,13 @@ Checking test 017 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 84.248625 + 0: The total amount of wall time = 83.750582 Test 017 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1173,13 +1173,13 @@ Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 266.443451 + 0: The total amount of wall time = 255.090815 Test 018 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1244,13 +1244,13 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 132.765800 + 0: The total amount of wall time = 132.804138 Test 019 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,13 +1315,13 @@ Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 316.856819 + 0: The total amount of wall time = 329.372853 Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1386,13 +1386,13 @@ Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 323.819863 + 0: The total amount of wall time = 348.714120 Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1463,13 +1463,13 @@ Checking test 022 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 422.991944 + 0: The total amount of wall time = 421.321406 Test 022 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_regional_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1477,13 +1477,13 @@ Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 169.546328 + 0: The total amount of wall time = 171.344520 Test 023 fv3_ccpp_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1548,13 +1548,13 @@ Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 119.057669 + 0: The total amount of wall time = 117.217949 Test 024 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1619,13 +1619,13 @@ Checking test 025 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 123.232038 + 0: The total amount of wall time = 122.584917 Test 025 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1690,13 +1690,13 @@ Checking test 026 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.192608 + 0: The total amount of wall time = 201.909913 Test 026 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1761,13 +1761,13 @@ Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.279496 + 0: The total amount of wall time = 192.719769 Test 027 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1832,13 +1832,13 @@ Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 132.791963 + 0: The total amount of wall time = 135.991147 Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1853,13 +1853,13 @@ Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 218.005064 + 0: The total amount of wall time = 224.289170 Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_239479/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1918,11 +1918,11 @@ Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 390.871945 + 0: The total amount of wall time = 395.832994 Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 11 05:46:39 UTC 2021 -Elapsed time: 01h:08m:14s. Have a nice day! +Fri Mar 12 15:14:06 UTC 2021 +Elapsed time: 00h:27m:11s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 8a0544f7ff..4048bf4f47 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Thu Mar 11 04:47:28 UTC 2021 +Fri Mar 12 16:02:08 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,13 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 38.847021 + 0: The total amount of wall time = 40.226954 Test 001 fv3_ccpp_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,13 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 40.020551 + 0: The total amount of wall time = 40.907735 Test 002 fv3_ccpp_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +210,13 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 50.005275 + 0: The total amount of wall time = 50.292479 Test 003 fv3_ccpp_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +263,13 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 18.911121 + 0: The total amount of wall time = 19.129432 Test 004 fv3_ccpp_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -334,13 +334,13 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.302064 + 0: The total amount of wall time = 37.851550 Test 005 fv3_ccpp_read_inc PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -385,13 +385,13 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 111.504889 + 0: The total amount of wall time = 110.827971 Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -436,13 +436,13 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.103751 + 0: The total amount of wall time = 37.264478 Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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,13 +487,13 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 48.195836 + 0: The total amount of wall time = 48.472520 Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -538,13 +538,13 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.050624 + 0: The total amount of wall time = 38.127435 Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -589,13 +589,13 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.334234 + 0: The total amount of wall time = 37.057172 Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -640,13 +640,13 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.080035 + 0: The total amount of wall time = 96.279320 Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,13 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 40.746476 + 0: The total amount of wall time = 41.404844 Test 012 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,13 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 26.308067 + 0: The total amount of wall time = 26.505750 Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,13 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.231026 + 0: The total amount of wall time = 43.782189 Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +924,13 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 35.822357 + 0: The total amount of wall time = 37.720011 Test 015 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +975,13 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.172514 + 0: The total amount of wall time = 36.656759 Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1027,13 +1027,13 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 644.400928 + 0: The total amount of wall time = 644.761217 Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -1079,13 +1079,13 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 789.733393 + 0: The total amount of wall time = 789.727676 Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -1131,13 +1131,13 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 707.269801 + 0: The total amount of wall time = 660.474636 Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1208,13 +1208,13 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 75.590668 + 0: The total amount of wall time = 75.632481 Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -1279,13 +1279,13 @@ Checking test 021 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 35.829614 + 0: The total amount of wall time = 36.711759 Test 021 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,13 +1338,13 @@ Checking test 022 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 216.987196 + 0: The total amount of wall time = 220.851837 Test 022 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -1408,13 +1408,13 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK - 0: The total amount of wall time = 237.923605 + 0: The total amount of wall time = 237.927448 Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1422,25 +1422,25 @@ Checking test 024 fv3_ccpp_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 547.440857 + 0: The total amount of wall time = 543.044833 Test 024 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 - 0: The total amount of wall time = 303.407490 + 0: The total amount of wall time = 300.863044 Test 025 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1451,13 +1451,13 @@ Checking test 026 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 578.057769 + 0: The total amount of wall time = 571.098539 Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_regional_quilt_hafs_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_regional_quilt_hafs_prod Checking test 027 fv3_ccpp_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1466,13 +1466,13 @@ Checking test 027 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 574.433683 + 0: The total amount of wall time = 579.427081 Test 027 fv3_ccpp_regional_quilt_hafs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 028 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1480,13 +1480,13 @@ Checking test 028 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 575.556723 + 0: The total amount of wall time = 575.206382 Test 028 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1531,13 +1531,13 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 41.546399 + 0: The total amount of wall time = 42.488756 Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -1582,13 +1582,13 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 41.790392 + 0: The total amount of wall time = 42.452109 Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -1633,13 +1633,13 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 41.817553 + 0: The total amount of wall time = 42.749541 Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1684,13 +1684,13 @@ Checking test 032 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 109.265795 + 0: The total amount of wall time = 109.680867 Test 032 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1735,13 +1735,13 @@ Checking test 033 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.453729 + 0: The total amount of wall time = 46.242872 Test 033 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_satmedmfq_prod Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1786,13 +1786,13 @@ Checking test 034 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.522243 + 0: The total amount of wall time = 45.703448 Test 034 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -1837,13 +1837,13 @@ Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 37.302690 + 0: The total amount of wall time = 37.384654 Test 035 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -1892,13 +1892,13 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 73.016685 + 0: The total amount of wall time = 73.664883 Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_cpt_prod Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1949,13 +1949,13 @@ Checking test 037 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 256.046674 + 0: The total amount of wall time = 255.945371 Test 037 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gsd_prod Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2044,13 +2044,13 @@ Checking test 038 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.453498 + 0: The total amount of wall time = 177.304808 Test 038 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_rap_prod Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2115,13 +2115,13 @@ Checking test 039 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.769241 + 0: The total amount of wall time = 87.680694 Test 039 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_hrrr_prod Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2186,13 +2186,13 @@ Checking test 040 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 94.770760 + 0: The total amount of wall time = 95.819995 Test 040 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_thompson_prod Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2257,13 +2257,13 @@ Checking test 041 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 83.374227 + 0: The total amount of wall time = 84.139192 Test 041 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -2328,13 +2328,13 @@ Checking test 042 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 78.551317 + 0: The total amount of wall time = 79.390258 Test 042 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -2399,13 +2399,13 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.522225 + 0: The total amount of wall time = 97.944660 Test 043 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -2470,13 +2470,13 @@ Checking test 044 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 91.161335 + 0: The total amount of wall time = 92.359884 Test 044 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v16_prod Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2553,13 +2553,13 @@ Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 101.843061 + 0: The total amount of wall time = 102.635872 Test 045 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v16_restart_prod Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2606,13 +2606,13 @@ Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 53.515162 + 0: The total amount of wall time = 53.258658 Test 046 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v16_stochy_prod Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2677,13 +2677,13 @@ Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 46.702151 + 0: The total amount of wall time = 47.430897 Test 047 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -2748,13 +2748,13 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 152.950553 + 0: The total amount of wall time = 154.608536 Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2819,13 +2819,13 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 156.221866 + 0: The total amount of wall time = 156.501149 Test 049 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -2884,13 +2884,13 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 620.642311 + 0: The total amount of wall time = 622.294838 Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2955,13 +2955,13 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 185.934517 + 0: The total amount of wall time = 184.566021 Test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -3006,13 +3006,13 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 115.488065 + 0: The total amount of wall time = 117.083311 Test 052 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -3057,13 +3057,13 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 113.993756 + 0: The total amount of wall time = 115.087596 Test 053 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -3108,13 +3108,13 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 46.715761 + 0: The total amount of wall time = 48.249536 Test 054 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v16_flake_prod Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3179,13 +3179,13 @@ Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 93.944884 + 0: The total amount of wall time = 94.137093 Test 055 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -3250,13 +3250,13 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 141.035159 + 0: The total amount of wall time = 141.738541 Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/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 @@ -3271,13 +3271,13 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 281.572364 + 0: The total amount of wall time = 277.940295 Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3336,13 +3336,13 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 164.423875 + 0: The total amount of wall time = 162.996038 Test 058 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3401,13 +3401,13 @@ Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 163.604922 + 0: The total amount of wall time = 162.563214 Test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v15p2_debug_prod Checking test 060 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3472,13 +3472,13 @@ Checking test 060 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 225.263121 + 0: The total amount of wall time = 225.745178 Test 060 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v16_debug_prod Checking test 061 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3543,13 +3543,13 @@ Checking test 061 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.568789 + 0: The total amount of wall time = 171.744302 Test 061 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3614,13 +3614,13 @@ Checking test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 345.349891 + 0: The total amount of wall time = 348.391040 Test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 063 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3685,13 +3685,13 @@ Checking test 063 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 360.035713 + 0: The total amount of wall time = 355.093183 Test 063 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_regional_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_regional_control_debug_prod Checking test 064 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3699,13 +3699,13 @@ Checking test 064 fv3_ccpp_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 355.129690 + 0: The total amount of wall time = 352.002189 Test 064 fv3_ccpp_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_control_debug_prod Checking test 065 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3732,13 +3732,13 @@ Checking test 065 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 135.087176 + 0: The total amount of wall time = 132.762343 Test 065 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_stretched_nest_debug_prod Checking test 066 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3755,13 +3755,13 @@ Checking test 066 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 355.057531 + 0: The total amount of wall time = 353.377060 Test 066 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gsd_debug_prod Checking test 067 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3826,13 +3826,13 @@ Checking test 067 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.107482 + 0: The total amount of wall time = 194.531578 Test 067 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gsd_diag3d_debug_prod Checking test 068 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3897,13 +3897,13 @@ Checking test 068 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 258.614235 + 0: The total amount of wall time = 260.713715 Test 068 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_thompson_debug_prod Checking test 069 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3968,13 +3968,13 @@ Checking test 069 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 330.440949 + 0: The total amount of wall time = 332.231150 Test 069 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_thompson_no_aero_debug_prod Checking test 070 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4039,13 +4039,13 @@ Checking test 070 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 313.837494 + 0: The total amount of wall time = 324.479484 Test 070 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 071 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4110,13 +4110,13 @@ Checking test 071 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.687250 + 0: The total amount of wall time = 195.065709 Test 071 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4181,13 +4181,13 @@ Checking test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 201.572832 + 0: The total amount of wall time = 203.898214 Test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4202,13 +4202,13 @@ Checking test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 382.125025 + 0: The total amount of wall time = 385.877966 Test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 074 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4267,13 +4267,13 @@ Checking test 074 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 552.967621 + 0: The total amount of wall time = 546.255584 Test 074 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_control_prod Checking test 075 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4323,13 +4323,13 @@ Checking test 075 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 89.789485 + 0: The total amount of wall time = 89.017579 Test 075 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restart_prod Checking test 076 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4379,13 +4379,13 @@ Checking test 076 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 56.698134 + 0: The total amount of wall time = 54.799770 Test 076 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_controlfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_controlfrac_prod Checking test 077 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4435,13 +4435,13 @@ Checking test 077 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 88.567193 + 0: The total amount of wall time = 88.506764 Test 077 cpld_controlfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restartfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restartfrac_prod Checking test 078 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4491,13 +4491,13 @@ Checking test 078 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 56.171508 + 0: The total amount of wall time = 53.430953 Test 078 cpld_restartfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_2threads_prod Checking test 079 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4547,13 +4547,13 @@ Checking test 079 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 118.642920 + 0: The total amount of wall time = 118.369780 Test 079 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_decomp_prod Checking test 080 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4603,13 +4603,13 @@ Checking test 080 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 86.529674 + 0: The total amount of wall time = 87.334899 Test 080 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_satmedmf_prod Checking test 081 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4659,13 +4659,13 @@ Checking test 081 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 87.046741 + 0: The total amount of wall time = 86.367691 Test 081 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_ca_prod Checking test 082 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4715,13 +4715,13 @@ Checking test 082 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 87.641169 + 0: The total amount of wall time = 86.196501 Test 082 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_control_c192_prod Checking test 083 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4771,13 +4771,13 @@ Checking test 083 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 380.448932 + 0: The total amount of wall time = 371.418626 Test 083 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restart_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restart_c192_prod Checking test 084 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4827,13 +4827,13 @@ Checking test 084 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 290.226976 + 0: The total amount of wall time = 264.513830 Test 084 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_controlfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_controlfrac_c192_prod Checking test 085 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4883,13 +4883,13 @@ Checking test 085 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 373.300011 + 0: The total amount of wall time = 372.692064 Test 085 cpld_controlfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restartfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restartfrac_c192_prod Checking test 086 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4939,13 +4939,13 @@ Checking test 086 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 263.792896 + 0: The total amount of wall time = 265.116880 Test 086 cpld_restartfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_control_c384_prod Checking test 087 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4998,13 +4998,13 @@ Checking test 087 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1310.432379 + 0: The total amount of wall time = 1315.124954 Test 087 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restart_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restart_c384_prod Checking test 088 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5057,13 +5057,13 @@ Checking test 088 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 705.530928 + 0: The total amount of wall time = 692.644522 Test 088 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_controlfrac_c384_prod Checking test 089 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5116,13 +5116,13 @@ Checking test 089 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1303.676220 + 0: The total amount of wall time = 1302.163975 Test 089 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restartfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restartfrac_c384_prod Checking test 090 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5175,13 +5175,13 @@ Checking test 090 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 713.418890 + 0: The total amount of wall time = 689.216005 Test 090 cpld_restartfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_bmark_prod Checking test 091 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5234,13 +5234,13 @@ Checking test 091 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 811.332986 + 0: The total amount of wall time = 807.534281 Test 091 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restart_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restart_bmark_prod Checking test 092 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5293,13 +5293,13 @@ Checking test 092 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 480.510452 + 0: The total amount of wall time = 450.782622 Test 092 cpld_restart_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_bmarkfrac_prod Checking test 093 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5352,13 +5352,13 @@ Checking test 093 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 811.847493 + 0: The total amount of wall time = 800.807890 Test 093 cpld_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restart_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restart_bmarkfrac_prod Checking test 094 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5411,13 +5411,13 @@ Checking test 094 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 458.627575 + 0: The total amount of wall time = 448.301083 Test 094 cpld_restart_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_bmarkfrac_v16_prod Checking test 095 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5470,13 +5470,13 @@ Checking test 095 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 1316.643390 + 0: The total amount of wall time = 1296.327009 Test 095 cpld_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_restart_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restart_bmarkfrac_v16_prod Checking test 096 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5529,13 +5529,13 @@ Checking test 096 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 734.262756 + 0: The total amount of wall time = 728.123532 Test 096 cpld_restart_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_bmark_wave_prod Checking test 097 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5591,13 +5591,13 @@ Checking test 097 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1365.954724 + 0: The total amount of wall time = 1354.919507 Test 097 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_bmarkfrac_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_bmarkfrac_wave_prod Checking test 098 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5653,13 +5653,13 @@ Checking test 098 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1358.033744 + 0: The total amount of wall time = 1384.494203 Test 098 cpld_bmarkfrac_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_bmarkfrac_wave_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_bmarkfrac_wave_v16_prod Checking test 099 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5714,13 +5714,13 @@ Checking test 099 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 893.031224 + 0: The total amount of wall time = 1010.759700 Test 099 cpld_bmarkfrac_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_control_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_control_wave_prod Checking test 100 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5773,13 +5773,13 @@ Checking test 100 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 775.019941 + 0: The total amount of wall time = 775.233982 Test 100 cpld_control_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_debug_prod Checking test 101 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5829,13 +5829,13 @@ Checking test 101 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 286.728343 + 0: The total amount of wall time = 290.166652 Test 101 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/cpld_debugfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_debugfrac_prod Checking test 102 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5885,73 +5885,73 @@ Checking test 102 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 289.000053 + 0: The total amount of wall time = 288.642809 Test 102 cpld_debugfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/datm_control_cfsr Checking test 103 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 - 0: The total amount of wall time = 97.196312 + 0: The total amount of wall time = 94.787046 Test 103 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/datm_restart_cfsr Checking test 104 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 - 0: The total amount of wall time = 63.611350 + 0: The total amount of wall time = 61.188696 Test 104 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/datm_control_gefs Checking test 105 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 - 0: The total amount of wall time = 89.450115 + 0: The total amount of wall time = 88.086402 Test 105 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/datm_bulk_cfsr Checking test 106 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 - 0: The total amount of wall time = 93.005023 + 0: The total amount of wall time = 90.485697 Test 106 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/datm_bulk_gefs Checking test 107 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 - 0: The total amount of wall time = 90.160933 + 0: The total amount of wall time = 86.506260 Test 107 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/datm_mx025_cfsr Checking test 108 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5960,13 +5960,13 @@ Checking test 108 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 355.074179 + 0: The total amount of wall time = 351.052989 Test 108 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/datm_mx025_gefs Checking test 109 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5975,23 +5975,23 @@ Checking test 109 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 358.539482 + 0: The total amount of wall time = 348.421059 Test 109 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_219025/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/datm_debug_cfsr Checking test 110 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 - 0: The total amount of wall time = 267.365307 + 0: The total amount of wall time = 264.629399 Test 110 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 11 07:06:33 UTC 2021 -Elapsed time: 02h:19m:06s. Have a nice day! +Fri Mar 12 17:35:36 UTC 2021 +Elapsed time: 01h:33m:28s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 84597bf538..9811ec71a7 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Thu Mar 11 04:46:29 GMT 2021 +Fri Mar 12 19:31:42 GMT 2021 Start Regression test baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_control_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,13 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 66.542423 +The total amount of wall time = 59.897520 Test 001 fv3_ccpp_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_2threads_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_2threads_prod Checking test 002 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,13 @@ Checking test 002 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 286.101953 +The total amount of wall time = 295.294607 Test 002 fv3_ccpp_2threads PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_restart_prod Checking test 003 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -192,13 +192,13 @@ Checking test 003 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 28.171468 +The total amount of wall time = 27.618478 Test 003 fv3_ccpp_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_read_inc_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_read_inc_prod Checking test 004 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -263,13 +263,13 @@ Checking test 004 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.381358 +The total amount of wall time = 53.297582 Test 004 fv3_ccpp_read_inc PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -314,13 +314,13 @@ Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 159.605990 +The total amount of wall time = 178.265542 Test 005 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_wrtGauss_netcdf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -365,13 +365,13 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.505488 +The total amount of wall time = 53.703037 Test 006 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -416,13 +416,13 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 66.462195 +The total amount of wall time = 69.442236 Test 007 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -467,13 +467,13 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.380380 +The total amount of wall time = 52.899991 Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -518,13 +518,13 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.269123 +The total amount of wall time = 52.333563 Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -569,13 +569,13 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 140.476093 +The total amount of wall time = 140.550411 Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +640,13 @@ Checking test 011 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.271035 +The total amount of wall time = 58.145562 Test 011 fv3_ccpp_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_ca_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_ca_prod Checking test 012 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,13 @@ Checking test 012 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 45.492455 +The total amount of wall time = 59.776830 Test 012 fv3_ccpp_ca PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_lndp_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_lndp_prod Checking test 013 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,13 @@ Checking test 013 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 67.320315 +The total amount of wall time = 67.052423 Test 013 fv3_ccpp_lndp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_iau_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_iau_prod Checking test 014 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,13 @@ Checking test 014 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.245505 +The total amount of wall time = 52.160312 Test 014 fv3_ccpp_iau PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_lheatstrg_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -904,13 +904,13 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.784310 +The total amount of wall time = 52.057268 Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_multigases_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,13 +981,13 @@ Checking test 016 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 103.909160 +The total amount of wall time = 105.842393 Test 016 fv3_ccpp_multigases PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_control_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1052,13 @@ Checking test 017 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.944167 +The total amount of wall time = 59.162605 Test 017 fv3_ccpp_control_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_stretched_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1111,13 +1111,13 @@ Checking test 018 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 395.910595 +The total amount of wall time = 395.511585 Test 018 fv3_ccpp_stretched PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_stretched_nest_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1181,13 +1181,13 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 423.202846 +The total amount of wall time = 428.320555 Test 019 fv3_ccpp_stretched_nest PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_regional_control_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1195,25 +1195,25 @@ Checking test 020 fv3_ccpp_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 853.534108 +The total amount of wall time = 862.134299 Test 020 fv3_ccpp_regional_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_regional_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 478.279084 +The total amount of wall time = 476.795452 Test 021 fv3_ccpp_regional_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_regional_quilt_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1224,13 +1224,13 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 851.966658 +The total amount of wall time = 842.776710 Test 022 fv3_ccpp_regional_quilt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_regional_quilt_hafs_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_regional_quilt_hafs_prod Checking test 023 fv3_ccpp_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1239,27 +1239,27 @@ Checking test 023 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 845.359204 +The total amount of wall time = 845.907532 Test 023 fv3_ccpp_regional_quilt_hafs PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/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 -The total amount of wall time = 841.481521 +The total amount of wall time = 841.955350 Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfdlmp_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1304,13 +1304,13 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.287781 +The total amount of wall time = 62.196175 Test 025 fv3_ccpp_gfdlmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,13 +1355,13 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.516353 +The total amount of wall time = 61.788513 Test 026 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1406,13 +1406,13 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.731237 +The total amount of wall time = 61.351203 Test 027 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1457,13 +1457,13 @@ Checking test 028 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 154.241454 +The total amount of wall time = 152.718138 Test 028 fv3_ccpp_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_satmedmf_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1508,13 +1508,13 @@ Checking test 029 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 64.474757 +The total amount of wall time = 64.758303 Test 029 fv3_ccpp_satmedmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_satmedmfq_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,13 +1559,13 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 65.118775 +The total amount of wall time = 65.616924 Test 030 fv3_ccpp_satmedmfq PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1610,13 +1610,13 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.474730 +The total amount of wall time = 54.709358 Test 031 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1665,13 +1665,13 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 94.928597 +The total amount of wall time = 98.041471 Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_cpt_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,13 +1722,13 @@ Checking test 033 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 353.980954 +The total amount of wall time = 357.262139 Test 033 fv3_ccpp_cpt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gsd_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1817,13 +1817,13 @@ Checking test 034 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 239.211682 +The total amount of wall time = 249.827006 Test 034 fv3_ccpp_gsd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1888,13 @@ Checking test 035 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 113.543027 +The total amount of wall time = 120.798276 Test 035 fv3_ccpp_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_thompson_no_aero_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1959,13 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 108.265669 +The total amount of wall time = 119.585785 Test 036 fv3_ccpp_thompson_no_aero PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v15p2_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v15p2_prod Checking test 037 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2030,13 @@ Checking test 037 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 117.608873 +The total amount of wall time = 120.645481 Test 037 fv3_ccpp_gfs_v15p2 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_prod Checking test 038 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2113,13 +2113,13 @@ Checking test 038 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 145.470006 +The total amount of wall time = 148.148292 Test 038 fv3_ccpp_gfs_v16 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_restart_prod Checking test 039 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2166,13 +2166,13 @@ Checking test 039 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 74.419832 +The total amount of wall time = 76.531181 Test 039 fv3_ccpp_gfs_v16_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_stochy_prod Checking test 040 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2237,13 +2237,13 @@ Checking test 040 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 65.858731 +The total amount of wall time = 66.614612 Test 040 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2308,13 +2308,13 @@ Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 185.507805 +The total amount of wall time = 186.345269 Test 041 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 042 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2379,13 +2379,13 @@ Checking test 042 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 188.306399 +The total amount of wall time = 188.983014 Test 042 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 043 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2444,13 +2444,13 @@ Checking test 043 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 802.559143 +The total amount of wall time = 808.346446 Test 043 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2515,13 +2515,13 @@ Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 828.600845 +The total amount of wall time = 778.243602 Test 044 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfsv16_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/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 @@ -2566,13 +2566,13 @@ Checking test 045 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 163.139133 +The total amount of wall time = 164.409938 Test 045 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/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 @@ -2617,13 +2617,13 @@ Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 160.882235 +The total amount of wall time = 161.943814 Test 046 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gocart_clm_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/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 @@ -2668,13 +2668,13 @@ Checking test 047 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 66.997611 +The total amount of wall time = 67.583819 Test 047 fv3_ccpp_gocart_clm PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_flake_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_flake_prod Checking test 048 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2739,13 +2739,13 @@ Checking test 048 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 121.789071 +The total amount of wall time = 125.384404 Test 048 fv3_ccpp_gfs_v16_flake PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/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 @@ -2810,13 +2810,13 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 193.337111 +The total amount of wall time = 191.804563 Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/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 @@ -2831,13 +2831,13 @@ Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 356.944431 +The total amount of wall time = 357.030245 Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2896,13 +2896,13 @@ Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 230.730935 +The total amount of wall time = 229.417212 Test 051 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2961,13 +2961,13 @@ Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 229.743903 +The total amount of wall time = 230.194171 Test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/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 @@ -3032,13 +3032,13 @@ Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 271.090344 +The total amount of wall time = 271.550480 Test 053 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_debug_prod Checking test 054 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3103,13 +3103,13 @@ Checking test 054 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 208.458036 +The total amount of wall time = 208.942613 Test 054 fv3_ccpp_gfs_v16_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/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 @@ -3174,13 +3174,13 @@ Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 438.544615 +The total amount of wall time = 438.293896 Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 056 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3245,13 +3245,13 @@ Checking test 056 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 447.399807 +The total amount of wall time = 446.965019 Test 056 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_regional_control_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_regional_control_debug_prod Checking test 057 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3259,13 +3259,13 @@ Checking test 057 fv3_ccpp_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 453.523924 +The total amount of wall time = 460.388132 Test 057 fv3_ccpp_regional_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_control_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_control_debug_prod Checking test 058 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3292,13 +3292,13 @@ Checking test 058 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 157.309296 +The total amount of wall time = 159.675110 Test 058 fv3_ccpp_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_stretched_nest_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_stretched_nest_debug_prod Checking test 059 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3315,13 +3315,13 @@ Checking test 059 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 534.118507 +The total amount of wall time = 534.374797 Test 059 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gsd_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/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 @@ -3386,13 +3386,13 @@ Checking test 060 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 238.744935 +The total amount of wall time = 238.608603 Test 060 fv3_ccpp_gsd_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/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 @@ -3457,13 +3457,13 @@ Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 271.068780 +The total amount of wall time = 268.953533 Test 061 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/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 @@ -3528,13 +3528,13 @@ Checking test 062 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 417.402034 +The total amount of wall time = 419.125741 Test 062 fv3_ccpp_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/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 @@ -3599,13 +3599,13 @@ Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 401.078022 +The total amount of wall time = 401.338907 Test 063 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/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 @@ -3670,13 +3670,13 @@ Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 231.439845 +The total amount of wall time = 232.393874 Test 064 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/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 @@ -3741,13 +3741,13 @@ Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 247.179931 +The total amount of wall time = 247.264339 Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/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 @@ -3762,13 +3762,13 @@ Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 464.466697 +The total amount of wall time = 464.502882 Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_279861/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 067 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3827,11 +3827,11 @@ Checking test 067 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 711.095837 +The total amount of wall time = 712.039693 Test 067 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 11 08:26:21 GMT 2021 -Elapsed time: 03h:39m:52s. Have a nice day! +Sat Mar 13 00:10:30 GMT 2021 +Elapsed time: 04h:38m:48s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 8b6d3e973f..301964dfb3 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Tue Mar 9 22:01:21 CST 2021 +Fri Mar 12 21:17:03 CST 2021 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -67,11 +67,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 47.335967 + Test 001 fv3_ccpp_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -135,11 +138,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 43.909151 + Test 002 fv3_ccpp_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -203,11 +209,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 53.512654 + Test 003 fv3_ccpp_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -253,11 +262,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 24.881297 + Test 004 fv3_ccpp_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -321,11 +333,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 43.960439 + Test 005 fv3_ccpp_read_inc PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -369,11 +384,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 152.822694 + Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -417,11 +435,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 45.459556 + Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -432,7 +453,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing phyf000.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 @@ -465,11 +486,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 53.314491 + Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -513,11 +537,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 43.327716 + Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -561,11 +588,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 43.746261 + Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -609,11 +639,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 102.974613 + Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +710,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 49.343612 + Test 012 fv3_ccpp_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -745,11 +781,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 30.400909 + Test 013 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_lndp_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,11 +852,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 48.801022 + Test 014 fv3_ccpp_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -881,11 +923,14 @@ Checking test 015 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 + + 0: The total amount of wall time = 44.134449 + Test 015 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_lheatstrg_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -929,11 +974,14 @@ Checking test 016 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 + + 0: The total amount of wall time = 43.349731 + Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -978,11 +1026,14 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK + + 0: The total amount of wall time = 654.665384 + Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -1027,11 +1078,14 @@ Checking test 018 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 + + 0: The total amount of wall time = 798.266029 + Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -1076,11 +1130,14 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing out_grd.glo_10m .........OK Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK + + 0: The total amount of wall time = 673.063059 + Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1150,11 +1207,14 @@ Checking test 020 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 + + 0: The total amount of wall time = 85.409100 + Test 020 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -1218,11 +1278,14 @@ Checking test 021 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 + + 0: The total amount of wall time = 45.169483 + Test 021 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1274,11 +1337,14 @@ Checking test 022 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 + + 0: The total amount of wall time = 217.704896 + Test 022 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -1341,31 +1407,40 @@ Checking test 023 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 + + 0: The total amount of wall time = 240.960080 + Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 + + 0: The total amount of wall time = 535.673257 + Test 024 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 + + 0: The total amount of wall time = 298.239390 + Test 025 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1375,11 +1450,14 @@ Checking test 026 fv3_ccpp_regional_quilt results .... Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK + + 0: The total amount of wall time = 591.477761 + Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_regional_quilt_hafs_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_quilt_hafs_prod Checking test 027 fv3_ccpp_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1387,22 +1465,28 @@ Checking test 027 fv3_ccpp_regional_quilt_hafs results .... Comparing phyf024.nc .........OK Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK + + 0: The total amount of wall time = 580.465772 + Test 027 fv3_ccpp_regional_quilt_hafs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 028 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + + 0: The total amount of wall time = 584.521443 + Test 028 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1446,11 +1530,14 @@ Checking test 029 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 + + 0: The total amount of wall time = 47.435399 + Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -1494,11 +1581,14 @@ Checking test 030 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 + + 0: The total amount of wall time = 48.252765 + Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -1542,11 +1632,14 @@ Checking test 031 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 + + 0: The total amount of wall time = 56.766459 + Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1590,11 +1683,14 @@ Checking test 032 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 + + 0: The total amount of wall time = 115.579388 + Test 032 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1638,11 +1734,14 @@ Checking test 033 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 + + 0: The total amount of wall time = 53.209134 + Test 033 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_satmedmfq_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_satmedmfq_prod Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1686,11 +1785,14 @@ Checking test 034 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 + + 0: The total amount of wall time = 53.012331 + Test 034 fv3_ccpp_satmedmfq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -1734,11 +1836,14 @@ Checking test 035 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 + + 0: The total amount of wall time = 46.385652 + Test 035 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -1786,11 +1891,14 @@ Checking test 036 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 + + 0: The total amount of wall time = 77.148335 + Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_cpt_prod Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1840,11 +1948,14 @@ Checking test 037 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 + + 0: The total amount of wall time = 266.666866 + Test 037 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gsd_prod Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1932,11 +2043,14 @@ Checking test 038 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 + + 0: The total amount of wall time = 187.188712 + Test 038 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_rap_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_rap_prod Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2000,11 +2114,14 @@ Checking test 039 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 96.997649 + Test 039 fv3_ccpp_rap PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_hrrr_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_hrrr_prod Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2068,11 +2185,14 @@ Checking test 040 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 104.337900 + Test 040 fv3_ccpp_hrrr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_thompson_prod Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2136,11 +2256,14 @@ Checking test 041 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 + + 0: The total amount of wall time = 95.628960 + Test 041 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -2204,11 +2327,14 @@ Checking test 042 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 + + 0: The total amount of wall time = 89.094245 + Test 042 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -2272,11 +2398,14 @@ Checking test 043 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 + + 0: The total amount of wall time = 105.609223 + Test 043 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -2340,11 +2469,14 @@ Checking test 044 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 + + 0: The total amount of wall time = 99.985320 + Test 044 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v16_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_prod Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2420,11 +2552,14 @@ Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 113.638839 + Test 045 fv3_ccpp_gfs_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v16_restart_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_restart_prod Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2470,11 +2605,14 @@ Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 62.982109 + Test 046 fv3_ccpp_gfs_v16_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v16_stochy_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_stochy_prod Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2538,11 +2676,14 @@ Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 53.746916 + Test 047 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -2606,11 +2747,14 @@ Checking test 048 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 + + 0: The total amount of wall time = 162.150450 + Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2674,11 +2818,14 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 163.253696 + Test 049 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -2736,11 +2883,14 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 626.222349 + Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2804,11 +2954,14 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 190.698181 + Test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -2852,11 +3005,14 @@ Checking test 052 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 + + 0: The total amount of wall time = 126.215471 + Test 052 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -2900,11 +3056,14 @@ Checking test 053 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 + + 0: The total amount of wall time = 124.487777 + Test 053 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -2948,11 +3107,14 @@ Checking test 054 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 + + 0: The total amount of wall time = 59.289760 + Test 054 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v16_flake_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_flake_prod Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3016,11 +3178,14 @@ Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 104.836787 + Test 055 fv3_ccpp_gfs_v16_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -3084,11 +3249,14 @@ Checking test 056 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 + + 0: The total amount of wall time = 147.882367 + Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/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 @@ -3102,11 +3270,14 @@ Checking test 057 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 + + 0: The total amount of wall time = 289.858017 + Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3164,11 +3335,14 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 170.089998 + Test 058 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3226,11 +3400,14 @@ Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 172.388475 + Test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v15p2_debug_prod Checking test 060 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3294,11 +3471,14 @@ Checking test 060 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 + + 0: The total amount of wall time = 251.703488 + Test 060 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v16_debug_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_debug_prod Checking test 061 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3362,11 +3542,14 @@ Checking test 061 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 189.430133 + Test 061 fv3_ccpp_gfs_v16_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3430,11 +3613,14 @@ Checking test 062 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 + + 0: The total amount of wall time = 373.969692 + Test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 063 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3498,22 +3684,28 @@ Checking test 063 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 382.031132 + Test 063 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_regional_control_debug_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_control_debug_prod Checking test 064 fv3_ccpp_regional_control_debug 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 + + 0: The total amount of wall time = 367.720884 + Test 064 fv3_ccpp_regional_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_control_debug_prod Checking test 065 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3539,11 +3731,14 @@ Checking test 065 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK + + 0: The total amount of wall time = 149.916615 + Test 065 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_stretched_nest_debug_prod Checking test 066 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3559,11 +3754,14 @@ Checking test 066 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile4.nc .........OK Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK + + 0: The total amount of wall time = 371.255363 + Test 066 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gsd_debug_prod Checking test 067 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3627,11 +3825,14 @@ Checking test 067 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 + + 0: The total amount of wall time = 221.754395 + Test 067 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gsd_diag3d_debug_prod Checking test 068 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3695,11 +3896,14 @@ Checking test 068 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 + + 0: The total amount of wall time = 296.344801 + Test 068 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_thompson_debug_prod Checking test 069 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3763,11 +3967,14 @@ Checking test 069 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 + + 0: The total amount of wall time = 349.154207 + Test 069 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_thompson_no_aero_debug_prod Checking test 070 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3831,11 +4038,14 @@ Checking test 070 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 + + 0: The total amount of wall time = 369.681577 + Test 070 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 071 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3899,11 +4109,14 @@ Checking test 071 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 + + 0: The total amount of wall time = 207.134888 + Test 071 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3967,11 +4180,14 @@ Checking test 072 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 + + 0: The total amount of wall time = 216.447621 + Test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3985,11 +4201,14 @@ Checking test 073 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 + + 0: The total amount of wall time = 417.919395 + Test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 074 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4047,11 +4266,14 @@ Checking test 074 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 567.689142 + Test 074 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_control_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_control_prod Checking test 075 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4100,11 +4322,14 @@ Checking test 075 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 + + 0: The total amount of wall time = 99.768565 + Test 075 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restart_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_prod Checking test 076 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4153,11 +4378,14 @@ Checking test 076 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 + + 0: The total amount of wall time = 75.123364 + Test 076 cpld_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_controlfrac_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_controlfrac_prod Checking test 077 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4206,11 +4434,14 @@ Checking test 077 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 + + 0: The total amount of wall time = 101.608224 + Test 077 cpld_controlfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restartfrac_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restartfrac_prod Checking test 078 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4259,11 +4490,14 @@ Checking test 078 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 + + 0: The total amount of wall time = 68.391162 + Test 078 cpld_restartfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_2threads_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_2threads_prod Checking test 079 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4312,11 +4546,14 @@ Checking test 079 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 + + 0: The total amount of wall time = 133.696323 + Test 079 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_decomp_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_decomp_prod Checking test 080 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4365,11 +4602,14 @@ Checking test 080 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 + + 0: The total amount of wall time = 96.867347 + Test 080 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_satmedmf_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_satmedmf_prod Checking test 081 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4418,11 +4658,14 @@ Checking test 081 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 + + 0: The total amount of wall time = 96.332041 + Test 081 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_ca_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_ca_prod Checking test 082 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4471,11 +4714,14 @@ Checking test 082 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 + + 0: The total amount of wall time = 97.729955 + Test 082 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_control_c192_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_control_c192_prod Checking test 083 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4524,11 +4770,14 @@ Checking test 083 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 + + 0: The total amount of wall time = 383.916568 + Test 083 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restart_c192_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_c192_prod Checking test 084 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4577,11 +4826,14 @@ Checking test 084 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 + + 0: The total amount of wall time = 275.426220 + Test 084 cpld_restart_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_controlfrac_c192_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_controlfrac_c192_prod Checking test 085 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4630,11 +4882,14 @@ Checking test 085 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 + + 0: The total amount of wall time = 381.668018 + Test 085 cpld_controlfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restartfrac_c192_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restartfrac_c192_prod Checking test 086 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4683,11 +4938,14 @@ Checking test 086 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 + + 0: The total amount of wall time = 271.383950 + Test 086 cpld_restartfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_control_c384_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_control_c384_prod Checking test 087 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4739,11 +4997,14 @@ Checking test 087 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 + + 0: The total amount of wall time = 1306.790624 + Test 087 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restart_c384_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_c384_prod Checking test 088 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4795,11 +5056,14 @@ Checking test 088 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 + + 0: The total amount of wall time = 695.602527 + Test 088 cpld_restart_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_controlfrac_c384_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_controlfrac_c384_prod Checking test 089 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4851,11 +5115,14 @@ Checking test 089 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 + + 0: The total amount of wall time = 1312.468145 + Test 089 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restartfrac_c384_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restartfrac_c384_prod Checking test 090 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4907,11 +5174,14 @@ Checking test 090 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 + + 0: The total amount of wall time = 685.239220 + Test 090 cpld_restartfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_bmark_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmark_prod Checking test 091 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4963,11 +5233,14 @@ Checking test 091 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 + + 0: The total amount of wall time = 842.253747 + Test 091 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restart_bmark_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_bmark_prod Checking test 092 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5019,11 +5292,14 @@ Checking test 092 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 + + 0: The total amount of wall time = 452.600613 + Test 092 cpld_restart_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_bmarkfrac_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmarkfrac_prod Checking test 093 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5075,11 +5351,14 @@ Checking test 093 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 + + 0: The total amount of wall time = 831.423830 + Test 093 cpld_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restart_bmarkfrac_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_bmarkfrac_prod Checking test 094 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5131,11 +5410,14 @@ Checking test 094 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 + + 0: The total amount of wall time = 442.128834 + Test 094 cpld_restart_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_bmarkfrac_v16_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmarkfrac_v16_prod Checking test 095 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5187,11 +5469,14 @@ Checking test 095 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 + + 0: The total amount of wall time = 1349.080037 + Test 095 cpld_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_restart_bmarkfrac_v16_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_bmarkfrac_v16_prod Checking test 096 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5243,11 +5528,14 @@ Checking test 096 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 + + 0: The total amount of wall time = 716.142617 + Test 096 cpld_restart_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_bmark_wave_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmark_wave_prod Checking test 097 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5302,11 +5590,14 @@ Checking test 097 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 + + 0: The total amount of wall time = 1402.828957 + Test 097 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_bmarkfrac_wave_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmarkfrac_wave_prod Checking test 098 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5361,11 +5652,14 @@ Checking test 098 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 + + 0: The total amount of wall time = 1416.011810 + Test 098 cpld_bmarkfrac_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_bmarkfrac_wave_v16_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmarkfrac_wave_v16_prod Checking test 099 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5419,11 +5713,14 @@ Checking test 099 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + + 0: The total amount of wall time = 939.150736 + Test 099 cpld_bmarkfrac_wave_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_control_wave_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_control_wave_prod Checking test 100 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5475,11 +5772,14 @@ Checking test 100 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK + + 0: The total amount of wall time = 790.442777 + Test 100 cpld_control_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_debug_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_debug_prod Checking test 101 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5528,11 +5828,14 @@ Checking test 101 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 + + 0: The total amount of wall time = 321.112205 + Test 101 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/cpld_debugfrac_prod +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_debugfrac_prod Checking test 102 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5581,56 +5884,74 @@ Checking test 102 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 + + 0: The total amount of wall time = 322.169993 + Test 102 cpld_debugfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_control_cfsr Checking test 103 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 + + 0: The total amount of wall time = 99.728356 + Test 103 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/datm_restart_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_restart_cfsr Checking test 104 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 + + 0: The total amount of wall time = 68.416477 + Test 104 datm_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/datm_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_control_gefs Checking test 105 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 + + 0: The total amount of wall time = 94.162639 + Test 105 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/datm_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_bulk_cfsr Checking test 106 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 + + 0: The total amount of wall time = 99.111430 + Test 106 datm_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/datm_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_bulk_gefs Checking test 107 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 + + 0: The total amount of wall time = 92.246859 + Test 107 datm_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/datm_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_mx025_cfsr Checking test 108 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5638,11 +5959,14 @@ Checking test 108 datm_mx025_cfsr results .... 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 + + 0: The total amount of wall time = 391.029178 + Test 108 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/datm_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_mx025_gefs Checking test 109 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5650,18 +5974,24 @@ Checking test 109 datm_mx025_gefs results .... 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 + + 0: The total amount of wall time = 388.183296 + Test 109 datm_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_224238/datm_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_debug_cfsr Checking test 110 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 + + 0: The total amount of wall time = 281.109002 + Test 110 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 10 02:25:26 CST 2021 -Elapsed time: 04h:24m:06s. Have a nice day! +Fri Mar 12 23:59:51 CST 2021 +Elapsed time: 02h:42m:49s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 3364b291ec..4152a674a8 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Thu Mar 11 04:46:55 UTC 2021 +Fri Mar 12 21:33:13 UTC 2021 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,13 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.577492 +The total amount of wall time = 58.999307 Test 001 fv3_ccpp_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,13 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.707638 +The total amount of wall time = 59.377024 Test 002 fv3_ccpp_decomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +210,13 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.547174 +The total amount of wall time = 88.490964 Test 003 fv3_ccpp_2threads PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +263,13 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 24.173806 +The total amount of wall time = 31.933550 Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/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 @@ -334,13 +334,13 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.767420 +The total amount of wall time = 68.428892 Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/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 @@ -385,13 +385,13 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 122.646505 +The total amount of wall time = 170.181526 Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/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 @@ -436,13 +436,13 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.456693 +The total amount of wall time = 60.053883 Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/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,13 +487,13 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 54.091812 +The total amount of wall time = 80.533057 Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/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 @@ -538,13 +538,13 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.383472 +The total amount of wall time = 61.734925 Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/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 @@ -589,13 +589,13 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.803296 +The total amount of wall time = 82.005885 Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/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 @@ -640,13 +640,13 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 121.163893 +The total amount of wall time = 131.728396 Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,13 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 54.055113 +The total amount of wall time = 58.624253 Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_ca_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,13 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 39.261935 +The total amount of wall time = 46.439481 Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_lndp_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,13 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 56.809802 +The total amount of wall time = 76.828795 Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +924,13 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.285537 +The total amount of wall time = 57.798792 Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +975,13 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 49.303040 +The total amount of wall time = 60.108429 Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1052,13 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 89.244079 +The total amount of wall time = 119.551666 Test 017 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/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 @@ -1123,13 +1123,13 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.801773 +The total amount of wall time = 61.967911 Test 018 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1182,13 +1182,13 @@ Checking test 019 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 324.298928 +The total amount of wall time = 421.762552 Test 019 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/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 @@ -1252,13 +1252,13 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 372.027288 +The total amount of wall time = 591.584869 Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,25 +1266,25 @@ Checking test 021 fv3_ccpp_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 691.925206 +The total amount of wall time = 734.151063 Test 021 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/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 -The total amount of wall time = 410.701960 +The total amount of wall time = 430.026093 Test 022 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1295,13 +1295,13 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 698.630709 +The total amount of wall time = 703.604103 Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_hafs_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_regional_quilt_hafs_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_regional_quilt_hafs_prod Checking test 024 fv3_ccpp_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1310,13 +1310,13 @@ Checking test 024 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 697.468732 +The total amount of wall time = 701.969080 Test 024 fv3_ccpp_regional_quilt_hafs PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1324,13 +1324,13 @@ Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 699.407210 +The total amount of wall time = 714.457440 Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,13 +1375,13 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 58.205333 +The total amount of wall time = 69.321589 Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1426,13 +1426,13 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 56.123592 +The total amount of wall time = 65.312231 Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1477,13 +1477,13 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 53.399459 +The total amount of wall time = 67.246205 Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,13 +1528,13 @@ Checking test 029 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 129.818653 +The total amount of wall time = 142.120409 Test 029 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,13 +1579,13 @@ Checking test 030 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.750578 +The total amount of wall time = 101.293432 Test 030 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1630,13 +1630,13 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.797629 +The total amount of wall time = 69.169703 Test 031 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,13 +1681,13 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 48.394857 +The total amount of wall time = 59.307229 Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1736,13 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 88.047965 +The total amount of wall time = 126.708133 Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,13 +1793,13 @@ Checking test 034 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 287.933571 +The total amount of wall time = 310.761119 Test 034 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1888,13 @@ Checking test 035 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 199.280403 +The total amount of wall time = 207.848228 Test 035 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_rap_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_rap_prod Checking test 036 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1959,13 @@ Checking test 036 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 101.501036 +The total amount of wall time = 114.253135 Test 036 fv3_ccpp_rap PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_hrrr_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_hrrr_prod Checking test 037 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2030,13 @@ Checking test 037 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 109.462518 +The total amount of wall time = 114.011660 Test 037 fv3_ccpp_hrrr PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2101,13 +2101,13 @@ Checking test 038 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 96.836135 +The total amount of wall time = 98.284177 Test 038 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2172,13 +2172,13 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 93.696905 +The total amount of wall time = 97.586640 Test 039 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,13 +2243,13 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 110.557157 +The total amount of wall time = 108.910462 Test 040 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v15p2_prod Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2314,13 +2314,13 @@ Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 103.011808 +The total amount of wall time = 111.835004 Test 041 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_prod Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2397,13 +2397,13 @@ Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 120.211081 +The total amount of wall time = 145.432569 Test 042 fv3_ccpp_gfs_v16 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_restart_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_restart_prod Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2450,13 +2450,13 @@ Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 66.074935 +The total amount of wall time = 70.034667 Test 043 fv3_ccpp_gfs_v16_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_stochy_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_stochy_prod Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2521,13 +2521,13 @@ Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 59.679073 +The total amount of wall time = 66.923195 Test 044 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2592,13 +2592,13 @@ Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 173.161817 +The total amount of wall time = 182.767157 Test 045 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2663,13 +2663,13 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 173.521612 +The total amount of wall time = 179.042768 Test 046 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2728,13 +2728,13 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 712.095000 +The total amount of wall time = 729.657752 Test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2799,13 +2799,13 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 209.642009 +The total amount of wall time = 211.430350 Test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/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 @@ -2850,13 +2850,13 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 138.504689 +The total amount of wall time = 148.522747 Test 049 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/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 @@ -2901,13 +2901,13 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 138.372243 +The total amount of wall time = 153.574297 Test 050 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/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 @@ -2952,13 +2952,13 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 62.135236 +The total amount of wall time = 71.542759 Test 051 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_flake_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_flake_prod Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3023,13 +3023,13 @@ Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 107.629309 +The total amount of wall time = 114.840249 Test 052 fv3_ccpp_gfs_v16_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/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 @@ -3094,13 +3094,13 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 164.015162 +The total amount of wall time = 165.095247 Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/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 @@ -3115,13 +3115,13 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 302.932211 +The total amount of wall time = 304.346689 Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3180,13 +3180,13 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 194.444169 +The total amount of wall time = 201.403968 Test 055 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3245,13 +3245,13 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 195.929873 +The total amount of wall time = 200.817168 Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/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 @@ -3316,13 +3316,13 @@ Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 211.227814 +The total amount of wall time = 225.786991 Test 057 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_debug_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_debug_prod Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3387,13 +3387,13 @@ Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 160.810025 +The total amount of wall time = 166.399980 Test 058 fv3_ccpp_gfs_v16_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/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 @@ -3458,13 +3458,13 @@ Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 340.970998 +The total amount of wall time = 344.171378 Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3529,13 +3529,13 @@ Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 345.350881 +The total amount of wall time = 354.158184 Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_regional_control_debug_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_regional_control_debug_prod Checking test 061 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3543,13 +3543,13 @@ Checking test 061 fv3_ccpp_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 352.143900 +The total amount of wall time = 343.096387 Test 061 fv3_ccpp_regional_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_control_debug_prod Checking test 062 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3576,13 +3576,13 @@ Checking test 062 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 123.705091 +The total amount of wall time = 134.447458 Test 062 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_stretched_nest_debug_prod Checking test 063 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3599,13 +3599,13 @@ Checking test 063 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 408.457853 +The total amount of wall time = 406.597842 Test 063 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gsd_debug_prod Checking test 064 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3670,13 +3670,13 @@ Checking test 064 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 195.513868 +The total amount of wall time = 213.851003 Test 064 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gsd_diag3d_debug_prod Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3741,13 +3741,13 @@ Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 218.308053 +The total amount of wall time = 252.859283 Test 065 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_thompson_debug_prod Checking test 066 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3812,13 +3812,13 @@ Checking test 066 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 319.711603 +The total amount of wall time = 339.688488 Test 066 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_thompson_no_aero_debug_prod Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3883,13 +3883,13 @@ Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 312.289370 +The total amount of wall time = 314.053998 Test 067 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3954,13 +3954,13 @@ Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 185.020312 +The total amount of wall time = 210.111456 Test 068 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4025,13 +4025,13 @@ Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 187.193484 +The total amount of wall time = 207.054629 Test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4046,13 +4046,13 @@ Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 347.292230 +The total amount of wall time = 351.269260 Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_6637/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4111,11 +4111,11 @@ Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 536.280986 +The total amount of wall time = 538.062416 Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 11 05:29:32 UTC 2021 -Elapsed time: 00h:42m:37s. Have a nice day! +Fri Mar 12 22:20:07 UTC 2021 +Elapsed time: 00h:46m:54s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index dfd5eac42a..0cec9fe679 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Thu Mar 11 12:43:52 UTC 2021 +Thu Mar 11 20:14:43 EST 2021 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,13 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 50.000170 +[0] The total amount of wall time = 49.862693 Test 001 fv3_ccpp_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,13 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 51.097902 +[0] The total amount of wall time = 50.657474 Test 002 fv3_ccpp_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +210,13 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 57.265643 +[0] The total amount of wall time = 57.137699 Test 003 fv3_ccpp_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +263,13 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 24.979591 +[0] The total amount of wall time = 24.699183 Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/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 @@ -334,13 +334,13 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 46.771580 +[0] The total amount of wall time = 46.612694 Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/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 @@ -385,13 +385,13 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 159.555015 +[0] The total amount of wall time = 158.416346 Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/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 @@ -436,13 +436,13 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 46.127614 +[0] The total amount of wall time = 45.961127 Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/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 @@ -451,7 +451,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 ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK @@ -487,13 +487,13 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 63.457525 +[0] The total amount of wall time = 61.669073 Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/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 @@ -538,13 +538,13 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 46.293530 +[0] The total amount of wall time = 45.228932 Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/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 @@ -589,13 +589,13 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.453937 +[0] The total amount of wall time = 45.365429 Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/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 @@ -640,13 +640,13 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 124.632387 +[0] The total amount of wall time = 119.889714 Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,13 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 52.838354 +[0] The total amount of wall time = 52.262443 Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_ca_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,13 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 35.998466 +[0] The total amount of wall time = 33.595858 Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_lndp_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,13 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 54.520516 +[0] The total amount of wall time = 53.210672 Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +924,13 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 46.818870 +[0] The total amount of wall time = 46.215364 Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +975,13 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.389247 +[0] The total amount of wall time = 46.043043 Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1027,13 +1027,13 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -[0] The total amount of wall time = 688.389811 +[0] The total amount of wall time = 687.024379 Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/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 @@ -1079,13 +1079,13 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -[0] The total amount of wall time = 863.289072 +[0] The total amount of wall time = 865.996935 Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1156,13 +1156,13 @@ Checking test 019 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 95.093989 +[0] The total amount of wall time = 93.684584 Test 019 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/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 @@ -1227,13 +1227,13 @@ Checking test 020 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.894044 +[0] The total amount of wall time = 45.039154 Test 020 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1286,13 +1286,13 @@ Checking test 021 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 329.459552 +[0] The total amount of wall time = 327.348631 Test 021 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/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 @@ -1356,13 +1356,13 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -[0] The total amount of wall time = 350.140527 +[0] The total amount of wall time = 349.905997 Test 022 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1370,25 +1370,25 @@ Checking test 023 fv3_ccpp_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 717.689783 +[0] The total amount of wall time = 717.131508 Test 023 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/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 -[0] The total amount of wall time = 404.142382 +[0] The total amount of wall time = 401.742739 Test 024 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1399,13 +1399,13 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 744.220594 +[0] The total amount of wall time = 741.427707 Test 025 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_hafs_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_regional_quilt_hafs_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_regional_quilt_hafs_prod Checking test 026 fv3_ccpp_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1414,13 +1414,13 @@ Checking test 026 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 738.350026 +[0] The total amount of wall time = 733.659878 Test 026 fv3_ccpp_regional_quilt_hafs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/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 @@ -1428,13 +1428,13 @@ Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -[0] The total amount of wall time = 745.083792 +[0] The total amount of wall time = 734.238116 Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,13 +1479,13 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 52.156173 +[0] The total amount of wall time = 52.119540 Test 028 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,13 +1530,13 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 52.424551 +[0] The total amount of wall time = 52.615934 Test 029 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1581,13 +1581,13 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 52.974471 +[0] The total amount of wall time = 51.999474 Test 030 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1632,13 +1632,13 @@ Checking test 031 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 133.808065 +[0] The total amount of wall time = 132.602162 Test 031 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1683,13 +1683,13 @@ Checking test 032 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 56.301546 +[0] The total amount of wall time = 57.303906 Test 032 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1734,13 +1734,13 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 56.742917 +[0] The total amount of wall time = 57.423227 Test 033 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1785,13 +1785,13 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 45.651129 +[0] The total amount of wall time = 44.679156 Test 034 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1840,13 +1840,13 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 91.317348 +[0] The total amount of wall time = 84.498823 Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1897,13 +1897,13 @@ Checking test 036 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 310.414524 +[0] The total amount of wall time = 307.051939 Test 036 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1992,13 +1992,13 @@ Checking test 037 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 211.530788 +[0] The total amount of wall time = 207.951421 Test 037 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_rap_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_rap_prod Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2063,13 +2063,13 @@ Checking test 038 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 105.992854 +[0] The total amount of wall time = 104.586215 Test 038 fv3_ccpp_rap PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_hrrr_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_hrrr_prod Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2134,13 +2134,13 @@ Checking test 039 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 114.010924 +[0] The total amount of wall time = 114.077229 Test 039 fv3_ccpp_hrrr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_thompson_prod Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2205,13 +2205,13 @@ Checking test 040 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 100.649879 +[0] The total amount of wall time = 100.200810 Test 040 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_thompson_no_aero_prod Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2276,13 +2276,13 @@ Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 95.745164 +[0] The total amount of wall time = 95.321154 Test 041 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_rrfs_v1beta_prod Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2347,13 +2347,13 @@ Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 114.983398 +[0] The total amount of wall time = 115.462679 Test 042 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v15p2_prod Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2418,13 +2418,13 @@ Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 102.924483 +[0] The total amount of wall time = 102.459681 Test 043 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_prod Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2501,13 +2501,13 @@ Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 123.114748 +[0] The total amount of wall time = 123.395146 Test 044 fv3_ccpp_gfs_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_restart_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_restart_prod Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2554,13 +2554,13 @@ Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 66.410819 +[0] The total amount of wall time = 65.881562 Test 045 fv3_ccpp_gfs_v16_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_stochy_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_stochy_prod Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2625,13 +2625,13 @@ Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 59.505791 +[0] The total amount of wall time = 59.323741 Test 046 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2696,13 +2696,13 @@ Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 175.455496 +[0] The total amount of wall time = 175.473025 Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2767,13 +2767,13 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 177.711389 +[0] The total amount of wall time = 177.599034 Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2832,13 +2832,13 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 755.594948 +[0] The total amount of wall time = 755.713620 Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2903,13 +2903,13 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 217.138449 +[0] The total amount of wall time = 216.666300 Test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/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 @@ -2954,13 +2954,13 @@ Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 144.831219 +[0] The total amount of wall time = 142.778863 Test 051 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/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 @@ -3005,13 +3005,13 @@ Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 141.054719 +[0] The total amount of wall time = 140.158881 Test 052 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/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 @@ -3056,13 +3056,13 @@ Checking test 053 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 57.824693 +[0] The total amount of wall time = 56.495860 Test 053 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_flake_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_flake_prod Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3127,13 +3127,13 @@ Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 105.127894 +[0] The total amount of wall time = 104.671024 Test 054 fv3_ccpp_gfs_v16_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/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 @@ -3198,13 +3198,13 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 172.897523 +[0] The total amount of wall time = 171.287661 Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/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 @@ -3219,13 +3219,13 @@ Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 316.577311 +[0] The total amount of wall time = 318.196985 Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3284,13 +3284,13 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 196.784152 +[0] The total amount of wall time = 197.904845 Test 057 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3349,13 +3349,13 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 198.342424 +[0] The total amount of wall time = 196.599812 Test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v15p2_debug_prod Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3420,13 +3420,13 @@ Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 260.812957 +[0] The total amount of wall time = 260.046366 Test 059 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_debug_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_debug_prod Checking test 060 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3491,13 +3491,13 @@ Checking test 060 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 203.453649 +[0] The total amount of wall time = 203.376742 Test 060 fv3_ccpp_gfs_v16_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3562,13 +3562,13 @@ Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 408.215896 +[0] The total amount of wall time = 407.202324 Test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3633,13 +3633,13 @@ Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 415.075965 +[0] The total amount of wall time = 414.149472 Test 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_regional_control_debug_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_regional_control_debug_prod Checking test 063 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3647,13 +3647,13 @@ Checking test 063 fv3_ccpp_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 396.587708 +[0] The total amount of wall time = 394.794749 Test 063 fv3_ccpp_regional_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_control_debug_prod Checking test 064 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3680,13 +3680,13 @@ Checking test 064 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -[0] The total amount of wall time = 159.248223 +[0] The total amount of wall time = 158.138834 Test 064 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_stretched_nest_debug_prod Checking test 065 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3703,13 +3703,13 @@ Checking test 065 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -[0] The total amount of wall time = 468.753468 +[0] The total amount of wall time = 467.766644 Test 065 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gsd_debug_prod Checking test 066 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3774,13 +3774,13 @@ Checking test 066 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 233.574323 +[0] The total amount of wall time = 233.344109 Test 066 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gsd_diag3d_debug_prod Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3845,13 +3845,13 @@ Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 310.247818 +[0] The total amount of wall time = 304.991808 Test 067 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_thompson_debug_prod Checking test 068 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3916,13 +3916,13 @@ Checking test 068 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 389.044991 +[0] The total amount of wall time = 388.200563 Test 068 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_thompson_no_aero_debug_prod Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3987,13 +3987,13 @@ Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 375.390396 +[0] The total amount of wall time = 374.688073 Test 069 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4058,13 +4058,13 @@ Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 226.270819 +[0] The total amount of wall time = 225.459825 Test 070 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4129,13 +4129,13 @@ Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 237.685875 +[0] The total amount of wall time = 236.778768 Test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4150,13 +4150,13 @@ Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 428.502973 +[0] The total amount of wall time = 428.280328 Test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4215,13 +4215,13 @@ Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 646.136006 +[0] The total amount of wall time = 645.897802 Test 073 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_control_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_control_prod Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4271,13 +4271,13 @@ Checking test 074 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 107.117170 +[0] The total amount of wall time = 106.376889 Test 074 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restart_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restart_prod Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4327,13 +4327,13 @@ Checking test 075 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 69.502819 +[0] The total amount of wall time = 71.007514 Test 075 cpld_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_controlfrac_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_controlfrac_prod Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4383,13 +4383,13 @@ Checking test 076 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 106.704952 +[0] The total amount of wall time = 106.144153 Test 076 cpld_controlfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restartfrac_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restartfrac_prod Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4439,13 +4439,13 @@ Checking test 077 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 68.847018 +[0] The total amount of wall time = 70.496763 Test 077 cpld_restartfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_2threads_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_2threads_prod Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4495,13 +4495,13 @@ Checking test 078 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 106.323879 +[0] The total amount of wall time = 107.568548 Test 078 cpld_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_decomp_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_decomp_prod Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4551,13 +4551,13 @@ Checking test 079 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 106.069216 +[0] The total amount of wall time = 103.285219 Test 079 cpld_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_satmedmf_prod Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4607,13 +4607,13 @@ Checking test 080 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 106.779691 +[0] The total amount of wall time = 104.174045 Test 080 cpld_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_ca_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_ca_prod Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4663,13 +4663,13 @@ Checking test 081 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 106.013338 +[0] The total amount of wall time = 104.591809 Test 081 cpld_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_control_c192_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_control_c192_prod Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4719,13 +4719,13 @@ Checking test 082 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 434.649806 +[0] The total amount of wall time = 417.484407 Test 082 cpld_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restart_c192_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restart_c192_prod Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4775,13 +4775,13 @@ Checking test 083 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 320.864397 +[0] The total amount of wall time = 324.520321 Test 083 cpld_restart_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_controlfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_controlfrac_c192_prod Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4831,13 +4831,13 @@ Checking test 084 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 432.138958 +[0] The total amount of wall time = 418.727820 Test 084 cpld_controlfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restartfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restartfrac_c192_prod Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4887,13 +4887,13 @@ Checking test 085 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 321.198145 +[0] The total amount of wall time = 318.817666 Test 085 cpld_restartfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_control_c384_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_control_c384_prod Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4946,13 +4946,13 @@ Checking test 086 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 1493.630548 +[0] The total amount of wall time = 1469.456811 Test 086 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restart_c384_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restart_c384_prod Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5005,13 +5005,13 @@ Checking test 087 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 815.327118 +[0] The total amount of wall time = 806.113549 Test 087 cpld_restart_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_controlfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_controlfrac_c384_prod Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5064,13 +5064,13 @@ Checking test 088 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 1491.213978 +[0] The total amount of wall time = 1467.200452 Test 088 cpld_controlfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restartfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restartfrac_c384_prod Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5123,13 +5123,13 @@ Checking test 089 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 808.850546 +[0] The total amount of wall time = 801.778681 Test 089 cpld_restartfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_bmark_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_bmark_prod Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5182,13 +5182,13 @@ Checking test 090 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 906.600179 +[0] The total amount of wall time = 901.607224 Test 090 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restart_bmark_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restart_bmark_prod Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5241,13 +5241,13 @@ Checking test 091 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 529.414763 +[0] The total amount of wall time = 530.210969 Test 091 cpld_restart_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_bmarkfrac_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_bmarkfrac_prod Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5300,13 +5300,13 @@ Checking test 092 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 915.413046 +[0] The total amount of wall time = 888.724820 Test 092 cpld_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restart_bmarkfrac_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restart_bmarkfrac_prod Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5359,13 +5359,13 @@ Checking test 093 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 532.294476 +[0] The total amount of wall time = 521.627636 Test 093 cpld_restart_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_bmarkfrac_v16_prod Checking test 094 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5418,13 +5418,13 @@ Checking test 094 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -[0] The total amount of wall time = 1542.506602 +[0] The total amount of wall time = 1527.276196 Test 094 cpld_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_restart_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restart_bmarkfrac_v16_prod Checking test 095 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5477,13 +5477,13 @@ Checking test 095 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -[0] The total amount of wall time = 893.756381 +[0] The total amount of wall time = 882.236497 Test 095 cpld_restart_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_bmark_wave_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_bmark_wave_prod Checking test 096 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5539,13 +5539,13 @@ Checking test 096 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 1590.409264 +[0] The total amount of wall time = 1606.829266 Test 096 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_bmarkfrac_wave_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_bmarkfrac_wave_prod Checking test 097 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5601,13 +5601,13 @@ Checking test 097 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 1566.712665 +[0] The total amount of wall time = 1577.320108 Test 097 cpld_bmarkfrac_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_bmarkfrac_wave_v16_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_bmarkfrac_wave_v16_prod Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5662,13 +5662,13 @@ Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 1067.448116 +[0] The total amount of wall time = 1104.927129 Test 098 cpld_bmarkfrac_wave_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_control_wave_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_control_wave_prod Checking test 099 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5721,13 +5721,13 @@ Checking test 099 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -[0] The total amount of wall time = 867.812131 +[0] The total amount of wall time = 868.369261 Test 099 cpld_control_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_debug_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_debug_prod Checking test 100 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5777,13 +5777,13 @@ Checking test 100 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -[0] The total amount of wall time = 332.447456 +[0] The total amount of wall time = 332.636249 Test 100 cpld_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/cpld_debugfrac_prod +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_debugfrac_prod Checking test 101 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5833,73 +5833,73 @@ Checking test 101 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -[0] The total amount of wall time = 333.045717 +[0] The total amount of wall time = 332.449237 Test 101 cpld_debugfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/datm_control_cfsr Checking test 102 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 -[0] The total amount of wall time = 115.640456 +[0] The total amount of wall time = 107.810142 Test 102 datm_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/datm_restart_cfsr +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/datm_restart_cfsr Checking test 103 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 -[0] The total amount of wall time = 78.154943 +[0] The total amount of wall time = 79.102085 Test 103 datm_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/datm_control_gefs Checking test 104 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 -[0] The total amount of wall time = 103.403567 +[0] The total amount of wall time = 100.759890 Test 104 datm_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/datm_bulk_cfsr Checking test 105 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 -[0] The total amount of wall time = 106.987807 +[0] The total amount of wall time = 105.069929 Test 105 datm_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/datm_bulk_gefs Checking test 106 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 -[0] The total amount of wall time = 106.850918 +[0] The total amount of wall time = 101.419578 Test 106 datm_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/datm_mx025_cfsr Checking test 107 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5908,13 +5908,13 @@ Checking test 107 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 410.491853 +[0] The total amount of wall time = 413.682238 Test 107 datm_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/datm_mx025_gefs Checking test 108 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5923,23 +5923,23 @@ Checking test 108 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 412.402669 +[0] The total amount of wall time = 402.509427 Test 108 datm_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_8995/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/datm_debug_cfsr Checking test 109 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 -[0] The total amount of wall time = 315.582165 +[0] The total amount of wall time = 313.071842 Test 109 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 11 17:55:22 UTC 2021 -Elapsed time: 05h:11m:32s. Have a nice day! +Thu Mar 11 23:25:17 EST 2021 +Elapsed time: 03h:10m:36s. Have a nice day! From 98fa7ccdd4f8e4b079a65bd1bc1efadb58835904 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Tue, 16 Mar 2021 05:58:43 -0600 Subject: [PATCH 081/109] Update thompson mp 20210213 (#567) for gsl/develop (#65) * Update submodule pointer for fv3atm * Copy new Thompson tables from temporary location --- FV3 | 2 +- tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN | 7 +++++++ tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN | 7 +++++++ tests/fv3_conf/ccpp_gf_thompson_run.IN | 7 +++++++ tests/fv3_conf/ccpp_gsd_run.IN | 7 +++++++ tests/fv3_conf/ccpp_gsd_sar_run.IN | 7 +++++++ tests/fv3_conf/ccpp_regional_run.IN | 7 +++++++ 7 files changed, 43 insertions(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 730ac5d8d3..4516ae0c84 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 730ac5d8d334438dbef93e974b32cd7872d73404 +Subproject commit 4516ae0c84a03fb34f9034bd392aed6d03266c8d diff --git a/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN b/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN index 52eaa53f67..fa4fc63589 100644 --- a/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN +++ b/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN @@ -83,3 +83,10 @@ if [ $IMP_PHYSICS = 8 ]; then elif [ $IMP_PHYSICS = 15 ]; then cp @[INPUTDATA_ROOT]/FV3_input_data/DETAMPNEW_DATA* . fi + +# temporary: new Thompson tables +if [[ $MACHINE_ID = cheyenne.* ]]; then + cp /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/tmp_input_data_thompson_update_20210304/* . +else + cp /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/tmp_input_data_thompson_update_20210304/* . +fi diff --git a/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN b/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN index 86ac62ff16..ba765330c7 100644 --- a/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN +++ b/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN @@ -45,3 +45,10 @@ else echo "ERROR, no field table configured for IMP_PHYSICS=${IMP_PHYSICS}" exit 1 fi + +# temporary: new Thompson tables +if [[ $MACHINE_ID = cheyenne.* ]]; then + cp /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/tmp_input_data_thompson_update_20210304/* . +else + cp /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/tmp_input_data_thompson_update_20210304/* . +fi diff --git a/tests/fv3_conf/ccpp_gf_thompson_run.IN b/tests/fv3_conf/ccpp_gf_thompson_run.IN index c2faa7eaa4..91ccdb55af 100644 --- a/tests/fv3_conf/ccpp_gf_thompson_run.IN +++ b/tests/fv3_conf/ccpp_gf_thompson_run.IN @@ -21,3 +21,10 @@ cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qg.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . + +# temporary: new Thompson tables +if [[ $MACHINE_ID = cheyenne.* ]]; then + cp /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/tmp_input_data_thompson_update_20210304/* . +else + cp /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/tmp_input_data_thompson_update_20210304/* . +fi diff --git a/tests/fv3_conf/ccpp_gsd_run.IN b/tests/fv3_conf/ccpp_gsd_run.IN index ac566483e4..230793b29b 100644 --- a/tests/fv3_conf/ccpp_gsd_run.IN +++ b/tests/fv3_conf/ccpp_gsd_run.IN @@ -68,3 +68,10 @@ fi if [ $GWD_OPT = 3 ] || [ $GWD_OPT = 33 ] || [ $GWD_OPT = 2 ] || [ $GWD_OPT = 22 ]; then cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/drag_suite/* INPUT/ fi + +# temporary: new Thompson tables +if [[ $MACHINE_ID = cheyenne.* ]]; then + cp /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/tmp_input_data_thompson_update_20210304/* . +else + cp /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/tmp_input_data_thompson_update_20210304/* . +fi diff --git a/tests/fv3_conf/ccpp_gsd_sar_run.IN b/tests/fv3_conf/ccpp_gsd_sar_run.IN index 8a434bccc6..b9eed6e736 100644 --- a/tests/fv3_conf/ccpp_gsd_sar_run.IN +++ b/tests/fv3_conf/ccpp_gsd_sar_run.IN @@ -23,3 +23,10 @@ cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qg.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . + +# temporary: new Thompson tables +if [[ $MACHINE_ID = cheyenne.* ]]; then + cp /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/tmp_input_data_thompson_update_20210304/* . +else + cp /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/tmp_input_data_thompson_update_20210304/* . +fi diff --git a/tests/fv3_conf/ccpp_regional_run.IN b/tests/fv3_conf/ccpp_regional_run.IN index e524384644..3bac0cd507 100644 --- a/tests/fv3_conf/ccpp_regional_run.IN +++ b/tests/fv3_conf/ccpp_regional_run.IN @@ -28,3 +28,10 @@ fi if [ $H2O_PHYS = .T. ]; then cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 fi + +# temporary: new Thompson tables +if [[ $MACHINE_ID = cheyenne.* ]]; then + cp /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/tmp_input_data_thompson_update_20210304/* . +else + cp /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/tmp_input_data_thompson_update_20210304/* . +fi From 3be851d55572221d81a807d1c53dc909a4866154 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Tue, 16 Mar 2021 09:11:49 -0400 Subject: [PATCH 082/109] Updatetemplate; Fix model slowness when using threading; Update WW3 for porting and threading issues (#383) * CI passed at commit 464a90e prior to review. * Note: Orion RTs failed because of system work. Co-authored-by: Jessica Meixner Co-authored-by: Brian Curtis --- .github/pull_request_template.md | 41 ++- CMakeLists.txt | 8 +- FV3 | 2 +- WW3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 126 +++---- tests/RegressionTests_cheyenne.intel.log | 424 ++++++++++----------- tests/RegressionTests_gaea.intel.log | 412 ++++++++++----------- tests/RegressionTests_hera.gnu.log | 126 +++---- tests/RegressionTests_hera.intel.log | 446 +++++++++++------------ tests/RegressionTests_jet.intel.log | 276 +++++++------- tests/RegressionTests_wcoss_cray.log | 290 +++++++-------- tests/RegressionTests_wcoss_dell_p3.log | 446 +++++++++++------------ 12 files changed, 1305 insertions(+), 1294 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index a28608f484..bc16629331 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,29 +1,46 @@ +# PR Checklist + +- [ ] Ths PR is up-to-date with the top of all sub-component repositories except for those sub-components which are the subject of this PR. Please consult the ufs-weather-model [wiki](https://github.com/ufs-community/ufs-weather-model/wiki/Making-code-changes-in-the-UFS-weather-model-and-its-subcomponents) if you are unsure how to do this. + +- [ ] This PR has been tested using a branch which is up-to-date with the top of all sub-component repositories except for those sub-components which are the subject of this PR + +- [ ] An Issue describing the work contained in this PR has been created either in the subcomponent(s) or in the ufs-weather-model. The Issue should be created in the repository that is most relevant to the changes in contained in the PR. The Issue and the dependent sub-component PR +are specified below. + +- [ ] If new or updated input data is required by this PR, it is clearly stated in the text of the PR. + +## Instructions: All subsequent sections of text should be filled in as appropriate. + +The information provided below allows the code managers to understand the changes relevant to this PR, whether those changes are in the ufs-weather-model repository or in a subcomponent repository. Ufs-weather-model code managers will use the information provided to add any applicable labels, assign reviewers and place it in the Commit Queue. Once the PR is in the Commit Queue, it is the PR owner's responsiblity to keep the PR up-to-date with the develop branch of ufs-weather-model. + ## Description -(Instructions: this, and all subsequent sections of text should be removed and filled in as appropriate.) -Provide a detailed description of what this PR does. -What bug does it fix, or what feature does it add? -Is a change of answers expected from this PR? -Are any library updates included in this PR (modulefiles etc.)? +Provide a detailed description of what this PR does. What bug does it fix, or what feature does it add? Is a change of answers expected from this PR? Are any library updates included in this PR (modulefiles etc.)? ### Issue(s) addressed Link the issues to be closed with this PR, whether in this repository, or in another repository. -(Remember, issues should always be created before starting work on a PR branch!) +(Remember, issues must always be created before starting work on a PR branch!) - fixes # - fixes noaa-emc/fv3atm/issues/ ## Testing -How were these changes tested? -What compilers / HPCs was it tested with? -Are the changes covered by regression tests? (If not, why? Do new tests need to be added?) -Have regression tests and unit tests (utests) been run? On which platforms and with which compilers? (Note that unit tests can only be run on tier-1 platforms) +How were these changes tested? What compilers / HPCs was it tested with? Are the changes covered by regression tests? (If not, why? Do new tests need to be added?) Have regression tests and unit tests (utests) been run? On which platforms and with which compilers? (Note that unit tests can only be run on tier-1 platforms) + +- [ ] hera.intel +- [ ] hera.gnu +- [ ] orion.intel +- [ ] cheyenne.intel +- [ ] cheyenne.gnu +- [ ] gaea.intel +- [ ] jet.intel +- [ ] wcoss_cray +- [ ] wcoss_dell_p3 ## Dependencies -If testing this branch requires non-default branches in other repositories, list them. -Those branches should have matching names (ideally) +If testing this branch requires non-default branches in other repositories, list them. Those branches should have matching names (ideally). Do PRs in upstream repositories need to be merged first? If so add the "waiting for other repos" label and list the upstream PRs diff --git a/CMakeLists.txt b/CMakeLists.txt index c1782977d2..67ca10847c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -204,13 +204,7 @@ endif() ############################################################################### if(WW3) if(CMAKE_Platform) - if(${CMAKE_Platform} STREQUAL "hera.intel") - set(WW3_COMP "hera") - elseif(${CMAKE_Platform} STREQUAL "orion.intel") - set(WW3_COMP "orion") - elseif(${CMAKE_Platform} STREQUAL "cheyenne.intel") - set(WW3_COMP "cheyenne") - elseif(${CMAKE_Platform} STREQUAL "wcoss2") + if(${CMAKE_Platform} STREQUAL "wcoss2") set(WW3_COMP "wcoss_cray") elseif(${CMAKE_Platform} MATCHES "linux*" OR ${CMAKE_Platform} MATCHES "macosx*") if (CMAKE_Fortran_COMPILER_ID MATCHES "GNU") diff --git a/FV3 b/FV3 index 1c6d8fe96c..579abd47bb 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 1c6d8fe96c11e5ba2b88be06d77a7213b6e4ed91 +Subproject commit 579abd47bbdff6d33befae5e473d309a764b0da3 diff --git a/WW3 b/WW3 index a89e2a6339..fc509248a1 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit a89e2a6339a016522d3a84188756d0a4bb11be87 +Subproject commit fc509248a1cd397e138e65d57c1b10183fc64e2f diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index fd499e6861..0a298255a2 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Fri Mar 12 12:42:53 MST 2021 +Mon Mar 15 14:51:27 MDT 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -48,13 +48,13 @@ Checking test 001 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 73.838579 +The total amount of wall time = 74.402651 Test 001 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v15p2_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/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,13 +119,13 @@ Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 137.778086 +The total amount of wall time = 132.929431 Test 002 fv3_ccpp_gfs_v15p2 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -202,13 +202,13 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 186.857245 +The total amount of wall time = 185.078405 Test 003 fv3_ccpp_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v16_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -255,13 +255,13 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 97.727190 +The total amount of wall time = 98.924708 Test 004 fv3_ccpp_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v16_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -326,13 +326,13 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 88.961471 +The total amount of wall time = 89.298163 Test 005 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v16_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -397,13 +397,13 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 142.759770 +The total amount of wall time = 143.825747 Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/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 @@ -468,13 +468,13 @@ Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 251.704303 +The total amount of wall time = 251.902834 Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -539,13 +539,13 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 254.807788 +The total amount of wall time = 257.274978 Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -634,13 +634,13 @@ Checking test 009 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 353.606434 +The total amount of wall time = 357.526628 Test 009 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -705,13 +705,13 @@ Checking test 010 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 165.731563 +The total amount of wall time = 167.791037 Test 010 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/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 @@ -776,13 +776,13 @@ Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 158.555752 +The total amount of wall time = 159.248824 Test 011 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/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 @@ -847,13 +847,13 @@ Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 181.609534 +The total amount of wall time = 182.146076 Test 012 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/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 @@ -918,13 +918,13 @@ Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 257.088027 +The total amount of wall time = 244.563424 Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/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 @@ -939,13 +939,13 @@ Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 462.494306 +The total amount of wall time = 444.904050 Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1004,13 +1004,13 @@ Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 305.773385 +The total amount of wall time = 301.645268 Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1069,13 +1069,13 @@ Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 303.430926 +The total amount of wall time = 305.020664 Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1102,13 +1102,13 @@ Checking test 017 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 76.438706 +The total amount of wall time = 77.388080 Test 017 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1173,13 +1173,13 @@ Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 136.737799 +The total amount of wall time = 134.497309 Test 018 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v16_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1244,13 +1244,13 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 96.923799 +The total amount of wall time = 98.065764 Test 019 fv3_ccpp_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,13 +1315,13 @@ Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 196.747410 +The total amount of wall time = 193.482167 Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1386,13 +1386,13 @@ Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 198.064932 +The total amount of wall time = 195.041792 Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1463,13 +1463,13 @@ Checking test 022 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 175.597425 +The total amount of wall time = 177.886693 Test 022 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_regional_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1477,13 +1477,13 @@ Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 186.603794 +The total amount of wall time = 188.380657 Test 023 fv3_ccpp_regional_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1548,13 +1548,13 @@ Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 108.676293 +The total amount of wall time = 113.011953 Test 024 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1619,13 +1619,13 @@ Checking test 025 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 114.617559 +The total amount of wall time = 118.064604 Test 025 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1690,13 +1690,13 @@ Checking test 026 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 182.939559 +The total amount of wall time = 185.973158 Test 026 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1761,13 +1761,13 @@ Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 177.493453 +The total amount of wall time = 183.491656 Test 027 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1832,13 +1832,13 @@ Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 113.241309 +The total amount of wall time = 113.668444 Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1853,13 +1853,13 @@ Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 214.642899 +The total amount of wall time = 214.472761 Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_19909/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1918,11 +1918,11 @@ Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 302.395957 +The total amount of wall time = 301.664569 Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 12 12:59:56 MST 2021 -Elapsed time: 00h:17m:03s. Have a nice day! +Mon Mar 15 15:08:50 MDT 2021 +Elapsed time: 00h:17m:23s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 1dd473844d..b6fe967144 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Sat Mar 13 03:02:18 MST 2021 +Mon Mar 15 15:13:41 MDT 2021 Start Regression test baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,13 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 49.324713 +The total amount of wall time = 48.445367 Test 001 fv3_ccpp_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,13 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.807281 +The total amount of wall time = 47.992650 Test 002 fv3_ccpp_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +210,13 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 112.007898 +The total amount of wall time = 107.487710 Test 003 fv3_ccpp_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +263,13 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 24.951175 +The total amount of wall time = 23.733939 Test 004 fv3_ccpp_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_read_inc_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -334,13 +334,13 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.591388 +The total amount of wall time = 47.127170 Test 005 fv3_ccpp_read_inc PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -385,13 +385,13 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 115.295959 +The total amount of wall time = 129.408014 Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -436,13 +436,13 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.338354 +The total amount of wall time = 46.972747 Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -451,8 +451,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 .........OK - Comparing dynf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -487,13 +487,13 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.179453 +The total amount of wall time = 48.382240 Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -538,13 +538,13 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.407107 +The total amount of wall time = 46.881769 Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -589,13 +589,13 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.712389 +The total amount of wall time = 47.590770 Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -640,13 +640,13 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 122.939260 +The total amount of wall time = 123.939269 Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,13 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.755842 +The total amount of wall time = 57.687053 Test 012 fv3_ccpp_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,13 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 29.935693 +The total amount of wall time = 29.662515 Test 013 fv3_ccpp_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_lndp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,13 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.360622 +The total amount of wall time = 52.200055 Test 014 fv3_ccpp_lndp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_iau_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +924,13 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.731110 +The total amount of wall time = 47.913407 Test 015 fv3_ccpp_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_lheatstrg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +975,13 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.109637 +The total amount of wall time = 47.610248 Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_multigases_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1052,13 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 98.735939 +The total amount of wall time = 100.030948 Test 017 fv3_ccpp_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_control_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -1123,13 +1123,13 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 42.556136 +The total amount of wall time = 39.798607 Test 018 fv3_ccpp_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_stretched_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1182,13 +1182,13 @@ Checking test 019 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 331.757928 +The total amount of wall time = 332.262419 Test 019 fv3_ccpp_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_stretched_nest_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -1252,13 +1252,13 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 345.210227 +The total amount of wall time = 352.713671 Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_regional_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,25 +1266,25 @@ Checking test 021 fv3_ccpp_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 715.506439 +The total amount of wall time = 697.059129 Test 021 fv3_ccpp_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_regional_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 -The total amount of wall time = 395.121280 +The total amount of wall time = 393.423672 Test 022 fv3_ccpp_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_regional_quilt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1295,13 +1295,13 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 741.667364 +The total amount of wall time = 721.982896 Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_regional_quilt_hafs_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_regional_quilt_hafs_prod Checking test 024 fv3_ccpp_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1310,27 +1310,27 @@ Checking test 024 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 740.760918 +The total amount of wall time = 719.201196 Test 024 fv3_ccpp_regional_quilt_hafs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 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 phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK -The total amount of wall time = 741.861069 +The total amount of wall time = 719.995982 Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfdlmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,13 +1375,13 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 54.056128 +The total amount of wall time = 53.034811 Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1426,13 +1426,13 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 54.710451 +The total amount of wall time = 53.183759 Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1477,13 +1477,13 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.818926 +The total amount of wall time = 53.277267 Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_csawmg_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,13 +1528,13 @@ Checking test 029 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 143.475625 +The total amount of wall time = 143.654699 Test 029 fv3_ccpp_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,13 +1579,13 @@ Checking test 030 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.650618 +The total amount of wall time = 59.495493 Test 030 fv3_ccpp_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_satmedmfq_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1630,13 +1630,13 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.982939 +The total amount of wall time = 58.806768 Test 031 fv3_ccpp_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfdlmp_32bit_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,13 +1681,13 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 42.197546 +The total amount of wall time = 41.514249 Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1736,13 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 73.199716 +The total amount of wall time = 72.929668 Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_cpt_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,13 +1793,13 @@ Checking test 034 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 334.325950 +The total amount of wall time = 337.243573 Test 034 fv3_ccpp_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gsd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1888,13 @@ Checking test 035 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 202.301512 +The total amount of wall time = 202.150818 Test 035 fv3_ccpp_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_rap_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_rap_prod Checking test 036 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1959,13 @@ Checking test 036 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 101.842991 +The total amount of wall time = 102.012787 Test 036 fv3_ccpp_rap PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_hrrr_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_hrrr_prod Checking test 037 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2030,13 @@ Checking test 037 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 105.631854 +The total amount of wall time = 106.934973 Test 037 fv3_ccpp_hrrr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2101,13 +2101,13 @@ Checking test 038 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 95.241450 +The total amount of wall time = 96.340112 Test 038 fv3_ccpp_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_thompson_no_aero_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2172,13 +2172,13 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 90.337951 +The total amount of wall time = 91.907068 Test 039 fv3_ccpp_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_rrfs_v1beta_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,13 +2243,13 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 107.514712 +The total amount of wall time = 107.837113 Test 040 fv3_ccpp_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_prod Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2326,13 +2326,13 @@ Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 131.269317 +The total amount of wall time = 131.379843 Test 041 fv3_ccpp_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v16_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_restart_prod Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2379,13 +2379,13 @@ Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 67.194026 +The total amount of wall time = 68.766847 Test 042 fv3_ccpp_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v16_stochy_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_stochy_prod Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2450,13 +2450,13 @@ Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 65.653021 +The total amount of wall time = 64.512770 Test 043 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 044 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2521,13 +2521,13 @@ Checking test 044 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 221.917939 +The total amount of wall time = 220.814664 Test 044 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -2586,13 +2586,13 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 930.492833 +The total amount of wall time = 930.889339 Test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2657,13 +2657,13 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 479.726313 +The total amount of wall time = 473.296524 Test 046 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gocart_clm_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -2708,13 +2708,13 @@ Checking test 047 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 57.975349 +The total amount of wall time = 57.904422 Test 047 fv3_ccpp_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v16_flake_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_flake_prod Checking test 048 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2779,13 +2779,13 @@ Checking test 048 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 112.900564 +The total amount of wall time = 112.350998 Test 048 fv3_ccpp_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -2850,13 +2850,13 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 195.202679 +The total amount of wall time = 195.980362 Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -2871,13 +2871,13 @@ Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 340.053508 +The total amount of wall time = 340.106487 Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2936,13 +2936,13 @@ Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 215.217470 +The total amount of wall time = 216.277636 Test 051 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3001,13 +3001,13 @@ Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 215.958034 +The total amount of wall time = 218.815280 Test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -3072,13 +3072,13 @@ Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 244.073717 +The total amount of wall time = 245.075230 Test 053 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v16_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_debug_prod Checking test 054 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3143,13 +3143,13 @@ Checking test 054 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 190.461519 +The total amount of wall time = 189.406938 Test 054 fv3_ccpp_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -3214,13 +3214,13 @@ Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 386.031910 +The total amount of wall time = 386.295980 Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 056 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3285,13 +3285,13 @@ Checking test 056 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 392.336004 +The total amount of wall time = 392.440028 Test 056 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_regional_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_regional_control_debug_prod Checking test 057 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3299,13 +3299,13 @@ Checking test 057 fv3_ccpp_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 367.901496 +The total amount of wall time = 366.831849 Test 057 fv3_ccpp_regional_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_control_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_control_debug_prod Checking test 058 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3332,13 +3332,13 @@ Checking test 058 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 147.007204 +The total amount of wall time = 146.508217 Test 058 fv3_ccpp_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_stretched_nest_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_stretched_nest_debug_prod Checking test 059 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3355,13 +3355,13 @@ Checking test 059 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 433.745602 +The total amount of wall time = 433.334427 Test 059 fv3_ccpp_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gsd_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -3426,13 +3426,13 @@ Checking test 060 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 217.204227 +The total amount of wall time = 217.347536 Test 060 fv3_ccpp_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -3497,13 +3497,13 @@ Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 266.928633 +The total amount of wall time = 263.045850 Test 061 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -3568,13 +3568,13 @@ Checking test 062 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 360.992494 +The total amount of wall time = 360.692633 Test 062 fv3_ccpp_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -3639,13 +3639,13 @@ Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 347.477064 +The total amount of wall time = 347.414141 Test 063 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -3710,13 +3710,13 @@ Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 209.617432 +The total amount of wall time = 209.642159 Test 064 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -3781,13 +3781,13 @@ Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 223.159204 +The total amount of wall time = 223.759105 Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 @@ -3802,13 +3802,13 @@ Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 398.157260 +The total amount of wall time = 398.279909 Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 067 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3867,13 +3867,13 @@ Checking test 067 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 602.327759 +The total amount of wall time = 602.635373 Test 067 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_control_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_control_prod Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3923,13 +3923,13 @@ Checking test 068 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 97.569358 +The total amount of wall time = 98.377069 Test 068 cpld_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_restart_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_prod Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3979,13 +3979,13 @@ Checking test 069 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 54.799656 +The total amount of wall time = 54.551793 Test 069 cpld_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_controlfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_controlfrac_prod Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4035,13 +4035,13 @@ Checking test 070 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 97.381089 +The total amount of wall time = 97.847198 Test 070 cpld_controlfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_restartfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restartfrac_prod Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4091,13 +4091,13 @@ Checking test 071 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 54.178565 +The total amount of wall time = 54.553696 Test 071 cpld_restartfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_2threads_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_2threads_prod Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4147,13 +4147,13 @@ Checking test 072 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 261.666568 +The total amount of wall time = 258.589961 Test 072 cpld_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_decomp_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_decomp_prod Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4203,13 +4203,13 @@ Checking test 073 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 95.143209 +The total amount of wall time = 97.809631 Test 073 cpld_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_satmedmf_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_satmedmf_prod Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4259,13 +4259,13 @@ Checking test 074 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 95.856709 +The total amount of wall time = 97.610598 Test 074 cpld_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_ca_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_ca_prod Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4315,13 +4315,13 @@ Checking test 075 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 95.544459 +The total amount of wall time = 97.401858 Test 075 cpld_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_control_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_control_c192_prod Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4371,13 +4371,13 @@ Checking test 076 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 410.134938 +The total amount of wall time = 409.284226 Test 076 cpld_control_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_restart_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_c192_prod Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4427,13 +4427,13 @@ Checking test 077 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 281.134484 +The total amount of wall time = 294.268034 Test 077 cpld_restart_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_controlfrac_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_controlfrac_c192_prod Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4483,13 +4483,13 @@ Checking test 078 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 409.512069 +The total amount of wall time = 402.603821 Test 078 cpld_controlfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_restartfrac_c192_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restartfrac_c192_prod Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4539,13 +4539,13 @@ Checking test 079 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 280.218123 +The total amount of wall time = 291.241116 Test 079 cpld_restartfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_control_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_control_c384_prod Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4598,13 +4598,13 @@ Checking test 080 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1593.923756 +The total amount of wall time = 1603.600871 Test 080 cpld_control_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_restart_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_c384_prod Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4657,13 +4657,13 @@ Checking test 081 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 783.336148 +The total amount of wall time = 787.647056 Test 081 cpld_restart_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_controlfrac_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_controlfrac_c384_prod Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4716,13 +4716,13 @@ Checking test 082 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1483.087293 +The total amount of wall time = 1593.509229 Test 082 cpld_controlfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_restartfrac_c384_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restartfrac_c384_prod Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4775,13 +4775,13 @@ Checking test 083 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 836.625863 +The total amount of wall time = 782.643788 Test 083 cpld_restartfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_bmark_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmark_prod Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4834,13 +4834,13 @@ Checking test 084 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 868.985025 +The total amount of wall time = 912.535304 Test 084 cpld_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_restart_bmark_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_bmark_prod Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4893,13 +4893,13 @@ Checking test 085 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 474.046173 +The total amount of wall time = 496.944038 Test 085 cpld_restart_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_bmarkfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmarkfrac_prod Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4952,13 +4952,13 @@ Checking test 086 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 871.214527 +The total amount of wall time = 903.261741 Test 086 cpld_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_restart_bmarkfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_bmarkfrac_prod Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5011,13 +5011,13 @@ Checking test 087 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 498.450311 +The total amount of wall time = 492.256702 Test 087 cpld_restart_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_bmarkfrac_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmarkfrac_v16_prod Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5070,13 +5070,13 @@ Checking test 088 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -The total amount of wall time = 1533.521005 +The total amount of wall time = 1637.182420 Test 088 cpld_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_restart_bmarkfrac_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_bmarkfrac_v16_prod Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5129,13 +5129,13 @@ Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -The total amount of wall time = 876.774965 +The total amount of wall time = 894.252000 Test 089 cpld_restart_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_bmark_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmark_wave_prod Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5191,13 +5191,13 @@ Checking test 090 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 1580.204104 +The total amount of wall time = 1568.690744 Test 090 cpld_bmark_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_bmarkfrac_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmarkfrac_wave_prod Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5253,13 +5253,13 @@ Checking test 091 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 1534.215604 +The total amount of wall time = 1566.777312 Test 091 cpld_bmarkfrac_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_bmarkfrac_wave_v16_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmarkfrac_wave_v16_prod Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5314,13 +5314,13 @@ Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 1031.270121 +The total amount of wall time = 1043.280968 Test 092 cpld_bmarkfrac_wave_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_control_wave_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_control_wave_prod Checking test 093 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5373,13 +5373,13 @@ Checking test 093 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 824.253284 +The total amount of wall time = 814.173459 Test 093 cpld_control_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_debug_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_debug_prod Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5429,13 +5429,13 @@ Checking test 094 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 306.617782 +The total amount of wall time = 307.202595 Test 094 cpld_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/cpld_debugfrac_prod +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_debugfrac_prod Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5485,73 +5485,73 @@ Checking test 095 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 307.057824 +The total amount of wall time = 305.519940 Test 095 cpld_debugfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 101.236443 +The total amount of wall time = 102.254750 Test 096 datm_control_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/datm_restart_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 63.061128 +The total amount of wall time = 64.874934 Test 097 datm_restart_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 95.564987 +The total amount of wall time = 92.312934 Test 098 datm_control_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 98.389835 +The total amount of wall time = 98.579826 Test 099 datm_bulk_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 96.252057 +The total amount of wall time = 96.718155 Test 100 datm_bulk_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5560,13 +5560,13 @@ Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 392.968828 +The total amount of wall time = 395.791816 Test 101 datm_mx025_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5575,23 +5575,23 @@ Checking test 102 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 390.331200 +The total amount of wall time = 373.193171 Test 102 datm_mx025_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_63441/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 285.312378 +The total amount of wall time = 285.512419 Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sat Mar 13 04:46:17 MST 2021 -Elapsed time: 01h:44m:00s. Have a nice day! +Mon Mar 15 16:50:40 MDT 2021 +Elapsed time: 01h:36m:59s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 5dab5d520e..33e7e78571 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Thu Mar 11 22:52:29 EST 2021 +Mon Mar 15 11:33:54 EDT 2021 Start Regression test baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_control_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,13 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 50.272513 +The total amount of wall time = 46.202716 Test 001 fv3_ccpp_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_decomp_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,13 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.297218 +The total amount of wall time = 48.422483 Test 002 fv3_ccpp_decomp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_2threads_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +210,13 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 70.367479 +The total amount of wall time = 63.621933 Test 003 fv3_ccpp_2threads PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_restart_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +263,13 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 24.430861 +The total amount of wall time = 25.530793 Test 004 fv3_ccpp_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_read_inc_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 @@ -334,13 +334,13 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 41.362615 +The total amount of wall time = 45.608474 Test 005 fv3_ccpp_read_inc PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 @@ -385,13 +385,13 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 104.933469 +The total amount of wall time = 103.548563 Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 @@ -436,13 +436,13 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 41.797248 +The total amount of wall time = 41.781802 Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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,13 +487,13 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 87.198764 +The total amount of wall time = 119.304346 Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 @@ -538,13 +538,13 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.182311 +The total amount of wall time = 42.524630 Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 @@ -589,13 +589,13 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 41.085040 +The total amount of wall time = 40.850460 Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 @@ -640,13 +640,13 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 112.424122 +The total amount of wall time = 112.714340 Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_stochy_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,13 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 73.420609 +The total amount of wall time = 52.386574 Test 012 fv3_ccpp_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_ca_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,13 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 61.586141 +The total amount of wall time = 34.888770 Test 013 fv3_ccpp_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_lndp_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,13 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 78.443799 +The total amount of wall time = 53.942397 Test 014 fv3_ccpp_lndp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_iau_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +924,13 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.016155 +The total amount of wall time = 45.545194 Test 015 fv3_ccpp_iau PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_lheatstrg_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +975,13 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 42.826864 +The total amount of wall time = 46.328518 Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_multigases_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1052,13 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 103.185056 +The total amount of wall time = 86.788859 Test 017 fv3_ccpp_multigases PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_control_32bit_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 @@ -1123,13 +1123,13 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 42.675949 +The total amount of wall time = 42.716204 Test 018 fv3_ccpp_control_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_stretched_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1182,13 +1182,13 @@ Checking test 019 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 307.476308 +The total amount of wall time = 310.401709 Test 019 fv3_ccpp_stretched PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_stretched_nest_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 @@ -1252,13 +1252,13 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 338.691479 +The total amount of wall time = 337.151113 Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_regional_control_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,25 +1266,25 @@ Checking test 021 fv3_ccpp_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 681.287460 +The total amount of wall time = 673.135357 Test 021 fv3_ccpp_regional_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_regional_restart_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 -The total amount of wall time = 366.757333 +The total amount of wall time = 372.152868 Test 022 fv3_ccpp_regional_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_regional_quilt_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1295,13 +1295,13 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 692.456318 +The total amount of wall time = 696.496583 Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_regional_quilt_hafs_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_regional_quilt_hafs_prod Checking test 024 fv3_ccpp_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1310,27 +1310,27 @@ Checking test 024 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 691.262233 +The total amount of wall time = 690.496928 Test 024 fv3_ccpp_regional_quilt_hafs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK -The total amount of wall time = 693.347060 +The total amount of wall time = 696.943945 Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfdlmp_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,13 +1375,13 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 47.347707 +The total amount of wall time = 50.896308 Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1426,13 +1426,13 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 48.987011 +The total amount of wall time = 49.231900 Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1477,13 +1477,13 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 47.623452 +The total amount of wall time = 48.333800 Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_csawmg_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,13 +1528,13 @@ Checking test 029 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 124.487489 +The total amount of wall time = 126.509770 Test 029 fv3_ccpp_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_satmedmf_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,13 +1579,13 @@ Checking test 030 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 68.379090 +The total amount of wall time = 51.905065 Test 030 fv3_ccpp_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_satmedmfq_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1630,13 +1630,13 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.843001 +The total amount of wall time = 53.400283 Test 031 fv3_ccpp_satmedmfq PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,13 +1681,13 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 40.232950 +The total amount of wall time = 59.138256 Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1736,13 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 77.187638 +The total amount of wall time = 80.114644 Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_cpt_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,13 +1793,13 @@ Checking test 034 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 292.164168 +The total amount of wall time = 308.652566 Test 034 fv3_ccpp_cpt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gsd_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1888,13 @@ Checking test 035 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 193.157352 +The total amount of wall time = 199.917140 Test 035 fv3_ccpp_gsd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_rap_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_rap_prod Checking test 036 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1959,13 @@ Checking test 036 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 94.897888 +The total amount of wall time = 97.420971 Test 036 fv3_ccpp_rap PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_hrrr_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_hrrr_prod Checking test 037 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2030,13 @@ Checking test 037 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 100.012374 +The total amount of wall time = 100.507409 Test 037 fv3_ccpp_hrrr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_thompson_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2101,13 +2101,13 @@ Checking test 038 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 105.983524 +The total amount of wall time = 100.859710 Test 038 fv3_ccpp_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_thompson_no_aero_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2172,13 +2172,13 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 87.184424 +The total amount of wall time = 89.024713 Test 039 fv3_ccpp_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_rrfs_v1beta_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,13 +2243,13 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 102.559488 +The total amount of wall time = 107.226849 Test 040 fv3_ccpp_rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v15p2_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v15p2_prod Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2314,13 +2314,13 @@ Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 139.352157 +The total amount of wall time = 116.561811 Test 041 fv3_ccpp_gfs_v15p2 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_prod Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2397,13 +2397,13 @@ Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 144.325177 +The total amount of wall time = 123.109903 Test 042 fv3_ccpp_gfs_v16 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_restart_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_restart_prod Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2450,13 +2450,13 @@ Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 91.662009 +The total amount of wall time = 70.816141 Test 043 fv3_ccpp_gfs_v16_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_stochy_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_stochy_prod Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2521,13 +2521,13 @@ Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 58.574379 +The total amount of wall time = 57.624361 Test 044 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2592,13 +2592,13 @@ Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 183.653268 +The total amount of wall time = 196.279333 Test 045 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2663,13 +2663,13 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 189.274409 +The total amount of wall time = 198.279861 Test 046 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2728,13 +2728,13 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 720.712009 +The total amount of wall time = 724.420639 Test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2799,13 +2799,13 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 289.387629 +The total amount of wall time = 289.246314 Test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfsv16_csawmg_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 @@ -2850,13 +2850,13 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 134.154830 +The total amount of wall time = 160.717652 Test 049 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 @@ -2901,13 +2901,13 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 132.072619 +The total amount of wall time = 135.358067 Test 050 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gocart_clm_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 @@ -2952,13 +2952,13 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 53.990132 +The total amount of wall time = 56.265930 Test 051 fv3_ccpp_gocart_clm PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_flake_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_flake_prod Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3023,13 +3023,13 @@ Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 140.392957 +The total amount of wall time = 150.911054 Test 052 fv3_ccpp_gfs_v16_flake PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 @@ -3094,13 +3094,13 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 193.271890 +The total amount of wall time = 165.912999 Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 @@ -3115,13 +3115,13 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 306.146546 +The total amount of wall time = 330.719092 Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3180,13 +3180,13 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 186.629620 +The total amount of wall time = 188.806294 Test 055 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3245,13 +3245,13 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 196.320829 +The total amount of wall time = 187.875190 Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 @@ -3316,13 +3316,13 @@ Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 235.312832 +The total amount of wall time = 239.583893 Test 057 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_debug_prod Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3387,13 +3387,13 @@ Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 171.794758 +The total amount of wall time = 175.667525 Test 058 fv3_ccpp_gfs_v16_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 @@ -3458,13 +3458,13 @@ Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 378.670101 +The total amount of wall time = 380.015984 Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3529,13 +3529,13 @@ Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 382.539357 +The total amount of wall time = 382.399233 Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_regional_control_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_regional_control_debug_prod Checking test 061 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3543,13 +3543,13 @@ Checking test 061 fv3_ccpp_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 368.269754 +The total amount of wall time = 368.997322 Test 061 fv3_ccpp_regional_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_control_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_control_debug_prod Checking test 062 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3576,13 +3576,13 @@ Checking test 062 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 129.540539 +The total amount of wall time = 129.907206 Test 062 fv3_ccpp_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_stretched_nest_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_stretched_nest_debug_prod Checking test 063 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3599,13 +3599,13 @@ Checking test 063 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 434.928594 +The total amount of wall time = 436.163004 Test 063 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gsd_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gsd_debug_prod Checking test 064 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3670,13 +3670,13 @@ Checking test 064 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 196.219866 +The total amount of wall time = 195.328983 Test 064 fv3_ccpp_gsd_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gsd_diag3d_debug_prod Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3741,13 +3741,13 @@ Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 219.877183 +The total amount of wall time = 225.306297 Test 065 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_thompson_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_thompson_debug_prod Checking test 066 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3812,13 +3812,13 @@ Checking test 066 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 341.752881 +The total amount of wall time = 341.836603 Test 066 fv3_ccpp_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_thompson_no_aero_debug_prod Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3883,13 +3883,13 @@ Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 328.317350 +The total amount of wall time = 330.821297 Test 067 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3954,13 +3954,13 @@ Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 189.685880 +The total amount of wall time = 192.188307 Test 068 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4025,13 +4025,13 @@ Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 204.468763 +The total amount of wall time = 216.395169 Test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4046,13 +4046,13 @@ Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 376.498343 +The total amount of wall time = 380.092955 Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4111,13 +4111,13 @@ Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 578.801271 +The total amount of wall time = 579.772698 Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_control_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_control_prod Checking test 072 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4167,13 +4167,13 @@ Checking test 072 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 122.414567 +The total amount of wall time = 101.285119 Test 072 cpld_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_restart_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restart_prod Checking test 073 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4223,13 +4223,13 @@ Checking test 073 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 87.211700 +The total amount of wall time = 52.005528 Test 073 cpld_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_controlfrac_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_controlfrac_prod Checking test 074 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4279,13 +4279,13 @@ Checking test 074 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 92.322170 +The total amount of wall time = 106.159695 Test 074 cpld_controlfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_restartfrac_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restartfrac_prod Checking test 075 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4335,13 +4335,13 @@ Checking test 075 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 78.162262 +The total amount of wall time = 49.894653 Test 075 cpld_restartfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_2threads_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_2threads_prod Checking test 076 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4391,13 +4391,13 @@ Checking test 076 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 136.207200 +The total amount of wall time = 124.166037 Test 076 cpld_2threads PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_decomp_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_decomp_prod Checking test 077 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4447,13 +4447,13 @@ Checking test 077 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 96.221245 +The total amount of wall time = 122.193962 Test 077 cpld_decomp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_satmedmf_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_satmedmf_prod Checking test 078 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4503,13 +4503,13 @@ Checking test 078 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 91.835864 +The total amount of wall time = 96.819726 Test 078 cpld_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_ca_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_ca_prod Checking test 079 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4559,13 +4559,13 @@ Checking test 079 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 92.802804 +The total amount of wall time = 95.574276 Test 079 cpld_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_control_c192_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_control_c192_prod Checking test 080 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4615,13 +4615,13 @@ Checking test 080 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 416.471055 +The total amount of wall time = 417.422353 Test 080 cpld_control_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_restart_c192_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restart_c192_prod Checking test 081 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4671,13 +4671,13 @@ Checking test 081 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 280.076686 +The total amount of wall time = 284.592658 Test 081 cpld_restart_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_controlfrac_c192_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_controlfrac_c192_prod Checking test 082 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4727,13 +4727,13 @@ Checking test 082 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 410.581013 +The total amount of wall time = 414.885245 Test 082 cpld_controlfrac_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_restartfrac_c192_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restartfrac_c192_prod Checking test 083 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4783,13 +4783,13 @@ Checking test 083 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 305.646618 +The total amount of wall time = 284.826380 Test 083 cpld_restartfrac_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_control_c384_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_control_c384_prod Checking test 084 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4842,13 +4842,13 @@ Checking test 084 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1527.942314 +The total amount of wall time = 1573.722499 Test 084 cpld_control_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_restart_c384_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restart_c384_prod Checking test 085 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4901,13 +4901,13 @@ Checking test 085 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 778.572470 +The total amount of wall time = 787.501707 Test 085 cpld_restart_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_controlfrac_c384_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_controlfrac_c384_prod Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4960,13 +4960,13 @@ Checking test 086 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1569.066973 +The total amount of wall time = 1564.939017 Test 086 cpld_controlfrac_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_restartfrac_c384_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restartfrac_c384_prod Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5019,13 +5019,13 @@ Checking test 087 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 804.336610 +The total amount of wall time = 821.304281 Test 087 cpld_restartfrac_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_bmark_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_bmark_prod Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5078,13 +5078,13 @@ Checking test 088 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 882.324198 +The total amount of wall time = 898.267012 Test 088 cpld_bmark PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_restart_bmark_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restart_bmark_prod Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5137,13 +5137,13 @@ Checking test 089 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 457.487007 +The total amount of wall time = 493.790992 Test 089 cpld_restart_bmark PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_bmarkfrac_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_bmarkfrac_prod Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5196,13 +5196,13 @@ Checking test 090 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 884.111401 +The total amount of wall time = 870.568108 Test 090 cpld_bmarkfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_restart_bmarkfrac_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restart_bmarkfrac_prod Checking test 091 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5255,13 +5255,13 @@ Checking test 091 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 451.935720 +The total amount of wall time = 459.592415 Test 091 cpld_restart_bmarkfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_debug_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_debug_prod Checking test 092 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5311,13 +5311,13 @@ Checking test 092 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 265.617069 +The total amount of wall time = 268.650325 Test 092 cpld_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/cpld_debugfrac_prod +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_debugfrac_prod Checking test 093 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5367,73 +5367,73 @@ Checking test 093 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 270.392615 +The total amount of wall time = 266.272874 Test 093 cpld_debugfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 -The total amount of wall time = 101.043593 +The total amount of wall time = 103.055567 Test 094 datm_control_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/datm_restart_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 -The total amount of wall time = 60.964892 +The total amount of wall time = 59.947350 Test 095 datm_restart_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/datm_control_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 -The total amount of wall time = 97.675434 +The total amount of wall time = 94.846247 Test 096 datm_control_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 -The total amount of wall time = 94.868992 +The total amount of wall time = 98.839096 Test 097 datm_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/datm_bulk_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/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 -The total amount of wall time = 98.188875 +The total amount of wall time = 95.686765 Test 098 datm_bulk_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/datm_mx025_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/datm_mx025_gefs Checking test 099 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5442,23 +5442,23 @@ Checking test 099 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 390.752702 +The total amount of wall time = 403.741743 Test 099 datm_mx025_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_8911/datm_debug_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/datm_debug_cfsr Checking test 100 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 -The total amount of wall time = 225.443915 +The total amount of wall time = 228.299889 Test 100 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 12 00:34:57 EST 2021 -Elapsed time: 01h:42m:29s. Have a nice day! +Mon Mar 15 13:04:15 EDT 2021 +Elapsed time: 01h:30m:22s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index d268da65b3..231e963d13 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Fri Mar 12 14:46:56 UTC 2021 +Mon Mar 15 15:32:14 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -48,13 +48,13 @@ Checking test 001 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 233.119063 + 0: The total amount of wall time = 233.970407 Test 001 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/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,13 +119,13 @@ Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 609.904177 + 0: The total amount of wall time = 586.511327 Test 002 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -202,13 +202,13 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 610.664999 + 0: The total amount of wall time = 597.561812 Test 003 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -255,13 +255,13 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 297.090061 + 0: The total amount of wall time = 291.886595 Test 004 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -326,13 +326,13 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 373.806438 + 0: The total amount of wall time = 370.489472 Test 005 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -397,13 +397,13 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 595.503917 + 0: The total amount of wall time = 579.985304 Test 006 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/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 @@ -468,13 +468,13 @@ Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 700.294798 + 0: The total amount of wall time = 685.915855 Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -539,13 +539,13 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 687.048840 + 0: The total amount of wall time = 700.908666 Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -634,13 +634,13 @@ Checking test 009 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 827.170795 + 0: The total amount of wall time = 810.317421 Test 009 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -705,13 +705,13 @@ Checking test 010 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 412.230816 + 0: The total amount of wall time = 390.749742 Test 010 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/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 @@ -776,13 +776,13 @@ Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 376.549301 + 0: The total amount of wall time = 380.471711 Test 011 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/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 @@ -847,13 +847,13 @@ Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 409.876442 + 0: The total amount of wall time = 412.763619 Test 012 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/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 @@ -918,13 +918,13 @@ Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 624.402794 + 0: The total amount of wall time = 607.292609 Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/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 @@ -939,13 +939,13 @@ Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 452.555023 + 0: The total amount of wall time = 449.080236 Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1004,13 +1004,13 @@ Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 903.319950 + 0: The total amount of wall time = 907.983095 Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1069,13 +1069,13 @@ Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 913.198778 + 0: The total amount of wall time = 918.404036 Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1102,13 +1102,13 @@ Checking test 017 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 83.750582 + 0: The total amount of wall time = 84.837095 Test 017 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1173,13 +1173,13 @@ Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 255.090815 + 0: The total amount of wall time = 271.075533 Test 018 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1244,13 +1244,13 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 132.804138 + 0: The total amount of wall time = 129.496280 Test 019 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,13 +1315,13 @@ Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 329.372853 + 0: The total amount of wall time = 318.714050 Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1386,13 +1386,13 @@ Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.714120 + 0: The total amount of wall time = 320.059481 Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1463,13 +1463,13 @@ Checking test 022 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 421.321406 + 0: The total amount of wall time = 423.407471 Test 022 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_regional_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1477,13 +1477,13 @@ Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 171.344520 + 0: The total amount of wall time = 170.604005 Test 023 fv3_ccpp_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1548,13 +1548,13 @@ Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 117.217949 + 0: The total amount of wall time = 117.288385 Test 024 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1619,13 +1619,13 @@ Checking test 025 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 122.584917 + 0: The total amount of wall time = 121.701585 Test 025 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1690,13 +1690,13 @@ Checking test 026 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.909913 + 0: The total amount of wall time = 200.074667 Test 026 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1761,13 +1761,13 @@ Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.719769 + 0: The total amount of wall time = 191.013240 Test 027 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1832,13 +1832,13 @@ Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 135.991147 + 0: The total amount of wall time = 134.187735 Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1853,13 +1853,13 @@ Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 224.289170 + 0: The total amount of wall time = 221.463238 Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_92362/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1918,11 +1918,11 @@ Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 395.832994 + 0: The total amount of wall time = 386.492332 Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 12 15:14:06 UTC 2021 -Elapsed time: 00h:27m:11s. Have a nice day! +Mon Mar 15 16:09:07 UTC 2021 +Elapsed time: 00h:36m:54s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 4048bf4f47..4c261b300b 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Fri Mar 12 16:02:08 UTC 2021 +Mon Mar 15 15:46:28 UTC 2021 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,13 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 40.226954 + 0: The total amount of wall time = 39.820948 Test 001 fv3_ccpp_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,13 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 40.907735 + 0: The total amount of wall time = 41.696005 Test 002 fv3_ccpp_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +210,13 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 50.292479 + 0: The total amount of wall time = 41.704694 Test 003 fv3_ccpp_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +263,13 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 19.129432 + 0: The total amount of wall time = 18.894438 Test 004 fv3_ccpp_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -334,13 +334,13 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.851550 + 0: The total amount of wall time = 36.373933 Test 005 fv3_ccpp_read_inc PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -385,13 +385,13 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 110.827971 + 0: The total amount of wall time = 118.985372 Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -436,13 +436,13 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.264478 + 0: The total amount of wall time = 38.453367 Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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,13 +487,13 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 48.472520 + 0: The total amount of wall time = 47.808920 Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -538,13 +538,13 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 38.127435 + 0: The total amount of wall time = 38.531347 Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -589,13 +589,13 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.057172 + 0: The total amount of wall time = 37.806432 Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -640,13 +640,13 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.279320 + 0: The total amount of wall time = 95.943929 Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,13 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 41.404844 + 0: The total amount of wall time = 41.394106 Test 012 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,13 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 26.505750 + 0: The total amount of wall time = 27.442370 Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,13 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.782189 + 0: The total amount of wall time = 43.327471 Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +924,13 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.720011 + 0: The total amount of wall time = 36.161476 Test 015 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +975,13 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.656759 + 0: The total amount of wall time = 36.584574 Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1027,13 +1027,13 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 644.761217 + 0: The total amount of wall time = 650.226553 Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -1079,13 +1079,13 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 789.727676 + 0: The total amount of wall time = 794.057355 Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -1131,13 +1131,13 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 660.474636 + 0: The total amount of wall time = 670.292633 Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1208,13 +1208,13 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 75.632481 + 0: The total amount of wall time = 75.720520 Test 020 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -1279,13 +1279,13 @@ Checking test 021 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.711759 + 0: The total amount of wall time = 36.119760 Test 021 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,13 +1338,13 @@ Checking test 022 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 220.851837 + 0: The total amount of wall time = 218.355337 Test 022 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -1408,13 +1408,13 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK - 0: The total amount of wall time = 237.927448 + 0: The total amount of wall time = 241.797501 Test 023 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1422,25 +1422,25 @@ Checking test 024 fv3_ccpp_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 543.044833 + 0: The total amount of wall time = 538.287428 Test 024 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 - 0: The total amount of wall time = 300.863044 + 0: The total amount of wall time = 299.440706 Test 025 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1451,13 +1451,13 @@ Checking test 026 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 571.098539 + 0: The total amount of wall time = 574.471287 Test 026 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_regional_quilt_hafs_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_regional_quilt_hafs_prod Checking test 027 fv3_ccpp_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1466,13 +1466,13 @@ Checking test 027 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 579.427081 + 0: The total amount of wall time = 569.850052 Test 027 fv3_ccpp_regional_quilt_hafs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 028 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1480,13 +1480,13 @@ Checking test 028 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 575.206382 + 0: The total amount of wall time = 574.410244 Test 028 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1531,13 +1531,13 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.488756 + 0: The total amount of wall time = 42.512034 Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -1582,13 +1582,13 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.452109 + 0: The total amount of wall time = 42.662451 Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -1633,13 +1633,13 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.749541 + 0: The total amount of wall time = 42.493438 Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_csawmg_prod Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1684,13 +1684,13 @@ Checking test 032 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 109.680867 + 0: The total amount of wall time = 108.002941 Test 032 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_satmedmf_prod Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1735,13 +1735,13 @@ Checking test 033 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 46.242872 + 0: The total amount of wall time = 45.081347 Test 033 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_satmedmfq_prod Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1786,13 +1786,13 @@ Checking test 034 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.703448 + 0: The total amount of wall time = 44.823135 Test 034 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -1837,13 +1837,13 @@ Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 37.384654 + 0: The total amount of wall time = 36.315722 Test 035 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -1892,13 +1892,13 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 73.664883 + 0: The total amount of wall time = 74.857665 Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_cpt_prod Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1949,13 +1949,13 @@ Checking test 037 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 255.945371 + 0: The total amount of wall time = 256.721063 Test 037 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gsd_prod Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2044,13 +2044,13 @@ Checking test 038 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.304808 + 0: The total amount of wall time = 176.998657 Test 038 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_rap_prod Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2115,13 +2115,13 @@ Checking test 039 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.680694 + 0: The total amount of wall time = 86.539870 Test 039 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_hrrr_prod Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2186,13 +2186,13 @@ Checking test 040 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 95.819995 + 0: The total amount of wall time = 94.950462 Test 040 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_thompson_prod Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2257,13 +2257,13 @@ Checking test 041 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 84.139192 + 0: The total amount of wall time = 83.883970 Test 041 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -2328,13 +2328,13 @@ Checking test 042 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 79.390258 + 0: The total amount of wall time = 78.864208 Test 042 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -2399,13 +2399,13 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 97.944660 + 0: The total amount of wall time = 97.051378 Test 043 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -2470,13 +2470,13 @@ Checking test 044 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 92.359884 + 0: The total amount of wall time = 92.268968 Test 044 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_prod Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2553,13 +2553,13 @@ Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 102.635872 + 0: The total amount of wall time = 103.291199 Test 045 fv3_ccpp_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v16_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_restart_prod Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2606,13 +2606,13 @@ Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 53.258658 + 0: The total amount of wall time = 52.978843 Test 046 fv3_ccpp_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v16_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_stochy_prod Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2677,13 +2677,13 @@ Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 47.430897 + 0: The total amount of wall time = 47.704682 Test 047 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -2748,13 +2748,13 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 154.608536 + 0: The total amount of wall time = 154.916247 Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2819,13 +2819,13 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 156.501149 + 0: The total amount of wall time = 163.209395 Test 049 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -2884,13 +2884,13 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 622.294838 + 0: The total amount of wall time = 635.194443 Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2955,13 +2955,13 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 184.566021 + 0: The total amount of wall time = 169.926189 Test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -3006,13 +3006,13 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 117.083311 + 0: The total amount of wall time = 116.387435 Test 052 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -3057,13 +3057,13 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 115.087596 + 0: The total amount of wall time = 114.610591 Test 053 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -3108,13 +3108,13 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 48.249536 + 0: The total amount of wall time = 46.833943 Test 054 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v16_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_flake_prod Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3179,13 +3179,13 @@ Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 94.137093 + 0: The total amount of wall time = 94.028350 Test 055 fv3_ccpp_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -3250,13 +3250,13 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 141.738541 + 0: The total amount of wall time = 141.391373 Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/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 @@ -3271,13 +3271,13 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 277.940295 + 0: The total amount of wall time = 280.893582 Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3336,13 +3336,13 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 162.996038 + 0: The total amount of wall time = 163.002475 Test 058 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3401,13 +3401,13 @@ Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 162.563214 + 0: The total amount of wall time = 162.308474 Test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v15p2_debug_prod Checking test 060 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3472,13 +3472,13 @@ Checking test 060 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 225.745178 + 0: The total amount of wall time = 226.913909 Test 060 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v16_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_debug_prod Checking test 061 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3543,13 +3543,13 @@ Checking test 061 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.744302 + 0: The total amount of wall time = 173.863329 Test 061 fv3_ccpp_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3614,13 +3614,13 @@ Checking test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.391040 + 0: The total amount of wall time = 345.255492 Test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 063 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3685,13 +3685,13 @@ Checking test 063 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 355.093183 + 0: The total amount of wall time = 356.023037 Test 063 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_regional_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_regional_control_debug_prod Checking test 064 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3699,13 +3699,13 @@ Checking test 064 fv3_ccpp_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 352.002189 + 0: The total amount of wall time = 346.152073 Test 064 fv3_ccpp_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_control_debug_prod Checking test 065 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3732,13 +3732,13 @@ Checking test 065 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 132.762343 + 0: The total amount of wall time = 131.753745 Test 065 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_stretched_nest_debug_prod Checking test 066 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3755,13 +3755,13 @@ Checking test 066 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 353.377060 + 0: The total amount of wall time = 353.092963 Test 066 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gsd_debug_prod Checking test 067 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3826,13 +3826,13 @@ Checking test 067 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.531578 + 0: The total amount of wall time = 202.644216 Test 067 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gsd_diag3d_debug_prod Checking test 068 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3897,13 +3897,13 @@ Checking test 068 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 260.713715 + 0: The total amount of wall time = 262.831129 Test 068 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_thompson_debug_prod Checking test 069 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3968,13 +3968,13 @@ Checking test 069 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 332.231150 + 0: The total amount of wall time = 330.254832 Test 069 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_thompson_no_aero_debug_prod Checking test 070 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4039,13 +4039,13 @@ Checking test 070 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 324.479484 + 0: The total amount of wall time = 313.972837 Test 070 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 071 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4110,13 +4110,13 @@ Checking test 071 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.065709 + 0: The total amount of wall time = 194.159450 Test 071 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4181,13 +4181,13 @@ Checking test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 203.898214 + 0: The total amount of wall time = 204.837334 Test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4202,13 +4202,13 @@ Checking test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 385.877966 + 0: The total amount of wall time = 384.302992 Test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 074 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4267,13 +4267,13 @@ Checking test 074 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 546.255584 + 0: The total amount of wall time = 549.493664 Test 074 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_control_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_control_prod Checking test 075 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4323,13 +4323,13 @@ Checking test 075 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 89.017579 + 0: The total amount of wall time = 90.101533 Test 075 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_prod Checking test 076 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4379,13 +4379,13 @@ Checking test 076 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 54.799770 + 0: The total amount of wall time = 55.423159 Test 076 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_controlfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_controlfrac_prod Checking test 077 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4435,13 +4435,13 @@ Checking test 077 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 88.506764 + 0: The total amount of wall time = 90.707759 Test 077 cpld_controlfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restartfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restartfrac_prod Checking test 078 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4491,13 +4491,13 @@ Checking test 078 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 53.430953 + 0: The total amount of wall time = 55.579114 Test 078 cpld_restartfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_2threads_prod Checking test 079 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4547,13 +4547,13 @@ Checking test 079 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 118.369780 + 0: The total amount of wall time = 110.233780 Test 079 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_decomp_prod Checking test 080 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4603,13 +4603,13 @@ Checking test 080 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 87.334899 + 0: The total amount of wall time = 87.807401 Test 080 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_satmedmf_prod Checking test 081 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4659,13 +4659,13 @@ Checking test 081 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 86.367691 + 0: The total amount of wall time = 86.781482 Test 081 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_ca_prod Checking test 082 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4715,13 +4715,13 @@ Checking test 082 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 86.196501 + 0: The total amount of wall time = 88.532365 Test 082 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_control_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_control_c192_prod Checking test 083 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4771,13 +4771,13 @@ Checking test 083 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 371.418626 + 0: The total amount of wall time = 375.899109 Test 083 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restart_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_c192_prod Checking test 084 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4827,13 +4827,13 @@ Checking test 084 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 264.513830 + 0: The total amount of wall time = 271.862402 Test 084 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_controlfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_controlfrac_c192_prod Checking test 085 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4883,13 +4883,13 @@ Checking test 085 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 372.692064 + 0: The total amount of wall time = 373.801676 Test 085 cpld_controlfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restartfrac_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restartfrac_c192_prod Checking test 086 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4939,13 +4939,13 @@ Checking test 086 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 265.116880 + 0: The total amount of wall time = 271.784243 Test 086 cpld_restartfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_control_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_control_c384_prod Checking test 087 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4998,13 +4998,13 @@ Checking test 087 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1315.124954 + 0: The total amount of wall time = 1319.686156 Test 087 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restart_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_c384_prod Checking test 088 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5057,13 +5057,13 @@ Checking test 088 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 692.644522 + 0: The total amount of wall time = 695.474549 Test 088 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_controlfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_controlfrac_c384_prod Checking test 089 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5116,13 +5116,13 @@ Checking test 089 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1302.163975 + 0: The total amount of wall time = 1320.686769 Test 089 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restartfrac_c384_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restartfrac_c384_prod Checking test 090 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5175,13 +5175,13 @@ Checking test 090 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 689.216005 + 0: The total amount of wall time = 688.747277 Test 090 cpld_restartfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmark_prod Checking test 091 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5234,13 +5234,13 @@ Checking test 091 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 807.534281 + 0: The total amount of wall time = 819.239022 Test 091 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restart_bmark_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_bmark_prod Checking test 092 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5293,13 +5293,13 @@ Checking test 092 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 450.782622 + 0: The total amount of wall time = 453.508104 Test 092 cpld_restart_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmarkfrac_prod Checking test 093 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5352,13 +5352,13 @@ Checking test 093 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 800.807890 + 0: The total amount of wall time = 818.880256 Test 093 cpld_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restart_bmarkfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_bmarkfrac_prod Checking test 094 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5411,13 +5411,13 @@ Checking test 094 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 448.301083 + 0: The total amount of wall time = 440.989959 Test 094 cpld_restart_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmarkfrac_v16_prod Checking test 095 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5470,13 +5470,13 @@ Checking test 095 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 1296.327009 + 0: The total amount of wall time = 1323.191829 Test 095 cpld_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_restart_bmarkfrac_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_bmarkfrac_v16_prod Checking test 096 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5529,13 +5529,13 @@ Checking test 096 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 728.123532 + 0: The total amount of wall time = 729.645432 Test 096 cpld_restart_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_bmark_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmark_wave_prod Checking test 097 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5591,13 +5591,13 @@ Checking test 097 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1354.919507 + 0: The total amount of wall time = 1366.430816 Test 097 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_bmarkfrac_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmarkfrac_wave_prod Checking test 098 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5653,13 +5653,13 @@ Checking test 098 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1384.494203 + 0: The total amount of wall time = 1365.825424 Test 098 cpld_bmarkfrac_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_bmarkfrac_wave_v16_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmarkfrac_wave_v16_prod Checking test 099 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5714,13 +5714,13 @@ Checking test 099 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1010.759700 + 0: The total amount of wall time = 900.440136 Test 099 cpld_bmarkfrac_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_control_wave_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_control_wave_prod Checking test 100 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5773,13 +5773,13 @@ Checking test 100 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 775.233982 + 0: The total amount of wall time = 788.579555 Test 100 cpld_control_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_debug_prod Checking test 101 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5829,13 +5829,13 @@ Checking test 101 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 290.166652 + 0: The total amount of wall time = 291.535966 Test 101 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/cpld_debugfrac_prod +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_debugfrac_prod Checking test 102 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5885,73 +5885,73 @@ Checking test 102 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 288.642809 + 0: The total amount of wall time = 290.223750 Test 102 cpld_debugfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_control_cfsr Checking test 103 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 - 0: The total amount of wall time = 94.787046 + 0: The total amount of wall time = 95.380910 Test 103 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_restart_cfsr Checking test 104 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 - 0: The total amount of wall time = 61.188696 + 0: The total amount of wall time = 61.520902 Test 104 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_control_gefs Checking test 105 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 - 0: The total amount of wall time = 88.086402 + 0: The total amount of wall time = 87.965986 Test 105 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_bulk_cfsr Checking test 106 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 - 0: The total amount of wall time = 90.485697 + 0: The total amount of wall time = 90.934683 Test 106 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_bulk_gefs Checking test 107 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 - 0: The total amount of wall time = 86.506260 + 0: The total amount of wall time = 88.832563 Test 107 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_mx025_cfsr Checking test 108 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5960,13 +5960,13 @@ Checking test 108 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 351.052989 + 0: The total amount of wall time = 359.304711 Test 108 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_mx025_gefs Checking test 109 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5975,23 +5975,23 @@ Checking test 109 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 348.421059 + 0: The total amount of wall time = 357.808078 Test 109 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_191165/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_debug_cfsr Checking test 110 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 - 0: The total amount of wall time = 264.629399 + 0: The total amount of wall time = 267.113286 Test 110 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 12 17:35:36 UTC 2021 -Elapsed time: 01h:33m:28s. Have a nice day! +Mon Mar 15 17:16:13 UTC 2021 +Elapsed time: 01h:29m:46s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 9811ec71a7..d3fabe05ca 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Fri Mar 12 19:31:42 GMT 2021 +Mon Mar 15 15:31:15 GMT 2021 Start Regression test baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_control_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,13 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.897520 +The total amount of wall time = 60.812134 Test 001 fv3_ccpp_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_2threads_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_2threads_prod Checking test 002 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,13 @@ Checking test 002 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 295.294607 +The total amount of wall time = 281.513271 Test 002 fv3_ccpp_2threads PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_restart_prod Checking test 003 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -192,13 +192,13 @@ Checking test 003 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 27.618478 +The total amount of wall time = 27.429526 Test 003 fv3_ccpp_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_read_inc_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_read_inc_prod Checking test 004 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -263,13 +263,13 @@ Checking test 004 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.297582 +The total amount of wall time = 52.492872 Test 004 fv3_ccpp_read_inc PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -314,13 +314,13 @@ Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 178.265542 +The total amount of wall time = 153.693164 Test 005 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGauss_netcdf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -365,13 +365,13 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.703037 +The total amount of wall time = 53.510003 Test 006 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -416,13 +416,13 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 69.442236 +The total amount of wall time = 71.922677 Test 007 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -467,13 +467,13 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.899991 +The total amount of wall time = 52.692752 Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -518,13 +518,13 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.333563 +The total amount of wall time = 52.411888 Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -569,13 +569,13 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 140.550411 +The total amount of wall time = 141.282702 Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +640,13 @@ Checking test 011 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.145562 +The total amount of wall time = 58.295106 Test 011 fv3_ccpp_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_ca_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_ca_prod Checking test 012 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,13 @@ Checking test 012 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.776830 +The total amount of wall time = 41.881267 Test 012 fv3_ccpp_ca PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_lndp_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_lndp_prod Checking test 013 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,13 @@ Checking test 013 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 67.052423 +The total amount of wall time = 65.033832 Test 013 fv3_ccpp_lndp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_iau_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_iau_prod Checking test 014 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,13 @@ Checking test 014 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.160312 +The total amount of wall time = 52.527489 Test 014 fv3_ccpp_iau PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_lheatstrg_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -904,13 +904,13 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.057268 +The total amount of wall time = 52.427079 Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_multigases_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,13 +981,13 @@ Checking test 016 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 105.842393 +The total amount of wall time = 105.517589 Test 016 fv3_ccpp_multigases PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_control_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1052,13 @@ Checking test 017 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.162605 +The total amount of wall time = 53.975294 Test 017 fv3_ccpp_control_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_stretched_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1111,13 +1111,13 @@ Checking test 018 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 395.511585 +The total amount of wall time = 393.675727 Test 018 fv3_ccpp_stretched PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_stretched_nest_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1181,13 +1181,13 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 428.320555 +The total amount of wall time = 426.333542 Test 019 fv3_ccpp_stretched_nest PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_regional_control_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1195,25 +1195,25 @@ Checking test 020 fv3_ccpp_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 862.134299 +The total amount of wall time = 856.461944 Test 020 fv3_ccpp_regional_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_regional_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 476.795452 +The total amount of wall time = 479.157608 Test 021 fv3_ccpp_regional_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_regional_quilt_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1224,13 +1224,13 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 842.776710 +The total amount of wall time = 844.481965 Test 022 fv3_ccpp_regional_quilt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_regional_quilt_hafs_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_regional_quilt_hafs_prod Checking test 023 fv3_ccpp_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1239,27 +1239,27 @@ Checking test 023 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 845.907532 +The total amount of wall time = 849.056197 Test 023 fv3_ccpp_regional_quilt_hafs PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/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 dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 841.955350 +The total amount of wall time = 842.995023 Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfdlmp_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfdlmp_prod Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1304,13 +1304,13 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 62.196175 +The total amount of wall time = 60.895407 Test 025 fv3_ccpp_gfdlmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfdlmprad_gwd_prod Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,13 +1355,13 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.788513 +The total amount of wall time = 61.145853 Test 026 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1406,13 +1406,13 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.351203 +The total amount of wall time = 60.901828 Test 027 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_csawmg_prod Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1457,13 +1457,13 @@ Checking test 028 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 152.718138 +The total amount of wall time = 152.610570 Test 028 fv3_ccpp_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_satmedmf_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_satmedmf_prod Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1508,13 +1508,13 @@ Checking test 029 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 64.758303 +The total amount of wall time = 65.117735 Test 029 fv3_ccpp_satmedmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_satmedmfq_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_satmedmfq_prod Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,13 +1559,13 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 65.616924 +The total amount of wall time = 65.810936 Test 030 fv3_ccpp_satmedmfq PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfdlmp_32bit_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfdlmp_32bit_prod Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1610,13 +1610,13 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 54.709358 +The total amount of wall time = 52.524905 Test 031 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1665,13 +1665,13 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 98.041471 +The total amount of wall time = 97.468580 Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_cpt_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_cpt_prod Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,13 +1722,13 @@ Checking test 033 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 357.262139 +The total amount of wall time = 354.875700 Test 033 fv3_ccpp_cpt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gsd_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gsd_prod Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1817,13 +1817,13 @@ Checking test 034 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 249.827006 +The total amount of wall time = 240.290235 Test 034 fv3_ccpp_gsd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_thompson_prod Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1888,13 @@ Checking test 035 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 120.798276 +The total amount of wall time = 113.245163 Test 035 fv3_ccpp_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_thompson_no_aero_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_thompson_no_aero_prod Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1959,13 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 119.585785 +The total amount of wall time = 107.577594 Test 036 fv3_ccpp_thompson_no_aero PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v15p2_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v15p2_prod Checking test 037 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2030,13 @@ Checking test 037 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 120.645481 +The total amount of wall time = 117.234830 Test 037 fv3_ccpp_gfs_v15p2 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_prod Checking test 038 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2113,13 +2113,13 @@ Checking test 038 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 148.148292 +The total amount of wall time = 146.070385 Test 038 fv3_ccpp_gfs_v16 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_restart_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_restart_prod Checking test 039 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2166,13 +2166,13 @@ Checking test 039 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 76.531181 +The total amount of wall time = 75.699602 Test 039 fv3_ccpp_gfs_v16_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_stochy_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_stochy_prod Checking test 040 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2237,13 +2237,13 @@ Checking test 040 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 66.614612 +The total amount of wall time = 66.131955 Test 040 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2308,13 +2308,13 @@ Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 186.345269 +The total amount of wall time = 186.196478 Test 041 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 042 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2379,13 +2379,13 @@ Checking test 042 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 188.983014 +The total amount of wall time = 188.927299 Test 042 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 043 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2444,13 +2444,13 @@ Checking test 043 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 808.346446 +The total amount of wall time = 802.617376 Test 043 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2515,13 +2515,13 @@ Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 778.243602 +The total amount of wall time = 663.423530 Test 044 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfsv16_csawmg_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/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 @@ -2566,13 +2566,13 @@ Checking test 045 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 164.409938 +The total amount of wall time = 162.800113 Test 045 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/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 @@ -2617,13 +2617,13 @@ Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 161.943814 +The total amount of wall time = 160.934900 Test 046 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gocart_clm_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/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 @@ -2668,13 +2668,13 @@ Checking test 047 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 67.583819 +The total amount of wall time = 66.963537 Test 047 fv3_ccpp_gocart_clm PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_flake_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_flake_prod Checking test 048 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2739,13 +2739,13 @@ Checking test 048 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 125.384404 +The total amount of wall time = 119.851463 Test 048 fv3_ccpp_gfs_v16_flake PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/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 @@ -2810,13 +2810,13 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 191.804563 +The total amount of wall time = 191.677747 Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/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 @@ -2831,13 +2831,13 @@ Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 357.030245 +The total amount of wall time = 356.551422 Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2896,13 +2896,13 @@ Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 229.417212 +The total amount of wall time = 234.051149 Test 051 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2961,13 +2961,13 @@ Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 230.194171 +The total amount of wall time = 230.930722 Test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/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 @@ -3032,13 +3032,13 @@ Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 271.550480 +The total amount of wall time = 272.393572 Test 053 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_debug_prod Checking test 054 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3103,13 +3103,13 @@ Checking test 054 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 208.942613 +The total amount of wall time = 209.701201 Test 054 fv3_ccpp_gfs_v16_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/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 @@ -3174,13 +3174,13 @@ Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 438.293896 +The total amount of wall time = 437.835363 Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 056 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3245,13 +3245,13 @@ Checking test 056 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 446.965019 +The total amount of wall time = 447.543650 Test 056 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_regional_control_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_regional_control_debug_prod Checking test 057 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3259,13 +3259,13 @@ Checking test 057 fv3_ccpp_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 460.388132 +The total amount of wall time = 457.030482 Test 057 fv3_ccpp_regional_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_control_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_control_debug_prod Checking test 058 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3292,13 +3292,13 @@ Checking test 058 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 159.675110 +The total amount of wall time = 159.978141 Test 058 fv3_ccpp_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_stretched_nest_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_stretched_nest_debug_prod Checking test 059 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3315,13 +3315,13 @@ Checking test 059 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 534.374797 +The total amount of wall time = 534.778950 Test 059 fv3_ccpp_stretched_nest_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gsd_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/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 @@ -3386,13 +3386,13 @@ Checking test 060 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 238.608603 +The total amount of wall time = 240.124856 Test 060 fv3_ccpp_gsd_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/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 @@ -3457,13 +3457,13 @@ Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 268.953533 +The total amount of wall time = 270.495321 Test 061 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/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 @@ -3528,13 +3528,13 @@ Checking test 062 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 419.125741 +The total amount of wall time = 416.982382 Test 062 fv3_ccpp_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/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 @@ -3599,13 +3599,13 @@ Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 401.338907 +The total amount of wall time = 403.741014 Test 063 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/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 @@ -3670,13 +3670,13 @@ Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 232.393874 +The total amount of wall time = 231.947853 Test 064 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/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 @@ -3741,13 +3741,13 @@ Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 247.264339 +The total amount of wall time = 247.905366 Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/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 @@ -3762,13 +3762,13 @@ Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 464.502882 +The total amount of wall time = 463.748015 Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_99415/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 067 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3827,11 +3827,11 @@ Checking test 067 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 712.039693 +The total amount of wall time = 711.012031 Test 067 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sat Mar 13 00:10:30 GMT 2021 -Elapsed time: 04h:38m:48s. Have a nice day! +Mon Mar 15 18:14:39 GMT 2021 +Elapsed time: 02h:43m:24s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 4152a674a8..a29b81b18f 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Fri Mar 12 21:33:13 UTC 2021 +Mon Mar 15 15:10:33 UTC 2021 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,13 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.999307 +The total amount of wall time = 99.580387 Test 001 fv3_ccpp_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,13 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.377024 +The total amount of wall time = 93.681293 Test 002 fv3_ccpp_decomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +210,13 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 88.490964 +The total amount of wall time = 47.362766 Test 003 fv3_ccpp_2threads PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +263,13 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 31.933550 +The total amount of wall time = 24.842162 Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/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 @@ -334,13 +334,13 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 68.428892 +The total amount of wall time = 51.148666 Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/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 @@ -385,13 +385,13 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 170.181526 +The total amount of wall time = 130.613144 Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/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 @@ -436,13 +436,13 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 60.053883 +The total amount of wall time = 56.133268 Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/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,13 +487,13 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 80.533057 +The total amount of wall time = 156.252763 Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/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 @@ -538,13 +538,13 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 61.734925 +The total amount of wall time = 59.755501 Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/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 @@ -589,13 +589,13 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 82.005885 +The total amount of wall time = 54.126902 Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/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 @@ -640,13 +640,13 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 131.728396 +The total amount of wall time = 150.745275 Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,13 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.624253 +The total amount of wall time = 56.852801 Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_ca_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,13 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.439481 +The total amount of wall time = 114.296214 Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_lndp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,13 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 76.828795 +The total amount of wall time = 69.905051 Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +924,13 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.798792 +The total amount of wall time = 49.435697 Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +975,13 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 60.108429 +The total amount of wall time = 51.358493 Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1052,13 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 119.551666 +The total amount of wall time = 102.482825 Test 017 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/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 @@ -1123,13 +1123,13 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 61.967911 +The total amount of wall time = 109.052814 Test 018 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1182,13 +1182,13 @@ Checking test 019 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 421.762552 +The total amount of wall time = 355.139031 Test 019 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/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 @@ -1252,13 +1252,13 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 591.584869 +The total amount of wall time = 493.564882 Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,25 +1266,25 @@ Checking test 021 fv3_ccpp_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 734.151063 +The total amount of wall time = 708.691047 Test 021 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/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 -The total amount of wall time = 430.026093 +The total amount of wall time = 408.314958 Test 022 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1295,13 +1295,13 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 703.604103 +The total amount of wall time = 702.871821 Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_hafs_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_regional_quilt_hafs_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_quilt_hafs_prod Checking test 024 fv3_ccpp_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1310,13 +1310,13 @@ Checking test 024 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 701.969080 +The total amount of wall time = 702.577217 Test 024 fv3_ccpp_regional_quilt_hafs PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_quilt_netcdf_parallel_prod Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1324,13 +1324,13 @@ Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 714.457440 +The total amount of wall time = 702.357430 Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,13 +1375,13 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 69.321589 +The total amount of wall time = 122.097066 Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1426,13 +1426,13 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 65.312231 +The total amount of wall time = 98.792328 Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1477,13 +1477,13 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 67.246205 +The total amount of wall time = 102.487017 Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_csawmg_prod Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,13 +1528,13 @@ Checking test 029 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 142.120409 +The total amount of wall time = 161.005073 Test 029 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_satmedmf_prod Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,13 +1579,13 @@ Checking test 030 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 101.293432 +The total amount of wall time = 58.566167 Test 030 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_satmedmfq_prod Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1630,13 +1630,13 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 69.169703 +The total amount of wall time = 57.543109 Test 031 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,13 +1681,13 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 59.307229 +The total amount of wall time = 60.637933 Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1736,13 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 126.708133 +The total amount of wall time = 114.488328 Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,13 +1793,13 @@ Checking test 034 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 310.761119 +The total amount of wall time = 289.126417 Test 034 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1888,13 @@ Checking test 035 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 207.848228 +The total amount of wall time = 199.176066 Test 035 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_rap_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_rap_prod Checking test 036 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1959,13 @@ Checking test 036 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 114.253135 +The total amount of wall time = 106.102948 Test 036 fv3_ccpp_rap PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_hrrr_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_hrrr_prod Checking test 037 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2030,13 @@ Checking test 037 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 114.011660 +The total amount of wall time = 121.642248 Test 037 fv3_ccpp_hrrr PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_thompson_prod Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2101,13 +2101,13 @@ Checking test 038 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 98.284177 +The total amount of wall time = 98.285796 Test 038 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_thompson_no_aero_prod Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2172,13 +2172,13 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 97.586640 +The total amount of wall time = 93.686278 Test 039 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_rrfs_v1beta_prod Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,13 +2243,13 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 108.910462 +The total amount of wall time = 111.501950 Test 040 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v15p2_prod Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2314,13 +2314,13 @@ Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 111.835004 +The total amount of wall time = 109.180521 Test 041 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_prod Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2397,13 +2397,13 @@ Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 145.432569 +The total amount of wall time = 131.858752 Test 042 fv3_ccpp_gfs_v16 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_restart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_restart_prod Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2450,13 +2450,13 @@ Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 70.034667 +The total amount of wall time = 68.244794 Test 043 fv3_ccpp_gfs_v16_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_stochy_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_stochy_prod Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2521,13 +2521,13 @@ Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 66.923195 +The total amount of wall time = 62.121171 Test 044 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2592,13 +2592,13 @@ Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 182.767157 +The total amount of wall time = 176.063395 Test 045 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2663,13 +2663,13 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 179.042768 +The total amount of wall time = 176.542941 Test 046 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2728,13 +2728,13 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 729.657752 +The total amount of wall time = 718.556767 Test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2799,13 +2799,13 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 211.430350 +The total amount of wall time = 172.144048 Test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/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 @@ -2850,13 +2850,13 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 148.522747 +The total amount of wall time = 145.900090 Test 049 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/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 @@ -2901,13 +2901,13 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 153.574297 +The total amount of wall time = 162.009408 Test 050 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/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 @@ -2952,13 +2952,13 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 71.542759 +The total amount of wall time = 93.182478 Test 051 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_flake_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_flake_prod Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3023,13 +3023,13 @@ Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 114.840249 +The total amount of wall time = 117.063447 Test 052 fv3_ccpp_gfs_v16_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/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 @@ -3094,13 +3094,13 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 165.095247 +The total amount of wall time = 160.487371 Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/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 @@ -3115,13 +3115,13 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 304.346689 +The total amount of wall time = 301.412646 Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3180,13 +3180,13 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 201.403968 +The total amount of wall time = 192.811337 Test 055 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3245,13 +3245,13 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 200.817168 +The total amount of wall time = 191.702998 Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/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 @@ -3316,13 +3316,13 @@ Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 225.786991 +The total amount of wall time = 211.346801 Test 057 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_debug_prod Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3387,13 +3387,13 @@ Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 166.399980 +The total amount of wall time = 162.230739 Test 058 fv3_ccpp_gfs_v16_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/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 @@ -3458,13 +3458,13 @@ Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 344.171378 +The total amount of wall time = 342.379244 Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3529,13 +3529,13 @@ Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 354.158184 +The total amount of wall time = 350.378805 Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_regional_control_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_control_debug_prod Checking test 061 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3543,13 +3543,13 @@ Checking test 061 fv3_ccpp_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 343.096387 +The total amount of wall time = 343.168795 Test 061 fv3_ccpp_regional_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_control_debug_prod Checking test 062 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3576,13 +3576,13 @@ Checking test 062 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 134.447458 +The total amount of wall time = 129.611232 Test 062 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_stretched_nest_debug_prod Checking test 063 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3599,13 +3599,13 @@ Checking test 063 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 406.597842 +The total amount of wall time = 410.472189 Test 063 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gsd_debug_prod Checking test 064 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3670,13 +3670,13 @@ Checking test 064 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 213.851003 +The total amount of wall time = 197.373577 Test 064 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gsd_diag3d_debug_prod Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3741,13 +3741,13 @@ Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 252.859283 +The total amount of wall time = 230.638613 Test 065 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_thompson_debug_prod Checking test 066 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3812,13 +3812,13 @@ Checking test 066 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 339.688488 +The total amount of wall time = 322.695953 Test 066 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_thompson_no_aero_debug_prod Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3883,13 +3883,13 @@ Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 314.053998 +The total amount of wall time = 310.005248 Test 067 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3954,13 +3954,13 @@ Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 210.111456 +The total amount of wall time = 190.089158 Test 068 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4025,13 +4025,13 @@ Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 207.054629 +The total amount of wall time = 185.737524 Test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4046,13 +4046,13 @@ Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 351.269260 +The total amount of wall time = 354.356825 Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/hps3/stmp/Jiande.Wang/FV3_RT/rt_38296/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4111,11 +4111,11 @@ Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 538.062416 +The total amount of wall time = 538.833850 Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 12 22:20:07 UTC 2021 -Elapsed time: 00h:46m:54s. Have a nice day! +Mon Mar 15 15:58:20 UTC 2021 +Elapsed time: 00h:47m:47s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 0cec9fe679..62032d5595 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Thu Mar 11 20:14:43 EST 2021 +Mon Mar 15 15:09:37 UTC 2021 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,13 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 49.862693 +[0] The total amount of wall time = 50.002583 Test 001 fv3_ccpp_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,13 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 50.657474 +[0] The total amount of wall time = 50.402100 Test 002 fv3_ccpp_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +210,13 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 57.137699 +[0] The total amount of wall time = 41.017446 Test 003 fv3_ccpp_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +263,13 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 24.699183 +[0] The total amount of wall time = 24.566906 Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/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 @@ -334,13 +334,13 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 46.612694 +[0] The total amount of wall time = 46.492268 Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/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 @@ -385,13 +385,13 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 158.416346 +[0] The total amount of wall time = 165.809172 Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/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 @@ -436,13 +436,13 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.961127 +[0] The total amount of wall time = 46.025304 Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_wrtGauss_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/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,8 +450,8 @@ 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 phyf024.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK @@ -487,13 +487,13 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 61.669073 +[0] The total amount of wall time = 63.915216 Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/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 @@ -538,13 +538,13 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.228932 +[0] The total amount of wall time = 45.741756 Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/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 @@ -589,13 +589,13 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.365429 +[0] The total amount of wall time = 45.525979 Test 010 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/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 @@ -640,13 +640,13 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 119.889714 +[0] The total amount of wall time = 128.519598 Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,13 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 52.262443 +[0] The total amount of wall time = 52.079623 Test 012 fv3_ccpp_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_ca_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,13 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 33.595858 +[0] The total amount of wall time = 34.346209 Test 013 fv3_ccpp_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_lndp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,13 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 53.210672 +[0] The total amount of wall time = 53.866895 Test 014 fv3_ccpp_lndp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +924,13 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 46.215364 +[0] The total amount of wall time = 46.185478 Test 015 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +975,13 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 46.043043 +[0] The total amount of wall time = 45.683496 Test 016 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1027,13 +1027,13 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -[0] The total amount of wall time = 687.024379 +[0] The total amount of wall time = 679.246413 Test 017 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/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 @@ -1079,13 +1079,13 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -[0] The total amount of wall time = 865.996935 +[0] The total amount of wall time = 851.013289 Test 018 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1156,13 +1156,13 @@ Checking test 019 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 93.684584 +[0] The total amount of wall time = 96.389756 Test 019 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/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 @@ -1227,13 +1227,13 @@ Checking test 020 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.039154 +[0] The total amount of wall time = 45.432879 Test 020 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1286,13 +1286,13 @@ Checking test 021 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 327.348631 +[0] The total amount of wall time = 330.907296 Test 021 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/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 @@ -1356,13 +1356,13 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -[0] The total amount of wall time = 349.905997 +[0] The total amount of wall time = 353.071570 Test 022 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1370,25 +1370,25 @@ Checking test 023 fv3_ccpp_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 717.131508 +[0] The total amount of wall time = 722.293073 Test 023 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/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 -[0] The total amount of wall time = 401.742739 +[0] The total amount of wall time = 403.268898 Test 024 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1399,13 +1399,13 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 741.427707 +[0] The total amount of wall time = 736.957871 Test 025 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_hafs_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_regional_quilt_hafs_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_regional_quilt_hafs_prod Checking test 026 fv3_ccpp_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1414,13 +1414,13 @@ Checking test 026 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 733.659878 +[0] The total amount of wall time = 738.403767 Test 026 fv3_ccpp_regional_quilt_hafs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_regional_quilt_netcdf_parallel_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/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 @@ -1428,13 +1428,13 @@ Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -[0] The total amount of wall time = 734.238116 +[0] The total amount of wall time = 734.026054 Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmp_prod Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,13 +1479,13 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 52.119540 +[0] The total amount of wall time = 52.148013 Test 028 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmprad_gwd_prod Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,13 +1530,13 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 52.615934 +[0] The total amount of wall time = 52.829517 Test 029 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1581,13 +1581,13 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 51.999474 +[0] The total amount of wall time = 52.447149 Test 030 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_csawmg_prod Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1632,13 +1632,13 @@ Checking test 031 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 132.602162 +[0] The total amount of wall time = 134.024265 Test 031 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_satmedmf_prod Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1683,13 +1683,13 @@ Checking test 032 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 57.303906 +[0] The total amount of wall time = 56.039994 Test 032 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_satmedmfq_prod Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1734,13 +1734,13 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 57.423227 +[0] The total amount of wall time = 56.139441 Test 033 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmp_32bit_prod Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1785,13 +1785,13 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 44.679156 +[0] The total amount of wall time = 44.712953 Test 034 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1840,13 +1840,13 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 84.498823 +[0] The total amount of wall time = 90.038256 Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_cpt_prod Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1897,13 +1897,13 @@ Checking test 036 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 307.051939 +[0] The total amount of wall time = 309.839479 Test 036 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gsd_prod Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1992,13 +1992,13 @@ Checking test 037 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 207.951421 +[0] The total amount of wall time = 210.714190 Test 037 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_rap_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_rap_prod Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2063,13 +2063,13 @@ Checking test 038 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 104.586215 +[0] The total amount of wall time = 104.773158 Test 038 fv3_ccpp_rap PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_hrrr_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_hrrr_prod Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2134,13 +2134,13 @@ Checking test 039 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 114.077229 +[0] The total amount of wall time = 113.518912 Test 039 fv3_ccpp_hrrr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_thompson_prod Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2205,13 +2205,13 @@ Checking test 040 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 100.200810 +[0] The total amount of wall time = 101.215020 Test 040 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_thompson_no_aero_prod Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2276,13 +2276,13 @@ Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 95.321154 +[0] The total amount of wall time = 95.132614 Test 041 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_rrfs_v1beta_prod Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2347,13 +2347,13 @@ Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 115.462679 +[0] The total amount of wall time = 115.302938 Test 042 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v15p2_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v15p2_prod Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2418,13 +2418,13 @@ Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 102.459681 +[0] The total amount of wall time = 102.243971 Test 043 fv3_ccpp_gfs_v15p2 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_prod Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2501,13 +2501,13 @@ Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 123.395146 +[0] The total amount of wall time = 123.270637 Test 044 fv3_ccpp_gfs_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_restart_prod Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2554,13 +2554,13 @@ Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 65.881562 +[0] The total amount of wall time = 66.386939 Test 045 fv3_ccpp_gfs_v16_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_stochy_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_stochy_prod Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2625,13 +2625,13 @@ Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 59.323741 +[0] The total amount of wall time = 59.471855 Test 046 fv3_ccpp_gfs_v16_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v15p2_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2696,13 +2696,13 @@ Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 175.473025 +[0] The total amount of wall time = 175.824391 Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_RRTMGP_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2767,13 +2767,13 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 177.599034 +[0] The total amount of wall time = 178.091322 Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2832,13 +2832,13 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 755.713620 +[0] The total amount of wall time = 756.150922 Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2903,13 +2903,13 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 216.666300 +[0] The total amount of wall time = 165.445358 Test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/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 @@ -2954,13 +2954,13 @@ Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 142.778863 +[0] The total amount of wall time = 142.203987 Test 051 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/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 @@ -3005,13 +3005,13 @@ Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 140.158881 +[0] The total amount of wall time = 140.422558 Test 052 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/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 @@ -3056,13 +3056,13 @@ Checking test 053 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 56.495860 +[0] The total amount of wall time = 58.333771 Test 053 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_flake_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_flake_prod Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3127,13 +3127,13 @@ Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 104.671024 +[0] The total amount of wall time = 105.620445 Test 054 fv3_ccpp_gfs_v16_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/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 @@ -3198,13 +3198,13 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 171.287661 +[0] The total amount of wall time = 173.530690 Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/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 @@ -3219,13 +3219,13 @@ Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 318.196985 +[0] The total amount of wall time = 317.455085 Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfsv16_ugwpv1_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3284,13 +3284,13 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 197.904845 +[0] The total amount of wall time = 197.918400 Test 057 fv3_ccpp_gfsv16_ugwpv1 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3349,13 +3349,13 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 196.599812 +[0] The total amount of wall time = 197.401325 Test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v15p2_debug_prod Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3420,13 +3420,13 @@ Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 260.046366 +[0] The total amount of wall time = 260.548556 Test 059 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_debug_prod Checking test 060 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3491,13 +3491,13 @@ Checking test 060 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 203.376742 +[0] The total amount of wall time = 203.248959 Test 060 fv3_ccpp_gfs_v16_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3562,13 +3562,13 @@ Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 407.202324 +[0] The total amount of wall time = 410.527748 Test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3633,13 +3633,13 @@ Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 414.149472 +[0] The total amount of wall time = 416.985777 Test 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_regional_control_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_regional_control_debug_prod Checking test 063 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3647,13 +3647,13 @@ Checking test 063 fv3_ccpp_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 394.794749 +[0] The total amount of wall time = 396.967541 Test 063 fv3_ccpp_regional_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_control_debug_prod Checking test 064 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3680,13 +3680,13 @@ Checking test 064 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -[0] The total amount of wall time = 158.138834 +[0] The total amount of wall time = 158.947916 Test 064 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_stretched_nest_debug_prod Checking test 065 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3703,13 +3703,13 @@ Checking test 065 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -[0] The total amount of wall time = 467.766644 +[0] The total amount of wall time = 469.286389 Test 065 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gsd_debug_prod Checking test 066 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3774,13 +3774,13 @@ Checking test 066 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 233.344109 +[0] The total amount of wall time = 233.573521 Test 066 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gsd_diag3d_debug_prod Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3845,13 +3845,13 @@ Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 304.991808 +[0] The total amount of wall time = 307.798202 Test 067 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_thompson_debug_prod Checking test 068 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3916,13 +3916,13 @@ Checking test 068 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 388.200563 +[0] The total amount of wall time = 389.542056 Test 068 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_thompson_no_aero_debug_prod Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3987,13 +3987,13 @@ Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 374.688073 +[0] The total amount of wall time = 375.403940 Test 069 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4058,13 +4058,13 @@ Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 225.459825 +[0] The total amount of wall time = 226.258341 Test 070 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4129,13 +4129,13 @@ Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 236.778768 +[0] The total amount of wall time = 237.111319 Test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4150,13 +4150,13 @@ Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 428.280328 +[0] The total amount of wall time = 429.285809 Test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/fv3_ccpp_gfsv16_ugwpv1_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4215,13 +4215,13 @@ Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 645.897802 +[0] The total amount of wall time = 645.867642 Test 073 fv3_ccpp_gfsv16_ugwpv1_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_control_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_control_prod Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4271,13 +4271,13 @@ Checking test 074 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 106.376889 +[0] The total amount of wall time = 109.719107 Test 074 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restart_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_prod Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4327,13 +4327,13 @@ Checking test 075 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 71.007514 +[0] The total amount of wall time = 70.051137 Test 075 cpld_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_controlfrac_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_controlfrac_prod Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4383,13 +4383,13 @@ Checking test 076 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 106.144153 +[0] The total amount of wall time = 109.284327 Test 076 cpld_controlfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restartfrac_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restartfrac_prod Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4439,13 +4439,13 @@ Checking test 077 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 70.496763 +[0] The total amount of wall time = 69.098664 Test 077 cpld_restartfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_2threads_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_2threads_prod Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4495,13 +4495,13 @@ Checking test 078 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 107.568548 +[0] The total amount of wall time = 98.525705 Test 078 cpld_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_decomp_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_decomp_prod Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4551,13 +4551,13 @@ Checking test 079 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 103.285219 +[0] The total amount of wall time = 106.535856 Test 079 cpld_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_satmedmf_prod Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4607,13 +4607,13 @@ Checking test 080 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 104.174045 +[0] The total amount of wall time = 104.276542 Test 080 cpld_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_ca_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_ca_prod Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4663,13 +4663,13 @@ Checking test 081 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 104.591809 +[0] The total amount of wall time = 105.530333 Test 081 cpld_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_control_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_control_c192_prod Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4719,13 +4719,13 @@ Checking test 082 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 417.484407 +[0] The total amount of wall time = 428.275145 Test 082 cpld_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restart_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_c192_prod Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4775,13 +4775,13 @@ Checking test 083 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 324.520321 +[0] The total amount of wall time = 323.332241 Test 083 cpld_restart_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_controlfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_controlfrac_c192_prod Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4831,13 +4831,13 @@ Checking test 084 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 418.727820 +[0] The total amount of wall time = 424.905236 Test 084 cpld_controlfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restartfrac_c192_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restartfrac_c192_prod Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4887,13 +4887,13 @@ Checking test 085 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 318.817666 +[0] The total amount of wall time = 320.351215 Test 085 cpld_restartfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_control_c384_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_control_c384_prod Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4946,13 +4946,13 @@ Checking test 086 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 1469.456811 +[0] The total amount of wall time = 1486.372821 Test 086 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restart_c384_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_c384_prod Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5005,13 +5005,13 @@ Checking test 087 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 806.113549 +[0] The total amount of wall time = 813.507268 Test 087 cpld_restart_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_controlfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_controlfrac_c384_prod Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5064,13 +5064,13 @@ Checking test 088 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 1467.200452 +[0] The total amount of wall time = 1482.076509 Test 088 cpld_controlfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restartfrac_c384_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restartfrac_c384_prod Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5123,13 +5123,13 @@ Checking test 089 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 801.778681 +[0] The total amount of wall time = 813.606606 Test 089 cpld_restartfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_bmark_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmark_prod Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5182,13 +5182,13 @@ Checking test 090 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 901.607224 +[0] The total amount of wall time = 909.086334 Test 090 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restart_bmark_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_bmark_prod Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5241,13 +5241,13 @@ Checking test 091 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 530.210969 +[0] The total amount of wall time = 539.380482 Test 091 cpld_restart_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_bmarkfrac_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmarkfrac_prod Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5300,13 +5300,13 @@ Checking test 092 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 888.724820 +[0] The total amount of wall time = 898.631878 Test 092 cpld_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restart_bmarkfrac_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_bmarkfrac_prod Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5359,13 +5359,13 @@ Checking test 093 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 521.627636 +[0] The total amount of wall time = 544.158349 Test 093 cpld_restart_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmarkfrac_v16_prod Checking test 094 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5418,13 +5418,13 @@ Checking test 094 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -[0] The total amount of wall time = 1527.276196 +[0] The total amount of wall time = 1563.309967 Test 094 cpld_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_restart_bmarkfrac_v16_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_bmarkfrac_v16_prod Checking test 095 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5477,13 +5477,13 @@ Checking test 095 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -[0] The total amount of wall time = 882.236497 +[0] The total amount of wall time = 909.566357 Test 095 cpld_restart_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_bmark_wave_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmark_wave_prod Checking test 096 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5539,13 +5539,13 @@ Checking test 096 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 1606.829266 +[0] The total amount of wall time = 1555.677848 Test 096 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_bmarkfrac_wave_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmarkfrac_wave_prod Checking test 097 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5601,13 +5601,13 @@ Checking test 097 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 1577.320108 +[0] The total amount of wall time = 1595.340933 Test 097 cpld_bmarkfrac_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_bmarkfrac_wave_v16_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmarkfrac_wave_v16_prod Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5662,13 +5662,13 @@ Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 1104.927129 +[0] The total amount of wall time = 1080.328155 Test 098 cpld_bmarkfrac_wave_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_control_wave_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_control_wave_prod Checking test 099 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5721,13 +5721,13 @@ Checking test 099 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -[0] The total amount of wall time = 868.369261 +[0] The total amount of wall time = 869.599664 Test 099 cpld_control_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_debug_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_debug_prod Checking test 100 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5777,13 +5777,13 @@ Checking test 100 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -[0] The total amount of wall time = 332.636249 +[0] The total amount of wall time = 334.866020 Test 100 cpld_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/cpld_debugfrac_prod +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_debugfrac_prod Checking test 101 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5833,73 +5833,73 @@ Checking test 101 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -[0] The total amount of wall time = 332.449237 +[0] The total amount of wall time = 333.134213 Test 101 cpld_debugfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_control_cfsr Checking test 102 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 -[0] The total amount of wall time = 107.810142 +[0] The total amount of wall time = 114.676823 Test 102 datm_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/datm_restart_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_restart_cfsr Checking test 103 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 -[0] The total amount of wall time = 79.102085 +[0] The total amount of wall time = 79.119218 Test 103 datm_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_control_gefs Checking test 104 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 -[0] The total amount of wall time = 100.759890 +[0] The total amount of wall time = 105.406199 Test 104 datm_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_bulk_cfsr Checking test 105 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 -[0] The total amount of wall time = 105.069929 +[0] The total amount of wall time = 109.256390 Test 105 datm_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_bulk_gefs Checking test 106 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 -[0] The total amount of wall time = 101.419578 +[0] The total amount of wall time = 107.763318 Test 106 datm_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_mx025_cfsr Checking test 107 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5908,13 +5908,13 @@ Checking test 107 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 413.682238 +[0] The total amount of wall time = 409.787142 Test 107 datm_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_mx025_gefs Checking test 108 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5923,23 +5923,23 @@ Checking test 108 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 402.509427 +[0] The total amount of wall time = 407.007046 Test 108 datm_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Jiande.Wang/FV3_RT/rt_66710/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_debug_cfsr Checking test 109 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 -[0] The total amount of wall time = 313.071842 +[0] The total amount of wall time = 315.039480 Test 109 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 11 23:25:17 EST 2021 -Elapsed time: 03h:10m:36s. Have a nice day! +Mon Mar 15 19:23:17 UTC 2021 +Elapsed time: 04h:13m:43s. Have a nice day! From 694e139a2cdc842407726b66df5775892f888018 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 17 Mar 2021 21:10:55 -0600 Subject: [PATCH 083/109] Final step to remove IPD (remove _ccpp labels from regression tests), RAS updates and regression tests (#448) * Remove _ccpp labels from regression tests * Replace rasmgshoc test with GFSv15p2+ras test, add debug test, add to rt.conf and rt_gnu.conf * Rename regression tests in tests/rt_gnu.conf * Replace v15p2+RAS regression tests with GFSv16+RAS tests * Update regression test config files: change GFSv15p2+RAS to GFsv16+RAS * Update regression test baseline date tag in tests/rt.sh * Bugfixes in tests/tests/fv3_regional_quilt and tests/tests/fv3_regional_quilt_hafs * Add REPRO=Y to compile line for multigases test * Regression test logs for cheyenne, hera, gaea, jet * Revert change to .gitmodules and update submodule pointer for fv3atm; run-ci --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 574 +++++--- tests/RegressionTests_cheyenne.intel.log | 1184 +++++++++------- tests/RegressionTests_gaea.intel.log | 1148 ++++++++------- tests/RegressionTests_hera.gnu.log | 574 +++++--- tests/RegressionTests_hera.intel.log | 1248 +++++++++-------- tests/RegressionTests_jet.intel.log | 820 ++++++----- tests/default_vars.sh | 1 + ...v0_hwrf_run.IN => c96_HAFS_v0_hwrf_run.IN} | 0 tests/fv3_conf/ccpp_cpt_run.IN | 20 - tests/fv3_conf/ccpp_csawmg3shoc127_run.IN | 20 - tests/fv3_conf/ccpp_csawmg_run.IN | 50 - tests/fv3_conf/ccpp_csawmgshoc_run.IN | 31 - tests/fv3_conf/ccpp_gfdlmp_run.IN | 49 - tests/fv3_conf/ccpp_gfs_v15_run.IN | 23 - tests/fv3_conf/ccpp_gfs_v16_run.IN | 25 - tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN | 32 - tests/fv3_conf/ccpp_multigases_run.IN | 32 - tests/fv3_conf/ccpp_regional_c786_run.IN | 25 - tests/fv3_conf/ccpp_satmedmf_run.IN | 46 - .../{ccpp_control_run.IN => control_run.IN} | 24 +- tests/fv3_conf/cpt_run.IN | 1 + tests/fv3_conf/csawmg3shoc127_run.IN | 23 +- tests/fv3_conf/csawmg_run.IN | 2 + tests/fv3_conf/csawmgshoc_run.IN | 32 +- ...v0_hwrf_run.IN => esg_HAFS_v0_hwrf_run.IN} | 0 ..._gf_thompson_run.IN => gf_thompson_run.IN} | 0 tests/fv3_conf/gfdlmp_run.IN | 10 +- tests/fv3_conf/gfs_v15_run.IN | 4 + ..._v16_flake_run.IN => gfs_v16_flake_run.IN} | 0 tests/fv3_conf/gfs_v16_run.IN | 18 +- ...un_c192L127.IN => gfs_v16_run_c192L127.IN} | 2 +- ...v16_ugwpv1_run.IN => gfsv16_ugwpv1_run.IN} | 0 tests/fv3_conf/{ccpp_gocart.IN => gocart.IN} | 0 .../fv3_conf/{ccpp_gsd_run.IN => gsd_run.IN} | 2 +- .../{ccpp_gsd_sar_run.IN => gsd_sar_run.IN} | 0 tests/fv3_conf/rasmgshoc_run.IN | 20 - tests/fv3_conf/regional_c786_run.IN | 25 + .../{ccpp_regional_run.IN => regional_run.IN} | 14 +- tests/fv3_conf/satmedmf_run.IN | 4 +- ...ccpp_stretched_run.IN => stretched_run.IN} | 0 ...v0_hwrf.nml.IN => c96_HAFS_v0_hwrf.nml.IN} | 0 tests/parm/{ccpp_ca.nml.IN => ca.nml.IN} | 0 tests/parm/ccpp_cpt.nml.IN | 355 ----- tests/parm/ccpp_csawmg.nml.IN | 305 ---- tests/parm/ccpp_csawmg3shoc127.nml.IN | 305 ---- tests/parm/ccpp_csawmgshoc.nml.IN | 304 ---- tests/parm/ccpp_input_nest02.nml.IN | 292 ---- .../{ccpp_control.nml.IN => control.nml.IN} | 0 tests/parm/cpt.nml.IN | 3 + tests/parm/csawmg.nml.IN | 5 +- tests/parm/csawmg3shoc127.nml.IN | 7 +- tests/parm/csawmgshoc.nml.IN | 5 +- ...IN => esg_HAFS_v0_hwrf-model_configure.IN} | 0 ...v0_hwrf.nml.IN => esg_HAFS_v0_hwrf.nml.IN} | 0 .../{ccpp_gfdlmp.nml.IN => gfdlmp.nml.IN} | 0 ...v16_csawmg.nml.IN => gfsv16_csawmg.nml.IN} | 0 .../{ccpp.gocart.nml.IN => gocart.nml.IN} | 0 tests/parm/{ccpp_gsd.nml.IN => gsd.nml.IN} | 0 ...pp_gsd_rrtmgp.nml.IN => gsd_rrtmgp.nml.IN} | 0 ...onfigure.IN => gsd_sar-model_configure.IN} | 0 .../{ccpp_gsd_sar.nml.IN => gsd_sar.nml.IN} | 0 tests/parm/input_nest02.nml.IN | 3 +- tests/parm/{ccpp_lndp.nml.IN => lndp.nml.IN} | 0 ..._multi_gases.nml.IN => multi_gases.nml.IN} | 0 .../{ccpp_regional.nml.IN => regional.nml.IN} | 0 ...ional_c768.nml.IN => regional_c768.nml.IN} | 0 ...ed-input.nml.IN => stretched-input.nml.IN} | 0 ...put.nml.IN => stretched-nest-input.nml.IN} | 0 ...ccpp_v15p2_c96.nml.IN => v15p2_c96.nml.IN} | 11 +- ..._rrtmgp.nml.IN => v15p2_c96_rrtmgp.nml.IN} | 0 ...tmgp.nml.IN => v16_c192L127_rrtmgp.nml.IN} | 0 .../{ccpp_v16_c96.nml.IN => v16_c96.nml.IN} | 7 +- ...96_rrtmgp.nml.IN => v16_c96_rrtmgp.nml.IN} | 0 ...96_ugwpv1.nml.IN => v16_c96_ugwpv1.nml.IN} | 0 ..._flake_c96.nml.IN => v16_flake_c96.nml.IN} | 0 tests/rt.conf | 254 ++-- tests/rt.sh | 8 +- tests/rt_gnu.conf | 78 +- .../tests/{fv3_ccpp_2threads => fv3_2threads} | 4 +- ...fv3_ccpp_HAFS_v0_hwrf => fv3_HAFS_v0_hwrf} | 4 +- ...S_v0_hwrf_debug => fv3_HAFS_v0_hwrf_debug} | 4 +- ...wrf_thompson => fv3_HAFS_v0_hwrf_thompson} | 4 +- ..._debug => fv3_HAFS_v0_hwrf_thompson_debug} | 4 +- .../tests/{fv3_ccpp_appbuild => fv3_appbuild} | 4 +- tests/tests/{fv3_ccpp_ca => fv3_ca} | 4 +- tests/tests/{fv3_ccpp_control => fv3_control} | 4 +- ...3_ccpp_control_32bit => fv3_control_32bit} | 4 +- ...3_ccpp_control_debug => fv3_control_debug} | 4 +- tests/tests/{fv3_ccpp_cpt => fv3_cpt} | 4 +- tests/tests/{fv3_ccpp_csawmg => fv3_csawmg} | 4 +- ...ccpp_csawmg3shoc127 => fv3_csawmg3shoc127} | 4 +- .../{fv3_ccpp_csawmgshoc => fv3_csawmgshoc} | 4 +- tests/tests/{fv3_ccpp_decomp => fv3_decomp} | 4 +- ...thompson => fv3_esg_HAFS_v0_hwrf_thompson} | 6 +- ...ug => fv3_esg_HAFS_v0_hwrf_thompson_debug} | 6 +- tests/tests/{fv3_ccpp_gf => fv3_gf} | 4 +- .../{fv3_ccpp_gf_thompson => fv3_gf_thompson} | 4 +- tests/tests/{fv3_ccpp_gfdlmp => fv3_gfdlmp} | 4 +- ...fv3_ccpp_gfdlmp_32bit => fv3_gfdlmp_32bit} | 4 +- .../{fv3_ccpp_gfdlmprad => fv3_gfdlmprad} | 4 +- ...ad_32bit_post => fv3_gfdlmprad_32bit_post} | 4 +- ..._gfdlmprad_atmwav => fv3_gfdlmprad_atmwav} | 4 +- ...3_ccpp_gfdlmprad_gwd => fv3_gfdlmprad_gwd} | 4 +- ..._gfdlmprad_noahmp => fv3_gfdlmprad_noahmp} | 4 +- tests/tests/{fv3_ccpp_gfs_myj => fv3_gfs_myj} | 4 +- .../{fv3_ccpp_gfs_v15p2 => fv3_gfs_v15p2} | 4 +- ..._gfs_v15p2_RRTMGP => fv3_gfs_v15p2_RRTMGP} | 4 +- ...RTMGP_debug => fv3_gfs_v15p2_RRTMGP_debug} | 4 +- ...pp_gfs_v15p2_debug => fv3_gfs_v15p2_debug} | 4 +- tests/tests/{fv3_ccpp_gfs_v16 => fv3_gfs_v16} | 4 +- ...ccpp_gfs_v16_RRTMGP => fv3_gfs_v16_RRTMGP} | 4 +- ..._RRTMGP_2thrd => fv3_gfs_v16_RRTMGP_2thrd} | 4 +- ...P_c192L127 => fv3_gfs_v16_RRTMGP_c192L127} | 4 +- ..._RRTMGP_debug => fv3_gfs_v16_RRTMGP_debug} | 4 +- ...3_ccpp_gfs_v16_debug => fv3_gfs_v16_debug} | 4 +- ...3_ccpp_gfs_v16_flake => fv3_gfs_v16_flake} | 4 +- tests/tests/fv3_gfs_v16_ras | 87 ++ tests/tests/fv3_gfs_v16_ras_debug | 89 ++ ...pp_gfs_v16_restart => fv3_gfs_v16_restart} | 4 +- ...ccpp_gfs_v16_stochy => fv3_gfs_v16_stochy} | 4 +- ...3_ccpp_gfsv16_csawmg => fv3_gfsv16_csawmg} | 4 +- ...ccpp_gfsv16_csawmgt => fv3_gfsv16_csawmgt} | 4 +- ...3_ccpp_gfsv16_ugwpv1 => fv3_gfsv16_ugwpv1} | 15 +- ...6_ugwpv1_debug => fv3_gfsv16_ugwpv1_debug} | 15 +- ..._warmstart => fv3_gfsv16_ugwpv1_warmstart} | 16 +- .../{fv3_ccpp_gocart_clm => fv3_gocart_clm} | 4 +- tests/tests/{fv3_ccpp_gsd => fv3_gsd} | 4 +- .../{fv3_ccpp_gsd_RRTMGP => fv3_gsd_RRTMGP} | 4 +- ..._gsd_RRTMGP_debug => fv3_gsd_RRTMGP_debug} | 4 +- ...3_ccpp_gsd_coldstart => fv3_gsd_coldstart} | 4 +- .../{fv3_ccpp_gsd_debug => fv3_gsd_debug} | 4 +- ..._gsd_diag3d_debug => fv3_gsd_diag3d_debug} | 4 +- ...ccpp_gsd_drag_suite => fv3_gsd_drag_suite} | 4 +- ...d_ugwp => fv3_gsd_drag_suite_unified_ugwp} | 4 +- .../tests/{fv3_ccpp_gsd_lndp => fv3_gsd_lndp} | 4 +- .../{fv3_ccpp_gsd_mynnsfc => fv3_gsd_mynnsfc} | 4 +- ...sd_mynnsfc_debug => fv3_gsd_mynnsfc_debug} | 4 +- .../tests/{fv3_ccpp_gsd_noah => fv3_gsd_noah} | 4 +- ...3_ccpp_gsd_noah_lndp => fv3_gsd_noah_lndp} | 4 +- ..._gsd_noah_mynnsfc => fv3_gsd_noah_mynnsfc} | 4 +- ...nnsfc_debug => fv3_gsd_noah_mynnsfc_debug} | 4 +- tests/tests/{fv3_ccpp_gsd_sar => fv3_gsd_sar} | 6 +- ...3_ccpp_gsd_sar_debug => fv3_gsd_sar_debug} | 6 +- ..._gsd_unified_ugwp => fv3_gsd_unified_ugwp} | 4 +- ...3_ccpp_gsd_warmstart => fv3_gsd_warmstart} | 4 +- tests/tests/{fv3_ccpp_h2ophys => fv3_h2ophys} | 4 +- tests/tests/{fv3_ccpp_hrrr => fv3_hrrr} | 4 +- tests/tests/{fv3_ccpp_iau => fv3_iau} | 4 +- .../{fv3_ccpp_lheatstrg => fv3_lheatstrg} | 4 +- tests/tests/{fv3_ccpp_lndp => fv3_lndp} | 4 +- .../{fv3_ccpp_multigases => fv3_multigases} | 4 +- tests/tests/{fv3_ccpp_mynn => fv3_mynn} | 4 +- .../tests/{fv3_ccpp_ntiedtke => fv3_ntiedtke} | 4 +- .../{fv3_ccpp_ozphys_2015 => fv3_ozphys_2015} | 4 +- tests/tests/{fv3_ccpp_rap => fv3_rap} | 4 +- tests/tests/fv3_rasmgshoc | 66 - .../tests/{fv3_ccpp_read_inc => fv3_read_inc} | 4 +- ...3_ccpp_regional_c768 => fv3_regional_c768} | 6 +- ..._regional_control => fv3_regional_control} | 4 +- ...ntrol_debug => fv3_regional_control_debug} | 4 +- ...ccpp_regional_quilt => fv3_regional_quilt} | 4 +- ...nal_quilt_hafs => fv3_regional_quilt_hafs} | 4 +- ...lel => fv3_regional_quilt_netcdf_parallel} | 4 +- ..._regional_restart => fv3_regional_restart} | 4 +- tests/tests/{fv3_ccpp_restart => fv3_restart} | 4 +- .../{fv3_ccpp_rrfs_v1beta => fv3_rrfs_v1beta} | 4 +- ...rfs_v1beta_debug => fv3_rrfs_v1beta_debug} | 4 +- tests/tests/{fv3_ccpp_sas => fv3_sas} | 4 +- .../tests/{fv3_ccpp_satmedmf => fv3_satmedmf} | 4 +- .../{fv3_ccpp_satmedmfq => fv3_satmedmfq} | 4 +- .../tests/{fv3_ccpp_shinhong => fv3_shinhong} | 4 +- tests/tests/{fv3_ccpp_stochy => fv3_stochy} | 4 +- .../{fv3_ccpp_stretched => fv3_stretched} | 4 +- ...ccpp_stretched_nest => fv3_stretched_nest} | 6 +- ...ed_nest_debug => fv3_stretched_nest_debug} | 6 +- ...ed_nest_quilt => fv3_stretched_nest_quilt} | 6 +- .../tests/{fv3_ccpp_thompson => fv3_thompson} | 4 +- ...ccpp_thompson_debug => fv3_thompson_debug} | 4 +- ...3_ccpp_thompson_mynn => fv3_thompson_mynn} | 4 +- ..._thompson_no_aero => fv3_thompson_no_aero} | 4 +- ..._aero_debug => fv3_thompson_no_aero_debug} | 4 +- ...pp_wrtGauss_nemsio => fv3_wrtGauss_nemsio} | 4 +- ...s_nemsio_c192 => fv3_wrtGauss_nemsio_c192} | 4 +- ...s_nemsio_c768 => fv3_wrtGauss_nemsio_c768} | 4 +- ...pp_wrtGauss_netcdf => fv3_wrtGauss_netcdf} | 4 +- ...s_netcdf_esmf => fv3_wrtGauss_netcdf_esmf} | 4 +- ..._parallel => fv3_wrtGauss_netcdf_parallel} | 4 +- ...rtGlatlon_netcdf => fv3_wrtGlatlon_netcdf} | 4 +- tests/tests/{fv3_ccpp_ysu => fv3_ysu} | 4 +- 190 files changed, 3906 insertions(+), 4845 deletions(-) rename tests/fv3_conf/{ccpp_c96_HAFS_v0_hwrf_run.IN => c96_HAFS_v0_hwrf_run.IN} (100%) delete mode 100644 tests/fv3_conf/ccpp_cpt_run.IN delete mode 100644 tests/fv3_conf/ccpp_csawmg3shoc127_run.IN delete mode 100644 tests/fv3_conf/ccpp_csawmg_run.IN delete mode 100644 tests/fv3_conf/ccpp_csawmgshoc_run.IN delete mode 100644 tests/fv3_conf/ccpp_gfdlmp_run.IN delete mode 100644 tests/fv3_conf/ccpp_gfs_v15_run.IN delete mode 100644 tests/fv3_conf/ccpp_gfs_v16_run.IN delete mode 100644 tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN delete mode 100644 tests/fv3_conf/ccpp_multigases_run.IN delete mode 100644 tests/fv3_conf/ccpp_regional_c786_run.IN delete mode 100644 tests/fv3_conf/ccpp_satmedmf_run.IN rename tests/fv3_conf/{ccpp_control_run.IN => control_run.IN} (70%) rename tests/fv3_conf/{ccpp_esg_HAFS_v0_hwrf_run.IN => esg_HAFS_v0_hwrf_run.IN} (100%) rename tests/fv3_conf/{ccpp_gf_thompson_run.IN => gf_thompson_run.IN} (100%) rename tests/fv3_conf/{ccpp_gfs_v16_flake_run.IN => gfs_v16_flake_run.IN} (100%) rename tests/fv3_conf/{ccpp_gfs_v16_run_c192L127.IN => gfs_v16_run_c192L127.IN} (93%) rename tests/fv3_conf/{ccpp_gfsv16_ugwpv1_run.IN => gfsv16_ugwpv1_run.IN} (100%) rename tests/fv3_conf/{ccpp_gocart.IN => gocart.IN} (100%) rename tests/fv3_conf/{ccpp_gsd_run.IN => gsd_run.IN} (98%) rename tests/fv3_conf/{ccpp_gsd_sar_run.IN => gsd_sar_run.IN} (100%) delete mode 100644 tests/fv3_conf/rasmgshoc_run.IN create mode 100644 tests/fv3_conf/regional_c786_run.IN rename tests/fv3_conf/{ccpp_regional_run.IN => regional_run.IN} (65%) rename tests/fv3_conf/{ccpp_stretched_run.IN => stretched_run.IN} (100%) rename tests/parm/{ccpp_c96_HAFS_v0_hwrf.nml.IN => c96_HAFS_v0_hwrf.nml.IN} (100%) rename tests/parm/{ccpp_ca.nml.IN => ca.nml.IN} (100%) delete mode 100644 tests/parm/ccpp_cpt.nml.IN delete mode 100644 tests/parm/ccpp_csawmg.nml.IN delete mode 100644 tests/parm/ccpp_csawmg3shoc127.nml.IN delete mode 100644 tests/parm/ccpp_csawmgshoc.nml.IN delete mode 100644 tests/parm/ccpp_input_nest02.nml.IN rename tests/parm/{ccpp_control.nml.IN => control.nml.IN} (100%) rename tests/parm/{ccpp_esg_HAFS_v0_hwrf-model_configure.IN => esg_HAFS_v0_hwrf-model_configure.IN} (100%) rename tests/parm/{ccpp_esg_HAFS_v0_hwrf.nml.IN => esg_HAFS_v0_hwrf.nml.IN} (100%) rename tests/parm/{ccpp_gfdlmp.nml.IN => gfdlmp.nml.IN} (100%) rename tests/parm/{ccpp_gfsv16_csawmg.nml.IN => gfsv16_csawmg.nml.IN} (100%) rename tests/parm/{ccpp.gocart.nml.IN => gocart.nml.IN} (100%) rename tests/parm/{ccpp_gsd.nml.IN => gsd.nml.IN} (100%) rename tests/parm/{ccpp_gsd_rrtmgp.nml.IN => gsd_rrtmgp.nml.IN} (100%) rename tests/parm/{ccpp_gsd_sar-model_configure.IN => gsd_sar-model_configure.IN} (100%) rename tests/parm/{ccpp_gsd_sar.nml.IN => gsd_sar.nml.IN} (100%) rename tests/parm/{ccpp_lndp.nml.IN => lndp.nml.IN} (100%) rename tests/parm/{ccpp_multi_gases.nml.IN => multi_gases.nml.IN} (100%) rename tests/parm/{ccpp_regional.nml.IN => regional.nml.IN} (100%) rename tests/parm/{ccpp_regional_c768.nml.IN => regional_c768.nml.IN} (100%) rename tests/parm/{ccpp_stretched-input.nml.IN => stretched-input.nml.IN} (100%) rename tests/parm/{ccpp_stretched-nest-input.nml.IN => stretched-nest-input.nml.IN} (100%) rename tests/parm/{ccpp_v15p2_c96.nml.IN => v15p2_c96.nml.IN} (97%) rename tests/parm/{ccpp_v15p2_c96_rrtmgp.nml.IN => v15p2_c96_rrtmgp.nml.IN} (100%) rename tests/parm/{ccpp_v16_c192L127_rrtmgp.nml.IN => v16_c192L127_rrtmgp.nml.IN} (100%) rename tests/parm/{ccpp_v16_c96.nml.IN => v16_c96.nml.IN} (98%) rename tests/parm/{ccpp_v16_c96_rrtmgp.nml.IN => v16_c96_rrtmgp.nml.IN} (100%) rename tests/parm/{ccpp_v16_c96_ugwpv1.nml.IN => v16_c96_ugwpv1.nml.IN} (100%) rename tests/parm/{ccpp_v16_flake_c96.nml.IN => v16_flake_c96.nml.IN} (100%) rename tests/tests/{fv3_ccpp_2threads => fv3_2threads} (97%) rename tests/tests/{fv3_ccpp_HAFS_v0_hwrf => fv3_HAFS_v0_hwrf} (97%) rename tests/tests/{fv3_ccpp_HAFS_v0_hwrf_debug => fv3_HAFS_v0_hwrf_debug} (97%) rename tests/tests/{fv3_ccpp_HAFS_v0_hwrf_thompson => fv3_HAFS_v0_hwrf_thompson} (97%) rename tests/tests/{fv3_ccpp_HAFS_v0_hwrf_thompson_debug => fv3_HAFS_v0_hwrf_thompson_debug} (97%) rename tests/tests/{fv3_ccpp_appbuild => fv3_appbuild} (97%) rename tests/tests/{fv3_ccpp_ca => fv3_ca} (97%) rename tests/tests/{fv3_ccpp_control => fv3_control} (97%) rename tests/tests/{fv3_ccpp_control_32bit => fv3_control_32bit} (97%) rename tests/tests/{fv3_ccpp_control_debug => fv3_control_debug} (94%) rename tests/tests/{fv3_ccpp_cpt => fv3_cpt} (97%) rename tests/tests/{fv3_ccpp_csawmg => fv3_csawmg} (97%) rename tests/tests/{fv3_ccpp_csawmg3shoc127 => fv3_csawmg3shoc127} (96%) rename tests/tests/{fv3_ccpp_csawmgshoc => fv3_csawmgshoc} (96%) rename tests/tests/{fv3_ccpp_decomp => fv3_decomp} (97%) rename tests/tests/{fv3_ccpp_esg_HAFS_v0_hwrf_thompson => fv3_esg_HAFS_v0_hwrf_thompson} (90%) rename tests/tests/{fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug => fv3_esg_HAFS_v0_hwrf_thompson_debug} (90%) rename tests/tests/{fv3_ccpp_gf => fv3_gf} (98%) rename tests/tests/{fv3_ccpp_gf_thompson => fv3_gf_thompson} (98%) rename tests/tests/{fv3_ccpp_gfdlmp => fv3_gfdlmp} (97%) rename tests/tests/{fv3_ccpp_gfdlmp_32bit => fv3_gfdlmp_32bit} (97%) rename tests/tests/{fv3_ccpp_gfdlmprad => fv3_gfdlmprad} (97%) rename tests/tests/{fv3_ccpp_gfdlmprad_32bit_post => fv3_gfdlmprad_32bit_post} (97%) rename tests/tests/{fv3_ccpp_gfdlmprad_atmwav => fv3_gfdlmprad_atmwav} (97%) rename tests/tests/{fv3_ccpp_gfdlmprad_gwd => fv3_gfdlmprad_gwd} (97%) rename tests/tests/{fv3_ccpp_gfdlmprad_noahmp => fv3_gfdlmprad_noahmp} (97%) rename tests/tests/{fv3_ccpp_gfs_myj => fv3_gfs_myj} (97%) rename tests/tests/{fv3_ccpp_gfs_v15p2 => fv3_gfs_v15p2} (97%) rename tests/tests/{fv3_ccpp_gfs_v15p2_RRTMGP => fv3_gfs_v15p2_RRTMGP} (97%) rename tests/tests/{fv3_ccpp_gfs_v15p2_RRTMGP_debug => fv3_gfs_v15p2_RRTMGP_debug} (97%) rename tests/tests/{fv3_ccpp_gfs_v15p2_debug => fv3_gfs_v15p2_debug} (97%) rename tests/tests/{fv3_ccpp_gfs_v16 => fv3_gfs_v16} (98%) rename tests/tests/{fv3_ccpp_gfs_v16_RRTMGP => fv3_gfs_v16_RRTMGP} (97%) rename tests/tests/{fv3_ccpp_gfs_v16_RRTMGP_2thrd => fv3_gfs_v16_RRTMGP_2thrd} (97%) rename tests/tests/{fv3_ccpp_gfs_v16_RRTMGP_c192L127 => fv3_gfs_v16_RRTMGP_c192L127} (97%) rename tests/tests/{fv3_ccpp_gfs_v16_RRTMGP_debug => fv3_gfs_v16_RRTMGP_debug} (97%) rename tests/tests/{fv3_ccpp_gfs_v16_debug => fv3_gfs_v16_debug} (97%) rename tests/tests/{fv3_ccpp_gfs_v16_flake => fv3_gfs_v16_flake} (97%) create mode 100644 tests/tests/fv3_gfs_v16_ras create mode 100644 tests/tests/fv3_gfs_v16_ras_debug rename tests/tests/{fv3_ccpp_gfs_v16_restart => fv3_gfs_v16_restart} (97%) rename tests/tests/{fv3_ccpp_gfs_v16_stochy => fv3_gfs_v16_stochy} (97%) rename tests/tests/{fv3_ccpp_gfsv16_csawmg => fv3_gfsv16_csawmg} (96%) rename tests/tests/{fv3_ccpp_gfsv16_csawmgt => fv3_gfsv16_csawmgt} (96%) rename tests/tests/{fv3_ccpp_gfsv16_ugwpv1 => fv3_gfsv16_ugwpv1} (85%) rename tests/tests/{fv3_ccpp_gfsv16_ugwpv1_debug => fv3_gfsv16_ugwpv1_debug} (84%) rename tests/tests/{fv3_ccpp_gfsv16_ugwpv1_warmstart => fv3_gfsv16_ugwpv1_warmstart} (84%) rename tests/tests/{fv3_ccpp_gocart_clm => fv3_gocart_clm} (97%) rename tests/tests/{fv3_ccpp_gsd => fv3_gsd} (98%) rename tests/tests/{fv3_ccpp_gsd_RRTMGP => fv3_gsd_RRTMGP} (98%) rename tests/tests/{fv3_ccpp_gsd_RRTMGP_debug => fv3_gsd_RRTMGP_debug} (97%) rename tests/tests/{fv3_ccpp_gsd_coldstart => fv3_gsd_coldstart} (96%) rename tests/tests/{fv3_ccpp_gsd_debug => fv3_gsd_debug} (98%) rename tests/tests/{fv3_ccpp_gsd_diag3d_debug => fv3_gsd_diag3d_debug} (98%) rename tests/tests/{fv3_ccpp_gsd_drag_suite => fv3_gsd_drag_suite} (98%) rename tests/tests/{fv3_ccpp_gsd_drag_suite_unified_ugwp => fv3_gsd_drag_suite_unified_ugwp} (98%) rename tests/tests/{fv3_ccpp_gsd_lndp => fv3_gsd_lndp} (98%) rename tests/tests/{fv3_ccpp_gsd_mynnsfc => fv3_gsd_mynnsfc} (98%) rename tests/tests/{fv3_ccpp_gsd_mynnsfc_debug => fv3_gsd_mynnsfc_debug} (98%) rename tests/tests/{fv3_ccpp_gsd_noah => fv3_gsd_noah} (98%) rename tests/tests/{fv3_ccpp_gsd_noah_lndp => fv3_gsd_noah_lndp} (98%) rename tests/tests/{fv3_ccpp_gsd_noah_mynnsfc => fv3_gsd_noah_mynnsfc} (98%) rename tests/tests/{fv3_ccpp_gsd_noah_mynnsfc_debug => fv3_gsd_noah_mynnsfc_debug} (98%) rename tests/tests/{fv3_ccpp_gsd_sar => fv3_gsd_sar} (87%) rename tests/tests/{fv3_ccpp_gsd_sar_debug => fv3_gsd_sar_debug} (88%) rename tests/tests/{fv3_ccpp_gsd_unified_ugwp => fv3_gsd_unified_ugwp} (98%) rename tests/tests/{fv3_ccpp_gsd_warmstart => fv3_gsd_warmstart} (98%) rename tests/tests/{fv3_ccpp_h2ophys => fv3_h2ophys} (97%) rename tests/tests/{fv3_ccpp_hrrr => fv3_hrrr} (98%) rename tests/tests/{fv3_ccpp_iau => fv3_iau} (97%) rename tests/tests/{fv3_ccpp_lheatstrg => fv3_lheatstrg} (97%) rename tests/tests/{fv3_ccpp_lndp => fv3_lndp} (97%) rename tests/tests/{fv3_ccpp_multigases => fv3_multigases} (97%) rename tests/tests/{fv3_ccpp_mynn => fv3_mynn} (98%) rename tests/tests/{fv3_ccpp_ntiedtke => fv3_ntiedtke} (97%) rename tests/tests/{fv3_ccpp_ozphys_2015 => fv3_ozphys_2015} (97%) rename tests/tests/{fv3_ccpp_rap => fv3_rap} (98%) delete mode 100644 tests/tests/fv3_rasmgshoc rename tests/tests/{fv3_ccpp_read_inc => fv3_read_inc} (97%) rename tests/tests/{fv3_ccpp_regional_c768 => fv3_regional_c768} (86%) rename tests/tests/{fv3_ccpp_regional_control => fv3_regional_control} (92%) rename tests/tests/{fv3_ccpp_regional_control_debug => fv3_regional_control_debug} (92%) rename tests/tests/{fv3_ccpp_regional_quilt => fv3_regional_quilt} (92%) rename tests/tests/{fv3_ccpp_regional_quilt_hafs => fv3_regional_quilt_hafs} (91%) rename tests/tests/{fv3_ccpp_regional_quilt_netcdf_parallel => fv3_regional_quilt_netcdf_parallel} (92%) rename tests/tests/{fv3_ccpp_regional_restart => fv3_regional_restart} (93%) rename tests/tests/{fv3_ccpp_restart => fv3_restart} (97%) rename tests/tests/{fv3_ccpp_rrfs_v1beta => fv3_rrfs_v1beta} (98%) rename tests/tests/{fv3_ccpp_rrfs_v1beta_debug => fv3_rrfs_v1beta_debug} (98%) rename tests/tests/{fv3_ccpp_sas => fv3_sas} (97%) rename tests/tests/{fv3_ccpp_satmedmf => fv3_satmedmf} (97%) rename tests/tests/{fv3_ccpp_satmedmfq => fv3_satmedmfq} (97%) rename tests/tests/{fv3_ccpp_shinhong => fv3_shinhong} (97%) rename tests/tests/{fv3_ccpp_stochy => fv3_stochy} (97%) rename tests/tests/{fv3_ccpp_stretched => fv3_stretched} (97%) rename tests/tests/{fv3_ccpp_stretched_nest => fv3_stretched_nest} (96%) rename tests/tests/{fv3_ccpp_stretched_nest_debug => fv3_stretched_nest_debug} (91%) rename tests/tests/{fv3_ccpp_stretched_nest_quilt => fv3_stretched_nest_quilt} (96%) rename tests/tests/{fv3_ccpp_thompson => fv3_thompson} (98%) rename tests/tests/{fv3_ccpp_thompson_debug => fv3_thompson_debug} (98%) rename tests/tests/{fv3_ccpp_thompson_mynn => fv3_thompson_mynn} (98%) rename tests/tests/{fv3_ccpp_thompson_no_aero => fv3_thompson_no_aero} (98%) rename tests/tests/{fv3_ccpp_thompson_no_aero_debug => fv3_thompson_no_aero_debug} (98%) rename tests/tests/{fv3_ccpp_wrtGauss_nemsio => fv3_wrtGauss_nemsio} (97%) rename tests/tests/{fv3_ccpp_wrtGauss_nemsio_c192 => fv3_wrtGauss_nemsio_c192} (97%) rename tests/tests/{fv3_ccpp_wrtGauss_nemsio_c768 => fv3_wrtGauss_nemsio_c768} (98%) rename tests/tests/{fv3_ccpp_wrtGauss_netcdf => fv3_wrtGauss_netcdf} (97%) rename tests/tests/{fv3_ccpp_wrtGauss_netcdf_esmf => fv3_wrtGauss_netcdf_esmf} (97%) rename tests/tests/{fv3_ccpp_wrtGauss_netcdf_parallel => fv3_wrtGauss_netcdf_parallel} (97%) rename tests/tests/{fv3_ccpp_wrtGlatlon_netcdf => fv3_wrtGlatlon_netcdf} (97%) rename tests/tests/{fv3_ccpp_ysu => fv3_ysu} (97%) diff --git a/FV3 b/FV3 index 579abd47bb..dbaff1cbfb 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 579abd47bbdff6d33befae5e473d309a764b0da3 +Subproject commit dbaff1cbfb2764f2ffa605d20d3c1a99c44b01fe diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 0a298255a2..fb18913ac9 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,10 +1,10 @@ -Mon Mar 15 14:51:27 MDT 2021 +Wed Mar 17 15:01:40 MDT 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfdlmp_prod -Checking test 001 fv3_ccpp_gfdlmp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfdlmp +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfdlmp +Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -48,14 +48,14 @@ Checking test 001 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 74.402651 +The total amount of wall time = 73.616751 -Test 001 fv3_ccpp_gfdlmp PASS +Test 001 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v15p2_prod -Checking test 002 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2 +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v15p2 +Checking test 002 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -119,14 +119,14 @@ Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 132.929431 +The total amount of wall time = 137.489110 -Test 002 fv3_ccpp_gfs_v15p2 PASS +Test 002 fv3_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_prod -Checking test 003 fv3_ccpp_gfs_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16 +Checking test 003 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -202,14 +202,14 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 185.078405 +The total amount of wall time = 188.023624 -Test 003 fv3_ccpp_gfs_v16 PASS +Test 003 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_restart_prod -Checking test 004 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_restart +Checking test 004 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -255,14 +255,14 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 98.924708 +The total amount of wall time = 96.352609 -Test 004 fv3_ccpp_gfs_v16_restart PASS +Test 004 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_stochy_prod -Checking test 005 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_stochy +Checking test 005 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -326,14 +326,14 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 89.298163 +The total amount of wall time = 87.995187 -Test 005 fv3_ccpp_gfs_v16_stochy PASS +Test 005 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_flake_prod -Checking test 006 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_flake +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_flake +Checking test 006 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -397,14 +397,14 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 143.825747 +The total amount of wall time = 143.045845 -Test 006 fv3_ccpp_gfs_v16_flake PASS +Test 006 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v15p2_RRTMGP +Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -468,14 +468,14 @@ Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 251.902834 +The total amount of wall time = 251.776369 -Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 007 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_RRTMGP +Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -539,14 +539,14 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 257.274978 +The total amount of wall time = 256.904365 -Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 008 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gsd_prod -Checking test 009 fv3_ccpp_gsd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gsd +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gsd +Checking test 009 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -634,14 +634,14 @@ Checking test 009 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 357.526628 +The total amount of wall time = 352.093742 -Test 009 fv3_ccpp_gsd PASS +Test 009 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_thompson_prod -Checking test 010 fv3_ccpp_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_thompson +Checking test 010 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -705,14 +705,14 @@ Checking test 010 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 167.791037 +The total amount of wall time = 166.850767 -Test 010 fv3_ccpp_thompson PASS +Test 010 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_thompson_no_aero_prod -Checking test 011 fv3_ccpp_thompson_no_aero results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_no_aero +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_thompson_no_aero +Checking test 011 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -776,14 +776,14 @@ Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 159.248824 +The total amount of wall time = 157.963503 -Test 011 fv3_ccpp_thompson_no_aero PASS +Test 011 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_rrfs_v1beta_prod -Checking test 012 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_rrfs_v1beta +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_rrfs_v1beta +Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -847,14 +847,14 @@ Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 182.146076 +The total amount of wall time = 181.093884 -Test 012 fv3_ccpp_rrfs_v1beta PASS +Test 012 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_HAFS_v0_hwrf_thompson +Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -918,14 +918,14 @@ Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 244.563424 +The total amount of wall time = 258.319014 -Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 013 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -939,14 +939,14 @@ Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 444.904050 +The total amount of wall time = 446.279773 -Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfsv16_ugwpv1 +Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1004,14 +1004,14 @@ Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 301.645268 +The total amount of wall time = 299.376887 -Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS +Test 015 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfsv16_ugwpv1_warmstart +Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1069,14 +1069,85 @@ Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 305.020664 +The total amount of wall time = 303.457903 -Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 016 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_control_debug_prod -Checking test 017 fv3_ccpp_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_ras +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_ras +Checking test 017 fv3_gfs_v16_ras 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 ............SKIP for gnu compilers + 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 + +The total amount of wall time = 167.499220 + +Test 017 fv3_gfs_v16_ras PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_control_debug +Checking test 018 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1102,14 +1173,28 @@ Checking test 017 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 77.388080 +The total amount of wall time = 76.607637 + +Test 018 fv3_control_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_regional_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_regional_control_debug +Checking test 019 fv3_regional_control_debug 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 + +The total amount of wall time = 188.760185 -Test 017 fv3_ccpp_control_debug PASS +Test 019 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_rrfs_v1beta_debug +Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1122,24 +1207,24 @@ Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1173,14 +1258,14 @@ Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 134.497309 +The total amount of wall time = 110.901097 -Test 018 fv3_ccpp_gfs_v15p2_debug PASS +Test 020 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_debug_prod -Checking test 019 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gsd_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gsd_debug +Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1193,24 +1278,24 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1244,14 +1329,14 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 98.065764 +The total amount of wall time = 116.633345 -Test 019 fv3_ccpp_gfs_v16_debug PASS +Test 021 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_thompson_debug +Checking test 022 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1315,14 +1400,14 @@ Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 193.482167 +The total amount of wall time = 185.570727 -Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 022 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_no_aero_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_thompson_no_aero_debug +Checking test 023 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1386,14 +1471,14 @@ Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 195.041792 +The total amount of wall time = 179.866162 -Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 023 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_multigases_prod -Checking test 022 fv3_ccpp_multigases results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v15p2_debug +Checking test 024 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1456,35 +1541,15 @@ Checking test 022 fv3_ccpp_multigases results .... 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 -The total amount of wall time = 177.886693 +The total amount of wall time = 134.004125 -Test 022 fv3_ccpp_multigases PASS +Test 024 fv3_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_regional_control_debug_prod -Checking test 023 fv3_ccpp_regional_control_debug 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 - -The total amount of wall time = 188.380657 - -Test 023 fv3_ccpp_regional_control_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_debug +Checking test 025 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1497,24 +1562,24 @@ Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 ............SKIP for gnu compilers Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1548,14 +1613,14 @@ Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 113.011953 +The total amount of wall time = 97.658277 -Test 024 fv3_ccpp_rrfs_v1beta_debug PASS +Test 025 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gsd_debug_prod -Checking test 025 fv3_ccpp_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_RRTMGP_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v15p2_RRTMGP_debug +Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1568,24 +1633,24 @@ Checking test 025 fv3_ccpp_gsd_debug results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 ............SKIP for gnu compilers Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1619,14 +1684,14 @@ Checking test 025 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 118.064604 +The total amount of wall time = 196.654978 -Test 025 fv3_ccpp_gsd_debug PASS +Test 026 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_thompson_debug_prod -Checking test 026 fv3_ccpp_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_RRTMGP_debug +Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1690,14 +1755,14 @@ Checking test 026 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 185.973158 +The total amount of wall time = 199.520481 -Test 026 fv3_ccpp_thompson_debug PASS +Test 027 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_multigases +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_multigases +Checking test 028 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1760,15 +1825,21 @@ Checking test 027 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 + 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 -The total amount of wall time = 183.491656 +The total amount of wall time = 176.551824 -Test 027 fv3_ccpp_thompson_no_aero_debug PASS +Test 028 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1832,14 +1903,14 @@ Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 113.668444 +The total amount of wall time = 113.111862 -Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 029 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -1853,14 +1924,14 @@ Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 214.472761 +The total amount of wall time = 215.358006 -Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfsv16_ugwpv1_debug +Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1918,11 +1989,82 @@ Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 301.664569 +The total amount of wall time = 308.982518 + +Test 031 fv3_gfsv16_ugwpv1_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_ras_debug +Checking test 032 fv3_gfs_v16_ras_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 ............SKIP for gnu compilers + 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 + +The total amount of wall time = 172.077223 -Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 032 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 15 15:08:50 MDT 2021 -Elapsed time: 00h:17m:23s. Have a nice day! +Wed Mar 17 15:22:05 MDT 2021 +Elapsed time: 00h:20m:25s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index b6fe967144..889cd4d3ee 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,10 +1,10 @@ -Mon Mar 15 15:13:41 MDT 2021 +Wed Mar 17 15:00:15 MDT 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_control +Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -68,14 +68,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.445367 +The total amount of wall time = 47.977801 -Test 001 fv3_ccpp_control PASS +Test 001 fv3_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_decomp +Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -139,14 +139,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.992650 +The total amount of wall time = 48.404157 -Test 002 fv3_ccpp_decomp PASS +Test 002 fv3_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_2threads +Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -210,14 +210,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 107.487710 +The total amount of wall time = 107.164876 -Test 003 fv3_ccpp_2threads PASS +Test 003 fv3_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_restart +Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -263,14 +263,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 23.733939 +The total amount of wall time = 22.442370 -Test 004 fv3_ccpp_restart PASS +Test 004 fv3_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_read_inc +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_read_inc +Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -334,14 +334,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.127170 +The total amount of wall time = 47.585103 -Test 005 fv3_ccpp_read_inc PASS +Test 005 fv3_read_inc PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGauss_netcdf_esmf +Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -385,14 +385,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 129.408014 +The total amount of wall time = 123.916570 -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS +Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGauss_netcdf +Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -436,14 +436,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.972747 +The total amount of wall time = 45.465214 -Test 007 fv3_ccpp_wrtGauss_netcdf PASS +Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGauss_netcdf_parallel +Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -452,8 +452,8 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf000.nc .........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,14 +487,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.382240 +The total amount of wall time = 47.184444 -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS +Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGlatlon_netcdf +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGlatlon_netcdf +Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -538,14 +538,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.881769 +The total amount of wall time = 46.662453 -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS +Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGauss_nemsio +Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -589,14 +589,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.590770 +The total amount of wall time = 46.507193 -Test 010 fv3_ccpp_wrtGauss_nemsio PASS +Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGauss_nemsio_c192 +Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -640,14 +640,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 123.939269 +The total amount of wall time = 122.393899 -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS +Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_stochy +Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -711,14 +711,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.687053 +The total amount of wall time = 55.603605 -Test 012 fv3_ccpp_stochy PASS +Test 012 fv3_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_ca +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_ca +Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -782,14 +782,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 29.662515 +The total amount of wall time = 29.020025 -Test 013 fv3_ccpp_ca PASS +Test 013 fv3_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lndp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_lndp +Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -853,14 +853,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.200055 +The total amount of wall time = 50.850419 -Test 014 fv3_ccpp_lndp PASS +Test 014 fv3_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_iau +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_iau +Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -924,14 +924,14 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.913407 +The total amount of wall time = 46.657869 -Test 015 fv3_ccpp_iau PASS +Test 015 fv3_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lheatstrg +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_lheatstrg +Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -975,14 +975,14 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.610248 +The total amount of wall time = 46.329600 -Test 016 fv3_ccpp_lheatstrg PASS +Test 016 fv3_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_multigases_prod -Checking test 017 fv3_ccpp_multigases results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_multigases_repro +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_multigases_repro +Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1052,14 +1052,14 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 100.030948 +The total amount of wall time = 109.322209 -Test 017 fv3_ccpp_multigases PASS +Test 017 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_control_32bit_prod -Checking test 018 fv3_ccpp_control_32bit results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_32bit +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_control_32bit +Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1123,14 +1123,14 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 39.798607 +The total amount of wall time = 40.080135 -Test 018 fv3_ccpp_control_32bit PASS +Test 018 fv3_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_stretched_prod -Checking test 019 fv3_ccpp_stretched results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_stretched +Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1182,14 +1182,14 @@ Checking test 019 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 332.262419 +The total amount of wall time = 330.931597 -Test 019 fv3_ccpp_stretched PASS +Test 019 fv3_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_stretched_nest_prod -Checking test 020 fv3_ccpp_stretched_nest results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_stretched_nest +Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1252,40 +1252,40 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 352.713671 +The total amount of wall time = 343.913204 -Test 020 fv3_ccpp_stretched_nest PASS +Test 020 fv3_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_regional_control_prod -Checking test 021 fv3_ccpp_regional_control results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_control +Checking test 021 fv3_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 -The total amount of wall time = 697.059129 +The total amount of wall time = 716.261602 -Test 021 fv3_ccpp_regional_control PASS +Test 021 fv3_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_regional_restart_prod -Checking test 022 fv3_ccpp_regional_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_restart +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_restart +Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 393.423672 +The total amount of wall time = 391.516587 -Test 022 fv3_ccpp_regional_restart PASS +Test 022 fv3_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_regional_quilt_prod -Checking test 023 fv3_ccpp_regional_quilt results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_quilt +Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1295,14 +1295,14 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 721.982896 +The total amount of wall time = 740.845723 -Test 023 fv3_ccpp_regional_quilt PASS +Test 023 fv3_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_regional_quilt_hafs_prod -Checking test 024 fv3_ccpp_regional_quilt_hafs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_hafs +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_quilt_hafs +Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1310,28 +1310,28 @@ Checking test 024 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 719.201196 +The total amount of wall time = 737.470533 -Test 024 fv3_ccpp_regional_quilt_hafs PASS +Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_quilt_netcdf_parallel +Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 719.995982 +The total amount of wall time = 741.687853 -Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS +Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfdlmp_prod -Checking test 026 fv3_ccpp_gfdlmp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfdlmp +Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1375,14 +1375,14 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 53.034811 +The total amount of wall time = 51.724523 -Test 026 fv3_ccpp_gfdlmp PASS +Test 026 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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-20210316/INTEL/fv3_gfdlmprad_gwd +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfdlmprad_gwd +Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1426,14 +1426,14 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 53.183759 +The total amount of wall time = 52.482174 -Test 027 fv3_ccpp_gfdlmprad_gwd PASS +Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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-20210316/INTEL/fv3_gfdlmprad_noahmp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfdlmprad_noahmp +Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1477,14 +1477,14 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 53.277267 +The total amount of wall time = 52.864785 -Test 028 fv3_ccpp_gfdlmprad_noahmp PASS +Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_csawmg_prod -Checking test 029 fv3_ccpp_csawmg results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_csawmg +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_csawmg +Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1528,14 +1528,14 @@ Checking test 029 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 143.654699 +The total amount of wall time = 137.691614 -Test 029 fv3_ccpp_csawmg PASS +Test 029 fv3_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_satmedmf_prod -Checking test 030 fv3_ccpp_satmedmf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmf +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_satmedmf +Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1579,14 +1579,14 @@ Checking test 030 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.495493 +The total amount of wall time = 59.102946 -Test 030 fv3_ccpp_satmedmf PASS +Test 030 fv3_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_satmedmfq_prod -Checking test 031 fv3_ccpp_satmedmfq results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmfq +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_satmedmfq +Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1630,14 +1630,14 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.806768 +The total amount of wall time = 58.919454 -Test 031 fv3_ccpp_satmedmfq PASS +Test 031 fv3_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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-20210316/INTEL/fv3_gfdlmp_32bit +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfdlmp_32bit +Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1681,14 +1681,14 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 41.514249 +The total amount of wall time = 41.538693 -Test 032 fv3_ccpp_gfdlmp_32bit PASS +Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/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-20210316/INTEL/fv3_gfdlmprad_32bit_post +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfdlmprad_32bit_post +Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1736,14 +1736,14 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 72.929668 +The total amount of wall time = 72.990521 -Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_cpt_prod -Checking test 034 fv3_ccpp_cpt results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_cpt +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_cpt +Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 034 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 337.243573 +The total amount of wall time = 324.277909 -Test 034 fv3_ccpp_cpt PASS +Test 034 fv3_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gsd_prod -Checking test 035 fv3_ccpp_gsd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gsd +Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1888,14 +1888,14 @@ Checking test 035 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 202.150818 +The total amount of wall time = 200.510933 -Test 035 fv3_ccpp_gsd PASS +Test 035 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_rap_prod -Checking test 036 fv3_ccpp_rap results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rap +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_rap +Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1959,14 +1959,14 @@ Checking test 036 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 102.012787 +The total amount of wall time = 102.523415 -Test 036 fv3_ccpp_rap PASS +Test 036 fv3_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_hrrr_prod -Checking test 037 fv3_ccpp_hrrr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_hrrr +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_hrrr +Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2030,14 +2030,14 @@ Checking test 037 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 106.934973 +The total amount of wall time = 106.593038 -Test 037 fv3_ccpp_hrrr PASS +Test 037 fv3_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_thompson_prod -Checking test 038 fv3_ccpp_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_thompson +Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2101,14 +2101,14 @@ Checking test 038 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 96.340112 +The total amount of wall time = 96.257675 -Test 038 fv3_ccpp_thompson PASS +Test 038 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_thompson_no_aero_prod -Checking test 039 fv3_ccpp_thompson_no_aero results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_thompson_no_aero +Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2172,14 +2172,14 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 91.907068 +The total amount of wall time = 91.158832 -Test 039 fv3_ccpp_thompson_no_aero PASS +Test 039 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_rrfs_v1beta_prod -Checking test 040 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_rrfs_v1beta +Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2243,14 +2243,14 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 107.837113 +The total amount of wall time = 108.271884 -Test 040 fv3_ccpp_rrfs_v1beta PASS +Test 040 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_prod -Checking test 041 fv3_ccpp_gfs_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16 +Checking test 041 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2326,14 +2326,14 @@ Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 131.379843 +The total amount of wall time = 130.052721 -Test 041 fv3_ccpp_gfs_v16 PASS +Test 041 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_restart_prod -Checking test 042 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_restart +Checking test 042 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2379,14 +2379,14 @@ Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 68.766847 +The total amount of wall time = 69.465290 -Test 042 fv3_ccpp_gfs_v16_restart PASS +Test 042 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_stochy_prod -Checking test 043 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_stochy +Checking test 043 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2450,14 +2450,14 @@ Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 64.512770 +The total amount of wall time = 62.916099 -Test 043 fv3_ccpp_gfs_v16_stochy PASS +Test 043 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 044 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_RRTMGP +Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2521,14 +2521,14 @@ Checking test 044 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 220.814664 +The total amount of wall time = 220.380142 -Test 044 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 044 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_RRTMGP_c192L127 +Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2586,14 +2586,14 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 930.889339 +The total amount of wall time = 834.952485 -Test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +Test 045 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod -Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_RRTMGP_2thrd +Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2657,14 +2657,14 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 473.296524 +The total amount of wall time = 466.870817 -Test 046 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS +Test 046 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gocart_clm_prod -Checking test 047 fv3_ccpp_gocart_clm results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gocart_clm +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gocart_clm +Checking test 047 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2708,14 +2708,14 @@ Checking test 047 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 57.904422 +The total amount of wall time = 58.031058 -Test 047 fv3_ccpp_gocart_clm PASS +Test 047 fv3_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_flake_prod -Checking test 048 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_flake +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_flake +Checking test 048 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2779,14 +2779,14 @@ Checking test 048 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 112.350998 +The total amount of wall time = 106.579599 -Test 048 fv3_ccpp_gfs_v16_flake PASS +Test 048 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_HAFS_v0_hwrf_thompson +Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2850,14 +2850,14 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 195.980362 +The total amount of wall time = 196.376108 -Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 049 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2871,14 +2871,14 @@ Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 340.106487 +The total amount of wall time = 323.367695 -Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfsv16_ugwpv1 +Checking test 051 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 216.277636 +The total amount of wall time = 215.379700 -Test 051 fv3_ccpp_gfsv16_ugwpv1 PASS +Test 051 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfsv16_ugwpv1_warmstart +Checking test 052 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3001,14 +3001,85 @@ Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 218.815280 +The total amount of wall time = 218.012111 -Test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 052 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_ras +Checking test 053 fv3_gfs_v16_ras 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 + +The total amount of wall time = 115.689935 + +Test 053 fv3_gfs_v16_ras PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v15p2_debug +Checking test 054 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3072,14 +3143,14 @@ Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 245.075230 +The total amount of wall time = 245.407283 -Test 053 fv3_ccpp_gfs_v15p2_debug PASS +Test 054 fv3_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_debug_prod -Checking test 054 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_debug +Checking test 055 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3143,14 +3214,14 @@ Checking test 054 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 189.406938 +The total amount of wall time = 190.404620 -Test 054 fv3_ccpp_gfs_v16_debug PASS +Test 055 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v15p2_RRTMGP_debug +Checking test 056 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3214,14 +3285,14 @@ Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 386.295980 +The total amount of wall time = 384.474234 -Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 056 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 056 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_RRTMGP_debug +Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3285,28 +3356,28 @@ Checking test 056 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 392.440028 +The total amount of wall time = 393.114772 -Test 056 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 057 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_regional_control_debug_prod -Checking test 057 fv3_ccpp_regional_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_control_debug +Checking test 058 fv3_regional_control_debug 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 -The total amount of wall time = 366.831849 +The total amount of wall time = 366.899380 -Test 057 fv3_ccpp_regional_control_debug PASS +Test 058 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_control_debug_prod -Checking test 058 fv3_ccpp_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_control_debug +Checking test 059 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3332,14 +3403,14 @@ Checking test 058 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 146.508217 +The total amount of wall time = 146.618466 -Test 058 fv3_ccpp_control_debug PASS +Test 059 fv3_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_stretched_nest_debug_prod -Checking test 059 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_stretched_nest_debug +Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3355,14 +3426,14 @@ Checking test 059 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 433.334427 +The total amount of wall time = 432.998634 -Test 059 fv3_ccpp_stretched_nest_debug PASS +Test 060 fv3_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gsd_debug_prod -Checking test 060 fv3_ccpp_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gsd_debug +Checking test 061 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3426,14 +3497,14 @@ Checking test 060 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 217.347536 +The total amount of wall time = 216.755184 -Test 060 fv3_ccpp_gsd_debug PASS +Test 061 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_diag3d_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gsd_diag3d_debug +Checking test 062 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3497,14 +3568,14 @@ Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 263.045850 +The total amount of wall time = 261.555642 -Test 061 fv3_ccpp_gsd_diag3d_debug PASS +Test 062 fv3_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_thompson_debug_prod -Checking test 062 fv3_ccpp_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_thompson_debug +Checking test 063 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3568,14 +3639,14 @@ Checking test 062 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 360.692633 +The total amount of wall time = 360.248777 -Test 062 fv3_ccpp_thompson_debug PASS +Test 063 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_thompson_no_aero_debug +Checking test 064 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3639,14 +3710,14 @@ Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 347.414141 +The total amount of wall time = 348.057383 -Test 063 fv3_ccpp_thompson_no_aero_debug PASS +Test 064 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_rrfs_v1beta_debug +Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3710,14 +3781,14 @@ Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 209.642159 +The total amount of wall time = 209.467344 -Test 064 fv3_ccpp_rrfs_v1beta_debug PASS +Test 065 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3781,14 +3852,14 @@ Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 223.759105 +The total amount of wall time = 223.594519 -Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 066 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3802,14 +3873,14 @@ Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 398.279909 +The total amount of wall time = 397.519750 -Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 067 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfsv16_ugwpv1_debug +Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3867,14 +3938,85 @@ Checking test 067 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 602.635373 +The total amount of wall time = 604.477397 + +Test 068 fv3_gfsv16_ugwpv1_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_ras_debug +Checking test 069 fv3_gfs_v16_ras_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 + +The total amount of wall time = 343.084605 -Test 067 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 069 fv3_gfs_v16_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_control_prod -Checking test 068 cpld_control results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_control +Checking test 070 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3923,14 +4065,14 @@ Checking test 068 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 98.377069 +The total amount of wall time = 94.330202 -Test 068 cpld_control PASS +Test 070 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_prod -Checking test 069 cpld_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart +Checking test 071 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3979,14 +4121,14 @@ Checking test 069 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 54.551793 +The total amount of wall time = 54.509987 -Test 069 cpld_restart PASS +Test 071 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_controlfrac_prod -Checking test 070 cpld_controlfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_controlfrac +Checking test 072 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4035,14 +4177,14 @@ Checking test 070 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 97.847198 +The total amount of wall time = 97.537951 -Test 070 cpld_controlfrac PASS +Test 072 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restartfrac_prod -Checking test 071 cpld_restartfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restartfrac +Checking test 073 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4091,14 +4233,14 @@ Checking test 071 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 54.553696 +The total amount of wall time = 54.634580 -Test 071 cpld_restartfrac PASS +Test 073 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_2threads_prod -Checking test 072 cpld_2threads results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_2threads +Checking test 074 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4147,14 +4289,14 @@ Checking test 072 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 258.589961 +The total amount of wall time = 260.143343 -Test 072 cpld_2threads PASS +Test 074 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_decomp_prod -Checking test 073 cpld_decomp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_decomp +Checking test 075 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4203,14 +4345,14 @@ Checking test 073 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 97.809631 +The total amount of wall time = 96.188274 -Test 073 cpld_decomp PASS +Test 075 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_satmedmf_prod -Checking test 074 cpld_satmedmf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_satmedmf +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_satmedmf +Checking test 076 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4259,14 +4401,14 @@ Checking test 074 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 97.610598 +The total amount of wall time = 95.901729 -Test 074 cpld_satmedmf PASS +Test 076 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_ca_prod -Checking test 075 cpld_ca results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_ca +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_ca +Checking test 077 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4315,14 +4457,14 @@ Checking test 075 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 97.401858 +The total amount of wall time = 95.998523 -Test 075 cpld_ca PASS +Test 077 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_control_c192_prod -Checking test 076 cpld_control_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_control_c192 +Checking test 078 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4371,14 +4513,14 @@ Checking test 076 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 409.284226 +The total amount of wall time = 409.876274 -Test 076 cpld_control_c192 PASS +Test 078 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_c192_prod -Checking test 077 cpld_restart_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart_c192 +Checking test 079 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4427,14 +4569,14 @@ Checking test 077 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 294.268034 +The total amount of wall time = 288.008984 -Test 077 cpld_restart_c192 PASS +Test 079 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_controlfrac_c192_prod -Checking test 078 cpld_controlfrac_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_controlfrac_c192 +Checking test 080 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4483,14 +4625,14 @@ Checking test 078 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 402.603821 +The total amount of wall time = 408.893341 -Test 078 cpld_controlfrac_c192 PASS +Test 080 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restartfrac_c192_prod -Checking test 079 cpld_restartfrac_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restartfrac_c192 +Checking test 081 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4539,14 +4681,14 @@ Checking test 079 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 291.241116 +The total amount of wall time = 287.403359 -Test 079 cpld_restartfrac_c192 PASS +Test 081 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_control_c384_prod -Checking test 080 cpld_control_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_control_c384 +Checking test 082 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4598,14 +4740,14 @@ Checking test 080 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1603.600871 +The total amount of wall time = 1600.512764 -Test 080 cpld_control_c384 PASS +Test 082 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_c384_prod -Checking test 081 cpld_restart_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart_c384 +Checking test 083 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4657,14 +4799,14 @@ Checking test 081 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 787.647056 +The total amount of wall time = 839.420761 -Test 081 cpld_restart_c384 PASS +Test 083 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_controlfrac_c384_prod -Checking test 082 cpld_controlfrac_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_controlfrac_c384 +Checking test 084 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4716,14 +4858,14 @@ Checking test 082 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1593.509229 +The total amount of wall time = 1591.439482 -Test 082 cpld_controlfrac_c384 PASS +Test 084 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restartfrac_c384_prod -Checking test 083 cpld_restartfrac_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restartfrac_c384 +Checking test 085 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4775,14 +4917,14 @@ Checking test 083 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 782.643788 +The total amount of wall time = 832.477485 -Test 083 cpld_restartfrac_c384 PASS +Test 085 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmark_prod -Checking test 084 cpld_bmark results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmark +Checking test 086 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4834,14 +4976,14 @@ Checking test 084 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 912.535304 +The total amount of wall time = 910.591583 -Test 084 cpld_bmark PASS +Test 086 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_bmark_prod -Checking test 085 cpld_restart_bmark results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart_bmark +Checking test 087 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4893,14 +5035,14 @@ Checking test 085 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 496.944038 +The total amount of wall time = 492.644072 -Test 085 cpld_restart_bmark PASS +Test 087 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmarkfrac_prod -Checking test 086 cpld_bmarkfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmarkfrac +Checking test 088 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4952,14 +5094,14 @@ Checking test 086 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 903.261741 +The total amount of wall time = 942.768192 -Test 086 cpld_bmarkfrac PASS +Test 088 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_bmarkfrac_prod -Checking test 087 cpld_restart_bmarkfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart_bmarkfrac +Checking test 089 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5011,14 +5153,14 @@ Checking test 087 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 492.256702 +The total amount of wall time = 490.677498 -Test 087 cpld_restart_bmarkfrac PASS +Test 089 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmarkfrac_v16_prod -Checking test 088 cpld_bmarkfrac_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmarkfrac_v16 +Checking test 090 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5070,14 +5212,14 @@ Checking test 088 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -The total amount of wall time = 1637.182420 +The total amount of wall time = 1619.458789 -Test 088 cpld_bmarkfrac_v16 PASS +Test 090 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_bmarkfrac_v16_prod -Checking test 089 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart_bmarkfrac_v16 +Checking test 091 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5129,14 +5271,14 @@ Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -The total amount of wall time = 894.252000 +The total amount of wall time = 876.345179 -Test 089 cpld_restart_bmarkfrac_v16 PASS +Test 091 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmark_wave_prod -Checking test 090 cpld_bmark_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark_wave +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmark_wave +Checking test 092 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5191,14 +5333,14 @@ Checking test 090 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 1568.690744 +The total amount of wall time = 1579.004437 -Test 090 cpld_bmark_wave PASS +Test 092 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmarkfrac_wave_prod -Checking test 091 cpld_bmarkfrac_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_wave +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmarkfrac_wave +Checking test 093 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5253,14 +5395,14 @@ Checking test 091 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 1566.777312 +The total amount of wall time = 1564.991092 -Test 091 cpld_bmarkfrac_wave PASS +Test 093 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmarkfrac_wave_v16_prod -Checking test 092 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmarkfrac_wave_v16 +Checking test 094 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5314,14 +5456,14 @@ Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 1043.280968 +The total amount of wall time = 1037.828157 -Test 092 cpld_bmarkfrac_wave_v16 PASS +Test 094 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_control_wave_prod -Checking test 093 cpld_control_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_wave +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_control_wave +Checking test 095 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5373,14 +5515,14 @@ Checking test 093 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 814.173459 +The total amount of wall time = 813.195210 -Test 093 cpld_control_wave PASS +Test 095 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_debug_prod -Checking test 094 cpld_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_debug +Checking test 096 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5429,14 +5571,14 @@ Checking test 094 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 307.202595 +The total amount of wall time = 310.532484 -Test 094 cpld_debug PASS +Test 096 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_debugfrac_prod -Checking test 095 cpld_debugfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debugfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_debugfrac +Checking test 097 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5485,74 +5627,74 @@ Checking test 095 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 305.519940 +The total amount of wall time = 305.075755 -Test 095 cpld_debugfrac PASS +Test 097 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_control_cfsr -Checking test 096 datm_control_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_control_cfsr +Checking test 098 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 -The total amount of wall time = 102.254750 +The total amount of wall time = 102.179644 -Test 096 datm_control_cfsr PASS +Test 098 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_restart_cfsr -Checking test 097 datm_restart_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_restart_cfsr +Checking test 099 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 -The total amount of wall time = 64.874934 +The total amount of wall time = 61.928971 -Test 097 datm_restart_cfsr PASS +Test 099 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_control_gefs -Checking test 098 datm_control_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_control_gefs +Checking test 100 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 -The total amount of wall time = 92.312934 +The total amount of wall time = 95.586184 -Test 098 datm_control_gefs PASS +Test 100 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_bulk_cfsr -Checking test 099 datm_bulk_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_bulk_cfsr +Checking test 101 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 -The total amount of wall time = 98.579826 +The total amount of wall time = 98.097471 -Test 099 datm_bulk_cfsr PASS +Test 101 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_bulk_gefs -Checking test 100 datm_bulk_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_bulk_gefs +Checking test 102 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 -The total amount of wall time = 96.718155 +The total amount of wall time = 96.061119 -Test 100 datm_bulk_gefs PASS +Test 102 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_mx025_cfsr -Checking test 101 datm_mx025_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_mx025_cfsr +Checking test 103 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5560,14 +5702,14 @@ Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 395.791816 +The total amount of wall time = 391.962767 -Test 101 datm_mx025_cfsr PASS +Test 103 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_mx025_gefs -Checking test 102 datm_mx025_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_mx025_gefs +Checking test 104 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5575,23 +5717,23 @@ Checking test 102 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 373.193171 +The total amount of wall time = 389.212635 -Test 102 datm_mx025_gefs PASS +Test 104 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_debug_cfsr -Checking test 103 datm_debug_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_debug_cfsr +Checking test 105 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 -The total amount of wall time = 285.512419 +The total amount of wall time = 286.252814 -Test 103 datm_debug_cfsr PASS +Test 105 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 15 16:50:40 MDT 2021 -Elapsed time: 01h:36m:59s. Have a nice day! +Wed Mar 17 16:56:57 MDT 2021 +Elapsed time: 01h:56m:42s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 33e7e78571..b577ab36e8 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,10 +1,10 @@ -Mon Mar 15 11:33:54 EDT 2021 +Wed Mar 17 15:32:59 EDT 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_control +Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -68,14 +68,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.202716 +The total amount of wall time = 102.485374 -Test 001 fv3_ccpp_control PASS +Test 001 fv3_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_decomp +Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -139,14 +139,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.422483 +The total amount of wall time = 72.102716 -Test 002 fv3_ccpp_decomp PASS +Test 002 fv3_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_2threads +Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -210,14 +210,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 63.621933 +The total amount of wall time = 56.773568 -Test 003 fv3_ccpp_2threads PASS +Test 003 fv3_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_restart +Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -263,14 +263,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 25.530793 +The total amount of wall time = 21.193289 -Test 004 fv3_ccpp_restart PASS +Test 004 fv3_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_read_inc +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_read_inc +Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -334,14 +334,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 45.608474 +The total amount of wall time = 41.536547 -Test 005 fv3_ccpp_read_inc PASS +Test 005 fv3_read_inc PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGauss_netcdf_esmf +Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -385,14 +385,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 103.548563 +The total amount of wall time = 130.242622 -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS +Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGauss_netcdf +Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -436,14 +436,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 41.781802 +The total amount of wall time = 73.005528 -Test 007 fv3_ccpp_wrtGauss_netcdf PASS +Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGauss_netcdf_parallel +Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -487,14 +487,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 119.304346 +The total amount of wall time = 62.012410 -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS +Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGlatlon_netcdf +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGlatlon_netcdf +Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -538,14 +538,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 42.524630 +The total amount of wall time = 67.968061 -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS +Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGauss_nemsio +Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -589,14 +589,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 40.850460 +The total amount of wall time = 92.057050 -Test 010 fv3_ccpp_wrtGauss_nemsio PASS +Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGauss_nemsio_c192 +Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -640,14 +640,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 112.714340 +The total amount of wall time = 109.756012 -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS +Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stochy +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_stochy +Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -711,14 +711,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.386574 +The total amount of wall time = 48.024480 -Test 012 fv3_ccpp_stochy PASS +Test 012 fv3_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_ca +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_ca +Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -782,14 +782,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 34.888770 +The total amount of wall time = 29.883390 -Test 013 fv3_ccpp_ca PASS +Test 013 fv3_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lndp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_lndp +Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -853,14 +853,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.942397 +The total amount of wall time = 52.541476 -Test 014 fv3_ccpp_lndp PASS +Test 014 fv3_lndp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_iau +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_iau +Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -924,14 +924,14 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 45.545194 +The total amount of wall time = 67.247275 -Test 015 fv3_ccpp_iau PASS +Test 015 fv3_iau PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lheatstrg +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_lheatstrg +Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -975,14 +975,14 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.328518 +The total amount of wall time = 69.819128 -Test 016 fv3_ccpp_lheatstrg PASS +Test 016 fv3_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_multigases_prod -Checking test 017 fv3_ccpp_multigases results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_multigases_repro +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_multigases_repro +Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1052,14 +1052,14 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 86.788859 +The total amount of wall time = 98.505522 -Test 017 fv3_ccpp_multigases PASS +Test 017 fv3_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_control_32bit_prod -Checking test 018 fv3_ccpp_control_32bit results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_32bit +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_control_32bit +Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1123,14 +1123,14 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 42.716204 +The total amount of wall time = 39.663154 -Test 018 fv3_ccpp_control_32bit PASS +Test 018 fv3_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_stretched_prod -Checking test 019 fv3_ccpp_stretched results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_stretched +Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1182,14 +1182,14 @@ Checking test 019 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 310.401709 +The total amount of wall time = 332.390533 -Test 019 fv3_ccpp_stretched PASS +Test 019 fv3_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_stretched_nest_prod -Checking test 020 fv3_ccpp_stretched_nest results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_stretched_nest +Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1252,40 +1252,40 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 337.151113 +The total amount of wall time = 363.772572 -Test 020 fv3_ccpp_stretched_nest PASS +Test 020 fv3_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_regional_control_prod -Checking test 021 fv3_ccpp_regional_control results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_control +Checking test 021 fv3_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 -The total amount of wall time = 673.135357 +The total amount of wall time = 671.029829 -Test 021 fv3_ccpp_regional_control PASS +Test 021 fv3_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_regional_restart_prod -Checking test 022 fv3_ccpp_regional_restart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_restart +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_restart +Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 372.152868 +The total amount of wall time = 368.134453 -Test 022 fv3_ccpp_regional_restart PASS +Test 022 fv3_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_regional_quilt_prod -Checking test 023 fv3_ccpp_regional_quilt results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_quilt +Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1295,14 +1295,14 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 696.496583 +The total amount of wall time = 692.031281 -Test 023 fv3_ccpp_regional_quilt PASS +Test 023 fv3_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_regional_quilt_hafs_prod -Checking test 024 fv3_ccpp_regional_quilt_hafs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_hafs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_quilt_hafs +Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1310,28 +1310,28 @@ Checking test 024 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 690.496928 +The total amount of wall time = 688.414005 -Test 024 fv3_ccpp_regional_quilt_hafs PASS +Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_quilt_netcdf_parallel +Checking test 025 fv3_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 ............ALT CHECK......OK -The total amount of wall time = 696.943945 +The total amount of wall time = 691.740751 -Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS +Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfdlmp_prod -Checking test 026 fv3_ccpp_gfdlmp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfdlmp +Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1375,14 +1375,14 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 50.896308 +The total amount of wall time = 75.604375 -Test 026 fv3_ccpp_gfdlmp PASS +Test 026 fv3_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_gwd +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfdlmprad_gwd +Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1426,14 +1426,14 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 49.231900 +The total amount of wall time = 47.142772 -Test 027 fv3_ccpp_gfdlmprad_gwd PASS +Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_noahmp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfdlmprad_noahmp +Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1477,14 +1477,14 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 48.333800 +The total amount of wall time = 46.771940 -Test 028 fv3_ccpp_gfdlmprad_noahmp PASS +Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_csawmg_prod -Checking test 029 fv3_ccpp_csawmg results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_csawmg +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_csawmg +Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1528,14 +1528,14 @@ Checking test 029 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 126.509770 +The total amount of wall time = 149.960741 -Test 029 fv3_ccpp_csawmg PASS +Test 029 fv3_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_satmedmf_prod -Checking test 030 fv3_ccpp_satmedmf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmf +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_satmedmf +Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1579,14 +1579,14 @@ Checking test 030 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.905065 +The total amount of wall time = 79.670296 -Test 030 fv3_ccpp_satmedmf PASS +Test 030 fv3_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_satmedmfq_prod -Checking test 031 fv3_ccpp_satmedmfq results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmfq +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_satmedmfq +Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1630,14 +1630,14 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.400283 +The total amount of wall time = 51.506543 -Test 031 fv3_ccpp_satmedmfq PASS +Test 031 fv3_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfdlmp_32bit_prod -Checking test 032 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp_32bit +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfdlmp_32bit +Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1681,14 +1681,14 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 59.138256 +The total amount of wall time = 69.878808 -Test 032 fv3_ccpp_gfdlmp_32bit PASS +Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_32bit_post +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfdlmprad_32bit_post +Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1736,14 +1736,14 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 80.114644 +The total amount of wall time = 77.396202 -Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_cpt_prod -Checking test 034 fv3_ccpp_cpt results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_cpt +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_cpt +Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 034 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 308.652566 +The total amount of wall time = 288.651895 -Test 034 fv3_ccpp_cpt PASS +Test 034 fv3_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gsd_prod -Checking test 035 fv3_ccpp_gsd results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gsd +Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1888,14 +1888,14 @@ Checking test 035 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 199.917140 +The total amount of wall time = 192.839897 -Test 035 fv3_ccpp_gsd PASS +Test 035 fv3_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_rap_prod -Checking test 036 fv3_ccpp_rap results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rap +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_rap +Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1959,14 +1959,14 @@ Checking test 036 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 97.420971 +The total amount of wall time = 96.174180 -Test 036 fv3_ccpp_rap PASS +Test 036 fv3_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_hrrr_prod -Checking test 037 fv3_ccpp_hrrr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_hrrr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_hrrr +Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2030,14 +2030,14 @@ Checking test 037 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 100.507409 +The total amount of wall time = 116.171670 -Test 037 fv3_ccpp_hrrr PASS +Test 037 fv3_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_thompson_prod -Checking test 038 fv3_ccpp_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_thompson +Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2101,14 +2101,14 @@ Checking test 038 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 100.859710 +The total amount of wall time = 90.491086 -Test 038 fv3_ccpp_thompson PASS +Test 038 fv3_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_thompson_no_aero_prod -Checking test 039 fv3_ccpp_thompson_no_aero results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_thompson_no_aero +Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2172,14 +2172,14 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 89.024713 +The total amount of wall time = 85.585007 -Test 039 fv3_ccpp_thompson_no_aero PASS +Test 039 fv3_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_rrfs_v1beta_prod -Checking test 040 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_rrfs_v1beta +Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2243,14 +2243,14 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 107.226849 +The total amount of wall time = 120.673515 -Test 040 fv3_ccpp_rrfs_v1beta PASS +Test 040 fv3_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v15p2_prod -Checking test 041 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v15p2 +Checking test 041 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 116.561811 +The total amount of wall time = 129.877411 -Test 041 fv3_ccpp_gfs_v15p2 PASS +Test 041 fv3_gfs_v15p2 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_prod -Checking test 042 fv3_ccpp_gfs_v16 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16 +Checking test 042 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2397,14 +2397,14 @@ Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 123.109903 +The total amount of wall time = 145.397896 -Test 042 fv3_ccpp_gfs_v16 PASS +Test 042 fv3_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_restart_prod -Checking test 043 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_restart +Checking test 043 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2450,14 +2450,14 @@ Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 70.816141 +The total amount of wall time = 60.858808 -Test 043 fv3_ccpp_gfs_v16_restart PASS +Test 043 fv3_gfs_v16_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_stochy_prod -Checking test 044 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_stochy +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_stochy +Checking test 044 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2521,14 +2521,14 @@ Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 57.624361 +The total amount of wall time = 82.493794 -Test 044 fv3_ccpp_gfs_v16_stochy PASS +Test 044 fv3_gfs_v16_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v15p2_RRTMGP +Checking test 045 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2592,14 +2592,14 @@ Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 196.279333 +The total amount of wall time = 185.233689 -Test 045 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 045 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_RRTMGP +Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2663,14 +2663,14 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 198.279861 +The total amount of wall time = 187.969992 -Test 046 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 046 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_RRTMGP_c192L127 +Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2728,14 +2728,14 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 724.420639 +The total amount of wall time = 733.570211 -Test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +Test 047 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_RRTMGP_2thrd +Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2799,14 +2799,14 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 289.246314 +The total amount of wall time = 282.897222 -Test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS +Test 048 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfsv16_csawmg_prod -Checking test 049 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmg +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfsv16_csawmg +Checking test 049 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2850,14 +2850,14 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 160.717652 +The total amount of wall time = 132.452220 -Test 049 fv3_ccpp_gfsv16_csawmg PASS +Test 049 fv3_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmgt +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfsv16_csawmgt +Checking test 050 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2901,14 +2901,14 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 135.358067 +The total amount of wall time = 130.527004 -Test 050 fv3_ccpp_gfsv16_csawmgt PASS +Test 050 fv3_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gocart_clm_prod -Checking test 051 fv3_ccpp_gocart_clm results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gocart_clm +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gocart_clm +Checking test 051 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2952,14 +2952,14 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 56.265930 +The total amount of wall time = 56.881795 -Test 051 fv3_ccpp_gocart_clm PASS +Test 051 fv3_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_flake_prod -Checking test 052 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_flake +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_flake +Checking test 052 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3023,14 +3023,14 @@ Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 150.911054 +The total amount of wall time = 116.827340 -Test 052 fv3_ccpp_gfs_v16_flake PASS +Test 052 fv3_gfs_v16_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_HAFS_v0_hwrf_thompson +Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3094,14 +3094,14 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 165.912999 +The total amount of wall time = 161.380788 -Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 053 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -3115,14 +3115,14 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 330.719092 +The total amount of wall time = 310.000662 -Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfsv16_ugwpv1 +Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3180,14 +3180,14 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 188.806294 +The total amount of wall time = 184.639949 -Test 055 fv3_ccpp_gfsv16_ugwpv1 PASS +Test 055 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfsv16_ugwpv1_warmstart +Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3245,14 +3245,85 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 187.875190 +The total amount of wall time = 212.647393 -Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 056 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_ras +Checking test 057 fv3_gfs_v16_ras 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 + +The total amount of wall time = 128.544225 + +Test 057 fv3_gfs_v16_ras PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v15p2_debug +Checking test 058 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3316,14 +3387,14 @@ Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 239.583893 +The total amount of wall time = 235.095911 -Test 057 fv3_ccpp_gfs_v15p2_debug PASS +Test 058 fv3_gfs_v15p2_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_debug_prod -Checking test 058 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_debug +Checking test 059 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3387,14 +3458,14 @@ Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 175.667525 +The total amount of wall time = 199.460156 -Test 058 fv3_ccpp_gfs_v16_debug PASS +Test 059 fv3_gfs_v16_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v15p2_RRTMGP_debug +Checking test 060 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3458,14 +3529,14 @@ Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 380.015984 +The total amount of wall time = 374.563559 -Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 060 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_RRTMGP_debug +Checking test 061 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3529,28 +3600,28 @@ Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 382.399233 +The total amount of wall time = 381.595627 -Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 061 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_regional_control_debug_prod -Checking test 061 fv3_ccpp_regional_control_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_control_debug +Checking test 062 fv3_regional_control_debug 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 -The total amount of wall time = 368.997322 +The total amount of wall time = 367.593608 -Test 061 fv3_ccpp_regional_control_debug PASS +Test 062 fv3_regional_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_control_debug_prod -Checking test 062 fv3_ccpp_control_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_control_debug +Checking test 063 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3576,14 +3647,14 @@ Checking test 062 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 129.907206 +The total amount of wall time = 128.752562 -Test 062 fv3_ccpp_control_debug PASS +Test 063 fv3_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_stretched_nest_debug_prod -Checking test 063 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_stretched_nest_debug +Checking test 064 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3599,14 +3670,14 @@ Checking test 063 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 436.163004 +The total amount of wall time = 436.695048 -Test 063 fv3_ccpp_stretched_nest_debug PASS +Test 064 fv3_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gsd_debug_prod -Checking test 064 fv3_ccpp_gsd_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gsd_debug +Checking test 065 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3670,14 +3741,14 @@ Checking test 064 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 195.328983 +The total amount of wall time = 227.074360 -Test 064 fv3_ccpp_gsd_debug PASS +Test 065 fv3_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_diag3d_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gsd_diag3d_debug +Checking test 066 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3741,14 +3812,14 @@ Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 225.306297 +The total amount of wall time = 224.236854 -Test 065 fv3_ccpp_gsd_diag3d_debug PASS +Test 066 fv3_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_thompson_debug_prod -Checking test 066 fv3_ccpp_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_thompson_debug +Checking test 067 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3812,14 +3883,14 @@ Checking test 066 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 341.836603 +The total amount of wall time = 340.075554 -Test 066 fv3_ccpp_thompson_debug PASS +Test 067 fv3_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_thompson_no_aero_debug +Checking test 068 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3883,14 +3954,14 @@ Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 330.821297 +The total amount of wall time = 329.845920 -Test 067 fv3_ccpp_thompson_no_aero_debug PASS +Test 068 fv3_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_rrfs_v1beta_debug +Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3954,14 +4025,14 @@ Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 192.188307 +The total amount of wall time = 188.889830 -Test 068 fv3_ccpp_rrfs_v1beta_debug PASS +Test 069 fv3_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 070 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4025,14 +4096,14 @@ Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 216.395169 +The total amount of wall time = 203.934209 -Test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 070 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -4046,14 +4117,14 @@ Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 380.092955 +The total amount of wall time = 376.024082 -Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfsv16_ugwpv1_debug +Checking test 072 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -4111,14 +4182,85 @@ Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 579.772698 +The total amount of wall time = 606.656985 + +Test 072 fv3_gfsv16_ugwpv1_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_ras_debug +Checking test 073 fv3_gfs_v16_ras_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 + +The total amount of wall time = 350.677365 -Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 073 fv3_gfs_v16_ras_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_control_prod -Checking test 072 cpld_control results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_control +Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4167,14 +4309,14 @@ Checking test 072 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 101.285119 +The total amount of wall time = 120.457928 -Test 072 cpld_control PASS +Test 074 cpld_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restart_prod -Checking test 073 cpld_restart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restart +Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4223,14 +4365,14 @@ Checking test 073 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 52.005528 +The total amount of wall time = 50.718759 -Test 073 cpld_restart PASS +Test 075 cpld_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_controlfrac_prod -Checking test 074 cpld_controlfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_controlfrac +Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4279,14 +4421,14 @@ Checking test 074 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 106.159695 +The total amount of wall time = 120.677719 -Test 074 cpld_controlfrac PASS +Test 076 cpld_controlfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restartfrac_prod -Checking test 075 cpld_restartfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restartfrac +Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4335,14 +4477,14 @@ Checking test 075 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 49.894653 +The total amount of wall time = 48.239807 -Test 075 cpld_restartfrac PASS +Test 077 cpld_restartfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_2threads_prod -Checking test 076 cpld_2threads results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_2threads +Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4391,14 +4533,14 @@ Checking test 076 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 124.166037 +The total amount of wall time = 147.067040 -Test 076 cpld_2threads PASS +Test 078 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_decomp_prod -Checking test 077 cpld_decomp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_decomp +Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4447,14 +4589,14 @@ Checking test 077 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 122.193962 +The total amount of wall time = 90.314914 -Test 077 cpld_decomp PASS +Test 079 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_satmedmf_prod -Checking test 078 cpld_satmedmf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_satmedmf +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_satmedmf +Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4503,14 +4645,14 @@ Checking test 078 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 96.819726 +The total amount of wall time = 91.042473 -Test 078 cpld_satmedmf PASS +Test 080 cpld_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_ca_prod -Checking test 079 cpld_ca results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_ca +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_ca +Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4559,14 +4701,14 @@ Checking test 079 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 95.574276 +The total amount of wall time = 121.001866 -Test 079 cpld_ca PASS +Test 081 cpld_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_control_c192_prod -Checking test 080 cpld_control_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_control_c192 +Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4615,14 +4757,14 @@ Checking test 080 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 417.422353 +The total amount of wall time = 407.757892 -Test 080 cpld_control_c192 PASS +Test 082 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restart_c192_prod -Checking test 081 cpld_restart_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restart_c192 +Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4671,14 +4813,14 @@ Checking test 081 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 284.592658 +The total amount of wall time = 307.998223 -Test 081 cpld_restart_c192 PASS +Test 083 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_controlfrac_c192_prod -Checking test 082 cpld_controlfrac_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_controlfrac_c192 +Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4727,14 +4869,14 @@ Checking test 082 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 414.885245 +The total amount of wall time = 406.897365 -Test 082 cpld_controlfrac_c192 PASS +Test 084 cpld_controlfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restartfrac_c192_prod -Checking test 083 cpld_restartfrac_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restartfrac_c192 +Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4783,14 +4925,14 @@ Checking test 083 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 284.826380 +The total amount of wall time = 323.773810 -Test 083 cpld_restartfrac_c192 PASS +Test 085 cpld_restartfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_control_c384_prod -Checking test 084 cpld_control_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_control_c384 +Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4842,14 +4984,14 @@ Checking test 084 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1573.722499 +The total amount of wall time = 1521.958534 -Test 084 cpld_control_c384 PASS +Test 086 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restart_c384_prod -Checking test 085 cpld_restart_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restart_c384 +Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4901,14 +5043,14 @@ Checking test 085 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 787.501707 +The total amount of wall time = 773.748556 -Test 085 cpld_restart_c384 PASS +Test 087 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_controlfrac_c384_prod -Checking test 086 cpld_controlfrac_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_controlfrac_c384 +Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4960,14 +5102,14 @@ Checking test 086 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1564.939017 +The total amount of wall time = 1532.686150 -Test 086 cpld_controlfrac_c384 PASS +Test 088 cpld_controlfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restartfrac_c384_prod -Checking test 087 cpld_restartfrac_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restartfrac_c384 +Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5019,14 +5161,14 @@ Checking test 087 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 821.304281 +The total amount of wall time = 766.519234 -Test 087 cpld_restartfrac_c384 PASS +Test 089 cpld_restartfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_bmark_prod -Checking test 088 cpld_bmark results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_bmark +Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5078,14 +5220,14 @@ Checking test 088 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 898.267012 +The total amount of wall time = 881.501054 -Test 088 cpld_bmark PASS +Test 090 cpld_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restart_bmark_prod -Checking test 089 cpld_restart_bmark results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restart_bmark +Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5137,14 +5279,14 @@ Checking test 089 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 493.790992 +The total amount of wall time = 453.189565 -Test 089 cpld_restart_bmark PASS +Test 091 cpld_restart_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_bmarkfrac_prod -Checking test 090 cpld_bmarkfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_bmarkfrac +Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5196,14 +5338,14 @@ Checking test 090 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 870.568108 +The total amount of wall time = 859.231561 -Test 090 cpld_bmarkfrac PASS +Test 092 cpld_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restart_bmarkfrac_prod -Checking test 091 cpld_restart_bmarkfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restart_bmarkfrac +Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5255,14 +5397,14 @@ Checking test 091 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 459.592415 +The total amount of wall time = 447.852029 -Test 091 cpld_restart_bmarkfrac PASS +Test 093 cpld_restart_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_debug_prod -Checking test 092 cpld_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_debug +Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5311,14 +5453,14 @@ Checking test 092 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 268.650325 +The total amount of wall time = 261.103150 -Test 092 cpld_debug PASS +Test 094 cpld_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_debugfrac_prod -Checking test 093 cpld_debugfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debugfrac +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_debugfrac +Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5367,74 +5509,74 @@ Checking test 093 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 266.272874 +The total amount of wall time = 287.770841 -Test 093 cpld_debugfrac PASS +Test 095 cpld_debugfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/datm_control_cfsr -Checking test 094 datm_control_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 103.055567 +The total amount of wall time = 97.793800 -Test 094 datm_control_cfsr PASS +Test 096 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/datm_restart_cfsr -Checking test 095 datm_restart_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 59.947350 +The total amount of wall time = 69.735499 -Test 095 datm_restart_cfsr PASS +Test 097 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/datm_control_gefs -Checking test 096 datm_control_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 94.846247 +The total amount of wall time = 95.204006 -Test 096 datm_control_gefs PASS +Test 098 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/datm_bulk_cfsr -Checking test 097 datm_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 98.839096 +The total amount of wall time = 114.196027 -Test 097 datm_bulk_cfsr PASS +Test 099 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/datm_bulk_gefs -Checking test 098 datm_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 95.686765 +The total amount of wall time = 94.867519 -Test 098 datm_bulk_gefs PASS +Test 100 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/datm_mx025_gefs -Checking test 099 datm_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/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 @@ -5442,23 +5584,23 @@ Checking test 099 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 403.741743 +The total amount of wall time = 386.640594 -Test 099 datm_mx025_gefs PASS +Test 101 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/datm_debug_cfsr -Checking test 100 datm_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/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 -The total amount of wall time = 228.299889 +The total amount of wall time = 253.835049 -Test 100 datm_debug_cfsr PASS +Test 102 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 15 13:04:15 EDT 2021 -Elapsed time: 01h:30m:22s. Have a nice day! +Wed Mar 17 16:50:27 EDT 2021 +Elapsed time: 01h:17m:29s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 231e963d13..d0c0d71d6c 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,10 +1,10 @@ -Mon Mar 15 15:32:14 UTC 2021 +Wed Mar 17 21:02:21 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfdlmp_prod -Checking test 001 fv3_ccpp_gfdlmp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfdlmp +Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -48,14 +48,14 @@ Checking test 001 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 233.970407 + 0: The total amount of wall time = 230.221815 -Test 001 fv3_ccpp_gfdlmp PASS +Test 001 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v15p2_prod -Checking test 002 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v15p2 +Checking test 002 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -119,14 +119,14 @@ Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 586.511327 + 0: The total amount of wall time = 575.623872 -Test 002 fv3_ccpp_gfs_v15p2 PASS +Test 002 fv3_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_prod -Checking test 003 fv3_ccpp_gfs_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16 +Checking test 003 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -202,14 +202,14 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 597.561812 + 0: The total amount of wall time = 599.253044 -Test 003 fv3_ccpp_gfs_v16 PASS +Test 003 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_restart_prod -Checking test 004 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_restart +Checking test 004 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -255,14 +255,14 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 291.886595 + 0: The total amount of wall time = 298.897952 -Test 004 fv3_ccpp_gfs_v16_restart PASS +Test 004 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_stochy_prod -Checking test 005 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_stochy +Checking test 005 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -326,14 +326,14 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 370.489472 + 0: The total amount of wall time = 408.934031 -Test 005 fv3_ccpp_gfs_v16_stochy PASS +Test 005 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_flake_prod -Checking test 006 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_flake +Checking test 006 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -397,14 +397,14 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 579.985304 + 0: The total amount of wall time = 651.896884 -Test 006 fv3_ccpp_gfs_v16_flake PASS +Test 006 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v15p2_RRTMGP +Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -468,14 +468,14 @@ Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 685.915855 + 0: The total amount of wall time = 718.716919 -Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 007 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_RRTMGP +Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -539,14 +539,14 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 700.908666 + 0: The total amount of wall time = 743.681647 -Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 008 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gsd_prod -Checking test 009 fv3_ccpp_gsd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gsd +Checking test 009 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -634,14 +634,14 @@ Checking test 009 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 810.317421 + 0: The total amount of wall time = 881.051197 -Test 009 fv3_ccpp_gsd PASS +Test 009 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_thompson_prod -Checking test 010 fv3_ccpp_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_thompson +Checking test 010 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -705,14 +705,14 @@ Checking test 010 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 390.749742 + 0: The total amount of wall time = 398.364665 -Test 010 fv3_ccpp_thompson PASS +Test 010 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_thompson_no_aero_prod -Checking test 011 fv3_ccpp_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_thompson_no_aero +Checking test 011 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -776,14 +776,14 @@ Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.471711 + 0: The total amount of wall time = 399.138654 -Test 011 fv3_ccpp_thompson_no_aero PASS +Test 011 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_rrfs_v1beta_prod -Checking test 012 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_rrfs_v1beta +Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -847,14 +847,14 @@ Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 412.763619 + 0: The total amount of wall time = 399.585865 -Test 012 fv3_ccpp_rrfs_v1beta PASS +Test 012 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_HAFS_v0_hwrf_thompson +Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -918,14 +918,14 @@ Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 607.292609 + 0: The total amount of wall time = 628.560364 -Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 013 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -939,14 +939,14 @@ Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 449.080236 + 0: The total amount of wall time = 443.604429 -Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfsv16_ugwpv1 +Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1004,14 +1004,14 @@ Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 907.983095 + 0: The total amount of wall time = 908.532238 -Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS +Test 015 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfsv16_ugwpv1_warmstart +Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1069,14 +1069,85 @@ Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 918.404036 + 0: The total amount of wall time = 923.398587 -Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 016 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_control_debug_prod -Checking test 017 fv3_ccpp_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_ras +Checking test 017 fv3_gfs_v16_ras 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 ............SKIP for gnu compilers + 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 + + 0: The total amount of wall time = 608.975806 + +Test 017 fv3_gfs_v16_ras PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_control_debug +Checking test 018 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1102,14 +1173,28 @@ Checking test 017 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 84.837095 + 0: The total amount of wall time = 88.625162 + +Test 018 fv3_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_regional_control_debug +Checking test 019 fv3_regional_control_debug 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 + + 0: The total amount of wall time = 168.838854 -Test 017 fv3_ccpp_control_debug PASS +Test 019 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_rrfs_v1beta_debug +Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1122,24 +1207,24 @@ Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1173,14 +1258,14 @@ Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 271.075533 + 0: The total amount of wall time = 120.986153 -Test 018 fv3_ccpp_gfs_v15p2_debug PASS +Test 020 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_debug_prod -Checking test 019 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gsd_debug +Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1193,24 +1278,24 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... 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 phyf003.tile1.nc .........OK + Comparing phyf003.tile2.nc .........OK + Comparing phyf003.tile3.nc .........OK + Comparing phyf003.tile4.nc .........OK + Comparing phyf003.tile5.nc .........OK + Comparing phyf003.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 dynf003.tile1.nc .........OK + Comparing dynf003.tile2.nc .........OK + Comparing dynf003.tile3.nc .........OK + Comparing dynf003.tile4.nc .........OK + Comparing dynf003.tile5.nc .........OK + Comparing dynf003.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1244,14 +1329,14 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 129.496280 + 0: The total amount of wall time = 122.324768 -Test 019 fv3_ccpp_gfs_v16_debug PASS +Test 021 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_thompson_debug +Checking test 022 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1315,14 +1400,14 @@ Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 318.714050 + 0: The total amount of wall time = 203.342459 -Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 022 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_thompson_no_aero_debug +Checking test 023 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1386,14 +1471,14 @@ Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 320.059481 + 0: The total amount of wall time = 197.439857 -Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 023 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_multigases_prod -Checking test 022 fv3_ccpp_multigases results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v15p2_debug +Checking test 024 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1456,35 +1541,15 @@ Checking test 022 fv3_ccpp_multigases results .... 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 - 0: The total amount of wall time = 423.407471 + 0: The total amount of wall time = 275.837348 -Test 022 fv3_ccpp_multigases PASS +Test 024 fv3_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_regional_control_debug_prod -Checking test 023 fv3_ccpp_regional_control_debug 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 - - 0: The total amount of wall time = 170.604005 - -Test 023 fv3_ccpp_regional_control_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_debug +Checking test 025 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1497,24 +1562,24 @@ Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 ............SKIP for gnu compilers Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1548,14 +1613,14 @@ Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 117.288385 + 0: The total amount of wall time = 132.082633 -Test 024 fv3_ccpp_rrfs_v1beta_debug PASS +Test 025 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gsd_debug_prod -Checking test 025 fv3_ccpp_gsd_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v15p2_RRTMGP_debug +Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1568,24 +1633,24 @@ Checking test 025 fv3_ccpp_gsd_debug results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf003.tile1.nc .........OK - Comparing phyf003.tile2.nc .........OK - Comparing phyf003.tile3.nc .........OK - Comparing phyf003.tile4.nc .........OK - Comparing phyf003.tile5.nc .........OK - Comparing phyf003.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 dynf003.tile1.nc .........OK - Comparing dynf003.tile2.nc .........OK - Comparing dynf003.tile3.nc .........OK - Comparing dynf003.tile4.nc .........OK - Comparing dynf003.tile5.nc .........OK - Comparing dynf003.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 ............SKIP for gnu compilers Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1619,14 +1684,14 @@ Checking test 025 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 121.701585 + 0: The total amount of wall time = 325.547437 -Test 025 fv3_ccpp_gsd_debug PASS +Test 026 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_thompson_debug_prod -Checking test 026 fv3_ccpp_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_RRTMGP_debug +Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1690,14 +1755,14 @@ Checking test 026 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.074667 + 0: The total amount of wall time = 311.887452 -Test 026 fv3_ccpp_thompson_debug PASS +Test 027 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_multigases +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_multigases +Checking test 028 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1760,15 +1825,21 @@ Checking test 027 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 + 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 - 0: The total amount of wall time = 191.013240 + 0: The total amount of wall time = 441.145451 -Test 027 fv3_ccpp_thompson_no_aero_debug PASS +Test 028 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1832,14 +1903,14 @@ Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 134.187735 + 0: The total amount of wall time = 133.935288 -Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 029 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -1853,14 +1924,14 @@ Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 221.463238 + 0: The total amount of wall time = 224.800982 -Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfsv16_ugwpv1_debug +Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1918,11 +1989,82 @@ Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 386.492332 + 0: The total amount of wall time = 391.575539 + +Test 031 fv3_gfsv16_ugwpv1_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_ras_debug +Checking test 032 fv3_gfs_v16_ras_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 ............SKIP for gnu compilers + 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 + + 0: The total amount of wall time = 219.115575 -Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 032 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 15 16:09:07 UTC 2021 -Elapsed time: 00h:36m:54s. Have a nice day! +Wed Mar 17 21:28:59 UTC 2021 +Elapsed time: 00h:26m:39s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 4c261b300b..eeb5727b00 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,10 +1,10 @@ -Mon Mar 15 15:46:28 UTC 2021 +Wed Mar 17 20:53:57 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_control +Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -68,14 +68,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 39.820948 + 0: The total amount of wall time = 39.984777 -Test 001 fv3_ccpp_control PASS +Test 001 fv3_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_decomp +Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -139,14 +139,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 41.696005 + 0: The total amount of wall time = 40.778737 -Test 002 fv3_ccpp_decomp PASS +Test 002 fv3_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_2threads +Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -210,14 +210,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 41.704694 + 0: The total amount of wall time = 41.434267 -Test 003 fv3_ccpp_2threads PASS +Test 003 fv3_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_restart +Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -263,14 +263,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 18.894438 + 0: The total amount of wall time = 18.898729 -Test 004 fv3_ccpp_restart PASS +Test 004 fv3_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_read_inc +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_read_inc +Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -334,14 +334,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.373933 + 0: The total amount of wall time = 36.456500 -Test 005 fv3_ccpp_read_inc PASS +Test 005 fv3_read_inc PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_netcdf_esmf +Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -385,14 +385,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 118.985372 + 0: The total amount of wall time = 111.429769 -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS +Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_netcdf +Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -436,14 +436,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 38.453367 + 0: The total amount of wall time = 38.158742 -Test 007 fv3_ccpp_wrtGauss_netcdf PASS +Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_netcdf_parallel +Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -487,14 +487,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 47.808920 + 0: The total amount of wall time = 48.224545 -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS +Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGlatlon_netcdf +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGlatlon_netcdf +Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -538,14 +538,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 38.531347 + 0: The total amount of wall time = 37.504070 -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS +Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_nemsio +Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -589,14 +589,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.806432 + 0: The total amount of wall time = 36.951184 -Test 010 fv3_ccpp_wrtGauss_nemsio PASS +Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_nemsio_c192 +Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -640,14 +640,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 95.943929 + 0: The total amount of wall time = 95.861372 -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS +Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stochy +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_stochy +Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -711,14 +711,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 41.394106 + 0: The total amount of wall time = 41.037955 -Test 012 fv3_ccpp_stochy PASS +Test 012 fv3_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_ca +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_ca +Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -782,14 +782,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 27.442370 + 0: The total amount of wall time = 26.848782 -Test 013 fv3_ccpp_ca PASS +Test 013 fv3_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lndp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_lndp +Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -853,14 +853,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.327471 + 0: The total amount of wall time = 43.912846 -Test 014 fv3_ccpp_lndp PASS +Test 014 fv3_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_iau +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_iau +Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -924,14 +924,14 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.161476 + 0: The total amount of wall time = 36.950534 -Test 015 fv3_ccpp_iau PASS +Test 015 fv3_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lheatstrg +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_lheatstrg +Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -975,14 +975,14 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.584574 + 0: The total amount of wall time = 36.682170 -Test 016 fv3_ccpp_lheatstrg PASS +Test 016 fv3_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfdlmprad_prod -Checking test 017 fv3_ccpp_gfdlmprad results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmprad +Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1027,14 +1027,14 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 650.226553 + 0: The total amount of wall time = 647.779269 -Test 017 fv3_ccpp_gfdlmprad PASS +Test 017 fv3_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmprad_atmwav +Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1079,14 +1079,14 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 794.057355 + 0: The total amount of wall time = 795.365042 -Test 018 fv3_ccpp_gfdlmprad_atmwav PASS +Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio_c768 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_nemsio_c768 +Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 670.292633 + 0: The total amount of wall time = 674.318096 -Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS +Test 019 fv3_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_multigases_repro +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_multigases_repro +Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1208,14 +1208,14 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 75.720520 + 0: The total amount of wall time = 94.344276 -Test 020 fv3_ccpp_multigases PASS +Test 020 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_control_32bit_prod -Checking test 021 fv3_ccpp_control_32bit results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_32bit +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_control_32bit +Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1279,14 +1279,14 @@ Checking test 021 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.119760 + 0: The total amount of wall time = 37.402951 -Test 021 fv3_ccpp_control_32bit PASS +Test 021 fv3_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_stretched_prod -Checking test 022 fv3_ccpp_stretched results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_stretched +Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1338,14 +1338,14 @@ Checking test 022 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 218.355337 + 0: The total amount of wall time = 225.504355 -Test 022 fv3_ccpp_stretched PASS +Test 022 fv3_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_stretched_nest_prod -Checking test 023 fv3_ccpp_stretched_nest results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_stretched_nest +Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1408,40 +1408,40 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK - 0: The total amount of wall time = 241.797501 + 0: The total amount of wall time = 236.955976 -Test 023 fv3_ccpp_stretched_nest PASS +Test 023 fv3_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_regional_control_prod -Checking test 024 fv3_ccpp_regional_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_control +Checking test 024 fv3_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 - 0: The total amount of wall time = 538.287428 + 0: The total amount of wall time = 546.765215 -Test 024 fv3_ccpp_regional_control PASS +Test 024 fv3_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_regional_restart_prod -Checking test 025 fv3_ccpp_regional_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_restart +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_restart +Checking test 025 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 299.440706 + 0: The total amount of wall time = 302.067242 -Test 025 fv3_ccpp_regional_restart PASS +Test 025 fv3_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_regional_quilt_prod -Checking test 026 fv3_ccpp_regional_quilt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_quilt +Checking test 026 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1451,14 +1451,14 @@ Checking test 026 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 574.471287 + 0: The total amount of wall time = 574.553838 -Test 026 fv3_ccpp_regional_quilt PASS +Test 026 fv3_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_regional_quilt_hafs_prod -Checking test 027 fv3_ccpp_regional_quilt_hafs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_hafs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_quilt_hafs +Checking test 027 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1466,28 +1466,28 @@ Checking test 027 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 569.850052 + 0: The total amount of wall time = 574.746857 -Test 027 fv3_ccpp_regional_quilt_hafs PASS +Test 027 fv3_regional_quilt_hafs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 028 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_quilt_netcdf_parallel +Checking test 028 fv3_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 - 0: The total amount of wall time = 574.410244 + 0: The total amount of wall time = 573.410316 -Test 028 fv3_ccpp_regional_quilt_netcdf_parallel PASS +Test 028 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfdlmp_prod -Checking test 029 fv3_ccpp_gfdlmp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmp +Checking test 029 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1531,14 +1531,14 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.512034 + 0: The total amount of wall time = 42.617745 -Test 029 fv3_ccpp_gfdlmp PASS +Test 029 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_gwd +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmprad_gwd +Checking test 030 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1582,14 +1582,14 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.662451 + 0: The total amount of wall time = 42.644786 -Test 030 fv3_ccpp_gfdlmprad_gwd PASS +Test 030 fv3_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_noahmp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmprad_noahmp +Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1633,14 +1633,14 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.493438 + 0: The total amount of wall time = 42.722683 -Test 031 fv3_ccpp_gfdlmprad_noahmp PASS +Test 031 fv3_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_csawmg_prod -Checking test 032 fv3_ccpp_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_csawmg +Checking test 032 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1684,14 +1684,14 @@ Checking test 032 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 108.002941 + 0: The total amount of wall time = 107.398435 -Test 032 fv3_ccpp_csawmg PASS +Test 032 fv3_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_satmedmf_prod -Checking test 033 fv3_ccpp_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_satmedmf +Checking test 033 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1735,14 +1735,14 @@ Checking test 033 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.081347 + 0: The total amount of wall time = 45.666010 -Test 033 fv3_ccpp_satmedmf PASS +Test 033 fv3_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_satmedmfq_prod -Checking test 034 fv3_ccpp_satmedmfq results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmfq +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_satmedmfq +Checking test 034 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1786,14 +1786,14 @@ Checking test 034 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 44.823135 + 0: The total amount of wall time = 45.544278 -Test 034 fv3_ccpp_satmedmfq PASS +Test 034 fv3_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfdlmp_32bit_prod -Checking test 035 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp_32bit +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmp_32bit +Checking test 035 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1837,14 +1837,14 @@ Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 36.315722 + 0: The total amount of wall time = 40.948125 -Test 035 fv3_ccpp_gfdlmp_32bit PASS +Test 035 fv3_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_32bit_post +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmprad_32bit_post +Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1892,14 +1892,14 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 74.857665 + 0: The total amount of wall time = 74.076119 -Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 036 fv3_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_cpt_prod -Checking test 037 fv3_ccpp_cpt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_cpt +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_cpt +Checking test 037 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1949,14 +1949,14 @@ Checking test 037 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 256.721063 + 0: The total amount of wall time = 252.570449 -Test 037 fv3_ccpp_cpt PASS +Test 037 fv3_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gsd_prod -Checking test 038 fv3_ccpp_gsd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gsd +Checking test 038 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2044,14 +2044,14 @@ Checking test 038 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.998657 + 0: The total amount of wall time = 177.306962 -Test 038 fv3_ccpp_gsd PASS +Test 038 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_rap_prod -Checking test 039 fv3_ccpp_rap results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rap +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_rap +Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2115,14 +2115,14 @@ Checking test 039 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 86.539870 + 0: The total amount of wall time = 87.164614 -Test 039 fv3_ccpp_rap PASS +Test 039 fv3_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_hrrr_prod -Checking test 040 fv3_ccpp_hrrr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_hrrr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_hrrr +Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2186,14 +2186,14 @@ Checking test 040 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 94.950462 + 0: The total amount of wall time = 95.376886 -Test 040 fv3_ccpp_hrrr PASS +Test 040 fv3_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_thompson_prod -Checking test 041 fv3_ccpp_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_thompson +Checking test 041 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2257,14 +2257,14 @@ Checking test 041 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 83.883970 + 0: The total amount of wall time = 83.532451 -Test 041 fv3_ccpp_thompson PASS +Test 041 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_thompson_no_aero_prod -Checking test 042 fv3_ccpp_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_thompson_no_aero +Checking test 042 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2328,14 +2328,14 @@ Checking test 042 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 78.864208 + 0: The total amount of wall time = 79.108371 -Test 042 fv3_ccpp_thompson_no_aero PASS +Test 042 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_rrfs_v1beta_prod -Checking test 043 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_rrfs_v1beta +Checking test 043 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2399,14 +2399,14 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 97.051378 + 0: The total amount of wall time = 97.567700 -Test 043 fv3_ccpp_rrfs_v1beta PASS +Test 043 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v15p2_prod -Checking test 044 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v15p2 +Checking test 044 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2470,14 +2470,14 @@ Checking test 044 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 92.268968 + 0: The total amount of wall time = 91.850977 -Test 044 fv3_ccpp_gfs_v15p2 PASS +Test 044 fv3_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_prod -Checking test 045 fv3_ccpp_gfs_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16 +Checking test 045 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2553,14 +2553,14 @@ Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 103.291199 + 0: The total amount of wall time = 102.515385 -Test 045 fv3_ccpp_gfs_v16 PASS +Test 045 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_restart_prod -Checking test 046 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_restart +Checking test 046 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2606,14 +2606,14 @@ Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 52.978843 + 0: The total amount of wall time = 53.055160 -Test 046 fv3_ccpp_gfs_v16_restart PASS +Test 046 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_stochy_prod -Checking test 047 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_stochy +Checking test 047 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2677,14 +2677,14 @@ Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 47.704682 + 0: The total amount of wall time = 47.100106 -Test 047 fv3_ccpp_gfs_v16_stochy PASS +Test 047 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v15p2_RRTMGP +Checking test 048 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2748,14 +2748,14 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 154.916247 + 0: The total amount of wall time = 153.246460 -Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 048 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_RRTMGP +Checking test 049 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2819,14 +2819,14 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 163.209395 + 0: The total amount of wall time = 156.436174 -Test 049 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 049 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_RRTMGP_c192L127 +Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 635.194443 + 0: The total amount of wall time = 624.869992 -Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +Test 050 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod -Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_RRTMGP_2thrd +Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2955,14 +2955,14 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 169.926189 + 0: The total amount of wall time = 175.662028 -Test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS +Test 051 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfsv16_csawmg_prod -Checking test 052 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfsv16_csawmg +Checking test 052 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3006,14 +3006,14 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 116.387435 + 0: The total amount of wall time = 114.438854 -Test 052 fv3_ccpp_gfsv16_csawmg PASS +Test 052 fv3_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfsv16_csawmgt +Checking test 053 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3057,14 +3057,14 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 114.610591 + 0: The total amount of wall time = 112.480343 -Test 053 fv3_ccpp_gfsv16_csawmgt PASS +Test 053 fv3_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gocart_clm_prod -Checking test 054 fv3_ccpp_gocart_clm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gocart_clm +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gocart_clm +Checking test 054 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3108,14 +3108,14 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 46.833943 + 0: The total amount of wall time = 46.884791 -Test 054 fv3_ccpp_gocart_clm PASS +Test 054 fv3_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_flake_prod -Checking test 055 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_flake +Checking test 055 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3179,14 +3179,14 @@ Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 94.028350 + 0: The total amount of wall time = 94.609762 -Test 055 fv3_ccpp_gfs_v16_flake PASS +Test 055 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_HAFS_v0_hwrf_thompson +Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3250,14 +3250,14 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 141.391373 + 0: The total amount of wall time = 141.396630 -Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 056 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -3271,14 +3271,14 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 280.893582 + 0: The total amount of wall time = 280.570341 -Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 057 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfsv16_ugwpv1 +Checking test 058 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3336,14 +3336,14 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 163.002475 + 0: The total amount of wall time = 163.168728 -Test 058 fv3_ccpp_gfsv16_ugwpv1 PASS +Test 058 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfsv16_ugwpv1_warmstart +Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3401,14 +3401,85 @@ Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 162.308474 + 0: The total amount of wall time = 164.991385 -Test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 059 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_ras +Checking test 060 fv3_gfs_v16_ras 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 + + 0: The total amount of wall time = 88.093064 + +Test 060 fv3_gfs_v16_ras PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v15p2_debug +Checking test 061 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3472,14 +3543,14 @@ Checking test 060 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.913909 + 0: The total amount of wall time = 227.023364 -Test 060 fv3_ccpp_gfs_v15p2_debug PASS +Test 061 fv3_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_debug_prod -Checking test 061 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_debug +Checking test 062 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3543,14 +3614,14 @@ Checking test 061 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.863329 + 0: The total amount of wall time = 170.542628 -Test 061 fv3_ccpp_gfs_v16_debug PASS +Test 062 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v15p2_RRTMGP_debug +Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3614,14 +3685,14 @@ Checking test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 345.255492 + 0: The total amount of wall time = 343.080931 -Test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 063 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 063 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_RRTMGP_debug +Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3685,28 +3756,28 @@ Checking test 063 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.023037 + 0: The total amount of wall time = 350.730465 -Test 063 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 064 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_regional_control_debug_prod -Checking test 064 fv3_ccpp_regional_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_control_debug +Checking test 065 fv3_regional_control_debug 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 - 0: The total amount of wall time = 346.152073 + 0: The total amount of wall time = 343.648586 -Test 064 fv3_ccpp_regional_control_debug PASS +Test 065 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_control_debug_prod -Checking test 065 fv3_ccpp_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_control_debug +Checking test 066 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3732,14 +3803,14 @@ Checking test 065 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 131.753745 + 0: The total amount of wall time = 131.367273 -Test 065 fv3_ccpp_control_debug PASS +Test 066 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_stretched_nest_debug_prod -Checking test 066 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_stretched_nest_debug +Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3755,14 +3826,14 @@ Checking test 066 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 353.092963 + 0: The total amount of wall time = 353.115307 -Test 066 fv3_ccpp_stretched_nest_debug PASS +Test 067 fv3_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gsd_debug_prod -Checking test 067 fv3_ccpp_gsd_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gsd_debug +Checking test 068 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3826,14 +3897,14 @@ Checking test 067 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.644216 + 0: The total amount of wall time = 198.377431 -Test 067 fv3_ccpp_gsd_debug PASS +Test 068 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 068 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_diag3d_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gsd_diag3d_debug +Checking test 069 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3897,14 +3968,14 @@ Checking test 068 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 262.831129 + 0: The total amount of wall time = 250.833859 -Test 068 fv3_ccpp_gsd_diag3d_debug PASS +Test 069 fv3_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_thompson_debug_prod -Checking test 069 fv3_ccpp_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_thompson_debug +Checking test 070 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3968,14 +4039,14 @@ Checking test 069 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 330.254832 + 0: The total amount of wall time = 328.146694 -Test 069 fv3_ccpp_thompson_debug PASS +Test 070 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 070 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_thompson_no_aero_debug +Checking test 071 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4039,14 +4110,14 @@ Checking test 070 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 313.972837 + 0: The total amount of wall time = 316.827349 -Test 070 fv3_ccpp_thompson_no_aero_debug PASS +Test 071 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 071 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_rrfs_v1beta_debug +Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4110,14 +4181,14 @@ Checking test 071 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.159450 + 0: The total amount of wall time = 189.821750 -Test 071 fv3_ccpp_rrfs_v1beta_debug PASS +Test 072 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4181,14 +4252,14 @@ Checking test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 204.837334 + 0: The total amount of wall time = 201.618230 -Test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -4202,14 +4273,14 @@ Checking test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 384.302992 + 0: The total amount of wall time = 374.293835 -Test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 074 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfsv16_ugwpv1_debug +Checking test 075 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -4267,14 +4338,85 @@ Checking test 074 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 549.493664 + 0: The total amount of wall time = 542.635850 + +Test 075 fv3_gfsv16_ugwpv1_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_ras_debug +Checking test 076 fv3_gfs_v16_ras_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 + + 0: The total amount of wall time = 309.132295 -Test 074 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 076 fv3_gfs_v16_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_control_prod -Checking test 075 cpld_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_control +Checking test 077 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4323,14 +4465,14 @@ Checking test 075 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 90.101533 + 0: The total amount of wall time = 90.339128 -Test 075 cpld_control PASS +Test 077 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_prod -Checking test 076 cpld_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart +Checking test 078 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4379,14 +4521,14 @@ Checking test 076 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 55.423159 + 0: The total amount of wall time = 54.768869 -Test 076 cpld_restart PASS +Test 078 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_controlfrac_prod -Checking test 077 cpld_controlfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_controlfrac +Checking test 079 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4435,14 +4577,14 @@ Checking test 077 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 90.707759 + 0: The total amount of wall time = 95.907851 -Test 077 cpld_controlfrac PASS +Test 079 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restartfrac_prod -Checking test 078 cpld_restartfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restartfrac +Checking test 080 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4491,14 +4633,14 @@ Checking test 078 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 55.579114 + 0: The total amount of wall time = 55.511067 -Test 078 cpld_restartfrac PASS +Test 080 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_2threads_prod -Checking test 079 cpld_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_2threads +Checking test 081 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4547,14 +4689,14 @@ Checking test 079 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 110.233780 + 0: The total amount of wall time = 110.409809 -Test 079 cpld_2threads PASS +Test 081 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_decomp_prod -Checking test 080 cpld_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_decomp +Checking test 082 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4603,14 +4745,14 @@ Checking test 080 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 87.807401 + 0: The total amount of wall time = 88.728218 -Test 080 cpld_decomp PASS +Test 082 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_satmedmf_prod -Checking test 081 cpld_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_satmedmf +Checking test 083 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4659,14 +4801,14 @@ Checking test 081 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 86.781482 + 0: The total amount of wall time = 87.231026 -Test 081 cpld_satmedmf PASS +Test 083 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_ca_prod -Checking test 082 cpld_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_ca +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_ca +Checking test 084 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4715,14 +4857,14 @@ Checking test 082 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 88.532365 + 0: The total amount of wall time = 87.981922 -Test 082 cpld_ca PASS +Test 084 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_control_c192_prod -Checking test 083 cpld_control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_control_c192 +Checking test 085 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4771,14 +4913,14 @@ Checking test 083 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 375.899109 + 0: The total amount of wall time = 375.367746 -Test 083 cpld_control_c192 PASS +Test 085 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_c192_prod -Checking test 084 cpld_restart_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart_c192 +Checking test 086 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4827,14 +4969,14 @@ Checking test 084 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 271.862402 + 0: The total amount of wall time = 270.814211 -Test 084 cpld_restart_c192 PASS +Test 086 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_controlfrac_c192_prod -Checking test 085 cpld_controlfrac_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_controlfrac_c192 +Checking test 087 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4883,14 +5025,14 @@ Checking test 085 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 373.801676 + 0: The total amount of wall time = 373.279468 -Test 085 cpld_controlfrac_c192 PASS +Test 087 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restartfrac_c192_prod -Checking test 086 cpld_restartfrac_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restartfrac_c192 +Checking test 088 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4939,14 +5081,14 @@ Checking test 086 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 271.784243 + 0: The total amount of wall time = 266.135016 -Test 086 cpld_restartfrac_c192 PASS +Test 088 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_control_c384_prod -Checking test 087 cpld_control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_control_c384 +Checking test 089 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4998,14 +5140,14 @@ Checking test 087 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1319.686156 + 0: The total amount of wall time = 1329.110627 -Test 087 cpld_control_c384 PASS +Test 089 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_c384_prod -Checking test 088 cpld_restart_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart_c384 +Checking test 090 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5057,14 +5199,14 @@ Checking test 088 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 695.474549 + 0: The total amount of wall time = 696.887685 -Test 088 cpld_restart_c384 PASS +Test 090 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_controlfrac_c384_prod -Checking test 089 cpld_controlfrac_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_controlfrac_c384 +Checking test 091 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5116,14 +5258,14 @@ Checking test 089 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1320.686769 + 0: The total amount of wall time = 1312.699512 -Test 089 cpld_controlfrac_c384 PASS +Test 091 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restartfrac_c384_prod -Checking test 090 cpld_restartfrac_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restartfrac_c384 +Checking test 092 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5175,14 +5317,14 @@ Checking test 090 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 688.747277 + 0: The total amount of wall time = 695.786189 -Test 090 cpld_restartfrac_c384 PASS +Test 092 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmark_prod -Checking test 091 cpld_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmark +Checking test 093 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5234,14 +5376,14 @@ Checking test 091 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 819.239022 + 0: The total amount of wall time = 822.009683 -Test 091 cpld_bmark PASS +Test 093 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_bmark_prod -Checking test 092 cpld_restart_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart_bmark +Checking test 094 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5293,14 +5435,14 @@ Checking test 092 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 453.508104 + 0: The total amount of wall time = 455.656186 -Test 092 cpld_restart_bmark PASS +Test 094 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmarkfrac_prod -Checking test 093 cpld_bmarkfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmarkfrac +Checking test 095 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5352,14 +5494,14 @@ Checking test 093 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 818.880256 + 0: The total amount of wall time = 819.301220 -Test 093 cpld_bmarkfrac PASS +Test 095 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_bmarkfrac_prod -Checking test 094 cpld_restart_bmarkfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart_bmarkfrac +Checking test 096 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5411,14 +5553,14 @@ Checking test 094 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 440.989959 + 0: The total amount of wall time = 450.464189 -Test 094 cpld_restart_bmarkfrac PASS +Test 096 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmarkfrac_v16_prod -Checking test 095 cpld_bmarkfrac_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmarkfrac_v16 +Checking test 097 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5470,14 +5612,14 @@ Checking test 095 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 1323.191829 + 0: The total amount of wall time = 1305.824498 -Test 095 cpld_bmarkfrac_v16 PASS +Test 097 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_bmarkfrac_v16_prod -Checking test 096 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart_bmarkfrac_v16 +Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5529,14 +5671,14 @@ Checking test 096 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 729.645432 + 0: The total amount of wall time = 736.928195 -Test 096 cpld_restart_bmarkfrac_v16 PASS +Test 098 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmark_wave_prod -Checking test 097 cpld_bmark_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark_wave +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmark_wave +Checking test 099 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5591,14 +5733,14 @@ Checking test 097 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1366.430816 + 0: The total amount of wall time = 1371.881760 -Test 097 cpld_bmark_wave PASS +Test 099 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmarkfrac_wave_prod -Checking test 098 cpld_bmarkfrac_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_wave +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmarkfrac_wave +Checking test 100 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5653,14 +5795,14 @@ Checking test 098 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1365.825424 + 0: The total amount of wall time = 1367.920208 -Test 098 cpld_bmarkfrac_wave PASS +Test 100 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmarkfrac_wave_v16_prod -Checking test 099 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmarkfrac_wave_v16 +Checking test 101 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5714,14 +5856,14 @@ Checking test 099 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 900.440136 + 0: The total amount of wall time = 905.989112 -Test 099 cpld_bmarkfrac_wave_v16 PASS +Test 101 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_control_wave_prod -Checking test 100 cpld_control_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_wave +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_control_wave +Checking test 102 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5773,14 +5915,14 @@ Checking test 100 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 788.579555 + 0: The total amount of wall time = 781.782198 -Test 100 cpld_control_wave PASS +Test 102 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_debug_prod -Checking test 101 cpld_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_debug +Checking test 103 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5829,14 +5971,14 @@ Checking test 101 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 291.535966 + 0: The total amount of wall time = 288.146012 -Test 101 cpld_debug PASS +Test 103 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_debugfrac_prod -Checking test 102 cpld_debugfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debugfrac +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_debugfrac +Checking test 104 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5885,74 +6027,74 @@ Checking test 102 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 290.223750 + 0: The total amount of wall time = 290.711654 -Test 102 cpld_debugfrac PASS +Test 104 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_control_cfsr -Checking test 103 datm_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_control_cfsr +Checking test 105 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 - 0: The total amount of wall time = 95.380910 + 0: The total amount of wall time = 99.712761 -Test 103 datm_control_cfsr PASS +Test 105 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_restart_cfsr -Checking test 104 datm_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_restart_cfsr +Checking test 106 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 - 0: The total amount of wall time = 61.520902 + 0: The total amount of wall time = 60.478684 -Test 104 datm_restart_cfsr PASS +Test 106 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_control_gefs -Checking test 105 datm_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_control_gefs +Checking test 107 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 - 0: The total amount of wall time = 87.965986 + 0: The total amount of wall time = 89.962727 -Test 105 datm_control_gefs PASS +Test 107 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_bulk_cfsr -Checking test 106 datm_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_bulk_cfsr +Checking test 108 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 - 0: The total amount of wall time = 90.934683 + 0: The total amount of wall time = 94.244593 -Test 106 datm_bulk_cfsr PASS +Test 108 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_bulk_gefs -Checking test 107 datm_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_bulk_gefs +Checking test 109 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 - 0: The total amount of wall time = 88.832563 + 0: The total amount of wall time = 92.172983 -Test 107 datm_bulk_gefs PASS +Test 109 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_mx025_cfsr -Checking test 108 datm_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_mx025_cfsr +Checking test 110 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5960,14 +6102,14 @@ Checking test 108 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 359.304711 + 0: The total amount of wall time = 366.399041 -Test 108 datm_mx025_cfsr PASS +Test 110 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_mx025_gefs -Checking test 109 datm_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_mx025_gefs +Checking test 111 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5975,23 +6117,23 @@ Checking test 109 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 357.808078 + 0: The total amount of wall time = 357.507390 -Test 109 datm_mx025_gefs PASS +Test 111 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_debug_cfsr -Checking test 110 datm_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_debug_cfsr +Checking test 112 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 - 0: The total amount of wall time = 267.113286 + 0: The total amount of wall time = 265.079234 -Test 110 datm_debug_cfsr PASS +Test 112 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 15 17:16:13 UTC 2021 -Elapsed time: 01h:29m:46s. Have a nice day! +Wed Mar 17 22:25:38 UTC 2021 +Elapsed time: 01h:31m:42s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index d3fabe05ca..d21bbca020 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,10 +1,10 @@ -Mon Mar 15 15:31:15 GMT 2021 +Wed Mar 17 19:33:34 GMT 2021 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_control +Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -68,14 +68,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 60.812134 +The total amount of wall time = 59.019073 -Test 001 fv3_ccpp_control PASS +Test 001 fv3_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_2threads_prod -Checking test 002 fv3_ccpp_2threads results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_2threads +Checking test 002 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -139,14 +139,14 @@ Checking test 002 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 281.513271 +The total amount of wall time = 291.380542 -Test 002 fv3_ccpp_2threads PASS +Test 002 fv3_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_restart_prod -Checking test 003 fv3_ccpp_restart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_restart +Checking test 003 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -192,14 +192,14 @@ Checking test 003 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 27.429526 +The total amount of wall time = 27.673882 -Test 003 fv3_ccpp_restart PASS +Test 003 fv3_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_read_inc_prod -Checking test 004 fv3_ccpp_read_inc results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_read_inc +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_read_inc +Checking test 004 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -263,14 +263,14 @@ Checking test 004 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.492872 +The total amount of wall time = 52.907264 -Test 004 fv3_ccpp_read_inc PASS +Test 004 fv3_read_inc PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGauss_netcdf_esmf +Checking test 005 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -314,14 +314,14 @@ Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 153.693164 +The total amount of wall time = 156.743211 -Test 005 fv3_ccpp_wrtGauss_netcdf_esmf PASS +Test 005 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGauss_netcdf +Checking test 006 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -365,14 +365,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.510003 +The total amount of wall time = 52.684815 -Test 006 fv3_ccpp_wrtGauss_netcdf PASS +Test 006 fv3_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGauss_netcdf_parallel +Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -416,14 +416,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 71.922677 +The total amount of wall time = 68.053817 -Test 007 fv3_ccpp_wrtGauss_netcdf_parallel PASS +Test 007 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGlatlon_netcdf +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGlatlon_netcdf +Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -467,14 +467,14 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.692752 +The total amount of wall time = 52.984470 -Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS +Test 008 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGauss_nemsio +Checking test 009 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -518,14 +518,14 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.411888 +The total amount of wall time = 52.310479 -Test 009 fv3_ccpp_wrtGauss_nemsio PASS +Test 009 fv3_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGauss_nemsio_c192 +Checking test 010 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -569,14 +569,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 141.282702 +The total amount of wall time = 140.905612 -Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS +Test 010 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_stochy_prod -Checking test 011 fv3_ccpp_stochy results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stochy +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_stochy +Checking test 011 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -640,14 +640,14 @@ Checking test 011 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.295106 +The total amount of wall time = 58.977465 -Test 011 fv3_ccpp_stochy PASS +Test 011 fv3_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_ca_prod -Checking test 012 fv3_ccpp_ca results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_ca +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_ca +Checking test 012 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -711,14 +711,14 @@ Checking test 012 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 41.881267 +The total amount of wall time = 45.157381 -Test 012 fv3_ccpp_ca PASS +Test 012 fv3_ca PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_lndp_prod -Checking test 013 fv3_ccpp_lndp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lndp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_lndp +Checking test 013 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -782,14 +782,14 @@ Checking test 013 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 65.033832 +The total amount of wall time = 66.065248 -Test 013 fv3_ccpp_lndp PASS +Test 013 fv3_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_iau_prod -Checking test 014 fv3_ccpp_iau results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_iau +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_iau +Checking test 014 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -853,14 +853,14 @@ Checking test 014 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.527489 +The total amount of wall time = 52.581130 -Test 014 fv3_ccpp_iau PASS +Test 014 fv3_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_lheatstrg_prod -Checking test 015 fv3_ccpp_lheatstrg results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lheatstrg +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_lheatstrg +Checking test 015 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -904,14 +904,14 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.427079 +The total amount of wall time = 52.169134 -Test 015 fv3_ccpp_lheatstrg PASS +Test 015 fv3_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_multigases_prod -Checking test 016 fv3_ccpp_multigases results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_multigases_repro +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_multigases_repro +Checking test 016 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -981,14 +981,14 @@ Checking test 016 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 105.517589 +The total amount of wall time = 130.857413 -Test 016 fv3_ccpp_multigases PASS +Test 016 fv3_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_control_32bit_prod -Checking test 017 fv3_ccpp_control_32bit results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_32bit +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_control_32bit +Checking test 017 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1052,14 +1052,14 @@ Checking test 017 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.975294 +The total amount of wall time = 57.663932 -Test 017 fv3_ccpp_control_32bit PASS +Test 017 fv3_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_stretched_prod -Checking test 018 fv3_ccpp_stretched results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_stretched +Checking test 018 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1111,14 +1111,14 @@ Checking test 018 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 393.675727 +The total amount of wall time = 393.187766 -Test 018 fv3_ccpp_stretched PASS +Test 018 fv3_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_stretched_nest_prod -Checking test 019 fv3_ccpp_stretched_nest results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_stretched_nest +Checking test 019 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1181,40 +1181,40 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 426.333542 +The total amount of wall time = 423.882746 -Test 019 fv3_ccpp_stretched_nest PASS +Test 019 fv3_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_regional_control_prod -Checking test 020 fv3_ccpp_regional_control results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_control +Checking test 020 fv3_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 -The total amount of wall time = 856.461944 +The total amount of wall time = 858.855780 -Test 020 fv3_ccpp_regional_control PASS +Test 020 fv3_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_regional_restart_prod -Checking test 021 fv3_ccpp_regional_restart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_restart +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_restart +Checking test 021 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 479.157608 +The total amount of wall time = 480.755054 -Test 021 fv3_ccpp_regional_restart PASS +Test 021 fv3_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_regional_quilt_prod -Checking test 022 fv3_ccpp_regional_quilt results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_quilt +Checking test 022 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1224,14 +1224,14 @@ Checking test 022 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 844.481965 +The total amount of wall time = 848.654061 -Test 022 fv3_ccpp_regional_quilt PASS +Test 022 fv3_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_regional_quilt_hafs_prod -Checking test 023 fv3_ccpp_regional_quilt_hafs results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_hafs +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_quilt_hafs +Checking test 023 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1239,28 +1239,28 @@ Checking test 023 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 849.056197 +The total amount of wall time = 850.474449 -Test 023 fv3_ccpp_regional_quilt_hafs PASS +Test 023 fv3_regional_quilt_hafs PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_quilt_netcdf_parallel +Checking test 024 fv3_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 -The total amount of wall time = 842.995023 +The total amount of wall time = 854.368540 -Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS +Test 024 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfdlmp_prod -Checking test 025 fv3_ccpp_gfdlmp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfdlmp +Checking test 025 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.895407 +The total amount of wall time = 60.547225 -Test 025 fv3_ccpp_gfdlmp PASS +Test 025 fv3_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_gwd +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfdlmprad_gwd +Checking test 026 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1355,14 +1355,14 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.145853 +The total amount of wall time = 60.741896 -Test 026 fv3_ccpp_gfdlmprad_gwd PASS +Test 026 fv3_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_noahmp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfdlmprad_noahmp +Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1406,14 +1406,14 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.901828 +The total amount of wall time = 61.105010 -Test 027 fv3_ccpp_gfdlmprad_noahmp PASS +Test 027 fv3_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_csawmg_prod -Checking test 028 fv3_ccpp_csawmg results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_csawmg +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_csawmg +Checking test 028 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1457,14 +1457,14 @@ Checking test 028 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 152.610570 +The total amount of wall time = 150.699055 -Test 028 fv3_ccpp_csawmg PASS +Test 028 fv3_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_satmedmf_prod -Checking test 029 fv3_ccpp_satmedmf results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmf +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_satmedmf +Checking test 029 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1508,14 +1508,14 @@ Checking test 029 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 65.117735 +The total amount of wall time = 65.351403 -Test 029 fv3_ccpp_satmedmf PASS +Test 029 fv3_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_satmedmfq_prod -Checking test 030 fv3_ccpp_satmedmfq results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmfq +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_satmedmfq +Checking test 030 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1559,14 +1559,14 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 65.810936 +The total amount of wall time = 65.648666 -Test 030 fv3_ccpp_satmedmfq PASS +Test 030 fv3_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfdlmp_32bit_prod -Checking test 031 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp_32bit +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfdlmp_32bit +Checking test 031 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1610,14 +1610,14 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.524905 +The total amount of wall time = 52.508828 -Test 031 fv3_ccpp_gfdlmp_32bit PASS +Test 031 fv3_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_32bit_post +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfdlmprad_32bit_post +Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1665,14 +1665,14 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 97.468580 +The total amount of wall time = 96.512019 -Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 032 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_cpt_prod -Checking test 033 fv3_ccpp_cpt results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_cpt +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_cpt +Checking test 033 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1722,14 +1722,14 @@ Checking test 033 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 354.875700 +The total amount of wall time = 349.283110 -Test 033 fv3_ccpp_cpt PASS +Test 033 fv3_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gsd_prod -Checking test 034 fv3_ccpp_gsd results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gsd +Checking test 034 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1817,14 +1817,14 @@ Checking test 034 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 240.290235 +The total amount of wall time = 244.449669 -Test 034 fv3_ccpp_gsd PASS +Test 034 fv3_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_thompson_prod -Checking test 035 fv3_ccpp_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_thompson +Checking test 035 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1888,14 +1888,14 @@ Checking test 035 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 113.245163 +The total amount of wall time = 116.800567 -Test 035 fv3_ccpp_thompson PASS +Test 035 fv3_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_thompson_no_aero_prod -Checking test 036 fv3_ccpp_thompson_no_aero results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_thompson_no_aero +Checking test 036 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1959,14 +1959,14 @@ Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 107.577594 +The total amount of wall time = 108.742722 -Test 036 fv3_ccpp_thompson_no_aero PASS +Test 036 fv3_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v15p2_prod -Checking test 037 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v15p2 +Checking test 037 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2030,14 +2030,14 @@ Checking test 037 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 117.234830 +The total amount of wall time = 118.552870 -Test 037 fv3_ccpp_gfs_v15p2 PASS +Test 037 fv3_gfs_v15p2 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_prod -Checking test 038 fv3_ccpp_gfs_v16 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16 +Checking test 038 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2113,14 +2113,14 @@ Checking test 038 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 146.070385 +The total amount of wall time = 145.083847 -Test 038 fv3_ccpp_gfs_v16 PASS +Test 038 fv3_gfs_v16 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_restart_prod -Checking test 039 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_restart +Checking test 039 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2166,14 +2166,14 @@ Checking test 039 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 75.699602 +The total amount of wall time = 75.241385 -Test 039 fv3_ccpp_gfs_v16_restart PASS +Test 039 fv3_gfs_v16_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_stochy_prod -Checking test 040 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_stochy +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_stochy +Checking test 040 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2237,14 +2237,14 @@ Checking test 040 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 66.131955 +The total amount of wall time = 66.542223 -Test 040 fv3_ccpp_gfs_v16_stochy PASS +Test 040 fv3_gfs_v16_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v15p2_RRTMGP +Checking test 041 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2308,14 +2308,14 @@ Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 186.196478 +The total amount of wall time = 187.628841 -Test 041 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 041 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 042 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_RRTMGP +Checking test 042 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2379,14 +2379,14 @@ Checking test 042 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 188.927299 +The total amount of wall time = 189.007064 -Test 042 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 042 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 043 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_RRTMGP_c192L127 +Checking test 043 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2444,14 +2444,14 @@ Checking test 043 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 802.617376 +The total amount of wall time = 801.382491 -Test 043 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +Test 043 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod -Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_RRTMGP_2thrd +Checking test 044 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2515,14 +2515,14 @@ Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 663.423530 +The total amount of wall time = 768.356275 -Test 044 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS +Test 044 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfsv16_csawmg_prod -Checking test 045 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmg +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfsv16_csawmg +Checking test 045 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2566,14 +2566,14 @@ Checking test 045 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 162.800113 +The total amount of wall time = 163.570737 -Test 045 fv3_ccpp_gfsv16_csawmg PASS +Test 045 fv3_gfsv16_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfsv16_csawmgt +Checking test 046 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2617,14 +2617,14 @@ Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 160.934900 +The total amount of wall time = 160.409704 -Test 046 fv3_ccpp_gfsv16_csawmgt PASS +Test 046 fv3_gfsv16_csawmgt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gocart_clm_prod -Checking test 047 fv3_ccpp_gocart_clm results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gocart_clm +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gocart_clm +Checking test 047 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2668,14 +2668,14 @@ Checking test 047 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 66.963537 +The total amount of wall time = 67.442475 -Test 047 fv3_ccpp_gocart_clm PASS +Test 047 fv3_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_flake_prod -Checking test 048 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_flake +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_flake +Checking test 048 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2739,14 +2739,14 @@ Checking test 048 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 119.851463 +The total amount of wall time = 119.774709 -Test 048 fv3_ccpp_gfs_v16_flake PASS +Test 048 fv3_gfs_v16_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_HAFS_v0_hwrf_thompson +Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2810,14 +2810,14 @@ Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 191.677747 +The total amount of wall time = 191.359263 -Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 049 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2831,14 +2831,14 @@ Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 356.551422 +The total amount of wall time = 357.358522 -Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfsv16_ugwpv1 +Checking test 051 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2896,14 +2896,14 @@ Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 234.051149 +The total amount of wall time = 228.829873 -Test 051 fv3_ccpp_gfsv16_ugwpv1 PASS +Test 051 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfsv16_ugwpv1_warmstart +Checking test 052 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2961,14 +2961,85 @@ Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 230.930722 +The total amount of wall time = 229.672114 + +Test 052 fv3_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_ras +Checking test 053 fv3_gfs_v16_ras 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 + +The total amount of wall time = 123.129870 -Test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 053 fv3_gfs_v16_ras PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v15p2_debug +Checking test 054 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3032,14 +3103,14 @@ Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 272.393572 +The total amount of wall time = 271.873950 -Test 053 fv3_ccpp_gfs_v15p2_debug PASS +Test 054 fv3_gfs_v15p2_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_debug_prod -Checking test 054 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_debug +Checking test 055 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3103,14 +3174,14 @@ Checking test 054 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 209.701201 +The total amount of wall time = 207.082359 -Test 054 fv3_ccpp_gfs_v16_debug PASS +Test 055 fv3_gfs_v16_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v15p2_RRTMGP_debug +Checking test 056 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3174,14 +3245,14 @@ Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 437.835363 +The total amount of wall time = 438.413542 -Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 056 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 056 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_RRTMGP_debug +Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3245,28 +3316,28 @@ Checking test 056 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 447.543650 +The total amount of wall time = 447.659668 -Test 056 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 057 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_regional_control_debug_prod -Checking test 057 fv3_ccpp_regional_control_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_control_debug +Checking test 058 fv3_regional_control_debug 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 -The total amount of wall time = 457.030482 +The total amount of wall time = 458.928966 -Test 057 fv3_ccpp_regional_control_debug PASS +Test 058 fv3_regional_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_control_debug_prod -Checking test 058 fv3_ccpp_control_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_control_debug +Checking test 059 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3292,14 +3363,14 @@ Checking test 058 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 159.978141 +The total amount of wall time = 157.690354 -Test 058 fv3_ccpp_control_debug PASS +Test 059 fv3_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_stretched_nest_debug_prod -Checking test 059 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_stretched_nest_debug +Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3315,14 +3386,14 @@ Checking test 059 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 534.778950 +The total amount of wall time = 534.941205 -Test 059 fv3_ccpp_stretched_nest_debug PASS +Test 060 fv3_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gsd_debug_prod -Checking test 060 fv3_ccpp_gsd_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gsd_debug +Checking test 061 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3386,14 +3457,14 @@ Checking test 060 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 240.124856 +The total amount of wall time = 238.318598 -Test 060 fv3_ccpp_gsd_debug PASS +Test 061 fv3_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_diag3d_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gsd_diag3d_debug +Checking test 062 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3457,14 +3528,14 @@ Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 270.495321 +The total amount of wall time = 270.684010 -Test 061 fv3_ccpp_gsd_diag3d_debug PASS +Test 062 fv3_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_thompson_debug_prod -Checking test 062 fv3_ccpp_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_thompson_debug +Checking test 063 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3528,14 +3599,14 @@ Checking test 062 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 416.982382 +The total amount of wall time = 417.304640 -Test 062 fv3_ccpp_thompson_debug PASS +Test 063 fv3_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_thompson_no_aero_debug +Checking test 064 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3599,14 +3670,14 @@ Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 403.741014 +The total amount of wall time = 402.109266 -Test 063 fv3_ccpp_thompson_no_aero_debug PASS +Test 064 fv3_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_rrfs_v1beta_debug +Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3670,14 +3741,14 @@ Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 231.947853 +The total amount of wall time = 232.941492 -Test 064 fv3_ccpp_rrfs_v1beta_debug PASS +Test 065 fv3_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3741,14 +3812,14 @@ Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 247.905366 +The total amount of wall time = 247.699269 -Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 066 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3762,14 +3833,14 @@ Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 463.748015 +The total amount of wall time = 462.514551 -Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 067 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfsv16_ugwpv1_debug +Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3827,11 +3898,82 @@ Checking test 067 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 711.012031 +The total amount of wall time = 708.519770 + +Test 068 fv3_gfsv16_ugwpv1_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_ras_debug +Checking test 069 fv3_gfs_v16_ras_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 + +The total amount of wall time = 395.906445 -Test 067 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 069 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 15 18:14:39 GMT 2021 -Elapsed time: 02h:43m:24s. Have a nice day! +Wed Mar 17 21:50:12 GMT 2021 +Elapsed time: 02h:16m:39s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 8dffe79b7b..cba4c74880 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -390,6 +390,7 @@ export IMFSHALCNV=2 export HWRF_SAMFSHAL=.F. export IMFDEEPCNV=2 export HWRF_SAMFDEEP=.F. +export RAS=.F. # SFC export DO_MYJSFC=.F. diff --git a/tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN b/tests/fv3_conf/c96_HAFS_v0_hwrf_run.IN similarity index 100% rename from tests/fv3_conf/ccpp_c96_HAFS_v0_hwrf_run.IN rename to tests/fv3_conf/c96_HAFS_v0_hwrf_run.IN diff --git a/tests/fv3_conf/ccpp_cpt_run.IN b/tests/fv3_conf/ccpp_cpt_run.IN deleted file mode 100644 index 8828656bed..0000000000 --- a/tests/fv3_conf/ccpp_cpt_run.IN +++ /dev/null @@ -1,20 +0,0 @@ -rm -fr INPUT RESTART -inputdir=FV3_input_data_127 -if [ $WARM_START = .F. ]; then - cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . - mkdir RESTART -else - mkdir INPUT RESTART - cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT -fi -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . -cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[INPUTDATA_ROOT]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[INPUTDATA_ROOT]/${inputdir}/*grb . -cp @[INPUTDATA_ROOT]/${inputdir}/*_table . -cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_mg3tke diag_table -cp @[INPUTDATA_ROOT]/${inputdir}/field_table_csawmg3shoc field_table -cp @[INPUTDATA_ROOT]/${inputdir}/*configure . diff --git a/tests/fv3_conf/ccpp_csawmg3shoc127_run.IN b/tests/fv3_conf/ccpp_csawmg3shoc127_run.IN deleted file mode 100644 index 8828656bed..0000000000 --- a/tests/fv3_conf/ccpp_csawmg3shoc127_run.IN +++ /dev/null @@ -1,20 +0,0 @@ -rm -fr INPUT RESTART -inputdir=FV3_input_data_127 -if [ $WARM_START = .F. ]; then - cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . - mkdir RESTART -else - mkdir INPUT RESTART - cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT -fi -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . -cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[INPUTDATA_ROOT]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[INPUTDATA_ROOT]/${inputdir}/*grb . -cp @[INPUTDATA_ROOT]/${inputdir}/*_table . -cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_mg3tke diag_table -cp @[INPUTDATA_ROOT]/${inputdir}/field_table_csawmg3shoc field_table -cp @[INPUTDATA_ROOT]/${inputdir}/*configure . diff --git a/tests/fv3_conf/ccpp_csawmg_run.IN b/tests/fv3_conf/ccpp_csawmg_run.IN deleted file mode 100644 index 073cdb250c..0000000000 --- a/tests/fv3_conf/ccpp_csawmg_run.IN +++ /dev/null @@ -1,50 +0,0 @@ -rm -fr INPUT RESTART - -UNIT_TEST=${UNIT_TEST:-false} -if [ $WARM_START = .F. ]; then - cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . - mkdir RESTART -else - mkdir INPUT RESTART - - if [[ ${UNIT_TEST} == false ]]; then - cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT - else - cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT - rm -f INPUT/fv_core.res.* - rm -f INPUT/fv_srf_wnd.res.* - rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.* - rm -f INPUT/sfc_data.* - for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do - [ -e $RFILE ] || exit 1 - RFILE_OLD=$(basename $RFILE) - RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" - cp $RFILE INPUT/${RFILE_NEW} - done - fi -fi - -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . -cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . -cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgrs diag_table -#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgrs field_table -cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_csawmg field_table -cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . -for n in 01 02 03 04 05 06 07 08 09 10 11 12; do -ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc -done -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat diff --git a/tests/fv3_conf/ccpp_csawmgshoc_run.IN b/tests/fv3_conf/ccpp_csawmgshoc_run.IN deleted file mode 100644 index 6c7bbd8ed3..0000000000 --- a/tests/fv3_conf/ccpp_csawmgshoc_run.IN +++ /dev/null @@ -1,31 +0,0 @@ -rm -fr INPUT RESTART -if [ $WARM_START = .F. ]; then - cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . - mkdir RESTART -else - mkdir INPUT RESTART - cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT -fi -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . -cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . -cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgtkers diag_table -#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgtkers field_table -cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_csawmgshoc field_table -cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . -for n in 01 02 03 04 05 06 07 08 09 10 11 12; do -ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc -done -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat diff --git a/tests/fv3_conf/ccpp_gfdlmp_run.IN b/tests/fv3_conf/ccpp_gfdlmp_run.IN deleted file mode 100644 index af0e3d5f84..0000000000 --- a/tests/fv3_conf/ccpp_gfdlmp_run.IN +++ /dev/null @@ -1,49 +0,0 @@ -rm -fr INPUT RESTART - -UNIT_TEST=${UNIT_TEST:-false} -if [ $WARM_START = .F. ]; then - cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . - mkdir RESTART -else - mkdir INPUT RESTART - - if [[ ${UNIT_TEST} == false ]]; then - cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT - else - cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT - rm -f INPUT/fv_core.res.* - rm -f INPUT/fv_srf_wnd.res.* - rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.* - rm -f INPUT/sfc_data.* - for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do - [ -e $RFILE ] || exit 1 - RFILE_OLD=$(basename $RFILE) - RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" - cp $RFILE INPUT/${RFILE_NEW} - done - fi -fi - -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . -cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . -cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . -cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table -cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . - -if [ $CPLWAV = .T. ]; then -cp @[INPUTDATA_ROOT_WW3]/mod_def.* . -cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -fi - -if [[ $POSTAPP = 'global' ]]; then - cp ${PATHRT}/parm/post_itag itag - cp ${PATHRT}/parm/postxconfig-NT.txt postxconfig-NT.txt - cp ${PATHRT}/parm/postxconfig-NT_FH00.txt postxconfig-NT_FH00.txt - cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new -fi diff --git a/tests/fv3_conf/ccpp_gfs_v15_run.IN b/tests/fv3_conf/ccpp_gfs_v15_run.IN deleted file mode 100644 index 6318e9b7b6..0000000000 --- a/tests/fv3_conf/ccpp_gfs_v15_run.IN +++ /dev/null @@ -1,23 +0,0 @@ -rm -fr INPUT RESTART -if [ $WARM_START = .F. ]; then - cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . - mkdir RESTART -else - mkdir INPUT RESTART - cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT -fi -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . -cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . -cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table -cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . - -if [ $DO_RRTMGP = .T. ]; then -cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . -fi diff --git a/tests/fv3_conf/ccpp_gfs_v16_run.IN b/tests/fv3_conf/ccpp_gfs_v16_run.IN deleted file mode 100644 index eb5b247574..0000000000 --- a/tests/fv3_conf/ccpp_gfs_v16_run.IN +++ /dev/null @@ -1,25 +0,0 @@ -rm -fr INPUT RESTART -rsync -arv @[INPUTDATA_ROOT]/FV3_input_data/INPUT/ INPUT/ -mkdir RESTART -if [ $WARM_START = .T. ]; then - rsync -arv ../fv3_ccpp_gfs_v16${RT_SUFFIX}/RESTART/ INPUT/ - cd INPUT - rename 20161004.000000. '' 20161004.000000.* - cd .. -fi - -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . -cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . -cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table -cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_suite2 field_table -cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . - -if [ $DO_RRTMGP = .T. ]; then - cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . -fi diff --git a/tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN b/tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN deleted file mode 100644 index 9b380ec48a..0000000000 --- a/tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN +++ /dev/null @@ -1,32 +0,0 @@ - -if [ $WARM_START = .F. ]; then - cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . - mkdir RESTART -else - mkdir INPUT RESTART - cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT -fi -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . -cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . -#cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgrs diag_table -cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_aod diag_table -#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgrs field_table -cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_csawmgshoc field_table -cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . -for n in 01 02 03 04 05 06 07 08 09 10 11 12; do -ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc -done -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat diff --git a/tests/fv3_conf/ccpp_multigases_run.IN b/tests/fv3_conf/ccpp_multigases_run.IN deleted file mode 100644 index 183649bfc9..0000000000 --- a/tests/fv3_conf/ccpp_multigases_run.IN +++ /dev/null @@ -1,32 +0,0 @@ - -inputdir=FV3_input_data_149 -if [ $WARM_START = .F. ]; then - cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . - mkdir RESTART -else - mkdir INPUT RESTART - cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT -fi -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . -if [ $OZ_PHYS_NEW = .T. ]; then - cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -elif [ $OZ_PHYS_OLD = .T. ]; then -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/global_o3prdlos.f77 . -fi -if [ $H2O_PHYS = .T. ]; then - cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -fi -cp @[INPUTDATA_ROOT]/${inputdir}/*grb . -cp @[INPUTDATA_ROOT]/${inputdir}/*configure . -cp @[INPUTDATA_ROOT]/${inputdir}/*_table . -cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_multi_gases diag_table -cp @[INPUTDATA_ROOT]/${inputdir}/field_table_multi_gases field_table - -if [ $CPLWAV = .T. ]; then -cp @[INPUTDATA_ROOT_WW3]/mod_def.* . -cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . -cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/rmp_src* . -fi diff --git a/tests/fv3_conf/ccpp_regional_c786_run.IN b/tests/fv3_conf/ccpp_regional_c786_run.IN deleted file mode 100644 index e450d34003..0000000000 --- a/tests/fv3_conf/ccpp_regional_c786_run.IN +++ /dev/null @@ -1,25 +0,0 @@ -rsync -arv @[INPUTDATA_ROOT]/FV3_regional_input_data/. . - -rm -rf INPUT RESTART -mkdir INPUT RESTART - -rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/INPUT/. INPUT/. - -if [ $WARM_START = .T. ]; then - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.coupler.res INPUT/coupler.res - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_core.res.nc INPUT/fv_core.res.nc - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_core.res.tile1.nc INPUT/fv_core.res.tile1.nc - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_srf_wnd.res.tile1.nc INPUT/fv_srf_wnd.res.tile1.nc - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_tracer.res.tile1.nc INPUT/fv_tracer.res.tile1.nc - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.phy_data.nc INPUT/phy_data.nc - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.sfc_data.nc INPUT/sfc_data.nc -fi - -if [ $OZ_PHYS_NEW = .T. ]; then - cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -elif [ $OZ_PHYS_OLD = .T. ]; then - cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . -fi -if [ $H2O_PHYS = .T. ]; then - cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -fi diff --git a/tests/fv3_conf/ccpp_satmedmf_run.IN b/tests/fv3_conf/ccpp_satmedmf_run.IN deleted file mode 100644 index 400eca407f..0000000000 --- a/tests/fv3_conf/ccpp_satmedmf_run.IN +++ /dev/null @@ -1,46 +0,0 @@ -rm -fr INPUT RESTART - -UNIT_TEST=${UNIT_TEST:-false} -if [ $NPX = 97 ]; then - inputdir=FV3_input_data -elif [ $NPX = 193 ]; then - inputdir=FV3_input_data_c192 -elif [ $NPX = 385 ]; then - inputdir=FV3_input_data_c384 -elif [ $NPX = 769 ]; then - inputdir=FV3_input_data_c768 -fi -echo "inputdir=$inputdir,NPX=$NPX" -if [ $WARM_START = .F. ]; then - cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . - mkdir RESTART -else - mkdir INPUT RESTART - - if [[ ${UNIT_TEST} == false ]]; then - cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT - else - cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT - rm -f INPUT/fv_core.res.* - rm -f INPUT/fv_srf_wnd.res.* - rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.* - rm -f INPUT/sfc_data.* - for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do - [ -e $RFILE ] || exit 1 - RFILE_OLD=$(basename $RFILE) - RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" - cp $RFILE INPUT/${RFILE_NEW} - done - fi -fi - -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . -cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/global_o3prdlos.f77 . -cp @[INPUTDATA_ROOT]/${inputdir}/*grb . -cp @[INPUTDATA_ROOT]/${inputdir}/*_table . -cp @[INPUTDATA_ROOT]/${inputdir}/field_table_satmedmf field_table -cp @[INPUTDATA_ROOT]/${inputdir}/*configure . diff --git a/tests/fv3_conf/ccpp_control_run.IN b/tests/fv3_conf/control_run.IN similarity index 70% rename from tests/fv3_conf/ccpp_control_run.IN rename to tests/fv3_conf/control_run.IN index 68b3a1b1fc..ed2f48cb37 100644 --- a/tests/fv3_conf/ccpp_control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -22,29 +22,29 @@ else SUFFIX=${BL_SUFFIX} fi - rsync -arv ../fv3_ccpp_control${SUFFIX}/RESTART/ INPUT/ + rsync -arv ../fv3_control${SUFFIX}/RESTART/ INPUT/ if [[ $IAU_INC_FILES = 'fv3_increment.nc' ]] || [[ $READ_INCREMENT = '.T.' ]]; then #read_inc and iau tests restart from fh=24 - cp ../fv3_ccpp_control${SUFFIX}/RESTART/coupler.res INPUT/. - cp ../fv3_ccpp_control${SUFFIX}/RESTART/fv_core.res.* INPUT/. - cp ../fv3_ccpp_control${SUFFIX}/RESTART/fv_srf_wnd.res.* INPUT/. - cp ../fv3_ccpp_control${SUFFIX}/RESTART/fv_tracer.* INPUT/. - cp ../fv3_ccpp_control${SUFFIX}/RESTART/phy_data.* INPUT/. - cp ../fv3_ccpp_control${SUFFIX}/RESTART/sfc_data.* INPUT/. - cp ../fv3_ccpp_control${SUFFIX}/INPUT/fv3_increment.nc INPUT/. + cp ../fv3_control${SUFFIX}/RESTART/coupler.res INPUT/. + cp ../fv3_control${SUFFIX}/RESTART/fv_core.res.* INPUT/. + cp ../fv3_control${SUFFIX}/RESTART/fv_srf_wnd.res.* INPUT/. + cp ../fv3_control${SUFFIX}/RESTART/fv_tracer.* INPUT/. + cp ../fv3_control${SUFFIX}/RESTART/phy_data.* INPUT/. + cp ../fv3_control${SUFFIX}/RESTART/sfc_data.* INPUT/. + cp ../fv3_control${SUFFIX}/INPUT/fv3_increment.nc INPUT/. cd INPUT else #restart test start from fh=12 - cp ../fv3_ccpp_control${SUFFIX}/RESTART/20161003.120000.* INPUT/. + cp ../fv3_control${SUFFIX}/RESTART/20161003.120000.* INPUT/. cd INPUT for RFILE in 20161003.120000.*; do [ -e $RFILE ] || exit 1 mv $RFILE ${RFILE#20161003.120000.} done fi - cp ../../fv3_ccpp_control${SUFFIX}/INPUT/grid_spec.nc . - cp ../../fv3_ccpp_control${SUFFIX}/INPUT/*_grid.tile*.nc . - cp ../../fv3_ccpp_control${SUFFIX}/INPUT/oro_data.tile*.nc . + cp ../../fv3_control${SUFFIX}/INPUT/grid_spec.nc . + cp ../../fv3_control${SUFFIX}/INPUT/*_grid.tile*.nc . + cp ../../fv3_control${SUFFIX}/INPUT/oro_data.tile*.nc . cd .. fi diff --git a/tests/fv3_conf/cpt_run.IN b/tests/fv3_conf/cpt_run.IN index fea2ec1f58..8828656bed 100644 --- a/tests/fv3_conf/cpt_run.IN +++ b/tests/fv3_conf/cpt_run.IN @@ -1,3 +1,4 @@ +rm -fr INPUT RESTART inputdir=FV3_input_data_127 if [ $WARM_START = .F. ]; then cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . diff --git a/tests/fv3_conf/csawmg3shoc127_run.IN b/tests/fv3_conf/csawmg3shoc127_run.IN index bc57248a2e..8828656bed 100644 --- a/tests/fv3_conf/csawmg3shoc127_run.IN +++ b/tests/fv3_conf/csawmg3shoc127_run.IN @@ -1,36 +1,19 @@ +rm -fr INPUT RESTART inputdir=FV3_input_data_127 - -UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - if [[ ${UNIT_TEST} == false ]]; then - cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT - else - cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT - rm -f INPUT/fv_core.res.* - rm -f INPUT/fv_srf_wnd.res.* - rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.* - rm -f INPUT/sfc_data.* - for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do - [ -e $RFILE ] || exit 1 - RFILE_OLD=$(basename $RFILE) - RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" - cp $RFILE INPUT/${RFILE_NEW} - done - fi + cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT fi - cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/aerosol.dat . cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/co2historicaldata_201*.txt . cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/sfc_emissivity_idx.txt . cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . cp @[INPUTDATA_ROOT]/${inputdir}/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 cp @[INPUTDATA_ROOT]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +cp @[INPUTDATA_ROOT]/${inputdir}/*grb . cp @[INPUTDATA_ROOT]/${inputdir}/*_table . cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_mg3tke diag_table cp @[INPUTDATA_ROOT]/${inputdir}/field_table_csawmg3shoc field_table diff --git a/tests/fv3_conf/csawmg_run.IN b/tests/fv3_conf/csawmg_run.IN index 28b700f31d..073cdb250c 100644 --- a/tests/fv3_conf/csawmg_run.IN +++ b/tests/fv3_conf/csawmg_run.IN @@ -1,3 +1,5 @@ +rm -fr INPUT RESTART + UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . diff --git a/tests/fv3_conf/csawmgshoc_run.IN b/tests/fv3_conf/csawmgshoc_run.IN index 2be94b3c25..6c7bbd8ed3 100644 --- a/tests/fv3_conf/csawmgshoc_run.IN +++ b/tests/fv3_conf/csawmgshoc_run.IN @@ -1,28 +1,11 @@ -UNIT_TEST=${UNIT_TEST:-false} +rm -fr INPUT RESTART if [ $WARM_START = .F. ]; then cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - - if [[ ${UNIT_TEST} == false ]]; then - cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT - else - cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT - rm -f INPUT/fv_core.res.* - rm -f INPUT/fv_srf_wnd.res.* - rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.* - rm -f INPUT/sfc_data.* - for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do - [ -e $RFILE ] || exit 1 - RFILE_OLD=$(basename $RFILE) - RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" - cp $RFILE INPUT/${RFILE_NEW} - done - fi + cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi - cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . @@ -35,3 +18,14 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgtkers diag_table #cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgtkers field_table cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_csawmgshoc field_table cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . +for n in 01 02 03 04 05 06 07 08 09 10 11 12; do +ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc +done +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat diff --git a/tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN b/tests/fv3_conf/esg_HAFS_v0_hwrf_run.IN similarity index 100% rename from tests/fv3_conf/ccpp_esg_HAFS_v0_hwrf_run.IN rename to tests/fv3_conf/esg_HAFS_v0_hwrf_run.IN diff --git a/tests/fv3_conf/ccpp_gf_thompson_run.IN b/tests/fv3_conf/gf_thompson_run.IN similarity index 100% rename from tests/fv3_conf/ccpp_gf_thompson_run.IN rename to tests/fv3_conf/gf_thompson_run.IN diff --git a/tests/fv3_conf/gfdlmp_run.IN b/tests/fv3_conf/gfdlmp_run.IN index 92a19ba1c7..af0e3d5f84 100644 --- a/tests/fv3_conf/gfdlmp_run.IN +++ b/tests/fv3_conf/gfdlmp_run.IN @@ -1,5 +1,6 @@ -UNIT_TEST=${UNIT_TEST:-false} +rm -fr INPUT RESTART +UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART @@ -39,3 +40,10 @@ if [ $CPLWAV = .T. ]; then cp @[INPUTDATA_ROOT_WW3]/mod_def.* . cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . fi + +if [[ $POSTAPP = 'global' ]]; then + cp ${PATHRT}/parm/post_itag itag + cp ${PATHRT}/parm/postxconfig-NT.txt postxconfig-NT.txt + cp ${PATHRT}/parm/postxconfig-NT_FH00.txt postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +fi diff --git a/tests/fv3_conf/gfs_v15_run.IN b/tests/fv3_conf/gfs_v15_run.IN index 79e9537fc2..6318e9b7b6 100644 --- a/tests/fv3_conf/gfs_v15_run.IN +++ b/tests/fv3_conf/gfs_v15_run.IN @@ -17,3 +17,7 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . + +if [ $DO_RRTMGP = .T. ]; then +cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . +fi diff --git a/tests/fv3_conf/ccpp_gfs_v16_flake_run.IN b/tests/fv3_conf/gfs_v16_flake_run.IN similarity index 100% rename from tests/fv3_conf/ccpp_gfs_v16_flake_run.IN rename to tests/fv3_conf/gfs_v16_flake_run.IN diff --git a/tests/fv3_conf/gfs_v16_run.IN b/tests/fv3_conf/gfs_v16_run.IN index a9210d2c39..bd8c0500aa 100644 --- a/tests/fv3_conf/gfs_v16_run.IN +++ b/tests/fv3_conf/gfs_v16_run.IN @@ -1,11 +1,13 @@ rm -fr INPUT RESTART -if [ $WARM_START = .F. ]; then - cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . - mkdir RESTART -else - mkdir INPUT RESTART - cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT +rsync -arv @[INPUTDATA_ROOT]/FV3_input_data/INPUT/ INPUT/ +mkdir RESTART +if [ $WARM_START = .T. ]; then + rsync -arv ../fv3_gfs_v16${RT_SUFFIX}/RESTART/ INPUT/ + cd INPUT + rename 20161004.000000. '' 20161004.000000.* + cd .. fi + cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . @@ -17,3 +19,7 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_suite2 field_table cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . + +if [ $DO_RRTMGP = .T. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . +fi diff --git a/tests/fv3_conf/ccpp_gfs_v16_run_c192L127.IN b/tests/fv3_conf/gfs_v16_run_c192L127.IN similarity index 93% rename from tests/fv3_conf/ccpp_gfs_v16_run_c192L127.IN rename to tests/fv3_conf/gfs_v16_run_c192L127.IN index 53dd35df26..d552738fe9 100644 --- a/tests/fv3_conf/ccpp_gfs_v16_run_c192L127.IN +++ b/tests/fv3_conf/gfs_v16_run_c192L127.IN @@ -2,7 +2,7 @@ rm -fr INPUT RESTART rsync -arv @[INPUTDATA_ROOT]/FV3_input_data_c192L127/INPUT/ INPUT/ mkdir RESTART if [ $WARM_START = .T. ]; then - rsync -arv ../fv3_ccpp_gfs_v16_c192L127${RT_SUFFIX}/RESTART/ INPUT/ + rsync -arv ../fv3_gfs_v16_c192L127${RT_SUFFIX}/RESTART/ INPUT/ cd INPUT rename 20190120.000000. '' 20190120.000000.* cd .. diff --git a/tests/fv3_conf/ccpp_gfsv16_ugwpv1_run.IN b/tests/fv3_conf/gfsv16_ugwpv1_run.IN similarity index 100% rename from tests/fv3_conf/ccpp_gfsv16_ugwpv1_run.IN rename to tests/fv3_conf/gfsv16_ugwpv1_run.IN diff --git a/tests/fv3_conf/ccpp_gocart.IN b/tests/fv3_conf/gocart.IN similarity index 100% rename from tests/fv3_conf/ccpp_gocart.IN rename to tests/fv3_conf/gocart.IN diff --git a/tests/fv3_conf/ccpp_gsd_run.IN b/tests/fv3_conf/gsd_run.IN similarity index 98% rename from tests/fv3_conf/ccpp_gsd_run.IN rename to tests/fv3_conf/gsd_run.IN index ac566483e4..e071fa3938 100644 --- a/tests/fv3_conf/ccpp_gsd_run.IN +++ b/tests/fv3_conf/gsd_run.IN @@ -6,7 +6,7 @@ else cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/grid_spec*.nc INPUT/ cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/C96_grid*.nc INPUT/ cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/oro_data*.nc INPUT/ - cp ../fv3_ccpp_gsd_coldstart${RT_SUFFIX}/RESTART/* INPUT/ + cp ../fv3_gsd_coldstart${RT_SUFFIX}/RESTART/* INPUT/ fi cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . diff --git a/tests/fv3_conf/ccpp_gsd_sar_run.IN b/tests/fv3_conf/gsd_sar_run.IN similarity index 100% rename from tests/fv3_conf/ccpp_gsd_sar_run.IN rename to tests/fv3_conf/gsd_sar_run.IN diff --git a/tests/fv3_conf/rasmgshoc_run.IN b/tests/fv3_conf/rasmgshoc_run.IN deleted file mode 100644 index 1e0fc42274..0000000000 --- a/tests/fv3_conf/rasmgshoc_run.IN +++ /dev/null @@ -1,20 +0,0 @@ - -if [ $WARM_START = .F. ]; then - cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . - mkdir RESTART -else - mkdir INPUT RESTART - cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT -fi -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/aerosol.dat . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 -cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . -cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . -cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_mgtkers diag_table -#cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_mgtkers field_table -cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_rasmgshoc field_table -cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . diff --git a/tests/fv3_conf/regional_c786_run.IN b/tests/fv3_conf/regional_c786_run.IN new file mode 100644 index 0000000000..ddb18043a1 --- /dev/null +++ b/tests/fv3_conf/regional_c786_run.IN @@ -0,0 +1,25 @@ +rsync -arv @[INPUTDATA_ROOT]/FV3_regional_input_data/. . + +rm -rf INPUT RESTART +mkdir INPUT RESTART + +rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/INPUT/. INPUT/. + +if [ $WARM_START = .T. ]; then + cp ../fv3_regional_control${RT_SUFFIX}/RESTART/20181015.120000.coupler.res INPUT/coupler.res + cp ../fv3_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_core.res.nc INPUT/fv_core.res.nc + cp ../fv3_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_core.res.tile1.nc INPUT/fv_core.res.tile1.nc + cp ../fv3_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_srf_wnd.res.tile1.nc INPUT/fv_srf_wnd.res.tile1.nc + cp ../fv3_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_tracer.res.tile1.nc INPUT/fv_tracer.res.tile1.nc + cp ../fv3_regional_control${RT_SUFFIX}/RESTART/20181015.120000.phy_data.nc INPUT/phy_data.nc + cp ../fv3_regional_control${RT_SUFFIX}/RESTART/20181015.120000.sfc_data.nc INPUT/sfc_data.nc +fi + +if [ $OZ_PHYS_NEW = .T. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +elif [ $OZ_PHYS_OLD = .T. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data/INPUT/global_o3prdlos.f77 . +fi +if [ $H2O_PHYS = .T. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +fi diff --git a/tests/fv3_conf/ccpp_regional_run.IN b/tests/fv3_conf/regional_run.IN similarity index 65% rename from tests/fv3_conf/ccpp_regional_run.IN rename to tests/fv3_conf/regional_run.IN index 76cc74bd72..cc7d84dc34 100644 --- a/tests/fv3_conf/ccpp_regional_run.IN +++ b/tests/fv3_conf/regional_run.IN @@ -9,13 +9,13 @@ mkdir INPUT RESTART rsync -arv @[INPUTDATA_ROOT]/fv3_regional_control/INPUT/. INPUT/. if [ $WARM_START = .T. ]; then - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.coupler.res INPUT/coupler.res - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_core.res.nc INPUT/fv_core.res.nc - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_core.res.tile1.nc INPUT/fv_core.res.tile1.nc - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_srf_wnd.res.tile1.nc INPUT/fv_srf_wnd.res.tile1.nc - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_tracer.res.tile1.nc INPUT/fv_tracer.res.tile1.nc - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.phy_data.nc INPUT/phy_data.nc - cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.sfc_data.nc INPUT/sfc_data.nc + cp ../fv3_regional_control${RT_SUFFIX}/RESTART/20181015.120000.coupler.res INPUT/coupler.res + cp ../fv3_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_core.res.nc INPUT/fv_core.res.nc + cp ../fv3_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_core.res.tile1.nc INPUT/fv_core.res.tile1.nc + cp ../fv3_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_srf_wnd.res.tile1.nc INPUT/fv_srf_wnd.res.tile1.nc + cp ../fv3_regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_tracer.res.tile1.nc INPUT/fv_tracer.res.tile1.nc + cp ../fv3_regional_control${RT_SUFFIX}/RESTART/20181015.120000.phy_data.nc INPUT/phy_data.nc + cp ../fv3_regional_control${RT_SUFFIX}/RESTART/20181015.120000.sfc_data.nc INPUT/sfc_data.nc fi if [ $WRITE_RESTART_WITH_BCS = .true. ]; then cp @[INPUTDATA_ROOT]/fv3_regional_control/RESTART/fv_core.res.tile1_new.nc RESTART/fv_core.res.tile1_new.nc diff --git a/tests/fv3_conf/satmedmf_run.IN b/tests/fv3_conf/satmedmf_run.IN index c62aa9ce79..400eca407f 100644 --- a/tests/fv3_conf/satmedmf_run.IN +++ b/tests/fv3_conf/satmedmf_run.IN @@ -1,4 +1,6 @@ +rm -fr INPUT RESTART +UNIT_TEST=${UNIT_TEST:-false} if [ $NPX = 97 ]; then inputdir=FV3_input_data elif [ $NPX = 193 ]; then @@ -9,8 +11,6 @@ elif [ $NPX = 769 ]; then inputdir=FV3_input_data_c768 fi echo "inputdir=$inputdir,NPX=$NPX" - -UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART diff --git a/tests/fv3_conf/ccpp_stretched_run.IN b/tests/fv3_conf/stretched_run.IN similarity index 100% rename from tests/fv3_conf/ccpp_stretched_run.IN rename to tests/fv3_conf/stretched_run.IN diff --git a/tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN b/tests/parm/c96_HAFS_v0_hwrf.nml.IN similarity index 100% rename from tests/parm/ccpp_c96_HAFS_v0_hwrf.nml.IN rename to tests/parm/c96_HAFS_v0_hwrf.nml.IN diff --git a/tests/parm/ccpp_ca.nml.IN b/tests/parm/ca.nml.IN similarity index 100% rename from tests/parm/ccpp_ca.nml.IN rename to tests/parm/ca.nml.IN diff --git a/tests/parm/ccpp_cpt.nml.IN b/tests/parm/ccpp_cpt.nml.IN deleted file mode 100644 index ccc61c8f06..0000000000 --- a/tests/parm/ccpp_cpt.nml.IN +++ /dev/null @@ -1,355 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = @[NPZ] - nudge_qv = .F. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 1. - do_sat_adj = .T. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - no_dycore = .false. - z_tracer = .T. -/ - -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - use_ufo = .true. - pre_rad = .false. - crtrh = 0.93,0.90,0.95 - ncld = 2 - imp_physics = 10 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .true. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = -1 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - oz_phys = .false. - oz_phys_2015 = .true. - debug = .false. - ras = .false. - cscnv = .true. - do_shoc = .false. - do_aw = .true. - shoc_cld = .false. - h2o_phys = .true. - shcnvcw = .false. - xkzm_h = 0.5 - xkzm_m = 0.5 - xkzm_s = 1.0 - nstf_name = @[NSTF_NAME] - nst_anl = .true. - ccwf = 1.0,1.0 - dlqf = 0.25,0.05 - mg_dcs = 200.0 - mg_ts_auto_ice = 180.0,900.0 - mg_qcvar = 1.0 - fprcp = 2 - pdfflag = 4 - iccn = 0 - mg_do_graupel = .true. - mg_do_hail = .false. - do_sb_physics = .true. - mg_do_ice_gmao = .false. - mg_do_liq_liu = .true. - cs_parm = 8.0,4.0,1.0e3,3.5e3,20.0,1.0,0.0,1.0,0.6,0.0 - shoc_parm = 7000.0,1.0,2.0,0.7,-999.0 - ctei_rm = 0.60,0.23 - max_lon = 8000 - max_lat = 4000 - rhcmax = 0.9999999 - effr_in = .true. - ltaerosol = .false. - lradar = .false. - cplflx = .false. - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1500. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "global_slmask.t1534.3072.1536.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/ccpp_csawmg.nml.IN b/tests/parm/ccpp_csawmg.nml.IN deleted file mode 100644 index 68c3688586..0000000000 --- a/tests/parm/ccpp_csawmg.nml.IN +++ /dev/null @@ -1,305 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .F. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 13 - adjust_dry_mass = .F. - consv_te = 1. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - -/ - -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - crtrh = 0.93,0.90,0.95 - ncld = 2 - imp_physics = 10 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .false. - hybedmf = .true. - satmedmf = .false. - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .true. - cnvcld = .false. - imfshalcnv = 2 - imfdeepcnv = -1 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - oz_phys = .false. - oz_phys_2015 = .true. - debug = .false. - - ras = .false. - cscnv = .true. - do_shoc = .false. - shoc_parm = 7000.0,1.0,2.0,0.7,-999.0 - do_aw = .true. - shoc_cld = .false. - h2o_phys = .true. - shcnvcw = .false. - xkzm_h = 0.5 - xkzm_m = 0.5 - xkzm_s = 1.0 - ccwf = 1.0,1.0 - dlqf = 0.25,0.05 - mg_dcs = 200.0 - mg_ts_auto_ice = 180.0,900.0 - mg_qcvar = 1.0 - fprcp = 2 - pdfflag = 4 - iccn = 1 - mg_do_graupel = .true. - mg_do_hail = .false. - do_sb_physics = .true. - mg_do_ice_gmao = .false. - mg_do_liq_liu = .true. - cs_parm = 8.0,4.0,1.0e3,3.5e3,20.0,1.0,0.0,1.0,0.6,0.0 - ctei_rm = 0.60,0.23 - max_lon = 8000 - max_lat = 4000 - rhcmax = 0.9999999 - effr_in = .true. - - nstf_name = @[NSTF_NAME] - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "global_slmask.t1534.3072.1536.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/ccpp_csawmg3shoc127.nml.IN b/tests/parm/ccpp_csawmg3shoc127.nml.IN deleted file mode 100644 index 2f01b488f1..0000000000 --- a/tests/parm/ccpp_csawmg3shoc127.nml.IN +++ /dev/null @@ -1,305 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = @[NPZ] - nudge_qv = .F. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0.0 - a_imp = 1.0 - p_fac = 0.1 - k_split = 1 - n_split = 8 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.16 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 13 - adjust_dry_mass = .F. - consv_te = 1. - consv_am = .F. - do_sat_adj = .false. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" -/ - -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - crtrh = 0.98,0.98,0.90 - ncld = 2 - imp_physics = 10 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .false.. - cal_pre = .false. - redrag = .true. - dspheat = .fasle. - hybedmf = .false. - satmedmf = .false. - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .true. - cnvcld = .false. - imfshalcnv = -1 - imfdeepcnv = -1 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - - ras = .false. - cscnv = .true. - do_shoc = .true. - shoc_parm = 7000.0,1.0,2.0,0.7,-999.0 - do_aw = .true. - shoc_cld = .true. - h2o_phys = .true. - shcnvcw = .false. - xkzm_h = 0.5 - xkzm_m = 0.5 - xkzm_s = 1.0 - ccwf = 1.0,1.0 - dlqf = 0.25,0.05 - mg_dcs = 200.0 - mg_ts_auto_ice = 180.0,900.0 - mg_qcvar = 1.0 - fprcp = 2 - pdfflag = 4 - iccn = 0 - mg_do_graupel = .true. - mg_do_hail = .false. - do_sb_physics = .true. - mg_do_ice_gmao = .false. - mg_do_liq_liu = .true. - cs_parm = 8.0,4.0,1.0e3,3.5e3,20.0,1.0,0.0,1.0,0.6,0.0 - ctei_rm = 0.60,0.23 - max_lon = 8000 - max_lat = 4000 - rhcmax = 0.9999999 - effr_in = .true. - oz_phys = .false. - oz_phys_2015 = .true. - - nstf_name = @[NSTF_NAME] - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "global_slmask.t1534.3072.1536.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/ccpp_csawmgshoc.nml.IN b/tests/parm/ccpp_csawmgshoc.nml.IN deleted file mode 100644 index 472cbf4da4..0000000000 --- a/tests/parm/ccpp_csawmgshoc.nml.IN +++ /dev/null @@ -1,304 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 24 - nudge_qv = .F. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 13 - adjust_dry_mass = .F. - consv_te = 1. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .T. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" -/ - -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - crtrh = 1.00,1.00,0.95 - ncld = 2 - imp_physics = 10 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .false.. - cal_pre = .false. - redrag = .true. - dspheat = .false. - hybedmf = .false. - satmedmf = .false. - lheatstrg = @[LHEATSTRG] - random_clds = .true. - trans_trac = .true. - cnvcld = .false. - imfshalcnv = -1 - imfdeepcnv = -1 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - - ras = .false. - cscnv = .true. - do_shoc = .true. - shoc_parm = 7000.0,1.0,2.0,0.7,-999.0 - do_aw = .true. - shoc_cld = .true. - h2o_phys = .true. - shcnvcw = .false. - xkzm_h = 1.0 - xkzm_m = 1.0 - xkzm_s = 1.0 - ccwf = 1.0,1.0 - dlqf = 0.25,0.05 - mg_dcs = 200.0 - mg_ts_auto_ice = 180.0,900.0 - mg_qcvar = 1.0 - fprcp = 2 - pdfflag = 4 - iccn = 0 - mg_do_graupel = .true. - mg_do_hail = .false. - do_sb_physics = .true. - mg_do_ice_gmao = .false. - mg_do_liq_liu = .true. - cs_parm = 8.0,4.0,1.0e3,3.5e3,20.0,1.0,0.0,1.0,0.6,0.0 - ctei_rm = 0.60,0.23 - max_lon = 8000 - max_lat = 4000 - rhcmax = 0.9999999 - effr_in = .true. - oz_phys = .false. - oz_phys_2015 = .true. - - nstf_name = @[NSTF_NAME] - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "global_slmask.t1534.3072.1536.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/ccpp_input_nest02.nml.IN b/tests/parm/ccpp_input_nest02.nml.IN deleted file mode 100644 index 0052e17e74..0000000000 --- a/tests/parm/ccpp_input_nest02.nml.IN +++ /dev/null @@ -1,292 +0,0 @@ -&amip_interp_nml - interp_oi_sst = .true. - use_ncep_sst = .true. - use_ncep_ice = .false. - no_anom_sst = .false. - data_set = 'reynolds_oi', - date_out_of_range = 'climo', -/ - - &atmos_model_nml - blocksize = 24 - chksum_debug = .false. - dycore_only = .false. - fdiag = @[FDIAG] - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .F. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml -! grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES_NEST],@[JNPES_NEST] - io_layout = 1,1 - npx = 211 - npy = 193 - ntiles = 1, - npz = @[NPZ] -! grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .F. - range_warn = .F. - reset_eta = .F. - n_sponge = 30 - nudge_qv = .T. - rf_fast = .F. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .F. - phys_hydrostatic = .F. - use_hydro_pressure = .F. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 1 - fv_sg_adj = 600 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .T. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .F. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .F. - consv_te = 0. - do_sat_adj = .T. - consv_am = .F. - fill = .T. - dwind_2d = .F. - print_freq = 6 - warm_start = @[WARM_START] - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - no_dycore = .false. - z_tracer = .T. - - nested = .true. - twowaynest = .true. - nestupdate = 7 - -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .F. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - ncld = 5 - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - random_clds = .false. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - nstf_name = @[NSTF_NAME] - xkzminv = 0.3 - xkzm_m = 1.0 - xkzm_h = 1.0 -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .F. - const_vs = .F. - const_vg = .F. - const_vr = .F. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 300. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "global_slmask.t1534.3072.1536.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/ccpp_control.nml.IN b/tests/parm/control.nml.IN similarity index 100% rename from tests/parm/ccpp_control.nml.IN rename to tests/parm/control.nml.IN diff --git a/tests/parm/cpt.nml.IN b/tests/parm/cpt.nml.IN index 6f05ac8223..ccc61c8f06 100644 --- a/tests/parm/cpt.nml.IN +++ b/tests/parm/cpt.nml.IN @@ -12,6 +12,7 @@ chksum_debug = .false. dycore_only = .false. fdiag = @[FDIAG] + ccpp_suite = '@[CCPP_SUITE]' / &diag_manager_nml @@ -176,6 +177,8 @@ iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + oz_phys = .false. + oz_phys_2015 = .true. debug = .false. ras = .false. cscnv = .true. diff --git a/tests/parm/csawmg.nml.IN b/tests/parm/csawmg.nml.IN index 09b9ce71ce..68c3688586 100644 --- a/tests/parm/csawmg.nml.IN +++ b/tests/parm/csawmg.nml.IN @@ -12,6 +12,7 @@ chksum_debug = .false. dycore_only = .false. fdiag = @[FDIAG] + ccpp_suite = '@[CCPP_SUITE]' / &diag_manager_nml @@ -152,7 +153,7 @@ cal_pre = .false. redrag = .true. dspheat = .false. - hybedmf = @[HYBEDMF] + hybedmf = .true. satmedmf = .false. lheatstrg = @[LHEATSTRG] random_clds = .true. @@ -177,6 +178,8 @@ iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + oz_phys = .false. + oz_phys_2015 = .true. debug = .false. ras = .false. diff --git a/tests/parm/csawmg3shoc127.nml.IN b/tests/parm/csawmg3shoc127.nml.IN index 4eff370829..2f01b488f1 100644 --- a/tests/parm/csawmg3shoc127.nml.IN +++ b/tests/parm/csawmg3shoc127.nml.IN @@ -12,6 +12,7 @@ chksum_debug = .false. dycore_only = .false. fdiag = @[FDIAG] + ccpp_suite = '@[CCPP_SUITE]' / &diag_manager_nml @@ -152,7 +153,7 @@ cal_pre = .false. redrag = .true. dspheat = .fasle. - hybedmf = @[HYBEDMF] + hybedmf = .false. satmedmf = .false. lheatstrg = @[LHEATSTRG] random_clds = .true. @@ -198,7 +199,7 @@ fprcp = 2 pdfflag = 4 iccn = 0 - mg_do_graupel = .true. + mg_do_graupel = .true. mg_do_hail = .false. do_sb_physics = .true. mg_do_ice_gmao = .false. @@ -209,6 +210,8 @@ max_lat = 4000 rhcmax = 0.9999999 effr_in = .true. + oz_phys = .false. + oz_phys_2015 = .true. nstf_name = @[NSTF_NAME] iau_delthrs = 6 diff --git a/tests/parm/csawmgshoc.nml.IN b/tests/parm/csawmgshoc.nml.IN index c6c44b1d2f..472cbf4da4 100644 --- a/tests/parm/csawmgshoc.nml.IN +++ b/tests/parm/csawmgshoc.nml.IN @@ -12,6 +12,7 @@ chksum_debug = .false. dycore_only = .false. fdiag = @[FDIAG] + ccpp_suite = '@[CCPP_SUITE]' / &diag_manager_nml @@ -151,7 +152,7 @@ cal_pre = .false. redrag = .true. dspheat = .false. - hybedmf = @[HYBEDMF] + hybedmf = .false. satmedmf = .false. lheatstrg = @[LHEATSTRG] random_clds = .true. @@ -208,6 +209,8 @@ max_lat = 4000 rhcmax = 0.9999999 effr_in = .true. + oz_phys = .false. + oz_phys_2015 = .true. nstf_name = @[NSTF_NAME] iau_delthrs = 6 diff --git a/tests/parm/ccpp_esg_HAFS_v0_hwrf-model_configure.IN b/tests/parm/esg_HAFS_v0_hwrf-model_configure.IN similarity index 100% rename from tests/parm/ccpp_esg_HAFS_v0_hwrf-model_configure.IN rename to tests/parm/esg_HAFS_v0_hwrf-model_configure.IN diff --git a/tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN b/tests/parm/esg_HAFS_v0_hwrf.nml.IN similarity index 100% rename from tests/parm/ccpp_esg_HAFS_v0_hwrf.nml.IN rename to tests/parm/esg_HAFS_v0_hwrf.nml.IN diff --git a/tests/parm/ccpp_gfdlmp.nml.IN b/tests/parm/gfdlmp.nml.IN similarity index 100% rename from tests/parm/ccpp_gfdlmp.nml.IN rename to tests/parm/gfdlmp.nml.IN diff --git a/tests/parm/ccpp_gfsv16_csawmg.nml.IN b/tests/parm/gfsv16_csawmg.nml.IN similarity index 100% rename from tests/parm/ccpp_gfsv16_csawmg.nml.IN rename to tests/parm/gfsv16_csawmg.nml.IN diff --git a/tests/parm/ccpp.gocart.nml.IN b/tests/parm/gocart.nml.IN similarity index 100% rename from tests/parm/ccpp.gocart.nml.IN rename to tests/parm/gocart.nml.IN diff --git a/tests/parm/ccpp_gsd.nml.IN b/tests/parm/gsd.nml.IN similarity index 100% rename from tests/parm/ccpp_gsd.nml.IN rename to tests/parm/gsd.nml.IN diff --git a/tests/parm/ccpp_gsd_rrtmgp.nml.IN b/tests/parm/gsd_rrtmgp.nml.IN similarity index 100% rename from tests/parm/ccpp_gsd_rrtmgp.nml.IN rename to tests/parm/gsd_rrtmgp.nml.IN diff --git a/tests/parm/ccpp_gsd_sar-model_configure.IN b/tests/parm/gsd_sar-model_configure.IN similarity index 100% rename from tests/parm/ccpp_gsd_sar-model_configure.IN rename to tests/parm/gsd_sar-model_configure.IN diff --git a/tests/parm/ccpp_gsd_sar.nml.IN b/tests/parm/gsd_sar.nml.IN similarity index 100% rename from tests/parm/ccpp_gsd_sar.nml.IN rename to tests/parm/gsd_sar.nml.IN diff --git a/tests/parm/input_nest02.nml.IN b/tests/parm/input_nest02.nml.IN index fdefdf3ae2..0052e17e74 100644 --- a/tests/parm/input_nest02.nml.IN +++ b/tests/parm/input_nest02.nml.IN @@ -7,11 +7,12 @@ date_out_of_range = 'climo', / -&atmos_model_nml + &atmos_model_nml blocksize = 24 chksum_debug = .false. dycore_only = .false. fdiag = @[FDIAG] + ccpp_suite = '@[CCPP_SUITE]' / &diag_manager_nml diff --git a/tests/parm/ccpp_lndp.nml.IN b/tests/parm/lndp.nml.IN similarity index 100% rename from tests/parm/ccpp_lndp.nml.IN rename to tests/parm/lndp.nml.IN diff --git a/tests/parm/ccpp_multi_gases.nml.IN b/tests/parm/multi_gases.nml.IN similarity index 100% rename from tests/parm/ccpp_multi_gases.nml.IN rename to tests/parm/multi_gases.nml.IN diff --git a/tests/parm/ccpp_regional.nml.IN b/tests/parm/regional.nml.IN similarity index 100% rename from tests/parm/ccpp_regional.nml.IN rename to tests/parm/regional.nml.IN diff --git a/tests/parm/ccpp_regional_c768.nml.IN b/tests/parm/regional_c768.nml.IN similarity index 100% rename from tests/parm/ccpp_regional_c768.nml.IN rename to tests/parm/regional_c768.nml.IN diff --git a/tests/parm/ccpp_stretched-input.nml.IN b/tests/parm/stretched-input.nml.IN similarity index 100% rename from tests/parm/ccpp_stretched-input.nml.IN rename to tests/parm/stretched-input.nml.IN diff --git a/tests/parm/ccpp_stretched-nest-input.nml.IN b/tests/parm/stretched-nest-input.nml.IN similarity index 100% rename from tests/parm/ccpp_stretched-nest-input.nml.IN rename to tests/parm/stretched-nest-input.nml.IN diff --git a/tests/parm/ccpp_v15p2_c96.nml.IN b/tests/parm/v15p2_c96.nml.IN similarity index 97% rename from tests/parm/ccpp_v15p2_c96.nml.IN rename to tests/parm/v15p2_c96.nml.IN index 5f74b926ab..e9394db3f9 100644 --- a/tests/parm/ccpp_v15p2_c96.nml.IN +++ b/tests/parm/v15p2_c96.nml.IN @@ -16,7 +16,7 @@ fhout = 3 fhmaxhf = 120 fhouthf = 1 - ccpp_suite = 'FV3_GFS_v15p2' + ccpp_suite = '@[CCPP_SUITE]' / &diag_manager_nml @@ -144,8 +144,9 @@ random_clds = .false. trans_trac = .true. cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 + imfshalcnv = @[IMFSHALCNV] + imfdeepcnv = @[IMFDEEPCNV] + ras = @[RAS] cdmbgwd = 0.14,1.8,1.0,1.0 prslrd0 = 0. ivegsrc = 1 @@ -162,8 +163,8 @@ do_sppt = .true. do_shum = .true. do_skeb = .true. - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] + lndp_type = @[LNDP_TYPE] + n_var_lndp = @[N_VAR_LNDP] / &gfdl_cloud_microphysics_nml diff --git a/tests/parm/ccpp_v15p2_c96_rrtmgp.nml.IN b/tests/parm/v15p2_c96_rrtmgp.nml.IN similarity index 100% rename from tests/parm/ccpp_v15p2_c96_rrtmgp.nml.IN rename to tests/parm/v15p2_c96_rrtmgp.nml.IN diff --git a/tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN b/tests/parm/v16_c192L127_rrtmgp.nml.IN similarity index 100% rename from tests/parm/ccpp_v16_c192L127_rrtmgp.nml.IN rename to tests/parm/v16_c192L127_rrtmgp.nml.IN diff --git a/tests/parm/ccpp_v16_c96.nml.IN b/tests/parm/v16_c96.nml.IN similarity index 98% rename from tests/parm/ccpp_v16_c96.nml.IN rename to tests/parm/v16_c96.nml.IN index eb5dba4786..95c136ccdd 100644 --- a/tests/parm/ccpp_v16_c96.nml.IN +++ b/tests/parm/v16_c96.nml.IN @@ -16,7 +16,7 @@ fhout = 3 fhmaxhf = 120 fhouthf = 1 - ccpp_suite = 'FV3_GFS_v16' + ccpp_suite = '@[CCPP_SUITE]' / &diag_manager_nml @@ -154,8 +154,9 @@ deflate_level=1 random_clds = .false. trans_trac = .true. cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 + imfshalcnv = @[IMFSHALCNV] + imfdeepcnv = @[IMFDEEPCNV] + ras = @[RAS] cdmbgwd = 0.14,1.8,1.0,1.0 prslrd0 = 0. ivegsrc = 1 diff --git a/tests/parm/ccpp_v16_c96_rrtmgp.nml.IN b/tests/parm/v16_c96_rrtmgp.nml.IN similarity index 100% rename from tests/parm/ccpp_v16_c96_rrtmgp.nml.IN rename to tests/parm/v16_c96_rrtmgp.nml.IN diff --git a/tests/parm/ccpp_v16_c96_ugwpv1.nml.IN b/tests/parm/v16_c96_ugwpv1.nml.IN similarity index 100% rename from tests/parm/ccpp_v16_c96_ugwpv1.nml.IN rename to tests/parm/v16_c96_ugwpv1.nml.IN diff --git a/tests/parm/ccpp_v16_flake_c96.nml.IN b/tests/parm/v16_flake_c96.nml.IN similarity index 100% rename from tests/parm/ccpp_v16_flake_c96.nml.IN rename to tests/parm/v16_flake_c96.nml.IN diff --git a/tests/rt.conf b/tests/rt.conf index 0c596e9aa1..a4e120fa44 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -4,161 +4,161 @@ COMPILE | SUITES=FV3_GFS_2017 | | fv3 | -RUN | fv3_ccpp_control | | fv3 | -RUN | fv3_ccpp_decomp | - jet.intel | | -RUN | fv3_ccpp_2threads | | | -RUN | fv3_ccpp_restart | | | fv3_ccpp_control -RUN | fv3_ccpp_read_inc | | fv3 | fv3_ccpp_control -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 | +RUN | fv3_control | | fv3 | +RUN | fv3_decomp | - jet.intel | | +RUN | fv3_2threads | | | +RUN | fv3_restart | | | fv3_control +RUN | fv3_read_inc | | fv3 | fv3_control +RUN | fv3_wrtGauss_netcdf_esmf | | fv3 | +RUN | fv3_wrtGauss_netcdf | | fv3 | +RUN | fv3_wrtGauss_netcdf_parallel | | fv3 | +RUN | fv3_wrtGlatlon_netcdf | | fv3 | +RUN | fv3_wrtGauss_nemsio | | fv3 | +RUN | fv3_wrtGauss_nemsio_c192 | | fv3 | +RUN | fv3_stochy | | fv3 | +RUN | fv3_ca | | fv3 | +RUN | fv3_lndp | | fv3 | # temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it -RUN | fv3_ccpp_iau | | fv3 | fv3_ccpp_control -RUN | fv3_ccpp_lheatstrg | | fv3 | +RUN | fv3_iau | | fv3 | fv3_control +RUN | fv3_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 | + 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 | +RUN | fv3_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +RUN | fv3_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 | +# Run multigases test in REPRO mode to avoid numerical instability in the deep atmosphere +COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y | | fv3 | +RUN | fv3_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 | +RUN | fv3_control_32bit | | fv3 | +RUN | fv3_stretched | | fv3 | +RUN | fv3_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_hafs | | 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 | +RUN | fv3_regional_control | | fv3 | +RUN | fv3_regional_restart | | fv3 | fv3_regional_control +RUN | fv3_regional_quilt | | fv3 | +RUN | fv3_regional_quilt_hafs | | fv3 | +RUN | fv3_regional_quilt_netcdf_parallel | | fv3 | +#RUN | fv3_regional_c768 | wcoss_dell_p3 | fv3 | +#RUN | fv3_regional_c768 | hera.intel | fv3 | +#RUN | fv3_regional_c768 | gaea.intel | fv3 | +#RUN | fv3_regional_c768 | jet.intel | fv3 | +#RUN | fv3_regional_c768 | orion.intel | 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 | +RUN | fv3_gfdlmp | | fv3 | +RUN | fv3_gfdlmprad_gwd | | fv3 | +RUN | fv3_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 | +#RUN | fv3_csawmgshoc | | fv3 | +#RUN | fv3_csawmg3shoc127 | | fv3 | +RUN | fv3_csawmg | | fv3 | +RUN | fv3_satmedmf | | fv3 | +RUN | fv3_satmedmfq | | fv3 | COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_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_gfdlmp_32bit | | fv3 | +RUN | fv3_gfdlmprad_32bit_post | | fv3 | +RUN | fv3_cpt | | fv3 | +RUN | fv3_gsd | | fv3 | # These two tests crash with NaNs on jet.intel -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 | +RUN | fv3_rap | - jet.intel | fv3 | +RUN | fv3_hrrr | - jet.intel | fv3 | +RUN | fv3_thompson | | fv3 | +RUN | fv3_thompson_no_aero | | fv3 | # This test crashes with NaNs on jet.intel -RUN | fv3_ccpp_rrfs_v1beta | - jet.intel | fv3 | +RUN | fv3_rrfs_v1beta | - jet.intel | fv3 | COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | -# fv3_ccpp_gfs_v15p2 and fv3_ccpp_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 -RUN | fv3_ccpp_gfs_v15p2 | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16 | | fv3 | -RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 -RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP_2thrd | | fv3 | +# fv3_gfs_v15p2 and fv3_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 +RUN | fv3_gfs_v15p2 | - cheyenne.intel | fv3 | +RUN | fv3_gfs_v16 | | fv3 | +RUN | fv3_gfs_v16_restart | | | fv3_gfs_v16 +RUN | fv3_gfs_v16_stochy | | fv3 | +RUN | fv3_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | +RUN | fv3_gfs_v16_RRTMGP | | fv3 | +RUN | fv3_gfs_v16_RRTMGP_c192L127 | | fv3 | +RUN | fv3_gfs_v16_RRTMGP_2thrd | | 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 | - cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfsv16_csawmgt | - cheyenne.intel | fv3 | +# fv3_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests +RUN | fv3_gfsv16_csawmg | - cheyenne.intel | fv3 | +RUN | fv3_gfsv16_csawmgt | - cheyenne.intel | fv3 | COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | -RUN | fv3_ccpp_gocart_clm | | fv3 | -RUN | fv3_ccpp_gfs_v16_flake | | fv3 | +RUN | fv3_gocart_clm | | fv3 | +RUN | fv3_gfs_v16_flake | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1 | | 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 | -RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 | -RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | fv3 | +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras | | fv3 | +RUN | fv3_HAFS_v0_hwrf_thompson | | fv3 | +#RUN | fv3_HAFS_v0_hwrf | | fv3 | +RUN | fv3_esg_HAFS_v0_hwrf_thompson | | fv3 | +RUN | fv3_gfsv16_ugwpv1 | | fv3 | +RUN | fv3_gfsv16_ugwpv1_warmstart | | fv3 | +RUN | fv3_gfs_v16_ras | | fv3 | ################################################################################################################################################################################### # DEBUG tests # ################################################################################################################################################################################### -# Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -# Note: weird bug on Cheyenne, compiling without SUITES=... works fine on the login nodes, but crashes on the compute nodes; same issues on wcoss_cray and wcoss_dell_p3 -COMPILE | DEBUG=Y | - gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -COMPILE | DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | + gaea.intel cheyenne.intel wcoss_cray wcoss_dell_p3 | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16_debug | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | +COMPILE | DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | | fv3 | +RUN | fv3_gfs_v15p2_debug | | fv3 | +RUN | fv3_gfs_v16_debug | | fv3 | +RUN | fv3_gfs_v15p2_RRTMGP_debug | | fv3 | +RUN | fv3_gfs_v16_RRTMGP_debug | | fv3 | COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | -RUN | fv3_ccpp_regional_control_debug | | fv3 | -RUN | fv3_ccpp_control_debug | | fv3 | -RUN | fv3_ccpp_stretched_nest_debug | | 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,FV3_GFS_v16b_ugwpv1 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 | -RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 | +RUN | fv3_regional_control_debug | | fv3 | +RUN | fv3_control_debug | | fv3 | +RUN | fv3_stretched_nest_debug | | fv3 | +RUN | fv3_gsd_debug | | fv3 | +RUN | fv3_gsd_diag3d_debug | | fv3 | +RUN | fv3_thompson_debug | | fv3 | +RUN | fv3_thompson_no_aero_debug | | fv3 | +RUN | fv3_rrfs_v1beta_debug | | fv3 | + +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y | | fv3 | +RUN | fv3_HAFS_v0_hwrf_thompson_debug | | fv3 | +#RUN | fv3_HAFS_v0_hwrf_debug | | fv3 | +RUN | fv3_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | +RUN | fv3_gfsv16_ugwpv1_debug | | fv3 | +RUN | fv3_gfs_v16_ras_debug | | fv3 | ################################################################################################################################################################################### # CPLD tests # ################################################################################################################################################################################### -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | -RUN | cpld_control | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control -RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restartfrac | - wcoss_cray jet.intel | | cpld_controlfrac +COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | +RUN | cpld_control | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control +RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restartfrac | - wcoss_cray jet.intel | | cpld_controlfrac -RUN | cpld_2threads | - wcoss_cray jet.intel | | -RUN | cpld_decomp | - wcoss_cray jet.intel | | -RUN | cpld_satmedmf | - wcoss_cray jet.intel | fv3 | -RUN | cpld_ca | - wcoss_cray jet.intel | fv3 | +RUN | cpld_2threads | - wcoss_cray jet.intel | | +RUN | cpld_decomp | - wcoss_cray jet.intel | | +RUN | cpld_satmedmf | - wcoss_cray jet.intel | fv3 | +RUN | cpld_ca | - wcoss_cray jet.intel | fv3 | #12h/36h/48h restart tests -RUN | cpld_control_c192 | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restart_c192 | - wcoss_cray jet.intel | | cpld_control_c192 -RUN | cpld_controlfrac_c192 | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restartfrac_c192 | - wcoss_cray jet.intel | | cpld_controlfrac_c192 +RUN | cpld_control_c192 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_c192 | - wcoss_cray jet.intel | | cpld_control_c192 +RUN | cpld_controlfrac_c192 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restartfrac_c192 | - wcoss_cray jet.intel | | cpld_controlfrac_c192 -RUN | cpld_control_c384 | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restart_c384 | - wcoss_cray jet.intel | | cpld_control_c384 -RUN | cpld_controlfrac_c384 | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restartfrac_c384 | - wcoss_cray jet.intel | | cpld_controlfrac_c384 +RUN | cpld_control_c384 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_c384 | - wcoss_cray jet.intel | | cpld_control_c384 +RUN | cpld_controlfrac_c384 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restartfrac_c384 | - wcoss_cray jet.intel | | cpld_controlfrac_c384 -RUN | cpld_bmark | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restart_bmark | - wcoss_cray jet.intel | | cpld_bmark -RUN | cpld_bmarkfrac | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restart_bmarkfrac | - wcoss_cray jet.intel | | cpld_bmarkfrac +RUN | cpld_bmark | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_bmark | - wcoss_cray jet.intel | | cpld_bmark +RUN | cpld_bmarkfrac | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_bmarkfrac | - wcoss_cray jet.intel | | cpld_bmarkfrac #6h/6h/12h restart test # test fails on gaea with esmfpio error @@ -171,24 +171,24 @@ RUN | cpld_bmarkfrac_wave RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_control_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,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | -RUN | cpld_debug | - wcoss_cray jet.intel | fv3 | -RUN | cpld_debugfrac | - wcoss_cray jet.intel | fv3 | +COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | +RUN | cpld_debug | - wcoss_cray jet.intel | fv3 | +RUN | cpld_debugfrac | - wcoss_cray jet.intel | fv3 | ################################################################################################################################################################################### # Data Atmosphere tests # ################################################################################################################################################################################### -COMPILE | DATM=Y S2S=Y | - wcoss_cray jet.intel | fv3 | -RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 | -RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr -RUN | datm_control_gefs | - wcoss_cray jet.intel | fv3 | +COMPILE | DATM=Y S2S=Y | - wcoss_cray jet.intel | fv3 | +RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 | +RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr +RUN | datm_control_gefs | - wcoss_cray jet.intel | fv3 | -RUN | datm_bulk_cfsr | - wcoss_cray jet.intel | fv3 | -RUN | datm_bulk_gefs | - wcoss_cray jet.intel | fv3 | +RUN | datm_bulk_cfsr | - wcoss_cray jet.intel | fv3 | +RUN | datm_bulk_gefs | - wcoss_cray jet.intel | fv3 | -RUN | datm_mx025_cfsr | - wcoss_cray jet.intel gaea.intel | fv3 | -RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 | +RUN | datm_mx025_cfsr | - wcoss_cray jet.intel gaea.intel | fv3 | +RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 | -COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 | -RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | +COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 | +RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 90879ab31e..90a0532faf 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -415,9 +415,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-20210309/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210316/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210309} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210316} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210212} @@ -632,8 +632,8 @@ EOF RT_SUFFIX="_repro" BL_SUFFIX="_repro" else - RT_SUFFIX="_prod" - BL_SUFFIX="_ccpp" + RT_SUFFIX="" + BL_SUFFIX="" fi if [[ ${MAKE_OPT^^} =~ "WW3=Y" ]]; then diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index e6821e3cb6..23ea04488f 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -3,31 +3,30 @@ ################################################################################################################################################################## COMPILE | SUITES=FV3_GFS_2017_gfdlmp | | fv3 | -RUN | fv3_ccpp_gfdlmp | | fv3 | +RUN | fv3_gfdlmp | | fv3 | COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | - -RUN | fv3_ccpp_gfs_v15p2 | | fv3 | -RUN | fv3_ccpp_gfs_v16 | | fv3 | -RUN | fv3_ccpp_gfs_v16_restart | | | fv3_ccpp_gfs_v16 -RUN | fv3_ccpp_gfs_v16_stochy | | fv3 | -RUN | fv3_ccpp_gfs_v16_flake | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP | | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | +RUN | fv3_gfs_v15p2 | | fv3 | +RUN | fv3_gfs_v16 | | fv3 | +RUN | fv3_gfs_v16_restart | | | fv3_gfs_v16 +RUN | fv3_gfs_v16_stochy | | fv3 | +RUN | fv3_gfs_v16_flake | | fv3 | +RUN | fv3_gfs_v15p2_RRTMGP | | fv3 | +RUN | fv3_gfs_v16_RRTMGP | | fv3 | COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y | | 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,FV3_GFS_v16b_ugwpv1 | | 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 | -RUN | fv3_ccpp_gfsv16_ugwpv1 | | fv3 | -RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart | | fv3 | +RUN | fv3_gsd | | fv3 | +RUN | fv3_thompson | | fv3 | +RUN | fv3_thompson_no_aero | | fv3 | +RUN | fv3_rrfs_v1beta | | fv3 | + +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras | | fv3 | +RUN | fv3_HAFS_v0_hwrf_thompson | | fv3 | +#RUN | fv3_HAFS_v0_hwrf | | fv3 | +RUN | fv3_esg_HAFS_v0_hwrf_thompson | | fv3 | +RUN | fv3_gfsv16_ugwpv1 | | fv3 | +RUN | fv3_gfsv16_ugwpv1_warmstart | | fv3 | +RUN | fv3_gfs_v16_ras | | fv3 | ################################################################################################################################################################## # CCPP DEBUG tests # @@ -35,29 +34,28 @@ RUN | fv3_ccpp_gfsv16_ugwpv1_warmstart # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) COMPILE | 32BIT=Y DEBUG=Y | | fv3 | -RUN | fv3_ccpp_control_debug | | fv3 | +RUN | fv3_control_debug | | fv3 | +RUN | fv3_regional_control_debug | | fv3 | +RUN | fv3_rrfs_v1beta_debug | | fv3 | +RUN | fv3_gsd_debug | | fv3 | +RUN | fv3_thompson_debug | | fv3 | +RUN | fv3_thompson_no_aero_debug | | fv3 | COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16_debug | | fv3 | -RUN | fv3_ccpp_gfs_v15p2_RRTMGP_debug | | fv3 | -RUN | fv3_ccpp_gfs_v16_RRTMGP_debug | | fv3 | +RUN | fv3_gfs_v15p2_debug | | fv3 | +RUN | fv3_gfs_v16_debug | | fv3 | +RUN | fv3_gfs_v15p2_RRTMGP_debug | | fv3 | +RUN | fv3_gfs_v16_RRTMGP_debug | | fv3 | COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | -RUN | fv3_ccpp_multigases | | fv3 | - -COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | -RUN | fv3_ccpp_regional_control_debug | | 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,FV3_GFS_v16b_ugwpv1 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 | -RUN | fv3_ccpp_gfsv16_ugwpv1_debug | | fv3 | +RUN | fv3_multigases | | fv3 | + +COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y | | fv3 | +RUN | fv3_HAFS_v0_hwrf_thompson_debug | | fv3 | +#RUN | fv3_HAFS_v0_hwrf_debug | | fv3 | +RUN | fv3_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | +RUN | fv3_gfsv16_ugwpv1_debug | | fv3 | +RUN | fv3_gfs_v16_ras_debug | | fv3 | ################################################################################################################################################################## # S2S tests # diff --git a/tests/tests/fv3_ccpp_2threads b/tests/tests/fv3_2threads similarity index 97% rename from tests/tests/fv3_ccpp_2threads rename to tests/tests/fv3_2threads index 0d1dee9a71..2f586b8df0 100644 --- a/tests/tests/fv3_ccpp_2threads +++ b/tests/tests/fv3_2threads @@ -80,7 +80,7 @@ export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=12 -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf b/tests/tests/fv3_HAFS_v0_hwrf similarity index 97% rename from tests/tests/fv3_ccpp_HAFS_v0_hwrf rename to tests/tests/fv3_HAFS_v0_hwrf index b9e2eae107..c43a6836c4 100644 --- a/tests/tests/fv3_ccpp_HAFS_v0_hwrf +++ b/tests/tests/fv3_HAFS_v0_hwrf @@ -77,9 +77,9 @@ export NODES=$(expr $TASKS / $TPN + 1) DT_ATMOS="600" -export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN +export FV3_RUN=c96_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf -export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN +export INPUT_NML=c96_HAFS_v0_hwrf.nml.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug b/tests/tests/fv3_HAFS_v0_hwrf_debug similarity index 97% rename from tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug rename to tests/tests/fv3_HAFS_v0_hwrf_debug index 08833a6720..58ec082655 100644 --- a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_debug +++ b/tests/tests/fv3_HAFS_v0_hwrf_debug @@ -80,9 +80,9 @@ export FDIAG=3 DT_ATMOS="600" -export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN +export FV3_RUN=c96_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf -export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN +export INPUT_NML=c96_HAFS_v0_hwrf.nml.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson b/tests/tests/fv3_HAFS_v0_hwrf_thompson similarity index 97% rename from tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson rename to tests/tests/fv3_HAFS_v0_hwrf_thompson index 3b17849361..3f6313edd2 100644 --- a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson +++ b/tests/tests/fv3_HAFS_v0_hwrf_thompson @@ -77,9 +77,9 @@ export NODES=$(expr $TASKS / $TPN + 1) DT_ATMOS="600" -export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN +export FV3_RUN=c96_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf_thompson -export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN +export INPUT_NML=c96_HAFS_v0_hwrf.nml.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. diff --git a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug b/tests/tests/fv3_HAFS_v0_hwrf_thompson_debug similarity index 97% rename from tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug rename to tests/tests/fv3_HAFS_v0_hwrf_thompson_debug index b56589d179..f7a26e2623 100644 --- a/tests/tests/fv3_ccpp_HAFS_v0_hwrf_thompson_debug +++ b/tests/tests/fv3_HAFS_v0_hwrf_thompson_debug @@ -80,9 +80,9 @@ export FDIAG=3 DT_ATMOS="600" -export FV3_RUN=ccpp_c96_HAFS_v0_hwrf_run.IN +export FV3_RUN=c96_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf_thompson -export INPUT_NML=ccpp_c96_HAFS_v0_hwrf.nml.IN +export INPUT_NML=c96_HAFS_v0_hwrf.nml.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. diff --git a/tests/tests/fv3_ccpp_appbuild b/tests/tests/fv3_appbuild similarity index 97% rename from tests/tests/fv3_ccpp_appbuild rename to tests/tests/fv3_appbuild index 30ec1a9b0d..8fd32fa0c7 100644 --- a/tests/tests/fv3_ccpp_appbuild +++ b/tests/tests/fv3_appbuild @@ -73,7 +73,7 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_ca b/tests/tests/fv3_ca similarity index 97% rename from tests/tests/fv3_ccpp_ca rename to tests/tests/fv3_ca index 0ea62c1dfc..1dbf48cb7c 100644 --- a/tests/tests/fv3_ccpp_ca +++ b/tests/tests/fv3_ca @@ -73,9 +73,9 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_ca.nml.IN +export INPUT_NML=ca.nml.IN export DO_CA=.T. export CA_SGS=.T. diff --git a/tests/tests/fv3_ccpp_control b/tests/tests/fv3_control similarity index 97% rename from tests/tests/fv3_ccpp_control rename to tests/tests/fv3_control index d9301b68b4..ab4ed8a20e 100644 --- a/tests/tests/fv3_ccpp_control +++ b/tests/tests/fv3_control @@ -75,7 +75,7 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 export RESTART_INTERVAL=12 -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_control_32bit b/tests/tests/fv3_control_32bit similarity index 97% rename from tests/tests/fv3_ccpp_control_32bit rename to tests/tests/fv3_control_32bit index b435bd109d..4b323625a4 100644 --- a/tests/tests/fv3_ccpp_control_32bit +++ b/tests/tests/fv3_control_32bit @@ -74,7 +74,7 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_control_debug b/tests/tests/fv3_control_debug similarity index 94% rename from tests/tests/fv3_ccpp_control_debug rename to tests/tests/fv3_control_debug index f30a5058b2..46d1bb70a8 100644 --- a/tests/tests/fv3_ccpp_control_debug +++ b/tests/tests/fv3_control_debug @@ -37,7 +37,7 @@ export_fv3 export FHMAX="06" -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_cpt b/tests/tests/fv3_cpt similarity index 97% rename from tests/tests/fv3_ccpp_cpt rename to tests/tests/fv3_cpt index a182a6a2d5..4d357afb93 100644 --- a/tests/tests/fv3_ccpp_cpt +++ b/tests/tests/fv3_cpt @@ -80,8 +80,8 @@ export NPZ='127' export NPZP='128' -export INPUT_NML=ccpp_cpt.nml.IN -export FV3_RUN=ccpp_cpt_run.IN +export INPUT_NML=cpt.nml.IN +export FV3_RUN=cpt_run.IN export CCPP_SUITE=FV3_CPT_v0 export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'nemsio'" diff --git a/tests/tests/fv3_ccpp_csawmg b/tests/tests/fv3_csawmg similarity index 97% rename from tests/tests/fv3_ccpp_csawmg rename to tests/tests/fv3_csawmg index d49f2a48a1..d60218bc59 100644 --- a/tests/tests/fv3_ccpp_csawmg +++ b/tests/tests/fv3_csawmg @@ -56,8 +56,8 @@ export_fv3 DT_ATMOS="600" -export INPUT_NML=ccpp_csawmg.nml.IN -export FV3_RUN=ccpp_csawmg_run.IN +export INPUT_NML=csawmg.nml.IN +export FV3_RUN=csawmg_run.IN export CCPP_SUITE=FV3_GFS_2017_csawmg export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'nemsio'" diff --git a/tests/tests/fv3_ccpp_csawmg3shoc127 b/tests/tests/fv3_csawmg3shoc127 similarity index 96% rename from tests/tests/fv3_ccpp_csawmg3shoc127 rename to tests/tests/fv3_csawmg3shoc127 index 1fb11f4584..a4ea34bb79 100644 --- a/tests/tests/fv3_ccpp_csawmg3shoc127 +++ b/tests/tests/fv3_csawmg3shoc127 @@ -70,8 +70,8 @@ export JNPES='8' export NPZ='127' export NPZP='128' -export INPUT_NML=ccpp_csawmg3shoc127.nml.IN -export FV3_RUN=ccpp_csawmg3shoc127_run.IN +export INPUT_NML=csawmg3shoc127.nml.IN +export FV3_RUN=csawmg3shoc127_run.IN export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'nemsio'" export WRITE_NEMSIOFLIP=.true. diff --git a/tests/tests/fv3_ccpp_csawmgshoc b/tests/tests/fv3_csawmgshoc similarity index 96% rename from tests/tests/fv3_ccpp_csawmgshoc rename to tests/tests/fv3_csawmgshoc index f68bc3504a..65af33608e 100644 --- a/tests/tests/fv3_ccpp_csawmgshoc +++ b/tests/tests/fv3_csawmgshoc @@ -56,8 +56,8 @@ export_fv3 DT_ATMOS="600" -export INPUT_NML=ccpp_csawmgshoc.nml.IN -export FV3_RUN=ccpp_csawmgshoc_run.IN +export INPUT_NML=csawmgshoc.nml.IN +export FV3_RUN=csawmgshoc_run.IN export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'nemsio'" export WRITE_NEMSIOFLIP=.true. diff --git a/tests/tests/fv3_ccpp_decomp b/tests/tests/fv3_decomp similarity index 97% rename from tests/tests/fv3_ccpp_decomp rename to tests/tests/fv3_decomp index da4e91205a..4482c85111 100644 --- a/tests/tests/fv3_ccpp_decomp +++ b/tests/tests/fv3_decomp @@ -77,7 +77,7 @@ export_fv3 export INPES=6 export JNPES=4 -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson b/tests/tests/fv3_esg_HAFS_v0_hwrf_thompson similarity index 90% rename from tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson rename to tests/tests/fv3_esg_HAFS_v0_hwrf_thompson index 2188cfa3a9..e5bd40ffaa 100644 --- a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson +++ b/tests/tests/fv3_esg_HAFS_v0_hwrf_thompson @@ -30,10 +30,10 @@ export FDIAG=3 DT_ATMOS="300" -export FV3_RUN=ccpp_esg_HAFS_v0_hwrf_run.IN +export FV3_RUN=esg_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf_thompson -export INPUT_NML=ccpp_esg_HAFS_v0_hwrf.nml.IN -export MODEL_CONFIGURE=ccpp_esg_HAFS_v0_hwrf-model_configure.IN +export INPUT_NML=esg_HAFS_v0_hwrf.nml.IN +export MODEL_CONFIGURE=esg_HAFS_v0_hwrf-model_configure.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. diff --git a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug b/tests/tests/fv3_esg_HAFS_v0_hwrf_thompson_debug similarity index 90% rename from tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug rename to tests/tests/fv3_esg_HAFS_v0_hwrf_thompson_debug index dea85c2bf3..069b81c4c0 100644 --- a/tests/tests/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug +++ b/tests/tests/fv3_esg_HAFS_v0_hwrf_thompson_debug @@ -30,10 +30,10 @@ export FDIAG=1 DT_ATMOS="300" -export FV3_RUN=ccpp_esg_HAFS_v0_hwrf_run.IN +export FV3_RUN=esg_HAFS_v0_hwrf_run.IN export CCPP_SUITE=HAFS_v0_hwrf_thompson -export INPUT_NML=ccpp_esg_HAFS_v0_hwrf.nml.IN -export MODEL_CONFIGURE=ccpp_esg_HAFS_v0_hwrf-model_configure.IN +export INPUT_NML=esg_HAFS_v0_hwrf.nml.IN +export MODEL_CONFIGURE=esg_HAFS_v0_hwrf-model_configure.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. diff --git a/tests/tests/fv3_ccpp_gf b/tests/tests/fv3_gf similarity index 98% rename from tests/tests/fv3_ccpp_gf rename to tests/tests/fv3_gf index 00a7fcfe30..9fb3c6f2c1 100644 --- a/tests/tests/fv3_ccpp_gf +++ b/tests/tests/fv3_gf @@ -78,9 +78,9 @@ export IMP_PHYSICS=11 export DNATS=1 export DO_SAT_ADJ=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GFS_v15_gf -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.T. export DO_MYNNEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gf_thompson b/tests/tests/fv3_gf_thompson similarity index 98% rename from tests/tests/fv3_ccpp_gf_thompson rename to tests/tests/fv3_gf_thompson index 78922beb8c..a81644cc44 100644 --- a/tests/tests/fv3_ccpp_gf_thompson +++ b/tests/tests/fv3_gf_thompson @@ -80,9 +80,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GFS_v15_gf_thompson -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.T. export DO_MYNNEDMF=.F. diff --git a/tests/tests/fv3_ccpp_gfdlmp b/tests/tests/fv3_gfdlmp similarity index 97% rename from tests/tests/fv3_ccpp_gfdlmp rename to tests/tests/fv3_gfdlmp index a965807bc1..ca881f8be8 100644 --- a/tests/tests/fv3_ccpp_gfdlmp +++ b/tests/tests/fv3_gfdlmp @@ -60,7 +60,7 @@ export OUTPUT_FILE="'nemsio'" export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. -export FV3_RUN=ccpp_gfdlmp_run.IN +export FV3_RUN=gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export INPUT_NML=ccpp_gfdlmp.nml.IN +export INPUT_NML=gfdlmp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfdlmp_32bit b/tests/tests/fv3_gfdlmp_32bit similarity index 97% rename from tests/tests/fv3_ccpp_gfdlmp_32bit rename to tests/tests/fv3_gfdlmp_32bit index 1249268bb1..d35f605ef5 100644 --- a/tests/tests/fv3_ccpp_gfdlmp_32bit +++ b/tests/tests/fv3_gfdlmp_32bit @@ -60,7 +60,7 @@ export OUTPUT_FILE="'nemsio'" export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. -export FV3_RUN=ccpp_gfdlmp_run.IN +export FV3_RUN=gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export INPUT_NML=ccpp_gfdlmp.nml.IN +export INPUT_NML=gfdlmp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfdlmprad b/tests/tests/fv3_gfdlmprad similarity index 97% rename from tests/tests/fv3_ccpp_gfdlmprad rename to tests/tests/fv3_gfdlmprad index 5d1b9ccdf2..cef9d92429 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad +++ b/tests/tests/fv3_gfdlmprad @@ -76,6 +76,6 @@ export coupling_interval_sec=3600.0 #coupling time step, want it to be multiple export NEMS_CONFIGURE="nems.configure.blocked_atm_wav.IN" export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export INPUT_NML=ccpp_gfdlmp.nml.IN -export FV3_RUN=ccpp_gfdlmp_run.IN +export INPUT_NML=gfdlmp.nml.IN +export FV3_RUN=gfdlmp_run.IN diff --git a/tests/tests/fv3_ccpp_gfdlmprad_32bit_post b/tests/tests/fv3_gfdlmprad_32bit_post similarity index 97% rename from tests/tests/fv3_ccpp_gfdlmprad_32bit_post rename to tests/tests/fv3_gfdlmprad_32bit_post index 129fab60f7..c64354aadd 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad_32bit_post +++ b/tests/tests/fv3_gfdlmprad_32bit_post @@ -71,6 +71,6 @@ export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export INPUT_NML=ccpp_gfdlmp.nml.IN -export FV3_RUN=ccpp_gfdlmp_run.IN +export INPUT_NML=gfdlmp.nml.IN +export FV3_RUN=gfdlmp_run.IN diff --git a/tests/tests/fv3_ccpp_gfdlmprad_atmwav b/tests/tests/fv3_gfdlmprad_atmwav similarity index 97% rename from tests/tests/fv3_ccpp_gfdlmprad_atmwav rename to tests/tests/fv3_gfdlmprad_atmwav index 69fcd18edd..c0287da001 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad_atmwav +++ b/tests/tests/fv3_gfdlmprad_atmwav @@ -77,6 +77,6 @@ export coupling_interval_sec=1200.0 #coupling time step, want it to be multiple export NEMS_CONFIGURE="nems.configure.blocked_atm_wav_2way.IN" export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export INPUT_NML=ccpp_gfdlmp.nml.IN -export FV3_RUN=ccpp_gfdlmp_run.IN +export INPUT_NML=gfdlmp.nml.IN +export FV3_RUN=gfdlmp_run.IN diff --git a/tests/tests/fv3_ccpp_gfdlmprad_gwd b/tests/tests/fv3_gfdlmprad_gwd similarity index 97% rename from tests/tests/fv3_ccpp_gfdlmprad_gwd rename to tests/tests/fv3_gfdlmprad_gwd index cba744dbdb..c50a6b3216 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad_gwd +++ b/tests/tests/fv3_gfdlmprad_gwd @@ -66,6 +66,6 @@ export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export INPUT_NML=ccpp_gfdlmp.nml.IN -export FV3_RUN=ccpp_gfdlmp_run.IN +export INPUT_NML=gfdlmp.nml.IN +export FV3_RUN=gfdlmp_run.IN diff --git a/tests/tests/fv3_ccpp_gfdlmprad_noahmp b/tests/tests/fv3_gfdlmprad_noahmp similarity index 97% rename from tests/tests/fv3_ccpp_gfdlmprad_noahmp rename to tests/tests/fv3_gfdlmprad_noahmp index 3767fd7804..cca8148dcb 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad_noahmp +++ b/tests/tests/fv3_gfdlmprad_noahmp @@ -70,6 +70,6 @@ export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. export CCPP_SUITE=FV3_GFS_2017_gfdlmp_noahmp -export INPUT_NML=ccpp_gfdlmp.nml.IN -export FV3_RUN=ccpp_gfdlmp_run.IN +export INPUT_NML=gfdlmp.nml.IN +export FV3_RUN=gfdlmp_run.IN diff --git a/tests/tests/fv3_ccpp_gfs_myj b/tests/tests/fv3_gfs_myj similarity index 97% rename from tests/tests/fv3_ccpp_gfs_myj rename to tests/tests/fv3_gfs_myj index df3839f09c..06b96dd1e0 100644 --- a/tests/tests/fv3_ccpp_gfs_myj +++ b/tests/tests/fv3_gfs_myj @@ -76,9 +76,9 @@ export_fv3 DT_ATMOS="900" -export FV3_RUN=ccpp_gfs_v15_run.IN +export FV3_RUN=gfs_v15_run.IN export CCPP_SUITE=FV3_GFS_2017_myj -export INPUT_NML=ccpp_gfdlmp.nml.IN +export INPUT_NML=gfdlmp.nml.IN export OZ_PHYS_OLD=.F. diff --git a/tests/tests/fv3_ccpp_gfs_v15p2 b/tests/tests/fv3_gfs_v15p2 similarity index 97% rename from tests/tests/fv3_ccpp_gfs_v15p2 rename to tests/tests/fv3_gfs_v15p2 index 3ebd1474dc..de56b17023 100644 --- a/tests/tests/fv3_ccpp_gfs_v15p2 +++ b/tests/tests/fv3_gfs_v15p2 @@ -76,7 +76,7 @@ export_fv3 DT_ATMOS="1200" -export FV3_RUN=ccpp_gfs_v15_run.IN +export FV3_RUN=gfs_v15_run.IN export CCPP_SUITE=FV3_GFS_v15p2 -export INPUT_NML=ccpp_v15p2_c96.nml.IN +export INPUT_NML=v15p2_c96.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP b/tests/tests/fv3_gfs_v15p2_RRTMGP similarity index 97% rename from tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP rename to tests/tests/fv3_gfs_v15p2_RRTMGP index ad6bb66faf..ef2880927a 100644 --- a/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP +++ b/tests/tests/fv3_gfs_v15p2_RRTMGP @@ -77,7 +77,7 @@ export_fv3 DT_ATMOS="1200" export DO_RRTMGP=.T. -export FV3_RUN=ccpp_gfs_v15_run.IN +export FV3_RUN=gfs_v15_run.IN export CCPP_SUITE=FV3_GFS_v15p2_RRTMGP -export INPUT_NML=ccpp_v15p2_c96_rrtmgp.nml.IN +export INPUT_NML=v15p2_c96_rrtmgp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP_debug b/tests/tests/fv3_gfs_v15p2_RRTMGP_debug similarity index 97% rename from tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP_debug rename to tests/tests/fv3_gfs_v15p2_RRTMGP_debug index ba67d28114..81f6eac50e 100644 --- a/tests/tests/fv3_ccpp_gfs_v15p2_RRTMGP_debug +++ b/tests/tests/fv3_gfs_v15p2_RRTMGP_debug @@ -77,7 +77,7 @@ export FHMAX="06" DT_ATMOS="1200" export DO_RRTMGP=.T. -export FV3_RUN=ccpp_gfs_v15_run.IN +export FV3_RUN=gfs_v15_run.IN export CCPP_SUITE=FV3_GFS_v15p2_RRTMGP -export INPUT_NML=ccpp_v15p2_c96_rrtmgp.nml.IN +export INPUT_NML=v15p2_c96_rrtmgp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v15p2_debug b/tests/tests/fv3_gfs_v15p2_debug similarity index 97% rename from tests/tests/fv3_ccpp_gfs_v15p2_debug rename to tests/tests/fv3_gfs_v15p2_debug index f5f6b59a2d..37d71a64be 100644 --- a/tests/tests/fv3_ccpp_gfs_v15p2_debug +++ b/tests/tests/fv3_gfs_v15p2_debug @@ -76,7 +76,7 @@ export_fv3 export FHMAX="06" DT_ATMOS="1200" -export FV3_RUN=ccpp_gfs_v15_run.IN +export FV3_RUN=gfs_v15_run.IN export CCPP_SUITE=FV3_GFS_v15p2 -export INPUT_NML=ccpp_v15p2_c96.nml.IN +export INPUT_NML=v15p2_c96.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16 b/tests/tests/fv3_gfs_v16 similarity index 98% rename from tests/tests/fv3_ccpp_gfs_v16 rename to tests/tests/fv3_gfs_v16 index 89550fc9cc..72c5e5f27d 100644 --- a/tests/tests/fv3_ccpp_gfs_v16 +++ b/tests/tests/fv3_gfs_v16 @@ -93,8 +93,8 @@ export RESTART_INTERVAL=24 export NSTF_NAME=2,1,0,0,0 -export FV3_RUN=ccpp_gfs_v16_run.IN +export FV3_RUN=gfs_v16_run.IN export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=ccpp_v16_c96.nml.IN +export INPUT_NML=v16_c96.nml.IN export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gfs_v16_RRTMGP b/tests/tests/fv3_gfs_v16_RRTMGP similarity index 97% rename from tests/tests/fv3_ccpp_gfs_v16_RRTMGP rename to tests/tests/fv3_gfs_v16_RRTMGP index 574fe3ae0d..306907184d 100644 --- a/tests/tests/fv3_ccpp_gfs_v16_RRTMGP +++ b/tests/tests/fv3_gfs_v16_RRTMGP @@ -77,7 +77,7 @@ export_fv3 DT_ATMOS="1200" export DO_RRTMGP=.T. -export FV3_RUN=ccpp_gfs_v16_run.IN +export FV3_RUN=gfs_v16_run.IN export CCPP_SUITE=FV3_GFS_v16_RRTMGP -export INPUT_NML=ccpp_v16_c96_rrtmgp.nml.IN +export INPUT_NML=v16_c96_rrtmgp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd b/tests/tests/fv3_gfs_v16_RRTMGP_2thrd similarity index 97% rename from tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd rename to tests/tests/fv3_gfs_v16_RRTMGP_2thrd index ec4d6d131f..2778beae72 100644 --- a/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd +++ b/tests/tests/fv3_gfs_v16_RRTMGP_2thrd @@ -83,7 +83,7 @@ export WRTTASK_PER_GROUP=12 DT_ATMOS="1200" export DO_RRTMGP=.T. -export FV3_RUN=ccpp_gfs_v16_run.IN +export FV3_RUN=gfs_v16_run.IN export CCPP_SUITE=FV3_GFS_v16_RRTMGP -export INPUT_NML=ccpp_v16_c96_rrtmgp.nml.IN +export INPUT_NML=v16_c96_rrtmgp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 b/tests/tests/fv3_gfs_v16_RRTMGP_c192L127 similarity index 97% rename from tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 rename to tests/tests/fv3_gfs_v16_RRTMGP_c192L127 index c65e2f5034..b542ede33b 100644 --- a/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_c192L127 +++ b/tests/tests/fv3_gfs_v16_RRTMGP_c192L127 @@ -96,7 +96,7 @@ export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," export FNSMCC="'global_soilmgldas.statsgo.t382.768.384.grb'," export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," -export FV3_RUN=ccpp_gfs_v16_run_c192L127.IN +export FV3_RUN=gfs_v16_run_c192L127.IN export CCPP_SUITE=FV3_GFS_v16_RRTMGP -export INPUT_NML=ccpp_v16_c192L127_rrtmgp.nml.IN +export INPUT_NML=v16_c192L127_rrtmgp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_debug b/tests/tests/fv3_gfs_v16_RRTMGP_debug similarity index 97% rename from tests/tests/fv3_ccpp_gfs_v16_RRTMGP_debug rename to tests/tests/fv3_gfs_v16_RRTMGP_debug index 169f6415ac..0bf86c202c 100644 --- a/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_debug +++ b/tests/tests/fv3_gfs_v16_RRTMGP_debug @@ -77,7 +77,7 @@ export FHMAX="06" DT_ATMOS="1200" export DO_RRTMGP=.T. -export FV3_RUN=ccpp_gfs_v16_run.IN +export FV3_RUN=gfs_v16_run.IN export CCPP_SUITE=FV3_GFS_v16_RRTMGP -export INPUT_NML=ccpp_v16_c96_rrtmgp.nml.IN +export INPUT_NML=v16_c96_rrtmgp.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16_debug b/tests/tests/fv3_gfs_v16_debug similarity index 97% rename from tests/tests/fv3_ccpp_gfs_v16_debug rename to tests/tests/fv3_gfs_v16_debug index f27083f806..2091a8f60c 100644 --- a/tests/tests/fv3_ccpp_gfs_v16_debug +++ b/tests/tests/fv3_gfs_v16_debug @@ -78,7 +78,7 @@ DT_ATMOS="1200" export NSTF_NAME=2,1,0,0,0 -export FV3_RUN=ccpp_gfs_v16_run.IN +export FV3_RUN=gfs_v16_run.IN export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=ccpp_v16_c96.nml.IN +export INPUT_NML=v16_c96.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16_flake b/tests/tests/fv3_gfs_v16_flake similarity index 97% rename from tests/tests/fv3_ccpp_gfs_v16_flake rename to tests/tests/fv3_gfs_v16_flake index bd270d5b2c..1b0ffd5432 100644 --- a/tests/tests/fv3_ccpp_gfs_v16_flake +++ b/tests/tests/fv3_gfs_v16_flake @@ -76,7 +76,7 @@ export_fv3 DT_ATMOS="1200" -export FV3_RUN=ccpp_gfs_v16_flake_run.IN +export FV3_RUN=gfs_v16_flake_run.IN export CCPP_SUITE=FV3_GFS_v16_flake -export INPUT_NML=ccpp_v16_flake_c96.nml.IN +export INPUT_NML=v16_flake_c96.nml.IN diff --git a/tests/tests/fv3_gfs_v16_ras b/tests/tests/fv3_gfs_v16_ras new file mode 100644 index 0000000000..7a3af317e3 --- /dev/null +++ b/tests/tests/fv3_gfs_v16_ras @@ -0,0 +1,87 @@ +############################################################################### +# +# FV3 GFS v16 + RAS test +# +############################################################################### + +export TEST_DESCR="Compare FV3 GFS v16 + RAS results with previous trunk version" + +export CNTL_DIR=fv3_gfs_v16_ras + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + + +export_fv3 + +export DT_ATMOS="600" + +export INPUT_NML=v16_c96.nml.IN +export CCPP_SUITE=FV3_GFS_v16_ras +export FV3_RUN=gfs_v16_run.IN + +export RAS=.T. +export IMFDEEPCNV=-1 +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. +export H2O_PHYS=.T. diff --git a/tests/tests/fv3_gfs_v16_ras_debug b/tests/tests/fv3_gfs_v16_ras_debug new file mode 100644 index 0000000000..e8d792b768 --- /dev/null +++ b/tests/tests/fv3_gfs_v16_ras_debug @@ -0,0 +1,89 @@ +############################################################################### +# +# FV3 GFS v16 + RAS test in DEBUG mode +# +############################################################################### + +export TEST_DESCR="Compare FV3 GFS v16 + RAS DEBUG results with previous trunk version" + +export CNTL_DIR=fv3_gfs_v16_ras_debug + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf006.tile1.nc \ + phyf006.tile2.nc \ + phyf006.tile3.nc \ + phyf006.tile4.nc \ + phyf006.tile5.nc \ + phyf006.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf006.tile1.nc \ + dynf006.tile2.nc \ + dynf006.tile3.nc \ + dynf006.tile4.nc \ + dynf006.tile5.nc \ + dynf006.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + + +export_fv3 + +export FHMAX=6 +export FDIAG=3 +export DT_ATMOS="600" + +export INPUT_NML=v16_c96.nml.IN +export CCPP_SUITE=FV3_GFS_v16_ras +export FV3_RUN=gfs_v16_run.IN + +export RAS=.T. +export IMFDEEPCNV=-1 +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. +export H2O_PHYS=.T. diff --git a/tests/tests/fv3_ccpp_gfs_v16_restart b/tests/tests/fv3_gfs_v16_restart similarity index 97% rename from tests/tests/fv3_ccpp_gfs_v16_restart rename to tests/tests/fv3_gfs_v16_restart index c95489ea5e..41f9bcb6b6 100644 --- a/tests/tests/fv3_ccpp_gfs_v16_restart +++ b/tests/tests/fv3_gfs_v16_restart @@ -68,7 +68,7 @@ export MAKE_NH=.F. export MOUNTAIN=.T. export NSTF_NAME=2,0,0,0,0 -export FV3_RUN=ccpp_gfs_v16_run.IN +export FV3_RUN=gfs_v16_run.IN export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=ccpp_v16_c96.nml.IN +export INPUT_NML=v16_c96.nml.IN diff --git a/tests/tests/fv3_ccpp_gfs_v16_stochy b/tests/tests/fv3_gfs_v16_stochy similarity index 97% rename from tests/tests/fv3_ccpp_gfs_v16_stochy rename to tests/tests/fv3_gfs_v16_stochy index 007c1f02fe..cfab01181d 100644 --- a/tests/tests/fv3_ccpp_gfs_v16_stochy +++ b/tests/tests/fv3_gfs_v16_stochy @@ -86,7 +86,7 @@ export SKEB=0.3 export SHUM=0.003 export SPPT=0.2 -export FV3_RUN=ccpp_gfs_v16_run.IN +export FV3_RUN=gfs_v16_run.IN export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=ccpp_v16_c96.nml.IN +export INPUT_NML=v16_c96.nml.IN diff --git a/tests/tests/fv3_ccpp_gfsv16_csawmg b/tests/tests/fv3_gfsv16_csawmg similarity index 96% rename from tests/tests/fv3_ccpp_gfsv16_csawmg rename to tests/tests/fv3_gfsv16_csawmg index 58c49ff18e..b07fa158e4 100644 --- a/tests/tests/fv3_ccpp_gfsv16_csawmg +++ b/tests/tests/fv3_gfsv16_csawmg @@ -55,8 +55,8 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 DT_ATMOS="600" -export INPUT_NML=ccpp_gfsv16_csawmg.nml.IN -export FV3_RUN=ccpp_gfsv16_csawmg_run.IN +export INPUT_NML=gfsv16_csawmg.nml.IN +export FV3_RUN=gfsv16_csawmg_run.IN export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'nemsio'" export WRITE_NEMSIOFLIP=.true. diff --git a/tests/tests/fv3_ccpp_gfsv16_csawmgt b/tests/tests/fv3_gfsv16_csawmgt similarity index 96% rename from tests/tests/fv3_ccpp_gfsv16_csawmgt rename to tests/tests/fv3_gfsv16_csawmgt index 60c86f3271..684feb5a9c 100644 --- a/tests/tests/fv3_ccpp_gfsv16_csawmgt +++ b/tests/tests/fv3_gfsv16_csawmgt @@ -55,8 +55,8 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 DT_ATMOS="600" -export INPUT_NML=ccpp_gfsv16_csawmg.nml.IN -export FV3_RUN=ccpp_gfsv16_csawmg_run.IN +export INPUT_NML=gfsv16_csawmg.nml.IN +export FV3_RUN=gfsv16_csawmg_run.IN export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'nemsio'" export WRITE_NEMSIOFLIP=.true. diff --git a/tests/tests/fv3_ccpp_gfsv16_ugwpv1 b/tests/tests/fv3_gfsv16_ugwpv1 similarity index 85% rename from tests/tests/fv3_ccpp_gfsv16_ugwpv1 rename to tests/tests/fv3_gfsv16_ugwpv1 index daec8b1c96..e6006c7f82 100644 --- a/tests/tests/fv3_ccpp_gfsv16_ugwpv1 +++ b/tests/tests/fv3_gfsv16_ugwpv1 @@ -1,12 +1,12 @@ -############################################################################### +############################################### # -# FV3 CCPP GFS v16beta with ugwpv1 and gsldrag: fv3_ccpp_gfsv16_ugwpv1 +# FV3 CCPP GFS v16beta with ugwpv1 and gsldrag # -############################################################################### +############################################### -export TEST_DESCR="Compare fv3_ccpp_gfsv16_ugwpv1 with previous trunk version" +export TEST_DESCR="Compare FV3 CCPP GFS v16beta with ugwpv1 and gsldrag with previous trunk version" -export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1 +export CNTL_DIR=fv3_gfsv16_ugwpv1 export LIST_FILES="phyf000.tile1.nc \ phyf000.tile2.nc \ @@ -75,10 +75,9 @@ export SHOUR=00 DT_ATMOS="600" -export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN +export FV3_RUN=gfsv16_ugwpv1_run.IN export CCPP_SUITE=FV3_GFS_v16b_ugwpv1 -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN +export INPUT_NML=v16_c96_ugwpv1.nml.IN export WLCLK=30 # Cold start, these are defaults diff --git a/tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug b/tests/tests/fv3_gfsv16_ugwpv1_debug similarity index 84% rename from tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug rename to tests/tests/fv3_gfsv16_ugwpv1_debug index 718f438483..de1d4a6f49 100644 --- a/tests/tests/fv3_ccpp_gfsv16_ugwpv1_debug +++ b/tests/tests/fv3_gfsv16_ugwpv1_debug @@ -1,12 +1,12 @@ -########################################################################################### +############################################################# # -# FV3 CCPP GFS v16beta with ugwpv1 and gsldrag in DEBUG mode: fv3_ccpp_gfsv16_ugwpv1_debug +# FV3 CCPP GFS v16beta with ugwpv1 and gsldrag in DEBUG mode # -########################################################################################### +############################################################# -export TEST_DESCR="Compare fv3_ccpp_gfsv16_ugwpv1 DEBUG with previous trunk version" +export TEST_DESCR="Compare FV3 CCPP GFS v16beta with ugwpv1 and gsldrag DEBUG with previous trunk version" -export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1_debug +export CNTL_DIR=fv3_gfsv16_ugwpv1_debug export LIST_FILES="phyf000.tile1.nc \ phyf000.tile2.nc \ @@ -75,10 +75,9 @@ export SHOUR=00 DT_ATMOS="600" export FHMAX=6 -export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN +export FV3_RUN=gfsv16_ugwpv1_run.IN export CCPP_SUITE=FV3_GFS_v16b_ugwpv1 -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN +export INPUT_NML=v16_c96_ugwpv1.nml.IN export WLCLK=30 # Cold start, these are defaults diff --git a/tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart b/tests/tests/fv3_gfsv16_ugwpv1_warmstart similarity index 84% rename from tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart rename to tests/tests/fv3_gfsv16_ugwpv1_warmstart index 049302c5da..74fae7bae7 100644 --- a/tests/tests/fv3_ccpp_gfsv16_ugwpv1_warmstart +++ b/tests/tests/fv3_gfsv16_ugwpv1_warmstart @@ -1,12 +1,12 @@ -############################################################################### +########################################################### # -# FV3 CCPP GFS v16beta with ugwpv1 and gsldrag, warm start: fv3_ccpp_gfsv16_ugwpv1_warmstart +# FV3 CCPP GFS v16beta with ugwpv1 and gsldrag, warm start # -############################################################################### +########################################################### -export TEST_DESCR="Compare fv3_ccpp_gfsv16_ugwpv1 with previous trunk version" +export TEST_DESCR="Compare FV3 CCPP GFS v16beta with ugwpv1 and gsldrag, warm start with previous trunk version" -export CNTL_DIR=fv3_ccpp_gfsv16_ugwpv1_warmstart +export CNTL_DIR=fv3_gfsv16_ugwpv1_warmstart export LIST_FILES="phyf000.tile1.nc \ phyf000.tile2.nc \ @@ -75,14 +75,12 @@ export SHOUR=00 DT_ATMOS="600" -export FV3_RUN=ccpp_gfsv16_ugwpv1_run.IN +export FV3_RUN=gfsv16_ugwpv1_run.IN export CCPP_SUITE=FV3_GFS_v16b_ugwpv1 -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_v16_c96_ugwpv1.nml.IN +export INPUT_NML=v16_c96_ugwpv1.nml.IN export WLCLK=30 # Warm start export WARM_START=.T. export EXTERNAL_IC=.F. export MOUNTAIN=.T. - diff --git a/tests/tests/fv3_ccpp_gocart_clm b/tests/tests/fv3_gocart_clm similarity index 97% rename from tests/tests/fv3_ccpp_gocart_clm rename to tests/tests/fv3_gocart_clm index 3c27595ec7..c9b7730525 100644 --- a/tests/tests/fv3_ccpp_gocart_clm +++ b/tests/tests/fv3_gocart_clm @@ -63,9 +63,9 @@ export IAER=1111 export HYBEDMF=.true. export SATMEDMF=.false. -export FV3_RUN=ccpp_gocart.IN +export FV3_RUN=gocart.IN export CCPP_SUITE=FV3_GFS_2017_gfdlmp -export INPUT_NML=ccpp.gocart.nml.IN +export INPUT_NML=gocart.nml.IN # Increase the number of nodes on Cheyenne to avoid out of memory errors if [[ $MACHINE_ID = cheyenne.* ]]; then diff --git a/tests/tests/fv3_ccpp_gsd b/tests/tests/fv3_gsd similarity index 98% rename from tests/tests/fv3_ccpp_gsd rename to tests/tests/fv3_gsd index b1e1a7bb5d..7fd6c1ad27 100644 --- a/tests/tests/fv3_ccpp_gsd +++ b/tests/tests/fv3_gsd @@ -107,9 +107,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gsd_RRTMGP b/tests/tests/fv3_gsd_RRTMGP similarity index 98% rename from tests/tests/fv3_ccpp_gsd_RRTMGP rename to tests/tests/fv3_gsd_RRTMGP index 2fb8236872..9cf139c0f8 100644 --- a/tests/tests/fv3_ccpp_gsd_RRTMGP +++ b/tests/tests/fv3_gsd_RRTMGP @@ -107,9 +107,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_RRTMGP_run.IN +export FV3_RUN=gsd_RRTMGP_run.IN export CCPP_SUITE=FV3_GSD_v0_RRTMGP -export INPUT_NML=ccpp_gsd_RRTMGP.nml.IN +export INPUT_NML=gsd_RRTMGP.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gsd_RRTMGP_debug b/tests/tests/fv3_gsd_RRTMGP_debug similarity index 97% rename from tests/tests/fv3_ccpp_gsd_RRTMGP_debug rename to tests/tests/fv3_gsd_RRTMGP_debug index 00d6519138..63852105db 100644 --- a/tests/tests/fv3_ccpp_gsd_RRTMGP_debug +++ b/tests/tests/fv3_gsd_RRTMGP_debug @@ -83,9 +83,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_RRTMGP_run.IN +export FV3_RUN=gsd_RRTMGP_run.IN export CCPP_SUITE=FV3_GSD_v0_RRTMGP -export INPUT_NML=ccpp_gsd_RRTMGP.nml.IN +export INPUT_NML=gsd_RRTMGP.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gsd_coldstart b/tests/tests/fv3_gsd_coldstart similarity index 96% rename from tests/tests/fv3_ccpp_gsd_coldstart rename to tests/tests/fv3_gsd_coldstart index df3293e5c7..673e8b3170 100644 --- a/tests/tests/fv3_ccpp_gsd_coldstart +++ b/tests/tests/fv3_gsd_coldstart @@ -45,9 +45,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gsd_debug b/tests/tests/fv3_gsd_debug similarity index 98% rename from tests/tests/fv3_ccpp_gsd_debug rename to tests/tests/fv3_gsd_debug index ae0c15445b..b937b58f74 100644 --- a/tests/tests/fv3_ccpp_gsd_debug +++ b/tests/tests/fv3_gsd_debug @@ -83,9 +83,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gsd_diag3d_debug b/tests/tests/fv3_gsd_diag3d_debug similarity index 98% rename from tests/tests/fv3_ccpp_gsd_diag3d_debug rename to tests/tests/fv3_gsd_diag3d_debug index c9797035f7..735e295527 100644 --- a/tests/tests/fv3_ccpp_gsd_diag3d_debug +++ b/tests/tests/fv3_gsd_diag3d_debug @@ -87,9 +87,9 @@ export LDIAG3D=.T. export QDIAG3D=.T. export MAX_OUTPUT_FIELDS=400 -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gsd_drag_suite b/tests/tests/fv3_gsd_drag_suite similarity index 98% rename from tests/tests/fv3_ccpp_gsd_drag_suite rename to tests/tests/fv3_gsd_drag_suite index b10aeee7c2..f42b3bad95 100644 --- a/tests/tests/fv3_ccpp_gsd_drag_suite +++ b/tests/tests/fv3_gsd_drag_suite @@ -83,9 +83,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GSD_v0_drag_suite -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp b/tests/tests/fv3_gsd_drag_suite_unified_ugwp similarity index 98% rename from tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp rename to tests/tests/fv3_gsd_drag_suite_unified_ugwp index b598f56bc6..b5d68f21bb 100644 --- a/tests/tests/fv3_ccpp_gsd_drag_suite_unified_ugwp +++ b/tests/tests/fv3_gsd_drag_suite_unified_ugwp @@ -83,9 +83,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GSD_v0_unified_ugwp_suite -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gsd_lndp b/tests/tests/fv3_gsd_lndp similarity index 98% rename from tests/tests/fv3_ccpp_gsd_lndp rename to tests/tests/fv3_gsd_lndp index 51f18f714e..39fd4beb85 100644 --- a/tests/tests/fv3_ccpp_gsd_lndp +++ b/tests/tests/fv3_gsd_lndp @@ -80,9 +80,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gsd_mynnsfc b/tests/tests/fv3_gsd_mynnsfc similarity index 98% rename from tests/tests/fv3_ccpp_gsd_mynnsfc rename to tests/tests/fv3_gsd_mynnsfc index e9bccdd285..ef557aea22 100644 --- a/tests/tests/fv3_ccpp_gsd_mynnsfc +++ b/tests/tests/fv3_gsd_mynnsfc @@ -108,9 +108,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GSD_v0_mynnsfc -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gsd_mynnsfc_debug b/tests/tests/fv3_gsd_mynnsfc_debug similarity index 98% rename from tests/tests/fv3_ccpp_gsd_mynnsfc_debug rename to tests/tests/fv3_gsd_mynnsfc_debug index f1967d6f46..dbd24dd3e1 100644 --- a/tests/tests/fv3_ccpp_gsd_mynnsfc_debug +++ b/tests/tests/fv3_gsd_mynnsfc_debug @@ -84,9 +84,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GSD_v0_mynnsfc -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gsd_noah b/tests/tests/fv3_gsd_noah similarity index 98% rename from tests/tests/fv3_ccpp_gsd_noah rename to tests/tests/fv3_gsd_noah index 59ca150b7e..6b76d52140 100644 --- a/tests/tests/fv3_ccpp_gsd_noah +++ b/tests/tests/fv3_gsd_noah @@ -107,9 +107,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GSD_noah -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gsd_noah_lndp b/tests/tests/fv3_gsd_noah_lndp similarity index 98% rename from tests/tests/fv3_ccpp_gsd_noah_lndp rename to tests/tests/fv3_gsd_noah_lndp index 41355f5a64..80e4a10a5f 100644 --- a/tests/tests/fv3_ccpp_gsd_noah_lndp +++ b/tests/tests/fv3_gsd_noah_lndp @@ -80,9 +80,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GSD_noah -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc b/tests/tests/fv3_gsd_noah_mynnsfc similarity index 98% rename from tests/tests/fv3_ccpp_gsd_noah_mynnsfc rename to tests/tests/fv3_gsd_noah_mynnsfc index 6cfa7b4e1f..bf2c20b624 100644 --- a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc +++ b/tests/tests/fv3_gsd_noah_mynnsfc @@ -108,9 +108,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GSD_noah_mynnsfc -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug b/tests/tests/fv3_gsd_noah_mynnsfc_debug similarity index 98% rename from tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug rename to tests/tests/fv3_gsd_noah_mynnsfc_debug index 6ea180f71c..213b366ce9 100644 --- a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug +++ b/tests/tests/fv3_gsd_noah_mynnsfc_debug @@ -84,9 +84,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GSD_noah_mynnsfc -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gsd_sar b/tests/tests/fv3_gsd_sar similarity index 87% rename from tests/tests/fv3_ccpp_gsd_sar rename to tests/tests/fv3_gsd_sar index a5b06e5e7c..bde8051b90 100644 --- a/tests/tests/fv3_ccpp_gsd_sar +++ b/tests/tests/fv3_gsd_sar @@ -26,10 +26,10 @@ export FDIAG=1 export_fv3 export TASKS=24 -export MODEL_CONFIGURE=ccpp_gsd_sar-model_configure.IN -export FV3_RUN=ccpp_gsd_sar_run.IN +export MODEL_CONFIGURE=gsd_sar-model_configure.IN +export FV3_RUN=gsd_sar_run.IN export CCPP_SUITE=FV3_GSD_SAR -export INPUT_NML=ccpp_gsd_sar.nml.IN +export INPUT_NML=gsd_sar.nml.IN export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_sar_debug b/tests/tests/fv3_gsd_sar_debug similarity index 88% rename from tests/tests/fv3_ccpp_gsd_sar_debug rename to tests/tests/fv3_gsd_sar_debug index 673f76627b..57648546ff 100644 --- a/tests/tests/fv3_ccpp_gsd_sar_debug +++ b/tests/tests/fv3_gsd_sar_debug @@ -26,10 +26,10 @@ export FDIAG=1 export_fv3 export TASKS=24 -export MODEL_CONFIGURE=ccpp_gsd_sar-model_configure.IN -export FV3_RUN=ccpp_gsd_sar_run.IN +export MODEL_CONFIGURE=gsd_sar-model_configure.IN +export FV3_RUN=gsd_sar_run.IN export CCPP_SUITE=FV3_GSD_SAR -export INPUT_NML=ccpp_gsd_sar.nml.IN +export INPUT_NML=gsd_sar.nml.IN export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_unified_ugwp b/tests/tests/fv3_gsd_unified_ugwp similarity index 98% rename from tests/tests/fv3_ccpp_gsd_unified_ugwp rename to tests/tests/fv3_gsd_unified_ugwp index abc40f8a08..777f246ac5 100644 --- a/tests/tests/fv3_ccpp_gsd_unified_ugwp +++ b/tests/tests/fv3_gsd_unified_ugwp @@ -107,9 +107,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GSD_v0_unified_ugwp_suite -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_gsd_warmstart b/tests/tests/fv3_gsd_warmstart similarity index 98% rename from tests/tests/fv3_ccpp_gsd_warmstart rename to tests/tests/fv3_gsd_warmstart index f00337997d..1eda979dbb 100644 --- a/tests/tests/fv3_ccpp_gsd_warmstart +++ b/tests/tests/fv3_gsd_warmstart @@ -85,9 +85,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GSD_v0 -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_h2ophys b/tests/tests/fv3_h2ophys similarity index 97% rename from tests/tests/fv3_ccpp_h2ophys rename to tests/tests/fv3_h2ophys index 3ff22e78f6..133cec2efd 100644 --- a/tests/tests/fv3_ccpp_h2ophys +++ b/tests/tests/fv3_h2ophys @@ -74,9 +74,9 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017_h2ophys -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN export H2O_PHYS=.T. diff --git a/tests/tests/fv3_ccpp_hrrr b/tests/tests/fv3_hrrr similarity index 98% rename from tests/tests/fv3_ccpp_hrrr rename to tests/tests/fv3_hrrr index 27e19500f5..9e9242f8f3 100644 --- a/tests/tests/fv3_ccpp_hrrr +++ b/tests/tests/fv3_hrrr @@ -83,9 +83,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_HRRR -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_iau b/tests/tests/fv3_iau similarity index 97% rename from tests/tests/fv3_ccpp_iau rename to tests/tests/fv3_iau index bbcc387dc0..4c538e395f 100644 --- a/tests/tests/fv3_ccpp_iau +++ b/tests/tests/fv3_iau @@ -86,7 +86,7 @@ export NSTF_NAME=2,0,1,0,5 export IAU_INC_FILES="fv3_increment.nc" export IAU_DRYMASSFIXER=.true. -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_lheatstrg b/tests/tests/fv3_lheatstrg similarity index 97% rename from tests/tests/fv3_ccpp_lheatstrg rename to tests/tests/fv3_lheatstrg index 6d40d3c63e..5a26497973 100644 --- a/tests/tests/fv3_ccpp_lheatstrg +++ b/tests/tests/fv3_lheatstrg @@ -54,9 +54,9 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN export LHEATSTRG=.T. export OUTPUT_GRID="'gaussian_grid'" diff --git a/tests/tests/fv3_ccpp_lndp b/tests/tests/fv3_lndp similarity index 97% rename from tests/tests/fv3_ccpp_lndp rename to tests/tests/fv3_lndp index 9ea3dc2847..dc3e0eb0f5 100644 --- a/tests/tests/fv3_ccpp_lndp +++ b/tests/tests/fv3_lndp @@ -75,9 +75,9 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 export NODES=$(expr $TASKS / $TPN + 1) -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_lndp.nml.IN +export INPUT_NML=lndp.nml.IN export LNDP_TYPE=2 export N_VAR_LNDP=2 diff --git a/tests/tests/fv3_ccpp_multigases b/tests/tests/fv3_multigases similarity index 97% rename from tests/tests/fv3_ccpp_multigases rename to tests/tests/fv3_multigases index 8b2e579305..9ac6f39b59 100644 --- a/tests/tests/fv3_ccpp_multigases +++ b/tests/tests/fv3_multigases @@ -89,6 +89,6 @@ SHOUR="06" export FHMAX=06 export FDIAG=0,1,2,3,4,5,6 export NSTF_NAME=0,0,1,0,5 -export INPUT_NML=ccpp_multi_gases.nml.IN -export FV3_RUN=ccpp_multigases_run.IN +export INPUT_NML=multi_gases.nml.IN +export FV3_RUN=multigases_run.IN export CCPP_SUITE=FV3_GFS_2017_fv3wam diff --git a/tests/tests/fv3_ccpp_mynn b/tests/tests/fv3_mynn similarity index 98% rename from tests/tests/fv3_ccpp_mynn rename to tests/tests/fv3_mynn index 16a48c1714..a2f805cd88 100644 --- a/tests/tests/fv3_ccpp_mynn +++ b/tests/tests/fv3_mynn @@ -78,9 +78,9 @@ export IMP_PHYSICS=11 export DNATS=1 export DO_SAT_ADJ=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GFS_v15_mynn -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_ntiedtke b/tests/tests/fv3_ntiedtke similarity index 97% rename from tests/tests/fv3_ccpp_ntiedtke rename to tests/tests/fv3_ntiedtke index 6bae221a55..c437e1e217 100644 --- a/tests/tests/fv3_ccpp_ntiedtke +++ b/tests/tests/fv3_ntiedtke @@ -76,9 +76,9 @@ export_fv3 DT_ATMOS="600" -export FV3_RUN=ccpp_gfdlmp_run.IN +export FV3_RUN=gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_ntiedtke -export INPUT_NML=ccpp_gfdlmp.nml.IN +export INPUT_NML=gfdlmp.nml.IN export IMFSHALCNV=4 diff --git a/tests/tests/fv3_ccpp_ozphys_2015 b/tests/tests/fv3_ozphys_2015 similarity index 97% rename from tests/tests/fv3_ccpp_ozphys_2015 rename to tests/tests/fv3_ozphys_2015 index 95fe9918b9..9e7bf03042 100644 --- a/tests/tests/fv3_ccpp_ozphys_2015 +++ b/tests/tests/fv3_ozphys_2015 @@ -74,9 +74,9 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017_ozphys_2015 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. diff --git a/tests/tests/fv3_ccpp_rap b/tests/tests/fv3_rap similarity index 98% rename from tests/tests/fv3_ccpp_rap rename to tests/tests/fv3_rap index 32df243fa0..f8b77c2dff 100644 --- a/tests/tests/fv3_ccpp_rap +++ b/tests/tests/fv3_rap @@ -83,9 +83,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_RAP -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_rasmgshoc b/tests/tests/fv3_rasmgshoc deleted file mode 100644 index 1bd7c78eec..0000000000 --- a/tests/tests/fv3_rasmgshoc +++ /dev/null @@ -1,66 +0,0 @@ -############################################################################### -# -# FV3 RASMGSHOC test -# -############################################################################### - -export TEST_DESCR="Compare FV3 rasmgshoc results with previous trunk version" - -export CNTL_DIR=fv3_rasmgshoc - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.nemsio \ - phyf024.nemsio \ - dynf000.nemsio \ - dynf024.nemsio \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - - -export_fv3 - -DT_ATMOS="600" - -export INPUT_NML=rasmgshoc.nml.IN -export FV3_RUN=rasmgshoc_run.IN -export OUTPUT_GRID="'gaussian_grid'" -export OUTPUT_FILE="'nemsio'" -export WRITE_NEMSIOFLIP=.true. -export WRITE_FSYNCFLAG=.true. - - diff --git a/tests/tests/fv3_ccpp_read_inc b/tests/tests/fv3_read_inc similarity index 97% rename from tests/tests/fv3_ccpp_read_inc rename to tests/tests/fv3_read_inc index d49e8ddb81..3d842fe259 100644 --- a/tests/tests/fv3_ccpp_read_inc +++ b/tests/tests/fv3_read_inc @@ -85,7 +85,7 @@ export FDIAG=3 export READ_INCREMENT=.T. export NSTF_NAME=2,0,1,0,5 -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_regional_c768 b/tests/tests/fv3_regional_c768 similarity index 86% rename from tests/tests/fv3_ccpp_regional_c768 rename to tests/tests/fv3_regional_c768 index 6571c76bc6..cd51a1d6a7 100644 --- a/tests/tests/fv3_ccpp_regional_c768 +++ b/tests/tests/fv3_regional_c768 @@ -18,13 +18,13 @@ export_fv3 export TASKS=480 export WLCLK=30 -export FV3_RUN=ccpp_regional_run.IN +export FV3_RUN=regional_run.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional_c768 -export INPUT_NML=ccpp_regional_c768.nml.IN +export INPUT_NML=regional_c768.nml.IN export MODEL_CONFIGURE=regional_c768-model_configure.IN -export FV3_RUN=ccpp_regional_c786_run.IN +export FV3_RUN=regional_c786_run.IN diff --git a/tests/tests/fv3_ccpp_regional_control b/tests/tests/fv3_regional_control similarity index 92% rename from tests/tests/fv3_ccpp_regional_control rename to tests/tests/fv3_regional_control index dd7f2ee05c..2d96d1b7c1 100644 --- a/tests/tests/fv3_ccpp_regional_control +++ b/tests/tests/fv3_regional_control @@ -18,7 +18,7 @@ export_fv3 export TASKS=24 -export FV3_RUN=ccpp_regional_run.IN +export FV3_RUN=regional_run.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. @@ -29,7 +29,7 @@ export QUILTING=.false. export MODEL_CONFIGURE=model_configure_regional.IN export CCPP_SUITE=FV3_GFS_v15_thompson_mynn -export INPUT_NML=ccpp_regional.nml.IN +export INPUT_NML=regional.nml.IN export FDIAG=3 export INPES=4 diff --git a/tests/tests/fv3_ccpp_regional_control_debug b/tests/tests/fv3_regional_control_debug similarity index 92% rename from tests/tests/fv3_ccpp_regional_control_debug rename to tests/tests/fv3_regional_control_debug index f03ca27909..3ec5822542 100644 --- a/tests/tests/fv3_ccpp_regional_control_debug +++ b/tests/tests/fv3_regional_control_debug @@ -19,7 +19,7 @@ export_fv3 export TASKS=40 export FHMAX="01" -export FV3_RUN=ccpp_regional_run.IN +export FV3_RUN=regional_run.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. @@ -29,7 +29,7 @@ export QUILTING=.false. export MODEL_CONFIGURE=model_configure_regional.IN export CCPP_SUITE=FV3_GFS_v15_thompson_mynn -export INPUT_NML=ccpp_regional.nml.IN +export INPUT_NML=regional.nml.IN export FDIAG=1 export INPES=5 diff --git a/tests/tests/fv3_ccpp_regional_quilt b/tests/tests/fv3_regional_quilt similarity index 92% rename from tests/tests/fv3_ccpp_regional_quilt rename to tests/tests/fv3_regional_quilt index 6fcc844d62..3c03e1374a 100644 --- a/tests/tests/fv3_ccpp_regional_quilt +++ b/tests/tests/fv3_regional_quilt @@ -21,7 +21,7 @@ export_fv3 export TASKS=28 -export FV3_RUN=ccpp_regional_run.IN +export FV3_RUN=regional_run.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. @@ -31,7 +31,7 @@ export WRITE_DOPOST=.true. export POSTAPP='lam' export CCPP_SUITE=FV3_GFS_v15_thompson_mynn -export INPUT_NML=ccpp_regional.nml.IN +export INPUT_NML=regional.nml.IN export MODEL_CONFIGURE=model_configure_regional.IN export FDIAG=3 diff --git a/tests/tests/fv3_ccpp_regional_quilt_hafs b/tests/tests/fv3_regional_quilt_hafs similarity index 91% rename from tests/tests/fv3_ccpp_regional_quilt_hafs rename to tests/tests/fv3_regional_quilt_hafs index 3cfbbbc2ef..a0b48bea3d 100644 --- a/tests/tests/fv3_ccpp_regional_quilt_hafs +++ b/tests/tests/fv3_regional_quilt_hafs @@ -19,7 +19,7 @@ export_fv3 export TASKS=28 -export FV3_RUN=ccpp_regional_run.IN +export FV3_RUN=regional_run.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. @@ -29,7 +29,7 @@ export WRITE_DOPOST=.true. export POSTAPP='hafs' export CCPP_SUITE=FV3_GFS_v15_thompson_mynn -export INPUT_NML=ccpp_regional.nml.IN +export INPUT_NML=regional.nml.IN export MODEL_CONFIGURE=model_configure_hafs.IN export FDIAG=3 diff --git a/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel b/tests/tests/fv3_regional_quilt_netcdf_parallel similarity index 92% rename from tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel rename to tests/tests/fv3_regional_quilt_netcdf_parallel index 2a8ee350b0..48860e3029 100644 --- a/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel +++ b/tests/tests/fv3_regional_quilt_netcdf_parallel @@ -18,7 +18,7 @@ export_fv3 export TASKS=28 -export FV3_RUN=ccpp_regional_run.IN +export FV3_RUN=regional_run.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. @@ -29,7 +29,7 @@ export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" export IDEFLATE=1 export CCPP_SUITE=FV3_GFS_v15_thompson_mynn -export INPUT_NML=ccpp_regional.nml.IN +export INPUT_NML=regional.nml.IN export FDIAG=3 export INPES=6 diff --git a/tests/tests/fv3_ccpp_regional_restart b/tests/tests/fv3_regional_restart similarity index 93% rename from tests/tests/fv3_ccpp_regional_restart rename to tests/tests/fv3_regional_restart index cd4c21022d..732baf77a0 100644 --- a/tests/tests/fv3_ccpp_regional_restart +++ b/tests/tests/fv3_regional_restart @@ -17,7 +17,7 @@ export_fv3 export TASKS=24 export WARM_START=.T. -export FV3_RUN=ccpp_regional_run.IN +export FV3_RUN=regional_run.IN export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. @@ -27,7 +27,7 @@ export QUILTING=.false. export MODEL_CONFIGURE=model_configure_regional.IN export CCPP_SUITE=FV3_GFS_v15_thompson_mynn -export INPUT_NML=ccpp_regional.nml.IN +export INPUT_NML=regional.nml.IN export FDIAG=3 export INPES=4 diff --git a/tests/tests/fv3_ccpp_restart b/tests/tests/fv3_restart similarity index 97% rename from tests/tests/fv3_ccpp_restart rename to tests/tests/fv3_restart index 5a04227a59..da2fb937bc 100644 --- a/tests/tests/fv3_ccpp_restart +++ b/tests/tests/fv3_restart @@ -67,7 +67,7 @@ export NA_INIT=0 export FDIAG=3 export NSTF_NAME=2,0,1,0,5 -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_rrfs_v1beta b/tests/tests/fv3_rrfs_v1beta similarity index 98% rename from tests/tests/fv3_ccpp_rrfs_v1beta rename to tests/tests/fv3_rrfs_v1beta index d5a9f5f686..615a859242 100644 --- a/tests/tests/fv3_ccpp_rrfs_v1beta +++ b/tests/tests/fv3_rrfs_v1beta @@ -83,9 +83,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_RRFS_v1beta -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_rrfs_v1beta_debug b/tests/tests/fv3_rrfs_v1beta_debug similarity index 98% rename from tests/tests/fv3_ccpp_rrfs_v1beta_debug rename to tests/tests/fv3_rrfs_v1beta_debug index 66e4b02ed7..465e486259 100644 --- a/tests/tests/fv3_ccpp_rrfs_v1beta_debug +++ b/tests/tests/fv3_rrfs_v1beta_debug @@ -83,9 +83,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_RRFS_v1beta -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_sas b/tests/tests/fv3_sas similarity index 97% rename from tests/tests/fv3_ccpp_sas rename to tests/tests/fv3_sas index ab1bfd25aa..7d4a5bd847 100644 --- a/tests/tests/fv3_ccpp_sas +++ b/tests/tests/fv3_sas @@ -62,7 +62,7 @@ export OUTPUT_FILE="'nemsio'" export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. -export FV3_RUN=ccpp_gfdlmp_run.IN +export FV3_RUN=gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_sas -export INPUT_NML=ccpp_gfdlmp.nml.IN +export INPUT_NML=gfdlmp.nml.IN diff --git a/tests/tests/fv3_ccpp_satmedmf b/tests/tests/fv3_satmedmf similarity index 97% rename from tests/tests/fv3_ccpp_satmedmf rename to tests/tests/fv3_satmedmf index 514e1a62c6..525c6da53b 100644 --- a/tests/tests/fv3_ccpp_satmedmf +++ b/tests/tests/fv3_satmedmf @@ -62,7 +62,7 @@ export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'nemsio'" export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. -export FV3_RUN=ccpp_satmedmf_run.IN +export FV3_RUN=satmedmf_run.IN export CCPP_SUITE=FV3_GFS_2017_satmedmf -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_satmedmfq b/tests/tests/fv3_satmedmfq similarity index 97% rename from tests/tests/fv3_ccpp_satmedmfq rename to tests/tests/fv3_satmedmfq index b4c4aa8d7b..c078518d61 100644 --- a/tests/tests/fv3_ccpp_satmedmfq +++ b/tests/tests/fv3_satmedmfq @@ -63,7 +63,7 @@ export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'nemsio'" export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. -export FV3_RUN=ccpp_satmedmf_run.IN +export FV3_RUN=satmedmf_run.IN export CCPP_SUITE=FV3_GFS_2017_satmedmfq -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_shinhong b/tests/tests/fv3_shinhong similarity index 97% rename from tests/tests/fv3_ccpp_shinhong rename to tests/tests/fv3_shinhong index 77c65967a2..a2108bccaa 100644 --- a/tests/tests/fv3_ccpp_shinhong +++ b/tests/tests/fv3_shinhong @@ -76,9 +76,9 @@ export_fv3 DT_ATMOS="1200" -export FV3_RUN=ccpp_gfdlmp_run.IN +export FV3_RUN=gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_shinhong -export INPUT_NML=ccpp_gfdlmp.nml.IN +export INPUT_NML=gfdlmp.nml.IN export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_stochy b/tests/tests/fv3_stochy similarity index 97% rename from tests/tests/fv3_ccpp_stochy rename to tests/tests/fv3_stochy index 6ac9305c72..b9662c8d9e 100644 --- a/tests/tests/fv3_ccpp_stochy +++ b/tests/tests/fv3_stochy @@ -83,7 +83,7 @@ export SPPT=0.2 export DT_ATMOS=600 export FHMAX=12 -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_stretched b/tests/tests/fv3_stretched similarity index 97% rename from tests/tests/fv3_ccpp_stretched rename to tests/tests/fv3_stretched index 3bcca69498..055eb1c47c 100644 --- a/tests/tests/fv3_ccpp_stretched +++ b/tests/tests/fv3_stretched @@ -84,8 +84,8 @@ FHMAX="48" DT_ATMOS="450" QUILTING=.false. -export INPUT_NML=ccpp_stretched-input.nml.IN -export FV3_RUN=ccpp_stretched_run.IN +export INPUT_NML=stretched-input.nml.IN +export FV3_RUN=stretched_run.IN export CCPP_SUITE=FV3_GFS_2017_stretched diff --git a/tests/tests/fv3_ccpp_stretched_nest b/tests/tests/fv3_stretched_nest similarity index 96% rename from tests/tests/fv3_ccpp_stretched_nest rename to tests/tests/fv3_stretched_nest index 378f384794..391aaba85e 100644 --- a/tests/tests/fv3_ccpp_stretched_nest +++ b/tests/tests/fv3_stretched_nest @@ -99,9 +99,9 @@ export FHMAX="48" export DT_ATMOS="450" QUILTING=.false. -export INPUT_NML=ccpp_stretched-nest-input.nml.IN -export INPUT_NEST02_NML=ccpp_input_nest02.nml.IN -export FV3_RUN=ccpp_stretched_run.IN +export INPUT_NML=stretched-nest-input.nml.IN +export INPUT_NEST02_NML=input_nest02.nml.IN +export FV3_RUN=stretched_run.IN export CCPP_SUITE=FV3_GFS_2017_stretched diff --git a/tests/tests/fv3_ccpp_stretched_nest_debug b/tests/tests/fv3_stretched_nest_debug similarity index 91% rename from tests/tests/fv3_ccpp_stretched_nest_debug rename to tests/tests/fv3_stretched_nest_debug index ff207a968e..d4d713a7e7 100644 --- a/tests/tests/fv3_ccpp_stretched_nest_debug +++ b/tests/tests/fv3_stretched_nest_debug @@ -55,8 +55,8 @@ QUILTING=.false. export WLCLK=30 -export INPUT_NML=ccpp_stretched-nest-input.nml.IN -export INPUT_NEST02_NML=ccpp_input_nest02.nml.IN -export FV3_RUN=ccpp_stretched_run.IN +export INPUT_NML=stretched-nest-input.nml.IN +export INPUT_NEST02_NML=input_nest02.nml.IN +export FV3_RUN=stretched_run.IN export CCPP_SUITE=FV3_GFS_2017_stretched diff --git a/tests/tests/fv3_ccpp_stretched_nest_quilt b/tests/tests/fv3_stretched_nest_quilt similarity index 96% rename from tests/tests/fv3_ccpp_stretched_nest_quilt rename to tests/tests/fv3_stretched_nest_quilt index 8a9f8f6081..8d88c2eace 100644 --- a/tests/tests/fv3_ccpp_stretched_nest_quilt +++ b/tests/tests/fv3_stretched_nest_quilt @@ -96,10 +96,10 @@ export SHOUR="00" export FHMAX="48" export DT_ATMOS="450" -export INPUT_NML=ccpp_stretched-nest-input.nml.IN -export INPUT_NEST02_NML=ccpp_input_nest02.nml.IN +export INPUT_NML=stretched-nest-input.nml.IN +export INPUT_NEST02_NML=input_nest02.nml.IN export MODEL_CONFIGURE=stretched-nest-quilt-model_configure.IN -export FV3_RUN=ccpp_stretched_run.IN +export FV3_RUN=stretched_run.IN export CCPP_SUITE=FV3_GFS_2017_stretched diff --git a/tests/tests/fv3_ccpp_thompson b/tests/tests/fv3_thompson similarity index 98% rename from tests/tests/fv3_ccpp_thompson rename to tests/tests/fv3_thompson index 67ecbe9321..6903721a2a 100644 --- a/tests/tests/fv3_ccpp_thompson +++ b/tests/tests/fv3_thompson @@ -80,9 +80,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GFS_v16_thompson -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export SATMEDMF=.T. diff --git a/tests/tests/fv3_ccpp_thompson_debug b/tests/tests/fv3_thompson_debug similarity index 98% rename from tests/tests/fv3_ccpp_thompson_debug rename to tests/tests/fv3_thompson_debug index d7586cb1ea..b0e0379a1b 100644 --- a/tests/tests/fv3_ccpp_thompson_debug +++ b/tests/tests/fv3_thompson_debug @@ -83,9 +83,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GFS_v16_thompson -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export SATMEDMF=.T. diff --git a/tests/tests/fv3_ccpp_thompson_mynn b/tests/tests/fv3_thompson_mynn similarity index 98% rename from tests/tests/fv3_ccpp_thompson_mynn rename to tests/tests/fv3_thompson_mynn index 18f643eed1..f7db812924 100644 --- a/tests/tests/fv3_ccpp_thompson_mynn +++ b/tests/tests/fv3_thompson_mynn @@ -80,9 +80,9 @@ export DO_SAT_ADJ=.F. export LRADAR=.T. export LTAEROSOL=.T. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GFS_v15_thompson_mynn -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export DO_MYNNEDMF=.T. diff --git a/tests/tests/fv3_ccpp_thompson_no_aero b/tests/tests/fv3_thompson_no_aero similarity index 98% rename from tests/tests/fv3_ccpp_thompson_no_aero rename to tests/tests/fv3_thompson_no_aero index 41b6e4696a..8ca9f57247 100644 --- a/tests/tests/fv3_ccpp_thompson_no_aero +++ b/tests/tests/fv3_thompson_no_aero @@ -81,9 +81,9 @@ export LRADAR=.T. export NSRADAR_RESET=3600.0 export LTAEROSOL=.F. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GFS_v16_thompson -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export SATMEDMF=.T. diff --git a/tests/tests/fv3_ccpp_thompson_no_aero_debug b/tests/tests/fv3_thompson_no_aero_debug similarity index 98% rename from tests/tests/fv3_ccpp_thompson_no_aero_debug rename to tests/tests/fv3_thompson_no_aero_debug index c21269307b..1361e37268 100644 --- a/tests/tests/fv3_ccpp_thompson_no_aero_debug +++ b/tests/tests/fv3_thompson_no_aero_debug @@ -84,9 +84,9 @@ export LRADAR=.T. export NSRADAR_RESET=3600.0 export LTAEROSOL=.F. -export FV3_RUN=ccpp_gsd_run.IN +export FV3_RUN=gsd_run.IN export CCPP_SUITE=FV3_GFS_v16_thompson -export INPUT_NML=ccpp_gsd.nml.IN +export INPUT_NML=gsd.nml.IN export HYBEDMF=.F. export SATMEDMF=.T. diff --git a/tests/tests/fv3_ccpp_wrtGauss_nemsio b/tests/tests/fv3_wrtGauss_nemsio similarity index 97% rename from tests/tests/fv3_ccpp_wrtGauss_nemsio rename to tests/tests/fv3_wrtGauss_nemsio index e25c6e8342..2b3b3f844b 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_nemsio +++ b/tests/tests/fv3_wrtGauss_nemsio @@ -59,7 +59,7 @@ export OUTPUT_FILE="'nemsio'" export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGauss_nemsio_c192 b/tests/tests/fv3_wrtGauss_nemsio_c192 similarity index 97% rename from tests/tests/fv3_ccpp_wrtGauss_nemsio_c192 rename to tests/tests/fv3_wrtGauss_nemsio_c192 index 91ee4a51da..65f9e14500 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_nemsio_c192 +++ b/tests/tests/fv3_wrtGauss_nemsio_c192 @@ -80,7 +80,7 @@ export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," export FNSMCC="'global_soilmgldas.t382.768.384.grb'," export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGauss_nemsio_c768 b/tests/tests/fv3_wrtGauss_nemsio_c768 similarity index 98% rename from tests/tests/fv3_ccpp_wrtGauss_nemsio_c768 rename to tests/tests/fv3_wrtGauss_nemsio_c768 index 756bb1639b..66f0150c8b 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_nemsio_c768 +++ b/tests/tests/fv3_wrtGauss_nemsio_c768 @@ -102,7 +102,7 @@ export wav_petlist_bounds="1260 1469" export coupling_interval_sec=1800.0 #coupling time step, want it to be multiple of 1800 and FV3 time step export NEMS_CONFIGURE="nems.configure.blocked_atm_wav.IN" -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGauss_netcdf b/tests/tests/fv3_wrtGauss_netcdf similarity index 97% rename from tests/tests/fv3_ccpp_wrtGauss_netcdf rename to tests/tests/fv3_wrtGauss_netcdf index aee1d8c0d6..a912ce6187 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_netcdf +++ b/tests/tests/fv3_wrtGauss_netcdf @@ -57,7 +57,7 @@ export_fv3 export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'netcdf'" -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGauss_netcdf_esmf b/tests/tests/fv3_wrtGauss_netcdf_esmf similarity index 97% rename from tests/tests/fv3_ccpp_wrtGauss_netcdf_esmf rename to tests/tests/fv3_wrtGauss_netcdf_esmf index fb3f5ef002..f516074433 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_netcdf_esmf +++ b/tests/tests/fv3_wrtGauss_netcdf_esmf @@ -57,7 +57,7 @@ export_fv3 export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'netcdf_esmf'" -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel b/tests/tests/fv3_wrtGauss_netcdf_parallel similarity index 97% rename from tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel rename to tests/tests/fv3_wrtGauss_netcdf_parallel index 4653734353..bd3feef714 100644 --- a/tests/tests/fv3_ccpp_wrtGauss_netcdf_parallel +++ b/tests/tests/fv3_wrtGauss_netcdf_parallel @@ -60,6 +60,6 @@ export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" export IDEFLATE=1 export NBITS=14 -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_wrtGlatlon_netcdf b/tests/tests/fv3_wrtGlatlon_netcdf similarity index 97% rename from tests/tests/fv3_ccpp_wrtGlatlon_netcdf rename to tests/tests/fv3_wrtGlatlon_netcdf index 14e7f1778a..34d4003d86 100644 --- a/tests/tests/fv3_ccpp_wrtGlatlon_netcdf +++ b/tests/tests/fv3_wrtGlatlon_netcdf @@ -57,7 +57,7 @@ export_fv3 export OUTPUT_GRID="'global_latlon'" export OUTPUT_FILE="'netcdf'" -export FV3_RUN=ccpp_control_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_2017 -export INPUT_NML=ccpp_control.nml.IN +export INPUT_NML=control.nml.IN diff --git a/tests/tests/fv3_ccpp_ysu b/tests/tests/fv3_ysu similarity index 97% rename from tests/tests/fv3_ccpp_ysu rename to tests/tests/fv3_ysu index 6292f8e5d9..d90ce0bb4c 100644 --- a/tests/tests/fv3_ccpp_ysu +++ b/tests/tests/fv3_ysu @@ -76,9 +76,9 @@ export_fv3 DT_ATMOS="600" -export FV3_RUN=ccpp_gfdlmp_run.IN +export FV3_RUN=gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_ysu -export INPUT_NML=ccpp_gfdlmp.nml.IN +export INPUT_NML=gfdlmp.nml.IN export HYBEDMF=.F. From 65637840f885e790b2ac1d92cee55ad13a937904 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Thu, 18 Mar 2021 14:14:39 -0600 Subject: [PATCH 084/109] 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 bc7865d50a..5524c9d299 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,7 @@ [submodule "FV3"] path = FV3 - #url = https://github.com/NOAA-GSL/fv3atm - #branch = gsl/develop - url = https://github.com/climbfuji/fv3atm - branch = update_gsl_develop_from_master_20210316 + url = https://github.com/NOAA-GSL/fv3atm + branch = gsl/develop [submodule "NEMS"] path = NEMS url = https://github.com/NOAA-EMC/NEMS diff --git a/FV3 b/FV3 index 08fc9fe761..c4dff78560 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 08fc9fe7612beb297c2a5d06eee3ea6880ae83da +Subproject commit c4dff78560fe86a5bf1495f4f24f782d90010acd From 3e46f5b7050e18884a0bed13691823ad88d443c3 Mon Sep 17 00:00:00 2001 From: Phil Pegion <38869668+pjpegion@users.noreply.github.com> Date: Sun, 21 Mar 2021 11:11:40 -0600 Subject: [PATCH 085/109] Stoch updates (#372) Addition of stochastic physics restarts in netCDF format that will be written at the restart interval, and at end of run. Addition of stochastic cloud perturbation and microphysics perturbations for SPPT. Clean up of stochastic physics code. Co-authored-by: mlee03 Co-authored-by: MinsukJi-NOAA Co-authored-by: Brian Curtis --- CMakeLists.txt | 71 +- FMS | 2 +- FV3 | 2 +- fms_files.cmake | 92 -- modulefiles/macosx.gnu/fv3 | 6 +- modulefiles/macosx.gnu/fv3_debug | 6 +- stochastic_physics | 2 +- tests/RegressionTests_cheyenne.gnu.log | 198 ++-- tests/RegressionTests_cheyenne.intel.log | 648 +++++------ tests/RegressionTests_gaea.intel.log | 618 +++++------ tests/RegressionTests_hera.gnu.log | 198 ++-- tests/RegressionTests_hera.intel.log | 680 ++++++------ tests/RegressionTests_jet.intel.log | 599 +++++------ tests/RegressionTests_orion.intel.log | 1250 ++++++++++++---------- tests/ci/ci.test | 2 +- tests/parm/input.mom6_ccpp.nml.IN | 3 - tests/rt.conf | 2 +- tests/rt.sh | 4 +- tests/utest | 10 +- tests/utest.bld | 44 +- 20 files changed, 2186 insertions(+), 2251 deletions(-) delete mode 100644 fms_files.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt index 67ca10847c..203a5add81 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -139,56 +139,27 @@ endif() ############################################################################### ### FMS ############################################################################### -include(fms_files.cmake) -add_library(fms ${fms_src_files} ${fms_headers}) - -list(APPEND _fms_defs_public use_libMPI - use_netCDF - GFS_PHYS - INTERNAL_FILE_NML) -if(QUAD_PRECISION) - list(APPEND _fms_defs_public ENABLE_QUAD_PRECISION) -endif() +set(GFS_PHYS ON CACHE BOOL "Enable GFS Physics") +if(NOT 32BIT) + set(64BIT ON CACHE BOOL "Enable 64-bit") -# check gettid -include(CheckFunctionExists) -check_function_exists(gettid HAVE_GETTID) -if(HAVE_GETTID) - list(APPEND _fms_defs_public HAVE_GETTID) endif() - -target_compile_definitions(fms PUBLIC "${_fms_defs_public}") - -if(32BIT) - list(APPEND _fms_defs_private OVERLOAD_R4 - OVERLOAD_R8) +if(NOT QUAD_PRECISION) + set(ENABLE_QUAD_PRECISION OFF CACHE BOOL "Enable Quad-precision") endif() -target_compile_definitions(fms PRIVATE "${_fms_defs_private}") - -target_include_directories(fms PUBLIC $ - $ - $ - $ - $) -target_include_directories(fms INTERFACE - $ - $) -target_link_libraries(fms PUBLIC MPI::MPI_Fortran - NetCDF::NetCDF_Fortran) -if(OpenMP_Fortran_FOUND) - target_link_libraries(fms PRIVATE OpenMP::OpenMP_Fortran) +add_subdirectory(FMS) + +if(32BIT) + add_library(fms ALIAS fms_r4) +else() + add_library(fms ALIAS fms_r8) endif() -set_target_properties(fms PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS) -set_target_properties(fms PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod) -set_target_properties(fms PROPERTIES PUBLIC_HEADER "${fms_headers}" ) ############################################################################### ### stochastic_physics ############################################################################### -if(NOT DATM) add_subdirectory(stochastic_physics) -endif() ############################################################################### ### FV3 or Data Atmosphere @@ -291,7 +262,7 @@ endif() target_include_directories(ufs INTERFACE $ $) -target_link_libraries(ufs PUBLIC esmf) +target_link_libraries(ufs PUBLIC esmf stochastic_physics) if(DATM) target_link_libraries(ufs PUBLIC datatm) @@ -304,7 +275,7 @@ if(S2S) FRONT_CICE6=ice_comp_nuopc CMEPS FRONT_CMEPS=MED) - add_dependencies(ufs mom6 cice cmeps) + add_dependencies(ufs mom6 cice cmeps stochastic_physics) target_link_libraries(ufs PUBLIC mom6 cice cmeps) @@ -336,26 +307,14 @@ if(DATM) endif() target_link_libraries(ufs_model PRIVATE ufs esmf - NetCDF::NetCDF_Fortran - ${MKL_LIB}) + NetCDF::NetCDF_Fortran) ############################################################################### ### Install ############################################################################### -install( - TARGETS fms - EXPORT fms-config - LIBRARY DESTINATION lib - ARCHIVE DESTINATION lib - PUBLIC_HEADER DESTINATION include ) - -install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod DESTINATION ${CMAKE_INSTALL_PREFIX}) - -install(EXPORT fms-config - DESTINATION lib/cmake -) install( TARGETS ufs + EXPORT ufs-config LIBRARY DESTINATION lib ARCHIVE DESTINATION lib) diff --git a/FMS b/FMS index 0707f2c027..d4724fa36e 160000 --- a/FMS +++ b/FMS @@ -1 +1 @@ -Subproject commit 0707f2c0279a9efd12cdbf0133c1e09435766928 +Subproject commit d4724fa36ead10bfd818b7e3092a4824eff7f323 diff --git a/FV3 b/FV3 index dbaff1cbfb..07b00a9a84 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit dbaff1cbfb2764f2ffa605d20d3c1a99c44b01fe +Subproject commit 07b00a9a84782aa95a18cc8a9c91ba31a76ea619 diff --git a/fms_files.cmake b/fms_files.cmake deleted file mode 100644 index 81e3cfb381..0000000000 --- a/fms_files.cmake +++ /dev/null @@ -1,92 +0,0 @@ -list(APPEND fms_src_files - FMS/affinity/fms_affinity.F90 - FMS/amip_interp/amip_interp.F90 - FMS/astronomy/astronomy.F90 - FMS/axis_utils/axis_utils.F90 - FMS/axis_utils/axis_utils2.F90 - FMS/block_control/block_control.F90 - FMS/column_diagnostics/column_diagnostics.F90 - FMS/constants/constants.F90 - FMS/coupler/atmos_ocean_fluxes.F90 - FMS/coupler/coupler_types.F90 - FMS/coupler/ensemble_manager.F90 - FMS/data_override/data_override.F90 - FMS/data_override/get_grid_version_fms2io.F90 - FMS/data_override/get_grid_version_mpp.F90 - FMS/diag_integral/diag_integral.F90 - FMS/diag_manager/diag_axis.F90 - FMS/diag_manager/diag_data.F90 - FMS/diag_manager/diag_grid.F90 - FMS/diag_manager/diag_manager.F90 - FMS/diag_manager/diag_output.F90 - FMS/diag_manager/diag_table.F90 - FMS/diag_manager/diag_util.F90 - FMS/drifters/cloud_interpolator.F90 - FMS/drifters/drifters.F90 - FMS/drifters/drifters_comm.F90 - FMS/drifters/drifters_core.F90 - FMS/drifters/drifters_input.F90 - FMS/drifters/drifters_io.F90 - FMS/drifters/quicksort.F90 - FMS/exchange/stock_constants.F90 - FMS/exchange/xgrid.F90 - FMS/field_manager/field_manager.F90 - FMS/field_manager/fm_util.F90 - FMS/fms/fms.F90 - FMS/fms/fms_io.F90 - FMS/fms2_io/blackboxio.F90 - FMS/fms2_io/fms_io_utils.F90 - FMS/fms2_io/fms_netcdf_domain_io.F90 - FMS/fms2_io/fms_netcdf_unstructured_domain_io.F90 - FMS/fms2_io/fms2_io.F90 - FMS/fms2_io/netcdf_io.F90 - FMS/horiz_interp/horiz_interp.F90 - FMS/horiz_interp/horiz_interp_bicubic.F90 - FMS/horiz_interp/horiz_interp_bilinear.F90 - FMS/horiz_interp/horiz_interp_conserve.F90 - FMS/horiz_interp/horiz_interp_spherical.F90 - FMS/horiz_interp/horiz_interp_type.F90 - FMS/interpolator/interpolator.F90 - FMS/memutils/memutils.F90 - FMS/monin_obukhov/monin_obukhov.F90 - FMS/monin_obukhov/monin_obukhov_inter.F90 - FMS/mosaic/gradient.F90 - FMS/mosaic/grid.F90 - FMS/mosaic/mosaic.F90 - FMS/mosaic/mosaic2.F90 - FMS/mpp/mpp.F90 - FMS/mpp/mpp_data.F90 - FMS/mpp/mpp_domains.F90 - FMS/mpp/mpp_efp.F90 - FMS/mpp/mpp_io.F90 - FMS/mpp/mpp_memutils.F90 - FMS/mpp/mpp_parameter.F90 - FMS/mpp/mpp_utilities.F90 - FMS/platform/platform.F90 - FMS/random_numbers/mersennetwister.F90 - FMS/random_numbers/random_numbers.F90 - FMS/sat_vapor_pres/sat_vapor_pres.F90 - FMS/sat_vapor_pres/sat_vapor_pres_k.F90 - FMS/time_interp/time_interp.F90 - FMS/time_interp/time_interp_external.F90 - FMS/time_interp/time_interp_external2.F90 - FMS/time_manager/get_cal_time.F90 - FMS/time_manager/time_manager.F90 - FMS/topography/gaussian_topog.F90 - FMS/topography/topography.F90 - FMS/tracer_manager/tracer_manager.F90 - FMS/tridiagonal/tridiagonal.F90 - - FMS/affinity/affinity.c - FMS/mpp/mpp_memuse.c - FMS/mosaic/create_xgrid.c - FMS/mosaic/gradient_c2l.c - FMS/mosaic/interp.c - FMS/mosaic/mosaic_util.c - FMS/mosaic/read_mosaic.c -) - -list( APPEND fms_headers -FMS/include/fms_platform.h -FMS/include/file_version.h -) diff --git a/modulefiles/macosx.gnu/fv3 b/modulefiles/macosx.gnu/fv3 index f99e07ad70..006e695d66 100755 --- a/modulefiles/macosx.gnu/fv3 +++ b/modulefiles/macosx.gnu/fv3 @@ -39,6 +39,6 @@ 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" +#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" diff --git a/modulefiles/macosx.gnu/fv3_debug b/modulefiles/macosx.gnu/fv3_debug index f99e07ad70..006e695d66 100755 --- a/modulefiles/macosx.gnu/fv3_debug +++ b/modulefiles/macosx.gnu/fv3_debug @@ -39,6 +39,6 @@ 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" +#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" diff --git a/stochastic_physics b/stochastic_physics index c39bb8a09a..d0e62eb299 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit c39bb8a09a196a9dd17ea3fb52152b61ef2881ae +Subproject commit d0e62eb2996b363862fd543fe9ec910bd75bf004 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index fb18913ac9..3bf1877863 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Wed Mar 17 15:01:40 MDT 2021 +Thu Mar 18 13:19:36 MDT 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfdlmp -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfdlmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfdlmp +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -48,13 +48,13 @@ Checking test 001 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 73.616751 +The total amount of wall time = 72.427329 Test 001 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2 -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v15p2 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2 +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v15p2 Checking test 002 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -119,13 +119,13 @@ Checking test 002 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 137.489110 +The total amount of wall time = 136.941182 Test 002 fv3_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16 Checking test 003 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -202,13 +202,13 @@ Checking test 003 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 188.023624 +The total amount of wall time = 185.465164 Test 003 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_restart Checking test 004 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -255,13 +255,13 @@ Checking test 004 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 96.352609 +The total amount of wall time = 95.241565 Test 004 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_stochy -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_stochy +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_stochy Checking test 005 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -326,13 +326,13 @@ Checking test 005 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 87.995187 +The total amount of wall time = 89.065852 Test 005 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_flake -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_flake +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_flake Checking test 006 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -397,13 +397,13 @@ Checking test 006 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 143.045845 +The total amount of wall time = 144.758066 Test 006 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_RRTMGP -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v15p2_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_RRTMGP +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v15p2_RRTMGP Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -468,13 +468,13 @@ Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 251.776369 +The total amount of wall time = 233.688023 Test 007 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_RRTMGP Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -539,13 +539,13 @@ Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 256.904365 +The total amount of wall time = 262.519106 Test 008 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gsd -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gsd +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gsd Checking test 009 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -634,13 +634,13 @@ Checking test 009 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 352.093742 +The total amount of wall time = 352.206210 Test 009 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_thompson Checking test 010 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -705,13 +705,13 @@ Checking test 010 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 166.850767 +The total amount of wall time = 166.159439 Test 010 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_no_aero -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_no_aero +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_thompson_no_aero Checking test 011 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -776,13 +776,13 @@ Checking test 011 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 157.963503 +The total amount of wall time = 159.091610 Test 011 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_rrfs_v1beta +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -847,13 +847,13 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 181.093884 +The total amount of wall time = 181.064238 Test 012 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_HAFS_v0_hwrf_thompson Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -918,13 +918,13 @@ Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 258.319014 +The total amount of wall time = 243.144962 Test 013 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_esg_HAFS_v0_hwrf_thompson Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -939,13 +939,13 @@ Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 446.279773 +The total amount of wall time = 460.237050 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfsv16_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfsv16_ugwpv1 Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1004,13 +1004,13 @@ Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 299.376887 +The total amount of wall time = 298.148424 Test 015 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfsv16_ugwpv1_warmstart Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1069,13 +1069,13 @@ Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 303.457903 +The total amount of wall time = 303.021790 Test 016 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_ras -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_ras +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_ras Checking test 017 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1140,13 +1140,13 @@ Checking test 017 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 167.499220 +The total amount of wall time = 167.885537 Test 017 fv3_gfs_v16_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_control_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_control_debug Checking test 018 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1173,13 +1173,13 @@ Checking test 018 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 76.607637 +The total amount of wall time = 77.618175 Test 018 fv3_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_regional_control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_regional_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_regional_control_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_regional_control_debug Checking test 019 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1187,13 +1187,13 @@ Checking test 019 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 188.760185 +The total amount of wall time = 186.595065 Test 019 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_rrfs_v1beta_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_rrfs_v1beta_debug Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1258,13 +1258,13 @@ Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 110.901097 +The total amount of wall time = 109.971979 Test 020 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gsd_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gsd_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gsd_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gsd_debug Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,13 +1329,13 @@ Checking test 021 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 116.633345 +The total amount of wall time = 116.480241 Test 021 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_thompson_debug Checking test 022 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1400,13 +1400,13 @@ Checking test 022 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 185.570727 +The total amount of wall time = 186.048865 Test 022 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_no_aero_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_no_aero_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_thompson_no_aero_debug Checking test 023 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1471,13 +1471,13 @@ Checking test 023 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 179.866162 +The total amount of wall time = 177.982636 Test 023 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v15p2_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v15p2_debug Checking test 024 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1542,13 +1542,13 @@ Checking test 024 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 134.004125 +The total amount of wall time = 137.547670 Test 024 fv3_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_debug Checking test 025 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,13 +1613,13 @@ Checking test 025 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 97.658277 +The total amount of wall time = 96.621232 Test 025 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_RRTMGP_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v15p2_RRTMGP_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_RRTMGP_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v15p2_RRTMGP_debug Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1684,13 +1684,13 @@ Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 196.654978 +The total amount of wall time = 198.750607 Test 026 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_RRTMGP_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_RRTMGP_debug Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1755,13 @@ Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 199.520481 +The total amount of wall time = 205.621718 Test 027 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_multigases -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_multigases +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_multigases +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_multigases Checking test 028 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1832,13 +1832,13 @@ Checking test 028 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 176.551824 +The total amount of wall time = 174.473162 Test 028 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_HAFS_v0_hwrf_thompson_debug Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,13 +1903,13 @@ Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 113.111862 +The total amount of wall time = 112.451863 Test 029 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1924,13 +1924,13 @@ Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 215.358006 +The total amount of wall time = 216.026078 Test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfsv16_ugwpv1_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfsv16_ugwpv1_debug Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1989,13 +1989,13 @@ Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 308.982518 +The total amount of wall time = 305.011925 Test 031 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_ras_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_ras_debug Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2060,11 +2060,11 @@ Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 172.077223 +The total amount of wall time = 172.520721 Test 032 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 17 15:22:05 MDT 2021 -Elapsed time: 00h:20m:25s. Have a nice day! +Thu Mar 18 13:37:55 MDT 2021 +Elapsed time: 00h:18m:19s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 889cd4d3ee..f4158365a7 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Wed Mar 17 15:00:15 MDT 2021 +Thu Mar 18 13:19:41 MDT 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.977801 +The total amount of wall time = 47.958572 Test 001 fv3_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.404157 +The total amount of wall time = 48.067631 Test 002 fv3_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +210,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 107.164876 +The total amount of wall time = 106.388280 Test 003 fv3_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +263,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 22.442370 +The total amount of wall time = 22.917253 Test 004 fv3_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_read_inc -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_read_inc +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -334,13 +334,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.585103 +The total amount of wall time = 47.473873 Test 005 fv3_read_inc PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGauss_netcdf_esmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,13 +385,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 123.916570 +The total amount of wall time = 122.527143 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGauss_netcdf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -436,13 +436,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 45.465214 +The total amount of wall time = 46.852420 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGauss_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -451,9 +451,9 @@ Checking test 008 fv3_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 .........OK - Comparing dynf024.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc ............ALT CHECK......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,13 +487,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.184444 +The total amount of wall time = 47.080210 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGlatlon_netcdf -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGlatlon_netcdf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -538,13 +538,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.662453 +The total amount of wall time = 47.236247 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGauss_nemsio +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -589,13 +589,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.507193 +The total amount of wall time = 47.047256 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGauss_nemsio_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +640,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 122.393899 +The total amount of wall time = 123.070683 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stochy -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 55.603605 +The total amount of wall time = 54.625384 Test 012 fv3_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_ca -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 29.020025 +The total amount of wall time = 29.444011 Test 013 fv3_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lndp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_lndp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 50.850419 +The total amount of wall time = 52.987457 Test 014 fv3_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_iau -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_iau +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +924,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.657869 +The total amount of wall time = 45.283016 Test 015 fv3_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lheatstrg -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_lheatstrg +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +975,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.329600 +The total amount of wall time = 46.276234 Test 016 fv3_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_multigases_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_multigases_repro +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1052,13 @@ Checking test 017 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 109.322209 +The total amount of wall time = 111.440695 Test 017 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_32bit -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_control_32bit +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,13 +1123,13 @@ Checking test 018 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 40.080135 +The total amount of wall time = 40.434938 Test 018 fv3_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_stretched +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1182,13 +1182,13 @@ Checking test 019 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 330.931597 +The total amount of wall time = 324.010684 Test 019 fv3_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_stretched_nest +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1252,13 +1252,13 @@ Checking test 020 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 343.913204 +The total amount of wall time = 352.560075 Test 020 fv3_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,25 +1266,25 @@ Checking test 021 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 716.261602 +The total amount of wall time = 714.905067 Test 021 fv3_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_restart -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_restart Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 391.516587 +The total amount of wall time = 382.830994 Test 022 fv3_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_quilt +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1295,13 +1295,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 740.845723 +The total amount of wall time = 721.119525 Test 023 fv3_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_hafs -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_quilt_hafs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1310,27 +1310,27 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 737.470533 +The total amount of wall time = 717.041861 Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_quilt_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK -The total amount of wall time = 741.687853 +The total amount of wall time = 717.890376 Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfdlmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,13 +1375,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 51.724523 +The total amount of wall time = 52.663537 Test 026 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_gwd -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfdlmprad_gwd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1426,13 +1426,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.482174 +The total amount of wall time = 52.955815 Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_noahmp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfdlmprad_noahmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1477,13 +1477,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.864785 +The total amount of wall time = 53.663012 Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_csawmg -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_csawmg +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,13 +1528,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 137.691614 +The total amount of wall time = 140.600685 Test 029 fv3_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmf -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_satmedmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,13 +1579,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.102946 +The total amount of wall time = 59.721545 Test 030 fv3_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmfq -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_satmedmfq +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1630,13 +1630,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.919454 +The total amount of wall time = 59.607443 Test 031 fv3_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp_32bit -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfdlmp_32bit +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,13 +1681,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 41.538693 +The total amount of wall time = 42.216585 Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_32bit_post -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfdlmprad_32bit_post +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1736,13 @@ Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 72.990521 +The total amount of wall time = 73.153192 Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_cpt -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_cpt +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,13 +1793,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 324.277909 +The total amount of wall time = 328.693268 Test 034 fv3_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1888,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 200.510933 +The total amount of wall time = 198.976083 Test 035 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rap -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_rap +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rap +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_rap Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1959,13 @@ Checking test 036 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 102.523415 +The total amount of wall time = 101.175017 Test 036 fv3_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_hrrr -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_hrrr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_hrrr +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_hrrr Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2030,13 @@ Checking test 037 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 106.593038 +The total amount of wall time = 106.708498 Test 037 fv3_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_thompson Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2101,13 +2101,13 @@ Checking test 038 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 96.257675 +The total amount of wall time = 94.770375 Test 038 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_thompson_no_aero Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2172,13 +2172,13 @@ Checking test 039 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 91.158832 +The total amount of wall time = 91.204857 Test 039 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_rrfs_v1beta Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,13 +2243,13 @@ Checking test 040 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 108.271884 +The total amount of wall time = 107.160438 Test 040 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16 Checking test 041 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2326,13 +2326,13 @@ Checking test 041 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 130.052721 +The total amount of wall time = 129.958834 Test 041 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_restart Checking test 042 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2379,13 +2379,13 @@ Checking test 042 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 69.465290 +The total amount of wall time = 67.685012 Test 042 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_stochy -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_stochy Checking test 043 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2450,13 +2450,13 @@ Checking test 043 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 62.916099 +The total amount of wall time = 61.220929 Test 043 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_RRTMGP Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2521,13 +2521,13 @@ Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 220.380142 +The total amount of wall time = 225.546934 Test 044 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_RRTMGP_c192L127 Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2586,13 +2586,13 @@ Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 834.952485 +The total amount of wall time = 831.881649 Test 045 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_RRTMGP_2thrd Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2657,13 +2657,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 466.870817 +The total amount of wall time = 464.680179 Test 046 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gocart_clm -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gocart_clm +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gocart_clm Checking test 047 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2708,13 +2708,13 @@ Checking test 047 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 58.031058 +The total amount of wall time = 58.082096 Test 047 fv3_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_flake -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_flake Checking test 048 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2779,13 +2779,13 @@ Checking test 048 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 106.579599 +The total amount of wall time = 117.009840 Test 048 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_HAFS_v0_hwrf_thompson Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2850,13 +2850,13 @@ Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 196.376108 +The total amount of wall time = 181.728184 Test 049 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_esg_HAFS_v0_hwrf_thompson Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2871,13 +2871,13 @@ Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 323.367695 +The total amount of wall time = 318.936857 Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfsv16_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfsv16_ugwpv1 Checking test 051 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2936,13 +2936,13 @@ Checking test 051 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 215.379700 +The total amount of wall time = 216.580824 Test 051 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfsv16_ugwpv1_warmstart Checking test 052 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3001,13 +3001,13 @@ Checking test 052 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 218.012111 +The total amount of wall time = 215.713858 Test 052 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_ras Checking test 053 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3072,13 +3072,13 @@ Checking test 053 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 115.689935 +The total amount of wall time = 115.663476 Test 053 fv3_gfs_v16_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v15p2_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v15p2_debug Checking test 054 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3143,13 +3143,13 @@ Checking test 054 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 245.407283 +The total amount of wall time = 244.322214 Test 054 fv3_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_debug Checking test 055 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3214,13 +3214,13 @@ Checking test 055 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 190.404620 +The total amount of wall time = 190.266804 Test 055 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v15p2_RRTMGP_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v15p2_RRTMGP_debug Checking test 056 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3285,13 +3285,13 @@ Checking test 056 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 384.474234 +The total amount of wall time = 386.139272 Test 056 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_RRTMGP_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_RRTMGP_debug Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3356,13 +3356,13 @@ Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 393.114772 +The total amount of wall time = 391.135094 Test 057 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_control_debug Checking test 058 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3370,13 +3370,13 @@ Checking test 058 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 366.899380 +The total amount of wall time = 367.762370 Test 058 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_control_debug Checking test 059 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3403,13 +3403,13 @@ Checking test 059 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 146.618466 +The total amount of wall time = 147.442953 Test 059 fv3_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_stretched_nest_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_stretched_nest_debug Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3426,13 +3426,13 @@ Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 432.998634 +The total amount of wall time = 433.260613 Test 060 fv3_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gsd_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gsd_debug Checking test 061 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3497,13 +3497,13 @@ Checking test 061 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 216.755184 +The total amount of wall time = 216.558308 Test 061 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_diag3d_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gsd_diag3d_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gsd_diag3d_debug Checking test 062 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3568,13 +3568,13 @@ Checking test 062 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 261.555642 +The total amount of wall time = 262.674351 Test 062 fv3_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_thompson_debug Checking test 063 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3639,13 +3639,13 @@ Checking test 063 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 360.248777 +The total amount of wall time = 359.965520 Test 063 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_thompson_no_aero_debug Checking test 064 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3710,13 +3710,13 @@ Checking test 064 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 348.057383 +The total amount of wall time = 347.570263 Test 064 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_rrfs_v1beta_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_rrfs_v1beta_debug Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3781,13 +3781,13 @@ Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 209.467344 +The total amount of wall time = 209.696788 Test 065 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_HAFS_v0_hwrf_thompson_debug Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3852,13 +3852,13 @@ Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 223.594519 +The total amount of wall time = 222.971545 Test 066 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3873,13 +3873,13 @@ Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 397.519750 +The total amount of wall time = 396.434516 Test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfsv16_ugwpv1_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfsv16_ugwpv1_debug Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3938,13 +3938,13 @@ Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 604.477397 +The total amount of wall time = 602.823082 Test 068 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_ras_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_ras_debug Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4009,13 +4009,13 @@ Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 343.084605 +The total amount of wall time = 342.964276 Test 069 fv3_gfs_v16_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_control Checking test 070 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4065,13 +4065,13 @@ Checking test 070 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 94.330202 +The total amount of wall time = 99.168593 Test 070 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart Checking test 071 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4121,13 +4121,13 @@ Checking test 071 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 54.509987 +The total amount of wall time = 55.667218 Test 071 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_controlfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_controlfrac Checking test 072 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4177,13 +4177,13 @@ Checking test 072 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 97.537951 +The total amount of wall time = 95.002092 Test 072 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restartfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restartfrac Checking test 073 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4233,13 +4233,13 @@ Checking test 073 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 54.634580 +The total amount of wall time = 54.074622 Test 073 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_2threads Checking test 074 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4289,13 +4289,13 @@ Checking test 074 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 260.143343 +The total amount of wall time = 259.441104 Test 074 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_decomp Checking test 075 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4345,13 +4345,13 @@ Checking test 075 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 96.188274 +The total amount of wall time = 96.105468 Test 075 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_satmedmf -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_satmedmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_satmedmf +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_satmedmf Checking test 076 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4401,13 +4401,13 @@ Checking test 076 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 95.901729 +The total amount of wall time = 93.120103 Test 076 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_ca -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_ca +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_ca Checking test 077 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4457,13 +4457,13 @@ Checking test 077 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 95.998523 +The total amount of wall time = 96.397273 Test 077 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_control_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_control_c192 Checking test 078 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4513,13 +4513,13 @@ Checking test 078 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 409.876274 +The total amount of wall time = 401.073510 Test 078 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart_c192 Checking test 079 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4569,13 +4569,13 @@ Checking test 079 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 288.008984 +The total amount of wall time = 289.528245 Test 079 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_controlfrac_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_controlfrac_c192 Checking test 080 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4625,13 +4625,13 @@ Checking test 080 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 408.893341 +The total amount of wall time = 410.274779 Test 080 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restartfrac_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restartfrac_c192 Checking test 081 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4681,13 +4681,13 @@ Checking test 081 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 287.403359 +The total amount of wall time = 292.162685 Test 081 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_control_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_control_c384 Checking test 082 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4740,13 +4740,13 @@ Checking test 082 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1600.512764 +The total amount of wall time = 1575.556051 Test 082 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart_c384 Checking test 083 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4799,13 +4799,13 @@ Checking test 083 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 839.420761 +The total amount of wall time = 842.742485 Test 083 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_controlfrac_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_controlfrac_c384 Checking test 084 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4858,13 +4858,13 @@ Checking test 084 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1591.439482 +The total amount of wall time = 1588.019550 Test 084 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restartfrac_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restartfrac_c384 Checking test 085 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4917,13 +4917,13 @@ Checking test 085 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 832.477485 +The total amount of wall time = 828.257714 Test 085 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmark +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmark Checking test 086 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4976,13 +4976,13 @@ Checking test 086 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 910.591583 +The total amount of wall time = 911.514819 Test 086 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart_bmark +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart_bmark Checking test 087 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5035,13 +5035,13 @@ Checking test 087 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 492.644072 +The total amount of wall time = 493.418354 Test 087 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmarkfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmarkfrac Checking test 088 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5094,13 +5094,13 @@ Checking test 088 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 942.768192 +The total amount of wall time = 915.905406 Test 088 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart_bmarkfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart_bmarkfrac Checking test 089 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5153,13 +5153,13 @@ Checking test 089 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 490.677498 +The total amount of wall time = 491.543561 Test 089 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmarkfrac_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmarkfrac_v16 Checking test 090 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5212,13 +5212,13 @@ Checking test 090 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -The total amount of wall time = 1619.458789 +The total amount of wall time = 1639.823971 Test 090 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart_bmarkfrac_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart_bmarkfrac_v16 Checking test 091 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5271,13 +5271,13 @@ Checking test 091 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -The total amount of wall time = 876.345179 +The total amount of wall time = 867.579293 Test 091 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark_wave -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmark_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark_wave +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmark_wave Checking test 092 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5333,13 +5333,13 @@ Checking test 092 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 1579.004437 +The total amount of wall time = 1525.613086 Test 092 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_wave -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmarkfrac_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmarkfrac_wave Checking test 093 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5395,13 +5395,13 @@ Checking test 093 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 1564.991092 +The total amount of wall time = 1582.184637 Test 093 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmarkfrac_wave_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmarkfrac_wave_v16 Checking test 094 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5456,13 +5456,13 @@ Checking test 094 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 1037.828157 +The total amount of wall time = 1046.151554 Test 094 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_wave -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_control_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_wave +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_control_wave Checking test 095 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5515,13 +5515,13 @@ Checking test 095 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 813.195210 +The total amount of wall time = 808.664644 Test 095 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_debug Checking test 096 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5571,13 +5571,13 @@ Checking test 096 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 310.532484 +The total amount of wall time = 306.754779 Test 096 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debugfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_debugfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debugfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_debugfrac Checking test 097 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5627,73 +5627,73 @@ Checking test 097 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 305.075755 +The total amount of wall time = 305.357800 Test 097 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_control_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_control_cfsr Checking test 098 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 -The total amount of wall time = 102.179644 +The total amount of wall time = 102.539148 Test 098 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_restart_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_restart_cfsr Checking test 099 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 -The total amount of wall time = 61.928971 +The total amount of wall time = 64.278362 Test 099 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_control_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_control_gefs Checking test 100 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 -The total amount of wall time = 95.586184 +The total amount of wall time = 96.288880 Test 100 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_bulk_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_bulk_cfsr Checking test 101 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 -The total amount of wall time = 98.097471 +The total amount of wall time = 98.708313 Test 101 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_bulk_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_bulk_gefs Checking test 102 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 -The total amount of wall time = 96.061119 +The total amount of wall time = 93.157359 Test 102 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_mx025_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_mx025_cfsr Checking test 103 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5702,13 +5702,13 @@ Checking test 103 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 391.962767 +The total amount of wall time = 377.314568 Test 103 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_mx025_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_mx025_gefs Checking test 104 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5717,23 +5717,23 @@ Checking test 104 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 389.212635 +The total amount of wall time = 390.675084 Test 104 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_debug_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_debug_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_debug_cfsr Checking test 105 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 -The total amount of wall time = 286.252814 +The total amount of wall time = 285.156024 Test 105 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 17 16:56:57 MDT 2021 -Elapsed time: 01h:56m:42s. Have a nice day! +Thu Mar 18 15:08:27 MDT 2021 +Elapsed time: 01h:48m:46s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index b577ab36e8..88b99b94a6 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Wed Mar 17 15:32:59 EDT 2021 +Thu Mar 18 14:02:42 EDT 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_control +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 102.485374 +The total amount of wall time = 58.173925 Test 001 fv3_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_decomp +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 72.102716 +The total amount of wall time = 77.669375 Test 002 fv3_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_2threads +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +210,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 56.773568 +The total amount of wall time = 57.378820 Test 003 fv3_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_restart +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +263,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 21.193289 +The total amount of wall time = 51.109880 Test 004 fv3_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_read_inc -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_read_inc +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -334,13 +334,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 41.536547 +The total amount of wall time = 69.991447 Test 005 fv3_read_inc PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGauss_netcdf_esmf +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,13 +385,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 130.242622 +The total amount of wall time = 118.327474 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGauss_netcdf +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -436,13 +436,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 73.005528 +The total amount of wall time = 65.565436 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,13 +487,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 62.012410 +The total amount of wall time = 118.454508 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGlatlon_netcdf +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -538,13 +538,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 67.968061 +The total amount of wall time = 40.285961 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGauss_nemsio +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -589,13 +589,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 92.057050 +The total amount of wall time = 69.056323 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGauss_nemsio_c192 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +640,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 109.756012 +The total amount of wall time = 148.154030 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stochy -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_stochy +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.024480 +The total amount of wall time = 53.992756 Test 012 fv3_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_ca -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_ca +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 29.883390 +The total amount of wall time = 85.120918 Test 013 fv3_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lndp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_lndp +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.541476 +The total amount of wall time = 55.435999 Test 014 fv3_lndp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_iau -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_iau +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +924,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 67.247275 +The total amount of wall time = 69.747564 Test 015 fv3_iau PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lheatstrg -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_lheatstrg +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +975,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 69.819128 +The total amount of wall time = 39.620394 Test 016 fv3_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_multigases_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_multigases_repro +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1052,13 @@ Checking test 017 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 98.505522 +The total amount of wall time = 93.531560 Test 017 fv3_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_32bit -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_control_32bit +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,13 +1123,13 @@ Checking test 018 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 39.663154 +The total amount of wall time = 74.532582 Test 018 fv3_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_stretched +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1182,13 +1182,13 @@ Checking test 019 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 332.390533 +The total amount of wall time = 303.026302 Test 019 fv3_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_stretched_nest +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1252,13 +1252,13 @@ Checking test 020 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 363.772572 +The total amount of wall time = 333.078656 Test 020 fv3_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_control +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,25 +1266,25 @@ Checking test 021 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 671.029829 +The total amount of wall time = 672.510765 Test 021 fv3_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_restart +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_restart Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 368.134453 +The total amount of wall time = 367.874886 Test 022 fv3_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_quilt +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1295,13 +1295,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 692.031281 +The total amount of wall time = 693.509027 Test 023 fv3_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_hafs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_quilt_hafs +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1310,13 +1310,13 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 688.414005 +The total amount of wall time = 688.758619 Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_quilt_netcdf_parallel +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1324,13 +1324,13 @@ Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK -The total amount of wall time = 691.740751 +The total amount of wall time = 692.256162 Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfdlmp +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,13 +1375,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 75.604375 +The total amount of wall time = 52.829686 Test 026 fv3_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_gwd -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfdlmprad_gwd +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1426,13 +1426,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 47.142772 +The total amount of wall time = 46.787917 Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_noahmp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfdlmprad_noahmp +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1477,13 +1477,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 46.771940 +The total amount of wall time = 47.856230 Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_csawmg -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_csawmg +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,13 +1528,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 149.960741 +The total amount of wall time = 124.446355 Test 029 fv3_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_satmedmf +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,13 +1579,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 79.670296 +The total amount of wall time = 81.529699 Test 030 fv3_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmfq -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_satmedmfq +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1630,13 +1630,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.506543 +The total amount of wall time = 53.994321 Test 031 fv3_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp_32bit -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfdlmp_32bit +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,13 +1681,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 69.878808 +The total amount of wall time = 45.413532 Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfdlmprad_32bit_post +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1736,13 @@ Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 77.396202 +The total amount of wall time = 109.161842 Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_cpt -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_cpt +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,13 +1793,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 288.651895 +The total amount of wall time = 295.095030 Test 034 fv3_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gsd +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1888,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 192.839897 +The total amount of wall time = 196.933302 Test 035 fv3_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rap -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_rap +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rap +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_rap Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1959,13 @@ Checking test 036 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 96.174180 +The total amount of wall time = 94.009529 Test 036 fv3_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_hrrr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_hrrr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_hrrr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_hrrr Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2030,13 @@ Checking test 037 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 116.171670 +The total amount of wall time = 127.447812 Test 037 fv3_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_thompson +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_thompson Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2101,13 +2101,13 @@ Checking test 038 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 90.491086 +The total amount of wall time = 118.252587 Test 038 fv3_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_thompson_no_aero +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_thompson_no_aero Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2172,13 +2172,13 @@ Checking test 039 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 85.585007 +The total amount of wall time = 143.020293 Test 039 fv3_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_rrfs_v1beta +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_rrfs_v1beta Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,13 +2243,13 @@ Checking test 040 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 120.673515 +The total amount of wall time = 102.168042 Test 040 fv3_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v15p2 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v15p2 Checking test 041 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2314,13 +2314,13 @@ Checking test 041 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 129.877411 +The total amount of wall time = 129.212450 Test 041 fv3_gfs_v15p2 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16 Checking test 042 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2397,13 +2397,13 @@ Checking test 042 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 145.397896 +The total amount of wall time = 116.339200 Test 042 fv3_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_restart +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_restart Checking test 043 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2450,13 +2450,13 @@ Checking test 043 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.858808 +The total amount of wall time = 75.138607 Test 043 fv3_gfs_v16_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_stochy -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_stochy +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_stochy Checking test 044 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2521,13 +2521,13 @@ Checking test 044 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 82.493794 +The total amount of wall time = 82.378238 Test 044 fv3_gfs_v16_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v15p2_RRTMGP +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v15p2_RRTMGP Checking test 045 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2592,13 +2592,13 @@ Checking test 045 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 185.233689 +The total amount of wall time = 175.144328 Test 045 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_RRTMGP +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_RRTMGP Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2663,13 +2663,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 187.969992 +The total amount of wall time = 178.879686 Test 046 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_RRTMGP_c192L127 Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2728,13 +2728,13 @@ Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 733.570211 +The total amount of wall time = 720.183361 Test 047 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_RRTMGP_2thrd Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2799,13 +2799,13 @@ Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 282.897222 +The total amount of wall time = 272.559145 Test 048 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmg -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfsv16_csawmg +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmg +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfsv16_csawmg Checking test 049 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2850,13 +2850,13 @@ Checking test 049 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 132.452220 +The total amount of wall time = 135.174201 Test 049 fv3_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmgt -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfsv16_csawmgt +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmgt +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfsv16_csawmgt Checking test 050 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2901,13 +2901,13 @@ Checking test 050 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 130.527004 +The total amount of wall time = 130.489969 Test 050 fv3_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gocart_clm -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gocart_clm +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gocart_clm Checking test 051 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2952,13 +2952,13 @@ Checking test 051 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 56.881795 +The total amount of wall time = 52.544351 Test 051 fv3_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_flake -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_flake +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_flake Checking test 052 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3023,13 +3023,13 @@ Checking test 052 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 116.827340 +The total amount of wall time = 110.543339 Test 052 fv3_gfs_v16_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_HAFS_v0_hwrf_thompson Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3094,13 +3094,13 @@ Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 161.380788 +The total amount of wall time = 161.699485 Test 053 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_esg_HAFS_v0_hwrf_thompson Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3115,13 +3115,13 @@ Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 310.000662 +The total amount of wall time = 297.153337 Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfsv16_ugwpv1 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfsv16_ugwpv1 Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3180,13 +3180,13 @@ Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 184.639949 +The total amount of wall time = 184.919745 Test 055 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfsv16_ugwpv1_warmstart Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3245,13 +3245,13 @@ Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 212.647393 +The total amount of wall time = 196.396511 Test 056 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_ras +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_ras Checking test 057 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3316,13 +3316,13 @@ Checking test 057 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 128.544225 +The total amount of wall time = 100.193398 Test 057 fv3_gfs_v16_ras PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v15p2_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v15p2_debug Checking test 058 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3387,13 +3387,13 @@ Checking test 058 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 235.095911 +The total amount of wall time = 227.452795 Test 058 fv3_gfs_v15p2_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_debug Checking test 059 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3458,13 +3458,13 @@ Checking test 059 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 199.460156 +The total amount of wall time = 169.959918 Test 059 fv3_gfs_v16_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v15p2_RRTMGP_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v15p2_RRTMGP_debug Checking test 060 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3529,13 +3529,13 @@ Checking test 060 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 374.563559 +The total amount of wall time = 364.400285 Test 060 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_RRTMGP_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_RRTMGP_debug Checking test 061 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3600,13 +3600,13 @@ Checking test 061 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 381.595627 +The total amount of wall time = 373.305128 Test 061 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_control_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_control_debug Checking test 062 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3614,13 +3614,13 @@ Checking test 062 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 367.593608 +The total amount of wall time = 366.383020 Test 062 fv3_regional_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_control_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_control_debug Checking test 063 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3647,13 +3647,13 @@ Checking test 063 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 128.752562 +The total amount of wall time = 128.722369 Test 063 fv3_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_stretched_nest_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_stretched_nest_debug Checking test 064 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3670,13 +3670,13 @@ Checking test 064 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 436.695048 +The total amount of wall time = 437.496081 Test 064 fv3_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gsd_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gsd_debug Checking test 065 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3741,13 +3741,13 @@ Checking test 065 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 227.074360 +The total amount of wall time = 196.713598 Test 065 fv3_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_diag3d_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gsd_diag3d_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gsd_diag3d_debug Checking test 066 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3812,13 +3812,13 @@ Checking test 066 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 224.236854 +The total amount of wall time = 217.697104 Test 066 fv3_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_thompson_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_thompson_debug Checking test 067 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3883,13 +3883,13 @@ Checking test 067 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 340.075554 +The total amount of wall time = 340.529417 Test 067 fv3_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_thompson_no_aero_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_thompson_no_aero_debug Checking test 068 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3954,13 +3954,13 @@ Checking test 068 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 329.845920 +The total amount of wall time = 327.741274 Test 068 fv3_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_rrfs_v1beta_debug Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4025,13 +4025,13 @@ Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 188.889830 +The total amount of wall time = 189.380950 Test 069 fv3_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_HAFS_v0_hwrf_thompson_debug Checking test 070 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4096,13 +4096,13 @@ Checking test 070 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 203.934209 +The total amount of wall time = 205.502659 Test 070 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4117,13 +4117,13 @@ Checking test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 376.024082 +The total amount of wall time = 375.463604 Test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfsv16_ugwpv1_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfsv16_ugwpv1_debug Checking test 072 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4182,13 +4182,13 @@ Checking test 072 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 606.656985 +The total amount of wall time = 583.120481 Test 072 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_ras_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_ras_debug Checking test 073 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4253,13 +4253,13 @@ Checking test 073 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 350.677365 +The total amount of wall time = 322.960453 Test 073 fv3_gfs_v16_ras_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_control +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_control Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4309,13 +4309,13 @@ Checking test 074 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 120.457928 +The total amount of wall time = 96.066367 Test 074 cpld_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restart +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restart Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4365,13 +4365,13 @@ Checking test 075 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 50.718759 +The total amount of wall time = 80.916076 Test 075 cpld_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_controlfrac +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_controlfrac Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4421,13 +4421,13 @@ Checking test 076 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 120.677719 +The total amount of wall time = 103.398861 Test 076 cpld_controlfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restartfrac +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restartfrac Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4477,13 +4477,13 @@ Checking test 077 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 48.239807 +The total amount of wall time = 74.393433 Test 077 cpld_restartfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_2threads +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_2threads Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4533,13 +4533,13 @@ Checking test 078 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 147.067040 +The total amount of wall time = 132.871286 Test 078 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_decomp +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_decomp Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4589,13 +4589,13 @@ Checking test 079 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 90.314914 +The total amount of wall time = 91.193769 Test 079 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_satmedmf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_satmedmf +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_satmedmf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_satmedmf Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4645,13 +4645,13 @@ Checking test 080 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 91.042473 +The total amount of wall time = 90.195777 Test 080 cpld_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_ca -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_ca +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_ca +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_ca Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4701,13 +4701,13 @@ Checking test 081 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 121.001866 +The total amount of wall time = 109.883565 Test 081 cpld_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_control_c192 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_control_c192 Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4757,13 +4757,13 @@ Checking test 082 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 407.757892 +The total amount of wall time = 411.594599 Test 082 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restart_c192 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restart_c192 Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4813,13 +4813,13 @@ Checking test 083 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 307.998223 +The total amount of wall time = 287.980100 Test 083 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_controlfrac_c192 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_controlfrac_c192 Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4869,13 +4869,13 @@ Checking test 084 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 406.897365 +The total amount of wall time = 412.493013 Test 084 cpld_controlfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restartfrac_c192 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restartfrac_c192 Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4925,13 +4925,13 @@ Checking test 085 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 323.773810 +The total amount of wall time = 310.823757 Test 085 cpld_restartfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_control_c384 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_control_c384 Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4984,13 +4984,13 @@ Checking test 086 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1521.958534 +The total amount of wall time = 1529.454292 Test 086 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restart_c384 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restart_c384 Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5043,13 +5043,13 @@ Checking test 087 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 773.748556 +The total amount of wall time = 776.811556 Test 087 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_controlfrac_c384 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_controlfrac_c384 Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5102,13 +5102,13 @@ Checking test 088 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1532.686150 +The total amount of wall time = 1513.024381 Test 088 cpld_controlfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restartfrac_c384 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restartfrac_c384 Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5161,13 +5161,13 @@ Checking test 089 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 766.519234 +The total amount of wall time = 775.324726 Test 089 cpld_restartfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_bmark +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_bmark Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5220,13 +5220,13 @@ Checking test 090 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 881.501054 +The total amount of wall time = 891.937549 Test 090 cpld_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restart_bmark +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restart_bmark Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5279,13 +5279,13 @@ Checking test 091 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 453.189565 +The total amount of wall time = 456.077376 Test 091 cpld_restart_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_bmarkfrac +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_bmarkfrac Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5338,13 +5338,13 @@ Checking test 092 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 859.231561 +The total amount of wall time = 877.482866 Test 092 cpld_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restart_bmarkfrac +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restart_bmarkfrac Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5397,13 +5397,13 @@ Checking test 093 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 447.852029 +The total amount of wall time = 458.318475 Test 093 cpld_restart_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_debug Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5453,13 +5453,13 @@ Checking test 094 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 261.103150 +The total amount of wall time = 264.028391 Test 094 cpld_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debugfrac -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_debugfrac +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debugfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_debugfrac Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5509,73 +5509,73 @@ Checking test 095 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 287.770841 +The total amount of wall time = 270.464542 Test 095 cpld_debugfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/datm_control_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 97.793800 +The total amount of wall time = 99.886181 Test 096 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/datm_restart_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 69.735499 +The total amount of wall time = 62.137315 Test 097 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/datm_control_gefs +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 95.204006 +The total amount of wall time = 95.549332 Test 098 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/datm_bulk_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 114.196027 +The total amount of wall time = 95.883983 Test 099 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/datm_bulk_gefs +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 94.867519 +The total amount of wall time = 98.449456 Test 100 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/datm_mx025_gefs +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/datm_mx025_gefs Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5584,23 +5584,23 @@ Checking test 101 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 386.640594 +The total amount of wall time = 448.897550 Test 101 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/datm_debug_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/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 -The total amount of wall time = 253.835049 +The total amount of wall time = 247.861378 Test 102 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 17 16:50:27 EDT 2021 -Elapsed time: 01h:17m:29s. Have a nice day! +Thu Mar 18 15:28:43 EDT 2021 +Elapsed time: 01h:26m:02s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index d0c0d71d6c..9136f2f100 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Wed Mar 17 21:02:21 UTC 2021 +Fri Mar 19 16:32:02 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfdlmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -48,13 +48,13 @@ Checking test 001 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 230.221815 + 0: The total amount of wall time = 237.471537 Test 001 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v15p2 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v15p2 Checking test 002 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -119,13 +119,13 @@ Checking test 002 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 575.623872 + 0: The total amount of wall time = 675.469331 Test 002 fv3_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16 Checking test 003 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -202,13 +202,13 @@ Checking test 003 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 599.253044 + 0: The total amount of wall time = 644.481194 Test 003 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_restart Checking test 004 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -255,13 +255,13 @@ Checking test 004 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 298.897952 + 0: The total amount of wall time = 293.565687 Test 004 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_stochy Checking test 005 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -326,13 +326,13 @@ Checking test 005 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 408.934031 + 0: The total amount of wall time = 403.710703 Test 005 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_flake Checking test 006 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -397,13 +397,13 @@ Checking test 006 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 651.896884 + 0: The total amount of wall time = 674.892521 Test 006 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v15p2_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v15p2_RRTMGP Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -468,13 +468,13 @@ Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 718.716919 + 0: The total amount of wall time = 758.831205 Test 007 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_RRTMGP Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -539,13 +539,13 @@ Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 743.681647 + 0: The total amount of wall time = 764.434046 Test 008 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gsd Checking test 009 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -634,13 +634,13 @@ Checking test 009 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 881.051197 + 0: The total amount of wall time = 846.078479 Test 009 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_thompson Checking test 010 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -705,13 +705,13 @@ Checking test 010 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 398.364665 + 0: The total amount of wall time = 430.229886 Test 010 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_thompson_no_aero Checking test 011 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -776,13 +776,13 @@ Checking test 011 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 399.138654 + 0: The total amount of wall time = 387.260332 Test 011 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -847,13 +847,13 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 399.585865 + 0: The total amount of wall time = 443.446092 Test 012 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_HAFS_v0_hwrf_thompson Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -918,13 +918,13 @@ Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 628.560364 + 0: The total amount of wall time = 640.029604 Test 013 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_esg_HAFS_v0_hwrf_thompson Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -939,13 +939,13 @@ Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 443.604429 + 0: The total amount of wall time = 450.842489 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfsv16_ugwpv1 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfsv16_ugwpv1 Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1004,13 +1004,13 @@ Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 908.532238 + 0: The total amount of wall time = 901.591014 Test 015 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfsv16_ugwpv1_warmstart Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1069,13 +1069,13 @@ Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 923.398587 + 0: The total amount of wall time = 917.105238 Test 016 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_ras Checking test 017 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1140,13 +1140,13 @@ Checking test 017 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 608.975806 + 0: The total amount of wall time = 574.592917 Test 017 fv3_gfs_v16_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_control_debug Checking test 018 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1173,13 +1173,13 @@ Checking test 018 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 88.625162 + 0: The total amount of wall time = 84.997363 Test 018 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_regional_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_regional_control_debug Checking test 019 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1187,13 +1187,13 @@ Checking test 019 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 168.838854 + 0: The total amount of wall time = 172.290542 Test 019 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_rrfs_v1beta_debug Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1258,13 +1258,13 @@ Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 120.986153 + 0: The total amount of wall time = 118.870100 Test 020 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gsd_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gsd_debug Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,13 +1329,13 @@ Checking test 021 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 122.324768 + 0: The total amount of wall time = 121.813272 Test 021 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_thompson_debug Checking test 022 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1400,13 +1400,13 @@ Checking test 022 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 203.342459 + 0: The total amount of wall time = 200.768902 Test 022 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_thompson_no_aero_debug Checking test 023 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1471,13 +1471,13 @@ Checking test 023 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.439857 + 0: The total amount of wall time = 192.773701 Test 023 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v15p2_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v15p2_debug Checking test 024 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1542,13 +1542,13 @@ Checking test 024 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 275.837348 + 0: The total amount of wall time = 296.726170 Test 024 fv3_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_debug Checking test 025 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,13 +1613,13 @@ Checking test 025 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 132.082633 + 0: The total amount of wall time = 127.074768 Test 025 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v15p2_RRTMGP_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v15p2_RRTMGP_debug Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1684,13 +1684,13 @@ Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 325.547437 + 0: The total amount of wall time = 327.302773 Test 026 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_RRTMGP_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_RRTMGP_debug Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1755,13 @@ Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 311.887452 + 0: The total amount of wall time = 354.534815 Test 027 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_multigases -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_multigases +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_multigases +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_multigases Checking test 028 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1832,13 +1832,13 @@ Checking test 028 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 441.145451 + 0: The total amount of wall time = 420.499654 Test 028 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_HAFS_v0_hwrf_thompson_debug Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,13 +1903,13 @@ Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 133.935288 + 0: The total amount of wall time = 132.677680 Test 029 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1924,13 +1924,13 @@ Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 224.800982 + 0: The total amount of wall time = 227.660754 Test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfsv16_ugwpv1_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfsv16_ugwpv1_debug Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1989,13 +1989,13 @@ Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 391.575539 + 0: The total amount of wall time = 391.564759 Test 031 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_ras_debug Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2060,11 +2060,11 @@ Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.115575 + 0: The total amount of wall time = 219.969998 Test 032 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 17 21:28:59 UTC 2021 -Elapsed time: 00h:26m:39s. Have a nice day! +Fri Mar 19 19:23:01 UTC 2021 +Elapsed time: 02h:50m:59s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index eeb5727b00..664939a3ff 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Wed Mar 17 20:53:57 UTC 2021 +Fri Mar 19 15:56:08 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 39.984777 + 0: The total amount of wall time = 39.366954 Test 001 fv3_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 40.778737 + 0: The total amount of wall time = 40.042910 Test 002 fv3_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +210,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 41.434267 + 0: The total amount of wall time = 41.787880 Test 003 fv3_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +263,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 18.898729 + 0: The total amount of wall time = 19.759936 Test 004 fv3_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_read_inc -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_read_inc +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -334,13 +334,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.456500 + 0: The total amount of wall time = 36.350124 Test 005 fv3_read_inc PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_netcdf_esmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,13 +385,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 111.429769 + 0: The total amount of wall time = 109.973546 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_netcdf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -436,13 +436,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 38.158742 + 0: The total amount of wall time = 37.412712 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -450,7 +450,7 @@ Checking test 008 fv3_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,13 +487,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 48.224545 + 0: The total amount of wall time = 47.306747 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGlatlon_netcdf -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGlatlon_netcdf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -538,13 +538,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.504070 + 0: The total amount of wall time = 36.743012 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_nemsio +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -589,13 +589,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.951184 + 0: The total amount of wall time = 36.238317 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_nemsio_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +640,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 95.861372 + 0: The total amount of wall time = 96.443016 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stochy -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 41.037955 + 0: The total amount of wall time = 41.237996 Test 012 fv3_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_ca -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 26.848782 + 0: The total amount of wall time = 25.717263 Test 013 fv3_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lndp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.912846 + 0: The total amount of wall time = 43.449009 Test 014 fv3_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_iau -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_iau +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +924,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.950534 + 0: The total amount of wall time = 36.585567 Test 015 fv3_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lheatstrg -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_lheatstrg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +975,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.682170 + 0: The total amount of wall time = 36.734224 Test 016 fv3_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmprad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1027,13 +1027,13 @@ Checking test 017 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 647.779269 + 0: The total amount of wall time = 648.749887 Test 017 fv3_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_atmwav -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmprad_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_atmwav +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,13 +1079,13 @@ Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 795.365042 + 0: The total amount of wall time = 794.961885 Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_nemsio_c768 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c768 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_nemsio_c768 Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,13 +1131,13 @@ Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 674.318096 + 0: The total amount of wall time = 680.930308 Test 019 fv3_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_multigases_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_multigases_repro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_multigases_repro Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1208,13 +1208,13 @@ Checking test 020 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 94.344276 + 0: The total amount of wall time = 94.288968 Test 020 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_32bit -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_control_32bit +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_control_32bit Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,13 +1279,13 @@ Checking test 021 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.402951 + 0: The total amount of wall time = 35.895105 Test 021 fv3_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_stretched +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_stretched Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,13 +1338,13 @@ Checking test 022 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 225.504355 + 0: The total amount of wall time = 219.544988 Test 022 fv3_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_stretched_nest +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_stretched_nest Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1408,13 +1408,13 @@ Checking test 023 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK - 0: The total amount of wall time = 236.955976 + 0: The total amount of wall time = 241.675102 Test 023 fv3_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_control Checking test 024 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1422,25 +1422,25 @@ Checking test 024 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 546.765215 + 0: The total amount of wall time = 548.190531 Test 024 fv3_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_restart Checking test 025 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 302.067242 + 0: The total amount of wall time = 302.533953 Test 025 fv3_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_quilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_quilt Checking test 026 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1451,13 +1451,13 @@ Checking test 026 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 574.553838 + 0: The total amount of wall time = 573.061955 Test 026 fv3_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_hafs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_quilt_hafs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_quilt_hafs Checking test 027 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1466,13 +1466,13 @@ Checking test 027 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 574.746857 + 0: The total amount of wall time = 572.216512 Test 027 fv3_regional_quilt_hafs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_quilt_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_quilt_netcdf_parallel Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1480,13 +1480,13 @@ Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 573.410316 + 0: The total amount of wall time = 576.056927 Test 028 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmp Checking test 029 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1531,13 +1531,13 @@ Checking test 029 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.617745 + 0: The total amount of wall time = 42.336905 Test 029 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_gwd -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmprad_gwd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmprad_gwd Checking test 030 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1582,13 +1582,13 @@ Checking test 030 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.644786 + 0: The total amount of wall time = 42.847183 Test 030 fv3_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_noahmp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmprad_noahmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmprad_noahmp Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1633,13 +1633,13 @@ Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.722683 + 0: The total amount of wall time = 43.159585 Test 031 fv3_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_csawmg Checking test 032 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1684,13 +1684,13 @@ Checking test 032 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 107.398435 + 0: The total amount of wall time = 107.230208 Test 032 fv3_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_satmedmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_satmedmf Checking test 033 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1735,13 +1735,13 @@ Checking test 033 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.666010 + 0: The total amount of wall time = 47.557898 Test 033 fv3_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmfq -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_satmedmfq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_satmedmfq Checking test 034 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1786,13 +1786,13 @@ Checking test 034 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.544278 + 0: The total amount of wall time = 45.282295 Test 034 fv3_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp_32bit -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmp_32bit +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmp_32bit Checking test 035 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1837,13 +1837,13 @@ Checking test 035 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 40.948125 + 0: The total amount of wall time = 36.633248 Test 035 fv3_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_32bit_post -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmprad_32bit_post +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmprad_32bit_post Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1892,13 +1892,13 @@ Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 74.076119 + 0: The total amount of wall time = 72.571621 Test 036 fv3_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_cpt -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_cpt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_cpt Checking test 037 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1949,13 +1949,13 @@ Checking test 037 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 252.570449 + 0: The total amount of wall time = 253.276627 Test 037 fv3_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gsd Checking test 038 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2044,13 +2044,13 @@ Checking test 038 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.306962 + 0: The total amount of wall time = 177.512813 Test 038 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rap -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_rap +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rap +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_rap Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2115,13 +2115,13 @@ Checking test 039 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.164614 + 0: The total amount of wall time = 87.803927 Test 039 fv3_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_hrrr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_hrrr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_hrrr +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_hrrr Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2186,13 +2186,13 @@ Checking test 040 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 95.376886 + 0: The total amount of wall time = 96.256129 Test 040 fv3_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_thompson Checking test 041 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2257,13 +2257,13 @@ Checking test 041 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 83.532451 + 0: The total amount of wall time = 84.610243 Test 041 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_thompson_no_aero Checking test 042 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2328,13 +2328,13 @@ Checking test 042 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 79.108371 + 0: The total amount of wall time = 80.016053 Test 042 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_rrfs_v1beta Checking test 043 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2399,13 +2399,13 @@ Checking test 043 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 97.567700 + 0: The total amount of wall time = 97.763308 Test 043 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v15p2 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v15p2 Checking test 044 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2470,13 +2470,13 @@ Checking test 044 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 91.850977 + 0: The total amount of wall time = 93.635316 Test 044 fv3_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16 Checking test 045 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2553,13 +2553,13 @@ Checking test 045 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 102.515385 + 0: The total amount of wall time = 102.081819 Test 045 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_restart Checking test 046 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2606,13 +2606,13 @@ Checking test 046 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 53.055160 + 0: The total amount of wall time = 54.023024 Test 046 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_stochy Checking test 047 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2677,13 +2677,13 @@ Checking test 047 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 47.100106 + 0: The total amount of wall time = 46.823884 Test 047 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v15p2_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v15p2_RRTMGP Checking test 048 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2748,13 +2748,13 @@ Checking test 048 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 153.246460 + 0: The total amount of wall time = 155.682140 Test 048 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_RRTMGP Checking test 049 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2819,13 +2819,13 @@ Checking test 049 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 156.436174 + 0: The total amount of wall time = 165.211830 Test 049 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_RRTMGP_c192L127 Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2884,13 +2884,13 @@ Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 624.869992 + 0: The total amount of wall time = 621.071081 Test 050 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_RRTMGP_2thrd Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2955,13 +2955,13 @@ Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 175.662028 + 0: The total amount of wall time = 171.747147 Test 051 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfsv16_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmg +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfsv16_csawmg Checking test 052 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3006,13 +3006,13 @@ Checking test 052 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 114.438854 + 0: The total amount of wall time = 114.605300 Test 052 fv3_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfsv16_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmgt +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfsv16_csawmgt Checking test 053 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3057,13 +3057,13 @@ Checking test 053 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 112.480343 + 0: The total amount of wall time = 112.926929 Test 053 fv3_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gocart_clm -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gocart_clm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gocart_clm Checking test 054 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3108,13 +3108,13 @@ Checking test 054 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 46.884791 + 0: The total amount of wall time = 46.699732 Test 054 fv3_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_flake Checking test 055 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3179,13 +3179,13 @@ Checking test 055 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 94.609762 + 0: The total amount of wall time = 97.267533 Test 055 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_HAFS_v0_hwrf_thompson Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3250,13 +3250,13 @@ Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 141.396630 + 0: The total amount of wall time = 141.251279 Test 056 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_esg_HAFS_v0_hwrf_thompson Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3271,13 +3271,13 @@ Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 280.570341 + 0: The total amount of wall time = 279.445435 Test 057 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfsv16_ugwpv1 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfsv16_ugwpv1 Checking test 058 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3336,13 +3336,13 @@ Checking test 058 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 163.168728 + 0: The total amount of wall time = 162.403031 Test 058 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfsv16_ugwpv1_warmstart Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3401,13 +3401,13 @@ Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 164.991385 + 0: The total amount of wall time = 164.604458 Test 059 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_ras Checking test 060 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3472,13 +3472,13 @@ Checking test 060 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 88.093064 + 0: The total amount of wall time = 87.473920 Test 060 fv3_gfs_v16_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v15p2_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v15p2_debug Checking test 061 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3543,13 +3543,13 @@ Checking test 061 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.023364 + 0: The total amount of wall time = 225.572325 Test 061 fv3_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_debug Checking test 062 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3614,13 +3614,13 @@ Checking test 062 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.542628 + 0: The total amount of wall time = 173.296381 Test 062 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v15p2_RRTMGP_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v15p2_RRTMGP_debug Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3685,13 +3685,13 @@ Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 343.080931 + 0: The total amount of wall time = 348.706433 Test 063 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_RRTMGP_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_RRTMGP_debug Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3756,13 +3756,13 @@ Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 350.730465 + 0: The total amount of wall time = 347.673806 Test 064 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_control_debug Checking test 065 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3770,13 +3770,13 @@ Checking test 065 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 343.648586 + 0: The total amount of wall time = 353.505385 Test 065 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_control_debug Checking test 066 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3803,13 +3803,13 @@ Checking test 066 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 131.367273 + 0: The total amount of wall time = 132.647365 Test 066 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_stretched_nest_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_stretched_nest_debug Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3826,13 +3826,13 @@ Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 353.115307 + 0: The total amount of wall time = 352.899196 Test 067 fv3_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gsd_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gsd_debug Checking test 068 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3897,13 +3897,13 @@ Checking test 068 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.377431 + 0: The total amount of wall time = 197.568431 Test 068 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_diag3d_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gsd_diag3d_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gsd_diag3d_debug Checking test 069 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3968,13 +3968,13 @@ Checking test 069 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.833859 + 0: The total amount of wall time = 250.595468 Test 069 fv3_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_thompson_debug Checking test 070 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4039,13 +4039,13 @@ Checking test 070 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 328.146694 + 0: The total amount of wall time = 333.573337 Test 070 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_thompson_no_aero_debug Checking test 071 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4110,13 +4110,13 @@ Checking test 071 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 316.827349 + 0: The total amount of wall time = 317.647750 Test 071 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_rrfs_v1beta_debug Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4181,13 +4181,13 @@ Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.821750 + 0: The total amount of wall time = 192.390696 Test 072 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_HAFS_v0_hwrf_thompson_debug Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4252,13 +4252,13 @@ Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 201.618230 + 0: The total amount of wall time = 203.404709 Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4273,13 +4273,13 @@ Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 374.293835 + 0: The total amount of wall time = 380.261543 Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfsv16_ugwpv1_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfsv16_ugwpv1_debug Checking test 075 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4338,13 +4338,13 @@ Checking test 075 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 542.635850 + 0: The total amount of wall time = 542.538902 Test 075 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_ras_debug Checking test 076 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4409,13 +4409,13 @@ Checking test 076 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 309.132295 + 0: The total amount of wall time = 320.026427 Test 076 fv3_gfs_v16_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_control Checking test 077 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4465,13 +4465,13 @@ Checking test 077 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 90.339128 + 0: The total amount of wall time = 89.492388 Test 077 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart Checking test 078 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4521,13 +4521,13 @@ Checking test 078 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 54.768869 + 0: The total amount of wall time = 52.752001 Test 078 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_controlfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_controlfrac Checking test 079 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4577,13 +4577,13 @@ Checking test 079 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 95.907851 + 0: The total amount of wall time = 89.156218 Test 079 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restartfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restartfrac Checking test 080 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4633,13 +4633,13 @@ Checking test 080 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 55.511067 + 0: The total amount of wall time = 54.839990 Test 080 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_2threads Checking test 081 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4689,13 +4689,13 @@ Checking test 081 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 110.409809 + 0: The total amount of wall time = 109.331295 Test 081 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_decomp Checking test 082 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4745,13 +4745,13 @@ Checking test 082 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 88.728218 + 0: The total amount of wall time = 86.886875 Test 082 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_satmedmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_satmedmf +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_satmedmf Checking test 083 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4801,13 +4801,13 @@ Checking test 083 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 87.231026 + 0: The total amount of wall time = 86.736219 Test 083 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_ca -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_ca +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_ca Checking test 084 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4857,13 +4857,13 @@ Checking test 084 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 87.981922 + 0: The total amount of wall time = 86.330204 Test 084 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_control_c192 Checking test 085 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4913,13 +4913,13 @@ Checking test 085 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 375.367746 + 0: The total amount of wall time = 375.102929 Test 085 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart_c192 Checking test 086 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4969,13 +4969,13 @@ Checking test 086 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 270.814211 + 0: The total amount of wall time = 271.849544 Test 086 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_controlfrac_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_controlfrac_c192 Checking test 087 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -5025,13 +5025,13 @@ Checking test 087 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 373.279468 + 0: The total amount of wall time = 376.076936 Test 087 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restartfrac_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restartfrac_c192 Checking test 088 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -5081,13 +5081,13 @@ Checking test 088 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 266.135016 + 0: The total amount of wall time = 261.680954 Test 088 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_control_c384 Checking test 089 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5140,13 +5140,13 @@ Checking test 089 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1329.110627 + 0: The total amount of wall time = 1310.415571 Test 089 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart_c384 Checking test 090 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5199,13 +5199,13 @@ Checking test 090 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 696.887685 + 0: The total amount of wall time = 699.923037 Test 090 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_controlfrac_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_controlfrac_c384 Checking test 091 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5258,13 +5258,13 @@ Checking test 091 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1312.699512 + 0: The total amount of wall time = 1312.460118 Test 091 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restartfrac_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restartfrac_c384 Checking test 092 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5317,13 +5317,13 @@ Checking test 092 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 695.786189 + 0: The total amount of wall time = 694.840528 Test 092 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmark +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmark Checking test 093 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5376,13 +5376,13 @@ Checking test 093 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 822.009683 + 0: The total amount of wall time = 797.868408 Test 093 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart_bmark +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart_bmark Checking test 094 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5435,13 +5435,13 @@ Checking test 094 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 455.656186 + 0: The total amount of wall time = 456.416099 Test 094 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmarkfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmarkfrac Checking test 095 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5494,13 +5494,13 @@ Checking test 095 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 819.301220 + 0: The total amount of wall time = 786.716243 Test 095 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart_bmarkfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart_bmarkfrac Checking test 096 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5553,13 +5553,13 @@ Checking test 096 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 450.464189 + 0: The total amount of wall time = 446.217410 Test 096 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmarkfrac_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmarkfrac_v16 Checking test 097 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5612,13 +5612,13 @@ Checking test 097 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 1305.824498 + 0: The total amount of wall time = 1306.615833 Test 097 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart_bmarkfrac_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart_bmarkfrac_v16 Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5671,13 +5671,13 @@ Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 736.928195 + 0: The total amount of wall time = 720.890251 Test 098 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark_wave -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmark_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark_wave +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmark_wave Checking test 099 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5733,13 +5733,13 @@ Checking test 099 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1371.881760 + 0: The total amount of wall time = 1342.795970 Test 099 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_wave -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmarkfrac_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmarkfrac_wave Checking test 100 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5795,13 +5795,13 @@ Checking test 100 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1367.920208 + 0: The total amount of wall time = 1352.035957 Test 100 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmarkfrac_wave_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmarkfrac_wave_v16 Checking test 101 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5856,13 +5856,13 @@ Checking test 101 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 905.989112 + 0: The total amount of wall time = 881.385353 Test 101 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_wave -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_control_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_wave +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_control_wave Checking test 102 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5915,13 +5915,13 @@ Checking test 102 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 781.782198 + 0: The total amount of wall time = 779.555195 Test 102 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debug +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_debug Checking test 103 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5971,13 +5971,13 @@ Checking test 103 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 288.146012 + 0: The total amount of wall time = 285.915942 Test 103 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debugfrac -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_debugfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debugfrac +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_debugfrac Checking test 104 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -6027,73 +6027,73 @@ Checking test 104 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 290.711654 + 0: The total amount of wall time = 284.565844 Test 104 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_control_cfsr Checking test 105 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 - 0: The total amount of wall time = 99.712761 + 0: The total amount of wall time = 95.410816 Test 105 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_restart_cfsr Checking test 106 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 - 0: The total amount of wall time = 60.478684 + 0: The total amount of wall time = 60.909505 Test 106 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_gefs +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_control_gefs Checking test 107 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 - 0: The total amount of wall time = 89.962727 + 0: The total amount of wall time = 88.722502 Test 107 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_cfsr +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_bulk_cfsr Checking test 108 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 - 0: The total amount of wall time = 94.244593 + 0: The total amount of wall time = 91.873665 Test 108 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_gefs +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_bulk_gefs Checking test 109 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 - 0: The total amount of wall time = 92.172983 + 0: The total amount of wall time = 88.616042 Test 109 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_cfsr +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_mx025_cfsr Checking test 110 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -6102,13 +6102,13 @@ Checking test 110 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 366.399041 + 0: The total amount of wall time = 357.635167 Test 110 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_gefs +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_mx025_gefs Checking test 111 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -6117,23 +6117,23 @@ Checking test 111 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 357.507390 + 0: The total amount of wall time = 345.475405 Test 111 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_debug_cfsr +working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_debug_cfsr Checking test 112 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 - 0: The total amount of wall time = 265.079234 + 0: The total amount of wall time = 266.026575 Test 112 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 17 22:25:38 UTC 2021 -Elapsed time: 01h:31m:42s. Have a nice day! +Fri Mar 19 19:01:44 UTC 2021 +Elapsed time: 03h:05m:37s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index d21bbca020..85fbe99614 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Wed Mar 17 19:33:34 GMT 2021 +Fri Mar 19 20:32:46 GMT 2021 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_control +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.019073 +The total amount of wall time = 64.728782 Test 001 fv3_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_2threads +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_2threads Checking test 002 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,13 @@ Checking test 002 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 291.380542 +The total amount of wall time = 247.935928 Test 002 fv3_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_restart +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_restart Checking test 003 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -192,13 +192,13 @@ Checking test 003 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 27.673882 +The total amount of wall time = 28.060533 Test 003 fv3_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_read_inc -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_read_inc +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_read_inc Checking test 004 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -263,13 +263,13 @@ Checking test 004 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.907264 +The total amount of wall time = 53.163985 Test 004 fv3_read_inc PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGauss_netcdf_esmf +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGauss_netcdf_esmf Checking test 005 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -314,13 +314,13 @@ Checking test 005 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 156.743211 +The total amount of wall time = 188.134730 Test 005 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGauss_netcdf +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGauss_netcdf Checking test 006 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -365,13 +365,13 @@ Checking test 006 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.684815 +The total amount of wall time = 53.163288 Test 006 fv3_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGauss_netcdf_parallel +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGauss_netcdf_parallel Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -416,13 +416,13 @@ Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 68.053817 +The total amount of wall time = 73.607947 Test 007 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGlatlon_netcdf +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGlatlon_netcdf Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -467,13 +467,13 @@ Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.984470 +The total amount of wall time = 52.930898 Test 008 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGauss_nemsio +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGauss_nemsio Checking test 009 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -518,13 +518,13 @@ Checking test 009 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.310479 +The total amount of wall time = 52.238510 Test 009 fv3_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGauss_nemsio_c192 +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGauss_nemsio_c192 Checking test 010 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -569,13 +569,13 @@ Checking test 010 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 140.905612 +The total amount of wall time = 140.933841 Test 010 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stochy -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_stochy +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_stochy Checking test 011 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +640,13 @@ Checking test 011 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.977465 +The total amount of wall time = 60.037783 Test 011 fv3_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_ca -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_ca +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_ca Checking test 012 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,13 @@ Checking test 012 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 45.157381 +The total amount of wall time = 43.965197 Test 012 fv3_ca PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lndp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_lndp +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_lndp Checking test 013 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,13 @@ Checking test 013 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 66.065248 +The total amount of wall time = 67.359845 Test 013 fv3_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_iau -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_iau +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_iau Checking test 014 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,13 @@ Checking test 014 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.581130 +The total amount of wall time = 52.393139 Test 014 fv3_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lheatstrg -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_lheatstrg +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_lheatstrg Checking test 015 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -904,13 +904,13 @@ Checking test 015 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.169134 +The total amount of wall time = 53.119680 Test 015 fv3_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_multigases_repro -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_multigases_repro +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_multigases_repro Checking test 016 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,13 +981,13 @@ Checking test 016 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 130.857413 +The total amount of wall time = 129.411586 Test 016 fv3_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_32bit -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_control_32bit +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_control_32bit Checking test 017 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1052,13 @@ Checking test 017 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.663932 +The total amount of wall time = 58.787940 Test 017 fv3_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_stretched +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_stretched Checking test 018 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1111,13 +1111,13 @@ Checking test 018 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 393.187766 +The total amount of wall time = 397.670535 Test 018 fv3_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_stretched_nest +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_stretched_nest Checking test 019 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1181,13 +1181,13 @@ Checking test 019 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 423.882746 +The total amount of wall time = 425.730764 Test 019 fv3_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_control +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_control Checking test 020 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1195,25 +1195,25 @@ Checking test 020 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 858.855780 +The total amount of wall time = 865.261803 Test 020 fv3_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_restart -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_restart +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_restart Checking test 021 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 480.755054 +The total amount of wall time = 480.835251 Test 021 fv3_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_quilt +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_quilt Checking test 022 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1224,13 +1224,13 @@ Checking test 022 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 848.654061 +The total amount of wall time = 846.432121 Test 022 fv3_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_hafs -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_quilt_hafs +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_quilt_hafs Checking test 023 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1239,27 +1239,27 @@ Checking test 023 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 850.474449 +The total amount of wall time = 843.338808 Test 023 fv3_regional_quilt_hafs PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_quilt_netcdf_parallel +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_quilt_netcdf_parallel Checking test 024 fv3_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 -The total amount of wall time = 854.368540 +The total amount of wall time = 845.687904 Test 024 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfdlmp +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfdlmp Checking test 025 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1304,13 +1304,13 @@ Checking test 025 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.547225 +The total amount of wall time = 61.442180 Test 025 fv3_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_gwd -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfdlmprad_gwd +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfdlmprad_gwd Checking test 026 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,13 +1355,13 @@ Checking test 026 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.741896 +The total amount of wall time = 60.994258 Test 026 fv3_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_noahmp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfdlmprad_noahmp +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfdlmprad_noahmp Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1406,13 +1406,13 @@ Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.105010 +The total amount of wall time = 61.299577 Test 027 fv3_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_csawmg -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_csawmg +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_csawmg Checking test 028 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1457,13 +1457,13 @@ Checking test 028 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 150.699055 +The total amount of wall time = 151.835768 Test 028 fv3_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmf -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_satmedmf +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_satmedmf Checking test 029 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1508,13 +1508,13 @@ Checking test 029 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 65.351403 +The total amount of wall time = 65.891762 Test 029 fv3_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmfq -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_satmedmfq +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_satmedmfq Checking test 030 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,13 +1559,13 @@ Checking test 030 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 65.648666 +The total amount of wall time = 64.924674 Test 030 fv3_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp_32bit -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfdlmp_32bit +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfdlmp_32bit Checking test 031 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1610,13 +1610,13 @@ Checking test 031 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.508828 +The total amount of wall time = 52.801592 Test 031 fv3_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfdlmprad_32bit_post +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfdlmprad_32bit_post Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1665,13 +1665,13 @@ Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 96.512019 +The total amount of wall time = 96.194080 Test 032 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_cpt -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_cpt +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_cpt Checking test 033 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,13 +1722,13 @@ Checking test 033 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 349.283110 +The total amount of wall time = 348.882981 Test 033 fv3_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gsd +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gsd Checking test 034 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1817,13 +1817,13 @@ Checking test 034 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 244.449669 +The total amount of wall time = 240.816257 Test 034 fv3_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_thompson +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_thompson Checking test 035 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1888,13 @@ Checking test 035 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 116.800567 +The total amount of wall time = 114.204287 Test 035 fv3_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_thompson_no_aero +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_thompson_no_aero Checking test 036 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1959,13 @@ Checking test 036 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 108.742722 +The total amount of wall time = 109.542404 Test 036 fv3_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2 -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v15p2 +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2 +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v15p2 Checking test 037 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2030,13 @@ Checking test 037 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 118.552870 +The total amount of wall time = 118.426819 Test 037 fv3_gfs_v15p2 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16 +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16 Checking test 038 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2113,13 +2113,13 @@ Checking test 038 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 145.083847 +The total amount of wall time = 145.923377 Test 038 fv3_gfs_v16 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_restart +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_restart Checking test 039 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2166,13 +2166,13 @@ Checking test 039 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 75.241385 +The total amount of wall time = 74.629030 Test 039 fv3_gfs_v16_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_stochy -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_stochy +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_stochy Checking test 040 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2237,85 +2237,14 @@ Checking test 040 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 66.542223 +The total amount of wall time = 65.585332 Test 040 fv3_gfs_v16_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v15p2_RRTMGP -Checking test 041 fv3_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 - -The total amount of wall time = 187.628841 - -Test 041 fv3_gfs_v15p2_RRTMGP PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_RRTMGP -Checking test 042 fv3_gfs_v16_RRTMGP results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_RRTMGP +Checking test 041 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2379,14 +2308,14 @@ Checking test 042 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 189.007064 +The total amount of wall time = 202.330587 -Test 042 fv3_gfs_v16_RRTMGP PASS +Test 041 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_RRTMGP_c192L127 -Checking test 043 fv3_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_RRTMGP_c192L127 +Checking test 042 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2444,14 +2373,14 @@ Checking test 043 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 801.382491 +The total amount of wall time = 803.832167 -Test 043 fv3_gfs_v16_RRTMGP_c192L127 PASS +Test 042 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_RRTMGP_2thrd -Checking test 044 fv3_gfs_v16_RRTMGP_2thrd results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_RRTMGP_2thrd +Checking test 043 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2515,14 +2444,14 @@ Checking test 044 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 768.356275 +The total amount of wall time = 827.003276 -Test 044 fv3_gfs_v16_RRTMGP_2thrd PASS +Test 043 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmg -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfsv16_csawmg -Checking test 045 fv3_gfsv16_csawmg results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmg +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfsv16_csawmg +Checking test 044 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2566,14 +2495,14 @@ Checking test 045 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 163.570737 +The total amount of wall time = 162.444195 -Test 045 fv3_gfsv16_csawmg PASS +Test 044 fv3_gfsv16_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfsv16_csawmgt -Checking test 046 fv3_gfsv16_csawmgt results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfsv16_csawmgt +Checking test 045 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2617,14 +2546,14 @@ Checking test 046 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 160.409704 +The total amount of wall time = 160.087092 -Test 046 fv3_gfsv16_csawmgt PASS +Test 045 fv3_gfsv16_csawmgt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gocart_clm -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gocart_clm -Checking test 047 fv3_gocart_clm results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gocart_clm +Checking test 046 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2668,14 +2597,14 @@ Checking test 047 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 67.442475 +The total amount of wall time = 70.082356 -Test 047 fv3_gocart_clm PASS +Test 046 fv3_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_flake -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_flake -Checking test 048 fv3_gfs_v16_flake results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_flake +Checking test 047 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2739,14 +2668,14 @@ Checking test 048 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 119.774709 +The total amount of wall time = 123.487427 -Test 048 fv3_gfs_v16_flake PASS +Test 047 fv3_gfs_v16_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_HAFS_v0_hwrf_thompson -Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_HAFS_v0_hwrf_thompson +Checking test 048 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2810,14 +2739,14 @@ Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 191.359263 +The total amount of wall time = 192.169109 -Test 049 fv3_HAFS_v0_hwrf_thompson PASS +Test 048 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 049 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2831,14 +2760,14 @@ Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 357.358522 +The total amount of wall time = 356.676973 -Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 049 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfsv16_ugwpv1 -Checking test 051 fv3_gfsv16_ugwpv1 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfsv16_ugwpv1 +Checking test 050 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2896,14 +2825,14 @@ Checking test 051 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 228.829873 +The total amount of wall time = 229.423421 -Test 051 fv3_gfsv16_ugwpv1 PASS +Test 050 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfsv16_ugwpv1_warmstart -Checking test 052 fv3_gfsv16_ugwpv1_warmstart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfsv16_ugwpv1_warmstart +Checking test 051 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2961,14 +2890,14 @@ Checking test 052 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 229.672114 +The total amount of wall time = 229.322248 -Test 052 fv3_gfsv16_ugwpv1_warmstart PASS +Test 051 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_ras -Checking test 053 fv3_gfs_v16_ras results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_ras +Checking test 052 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3032,14 +2961,14 @@ Checking test 053 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 123.129870 +The total amount of wall time = 123.968164 -Test 053 fv3_gfs_v16_ras PASS +Test 052 fv3_gfs_v16_ras PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v15p2_debug -Checking test 054 fv3_gfs_v15p2_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v15p2_debug +Checking test 053 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3103,14 +3032,14 @@ Checking test 054 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 271.873950 +The total amount of wall time = 273.697286 -Test 054 fv3_gfs_v15p2_debug PASS +Test 053 fv3_gfs_v15p2_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_debug -Checking test 055 fv3_gfs_v16_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_debug +Checking test 054 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3174,14 +3103,14 @@ Checking test 055 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 207.082359 +The total amount of wall time = 208.127790 -Test 055 fv3_gfs_v16_debug PASS +Test 054 fv3_gfs_v16_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v15p2_RRTMGP_debug -Checking test 056 fv3_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v15p2_RRTMGP_debug +Checking test 055 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3245,14 +3174,14 @@ Checking test 056 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 438.413542 +The total amount of wall time = 440.089160 -Test 056 fv3_gfs_v15p2_RRTMGP_debug PASS +Test 055 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_RRTMGP_debug -Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_RRTMGP_debug +Checking test 056 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3316,28 +3245,28 @@ Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 447.659668 +The total amount of wall time = 451.065134 -Test 057 fv3_gfs_v16_RRTMGP_debug PASS +Test 056 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_control_debug -Checking test 058 fv3_regional_control_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_control_debug +Checking test 057 fv3_regional_control_debug 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 -The total amount of wall time = 458.928966 +The total amount of wall time = 458.313491 -Test 058 fv3_regional_control_debug PASS +Test 057 fv3_regional_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_control_debug -Checking test 059 fv3_control_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_control_debug +Checking test 058 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3363,14 +3292,14 @@ Checking test 059 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 157.690354 +The total amount of wall time = 158.968260 -Test 059 fv3_control_debug PASS +Test 058 fv3_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_stretched_nest_debug -Checking test 060 fv3_stretched_nest_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_stretched_nest_debug +Checking test 059 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3386,14 +3315,14 @@ Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 534.941205 +The total amount of wall time = 535.750789 -Test 060 fv3_stretched_nest_debug PASS +Test 059 fv3_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gsd_debug -Checking test 061 fv3_gsd_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gsd_debug +Checking test 060 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3457,14 +3386,14 @@ Checking test 061 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 238.318598 +The total amount of wall time = 239.269686 -Test 061 fv3_gsd_debug PASS +Test 060 fv3_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_diag3d_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gsd_diag3d_debug -Checking test 062 fv3_gsd_diag3d_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gsd_diag3d_debug +Checking test 061 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3528,14 +3457,14 @@ Checking test 062 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 270.684010 +The total amount of wall time = 271.115849 -Test 062 fv3_gsd_diag3d_debug PASS +Test 061 fv3_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_thompson_debug -Checking test 063 fv3_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_thompson_debug +Checking test 062 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3599,14 +3528,14 @@ Checking test 063 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 417.304640 +The total amount of wall time = 417.427067 -Test 063 fv3_thompson_debug PASS +Test 062 fv3_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_thompson_no_aero_debug -Checking test 064 fv3_thompson_no_aero_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_thompson_no_aero_debug +Checking test 063 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3670,14 +3599,14 @@ Checking test 064 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 402.109266 +The total amount of wall time = 401.368140 -Test 064 fv3_thompson_no_aero_debug PASS +Test 063 fv3_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_rrfs_v1beta_debug -Checking test 065 fv3_rrfs_v1beta_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_rrfs_v1beta_debug +Checking test 064 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3741,14 +3670,14 @@ Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 232.941492 +The total amount of wall time = 231.962234 -Test 065 fv3_rrfs_v1beta_debug PASS +Test 064 fv3_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 065 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3812,14 +3741,14 @@ Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 247.699269 +The total amount of wall time = 247.594030 -Test 066 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 065 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3833,14 +3762,14 @@ Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 462.514551 +The total amount of wall time = 464.549115 -Test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfsv16_ugwpv1_debug -Checking test 068 fv3_gfsv16_ugwpv1_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfsv16_ugwpv1_debug +Checking test 067 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3898,14 +3827,14 @@ Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 708.519770 +The total amount of wall time = 709.309574 -Test 068 fv3_gfsv16_ugwpv1_debug PASS +Test 067 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_ras_debug -Checking test 069 fv3_gfs_v16_ras_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_ras_debug +Checking test 068 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3969,11 +3898,11 @@ Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 395.906445 +The total amount of wall time = 395.013982 -Test 069 fv3_gfs_v16_ras_debug PASS +Test 068 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 17 21:50:12 GMT 2021 -Elapsed time: 02h:16m:39s. Have a nice day! +Fri Mar 19 23:14:51 GMT 2021 +Elapsed time: 02h:42m:05s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 301964dfb3..bd8bb38e30 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,10 +1,10 @@ -Fri Mar 12 21:17:03 CST 2021 +Fri Mar 19 12:50:33 CDT 2021 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_control +Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -68,14 +68,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 47.335967 + 0: The total amount of wall time = 49.822248 -Test 001 fv3_ccpp_control PASS +Test 001 fv3_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_decomp +Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -139,14 +139,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.909151 + 0: The total amount of wall time = 51.521173 -Test 002 fv3_ccpp_decomp PASS +Test 002 fv3_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_2threads +Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -210,14 +210,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 53.512654 + 0: The total amount of wall time = 45.713742 -Test 003 fv3_ccpp_2threads PASS +Test 003 fv3_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_restart +Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -263,14 +263,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 24.881297 + 0: The total amount of wall time = 28.132500 -Test 004 fv3_ccpp_restart PASS +Test 004 fv3_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_read_inc +Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -334,14 +334,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.960439 + 0: The total amount of wall time = 44.505180 -Test 005 fv3_ccpp_read_inc PASS +Test 005 fv3_read_inc PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_netcdf_esmf +Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -385,14 +385,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.822694 + 0: The total amount of wall time = 166.407823 -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS +Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_netcdf +Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -436,14 +436,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.459556 + 0: The total amount of wall time = 40.838167 -Test 007 fv3_ccpp_wrtGauss_netcdf PASS +Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_netcdf_parallel +Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -453,7 +453,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........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,14 +487,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 53.314491 + 0: The total amount of wall time = 62.405697 -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS +Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGlatlon_netcdf +Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -538,14 +538,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.327716 + 0: The total amount of wall time = 47.179670 -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS +Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_nemsio +Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -589,14 +589,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.746261 + 0: The total amount of wall time = 45.659848 -Test 010 fv3_ccpp_wrtGauss_nemsio PASS +Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_nemsio_c192 +Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -640,14 +640,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 102.974613 + 0: The total amount of wall time = 109.415050 -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS +Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_stochy +Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -711,14 +711,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 49.343612 + 0: The total amount of wall time = 44.225112 -Test 012 fv3_ccpp_stochy PASS +Test 012 fv3_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_ca +Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -782,14 +782,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 30.400909 + 0: The total amount of wall time = 30.103813 -Test 013 fv3_ccpp_ca PASS +Test 013 fv3_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_lndp +Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -853,14 +853,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 48.801022 + 0: The total amount of wall time = 56.130941 -Test 014 fv3_ccpp_lndp PASS +Test 014 fv3_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_iau +Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -924,14 +924,14 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 44.134449 + 0: The total amount of wall time = 50.465295 -Test 015 fv3_ccpp_iau PASS +Test 015 fv3_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_lheatstrg +Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -975,14 +975,14 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.349731 + 0: The total amount of wall time = 46.489782 -Test 016 fv3_ccpp_lheatstrg PASS +Test 016 fv3_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmprad_prod -Checking test 017 fv3_ccpp_gfdlmprad results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmprad +Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1027,14 +1027,14 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 654.665384 + 0: The total amount of wall time = 678.419956 -Test 017 fv3_ccpp_gfdlmprad PASS +Test 017 fv3_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_atmwav +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmprad_atmwav +Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1079,14 +1079,14 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 798.266029 + 0: The total amount of wall time = 826.633003 -Test 018 fv3_ccpp_gfdlmprad_atmwav PASS +Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c768 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_nemsio_c768 +Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 673.063059 + 0: The total amount of wall time = 706.467872 -Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS +Test 019 fv3_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_multigases_repro +Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1208,14 +1208,14 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 85.409100 + 0: The total amount of wall time = 107.230897 -Test 020 fv3_ccpp_multigases PASS +Test 020 fv3_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_control_32bit_prod -Checking test 021 fv3_ccpp_control_32bit results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_control_32bit +Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1279,14 +1279,14 @@ Checking test 021 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.169483 + 0: The total amount of wall time = 47.582102 -Test 021 fv3_ccpp_control_32bit PASS +Test 021 fv3_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_stretched_prod -Checking test 022 fv3_ccpp_stretched results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_stretched +Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1338,14 +1338,14 @@ Checking test 022 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.704896 + 0: The total amount of wall time = 217.262541 -Test 022 fv3_ccpp_stretched PASS +Test 022 fv3_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_stretched_nest_prod -Checking test 023 fv3_ccpp_stretched_nest results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_stretched_nest +Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1408,40 +1408,40 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK - 0: The total amount of wall time = 240.960080 + 0: The total amount of wall time = 243.162287 -Test 023 fv3_ccpp_stretched_nest PASS +Test 023 fv3_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_control_prod -Checking test 024 fv3_ccpp_regional_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_control +Checking test 024 fv3_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 - 0: The total amount of wall time = 535.673257 + 0: The total amount of wall time = 536.273022 -Test 024 fv3_ccpp_regional_control PASS +Test 024 fv3_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_restart_prod -Checking test 025 fv3_ccpp_regional_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_restart +Checking test 025 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 298.239390 + 0: The total amount of wall time = 301.035378 -Test 025 fv3_ccpp_regional_restart PASS +Test 025 fv3_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_quilt_prod -Checking test 026 fv3_ccpp_regional_quilt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_quilt +Checking test 026 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1451,14 +1451,14 @@ Checking test 026 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 591.477761 + 0: The total amount of wall time = 576.311724 -Test 026 fv3_ccpp_regional_quilt PASS +Test 026 fv3_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_quilt_hafs_prod -Checking test 027 fv3_ccpp_regional_quilt_hafs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_quilt_hafs +Checking test 027 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1466,28 +1466,28 @@ Checking test 027 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 580.465772 + 0: The total amount of wall time = 580.253857 -Test 027 fv3_ccpp_regional_quilt_hafs PASS +Test 027 fv3_regional_quilt_hafs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 028 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_quilt_netcdf_parallel +Checking test 028 fv3_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 - 0: The total amount of wall time = 584.521443 + 0: The total amount of wall time = 577.972230 -Test 028 fv3_ccpp_regional_quilt_netcdf_parallel PASS +Test 028 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmp_prod -Checking test 029 fv3_ccpp_gfdlmp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmp +Checking test 029 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1531,14 +1531,14 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 47.435399 + 0: The total amount of wall time = 49.088020 -Test 029 fv3_ccpp_gfdlmp PASS +Test 029 fv3_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmprad_gwd +Checking test 030 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1582,14 +1582,14 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 48.252765 + 0: The total amount of wall time = 49.180437 -Test 030 fv3_ccpp_gfdlmprad_gwd PASS +Test 030 fv3_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmprad_noahmp +Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1633,14 +1633,14 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 56.766459 + 0: The total amount of wall time = 52.319969 -Test 031 fv3_ccpp_gfdlmprad_noahmp PASS +Test 031 fv3_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_csawmg_prod -Checking test 032 fv3_ccpp_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_csawmg +Checking test 032 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1684,14 +1684,14 @@ Checking test 032 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 115.579388 + 0: The total amount of wall time = 109.398812 -Test 032 fv3_ccpp_csawmg PASS +Test 032 fv3_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_satmedmf_prod -Checking test 033 fv3_ccpp_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_satmedmf +Checking test 033 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1735,14 +1735,14 @@ Checking test 033 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 53.209134 + 0: The total amount of wall time = 53.796980 -Test 033 fv3_ccpp_satmedmf PASS +Test 033 fv3_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_satmedmfq_prod -Checking test 034 fv3_ccpp_satmedmfq results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_satmedmfq +Checking test 034 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1786,14 +1786,14 @@ Checking test 034 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 53.012331 + 0: The total amount of wall time = 49.514721 -Test 034 fv3_ccpp_satmedmfq PASS +Test 034 fv3_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmp_32bit_prod -Checking test 035 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmp_32bit +Checking test 035 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1837,14 +1837,14 @@ Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 46.385652 + 0: The total amount of wall time = 49.923095 -Test 035 fv3_ccpp_gfdlmp_32bit PASS +Test 035 fv3_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmprad_32bit_post +Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1892,14 +1892,14 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 77.148335 + 0: The total amount of wall time = 72.847140 -Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 036 fv3_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_cpt_prod -Checking test 037 fv3_ccpp_cpt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_cpt +Checking test 037 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1949,14 +1949,14 @@ Checking test 037 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 266.666866 + 0: The total amount of wall time = 258.808684 -Test 037 fv3_ccpp_cpt PASS +Test 037 fv3_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gsd_prod -Checking test 038 fv3_ccpp_gsd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gsd +Checking test 038 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2044,14 +2044,14 @@ Checking test 038 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 187.188712 + 0: The total amount of wall time = 181.978842 -Test 038 fv3_ccpp_gsd PASS +Test 038 fv3_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_rap_prod -Checking test 039 fv3_ccpp_rap results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rap +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_rap +Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2115,14 +2115,14 @@ Checking test 039 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.997649 + 0: The total amount of wall time = 99.758309 -Test 039 fv3_ccpp_rap PASS +Test 039 fv3_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_hrrr_prod -Checking test 040 fv3_ccpp_hrrr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_hrrr +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_hrrr +Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2186,14 +2186,14 @@ Checking test 040 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 104.337900 + 0: The total amount of wall time = 108.362225 -Test 040 fv3_ccpp_hrrr PASS +Test 040 fv3_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_thompson_prod -Checking test 041 fv3_ccpp_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_thompson +Checking test 041 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2257,14 +2257,14 @@ Checking test 041 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 95.628960 + 0: The total amount of wall time = 96.981672 -Test 041 fv3_ccpp_thompson PASS +Test 041 fv3_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_thompson_no_aero_prod -Checking test 042 fv3_ccpp_thompson_no_aero results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_thompson_no_aero +Checking test 042 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2328,14 +2328,14 @@ Checking test 042 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 89.094245 + 0: The total amount of wall time = 89.632598 -Test 042 fv3_ccpp_thompson_no_aero PASS +Test 042 fv3_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_rrfs_v1beta_prod -Checking test 043 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_rrfs_v1beta +Checking test 043 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2399,14 +2399,14 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 105.609223 + 0: The total amount of wall time = 111.207011 -Test 043 fv3_ccpp_rrfs_v1beta PASS +Test 043 fv3_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v15p2_prod -Checking test 044 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v15p2 +Checking test 044 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2470,14 +2470,14 @@ Checking test 044 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 99.985320 + 0: The total amount of wall time = 100.258678 -Test 044 fv3_ccpp_gfs_v15p2 PASS +Test 044 fv3_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_prod -Checking test 045 fv3_ccpp_gfs_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16 +Checking test 045 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2553,14 +2553,14 @@ Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 113.638839 + 0: The total amount of wall time = 117.674490 -Test 045 fv3_ccpp_gfs_v16 PASS +Test 045 fv3_gfs_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_restart_prod -Checking test 046 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_restart +Checking test 046 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2606,14 +2606,14 @@ Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 62.982109 + 0: The total amount of wall time = 61.382059 -Test 046 fv3_ccpp_gfs_v16_restart PASS +Test 046 fv3_gfs_v16_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_stochy_prod -Checking test 047 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_stochy +Checking test 047 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2677,14 +2677,14 @@ Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 53.746916 + 0: The total amount of wall time = 56.009358 -Test 047 fv3_ccpp_gfs_v16_stochy PASS +Test 047 fv3_gfs_v16_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v15p2_RRTMGP +Checking test 048 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2748,14 +2748,14 @@ Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 162.150450 + 0: The total amount of wall time = 165.693850 -Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 048 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_RRTMGP +Checking test 049 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2819,14 +2819,14 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 163.253696 + 0: The total amount of wall time = 172.052786 -Test 049 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 049 fv3_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_RRTMGP_c192L127 +Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 626.222349 + 0: The total amount of wall time = 629.327169 -Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +Test 050 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod -Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_RRTMGP_2thrd +Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2955,14 +2955,14 @@ Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 190.698181 + 0: The total amount of wall time = 177.248846 -Test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS +Test 051 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_csawmg_prod -Checking test 052 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmg +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfsv16_csawmg +Checking test 052 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3006,14 +3006,14 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 126.215471 + 0: The total amount of wall time = 128.621910 -Test 052 fv3_ccpp_gfsv16_csawmg PASS +Test 052 fv3_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmgt +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfsv16_csawmgt +Checking test 053 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3057,14 +3057,14 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 124.487777 + 0: The total amount of wall time = 126.372323 -Test 053 fv3_ccpp_gfsv16_csawmgt PASS +Test 053 fv3_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gocart_clm_prod -Checking test 054 fv3_ccpp_gocart_clm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gocart_clm +Checking test 054 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3108,14 +3108,14 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 59.289760 + 0: The total amount of wall time = 61.167507 -Test 054 fv3_ccpp_gocart_clm PASS +Test 054 fv3_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_flake_prod -Checking test 055 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_flake +Checking test 055 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3179,14 +3179,14 @@ Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 104.836787 + 0: The total amount of wall time = 113.282933 -Test 055 fv3_ccpp_gfs_v16_flake PASS +Test 055 fv3_gfs_v16_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_HAFS_v0_hwrf_thompson +Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3250,14 +3250,14 @@ Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 147.882367 + 0: The total amount of wall time = 151.985419 -Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 056 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -3271,14 +3271,14 @@ Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 289.858017 + 0: The total amount of wall time = 292.902368 -Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 057 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfsv16_ugwpv1 +Checking test 058 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3336,14 +3336,14 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 170.089998 + 0: The total amount of wall time = 181.379209 -Test 058 fv3_ccpp_gfsv16_ugwpv1 PASS +Test 058 fv3_gfsv16_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfsv16_ugwpv1_warmstart +Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3401,14 +3401,85 @@ Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 172.388475 + 0: The total amount of wall time = 177.143703 + +Test 059 fv3_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_ras +Checking test 060 fv3_gfs_v16_ras 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 + + 0: The total amount of wall time = 103.104727 -Test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 060 fv3_gfs_v16_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v15p2_debug +Checking test 061 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3472,14 +3543,14 @@ Checking test 060 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 251.703488 + 0: The total amount of wall time = 242.582630 -Test 060 fv3_ccpp_gfs_v15p2_debug PASS +Test 061 fv3_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_debug_prod -Checking test 061 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_debug +Checking test 062 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3543,14 +3614,14 @@ Checking test 061 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.430133 + 0: The total amount of wall time = 185.523880 -Test 061 fv3_ccpp_gfs_v16_debug PASS +Test 062 fv3_gfs_v16_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v15p2_RRTMGP_debug +Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3614,14 +3685,14 @@ Checking test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 373.969692 + 0: The total amount of wall time = 371.331039 -Test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 063 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 063 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_RRTMGP_debug +Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3685,28 +3756,28 @@ Checking test 063 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 382.031132 + 0: The total amount of wall time = 384.243546 -Test 063 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 064 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_control_debug_prod -Checking test 064 fv3_ccpp_regional_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_control_debug +Checking test 065 fv3_regional_control_debug 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 - 0: The total amount of wall time = 367.720884 + 0: The total amount of wall time = 368.364244 -Test 064 fv3_ccpp_regional_control_debug PASS +Test 065 fv3_regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_control_debug_prod -Checking test 065 fv3_ccpp_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_control_debug +Checking test 066 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3732,14 +3803,14 @@ Checking test 065 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 149.916615 + 0: The total amount of wall time = 155.221480 -Test 065 fv3_ccpp_control_debug PASS +Test 066 fv3_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_stretched_nest_debug_prod -Checking test 066 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_stretched_nest_debug +Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3755,14 +3826,14 @@ Checking test 066 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 371.255363 + 0: The total amount of wall time = 375.623118 -Test 066 fv3_ccpp_stretched_nest_debug PASS +Test 067 fv3_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gsd_debug_prod -Checking test 067 fv3_ccpp_gsd_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gsd_debug +Checking test 068 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3826,14 +3897,14 @@ Checking test 067 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 221.754395 + 0: The total amount of wall time = 215.241294 -Test 067 fv3_ccpp_gsd_debug PASS +Test 068 fv3_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 068 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gsd_diag3d_debug +Checking test 069 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3897,14 +3968,14 @@ Checking test 068 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 296.344801 + 0: The total amount of wall time = 295.256237 -Test 068 fv3_ccpp_gsd_diag3d_debug PASS +Test 069 fv3_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_thompson_debug_prod -Checking test 069 fv3_ccpp_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_thompson_debug +Checking test 070 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3968,14 +4039,14 @@ Checking test 069 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 349.154207 + 0: The total amount of wall time = 353.634309 -Test 069 fv3_ccpp_thompson_debug PASS +Test 070 fv3_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 070 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_thompson_no_aero_debug +Checking test 071 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4039,14 +4110,14 @@ Checking test 070 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 369.681577 + 0: The total amount of wall time = 333.756109 -Test 070 fv3_ccpp_thompson_no_aero_debug PASS +Test 071 fv3_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 071 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_rrfs_v1beta_debug +Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4110,14 +4181,14 @@ Checking test 071 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 207.134888 + 0: The total amount of wall time = 209.763849 -Test 071 fv3_ccpp_rrfs_v1beta_debug PASS +Test 072 fv3_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4181,14 +4252,14 @@ Checking test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 216.447621 + 0: The total amount of wall time = 263.676892 -Test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -4202,14 +4273,14 @@ Checking test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 417.919395 + 0: The total amount of wall time = 410.622427 -Test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 074 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfsv16_ugwpv1_debug +Checking test 075 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -4267,14 +4338,85 @@ Checking test 074 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 567.689142 + 0: The total amount of wall time = 577.490209 + +Test 075 fv3_gfsv16_ugwpv1_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_ras_debug +Checking test 076 fv3_gfs_v16_ras_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 + + 0: The total amount of wall time = 338.669822 -Test 074 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 076 fv3_gfs_v16_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_control_prod -Checking test 075 cpld_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_control +Checking test 077 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4323,14 +4465,14 @@ Checking test 075 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 99.768565 + 0: The total amount of wall time = 119.325516 -Test 075 cpld_control PASS +Test 077 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_prod -Checking test 076 cpld_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart +Checking test 078 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4379,14 +4521,14 @@ Checking test 076 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 75.123364 + 0: The total amount of wall time = 68.154787 -Test 076 cpld_restart PASS +Test 078 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_controlfrac_prod -Checking test 077 cpld_controlfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_controlfrac +Checking test 079 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4435,14 +4577,14 @@ Checking test 077 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 101.608224 + 0: The total amount of wall time = 117.598597 -Test 077 cpld_controlfrac PASS +Test 079 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restartfrac_prod -Checking test 078 cpld_restartfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restartfrac +Checking test 080 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4491,14 +4633,14 @@ Checking test 078 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 68.391162 + 0: The total amount of wall time = 78.913061 -Test 078 cpld_restartfrac PASS +Test 080 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_2threads_prod -Checking test 079 cpld_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_2threads +Checking test 081 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4547,14 +4689,14 @@ Checking test 079 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 133.696323 + 0: The total amount of wall time = 133.379763 -Test 079 cpld_2threads PASS +Test 081 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_decomp_prod -Checking test 080 cpld_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_decomp +Checking test 082 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4603,14 +4745,14 @@ Checking test 080 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 96.867347 + 0: The total amount of wall time = 104.163066 -Test 080 cpld_decomp PASS +Test 082 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_satmedmf_prod -Checking test 081 cpld_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_satmedmf +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_satmedmf +Checking test 083 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4659,14 +4801,14 @@ Checking test 081 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 96.332041 + 0: The total amount of wall time = 108.150363 -Test 081 cpld_satmedmf PASS +Test 083 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_ca_prod -Checking test 082 cpld_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_ca +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_ca +Checking test 084 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4715,14 +4857,14 @@ Checking test 082 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 97.729955 + 0: The total amount of wall time = 111.862948 -Test 082 cpld_ca PASS +Test 084 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_control_c192_prod -Checking test 083 cpld_control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_control_c192 +Checking test 085 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4771,14 +4913,14 @@ Checking test 083 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 383.916568 + 0: The total amount of wall time = 397.017496 -Test 083 cpld_control_c192 PASS +Test 085 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_c192_prod -Checking test 084 cpld_restart_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart_c192 +Checking test 086 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4827,14 +4969,14 @@ Checking test 084 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 275.426220 + 0: The total amount of wall time = 272.736278 -Test 084 cpld_restart_c192 PASS +Test 086 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_controlfrac_c192_prod -Checking test 085 cpld_controlfrac_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_controlfrac_c192 +Checking test 087 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4883,14 +5025,14 @@ Checking test 085 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 381.668018 + 0: The total amount of wall time = 400.553613 -Test 085 cpld_controlfrac_c192 PASS +Test 087 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restartfrac_c192_prod -Checking test 086 cpld_restartfrac_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restartfrac_c192 +Checking test 088 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4939,14 +5081,14 @@ Checking test 086 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 271.383950 + 0: The total amount of wall time = 278.647891 -Test 086 cpld_restartfrac_c192 PASS +Test 088 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_control_c384_prod -Checking test 087 cpld_control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_control_c384 +Checking test 089 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4998,14 +5140,14 @@ Checking test 087 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1306.790624 + 0: The total amount of wall time = 1336.147422 -Test 087 cpld_control_c384 PASS +Test 089 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_c384_prod -Checking test 088 cpld_restart_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart_c384 +Checking test 090 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5057,14 +5199,14 @@ Checking test 088 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 695.602527 + 0: The total amount of wall time = 713.934599 -Test 088 cpld_restart_c384 PASS +Test 090 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_controlfrac_c384_prod -Checking test 089 cpld_controlfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_controlfrac_c384 +Checking test 091 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5116,14 +5258,14 @@ Checking test 089 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1312.468145 + 0: The total amount of wall time = 1406.099769 -Test 089 cpld_controlfrac_c384 PASS +Test 091 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restartfrac_c384_prod -Checking test 090 cpld_restartfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restartfrac_c384 +Checking test 092 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5175,14 +5317,14 @@ Checking test 090 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 685.239220 + 0: The total amount of wall time = 706.690926 -Test 090 cpld_restartfrac_c384 PASS +Test 092 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmark_prod -Checking test 091 cpld_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmark +Checking test 093 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5234,14 +5376,14 @@ Checking test 091 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 842.253747 + 0: The total amount of wall time = 824.173979 -Test 091 cpld_bmark PASS +Test 093 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_bmark_prod -Checking test 092 cpld_restart_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart_bmark +Checking test 094 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5293,14 +5435,14 @@ Checking test 092 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 452.600613 + 0: The total amount of wall time = 457.215343 -Test 092 cpld_restart_bmark PASS +Test 094 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmarkfrac_prod -Checking test 093 cpld_bmarkfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmarkfrac +Checking test 095 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5352,14 +5494,14 @@ Checking test 093 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 831.423830 + 0: The total amount of wall time = 829.110986 -Test 093 cpld_bmarkfrac PASS +Test 095 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_bmarkfrac_prod -Checking test 094 cpld_restart_bmarkfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart_bmarkfrac +Checking test 096 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5411,14 +5553,14 @@ Checking test 094 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 442.128834 + 0: The total amount of wall time = 453.932339 -Test 094 cpld_restart_bmarkfrac PASS +Test 096 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmarkfrac_v16_prod -Checking test 095 cpld_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmarkfrac_v16 +Checking test 097 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5470,14 +5612,14 @@ Checking test 095 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 1349.080037 + 0: The total amount of wall time = 1344.124539 -Test 095 cpld_bmarkfrac_v16 PASS +Test 097 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_bmarkfrac_v16_prod -Checking test 096 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart_bmarkfrac_v16 +Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5529,14 +5671,14 @@ Checking test 096 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 716.142617 + 0: The total amount of wall time = 740.990276 -Test 096 cpld_restart_bmarkfrac_v16 PASS +Test 098 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmark_wave_prod -Checking test 097 cpld_bmark_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark_wave +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmark_wave +Checking test 099 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5591,14 +5733,14 @@ Checking test 097 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1402.828957 + 0: The total amount of wall time = 1432.098204 -Test 097 cpld_bmark_wave PASS +Test 099 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmarkfrac_wave_prod -Checking test 098 cpld_bmarkfrac_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmarkfrac_wave +Checking test 100 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5653,14 +5795,14 @@ Checking test 098 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1416.011810 + 0: The total amount of wall time = 1429.371386 -Test 098 cpld_bmarkfrac_wave PASS +Test 100 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmarkfrac_wave_v16_prod -Checking test 099 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmarkfrac_wave_v16 +Checking test 101 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5714,14 +5856,14 @@ Checking test 099 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 939.150736 + 0: The total amount of wall time = 951.222093 -Test 099 cpld_bmarkfrac_wave_v16 PASS +Test 101 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_control_wave_prod -Checking test 100 cpld_control_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_wave +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_control_wave +Checking test 102 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5773,14 +5915,14 @@ Checking test 100 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 790.442777 + 0: The total amount of wall time = 815.263136 -Test 100 cpld_control_wave PASS +Test 102 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_debug_prod -Checking test 101 cpld_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debug +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_debug +Checking test 103 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5829,14 +5971,14 @@ Checking test 101 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 321.112205 + 0: The total amount of wall time = 341.676165 -Test 101 cpld_debug PASS +Test 103 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_debugfrac_prod -Checking test 102 cpld_debugfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debugfrac +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_debugfrac +Checking test 104 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5885,74 +6027,74 @@ Checking test 102 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 322.169993 + 0: The total amount of wall time = 327.395689 -Test 102 cpld_debugfrac PASS +Test 104 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_control_cfsr -Checking test 103 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_control_cfsr +Checking test 105 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 - 0: The total amount of wall time = 99.728356 + 0: The total amount of wall time = 104.235935 -Test 103 datm_control_cfsr PASS +Test 105 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_restart_cfsr -Checking test 104 datm_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_restart_cfsr +Checking test 106 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 - 0: The total amount of wall time = 68.416477 + 0: The total amount of wall time = 71.592949 -Test 104 datm_restart_cfsr PASS +Test 106 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_control_gefs -Checking test 105 datm_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_gefs +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_control_gefs +Checking test 107 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 - 0: The total amount of wall time = 94.162639 + 0: The total amount of wall time = 97.500170 -Test 105 datm_control_gefs PASS +Test 107 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_bulk_cfsr -Checking test 106 datm_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_cfsr +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_bulk_cfsr +Checking test 108 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 - 0: The total amount of wall time = 99.111430 + 0: The total amount of wall time = 105.271493 -Test 106 datm_bulk_cfsr PASS +Test 108 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_bulk_gefs -Checking test 107 datm_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_gefs +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_bulk_gefs +Checking test 109 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 - 0: The total amount of wall time = 92.246859 + 0: The total amount of wall time = 92.326933 -Test 107 datm_bulk_gefs PASS +Test 109 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_mx025_cfsr -Checking test 108 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_cfsr +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_mx025_cfsr +Checking test 110 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5960,14 +6102,14 @@ Checking test 108 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 391.029178 + 0: The total amount of wall time = 387.359123 -Test 108 datm_mx025_cfsr PASS +Test 110 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_mx025_gefs -Checking test 109 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_gefs +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_mx025_gefs +Checking test 111 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5975,23 +6117,23 @@ Checking test 109 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 388.183296 + 0: The total amount of wall time = 409.867554 -Test 109 datm_mx025_gefs PASS +Test 111 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_debug_cfsr -Checking test 110 datm_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_debug_cfsr +working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_debug_cfsr +Checking test 112 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 - 0: The total amount of wall time = 281.109002 + 0: The total amount of wall time = 290.904811 -Test 110 datm_debug_cfsr PASS +Test 112 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 12 23:59:51 CST 2021 -Elapsed time: 02h:42m:49s. Have a nice day! +Fri Mar 19 14:13:34 CDT 2021 +Elapsed time: 01h:23m:02s. Have a nice day! diff --git a/tests/ci/ci.test b/tests/ci/ci.test index c1ebb3278b..bf8c8abd07 100644 --- a/tests/ci/ci.test +++ b/tests/ci/ci.test @@ -1,3 +1,3 @@ -fv3_ccpp_control +fv3_control thr mpi dcp rst bit dbg ci-test-weather diff --git a/tests/parm/input.mom6_ccpp.nml.IN b/tests/parm/input.mom6_ccpp.nml.IN index 870f4dfc5a..0fc5f52233 100644 --- a/tests/parm/input.mom6_ccpp.nml.IN +++ b/tests/parm/input.mom6_ccpp.nml.IN @@ -268,9 +268,6 @@ FSICS = 99999, / &nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, SKEBNORM=1, SKEB_NPASS=30, SKEB_VDOF=5, diff --git a/tests/rt.conf b/tests/rt.conf index a4e120fa44..c1669c361e 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -80,7 +80,7 @@ RUN | fv3_gfs_v15p2 RUN | fv3_gfs_v16 | | fv3 | RUN | fv3_gfs_v16_restart | | | fv3_gfs_v16 RUN | fv3_gfs_v16_stochy | | fv3 | -RUN | fv3_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | +RUN | fv3_gfs_v15p2_RRTMGP | - cheyenne.intel jet.intel | fv3 | RUN | fv3_gfs_v16_RRTMGP | | fv3 | RUN | fv3_gfs_v16_RRTMGP_c192L127 | | fv3 | RUN | fv3_gfs_v16_RRTMGP_2thrd | | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 90a0532faf..5a892accb0 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -415,9 +415,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-20210316/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210318/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210316} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210318} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210212} diff --git a/tests/utest b/tests/utest index 6dd1394290..4ba5c5bbfa 100755 --- a/tests/utest +++ b/tests/utest @@ -32,11 +32,11 @@ usage() { echo echo " Examples" echo - echo " 'utest -n fv3_ccpp_control' tests all for fv3_ccpp_control" - echo " 'utest -n fv3_ccpp_control -c rst' tests restart for fv3_ccpp_control" - echo " 'utest -n fv3_ccpp_gfdlmp -c mpi,thr' tests mpi and threading for fv3_ccpp_gfdlmp" - echo " 'utest -n fv3_ccpp_gfdlmp -c bit' tests bit for fv3_ccpp_gfdlmp" - echo " 'utest -n fv3_ccpp_satmedmf -c dcp,dbg,rst' tests decomposition, debug, restart for fv3_ccpp_satmedmf" + echo " 'utest -n fv3_control' tests all for fv3_control" + echo " 'utest -n fv3_control -c rst' tests restart for fv3_control" + echo " 'utest -n fv3_gfdlmp -c mpi,thr' tests mpi and threading for fv3_gfdlmp" + echo " 'utest -n fv3_gfdlmp -c bit' tests bit for fv3_gfdlmp" + echo " 'utest -n fv3_satmedmf -c dcp,dbg,rst' tests decomposition, debug, restart for fv3_satmedmf" echo #set -x } diff --git a/tests/utest.bld b/tests/utest.bld index 90814bc59e..a2852dbeb9 100644 --- a/tests/utest.bld +++ b/tests/utest.bld @@ -1,22 +1,22 @@ -fv3_ccpp_control | SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGauss_netcdf_esmf | SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGauss_netcdf | SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGlatlon_netcdf | SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGauss_nemsio | SUITES=FV3_GFS_2017 -fv3_ccpp_stochy | SUITES=FV3_GFS_2017 -fv3_ccpp_iau | SUITES=FV3_GFS_2017 -fv3_ccpp_ca | SUITES=FV3_GFS_2017 -fv3_ccpp_lheatstrg | SUITES=FV3_GFS_2017 -fv3_ccpp_gfdlmprad | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -fv3_ccpp_atmwav | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -fv3_ccpp_multigases | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -fv3_ccpp_gfdlmp | SUITES=FV3_GFS_2017_gfdlmp -fv3_ccpp_gfdlmprad_gwd | SUITES=FV3_GFS_2017_gfdlmp -fv3_ccpp_gfdlmprad_noahmp | SUITES=FV3_GFS_2017_gfdlmp_noahmp -fv3_ccpp_csawmg | SUITES=FV3_GFS_2017_csawmg -fv3_ccpp_satmedmf | SUITES=FV3_GFS_2017_satmedmf -fv3_ccpp_satmedmfq | SUITES=FV3_GFS_2017_satmedmfq -fv3_ccpp_gfsv16_csawmg | SUITES=FV3_GFS_v16_csawmg -fv3_ccpp_gfsv16_csawmgt | SUITES=FV3_GFS_v16_csawmg -fv3_ccpp_gocart_clm | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -fv3_ccpp_gfs_v16_flake | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +fv3_control | SUITES=FV3_GFS_2017 +fv3_wrtGauss_netcdf_esmf | SUITES=FV3_GFS_2017 +fv3_wrtGauss_netcdf | SUITES=FV3_GFS_2017 +fv3_wrtGlatlon_netcdf | SUITES=FV3_GFS_2017 +fv3_wrtGauss_nemsio | SUITES=FV3_GFS_2017 +fv3_stochy | SUITES=FV3_GFS_2017 +fv3_iau | SUITES=FV3_GFS_2017 +fv3_ca | SUITES=FV3_GFS_2017 +fv3_lheatstrg | SUITES=FV3_GFS_2017 +fv3_gfdlmprad | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y +fv3_gfdlmprad_atmwav | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y +fv3_multigases | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +fv3_gfdlmp | SUITES=FV3_GFS_2017_gfdlmp, FV3_GFS_2017_gfdlmp_noahmp +fv3_gfdlmprad_gwd | SUITES=FV3_GFS_2017_gfdlmp, FV3_GFS_2017_gfdlmp_noahmp +fv3_gfdlmprad_noahmp | SUITES=FV3_GFS_2017_gfdlmp, FV3_GFS_2017_gfdlmp_noahmp +fv3_csawmg | SUITES=FV3_GFS_2017_csawmg +fv3_satmedmf | SUITES=FV3_GFS_2017_satmedmf +fv3_satmedmfq | SUITES=FV3_GFS_2017_satmedmfq +fv3_gfsv16_csawmg | SUITES=FV3_GFS_v16_csawmg +fv3_gfsv16_csawmgt | SUITES=FV3_GFS_v16_csawmg +fv3_gocart_clm | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +fv3_gfs_v16_flake | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake From 37f0da7b82e32a15bf072eaa158399a6b0f2722c Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Wed, 24 Mar 2021 10:32:36 -0400 Subject: [PATCH 086/109] Add -DAPP= cmake option. Add timing info to rt logs. (#477) * Add -DAPP= cmake option * Add timestamps to all rt jobs * Add compile time logs * Remove fv3_msub.IN * Support xsede/stampede machine Co-authored-by: Rahul Mahajan Co-authored-by: MinsukJi-NOAA --- CMakeLists.txt | 222 ++-- README.md | 6 +- cmake/configure_apps.cmake | 55 + modulefiles/stampede.intel/fv3 | 55 +- tests/RegressionTests_cheyenne.gnu.log | 144 +-- tests/RegressionTests_cheyenne.intel.log | 453 ++++---- tests/RegressionTests_gaea.intel.log | 438 ++++---- tests/RegressionTests_hera.gnu.log | 144 +-- tests/RegressionTests_hera.intel.log | 474 +++++---- tests/RegressionTests_jet.intel.log | 292 ++--- tests/RegressionTests_orion.intel.log | 478 +++++---- tests/RegressionTests_stampede.intel.log | 252 +++++ tests/RegressionTests_wcoss_cray.log | 1003 +++++++++--------- tests/compile.sh | 33 +- tests/fv3_conf/compile_bsub.IN_wcoss_cray | 2 + tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 | 2 + tests/fv3_conf/compile_qsub.IN_cheyenne | 2 + tests/fv3_conf/compile_qsub.IN_wcoss2 | 2 + tests/fv3_conf/compile_slurm.IN_gaea | 2 + tests/fv3_conf/compile_slurm.IN_hera | 2 + tests/fv3_conf/compile_slurm.IN_jet | 2 + tests/fv3_conf/compile_slurm.IN_orion | 2 + tests/fv3_conf/fv3_bsub.IN_wcoss_cray | 4 +- tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 | 4 +- tests/fv3_conf/fv3_msub.IN | 31 - tests/fv3_conf/fv3_qsub.IN_cheyenne | 4 +- tests/fv3_conf/fv3_qsub.IN_wcoss2 | 4 +- tests/fv3_conf/fv3_slurm.IN_gaea | 6 +- tests/fv3_conf/fv3_slurm.IN_hera | 4 +- tests/fv3_conf/fv3_slurm.IN_jet | 4 +- tests/fv3_conf/fv3_slurm.IN_orion | 4 +- tests/fv3_conf/fv3_slurm.IN_stampede | 8 +- tests/rt.conf | 40 +- tests/rt.sh | 25 +- tests/rt_35d.conf | 10 +- tests/rt_ccpp_dev.conf | 14 +- tests/rt_gnu.conf | 20 +- tests/rt_utils.sh | 11 +- tests/run_compile.sh | 4 + tests/run_test.sh | 4 + tests/utest | 17 +- tests/utest.bld | 44 +- 42 files changed, 2416 insertions(+), 1911 deletions(-) create mode 100644 cmake/configure_apps.cmake create mode 100644 tests/RegressionTests_stampede.intel.log delete mode 100644 tests/fv3_conf/fv3_msub.IN diff --git a/CMakeLists.txt b/CMakeLists.txt index 203a5add81..735f5d8449 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,12 +27,26 @@ set(INLINE_POST OFF CACHE BOOL "Enable inline post") set(MULTI_GASES OFF CACHE BOOL "Enable MULTI_GASES") set(OPENMP ON CACHE BOOL "Enable OpenMP threading") set(PARALLEL_NETCDF OFF CACHE BOOL "Enable parallel NetCDF") -set(QUAD_PRECISION ON CACHE BOOL "Enable QUAD_PRECISION (for certain grid metric terms in dycore)") set(REPRO OFF CACHE BOOL "Enable REPRO mode") -set(WW3 OFF CACHE BOOL "Enable WW3") -set(S2S OFF CACHE BOOL "Enable S2S") set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") -set(DATM OFF CACHE BOOL "Enable Data Atmosphere") + +# Component Options +set(FMS OFF CACHE BOOL "Enable FMS") +set(FV3 OFF CACHE BOOL "Enable FV3") +set(MOM6 OFF CACHE BOOL "Enable MOM6") +set(CICE6 OFF CACHE BOOL "Enable CICE6") +set(WW3 OFF CACHE BOOL "Enable WW3") +set(STOCH_PHYS OFF CACHE BOOL "Enable Stochastic Physics") +set(NEMSdatm OFF CACHE BOOL "Enable NEMSdatm") +set(CMEPS OFF CACHE BOOL "Enable CMEPS") +set(CDEPS OFF CACHE BOOL "Enable CDEPS") + +# Valid applications and choices +list(APPEND VALID_APPS ATM ATMW S2S S2SW DATM DATM_NEMS) +set(APP NONE CACHE BOOL "Application Name") +if(NOT (APP IN_LIST VALID_APPS)) + message(FATAL_ERROR "${APP} is not a valid application.\nValid Applications are: ${VALID_APPS}") +endif() ############################################################################### ### Set CMAKE_BUILD_TYPE for DEBUG mode @@ -65,7 +79,6 @@ if(CMAKE_Platform) endif() message("") -message("32BIT ............ ${32BIT}") message("AVX2 ............. ${AVX2}") message("SIMDMULTIARCH ... ${SIMDMULTIARCH}") message("DEBUG ............ ${DEBUG}") @@ -74,11 +87,26 @@ message("INLINE_POST ...... ${INLINE_POST}") message("MULTI_GASES ...... ${MULTI_GASES}") message("OPENMP ........... ${OPENMP}") message("PARALLEL_NETCDF .. ${PARALLEL_NETCDF}") -message("QUAD_PRECISION ... ${QUAD_PRECISION}") message("REPRO ............ ${REPRO}") +message("") + +# Configure selected application specific components +include(cmake/configure_apps.cmake) + +# Components +message("") +message("FMS .............. ${FMS}") +message("FV3 .............. ${FV3}") +message("MOM6 ............. ${MOM6}") +message("CICE6 ............ ${CICE6}") message("WW3 .............. ${WW3}") -message("S2S .............. ${S2S}") -message("DATM ............. ${DATM}") +message("STOCH_PHYS ....... ${STOCH_PHYS}") +message("NEMSdatm ......... ${NEMSdatm}") +message("CDEPS ............ ${CDEPS}") +message("CMEPS ............ ${CMEPS}") + +# Options that applications reset +message("32BIT ............ ${32BIT}") message("") get_filename_component (C_COMPILER_NAME ${CMAKE_C_COMPILER} NAME) @@ -105,7 +133,7 @@ if(OPENMP) endif() find_package(NetCDF REQUIRED C Fortran) find_package(ESMF MODULE REQUIRED) -if(S2S) +if(CMEPS) find_package(PIO REQUIRED COMPONENTS C Fortran STATIC) endif() @@ -125,53 +153,40 @@ target_link_libraries(nemsio::nemsio INTERFACE w3emc::w3emc_d bacio::bacio_4) find_package(Python 3 REQUIRED COMPONENTS Interpreter) message("Found Python: ${Python_EXECUTABLE}") -############################################################################### -### Checks -############################################################################### -if(DATM AND NOT S2S) - message(FATAL_ERROR "DATM=ON and S2S=OFF are incompatible, ABORT!") -endif() - -if(S2S AND 32BIT) - message(FATAL_ERROR "S2S=ON and 32BIT=ON are incompatible, ABORT!") -endif() - ############################################################################### ### FMS ############################################################################### -set(GFS_PHYS ON CACHE BOOL "Enable GFS Physics") -if(NOT 32BIT) - set(64BIT ON CACHE BOOL "Enable 64-bit") - -endif() -if(NOT QUAD_PRECISION) - set(ENABLE_QUAD_PRECISION OFF CACHE BOOL "Enable Quad-precision") -endif() +if(FMS) + set(GFS_PHYS ON CACHE BOOL "Enable GFS Physics") + if(NOT 32BIT) + set(64BIT ON CACHE BOOL "Enable 64-bit") + endif() -add_subdirectory(FMS) + add_subdirectory(FMS) -if(32BIT) - add_library(fms ALIAS fms_r4) -else() - add_library(fms ALIAS fms_r8) -endif() + if(32BIT) + add_library(fms ALIAS fms_r4) + else() + add_library(fms ALIAS fms_r8) + endif() +endif(FMS) ############################################################################### ### stochastic_physics ############################################################################### +if(STOCH_PHYS) add_subdirectory(stochastic_physics) +endif() ############################################################################### -### FV3 or Data Atmosphere +### Atmosphere Components [FV3, MPAS?] ############################################################################### -if(DATM) - add_subdirectory(DATM) -else() +if(FV3) add_subdirectory(FV3) endif() ############################################################################### -### WW3 +### Wave components [WW3] ############################################################################### if(WW3) if(CMAKE_Platform) @@ -196,18 +211,39 @@ if(WW3) WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/WW3/model/esmf COMMAND ${CMAKE_BUILD_TOOL} WW3_PARCOMPN=4 WW3_COMP=${WW3_COMP} ww3_nemslibonly > ${CMAKE_CURRENT_BINARY_DIR}/ww3_make.log 2>&1) - set(WW3_LIBS ${CMAKE_CURRENT_SOURCE_DIR}/WW3/model/obj/libww3_multi_esmf.a) + set(WW3_LIBS ${CMAKE_CURRENT_SOURCE_DIR}/WW3/model/obj/libww3_multi_esmf.a) endif() ############################################################################### -### S2S Components [CMEPS, MOM6, CICE] +### Marine Components [MOM6, CICE6] ############################################################################### -if(S2S) - add_subdirectory(CMEPS-interface) +if(MOM6) add_subdirectory(MOM6-interface) +endif() + +if(CICE6) add_subdirectory(CICE-interface) endif() +############################################################################### +### Mediator Components [CMEPS] +############################################################################### +if(CMEPS) + add_subdirectory(CMEPS-interface) +endif() + +############################################################################### +### Data Components [NEMSdatm, CDEPS] +############################################################################### +if(NEMSdatm) + add_subdirectory(DATM) +endif() + +if(CDEPS) + message("ADD CDEPS-interface directory") +# add_subdirectory(CDEPS-interface) +endif() + ############################################################################### ### UFS Library [NEMS] ############################################################################### @@ -234,77 +270,97 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/NEMS/src/ESMFConvenienceMacros.h COPYONLY) add_library(ufs ${_nems_srcs}) +set_target_properties(ufs PROPERTIES Fortran_MODULE_DIRECTORY + ${CMAKE_CURRENT_BINARY_DIR}/mod) +target_include_directories(ufs PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/NEMS/src) +target_include_directories(ufs INTERFACE $ + $) -list(APPEND _ufs_defs_private ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR} - FRONT_FMS) -add_dependencies(ufs fms) +list(APPEND _ufs_defs_private ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR}) -if(DATM) - list(APPEND _ufs_defs_private FRONT_DATM=datm) - add_dependencies(ufs datatm) -else() - list(APPEND _ufs_defs_private FRONT_FV3=fv3gfs_cap_mod) - add_dependencies(ufs fv3atm) -endif() if(JEDI_DRIVER) list(APPEND _ufs_defs_private JEDI_DRIVER=ON) endif() -set_target_properties(ufs PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(ufs PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/NEMS/src) if(WW3) + add_dependencies(ufs ww3_nems) list(APPEND _ufs_defs_private FRONT_WW3=WMESMFMD) target_include_directories(ufs PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/WW3/model/mod) - add_dependencies(ufs ww3_nems) - target_link_libraries(ufs PUBLIC ${WW3_LIBS}) + list(APPEND _ufs_libs_public ${WW3_LIBS}) endif() -target_include_directories(ufs INTERFACE $ - $) +list(APPEND _ufs_libs_public esmf) -target_link_libraries(ufs PUBLIC esmf stochastic_physics) +if(STOCH_PHYS) + list(APPEND _ufs_libs_public stochastic_physics) +endif() -if(DATM) - target_link_libraries(ufs PUBLIC datatm) -else() - target_link_libraries(ufs PUBLIC fv3atm) +if(FMS) + add_dependencies(ufs fms) + list(APPEND _ufs_defs_private FRONT_FMS) +endif() + +if(NEMSdatm) + add_dependencies(ufs datatm) + list(APPEND _ufs_defs_private FRONT_DATM=datm) + list(APPEND _ufs_libs_public datatm) +endif() + +if(FV3) + add_dependencies(ufs fv3atm) + list(APPEND _ufs_defs_private FRONT_FV3=fv3gfs_cap_mod) + list(APPEND _ufs_libs_public fv3atm) endif() -if(S2S) - list(APPEND _ufs_defs_private FRONT_MOM6=mom_cap_mod - FRONT_CICE6=ice_comp_nuopc - CMEPS - FRONT_CMEPS=MED) - add_dependencies(ufs mom6 cice cmeps stochastic_physics) - target_link_libraries(ufs PUBLIC mom6 - cice - cmeps) +if(MOM6) + add_dependencies(ufs mom6) + list(APPEND _ufs_defs_private FRONT_MOM6=mom_cap_mod) + list(APPEND _ufs_libs_public mom6) +endif() + +if(CICE6) + add_dependencies(ufs cice) + list(APPEND _ufs_defs_private FRONT_CICE6=ice_comp_nuopc) + list(APPEND _ufs_libs_public cice) +endif() + +if(CMEPS) + add_dependencies(ufs cmeps) + list(APPEND _ufs_defs_private CMEPS FRONT_CMEPS=MED) + list(APPEND _ufs_libs_public cmeps) +endif() + +if(CDEPS) + message("Do CDEPS things here") endif() target_compile_definitions(ufs PRIVATE "${_ufs_defs_private}") +target_link_libraries(ufs PUBLIC "${_ufs_libs_public}") ############################################################################### ### UFS executable ############################################################################### add_executable(ufs_model NEMS/src/MAIN_NEMS.F90) +add_dependencies(ufs_model ufs) list(APPEND _ufs_model_defs_private ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR}) -set_target_properties(ufs_model PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) +set_target_properties(ufs_model PROPERTIES Fortran_MODULE_DIRECTORY + ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(ufs_model PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/NEMS/src) if(WW3) list(APPEND _ufs_model_defs_private FRONT_WW3=WMESMFMD) target_include_directories(ufs_model PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/WW3/model/mod) - add_dependencies(ufs_model ww3_nems) endif() target_compile_definitions(ufs_model PRIVATE "${_ufs_model_defs_private}") -if(DATM) +if(NEMSdatm) target_link_libraries(ufs_model PUBLIC ufs w3nco::w3nco_d) endif() + target_link_libraries(ufs_model PRIVATE ufs esmf NetCDF::NetCDF_Fortran) @@ -312,18 +368,16 @@ target_link_libraries(ufs_model PRIVATE ufs ############################################################################### ### Install ############################################################################### -install( - TARGETS ufs +install(TARGETS ufs + EXPORT ufs-config + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib) - EXPORT ufs-config - LIBRARY DESTINATION lib - ARCHIVE DESTINATION lib) +install(EXPORT ufs-config + DESTINATION lib/cmake) install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PREFIX}) -install(EXPORT ufs-config - DESTINATION lib/cmake -) ############################################################################### ### Done ############################################################################### diff --git a/README.md b/README.md index 20453c6eaa..53e324d71c 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,12 @@ The top level directory structure groups source code and input files as follow: E.g. use of `build.sh` to build the coupled model with `FV3_GFS_v15p2` as the CCPP suite. ``` -$> CMAKE_FLAGS="-DS2S=ON" CCPP_SUITES="FV3_GFS_v15p2" ./build.sh +$> CMAKE_FLAGS="-DAPP=S2S" CCPP_SUITES="FV3_GFS_v15p2" ./build.sh ``` +The build system is regularly tested with [Tier-1 and Tier-2 platforms]( +https://github.com/ufs-community/ufs-weather-model/wiki/Regression-Test-Policy-for-Weather-Model-Platforms-and-Compilers). +Configurations for other platforms that are available with UFS should be used with the understanding that they are not regularly +tested and users will have to adapt those to make it work. # Disclaimer diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake new file mode 100644 index 0000000000..a02c79e30a --- /dev/null +++ b/cmake/configure_apps.cmake @@ -0,0 +1,55 @@ +############################################################################### +### Doc +# This file turns ON (only ON, not OFF) a component in a valid application +# If a user wishes to add a new application, they should add an +# Application handle (APP_NAME) in the list of `VALID_APPS` in the +# top-level CMakeLists.txt +# Next, they can define an if-endif block with that APP_NAME and +# turn ON the components specific to this new application. +# Note, only the components required for the application should be turned ON. +# It is forbidden to turn OFF or change any other CMake option in this file. +############################################################################### + +############################################################################### +### Configure Application Components +############################################################################### +if(APP MATCHES "^(ATM|ATMW)$") + set(FMS ON CACHE BOOL "Enable FMS" FORCE) + set(FV3 ON CACHE BOOL "Enable FV3" FORCE) + set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) + if(APP MATCHES "ATMW") + set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) + message("Configuring UFS app in Atmosphere with Waves mode") + else() + message("Configuring UFS app in Atmosphere Only mode") + endif() +endif() + +if(APP MATCHES "^(DATM|DATM_NEMS)$") + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) + set(FMS ON CACHE BOOL "Enable FMS" FORCE) + set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) + set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) + if(APP MATCHES "DATM_NEMS") + set(NEMSdatm ON CACHE BOOL "Enable NEMS DataAtm" FORCE) + message("Configuring UFS app in (NEMS) Data Atmosphere mode") + elseif(APP MATCHES "DATM") + set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) + message("Configuring UFS app in (CDEPS) Data Atmosphere mode") + endif() +endif() + +if(APP MATCHES "^(S2S|S2SW)$") + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) + set(FMS ON CACHE BOOL "Enable FMS" FORCE) + set(FV3 ON CACHE BOOL "Enable FV3" FORCE) + set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) + set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) + set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) + if(APP MATCHES "S2SW") + set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) + message("Configuring UFS app in S2S with Waves mode") + else() + message("Configuring UFS app in S2S mode") + endif() +endif() diff --git a/modulefiles/stampede.intel/fv3 b/modulefiles/stampede.intel/fv3 index 76b7500cbc..b1ca38a351 100644 --- a/modulefiles/stampede.intel/fv3 +++ b/modulefiles/stampede.intel/fv3 @@ -12,38 +12,37 @@ module-whatis "loads NEMS FV3 prerequisites for Stampede/Intel" # handled by the module-setup.sh (or .csh) script. ## -## load programming environment -## this typically includes compiler, MPI and job scheduler +## NCEP libraries ## -module load intel/18.0.2 -module load impi/18.0.2 +module use /work/08048/hanglei/NCEP/install/hpc-stack/modulefiles/stack +module load hpc/1.1.0 +module load hpc-intel/18.0.2 +module load hpc-impi/18.0.2 module load python3/3.7.0 -## -## use pre-compiled ESMF and NCEP libraries for above compiler / MPI combination -## -# DH* todo - shared directory -module use -a /work/06146/tg854455/stampede2/ufs-stack-20200909/intel-18.0.2/impi-18.0.2/modules -# *DH - -module load libpng/1.6.35 -module load netcdf/4.7.4 -module load esmf/8.1.0bs27 - -module load bacio/2.4.0 +module load bacio/2.4.1 module load crtm/2.3.0 -module load g2/3.4.0 -module load g2tmpl/1.9.0 -module load ip/3.3.0 -module load nceppost/dceca26 -module load nemsio/2.5.1 -module load sp/2.3.0 -module load w3emc/2.7.0 -module load w3nco/2.4.0 - -module load gfsio/1.4.0 -module load sfcio/1.4.0 -module load sigio/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 + +module load gfsio/1.4.1 +module load sfcio/1.4.1 +module load sigio/2.3.2 + +module load jasper/2.0.25 +module load png/1.6.35 +module load zlib/1.2.11 + +module load hdf5/1.10.6 +module load netcdf/4.7.4 +module load pio/2.5.2 +module load esmf/8_1_0_beta_snapshot_27 ## ## load cmake diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 3bf1877863..427578d950 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,19 @@ -Thu Mar 18 13:19:36 MDT 2021 +Tue Mar 23 10:02:26 MDT 2021 Start Regression test +Compile 001 elapsed time 331 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp +Compile 002 elapsed time 330 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 003 elapsed time 372 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y +Compile 004 elapsed time 337 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 005 elapsed time 300 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 006 elapsed time 180 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y +Compile 007 elapsed time 370 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +Compile 008 elapsed time 184 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 009 elapsed time 454 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 010 elapsed time 376 seconds. APP=DATM_NEMS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfdlmp -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfdlmp +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -48,13 +58,13 @@ Checking test 001 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 72.427329 +The total amount of wall time = 73.822607 Test 001 fv3_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2 -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v15p2 +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v15p2 Checking test 002 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -119,13 +129,13 @@ Checking test 002 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 136.941182 +The total amount of wall time = 142.583647 Test 002 fv3_gfs_v15p2 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16 Checking test 003 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -202,13 +212,13 @@ Checking test 003 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 185.465164 +The total amount of wall time = 187.862691 Test 003 fv3_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_restart +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_restart Checking test 004 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -255,13 +265,13 @@ Checking test 004 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 95.241565 +The total amount of wall time = 96.737676 Test 004 fv3_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_stochy Checking test 005 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -326,13 +336,13 @@ Checking test 005 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 89.065852 +The total amount of wall time = 89.151107 Test 005 fv3_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_flake -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_flake +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_flake Checking test 006 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -397,13 +407,13 @@ Checking test 006 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 144.758066 +The total amount of wall time = 150.318528 Test 006 fv3_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v15p2_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v15p2_RRTMGP Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -468,13 +478,13 @@ Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 233.688023 +The total amount of wall time = 257.751810 Test 007 fv3_gfs_v15p2_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_RRTMGP Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -539,13 +549,13 @@ Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 262.519106 +The total amount of wall time = 264.075689 Test 008 fv3_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gsd -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gsd +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gsd Checking test 009 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -634,13 +644,13 @@ Checking test 009 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 352.206210 +The total amount of wall time = 354.707006 Test 009 fv3_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_thompson Checking test 010 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -705,13 +715,13 @@ Checking test 010 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 166.159439 +The total amount of wall time = 165.624665 Test 010 fv3_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_no_aero -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_thompson_no_aero +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_thompson_no_aero Checking test 011 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -776,13 +786,13 @@ Checking test 011 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 159.091610 +The total amount of wall time = 158.885758 Test 011 fv3_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_rrfs_v1beta +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -847,13 +857,13 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 181.064238 +The total amount of wall time = 181.237842 Test 012 fv3_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_HAFS_v0_hwrf_thompson Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -918,13 +928,13 @@ Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 243.144962 +The total amount of wall time = 259.165626 Test 013 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_esg_HAFS_v0_hwrf_thompson Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -939,13 +949,13 @@ Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 460.237050 +The total amount of wall time = 461.066887 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfsv16_ugwpv1 Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1004,13 +1014,13 @@ Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 298.148424 +The total amount of wall time = 306.507474 Test 015 fv3_gfsv16_ugwpv1 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfsv16_ugwpv1_warmstart Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1069,13 +1079,13 @@ Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 303.021790 +The total amount of wall time = 305.432456 Test 016 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_ras -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_ras +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_ras Checking test 017 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1140,13 +1150,13 @@ Checking test 017 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 167.885537 +The total amount of wall time = 167.196042 Test 017 fv3_gfs_v16_ras PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_control_debug Checking test 018 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1173,13 +1183,13 @@ Checking test 018 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 77.618175 +The total amount of wall time = 75.360078 Test 018 fv3_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_regional_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_regional_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_regional_control_debug Checking test 019 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1187,13 +1197,13 @@ Checking test 019 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 186.595065 +The total amount of wall time = 186.920286 Test 019 fv3_regional_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_rrfs_v1beta_debug Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1258,13 +1268,13 @@ Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 109.971979 +The total amount of wall time = 109.698301 Test 020 fv3_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gsd_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gsd_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gsd_debug Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,13 +1339,13 @@ Checking test 021 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 116.480241 +The total amount of wall time = 115.629137 Test 021 fv3_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_thompson_debug Checking test 022 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1400,13 +1410,13 @@ Checking test 022 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 186.048865 +The total amount of wall time = 184.849713 Test 022 fv3_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_no_aero_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_thompson_no_aero_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_thompson_no_aero_debug Checking test 023 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1471,13 +1481,13 @@ Checking test 023 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 177.982636 +The total amount of wall time = 178.640481 Test 023 fv3_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v15p2_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v15p2_debug Checking test 024 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1542,13 +1552,13 @@ Checking test 024 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 137.547670 +The total amount of wall time = 135.283433 Test 024 fv3_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_debug Checking test 025 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,13 +1623,13 @@ Checking test 025 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 96.621232 +The total amount of wall time = 98.621448 Test 025 fv3_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_RRTMGP_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v15p2_RRTMGP_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v15p2_RRTMGP_debug Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1684,13 +1694,13 @@ Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 198.750607 +The total amount of wall time = 198.764803 Test 026 fv3_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_RRTMGP_debug Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1765,13 @@ Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 205.621718 +The total amount of wall time = 205.615144 Test 027 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_multigases -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_multigases +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_multigases Checking test 028 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1832,13 +1842,13 @@ Checking test 028 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 174.473162 +The total amount of wall time = 176.982886 Test 028 fv3_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_HAFS_v0_hwrf_thompson_debug Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,13 +1913,13 @@ Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 112.451863 +The total amount of wall time = 113.203162 Test 029 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1924,13 +1934,13 @@ Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 216.026078 +The total amount of wall time = 216.377887 Test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfsv16_ugwpv1_debug Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1989,13 +1999,13 @@ Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 305.011925 +The total amount of wall time = 304.979048 Test 031 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_ras_debug Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2060,11 +2070,11 @@ Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 172.520721 +The total amount of wall time = 173.459798 Test 032 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 18 13:37:55 MDT 2021 -Elapsed time: 00h:18m:19s. Have a nice day! +Tue Mar 23 10:24:42 MDT 2021 +Elapsed time: 00h:22m:16s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index f4158365a7..63c6e1bf20 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,28 @@ -Thu Mar 18 13:19:41 MDT 2021 +Tue Mar 23 10:02:03 MDT 2021 Start Regression test +Compile 001 elapsed time 699 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 672 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 734 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 725 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 765 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 866 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 960 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 008 elapsed time 826 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 729 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 780 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 837 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 254 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 260 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 014 elapsed time 251 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 015 elapsed time 1015 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 016 elapsed time 1103 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 350 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 651 seconds. APP=DATM_NEMS +Compile 019 elapsed time 240 seconds. APP=DATM_NEMS DEBUG=Y baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +87,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.958572 +The total amount of wall time = 48.178755 Test 001 fv3_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_decomp +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +158,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.067631 +The total amount of wall time = 47.868721 Test 002 fv3_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_2threads +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +229,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 106.388280 +The total amount of wall time = 106.639135 Test 003 fv3_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_restart +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +282,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 22.917253 +The total amount of wall time = 23.548673 Test 004 fv3_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_read_inc +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -334,13 +353,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.473873 +The total amount of wall time = 47.049568 Test 005 fv3_read_inc PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGauss_netcdf_esmf +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,13 +404,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 122.527143 +The total amount of wall time = 123.631961 Test 006 fv3_wrtGauss_netcdf_esmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGauss_netcdf +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -436,13 +455,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.852420 +The total amount of wall time = 46.195175 Test 007 fv3_wrtGauss_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGauss_netcdf_parallel +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -452,7 +471,7 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -487,13 +506,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.080210 +The total amount of wall time = 47.101523 Test 008 fv3_wrtGauss_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGlatlon_netcdf +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -538,13 +557,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.236247 +The total amount of wall time = 46.112194 Test 009 fv3_wrtGlatlon_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGauss_nemsio +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -589,13 +608,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.047256 +The total amount of wall time = 46.426691 Test 010 fv3_wrtGauss_nemsio PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGauss_nemsio_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +659,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 123.070683 +The total amount of wall time = 123.357213 Test 011 fv3_wrtGauss_nemsio_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +730,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 54.625384 +The total amount of wall time = 56.835528 Test 012 fv3_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_ca +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +801,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 29.444011 +The total amount of wall time = 28.790625 Test 013 fv3_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_lndp +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +872,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.987457 +The total amount of wall time = 51.596543 Test 014 fv3_lndp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_iau +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +943,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 45.283016 +The total amount of wall time = 46.879389 Test 015 fv3_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_lheatstrg +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +994,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.276234 +The total amount of wall time = 45.983111 Test 016 fv3_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_multigases_repro +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1071,13 @@ Checking test 017 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 111.440695 +The total amount of wall time = 112.612255 Test 017 fv3_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_control_32bit +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,13 +1142,13 @@ Checking test 018 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 40.434938 +The total amount of wall time = 39.816619 Test 018 fv3_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_stretched +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1182,13 +1201,13 @@ Checking test 019 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 324.010684 +The total amount of wall time = 332.376233 Test 019 fv3_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_stretched_nest +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1252,13 +1271,13 @@ Checking test 020 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 352.560075 +The total amount of wall time = 352.138405 Test 020 fv3_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,25 +1285,25 @@ Checking test 021 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 714.905067 +The total amount of wall time = 721.330913 Test 021 fv3_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_restart +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_regional_restart Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 382.830994 +The total amount of wall time = 395.221716 Test 022 fv3_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_quilt +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1295,13 +1314,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 721.119525 +The total amount of wall time = 739.701537 Test 023 fv3_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_quilt_hafs +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1310,27 +1329,27 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 717.041861 +The total amount of wall time = 736.434029 Test 024 fv3_regional_quilt_hafs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_quilt_netcdf_parallel +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 717.890376 +The total amount of wall time = 739.713307 Test 025 fv3_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfdlmp +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,13 +1394,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.663537 +The total amount of wall time = 53.464722 Test 026 fv3_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfdlmprad_gwd +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1426,13 +1445,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.955815 +The total amount of wall time = 53.006336 Test 027 fv3_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfdlmprad_noahmp +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1477,13 +1496,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 53.663012 +The total amount of wall time = 54.069160 Test 028 fv3_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_csawmg +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,13 +1547,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 140.600685 +The total amount of wall time = 141.686452 Test 029 fv3_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_satmedmf +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,13 +1598,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.721545 +The total amount of wall time = 59.566593 Test 030 fv3_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_satmedmfq +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1630,13 +1649,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.607443 +The total amount of wall time = 59.229744 Test 031 fv3_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfdlmp_32bit +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,13 +1700,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 42.216585 +The total amount of wall time = 41.624572 Test 032 fv3_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfdlmprad_32bit_post +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1755,13 @@ Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 73.153192 +The total amount of wall time = 72.784409 Test 033 fv3_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_cpt +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,13 +1812,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 328.693268 +The total amount of wall time = 331.355609 Test 034 fv3_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gsd +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1907,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 198.976083 +The total amount of wall time = 202.125869 Test 035 fv3_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rap -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_rap +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_rap Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1978,13 @@ Checking test 036 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 101.175017 +The total amount of wall time = 101.714197 Test 036 fv3_rap PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_hrrr -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_hrrr +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_hrrr Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2049,13 @@ Checking test 037 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 106.708498 +The total amount of wall time = 106.224389 Test 037 fv3_hrrr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_thompson Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2101,13 +2120,13 @@ Checking test 038 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 94.770375 +The total amount of wall time = 96.969428 Test 038 fv3_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_thompson_no_aero +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_thompson_no_aero Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2172,13 +2191,13 @@ Checking test 039 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 91.204857 +The total amount of wall time = 90.728528 Test 039 fv3_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_rrfs_v1beta +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_rrfs_v1beta Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,13 +2262,13 @@ Checking test 040 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 107.160438 +The total amount of wall time = 107.279906 Test 040 fv3_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16 Checking test 041 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2326,13 +2345,13 @@ Checking test 041 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 129.958834 +The total amount of wall time = 130.505196 Test 041 fv3_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_restart +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_restart Checking test 042 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2379,13 +2398,13 @@ Checking test 042 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 67.685012 +The total amount of wall time = 68.582090 Test 042 fv3_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_stochy Checking test 043 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2450,13 +2469,13 @@ Checking test 043 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.220929 +The total amount of wall time = 62.889352 Test 043 fv3_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_RRTMGP Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2521,13 +2540,13 @@ Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 225.546934 +The total amount of wall time = 224.082495 Test 044 fv3_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_RRTMGP_c192L127 Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2586,13 +2605,13 @@ Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 831.881649 +The total amount of wall time = 928.334238 Test 045 fv3_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_RRTMGP_2thrd +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_RRTMGP_2thrd Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2657,13 +2676,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 464.680179 +The total amount of wall time = 477.074774 Test 046 fv3_gfs_v16_RRTMGP_2thrd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gocart_clm +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gocart_clm Checking test 047 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2708,13 +2727,13 @@ Checking test 047 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 58.082096 +The total amount of wall time = 55.320850 Test 047 fv3_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_flake +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_flake Checking test 048 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2779,13 +2798,13 @@ Checking test 048 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 117.009840 +The total amount of wall time = 116.427427 Test 048 fv3_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_HAFS_v0_hwrf_thompson Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2850,13 +2869,13 @@ Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 181.728184 +The total amount of wall time = 195.904103 Test 049 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_esg_HAFS_v0_hwrf_thompson Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2871,13 +2890,13 @@ Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 318.936857 +The total amount of wall time = 318.947790 Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfsv16_ugwpv1 Checking test 051 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2936,13 +2955,13 @@ Checking test 051 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 216.580824 +The total amount of wall time = 217.260557 Test 051 fv3_gfsv16_ugwpv1 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfsv16_ugwpv1_warmstart Checking test 052 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3001,13 +3020,13 @@ Checking test 052 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 215.713858 +The total amount of wall time = 215.968637 Test 052 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_ras +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_ras Checking test 053 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3072,13 +3091,13 @@ Checking test 053 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 115.663476 +The total amount of wall time = 115.543656 Test 053 fv3_gfs_v16_ras PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v15p2_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v15p2_debug Checking test 054 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3143,13 +3162,13 @@ Checking test 054 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 244.322214 +The total amount of wall time = 245.121956 Test 054 fv3_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_debug Checking test 055 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3214,13 +3233,13 @@ Checking test 055 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 190.266804 +The total amount of wall time = 190.269671 Test 055 fv3_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v15p2_RRTMGP_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v15p2_RRTMGP_debug Checking test 056 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3285,13 +3304,13 @@ Checking test 056 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 386.139272 +The total amount of wall time = 386.179513 Test 056 fv3_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_RRTMGP_debug Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3356,13 +3375,13 @@ Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 391.135094 +The total amount of wall time = 393.762440 Test 057 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_regional_control_debug Checking test 058 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3370,13 +3389,13 @@ Checking test 058 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 367.762370 +The total amount of wall time = 367.914286 Test 058 fv3_regional_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_control_debug Checking test 059 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3403,13 +3422,13 @@ Checking test 059 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 147.442953 +The total amount of wall time = 146.617398 Test 059 fv3_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_stretched_nest_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_stretched_nest_debug Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3426,13 +3445,13 @@ Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 433.260613 +The total amount of wall time = 433.869722 Test 060 fv3_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gsd_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gsd_debug Checking test 061 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3497,13 +3516,13 @@ Checking test 061 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 216.558308 +The total amount of wall time = 216.723020 Test 061 fv3_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gsd_diag3d_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gsd_diag3d_debug Checking test 062 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3568,13 +3587,13 @@ Checking test 062 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 262.674351 +The total amount of wall time = 265.472296 Test 062 fv3_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_thompson_debug Checking test 063 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3639,13 +3658,13 @@ Checking test 063 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 359.965520 +The total amount of wall time = 360.098930 Test 063 fv3_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_thompson_no_aero_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_thompson_no_aero_debug Checking test 064 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3710,13 +3729,13 @@ Checking test 064 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 347.570263 +The total amount of wall time = 347.542197 Test 064 fv3_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_rrfs_v1beta_debug Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3781,13 +3800,13 @@ Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 209.696788 +The total amount of wall time = 209.333728 Test 065 fv3_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_HAFS_v0_hwrf_thompson_debug Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3852,13 +3871,13 @@ Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 222.971545 +The total amount of wall time = 223.613218 Test 066 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3873,13 +3892,13 @@ Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 396.434516 +The total amount of wall time = 397.115334 Test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfsv16_ugwpv1_debug Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3938,13 +3957,13 @@ Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 602.823082 +The total amount of wall time = 604.069957 Test 068 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_ras_debug Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4009,13 +4028,13 @@ Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 342.964276 +The total amount of wall time = 342.678273 Test 069 fv3_gfs_v16_ras_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_control Checking test 070 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4065,13 +4084,13 @@ Checking test 070 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 99.168593 +The total amount of wall time = 99.211920 Test 070 cpld_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart Checking test 071 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4121,13 +4140,13 @@ Checking test 071 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 55.667218 +The total amount of wall time = 55.480542 Test 071 cpld_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_controlfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_controlfrac Checking test 072 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4177,13 +4196,13 @@ Checking test 072 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 95.002092 +The total amount of wall time = 98.419990 Test 072 cpld_controlfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restartfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restartfrac Checking test 073 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4233,13 +4252,13 @@ Checking test 073 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 54.074622 +The total amount of wall time = 54.817555 Test 073 cpld_restartfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_2threads +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_2threads Checking test 074 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4289,13 +4308,13 @@ Checking test 074 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 259.441104 +The total amount of wall time = 260.478892 Test 074 cpld_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_decomp +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_decomp Checking test 075 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4345,13 +4364,13 @@ Checking test 075 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 96.105468 +The total amount of wall time = 96.451004 Test 075 cpld_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_satmedmf -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_satmedmf +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_satmedmf Checking test 076 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4401,13 +4420,13 @@ Checking test 076 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 93.120103 +The total amount of wall time = 96.401051 Test 076 cpld_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_ca -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_ca +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_ca Checking test 077 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4457,13 +4476,13 @@ Checking test 077 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 96.397273 +The total amount of wall time = 97.547900 Test 077 cpld_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_control_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_control_c192 Checking test 078 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4513,13 +4532,13 @@ Checking test 078 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 401.073510 +The total amount of wall time = 411.206890 Test 078 cpld_control_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart_c192 Checking test 079 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4569,13 +4588,13 @@ Checking test 079 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 289.528245 +The total amount of wall time = 295.653758 Test 079 cpld_restart_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_controlfrac_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_controlfrac_c192 Checking test 080 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4625,13 +4644,13 @@ Checking test 080 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 410.274779 +The total amount of wall time = 408.293885 Test 080 cpld_controlfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restartfrac_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restartfrac_c192 Checking test 081 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4681,13 +4700,13 @@ Checking test 081 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 292.162685 +The total amount of wall time = 298.385402 Test 081 cpld_restartfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_control_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_control_c384 Checking test 082 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4740,13 +4759,13 @@ Checking test 082 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1575.556051 +The total amount of wall time = 1601.371689 Test 082 cpld_control_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart_c384 Checking test 083 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4799,13 +4818,13 @@ Checking test 083 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 842.742485 +The total amount of wall time = 841.967363 Test 083 cpld_restart_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_controlfrac_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_controlfrac_c384 Checking test 084 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4858,13 +4877,13 @@ Checking test 084 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1588.019550 +The total amount of wall time = 1592.004091 Test 084 cpld_controlfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restartfrac_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restartfrac_c384 Checking test 085 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4917,13 +4936,13 @@ Checking test 085 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 828.257714 +The total amount of wall time = 838.836412 Test 085 cpld_restartfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmark +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmark Checking test 086 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4976,13 +4995,13 @@ Checking test 086 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 911.514819 +The total amount of wall time = 910.340201 Test 086 cpld_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart_bmark +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart_bmark Checking test 087 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5035,13 +5054,13 @@ Checking test 087 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 493.418354 +The total amount of wall time = 482.987624 Test 087 cpld_restart_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmarkfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmarkfrac Checking test 088 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5094,13 +5113,13 @@ Checking test 088 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 915.905406 +The total amount of wall time = 905.071576 Test 088 cpld_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart_bmarkfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart_bmarkfrac Checking test 089 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5153,13 +5172,13 @@ Checking test 089 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 491.543561 +The total amount of wall time = 493.685792 Test 089 cpld_restart_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmarkfrac_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmarkfrac_v16 Checking test 090 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5212,13 +5231,13 @@ Checking test 090 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -The total amount of wall time = 1639.823971 +The total amount of wall time = 1631.797689 Test 090 cpld_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart_bmarkfrac_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart_bmarkfrac_v16 Checking test 091 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5271,13 +5290,13 @@ Checking test 091 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -The total amount of wall time = 867.579293 +The total amount of wall time = 876.604526 Test 091 cpld_restart_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark_wave -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmark_wave +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmark_wave Checking test 092 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5333,13 +5352,13 @@ Checking test 092 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 1525.613086 +The total amount of wall time = 1568.580930 Test 092 cpld_bmark_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmarkfrac_wave +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmarkfrac_wave Checking test 093 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5395,13 +5414,13 @@ Checking test 093 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 1582.184637 +The total amount of wall time = 1571.671695 Test 093 cpld_bmarkfrac_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmarkfrac_wave_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmarkfrac_wave_v16 Checking test 094 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5456,13 +5475,13 @@ Checking test 094 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 1046.151554 +The total amount of wall time = 1058.786853 Test 094 cpld_bmarkfrac_wave_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_wave -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_control_wave +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_control_wave Checking test 095 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5515,13 +5534,13 @@ Checking test 095 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 808.664644 +The total amount of wall time = 815.612195 Test 095 cpld_control_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_debug Checking test 096 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5571,13 +5590,13 @@ Checking test 096 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 306.754779 +The total amount of wall time = 306.791877 Test 096 cpld_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debugfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_debugfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_debugfrac Checking test 097 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5627,73 +5646,73 @@ Checking test 097 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 305.357800 +The total amount of wall time = 305.455981 Test 097 cpld_debugfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_control_cfsr Checking test 098 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 -The total amount of wall time = 102.539148 +The total amount of wall time = 102.438765 Test 098 datm_control_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_restart_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_restart_cfsr Checking test 099 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 -The total amount of wall time = 64.278362 +The total amount of wall time = 63.790987 Test 099 datm_restart_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_control_gefs Checking test 100 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 -The total amount of wall time = 96.288880 +The total amount of wall time = 95.432646 Test 100 datm_control_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_bulk_cfsr Checking test 101 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 -The total amount of wall time = 98.708313 +The total amount of wall time = 98.813916 Test 101 datm_bulk_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_bulk_gefs Checking test 102 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 -The total amount of wall time = 93.157359 +The total amount of wall time = 96.660125 Test 102 datm_bulk_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_mx025_cfsr Checking test 103 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5702,13 +5721,13 @@ Checking test 103 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 377.314568 +The total amount of wall time = 411.142194 Test 103 datm_mx025_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_mx025_gefs Checking test 104 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5717,23 +5736,23 @@ Checking test 104 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 390.675084 +The total amount of wall time = 391.332862 Test 104 datm_mx025_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_debug_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_debug_cfsr Checking test 105 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 -The total amount of wall time = 285.156024 +The total amount of wall time = 285.144005 Test 105 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 18 15:08:27 MDT 2021 -Elapsed time: 01h:48m:46s. Have a nice day! +Tue Mar 23 11:46:13 MDT 2021 +Elapsed time: 01h:44m:10s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 88b99b94a6..a0dea96443 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,27 @@ -Thu Mar 18 14:02:42 EDT 2021 +Mon Mar 22 19:31:45 EDT 2021 Start Regression test +Compile 001 elapsed time 659 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 666 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 665 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 665 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 668 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 709 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 761 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 008 elapsed time 709 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 708 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 699 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 698 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 214 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 249 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 014 elapsed time 250 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 015 elapsed time 695 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 016 elapsed time 260 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 525 seconds. APP=DATM_NEMS +Compile 018 elapsed time 213 seconds. APP=DATM_NEMS DEBUG=Y baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +86,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.173925 +The total amount of wall time = 53.225195 Test 001 fv3_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_decomp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +157,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 77.669375 +The total amount of wall time = 75.935929 Test 002 fv3_decomp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_2threads +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +228,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.378820 +The total amount of wall time = 57.173784 Test 003 fv3_2threads PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_restart +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +281,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.109880 +The total amount of wall time = 50.596998 Test 004 fv3_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_read_inc +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -334,13 +352,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 69.991447 +The total amount of wall time = 70.840529 Test 005 fv3_read_inc PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGauss_netcdf_esmf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,13 +403,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 118.327474 +The total amount of wall time = 102.378153 Test 006 fv3_wrtGauss_netcdf_esmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGauss_netcdf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -436,13 +454,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 65.565436 +The total amount of wall time = 40.642970 Test 007 fv3_wrtGauss_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,13 +505,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 118.454508 +The total amount of wall time = 59.474674 Test 008 fv3_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGlatlon_netcdf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -538,13 +556,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 40.285961 +The total amount of wall time = 43.503530 Test 009 fv3_wrtGlatlon_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGauss_nemsio +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -589,13 +607,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 69.056323 +The total amount of wall time = 40.957067 Test 010 fv3_wrtGauss_nemsio PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGauss_nemsio_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +658,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 148.154030 +The total amount of wall time = 132.992870 Test 011 fv3_wrtGauss_nemsio_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_stochy +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +729,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.992756 +The total amount of wall time = 52.544528 Test 012 fv3_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_ca +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +800,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 85.120918 +The total amount of wall time = 58.000807 Test 013 fv3_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_lndp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +871,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 55.435999 +The total amount of wall time = 47.989290 Test 014 fv3_lndp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_iau +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +942,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 69.747564 +The total amount of wall time = 46.163920 Test 015 fv3_iau PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_lheatstrg +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +993,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 39.620394 +The total amount of wall time = 43.945547 Test 016 fv3_lheatstrg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_multigases_repro +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1070,13 @@ Checking test 017 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 93.531560 +The total amount of wall time = 97.564858 Test 017 fv3_multigases PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_control_32bit +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,13 +1141,13 @@ Checking test 018 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 74.532582 +The total amount of wall time = 69.788288 Test 018 fv3_control_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_stretched +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1182,13 +1200,13 @@ Checking test 019 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 303.026302 +The total amount of wall time = 301.800169 Test 019 fv3_stretched PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_stretched_nest +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1252,13 +1270,13 @@ Checking test 020 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 333.078656 +The total amount of wall time = 367.462041 Test 020 fv3_stretched_nest PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,25 +1284,25 @@ Checking test 021 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 672.510765 +The total amount of wall time = 675.543808 Test 021 fv3_regional_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_restart +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_regional_restart Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 367.874886 +The total amount of wall time = 368.830369 Test 022 fv3_regional_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_quilt +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1295,13 +1313,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 693.509027 +The total amount of wall time = 693.040273 Test 023 fv3_regional_quilt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_quilt_hafs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1310,27 +1328,27 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 688.758619 +The total amount of wall time = 693.339867 Test 024 fv3_regional_quilt_hafs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_quilt_netcdf_parallel +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_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 ............ALT CHECK......OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK -The total amount of wall time = 692.256162 +The total amount of wall time = 696.050653 Test 025 fv3_regional_quilt_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfdlmp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,13 +1393,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.829686 +The total amount of wall time = 47.247639 Test 026 fv3_gfdlmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfdlmprad_gwd +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1426,13 +1444,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 46.787917 +The total amount of wall time = 73.433251 Test 027 fv3_gfdlmprad_gwd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfdlmprad_noahmp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1477,13 +1495,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 47.856230 +The total amount of wall time = 51.640234 Test 028 fv3_gfdlmprad_noahmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_csawmg +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,13 +1546,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 124.446355 +The total amount of wall time = 124.913956 Test 029 fv3_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_satmedmf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,13 +1597,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 81.529699 +The total amount of wall time = 55.783295 Test 030 fv3_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_satmedmfq +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1630,13 +1648,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.994321 +The total amount of wall time = 55.670851 Test 031 fv3_satmedmfq PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfdlmp_32bit +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,13 +1699,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 45.413532 +The total amount of wall time = 40.005785 Test 032 fv3_gfdlmp_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfdlmprad_32bit_post +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1754,13 @@ Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 109.161842 +The total amount of wall time = 84.731814 Test 033 fv3_gfdlmprad_32bit_post PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_cpt +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,13 +1811,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 295.095030 +The total amount of wall time = 318.400027 Test 034 fv3_cpt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gsd +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1906,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 196.933302 +The total amount of wall time = 195.270970 Test 035 fv3_gsd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rap -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_rap +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_rap Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1977,13 @@ Checking test 036 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 94.009529 +The total amount of wall time = 97.802874 Test 036 fv3_rap PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_hrrr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_hrrr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_hrrr Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2048,13 @@ Checking test 037 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 127.447812 +The total amount of wall time = 101.307182 Test 037 fv3_hrrr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_thompson +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_thompson Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2101,13 +2119,13 @@ Checking test 038 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 118.252587 +The total amount of wall time = 93.567935 Test 038 fv3_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_thompson_no_aero +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_thompson_no_aero Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2172,13 +2190,13 @@ Checking test 039 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 143.020293 +The total amount of wall time = 88.994027 Test 039 fv3_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_rrfs_v1beta +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_rrfs_v1beta Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,13 +2261,13 @@ Checking test 040 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 102.168042 +The total amount of wall time = 108.472896 Test 040 fv3_rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v15p2 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v15p2 Checking test 041 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2314,13 +2332,13 @@ Checking test 041 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 129.212450 +The total amount of wall time = 106.728293 Test 041 fv3_gfs_v15p2 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16 Checking test 042 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2397,13 +2415,13 @@ Checking test 042 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 116.339200 +The total amount of wall time = 121.076566 Test 042 fv3_gfs_v16 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_restart +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_restart Checking test 043 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2450,13 +2468,13 @@ Checking test 043 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 75.138607 +The total amount of wall time = 61.376138 Test 043 fv3_gfs_v16_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_stochy +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_stochy Checking test 044 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2521,13 +2539,13 @@ Checking test 044 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 82.378238 +The total amount of wall time = 55.983496 Test 044 fv3_gfs_v16_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v15p2_RRTMGP +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v15p2_RRTMGP Checking test 045 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2592,13 +2610,13 @@ Checking test 045 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 175.144328 +The total amount of wall time = 177.460026 Test 045 fv3_gfs_v15p2_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_RRTMGP Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2663,13 +2681,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 178.879686 +The total amount of wall time = 181.213570 Test 046 fv3_gfs_v16_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_RRTMGP_c192L127 Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2728,13 +2746,13 @@ Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 720.183361 +The total amount of wall time = 724.789646 Test 047 fv3_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_RRTMGP_2thrd +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_RRTMGP_2thrd Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2799,13 +2817,13 @@ Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 272.559145 +The total amount of wall time = 274.080356 Test 048 fv3_gfs_v16_RRTMGP_2thrd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmg -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfsv16_csawmg +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfsv16_csawmg Checking test 049 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2850,13 +2868,13 @@ Checking test 049 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 135.174201 +The total amount of wall time = 135.369583 Test 049 fv3_gfsv16_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmgt -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfsv16_csawmgt +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfsv16_csawmgt Checking test 050 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2901,13 +2919,13 @@ Checking test 050 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 130.489969 +The total amount of wall time = 132.882688 Test 050 fv3_gfsv16_csawmgt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gocart_clm +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gocart_clm Checking test 051 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2952,13 +2970,13 @@ Checking test 051 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.544351 +The total amount of wall time = 54.922876 Test 051 fv3_gocart_clm PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_flake +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_flake Checking test 052 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3023,13 +3041,13 @@ Checking test 052 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 110.543339 +The total amount of wall time = 109.303302 Test 052 fv3_gfs_v16_flake PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_HAFS_v0_hwrf_thompson +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_HAFS_v0_hwrf_thompson Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3094,13 +3112,13 @@ Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 161.699485 +The total amount of wall time = 167.057868 Test 053 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_esg_HAFS_v0_hwrf_thompson Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3115,13 +3133,13 @@ Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 297.153337 +The total amount of wall time = 327.903178 Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfsv16_ugwpv1 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfsv16_ugwpv1 Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3180,13 +3198,13 @@ Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 184.919745 +The total amount of wall time = 185.574296 Test 055 fv3_gfsv16_ugwpv1 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfsv16_ugwpv1_warmstart +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfsv16_ugwpv1_warmstart Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3245,13 +3263,13 @@ Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 196.396511 +The total amount of wall time = 186.731894 Test 056 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_ras +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_ras Checking test 057 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3316,13 +3334,13 @@ Checking test 057 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 100.193398 +The total amount of wall time = 100.736490 Test 057 fv3_gfs_v16_ras PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v15p2_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v15p2_debug Checking test 058 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3387,13 +3405,13 @@ Checking test 058 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 227.452795 +The total amount of wall time = 228.248607 Test 058 fv3_gfs_v15p2_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_debug Checking test 059 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3458,13 +3476,13 @@ Checking test 059 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 169.959918 +The total amount of wall time = 171.161098 Test 059 fv3_gfs_v16_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v15p2_RRTMGP_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v15p2_RRTMGP_debug Checking test 060 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3529,13 +3547,13 @@ Checking test 060 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 364.400285 +The total amount of wall time = 365.856875 Test 060 fv3_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_RRTMGP_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_RRTMGP_debug Checking test 061 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3600,13 +3618,13 @@ Checking test 061 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 373.305128 +The total amount of wall time = 374.839771 Test 061 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_control_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_regional_control_debug Checking test 062 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3614,13 +3632,13 @@ Checking test 062 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 366.383020 +The total amount of wall time = 370.805224 Test 062 fv3_regional_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_control_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_control_debug Checking test 063 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3647,13 +3665,13 @@ Checking test 063 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 128.722369 +The total amount of wall time = 131.307378 Test 063 fv3_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_stretched_nest_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_stretched_nest_debug Checking test 064 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3670,13 +3688,13 @@ Checking test 064 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 437.496081 +The total amount of wall time = 436.083582 Test 064 fv3_stretched_nest_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gsd_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gsd_debug Checking test 065 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3741,13 +3759,13 @@ Checking test 065 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 196.713598 +The total amount of wall time = 199.019429 Test 065 fv3_gsd_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gsd_diag3d_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gsd_diag3d_debug Checking test 066 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3812,13 +3830,13 @@ Checking test 066 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 217.697104 +The total amount of wall time = 224.513938 Test 066 fv3_gsd_diag3d_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_thompson_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_thompson_debug Checking test 067 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3883,13 +3901,13 @@ Checking test 067 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 340.529417 +The total amount of wall time = 342.983195 Test 067 fv3_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_thompson_no_aero_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_thompson_no_aero_debug Checking test 068 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3954,13 +3972,13 @@ Checking test 068 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 327.741274 +The total amount of wall time = 331.555462 Test 068 fv3_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_rrfs_v1beta_debug Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4025,13 +4043,13 @@ Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 189.380950 +The total amount of wall time = 194.231787 Test 069 fv3_rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_HAFS_v0_hwrf_thompson_debug Checking test 070 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4096,13 +4114,13 @@ Checking test 070 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 205.502659 +The total amount of wall time = 207.154542 Test 070 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4117,13 +4135,13 @@ Checking test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 375.463604 +The total amount of wall time = 377.946486 Test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfsv16_ugwpv1_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfsv16_ugwpv1_debug Checking test 072 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4182,13 +4200,13 @@ Checking test 072 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 583.120481 +The total amount of wall time = 579.751934 Test 072 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_ras_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_ras_debug Checking test 073 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4253,13 +4271,13 @@ Checking test 073 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 322.960453 +The total amount of wall time = 323.082325 Test 073 fv3_gfs_v16_ras_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_control Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4309,13 +4327,13 @@ Checking test 074 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 96.066367 +The total amount of wall time = 102.328696 Test 074 cpld_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restart +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restart Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4365,13 +4383,13 @@ Checking test 075 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 80.916076 +The total amount of wall time = 87.418611 Test 075 cpld_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_controlfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_controlfrac Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4421,13 +4439,13 @@ Checking test 076 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 103.398861 +The total amount of wall time = 102.481930 Test 076 cpld_controlfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restartfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restartfrac Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4477,13 +4495,13 @@ Checking test 077 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 74.393433 +The total amount of wall time = 48.798117 Test 077 cpld_restartfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_2threads +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_2threads Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4533,13 +4551,13 @@ Checking test 078 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 132.871286 +The total amount of wall time = 148.977014 Test 078 cpld_2threads PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_decomp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_decomp Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4589,13 +4607,13 @@ Checking test 079 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 91.193769 +The total amount of wall time = 121.811380 Test 079 cpld_decomp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_satmedmf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_satmedmf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_satmedmf Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4645,13 +4663,13 @@ Checking test 080 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 90.195777 +The total amount of wall time = 93.958109 Test 080 cpld_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_ca -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_ca +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_ca Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4701,13 +4719,13 @@ Checking test 081 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 109.883565 +The total amount of wall time = 90.407515 Test 081 cpld_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_control_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_control_c192 Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4757,13 +4775,13 @@ Checking test 082 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 411.594599 +The total amount of wall time = 412.336650 Test 082 cpld_control_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restart_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restart_c192 Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4813,13 +4831,13 @@ Checking test 083 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 287.980100 +The total amount of wall time = 279.332122 Test 083 cpld_restart_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_controlfrac_c192 Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4869,13 +4887,13 @@ Checking test 084 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 412.493013 +The total amount of wall time = 413.374264 Test 084 cpld_controlfrac_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restartfrac_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restartfrac_c192 Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4925,13 +4943,13 @@ Checking test 085 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 310.823757 +The total amount of wall time = 306.907812 Test 085 cpld_restartfrac_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_control_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_control_c384 Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4984,13 +5002,13 @@ Checking test 086 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1529.454292 +The total amount of wall time = 1552.205444 Test 086 cpld_control_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restart_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restart_c384 Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5043,13 +5061,13 @@ Checking test 087 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 776.811556 +The total amount of wall time = 777.917290 Test 087 cpld_restart_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_controlfrac_c384 Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5102,13 +5120,13 @@ Checking test 088 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1513.024381 +The total amount of wall time = 1515.256597 Test 088 cpld_controlfrac_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restartfrac_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restartfrac_c384 Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5161,13 +5179,13 @@ Checking test 089 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 775.324726 +The total amount of wall time = 781.289270 Test 089 cpld_restartfrac_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_bmark +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_bmark Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5220,13 +5238,13 @@ Checking test 090 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 891.937549 +The total amount of wall time = 958.000708 Test 090 cpld_bmark PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restart_bmark +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restart_bmark Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5279,13 +5297,13 @@ Checking test 091 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 456.077376 +The total amount of wall time = 453.419012 Test 091 cpld_restart_bmark PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_bmarkfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_bmarkfrac Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5338,13 +5356,13 @@ Checking test 092 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 877.482866 +The total amount of wall time = 942.282580 Test 092 cpld_bmarkfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restart_bmarkfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restart_bmarkfrac Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5397,13 +5415,13 @@ Checking test 093 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 458.318475 +The total amount of wall time = 453.040563 Test 093 cpld_restart_bmarkfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_debug Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5453,13 +5471,13 @@ Checking test 094 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 264.028391 +The total amount of wall time = 262.426117 Test 094 cpld_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debugfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_debugfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_debugfrac Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5509,73 +5527,73 @@ Checking test 095 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 270.464542 +The total amount of wall time = 262.383198 Test 095 cpld_debugfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 99.886181 +The total amount of wall time = 102.362921 Test 096 datm_control_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/datm_restart_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 62.137315 +The total amount of wall time = 59.056087 Test 097 datm_restart_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/datm_control_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 95.549332 +The total amount of wall time = 96.122095 Test 098 datm_control_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 95.883983 +The total amount of wall time = 100.572498 Test 099 datm_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/datm_bulk_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 98.449456 +The total amount of wall time = 104.806785 Test 100 datm_bulk_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/datm_mx025_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/datm_mx025_gefs Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5584,23 +5602,23 @@ Checking test 101 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 448.897550 +The total amount of wall time = 404.813727 Test 101 datm_mx025_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/datm_debug_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/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 -The total amount of wall time = 247.861378 +The total amount of wall time = 228.906112 Test 102 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 18 15:28:43 EDT 2021 -Elapsed time: 01h:26m:02s. Have a nice day! +Mon Mar 22 21:33:28 EDT 2021 +Elapsed time: 02h:01m:44s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 9136f2f100..fed59af2fa 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,19 @@ -Fri Mar 19 16:32:02 UTC 2021 +Mon Mar 22 23:32:14 UTC 2021 Start Regression test +Compile 001 elapsed time 208 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp +Compile 002 elapsed time 209 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 003 elapsed time 229 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y +Compile 004 elapsed time 207 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 005 elapsed time 132 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 006 elapsed time 105 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y +Compile 007 elapsed time 231 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +Compile 008 elapsed time 100 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 009 elapsed time 230 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 010 elapsed time 217 seconds. APP=DATM_NEMS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -48,13 +58,13 @@ Checking test 001 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 237.471537 + 0: The total amount of wall time = 230.266133 Test 001 fv3_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v15p2 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v15p2 Checking test 002 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -119,13 +129,13 @@ Checking test 002 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 675.469331 + 0: The total amount of wall time = 599.039738 Test 002 fv3_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16 Checking test 003 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -202,13 +212,13 @@ Checking test 003 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 644.481194 + 0: The total amount of wall time = 615.898198 Test 003 fv3_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_restart Checking test 004 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -255,13 +265,13 @@ Checking test 004 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 293.565687 + 0: The total amount of wall time = 291.894690 Test 004 fv3_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_stochy Checking test 005 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -326,13 +336,13 @@ Checking test 005 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 403.710703 + 0: The total amount of wall time = 358.763115 Test 005 fv3_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_flake Checking test 006 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -397,13 +407,13 @@ Checking test 006 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 674.892521 + 0: The total amount of wall time = 600.638267 Test 006 fv3_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v15p2_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v15p2_RRTMGP Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -468,13 +478,13 @@ Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 758.831205 + 0: The total amount of wall time = 676.389434 Test 007 fv3_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_RRTMGP Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -539,13 +549,13 @@ Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 764.434046 + 0: The total amount of wall time = 669.247663 Test 008 fv3_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gsd Checking test 009 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -634,13 +644,13 @@ Checking test 009 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 846.078479 + 0: The total amount of wall time = 812.596497 Test 009 fv3_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_thompson Checking test 010 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -705,13 +715,13 @@ Checking test 010 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 430.229886 + 0: The total amount of wall time = 401.362889 Test 010 fv3_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_thompson_no_aero Checking test 011 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -776,13 +786,13 @@ Checking test 011 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 387.260332 + 0: The total amount of wall time = 399.151230 Test 011 fv3_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -847,13 +857,13 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 443.446092 + 0: The total amount of wall time = 411.855119 Test 012 fv3_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_HAFS_v0_hwrf_thompson Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -918,13 +928,13 @@ Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 640.029604 + 0: The total amount of wall time = 624.576443 Test 013 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_esg_HAFS_v0_hwrf_thompson Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -939,13 +949,13 @@ Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 450.842489 + 0: The total amount of wall time = 458.898500 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfsv16_ugwpv1 Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1004,13 +1014,13 @@ Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 901.591014 + 0: The total amount of wall time = 915.054144 Test 015 fv3_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfsv16_ugwpv1_warmstart Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1069,13 +1079,13 @@ Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 917.105238 + 0: The total amount of wall time = 914.921473 Test 016 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_ras Checking test 017 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1140,13 +1150,13 @@ Checking test 017 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 574.592917 + 0: The total amount of wall time = 565.263089 Test 017 fv3_gfs_v16_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_control_debug Checking test 018 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1173,13 +1183,13 @@ Checking test 018 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 84.997363 + 0: The total amount of wall time = 81.813810 Test 018 fv3_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_regional_control_debug Checking test 019 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1187,13 +1197,13 @@ Checking test 019 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 172.290542 + 0: The total amount of wall time = 166.326174 Test 019 fv3_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_rrfs_v1beta_debug Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1258,13 +1268,13 @@ Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 118.870100 + 0: The total amount of wall time = 119.092666 Test 020 fv3_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gsd_debug Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,13 +1339,13 @@ Checking test 021 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 121.813272 + 0: The total amount of wall time = 122.752133 Test 021 fv3_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_thompson_debug Checking test 022 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1400,13 +1410,13 @@ Checking test 022 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.768902 + 0: The total amount of wall time = 201.099441 Test 022 fv3_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_thompson_no_aero_debug Checking test 023 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1471,13 +1481,13 @@ Checking test 023 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.773701 + 0: The total amount of wall time = 193.623075 Test 023 fv3_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v15p2_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v15p2_debug Checking test 024 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1542,13 +1552,13 @@ Checking test 024 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 296.726170 + 0: The total amount of wall time = 282.075516 Test 024 fv3_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_debug Checking test 025 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,13 +1623,13 @@ Checking test 025 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 127.074768 + 0: The total amount of wall time = 128.813953 Test 025 fv3_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v15p2_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v15p2_RRTMGP_debug Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1684,13 +1694,13 @@ Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 327.302773 + 0: The total amount of wall time = 326.063341 Test 026 fv3_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_RRTMGP_debug Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1765,13 @@ Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 354.534815 + 0: The total amount of wall time = 346.720349 Test 027 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_multigases -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_multigases +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_multigases Checking test 028 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1832,13 +1842,13 @@ Checking test 028 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 420.499654 + 0: The total amount of wall time = 437.284426 Test 028 fv3_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_HAFS_v0_hwrf_thompson_debug Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,13 +1913,13 @@ Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 132.677680 + 0: The total amount of wall time = 134.270458 Test 029 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1924,13 +1934,13 @@ Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 227.660754 + 0: The total amount of wall time = 227.874411 Test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfsv16_ugwpv1_debug Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1989,13 +1999,13 @@ Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 391.564759 + 0: The total amount of wall time = 393.520437 Test 031 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_ras_debug Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2060,11 +2070,11 @@ Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.969998 + 0: The total amount of wall time = 219.615543 Test 032 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 19 19:23:01 UTC 2021 -Elapsed time: 02h:50m:59s. Have a nice day! +Mon Mar 22 23:58:26 UTC 2021 +Elapsed time: 00h:26m:12s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 664939a3ff..d98bdacc82 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,29 @@ -Fri Mar 19 15:56:08 UTC 2021 +Mon Mar 22 23:46:54 UTC 2021 Start Regression test +Compile 001 elapsed time 824 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 966 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 794 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 538 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 575 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 006 elapsed time 516 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 699 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 588 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 009 elapsed time 573 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 515 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 505 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 533 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 169 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 217 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 015 elapsed time 290 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 016 elapsed time 560 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 608 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 236 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 019 elapsed time 402 seconds. APP=DATM_NEMS +Compile 020 elapsed time 148 seconds. APP=DATM_NEMS DEBUG=Y baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +88,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 39.366954 + 0: The total amount of wall time = 41.030328 Test 001 fv3_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +159,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 40.042910 + 0: The total amount of wall time = 40.788778 Test 002 fv3_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +230,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 41.787880 + 0: The total amount of wall time = 42.015029 Test 003 fv3_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +283,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 19.759936 + 0: The total amount of wall time = 19.138450 Test 004 fv3_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_read_inc +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -334,13 +354,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.350124 + 0: The total amount of wall time = 36.320009 Test 005 fv3_read_inc PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_netcdf_esmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,13 +405,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 109.973546 + 0: The total amount of wall time = 119.133302 Test 006 fv3_wrtGauss_netcdf_esmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_netcdf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -436,13 +456,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.412712 + 0: The total amount of wall time = 37.286086 Test 007 fv3_wrtGauss_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,13 +507,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 47.306747 + 0: The total amount of wall time = 51.159720 Test 008 fv3_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGlatlon_netcdf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -538,13 +558,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.743012 + 0: The total amount of wall time = 38.669334 Test 009 fv3_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_nemsio +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -589,13 +609,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.238317 + 0: The total amount of wall time = 37.356743 Test 010 fv3_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_nemsio_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +660,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.443016 + 0: The total amount of wall time = 96.705260 Test 011 fv3_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +731,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 41.237996 + 0: The total amount of wall time = 40.753609 Test 012 fv3_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +802,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 25.717263 + 0: The total amount of wall time = 26.700711 Test 013 fv3_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +873,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.449009 + 0: The total amount of wall time = 43.608968 Test 014 fv3_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_iau +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +944,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.585567 + 0: The total amount of wall time = 35.910157 Test 015 fv3_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_lheatstrg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +995,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.734224 + 0: The total amount of wall time = 36.034232 Test 016 fv3_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmprad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1027,13 +1047,13 @@ Checking test 017 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 648.749887 + 0: The total amount of wall time = 651.522086 Test 017 fv3_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_atmwav -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmprad_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,13 +1099,13 @@ Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 794.961885 + 0: The total amount of wall time = 795.771025 Test 018 fv3_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_nemsio_c768 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_nemsio_c768 Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,13 +1151,13 @@ Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 680.930308 + 0: The total amount of wall time = 686.696713 Test 019 fv3_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_multigases_repro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_multigases_repro Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1208,13 +1228,13 @@ Checking test 020 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 94.288968 + 0: The total amount of wall time = 94.409498 Test 020 fv3_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_control_32bit +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_control_32bit Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,13 +1299,13 @@ Checking test 021 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 35.895105 + 0: The total amount of wall time = 37.293494 Test 021 fv3_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_stretched +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_stretched Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,13 +1358,13 @@ Checking test 022 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.544988 + 0: The total amount of wall time = 224.619141 Test 022 fv3_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_stretched_nest +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_stretched_nest Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1408,13 +1428,13 @@ Checking test 023 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK - 0: The total amount of wall time = 241.675102 + 0: The total amount of wall time = 241.143728 Test 023 fv3_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_control Checking test 024 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1422,25 +1442,25 @@ Checking test 024 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 548.190531 + 0: The total amount of wall time = 545.888116 Test 024 fv3_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_restart Checking test 025 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 302.533953 + 0: The total amount of wall time = 302.592031 Test 025 fv3_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_quilt Checking test 026 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1451,13 +1471,13 @@ Checking test 026 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 573.061955 + 0: The total amount of wall time = 571.379197 Test 026 fv3_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_quilt_hafs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_quilt_hafs Checking test 027 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1466,13 +1486,13 @@ Checking test 027 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 572.216512 + 0: The total amount of wall time = 572.107104 Test 027 fv3_regional_quilt_hafs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_quilt_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_quilt_netcdf_parallel Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1480,13 +1500,13 @@ Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 576.056927 + 0: The total amount of wall time = 574.912938 Test 028 fv3_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmp Checking test 029 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1531,13 +1551,13 @@ Checking test 029 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.336905 + 0: The total amount of wall time = 42.405055 Test 029 fv3_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmprad_gwd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmprad_gwd Checking test 030 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1582,13 +1602,13 @@ Checking test 030 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.847183 + 0: The total amount of wall time = 42.194658 Test 030 fv3_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmprad_noahmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmprad_noahmp Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1633,13 +1653,13 @@ Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 43.159585 + 0: The total amount of wall time = 42.634125 Test 031 fv3_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_csawmg Checking test 032 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1684,13 +1704,13 @@ Checking test 032 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 107.230208 + 0: The total amount of wall time = 107.844218 Test 032 fv3_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_satmedmf Checking test 033 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1735,13 +1755,13 @@ Checking test 033 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 47.557898 + 0: The total amount of wall time = 45.213413 Test 033 fv3_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_satmedmfq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_satmedmfq Checking test 034 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1786,13 +1806,13 @@ Checking test 034 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.282295 + 0: The total amount of wall time = 45.173363 Test 034 fv3_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmp_32bit +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmp_32bit Checking test 035 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1837,13 +1857,13 @@ Checking test 035 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 36.633248 + 0: The total amount of wall time = 36.570245 Test 035 fv3_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmprad_32bit_post +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmprad_32bit_post Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1892,13 +1912,13 @@ Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 72.571621 + 0: The total amount of wall time = 74.817737 Test 036 fv3_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_cpt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_cpt Checking test 037 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1949,13 +1969,13 @@ Checking test 037 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 253.276627 + 0: The total amount of wall time = 253.319232 Test 037 fv3_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gsd Checking test 038 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2044,13 +2064,13 @@ Checking test 038 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.512813 + 0: The total amount of wall time = 177.564346 Test 038 fv3_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rap -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_rap +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_rap Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2115,13 +2135,13 @@ Checking test 039 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.803927 + 0: The total amount of wall time = 87.295678 Test 039 fv3_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_hrrr -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_hrrr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_hrrr Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2186,13 +2206,13 @@ Checking test 040 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.256129 + 0: The total amount of wall time = 96.088209 Test 040 fv3_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_thompson Checking test 041 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2257,13 +2277,13 @@ Checking test 041 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 84.610243 + 0: The total amount of wall time = 83.657385 Test 041 fv3_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_thompson_no_aero Checking test 042 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2328,13 +2348,13 @@ Checking test 042 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 80.016053 + 0: The total amount of wall time = 80.112242 Test 042 fv3_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_rrfs_v1beta Checking test 043 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2399,13 +2419,13 @@ Checking test 043 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 97.763308 + 0: The total amount of wall time = 97.405291 Test 043 fv3_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v15p2 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v15p2 Checking test 044 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2470,13 +2490,13 @@ Checking test 044 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 93.635316 + 0: The total amount of wall time = 92.950771 Test 044 fv3_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16 Checking test 045 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2553,13 +2573,13 @@ Checking test 045 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 102.081819 + 0: The total amount of wall time = 103.658244 Test 045 fv3_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_restart Checking test 046 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2606,13 +2626,13 @@ Checking test 046 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 54.023024 + 0: The total amount of wall time = 52.932842 Test 046 fv3_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_stochy Checking test 047 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2677,13 +2697,13 @@ Checking test 047 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 46.823884 + 0: The total amount of wall time = 47.955265 Test 047 fv3_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v15p2_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v15p2_RRTMGP Checking test 048 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2748,13 +2768,13 @@ Checking test 048 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 155.682140 + 0: The total amount of wall time = 155.768039 Test 048 fv3_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_RRTMGP Checking test 049 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2819,13 +2839,13 @@ Checking test 049 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 165.211830 + 0: The total amount of wall time = 160.084440 Test 049 fv3_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_RRTMGP_c192L127 Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2884,13 +2904,13 @@ Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 621.071081 + 0: The total amount of wall time = 624.134358 Test 050 fv3_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_RRTMGP_2thrd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_RRTMGP_2thrd Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2955,13 +2975,13 @@ Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 171.747147 + 0: The total amount of wall time = 174.236436 Test 051 fv3_gfs_v16_RRTMGP_2thrd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmg -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfsv16_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfsv16_csawmg Checking test 052 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3006,13 +3026,13 @@ Checking test 052 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 114.605300 + 0: The total amount of wall time = 114.815562 Test 052 fv3_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmgt -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfsv16_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfsv16_csawmgt Checking test 053 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3057,13 +3077,13 @@ Checking test 053 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 112.926929 + 0: The total amount of wall time = 112.729723 Test 053 fv3_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gocart_clm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gocart_clm Checking test 054 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3108,13 +3128,13 @@ Checking test 054 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 46.699732 + 0: The total amount of wall time = 48.822872 Test 054 fv3_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_flake Checking test 055 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3179,13 +3199,13 @@ Checking test 055 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 97.267533 + 0: The total amount of wall time = 98.159527 Test 055 fv3_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_HAFS_v0_hwrf_thompson Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3250,13 +3270,13 @@ Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 141.251279 + 0: The total amount of wall time = 141.808981 Test 056 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_esg_HAFS_v0_hwrf_thompson Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3271,13 +3291,13 @@ Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 279.445435 + 0: The total amount of wall time = 279.286937 Test 057 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfsv16_ugwpv1 Checking test 058 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3336,13 +3356,13 @@ Checking test 058 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 162.403031 + 0: The total amount of wall time = 163.097602 Test 058 fv3_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfsv16_ugwpv1_warmstart Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3401,13 +3421,13 @@ Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 164.604458 + 0: The total amount of wall time = 162.731251 Test 059 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_ras Checking test 060 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3472,13 +3492,13 @@ Checking test 060 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.473920 + 0: The total amount of wall time = 88.161439 Test 060 fv3_gfs_v16_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v15p2_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v15p2_debug Checking test 061 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3543,13 +3563,13 @@ Checking test 061 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 225.572325 + 0: The total amount of wall time = 227.007305 Test 061 fv3_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_debug Checking test 062 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3614,13 +3634,13 @@ Checking test 062 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.296381 + 0: The total amount of wall time = 172.622768 Test 062 fv3_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v15p2_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v15p2_RRTMGP_debug Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3685,13 +3705,13 @@ Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.706433 + 0: The total amount of wall time = 349.388826 Test 063 fv3_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_RRTMGP_debug Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3756,13 +3776,13 @@ Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 347.673806 + 0: The total amount of wall time = 352.212254 Test 064 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_control_debug Checking test 065 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3770,13 +3790,13 @@ Checking test 065 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 353.505385 + 0: The total amount of wall time = 347.942146 Test 065 fv3_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_control_debug Checking test 066 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3803,13 +3823,13 @@ Checking test 066 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 132.647365 + 0: The total amount of wall time = 130.840777 Test 066 fv3_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_stretched_nest_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_stretched_nest_debug Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3826,13 +3846,13 @@ Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 352.899196 + 0: The total amount of wall time = 351.036123 Test 067 fv3_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gsd_debug Checking test 068 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3897,13 +3917,13 @@ Checking test 068 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.568431 + 0: The total amount of wall time = 195.786741 Test 068 fv3_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gsd_diag3d_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gsd_diag3d_debug Checking test 069 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3968,13 +3988,13 @@ Checking test 069 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.595468 + 0: The total amount of wall time = 255.528227 Test 069 fv3_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_thompson_debug Checking test 070 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4039,13 +4059,13 @@ Checking test 070 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.573337 + 0: The total amount of wall time = 327.548315 Test 070 fv3_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_thompson_no_aero_debug Checking test 071 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4110,13 +4130,13 @@ Checking test 071 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 317.647750 + 0: The total amount of wall time = 322.229219 Test 071 fv3_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_rrfs_v1beta_debug Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4181,13 +4201,13 @@ Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.390696 + 0: The total amount of wall time = 191.080651 Test 072 fv3_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_HAFS_v0_hwrf_thompson_debug Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4252,13 +4272,13 @@ Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 203.404709 + 0: The total amount of wall time = 201.966598 Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4273,13 +4293,13 @@ Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 380.261543 + 0: The total amount of wall time = 387.174978 Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfsv16_ugwpv1_debug Checking test 075 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4338,13 +4358,13 @@ Checking test 075 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 542.538902 + 0: The total amount of wall time = 548.665426 Test 075 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_ras_debug Checking test 076 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4409,13 +4429,13 @@ Checking test 076 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 320.026427 + 0: The total amount of wall time = 308.110126 Test 076 fv3_gfs_v16_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_control Checking test 077 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4465,13 +4485,13 @@ Checking test 077 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 89.492388 + 0: The total amount of wall time = 91.160881 Test 077 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart Checking test 078 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4521,13 +4541,13 @@ Checking test 078 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 52.752001 + 0: The total amount of wall time = 53.505299 Test 078 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_controlfrac Checking test 079 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4577,13 +4597,13 @@ Checking test 079 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 89.156218 + 0: The total amount of wall time = 92.818979 Test 079 cpld_controlfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restartfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restartfrac Checking test 080 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4633,13 +4653,13 @@ Checking test 080 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 54.839990 + 0: The total amount of wall time = 54.188205 Test 080 cpld_restartfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_2threads Checking test 081 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4689,13 +4709,13 @@ Checking test 081 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 109.331295 + 0: The total amount of wall time = 109.846490 Test 081 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_decomp Checking test 082 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4745,13 +4765,13 @@ Checking test 082 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 86.886875 + 0: The total amount of wall time = 88.891960 Test 082 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_satmedmf -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_satmedmf Checking test 083 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4801,13 +4821,13 @@ Checking test 083 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 86.736219 + 0: The total amount of wall time = 88.584800 Test 083 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_ca -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_ca Checking test 084 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4857,13 +4877,13 @@ Checking test 084 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 86.330204 + 0: The total amount of wall time = 88.504438 Test 084 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_control_c192 Checking test 085 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4913,13 +4933,13 @@ Checking test 085 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 375.102929 + 0: The total amount of wall time = 377.874915 Test 085 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart_c192 Checking test 086 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4969,13 +4989,13 @@ Checking test 086 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 271.849544 + 0: The total amount of wall time = 265.979803 Test 086 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_controlfrac_c192 Checking test 087 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -5025,13 +5045,13 @@ Checking test 087 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 376.076936 + 0: The total amount of wall time = 374.411148 Test 087 cpld_controlfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restartfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restartfrac_c192 Checking test 088 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -5081,13 +5101,13 @@ Checking test 088 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 261.680954 + 0: The total amount of wall time = 261.415897 Test 088 cpld_restartfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_control_c384 Checking test 089 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5140,13 +5160,13 @@ Checking test 089 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1310.415571 + 0: The total amount of wall time = 1317.485100 Test 089 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart_c384 Checking test 090 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5199,13 +5219,13 @@ Checking test 090 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 699.923037 + 0: The total amount of wall time = 689.823982 Test 090 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_controlfrac_c384 Checking test 091 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5258,13 +5278,13 @@ Checking test 091 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1312.460118 + 0: The total amount of wall time = 1303.957096 Test 091 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restartfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restartfrac_c384 Checking test 092 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5317,13 +5337,13 @@ Checking test 092 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 694.840528 + 0: The total amount of wall time = 682.402036 Test 092 cpld_restartfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmark Checking test 093 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5376,13 +5396,13 @@ Checking test 093 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 797.868408 + 0: The total amount of wall time = 820.589829 Test 093 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart_bmark +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart_bmark Checking test 094 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5435,13 +5455,13 @@ Checking test 094 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 456.416099 + 0: The total amount of wall time = 441.981540 Test 094 cpld_restart_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmarkfrac Checking test 095 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5494,13 +5514,13 @@ Checking test 095 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 786.716243 + 0: The total amount of wall time = 809.816461 Test 095 cpld_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart_bmarkfrac Checking test 096 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5553,13 +5573,13 @@ Checking test 096 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 446.217410 + 0: The total amount of wall time = 441.646627 Test 096 cpld_restart_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmarkfrac_v16 Checking test 097 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5612,13 +5632,13 @@ Checking test 097 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 1306.615833 + 0: The total amount of wall time = 1315.649066 Test 097 cpld_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart_bmarkfrac_v16 Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5671,13 +5691,13 @@ Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 720.890251 + 0: The total amount of wall time = 716.016695 Test 098 cpld_restart_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark_wave -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmark_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmark_wave Checking test 099 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5733,13 +5753,13 @@ Checking test 099 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1342.795970 + 0: The total amount of wall time = 1382.696571 Test 099 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmarkfrac_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmarkfrac_wave Checking test 100 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5795,13 +5815,13 @@ Checking test 100 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1352.035957 + 0: The total amount of wall time = 1368.527549 Test 100 cpld_bmarkfrac_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmarkfrac_wave_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmarkfrac_wave_v16 Checking test 101 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5856,13 +5876,13 @@ Checking test 101 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 881.385353 + 0: The total amount of wall time = 891.093208 Test 101 cpld_bmarkfrac_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_wave -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_control_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_control_wave Checking test 102 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5915,13 +5935,13 @@ Checking test 102 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 779.555195 + 0: The total amount of wall time = 783.029630 Test 102 cpld_control_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_debug Checking test 103 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5971,13 +5991,13 @@ Checking test 103 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 285.915942 + 0: The total amount of wall time = 285.421588 Test 103 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debugfrac -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_debugfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_debugfrac Checking test 104 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -6027,73 +6047,73 @@ Checking test 104 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 284.565844 + 0: The total amount of wall time = 281.936341 Test 104 cpld_debugfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_control_cfsr Checking test 105 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 - 0: The total amount of wall time = 95.410816 + 0: The total amount of wall time = 97.924781 Test 105 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_restart_cfsr Checking test 106 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 - 0: The total amount of wall time = 60.909505 + 0: The total amount of wall time = 63.390943 Test 106 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_gefs -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_control_gefs Checking test 107 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 - 0: The total amount of wall time = 88.722502 + 0: The total amount of wall time = 90.525353 Test 107 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_cfsr -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_bulk_cfsr Checking test 108 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 - 0: The total amount of wall time = 91.873665 + 0: The total amount of wall time = 94.753543 Test 108 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_gefs -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_bulk_gefs Checking test 109 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 - 0: The total amount of wall time = 88.616042 + 0: The total amount of wall time = 90.559121 Test 109 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_cfsr -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_mx025_cfsr Checking test 110 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -6102,13 +6122,13 @@ Checking test 110 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 357.635167 + 0: The total amount of wall time = 363.841625 Test 110 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_gefs -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_mx025_gefs Checking test 111 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -6117,23 +6137,23 @@ Checking test 111 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 345.475405 + 0: The total amount of wall time = 349.344429 Test 111 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_debug_cfsr -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_debug_cfsr Checking test 112 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 - 0: The total amount of wall time = 266.026575 + 0: The total amount of wall time = 269.316066 Test 112 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 19 19:01:44 UTC 2021 -Elapsed time: 03h:05m:37s. Have a nice day! +Tue Mar 23 01:13:29 UTC 2021 +Elapsed time: 01h:26m:35s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 85fbe99614..390cfb3f75 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,23 @@ -Fri Mar 19 20:32:46 GMT 2021 +Mon Mar 22 23:31:27 GMT 2021 Start Regression test +Compile 001 elapsed time 3225 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 1177 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 2040 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 2052 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 2078 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 2601 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 2476 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 008 elapsed time 2255 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 2186 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 2083 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 2293 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 219 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 230 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 014 elapsed time 211 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +82,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 64.728782 +The total amount of wall time = 63.457498 Test 001 fv3_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_2threads +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_2threads Checking test 002 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +153,13 @@ Checking test 002 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 247.935928 +The total amount of wall time = 286.959426 Test 002 fv3_2threads PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_restart +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_restart Checking test 003 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -192,13 +206,13 @@ Checking test 003 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 28.060533 +The total amount of wall time = 28.010051 Test 003 fv3_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_read_inc +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_read_inc Checking test 004 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -263,13 +277,13 @@ Checking test 004 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.163985 +The total amount of wall time = 53.034675 Test 004 fv3_read_inc PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGauss_netcdf_esmf +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGauss_netcdf_esmf Checking test 005 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -314,13 +328,13 @@ Checking test 005 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 188.134730 +The total amount of wall time = 155.728536 Test 005 fv3_wrtGauss_netcdf_esmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGauss_netcdf +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGauss_netcdf Checking test 006 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -365,13 +379,13 @@ Checking test 006 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.163288 +The total amount of wall time = 53.058650 Test 006 fv3_wrtGauss_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGauss_netcdf_parallel Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -416,13 +430,13 @@ Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 73.607947 +The total amount of wall time = 67.698088 Test 007 fv3_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGlatlon_netcdf +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGlatlon_netcdf Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -467,13 +481,13 @@ Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.930898 +The total amount of wall time = 53.516661 Test 008 fv3_wrtGlatlon_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGauss_nemsio +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGauss_nemsio Checking test 009 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -518,13 +532,13 @@ Checking test 009 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.238510 +The total amount of wall time = 52.530401 Test 009 fv3_wrtGauss_nemsio PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGauss_nemsio_c192 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGauss_nemsio_c192 Checking test 010 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -569,13 +583,13 @@ Checking test 010 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 140.933841 +The total amount of wall time = 140.918517 Test 010 fv3_wrtGauss_nemsio_c192 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_stochy +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_stochy Checking test 011 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +654,13 @@ Checking test 011 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 60.037783 +The total amount of wall time = 58.535293 Test 011 fv3_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_ca +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_ca Checking test 012 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +725,13 @@ Checking test 012 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 43.965197 +The total amount of wall time = 43.192538 Test 012 fv3_ca PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_lndp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_lndp Checking test 013 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +796,13 @@ Checking test 013 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 67.359845 +The total amount of wall time = 64.112856 Test 013 fv3_lndp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_iau +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_iau Checking test 014 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +867,13 @@ Checking test 014 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.393139 +The total amount of wall time = 52.773235 Test 014 fv3_iau PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_lheatstrg +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_lheatstrg Checking test 015 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -904,13 +918,13 @@ Checking test 015 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.119680 +The total amount of wall time = 52.165470 Test 015 fv3_lheatstrg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_multigases_repro +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_multigases_repro Checking test 016 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,13 +995,13 @@ Checking test 016 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 129.411586 +The total amount of wall time = 129.437864 Test 016 fv3_multigases PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_control_32bit +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_control_32bit Checking test 017 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1066,13 @@ Checking test 017 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.787940 +The total amount of wall time = 55.128539 Test 017 fv3_control_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_stretched +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_stretched Checking test 018 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1111,13 +1125,13 @@ Checking test 018 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 397.670535 +The total amount of wall time = 395.212291 Test 018 fv3_stretched PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_stretched_nest +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_stretched_nest Checking test 019 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1181,13 +1195,13 @@ Checking test 019 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 425.730764 +The total amount of wall time = 425.768103 Test 019 fv3_stretched_nest PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_control +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_control Checking test 020 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1195,25 +1209,25 @@ Checking test 020 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 865.261803 +The total amount of wall time = 862.438264 Test 020 fv3_regional_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_restart +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_restart Checking test 021 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 480.835251 +The total amount of wall time = 482.687176 Test 021 fv3_regional_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_quilt +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_quilt Checking test 022 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1224,13 +1238,13 @@ Checking test 022 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 846.432121 +The total amount of wall time = 843.703210 Test 022 fv3_regional_quilt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_quilt_hafs +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_quilt_hafs Checking test 023 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1239,13 +1253,13 @@ Checking test 023 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 843.338808 +The total amount of wall time = 849.096346 Test 023 fv3_regional_quilt_hafs PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_quilt_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_quilt_netcdf_parallel Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1253,13 +1267,13 @@ Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 845.687904 +The total amount of wall time = 846.773020 Test 024 fv3_regional_quilt_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfdlmp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfdlmp Checking test 025 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1304,13 +1318,13 @@ Checking test 025 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.442180 +The total amount of wall time = 60.602688 Test 025 fv3_gfdlmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfdlmprad_gwd +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfdlmprad_gwd Checking test 026 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,13 +1369,13 @@ Checking test 026 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.994258 +The total amount of wall time = 60.719972 Test 026 fv3_gfdlmprad_gwd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfdlmprad_noahmp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfdlmprad_noahmp Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1406,13 +1420,13 @@ Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.299577 +The total amount of wall time = 60.836103 Test 027 fv3_gfdlmprad_noahmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_csawmg +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_csawmg Checking test 028 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1457,13 +1471,13 @@ Checking test 028 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 151.835768 +The total amount of wall time = 150.291266 Test 028 fv3_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_satmedmf +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_satmedmf Checking test 029 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1508,13 +1522,13 @@ Checking test 029 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 65.891762 +The total amount of wall time = 66.779379 Test 029 fv3_satmedmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_satmedmfq +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_satmedmfq Checking test 030 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,13 +1573,13 @@ Checking test 030 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 64.924674 +The total amount of wall time = 65.432115 Test 030 fv3_satmedmfq PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfdlmp_32bit +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfdlmp_32bit Checking test 031 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1610,13 +1624,13 @@ Checking test 031 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.801592 +The total amount of wall time = 53.211388 Test 031 fv3_gfdlmp_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfdlmprad_32bit_post +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfdlmprad_32bit_post Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1665,13 +1679,13 @@ Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 96.194080 +The total amount of wall time = 95.386979 Test 032 fv3_gfdlmprad_32bit_post PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_cpt +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_cpt Checking test 033 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,13 +1736,13 @@ Checking test 033 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 348.882981 +The total amount of wall time = 348.795415 Test 033 fv3_cpt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gsd +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gsd Checking test 034 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1817,13 +1831,13 @@ Checking test 034 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 240.816257 +The total amount of wall time = 244.664044 Test 034 fv3_gsd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_thompson +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_thompson Checking test 035 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1902,13 @@ Checking test 035 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 114.204287 +The total amount of wall time = 113.992952 Test 035 fv3_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_thompson_no_aero +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_thompson_no_aero Checking test 036 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1973,13 @@ Checking test 036 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 109.542404 +The total amount of wall time = 107.419023 Test 036 fv3_thompson_no_aero PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2 -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v15p2 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v15p2 Checking test 037 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2044,13 @@ Checking test 037 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 118.426819 +The total amount of wall time = 119.860968 Test 037 fv3_gfs_v15p2 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16 Checking test 038 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2113,13 +2127,13 @@ Checking test 038 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 145.923377 +The total amount of wall time = 145.620340 Test 038 fv3_gfs_v16 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_restart +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_restart Checking test 039 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2166,13 +2180,13 @@ Checking test 039 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 74.629030 +The total amount of wall time = 75.006198 Test 039 fv3_gfs_v16_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_stochy +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_stochy Checking test 040 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2237,13 +2251,13 @@ Checking test 040 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 65.585332 +The total amount of wall time = 66.798086 Test 040 fv3_gfs_v16_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_RRTMGP Checking test 041 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2308,13 +2322,13 @@ Checking test 041 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 202.330587 +The total amount of wall time = 192.208742 Test 041 fv3_gfs_v16_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_RRTMGP_c192L127 Checking test 042 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2373,13 +2387,13 @@ Checking test 042 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 803.832167 +The total amount of wall time = 804.367251 Test 042 fv3_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_RRTMGP_2thrd +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_RRTMGP_2thrd Checking test 043 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2444,13 +2458,13 @@ Checking test 043 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 827.003276 +The total amount of wall time = 806.425917 Test 043 fv3_gfs_v16_RRTMGP_2thrd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmg -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfsv16_csawmg +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfsv16_csawmg Checking test 044 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2495,13 +2509,13 @@ Checking test 044 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 162.444195 +The total amount of wall time = 161.862794 Test 044 fv3_gfsv16_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfsv16_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfsv16_csawmgt Checking test 045 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2546,13 +2560,13 @@ Checking test 045 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 160.087092 +The total amount of wall time = 160.459083 Test 045 fv3_gfsv16_csawmgt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gocart_clm +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gocart_clm Checking test 046 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2597,13 +2611,13 @@ Checking test 046 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 70.082356 +The total amount of wall time = 67.712083 Test 046 fv3_gocart_clm PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_flake +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_flake Checking test 047 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2668,13 +2682,13 @@ Checking test 047 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 123.487427 +The total amount of wall time = 122.945789 Test 047 fv3_gfs_v16_flake PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_HAFS_v0_hwrf_thompson +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_HAFS_v0_hwrf_thompson Checking test 048 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2739,13 +2753,13 @@ Checking test 048 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 192.169109 +The total amount of wall time = 191.517763 Test 048 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_esg_HAFS_v0_hwrf_thompson Checking test 049 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2760,13 +2774,13 @@ Checking test 049 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 356.676973 +The total amount of wall time = 357.299887 Test 049 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfsv16_ugwpv1 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfsv16_ugwpv1 Checking test 050 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2825,13 +2839,13 @@ Checking test 050 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 229.423421 +The total amount of wall time = 229.338431 Test 050 fv3_gfsv16_ugwpv1 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfsv16_ugwpv1_warmstart +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfsv16_ugwpv1_warmstart Checking test 051 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2890,13 +2904,13 @@ Checking test 051 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 229.322248 +The total amount of wall time = 228.134745 Test 051 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_ras +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_ras Checking test 052 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2961,13 +2975,13 @@ Checking test 052 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 123.968164 +The total amount of wall time = 122.757670 Test 052 fv3_gfs_v16_ras PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v15p2_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v15p2_debug Checking test 053 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3032,13 +3046,13 @@ Checking test 053 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 273.697286 +The total amount of wall time = 273.041754 Test 053 fv3_gfs_v15p2_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_debug Checking test 054 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3103,13 +3117,13 @@ Checking test 054 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 208.127790 +The total amount of wall time = 207.147070 Test 054 fv3_gfs_v16_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v15p2_RRTMGP_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v15p2_RRTMGP_debug Checking test 055 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3174,13 +3188,13 @@ Checking test 055 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 440.089160 +The total amount of wall time = 440.676073 Test 055 fv3_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_RRTMGP_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_RRTMGP_debug Checking test 056 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3245,13 +3259,13 @@ Checking test 056 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 451.065134 +The total amount of wall time = 454.031668 Test 056 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_control_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_control_debug Checking test 057 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3259,13 +3273,13 @@ Checking test 057 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 458.313491 +The total amount of wall time = 455.214080 Test 057 fv3_regional_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_control_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_control_debug Checking test 058 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3292,13 +3306,13 @@ Checking test 058 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 158.968260 +The total amount of wall time = 160.145813 Test 058 fv3_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_stretched_nest_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_stretched_nest_debug Checking test 059 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3315,13 +3329,13 @@ Checking test 059 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 535.750789 +The total amount of wall time = 535.120230 Test 059 fv3_stretched_nest_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gsd_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gsd_debug Checking test 060 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3386,13 +3400,13 @@ Checking test 060 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 239.269686 +The total amount of wall time = 240.946924 Test 060 fv3_gsd_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gsd_diag3d_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gsd_diag3d_debug Checking test 061 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3457,13 +3471,13 @@ Checking test 061 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 271.115849 +The total amount of wall time = 269.074205 Test 061 fv3_gsd_diag3d_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_thompson_debug Checking test 062 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3528,13 +3542,13 @@ Checking test 062 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 417.427067 +The total amount of wall time = 417.046468 Test 062 fv3_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_thompson_no_aero_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_thompson_no_aero_debug Checking test 063 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3599,13 +3613,13 @@ Checking test 063 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 401.368140 +The total amount of wall time = 403.581965 Test 063 fv3_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_rrfs_v1beta_debug Checking test 064 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3670,13 +3684,13 @@ Checking test 064 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 231.962234 +The total amount of wall time = 230.865834 Test 064 fv3_rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_HAFS_v0_hwrf_thompson_debug Checking test 065 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3741,13 +3755,13 @@ Checking test 065 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 247.594030 +The total amount of wall time = 248.012531 Test 065 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3762,13 +3776,13 @@ Checking test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 464.549115 +The total amount of wall time = 464.074253 Test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfsv16_ugwpv1_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfsv16_ugwpv1_debug Checking test 067 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3827,13 +3841,13 @@ Checking test 067 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 709.309574 +The total amount of wall time = 709.823754 Test 067 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_ras_debug Checking test 068 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3898,11 +3912,11 @@ Checking test 068 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 395.013982 +The total amount of wall time = 395.042769 Test 068 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 19 23:14:51 GMT 2021 -Elapsed time: 02h:42m:05s. Have a nice day! +Tue Mar 23 02:45:23 GMT 2021 +Elapsed time: 03h:13m:56s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index bd8bb38e30..87f9342763 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,29 @@ -Fri Mar 19 12:50:33 CDT 2021 +Tue Mar 23 07:53:29 CDT 2021 Start Regression test +Compile 001 elapsed time 494 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 573 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 534 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 490 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 494 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 006 elapsed time 564 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 667 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 736 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 009 elapsed time 663 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 540 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 508 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 551 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 145 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 143 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 015 elapsed time 134 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 016 elapsed time 740 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 564 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 152 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 019 elapsed time 380 seconds. APP=DATM_NEMS +Compile 020 elapsed time 128 seconds. APP=DATM_NEMS DEBUG=Y baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_control +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +88,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 49.822248 + 0: The total amount of wall time = 46.101687 Test 001 fv3_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_decomp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +159,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 51.521173 + 0: The total amount of wall time = 50.718015 Test 002 fv3_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_2threads +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +230,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.713742 + 0: The total amount of wall time = 44.711798 Test 003 fv3_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_restart +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +283,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 28.132500 + 0: The total amount of wall time = 23.482743 Test 004 fv3_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_read_inc +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -334,13 +354,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 44.505180 + 0: The total amount of wall time = 49.553305 Test 005 fv3_read_inc PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_netcdf_esmf +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,13 +405,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.407823 + 0: The total amount of wall time = 162.108596 Test 006 fv3_wrtGauss_netcdf_esmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_netcdf +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -436,13 +456,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 40.838167 + 0: The total amount of wall time = 47.991036 Test 007 fv3_wrtGauss_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -453,7 +473,7 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing phyf000.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,13 +507,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 62.405697 + 0: The total amount of wall time = 58.224379 Test 008 fv3_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGlatlon_netcdf +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -538,13 +558,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 47.179670 + 0: The total amount of wall time = 45.794276 Test 009 fv3_wrtGlatlon_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_nemsio +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -589,13 +609,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.659848 + 0: The total amount of wall time = 39.920793 Test 010 fv3_wrtGauss_nemsio PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_nemsio_c192 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +660,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 109.415050 + 0: The total amount of wall time = 107.928106 Test 011 fv3_wrtGauss_nemsio_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_stochy +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +731,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 44.225112 + 0: The total amount of wall time = 50.234873 Test 012 fv3_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_ca +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +802,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 30.103813 + 0: The total amount of wall time = 35.593690 Test 013 fv3_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_lndp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +873,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 56.130941 + 0: The total amount of wall time = 58.322300 Test 014 fv3_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_iau +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +944,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 50.465295 + 0: The total amount of wall time = 43.056711 Test 015 fv3_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_lheatstrg +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +995,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 46.489782 + 0: The total amount of wall time = 47.053957 Test 016 fv3_lheatstrg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmprad +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1027,13 +1047,13 @@ Checking test 017 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 678.419956 + 0: The total amount of wall time = 677.826819 Test 017 fv3_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_atmwav -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmprad_atmwav +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,13 +1099,13 @@ Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 826.633003 + 0: The total amount of wall time = 819.282807 Test 018 fv3_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_nemsio_c768 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_nemsio_c768 Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,13 +1151,13 @@ Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 706.467872 + 0: The total amount of wall time = 696.965587 Test 019 fv3_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_multigases_repro +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_multigases_repro Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1208,13 +1228,13 @@ Checking test 020 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 107.230897 + 0: The total amount of wall time = 105.512769 Test 020 fv3_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_control_32bit +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_control_32bit Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,13 +1299,13 @@ Checking test 021 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 47.582102 + 0: The total amount of wall time = 38.127887 Test 021 fv3_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_stretched +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_stretched Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,13 +1358,13 @@ Checking test 022 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.262541 + 0: The total amount of wall time = 217.119629 Test 022 fv3_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_stretched_nest +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_stretched_nest Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1408,13 +1428,13 @@ Checking test 023 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK - 0: The total amount of wall time = 243.162287 + 0: The total amount of wall time = 243.635806 Test 023 fv3_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_control +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_control Checking test 024 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1422,25 +1442,25 @@ Checking test 024 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 536.273022 + 0: The total amount of wall time = 534.231915 Test 024 fv3_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_restart +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_restart Checking test 025 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 301.035378 + 0: The total amount of wall time = 297.626999 Test 025 fv3_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_quilt +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_quilt Checking test 026 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1451,13 +1471,13 @@ Checking test 026 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 576.311724 + 0: The total amount of wall time = 579.524629 Test 026 fv3_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_quilt_hafs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_quilt_hafs Checking test 027 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1466,27 +1486,27 @@ Checking test 027 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 580.253857 + 0: The total amount of wall time = 579.955266 Test 027 fv3_regional_quilt_hafs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_quilt_netcdf_parallel +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_quilt_netcdf_parallel Checking test 028 fv3_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 - 0: The total amount of wall time = 577.972230 + 0: The total amount of wall time = 581.995280 Test 028 fv3_regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmp Checking test 029 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1531,13 +1551,13 @@ Checking test 029 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 49.088020 + 0: The total amount of wall time = 50.451199 Test 029 fv3_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmprad_gwd +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmprad_gwd Checking test 030 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1582,13 +1602,13 @@ Checking test 030 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 49.180437 + 0: The total amount of wall time = 52.016158 Test 030 fv3_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmprad_noahmp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmprad_noahmp Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1633,13 +1653,13 @@ Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 52.319969 + 0: The total amount of wall time = 52.811692 Test 031 fv3_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_csawmg +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_csawmg Checking test 032 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1684,13 +1704,13 @@ Checking test 032 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 109.398812 + 0: The total amount of wall time = 111.056297 Test 032 fv3_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_satmedmf +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_satmedmf Checking test 033 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1735,13 +1755,13 @@ Checking test 033 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 53.796980 + 0: The total amount of wall time = 51.489409 Test 033 fv3_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_satmedmfq +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_satmedmfq Checking test 034 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1786,13 +1806,13 @@ Checking test 034 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 49.514721 + 0: The total amount of wall time = 47.330009 Test 034 fv3_satmedmfq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmp_32bit +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmp_32bit Checking test 035 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1837,13 +1857,13 @@ Checking test 035 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 49.923095 + 0: The total amount of wall time = 46.764119 Test 035 fv3_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmprad_32bit_post +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmprad_32bit_post Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1892,13 +1912,13 @@ Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 72.847140 + 0: The total amount of wall time = 72.443134 Test 036 fv3_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_cpt +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_cpt Checking test 037 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1949,13 +1969,13 @@ Checking test 037 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 258.808684 + 0: The total amount of wall time = 261.739828 Test 037 fv3_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gsd +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gsd Checking test 038 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2044,13 +2064,13 @@ Checking test 038 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.978842 + 0: The total amount of wall time = 188.164520 Test 038 fv3_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rap -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_rap +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_rap Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2115,13 +2135,13 @@ Checking test 039 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 99.758309 + 0: The total amount of wall time = 98.581565 Test 039 fv3_rap PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_hrrr -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_hrrr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_hrrr Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2186,13 +2206,13 @@ Checking test 040 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 108.362225 + 0: The total amount of wall time = 109.029001 Test 040 fv3_hrrr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_thompson +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_thompson Checking test 041 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2257,13 +2277,13 @@ Checking test 041 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.981672 + 0: The total amount of wall time = 93.946234 Test 041 fv3_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_thompson_no_aero +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_thompson_no_aero Checking test 042 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2328,13 +2348,13 @@ Checking test 042 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 89.632598 + 0: The total amount of wall time = 92.037144 Test 042 fv3_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_rrfs_v1beta +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_rrfs_v1beta Checking test 043 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2399,13 +2419,13 @@ Checking test 043 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 111.207011 + 0: The total amount of wall time = 112.322392 Test 043 fv3_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v15p2 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v15p2 Checking test 044 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2470,13 +2490,13 @@ Checking test 044 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 100.258678 + 0: The total amount of wall time = 102.189974 Test 044 fv3_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16 Checking test 045 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2553,13 +2573,13 @@ Checking test 045 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 117.674490 + 0: The total amount of wall time = 111.578814 Test 045 fv3_gfs_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_restart +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_restart Checking test 046 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2606,13 +2626,13 @@ Checking test 046 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 61.382059 + 0: The total amount of wall time = 62.286551 Test 046 fv3_gfs_v16_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_stochy +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_stochy Checking test 047 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2677,13 +2697,13 @@ Checking test 047 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 56.009358 + 0: The total amount of wall time = 52.595486 Test 047 fv3_gfs_v16_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v15p2_RRTMGP +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v15p2_RRTMGP Checking test 048 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2748,13 +2768,13 @@ Checking test 048 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 165.693850 + 0: The total amount of wall time = 163.887440 Test 048 fv3_gfs_v15p2_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_RRTMGP +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_RRTMGP Checking test 049 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2819,13 +2839,13 @@ Checking test 049 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 172.052786 + 0: The total amount of wall time = 165.993988 Test 049 fv3_gfs_v16_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_RRTMGP_c192L127 Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2884,13 +2904,13 @@ Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 629.327169 + 0: The total amount of wall time = 625.562035 Test 050 fv3_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_RRTMGP_2thrd +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_RRTMGP_2thrd Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2955,13 +2975,13 @@ Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 177.248846 + 0: The total amount of wall time = 176.015856 Test 051 fv3_gfs_v16_RRTMGP_2thrd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmg -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfsv16_csawmg +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfsv16_csawmg Checking test 052 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3006,13 +3026,13 @@ Checking test 052 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 128.621910 + 0: The total amount of wall time = 130.545428 Test 052 fv3_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmgt -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfsv16_csawmgt +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfsv16_csawmgt Checking test 053 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3057,13 +3077,13 @@ Checking test 053 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 126.372323 + 0: The total amount of wall time = 128.037325 Test 053 fv3_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gocart_clm +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gocart_clm Checking test 054 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3108,13 +3128,13 @@ Checking test 054 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 61.167507 + 0: The total amount of wall time = 60.929529 Test 054 fv3_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_flake +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_flake Checking test 055 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3179,13 +3199,13 @@ Checking test 055 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 113.282933 + 0: The total amount of wall time = 106.638832 Test 055 fv3_gfs_v16_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_HAFS_v0_hwrf_thompson +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_HAFS_v0_hwrf_thompson Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3250,13 +3270,13 @@ Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 151.985419 + 0: The total amount of wall time = 151.631406 Test 056 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_esg_HAFS_v0_hwrf_thompson Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3271,13 +3291,13 @@ Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 292.902368 + 0: The total amount of wall time = 295.112559 Test 057 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfsv16_ugwpv1 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfsv16_ugwpv1 Checking test 058 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3336,13 +3356,13 @@ Checking test 058 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 181.379209 + 0: The total amount of wall time = 167.645191 Test 058 fv3_gfsv16_ugwpv1 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfsv16_ugwpv1_warmstart +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfsv16_ugwpv1_warmstart Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3401,13 +3421,13 @@ Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 177.143703 + 0: The total amount of wall time = 175.648535 Test 059 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_ras +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_ras Checking test 060 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3472,13 +3492,13 @@ Checking test 060 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 103.104727 + 0: The total amount of wall time = 93.123008 Test 060 fv3_gfs_v16_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v15p2_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v15p2_debug Checking test 061 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3543,13 +3563,13 @@ Checking test 061 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.582630 + 0: The total amount of wall time = 243.950865 Test 061 fv3_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_debug Checking test 062 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3614,13 +3634,13 @@ Checking test 062 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 185.523880 + 0: The total amount of wall time = 187.453483 Test 062 fv3_gfs_v16_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v15p2_RRTMGP_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v15p2_RRTMGP_debug Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3685,13 +3705,13 @@ Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 371.331039 + 0: The total amount of wall time = 374.261105 Test 063 fv3_gfs_v15p2_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_RRTMGP_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_RRTMGP_debug Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3756,13 +3776,13 @@ Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.243546 + 0: The total amount of wall time = 382.555526 Test 064 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_control_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_control_debug Checking test 065 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3770,13 +3790,13 @@ Checking test 065 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 368.364244 + 0: The total amount of wall time = 373.369585 Test 065 fv3_regional_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_control_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_control_debug Checking test 066 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3803,13 +3823,13 @@ Checking test 066 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 155.221480 + 0: The total amount of wall time = 150.261458 Test 066 fv3_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_stretched_nest_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_stretched_nest_debug Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3826,13 +3846,13 @@ Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 375.623118 + 0: The total amount of wall time = 372.625045 Test 067 fv3_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gsd_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gsd_debug Checking test 068 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3897,13 +3917,13 @@ Checking test 068 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 215.241294 + 0: The total amount of wall time = 216.904775 Test 068 fv3_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gsd_diag3d_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gsd_diag3d_debug Checking test 069 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3968,13 +3988,13 @@ Checking test 069 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 295.256237 + 0: The total amount of wall time = 302.162771 Test 069 fv3_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_thompson_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_thompson_debug Checking test 070 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4039,13 +4059,13 @@ Checking test 070 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 353.634309 + 0: The total amount of wall time = 359.858399 Test 070 fv3_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_thompson_no_aero_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_thompson_no_aero_debug Checking test 071 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4110,13 +4130,13 @@ Checking test 071 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.756109 + 0: The total amount of wall time = 345.693456 Test 071 fv3_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_rrfs_v1beta_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_rrfs_v1beta_debug Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4181,13 +4201,13 @@ Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 209.763849 + 0: The total amount of wall time = 217.369735 Test 072 fv3_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_HAFS_v0_hwrf_thompson_debug Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4252,13 +4272,13 @@ Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 263.676892 + 0: The total amount of wall time = 225.720337 Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4273,13 +4293,13 @@ Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 410.622427 + 0: The total amount of wall time = 424.190416 Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfsv16_ugwpv1_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfsv16_ugwpv1_debug Checking test 075 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4338,13 +4358,13 @@ Checking test 075 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 577.490209 + 0: The total amount of wall time = 583.478429 Test 075 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_ras_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_ras_debug Checking test 076 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4409,13 +4429,13 @@ Checking test 076 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 338.669822 + 0: The total amount of wall time = 344.240212 Test 076 fv3_gfs_v16_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_control +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_control Checking test 077 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4465,13 +4485,13 @@ Checking test 077 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 119.325516 + 0: The total amount of wall time = 101.860852 Test 077 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart Checking test 078 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4521,13 +4541,13 @@ Checking test 078 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 68.154787 + 0: The total amount of wall time = 65.476460 Test 078 cpld_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_controlfrac +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_controlfrac Checking test 079 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4577,13 +4597,13 @@ Checking test 079 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 117.598597 + 0: The total amount of wall time = 108.466565 Test 079 cpld_controlfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restartfrac +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restartfrac Checking test 080 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4633,13 +4653,13 @@ Checking test 080 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 78.913061 + 0: The total amount of wall time = 74.103551 Test 080 cpld_restartfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_2threads +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_2threads Checking test 081 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4689,13 +4709,13 @@ Checking test 081 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 133.379763 + 0: The total amount of wall time = 135.602745 Test 081 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_decomp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_decomp Checking test 082 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4745,13 +4765,13 @@ Checking test 082 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 104.163066 + 0: The total amount of wall time = 102.686077 Test 082 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_satmedmf -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_satmedmf +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_satmedmf Checking test 083 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4801,13 +4821,13 @@ Checking test 083 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 108.150363 + 0: The total amount of wall time = 106.577948 Test 083 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_ca -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_ca +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_ca Checking test 084 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4857,13 +4877,13 @@ Checking test 084 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 111.862948 + 0: The total amount of wall time = 106.772190 Test 084 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_control_c192 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_control_c192 Checking test 085 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4913,13 +4933,13 @@ Checking test 085 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 397.017496 + 0: The total amount of wall time = 394.095414 Test 085 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart_c192 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart_c192 Checking test 086 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4969,13 +4989,13 @@ Checking test 086 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 272.736278 + 0: The total amount of wall time = 269.148793 Test 086 cpld_restart_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_controlfrac_c192 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_controlfrac_c192 Checking test 087 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -5025,13 +5045,13 @@ Checking test 087 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 400.553613 + 0: The total amount of wall time = 383.675006 Test 087 cpld_controlfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restartfrac_c192 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restartfrac_c192 Checking test 088 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -5081,13 +5101,13 @@ Checking test 088 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 278.647891 + 0: The total amount of wall time = 269.767705 Test 088 cpld_restartfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_control_c384 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_control_c384 Checking test 089 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5140,13 +5160,13 @@ Checking test 089 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1336.147422 + 0: The total amount of wall time = 1328.094632 Test 089 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart_c384 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart_c384 Checking test 090 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5199,13 +5219,13 @@ Checking test 090 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 713.934599 + 0: The total amount of wall time = 693.331967 Test 090 cpld_restart_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_controlfrac_c384 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_controlfrac_c384 Checking test 091 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5258,13 +5278,13 @@ Checking test 091 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1406.099769 + 0: The total amount of wall time = 1316.562844 Test 091 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restartfrac_c384 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restartfrac_c384 Checking test 092 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5317,13 +5337,13 @@ Checking test 092 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 706.690926 + 0: The total amount of wall time = 677.544485 Test 092 cpld_restartfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmark +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmark Checking test 093 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5376,13 +5396,13 @@ Checking test 093 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 824.173979 + 0: The total amount of wall time = 834.684270 Test 093 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart_bmark +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart_bmark Checking test 094 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5435,13 +5455,13 @@ Checking test 094 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 457.215343 + 0: The total amount of wall time = 442.270687 Test 094 cpld_restart_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmarkfrac +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmarkfrac Checking test 095 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5494,13 +5514,13 @@ Checking test 095 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 829.110986 + 0: The total amount of wall time = 826.817121 Test 095 cpld_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart_bmarkfrac +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart_bmarkfrac Checking test 096 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5553,13 +5573,13 @@ Checking test 096 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 453.932339 + 0: The total amount of wall time = 436.932599 Test 096 cpld_restart_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmarkfrac_v16 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmarkfrac_v16 Checking test 097 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5612,13 +5632,13 @@ Checking test 097 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 1344.124539 + 0: The total amount of wall time = 1332.676304 Test 097 cpld_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart_bmarkfrac_v16 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart_bmarkfrac_v16 Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5671,13 +5691,13 @@ Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 740.990276 + 0: The total amount of wall time = 726.331517 Test 098 cpld_restart_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark_wave -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmark_wave +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmark_wave Checking test 099 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5733,13 +5753,13 @@ Checking test 099 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1432.098204 + 0: The total amount of wall time = 1441.141040 Test 099 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmarkfrac_wave +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmarkfrac_wave Checking test 100 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5795,13 +5815,13 @@ Checking test 100 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1429.371386 + 0: The total amount of wall time = 1420.068920 Test 100 cpld_bmarkfrac_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmarkfrac_wave_v16 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmarkfrac_wave_v16 Checking test 101 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5856,13 +5876,13 @@ Checking test 101 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 951.222093 + 0: The total amount of wall time = 945.773922 Test 101 cpld_bmarkfrac_wave_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_wave -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_control_wave +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_control_wave Checking test 102 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5915,13 +5935,13 @@ Checking test 102 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 815.263136 + 0: The total amount of wall time = 821.600514 Test 102 cpld_control_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_debug Checking test 103 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5971,13 +5991,13 @@ Checking test 103 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 341.676165 + 0: The total amount of wall time = 333.488070 Test 103 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debugfrac -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_debugfrac +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_debugfrac Checking test 104 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -6027,73 +6047,73 @@ Checking test 104 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 327.395689 + 0: The total amount of wall time = 1386.257202 Test 104 cpld_debugfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_control_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_control_cfsr Checking test 105 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 - 0: The total amount of wall time = 104.235935 + 0: The total amount of wall time = 101.019579 Test 105 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_restart_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_restart_cfsr Checking test 106 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 - 0: The total amount of wall time = 71.592949 + 0: The total amount of wall time = 71.648752 Test 106 datm_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_gefs -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_control_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_control_gefs Checking test 107 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 - 0: The total amount of wall time = 97.500170 + 0: The total amount of wall time = 94.086336 Test 107 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_cfsr -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_bulk_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_bulk_cfsr Checking test 108 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 - 0: The total amount of wall time = 105.271493 + 0: The total amount of wall time = 97.609697 Test 108 datm_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_gefs -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_bulk_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_bulk_gefs Checking test 109 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 - 0: The total amount of wall time = 92.326933 + 0: The total amount of wall time = 96.111352 Test 109 datm_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_cfsr -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_mx025_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_mx025_cfsr Checking test 110 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -6102,13 +6122,13 @@ Checking test 110 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 387.359123 + 0: The total amount of wall time = 381.993465 Test 110 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_gefs -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_mx025_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_mx025_gefs Checking test 111 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -6117,23 +6137,23 @@ Checking test 111 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 409.867554 + 0: The total amount of wall time = 382.126847 Test 111 datm_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_debug_cfsr -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_debug_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_debug_cfsr Checking test 112 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 - 0: The total amount of wall time = 290.904811 + 0: The total amount of wall time = 287.666163 Test 112 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 19 14:13:34 CDT 2021 -Elapsed time: 01h:23m:02s. Have a nice day! +Tue Mar 23 09:18:07 CDT 2021 +Elapsed time: 01h:24m:39s. Have a nice day! diff --git a/tests/RegressionTests_stampede.intel.log b/tests/RegressionTests_stampede.intel.log new file mode 100644 index 0000000000..00e5a787c3 --- /dev/null +++ b/tests/RegressionTests_stampede.intel.log @@ -0,0 +1,252 @@ +Sun Mar 21 22:01:01 CDT 2021 +Start Regression test + +Compile 001 elapsed time 569 seconds. SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y + +baseline dir = /work/07736/minsukji/stampede2/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/cpld_bmark_wave +working dir = /scratch/07736/minsukji/ufs-weather-model/run/minsukji/FV3_RT/rt_216780/cpld_bmark_wave +Checking test 001 cpld_bmark_wave results .... + 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 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 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........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/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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK + +The total amount of wall time = 1513.274982 + +Test 001 cpld_bmark_wave PASS + + +baseline dir = /work/07736/minsukji/stampede2/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/cpld_bmarkfrac_wave +working dir = /scratch/07736/minsukji/ufs-weather-model/run/minsukji/FV3_RT/rt_216780/cpld_bmarkfrac_wave +Checking test 002 cpld_bmarkfrac_wave results .... + 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 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 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........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/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.2013-04-02-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK + +The total amount of wall time = 1511.941093 + +Test 002 cpld_bmarkfrac_wave PASS + + +baseline dir = /work/07736/minsukji/stampede2/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/cpld_bmarkfrac_wave_v16 +working dir = /scratch/07736/minsukji/ufs-weather-model/run/minsukji/FV3_RT/rt_216780/cpld_bmarkfrac_wave_v16 +Checking test 003 cpld_bmarkfrac_wave_v16 results .... + 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 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 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........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/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.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + +The total amount of wall time = 1019.892656 + +Test 003 cpld_bmarkfrac_wave_v16 PASS + + +baseline dir = /work/07736/minsukji/stampede2/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/cpld_control_wave +working dir = /scratch/07736/minsukji/ufs-weather-model/run/minsukji/FV3_RT/rt_216780/cpld_control_wave +Checking test 004 cpld_control_wave results .... + 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 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 + 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 + Comparing 20161004.000000.out_grd.glo_1deg .........OK + Comparing 20161004.000000.out_pnt.points .........OK + Comparing 20161004.000000.restart.glo_1deg .........OK + +The total amount of wall time = 753.637820 + +Test 004 cpld_control_wave PASS + + +REGRESSION TEST WAS SUCCESSFUL +Mon Mar 22 02:13:36 CDT 2021 +Elapsed time: 04h:12m:35s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index a29b81b18f..73259c41ed 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,10 +1,24 @@ -Mon Mar 15 15:10:33 UTC 2021 +Tue Mar 23 19:01:32 UTC 2021 Start Regression test - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control results .... +Compile 001 elapsed time 900 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 902 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 936 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 929 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 913 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 979 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 1023 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 008 elapsed time 960 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 944 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 936 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 1018 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 563 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 546 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 014 elapsed time 534 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_control +Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -68,14 +82,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 99.580387 +The total amount of wall time = 54.181357 -Test 001 fv3_ccpp_control PASS +Test 001 fv3_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_decomp +Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -139,14 +153,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 93.681293 +The total amount of wall time = 55.766983 -Test 002 fv3_ccpp_decomp PASS +Test 002 fv3_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_2threads +Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -210,14 +224,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.362766 +The total amount of wall time = 45.593699 -Test 003 fv3_ccpp_2threads PASS +Test 003 fv3_2threads PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_restart +Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -263,14 +277,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 24.842162 +The total amount of wall time = 23.633691 -Test 004 fv3_ccpp_restart PASS +Test 004 fv3_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_read_inc +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_read_inc +Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -334,14 +348,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.148666 +The total amount of wall time = 51.290996 -Test 005 fv3_ccpp_read_inc PASS +Test 005 fv3_read_inc PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGauss_netcdf_esmf +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGauss_netcdf_esmf +Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -385,14 +399,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 130.613144 +The total amount of wall time = 118.662507 -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS +Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGauss_netcdf +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGauss_netcdf +Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -436,14 +450,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 56.133268 +The total amount of wall time = 47.672881 -Test 007 fv3_ccpp_wrtGauss_netcdf PASS +Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGauss_netcdf_parallel +Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -487,14 +501,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 156.252763 +The total amount of wall time = 53.153928 -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS +Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGlatlon_netcdf +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGlatlon_netcdf +Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -538,14 +552,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.755501 +The total amount of wall time = 48.378979 -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS +Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGauss_nemsio +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGauss_nemsio +Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -589,14 +603,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 54.126902 +The total amount of wall time = 48.341767 -Test 010 fv3_ccpp_wrtGauss_nemsio PASS +Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGauss_nemsio_c192 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGauss_nemsio_c192 +Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -640,14 +654,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 150.745275 +The total amount of wall time = 121.534151 -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS +Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_stochy +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_stochy +Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -711,14 +725,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 56.852801 +The total amount of wall time = 54.164695 -Test 012 fv3_ccpp_stochy PASS +Test 012 fv3_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_ca +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_ca +Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -782,14 +796,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 114.296214 +The total amount of wall time = 39.725006 -Test 013 fv3_ccpp_ca PASS +Test 013 fv3_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_lndp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_lndp +Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -853,14 +867,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 69.905051 +The total amount of wall time = 56.313339 -Test 014 fv3_ccpp_lndp PASS +Test 014 fv3_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_iau +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_iau +Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -924,14 +938,14 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 49.435697 +The total amount of wall time = 49.355312 -Test 015 fv3_ccpp_iau PASS +Test 015 fv3_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_lheatstrg +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_lheatstrg +Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -975,14 +989,14 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.358493 +The total amount of wall time = 47.862734 -Test 016 fv3_ccpp_lheatstrg PASS +Test 016 fv3_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_multigases_prod -Checking test 017 fv3_ccpp_multigases results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_multigases_repro +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_multigases_repro +Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1052,14 +1066,14 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 102.482825 +The total amount of wall time = 98.393273 -Test 017 fv3_ccpp_multigases PASS +Test 017 fv3_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_control_32bit_prod -Checking test 018 fv3_ccpp_control_32bit results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_control_32bit +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_control_32bit +Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1123,14 +1137,14 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 109.052814 +The total amount of wall time = 50.903327 -Test 018 fv3_ccpp_control_32bit PASS +Test 018 fv3_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_stretched_prod -Checking test 019 fv3_ccpp_stretched results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_stretched +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_stretched +Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1182,14 +1196,14 @@ Checking test 019 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 355.139031 +The total amount of wall time = 323.540037 -Test 019 fv3_ccpp_stretched PASS +Test 019 fv3_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_stretched_nest_prod -Checking test 020 fv3_ccpp_stretched_nest results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_stretched_nest +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_stretched_nest +Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1252,40 +1266,40 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 493.564882 +The total amount of wall time = 358.312525 -Test 020 fv3_ccpp_stretched_nest PASS +Test 020 fv3_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_control_prod -Checking test 021 fv3_ccpp_regional_control results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_regional_control +Checking test 021 fv3_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 -The total amount of wall time = 708.691047 +The total amount of wall time = 694.918940 -Test 021 fv3_ccpp_regional_control PASS +Test 021 fv3_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_restart_prod -Checking test 022 fv3_ccpp_regional_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_restart +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_regional_restart +Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 408.314958 +The total amount of wall time = 410.922728 -Test 022 fv3_ccpp_regional_restart PASS +Test 022 fv3_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_quilt_prod -Checking test 023 fv3_ccpp_regional_quilt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_quilt +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_regional_quilt +Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1295,14 +1309,14 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 702.871821 +The total amount of wall time = 700.289611 -Test 023 fv3_ccpp_regional_quilt PASS +Test 023 fv3_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_hafs_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_quilt_hafs_prod -Checking test 024 fv3_ccpp_regional_quilt_hafs results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_quilt_hafs +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_regional_quilt_hafs +Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1310,28 +1324,28 @@ Checking test 024 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 702.577217 +The total amount of wall time = 698.328839 -Test 024 fv3_ccpp_regional_quilt_hafs PASS +Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_regional_quilt_netcdf_parallel +Checking test 025 fv3_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 -The total amount of wall time = 702.357430 +The total amount of wall time = 700.867561 -Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS +Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmp_prod -Checking test 026 fv3_ccpp_gfdlmp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfdlmp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfdlmp +Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1375,14 +1389,14 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 122.097066 +The total amount of wall time = 55.665164 -Test 026 fv3_ccpp_gfdlmp PASS +Test 026 fv3_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfdlmprad_gwd +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfdlmprad_gwd +Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1426,14 +1440,14 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 98.792328 +The total amount of wall time = 55.944638 -Test 027 fv3_ccpp_gfdlmprad_gwd PASS +Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfdlmprad_noahmp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfdlmprad_noahmp +Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1477,14 +1491,14 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 102.487017 +The total amount of wall time = 68.670490 -Test 028 fv3_ccpp_gfdlmprad_noahmp PASS +Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_csawmg_prod -Checking test 029 fv3_ccpp_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_csawmg +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_csawmg +Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1528,14 +1542,14 @@ Checking test 029 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 161.005073 +The total amount of wall time = 128.721390 -Test 029 fv3_ccpp_csawmg PASS +Test 029 fv3_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_satmedmf_prod -Checking test 030 fv3_ccpp_satmedmf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_satmedmf +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_satmedmf +Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1579,14 +1593,14 @@ Checking test 030 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.566167 +The total amount of wall time = 59.137603 -Test 030 fv3_ccpp_satmedmf PASS +Test 030 fv3_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_satmedmfq_prod -Checking test 031 fv3_ccpp_satmedmfq results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_satmedmfq +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_satmedmfq +Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1630,14 +1644,14 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.543109 +The total amount of wall time = 58.300887 -Test 031 fv3_ccpp_satmedmfq PASS +Test 031 fv3_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmp_32bit_prod -Checking test 032 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfdlmp_32bit +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfdlmp_32bit +Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1681,14 +1695,14 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.637933 +The total amount of wall time = 48.189951 -Test 032 fv3_ccpp_gfdlmp_32bit PASS +Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfdlmprad_32bit_post +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfdlmprad_32bit_post +Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1736,14 +1750,14 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 114.488328 +The total amount of wall time = 100.233980 -Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_cpt_prod -Checking test 034 fv3_ccpp_cpt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_cpt +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_cpt +Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1793,14 +1807,14 @@ Checking test 034 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 289.126417 +The total amount of wall time = 285.318168 -Test 034 fv3_ccpp_cpt PASS +Test 034 fv3_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gsd_prod -Checking test 035 fv3_ccpp_gsd results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gsd +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gsd +Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1888,14 +1902,14 @@ Checking test 035 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 199.176066 +The total amount of wall time = 198.948099 -Test 035 fv3_ccpp_gsd PASS +Test 035 fv3_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_rap_prod -Checking test 036 fv3_ccpp_rap results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_rap +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_rap +Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1959,14 +1973,14 @@ Checking test 036 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 106.102948 +The total amount of wall time = 103.121426 -Test 036 fv3_ccpp_rap PASS +Test 036 fv3_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_hrrr_prod -Checking test 037 fv3_ccpp_hrrr results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_hrrr +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_hrrr +Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2030,14 +2044,14 @@ Checking test 037 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 121.642248 +The total amount of wall time = 110.194777 -Test 037 fv3_ccpp_hrrr PASS +Test 037 fv3_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_thompson_prod -Checking test 038 fv3_ccpp_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_thompson +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_thompson +Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2101,14 +2115,14 @@ Checking test 038 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 98.285796 +The total amount of wall time = 97.531919 -Test 038 fv3_ccpp_thompson PASS +Test 038 fv3_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_thompson_no_aero_prod -Checking test 039 fv3_ccpp_thompson_no_aero results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_thompson_no_aero +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_thompson_no_aero +Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2172,14 +2186,14 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 93.686278 +The total amount of wall time = 92.294440 -Test 039 fv3_ccpp_thompson_no_aero PASS +Test 039 fv3_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_rrfs_v1beta_prod -Checking test 040 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_rrfs_v1beta +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_rrfs_v1beta +Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2243,85 +2257,16 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 111.501950 - -Test 040 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v15p2_prod -Checking test 041 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 +The total amount of wall time = 109.548864 -The total amount of wall time = 109.180521 +Test 040 fv3_rrfs_v1beta PASS -Test 041 fv3_ccpp_gfs_v15p2 PASS +Test 041 fv3_gfs_v15p2 FAIL -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_prod -Checking test 042 fv3_ccpp_gfs_v16 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16 +Checking test 042 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2397,14 +2342,14 @@ Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 131.858752 +The total amount of wall time = 124.119466 -Test 042 fv3_ccpp_gfs_v16 PASS +Test 042 fv3_gfs_v16 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_restart_prod -Checking test 043 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_restart +Checking test 043 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2450,14 +2395,14 @@ Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 68.244794 +The total amount of wall time = 66.460357 -Test 043 fv3_ccpp_gfs_v16_restart PASS +Test 043 fv3_gfs_v16_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_stochy_prod -Checking test 044 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_stochy +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_stochy +Checking test 044 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2521,85 +2466,16 @@ Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 62.121171 +The total amount of wall time = 60.644591 -Test 044 fv3_ccpp_gfs_v16_stochy PASS +Test 044 fv3_gfs_v16_stochy PASS +Test 045 fv3_gfs_v15p2_RRTMGP FAIL -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 045 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 -The total amount of wall time = 176.063395 - -Test 045 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_RRTMGP +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_RRTMGP +Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2663,14 +2539,14 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 176.542941 +The total amount of wall time = 170.291390 -Test 046 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 046 fv3_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_RRTMGP_c192L127 +Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2728,14 +2604,14 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 718.556767 +The total amount of wall time = 714.283719 -Test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +Test 047 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_RRTMGP +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_RRTMGP_2thrd +Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2799,14 +2675,14 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 172.144048 +The total amount of wall time = 161.452458 -Test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS +Test 048 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_csawmg_prod -Checking test 049 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfsv16_csawmg +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfsv16_csawmg +Checking test 049 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2850,14 +2726,14 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 145.900090 +The total amount of wall time = 139.130456 -Test 049 fv3_ccpp_gfsv16_csawmg PASS +Test 049 fv3_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfsv16_csawmgt +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfsv16_csawmgt +Checking test 050 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2901,14 +2777,14 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 162.009408 +The total amount of wall time = 136.270951 -Test 050 fv3_ccpp_gfsv16_csawmgt PASS +Test 050 fv3_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gocart_clm_prod -Checking test 051 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gocart_clm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gocart_clm +Checking test 051 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2952,14 +2828,14 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 93.182478 +The total amount of wall time = 77.083874 -Test 051 fv3_ccpp_gocart_clm PASS +Test 051 fv3_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_flake_prod -Checking test 052 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_flake +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_flake +Checking test 052 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3023,14 +2899,14 @@ Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 117.063447 +The total amount of wall time = 105.976975 -Test 052 fv3_ccpp_gfs_v16_flake PASS +Test 052 fv3_gfs_v16_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_HAFS_v0_hwrf_thompson +Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3094,14 +2970,14 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 160.487371 +The total amount of wall time = 162.377383 -Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 053 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -3115,14 +2991,14 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 301.412646 +The total amount of wall time = 351.963836 -Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfsv16_ugwpv1 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfsv16_ugwpv1 +Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3180,14 +3056,14 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 192.811337 +The total amount of wall time = 194.130522 -Test 055 fv3_ccpp_gfsv16_ugwpv1 PASS +Test 055 fv3_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfsv16_ugwpv1_warmstart +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfsv16_ugwpv1_warmstart +Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3245,14 +3121,85 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 191.702998 +The total amount of wall time = 193.636061 -Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 056 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_ras +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_ras +Checking test 057 fv3_gfs_v16_ras 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 + +The total amount of wall time = 107.075383 + +Test 057 fv3_gfs_v16_ras PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v15p2_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v15p2_debug +Checking test 058 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3316,14 +3263,14 @@ Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 211.346801 +The total amount of wall time = 207.075769 -Test 057 fv3_ccpp_gfs_v15p2_debug PASS +Test 058 fv3_gfs_v15p2_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_debug_prod -Checking test 058 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_debug +Checking test 059 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3387,14 +3334,14 @@ Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 162.230739 +The total amount of wall time = 161.262855 -Test 058 fv3_ccpp_gfs_v16_debug PASS +Test 059 fv3_gfs_v16_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v15p2_RRTMGP_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v15p2_RRTMGP_debug +Checking test 060 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3458,14 +3405,14 @@ Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 342.379244 +The total amount of wall time = 333.313594 -Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 060 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_RRTMGP_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_RRTMGP_debug +Checking test 061 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3529,28 +3476,28 @@ Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 350.378805 +The total amount of wall time = 340.652034 -Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 061 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_control_debug_prod -Checking test 061 fv3_ccpp_regional_control_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_control_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_regional_control_debug +Checking test 062 fv3_regional_control_debug 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 -The total amount of wall time = 343.168795 +The total amount of wall time = 341.091158 -Test 061 fv3_ccpp_regional_control_debug PASS +Test 062 fv3_regional_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_control_debug_prod -Checking test 062 fv3_ccpp_control_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_control_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_control_debug +Checking test 063 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3576,14 +3523,14 @@ Checking test 062 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 129.611232 +The total amount of wall time = 124.095935 -Test 062 fv3_ccpp_control_debug PASS +Test 063 fv3_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_stretched_nest_debug_prod -Checking test 063 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_stretched_nest_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_stretched_nest_debug +Checking test 064 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3599,14 +3546,14 @@ Checking test 063 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 410.472189 +The total amount of wall time = 407.127074 -Test 063 fv3_ccpp_stretched_nest_debug PASS +Test 064 fv3_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gsd_debug_prod -Checking test 064 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gsd_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gsd_debug +Checking test 065 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3670,14 +3617,14 @@ Checking test 064 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 197.373577 +The total amount of wall time = 190.071342 -Test 064 fv3_ccpp_gsd_debug PASS +Test 065 fv3_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gsd_diag3d_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gsd_diag3d_debug +Checking test 066 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3741,14 +3688,14 @@ Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 230.638613 +The total amount of wall time = 218.845830 -Test 065 fv3_ccpp_gsd_diag3d_debug PASS +Test 066 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_thompson_debug_prod -Checking test 066 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_thompson_debug +Checking test 067 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3812,14 +3759,14 @@ Checking test 066 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 322.695953 +The total amount of wall time = 320.590012 -Test 066 fv3_ccpp_thompson_debug PASS +Test 067 fv3_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_thompson_no_aero_debug +Checking test 068 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3883,14 +3830,14 @@ Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 310.005248 +The total amount of wall time = 307.651853 -Test 067 fv3_ccpp_thompson_no_aero_debug PASS +Test 068 fv3_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_rrfs_v1beta_debug +Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3954,14 +3901,14 @@ Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 190.089158 +The total amount of wall time = 187.461681 -Test 068 fv3_ccpp_rrfs_v1beta_debug PASS +Test 069 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 070 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4025,14 +3972,14 @@ Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 185.737524 +The total amount of wall time = 189.957662 -Test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 070 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -4046,14 +3993,14 @@ Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 354.356825 +The total amount of wall time = 348.270535 -Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfsv16_ugwpv1_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfsv16_ugwpv1_debug +Checking test 072 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -4111,11 +4058,87 @@ Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 538.833850 +The total amount of wall time = 539.522156 + +Test 072 fv3_gfsv16_ugwpv1_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_ras_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_ras_debug +Checking test 073 fv3_gfs_v16_ras_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 + +The total amount of wall time = 300.749507 -Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 073 fv3_gfs_v16_ras_debug PASS +FAILED TESTS: +Test fv3_gfs_v15p2 041 failed failed +Test fv3_gfs_v15p2 041 failed in run_test failed +Test fv3_gfs_v15p2_RRTMGP 045 failed failed +Test fv3_gfs_v15p2_RRTMGP 045 failed in run_test failed -REGRESSION TEST WAS SUCCESSFUL -Mon Mar 15 15:58:20 UTC 2021 -Elapsed time: 00h:47m:47s. Have a nice day! +REGRESSION TEST FAILED +Tue Mar 23 19:44:35 UTC 2021 +Elapsed time: 00h:43m:03s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index 96b847e7c7..0ca68416ef 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -81,13 +81,13 @@ echo "Compiling ${MAKE_OPT} into $BUILD_NAME.exe on $MACHINE_ID" CMAKE_FLAGS='' if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DDEBUG=Y" + CMAKE_FLAGS="${CMAKE_FLAGS} -DDEBUG=ON" elif [[ "${MAKE_OPT}" == *"REPRO=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DREPRO=Y" + CMAKE_FLAGS="${CMAKE_FLAGS} -DREPRO=ON" fi if [[ "${MAKE_OPT}" == *"32BIT=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -D32BIT=Y" + CMAKE_FLAGS="${CMAKE_FLAGS} -D32BIT=ON" fi if [[ "${MAKE_OPT}" == *"OPENMP=N"* ]]; then @@ -131,20 +131,30 @@ if [[ $? -eq 0 ]]; then fi set -ex -if [[ "${MAKE_OPT}" == *"WW3=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DWW3=Y" +# Valid applications +if [[ "${MAKE_OPT}" == *"APP=ATM"* ]]; then + echo "MAKE_OPT = ${MAKE_OPT}" + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATM" fi -if [[ "${MAKE_OPT}" == *"S2S=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DS2S=Y" +if [[ "${MAKE_OPT}" == *"APP=ATMW"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATMW" fi -if [[ "${MAKE_OPT}" == *"DATM=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DDATM=Y" +if [[ "${MAKE_OPT}" == *"APP=S2S"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=S2S -DMOM6SOLO=ON" fi -if [[ "${MAKE_OPT}" == *"S2S=Y"* ]] || [[ ${MAKE_OPT} == *"DATM=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DMOM6SOLO=ON" +if [[ "${MAKE_OPT}" == *"APP=S2SW"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=S2SW -DMOM6SOLO=ON" +fi + +if [[ "${MAKE_OPT}" == *"APP=DATM"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=DATM" +fi + +if [[ "${MAKE_OPT}" == *"APP=DATM_NEMS"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=DATM_NEMS" fi CMAKE_FLAGS=$(trim "${CMAKE_FLAGS}") @@ -174,3 +184,4 @@ fi elapsed=$SECONDS echo "Elapsed time $elapsed seconds. Compiling ${MAKE_OPT} finished" +echo "Compile $COMPILE_NR elapsed time $elapsed seconds. ${MAKE_OPT}" >> ${LOG_DIR}/compile_${COMPILE_NR}_time.log diff --git a/tests/fv3_conf/compile_bsub.IN_wcoss_cray b/tests/fv3_conf/compile_bsub.IN_wcoss_cray index 6b7ae0bbec..e9e76d1fe8 100644 --- a/tests/fv3_conf/compile_bsub.IN_wcoss_cray +++ b/tests/fv3_conf/compile_bsub.IN_wcoss_cray @@ -16,8 +16,10 @@ module load alps module list set -x +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt echo "Compile started: " `date` aprun -n 1 -j 1 -N 1 -d 24 @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 b/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 index a40f697104..9bdb0713c7 100644 --- a/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 +++ b/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 @@ -12,8 +12,10 @@ set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/compile_qsub.IN_cheyenne b/tests/fv3_conf/compile_qsub.IN_cheyenne index 9d438efdf3..03feac1e69 100644 --- a/tests/fv3_conf/compile_qsub.IN_cheyenne +++ b/tests/fv3_conf/compile_qsub.IN_cheyenne @@ -9,8 +9,10 @@ set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/compile_qsub.IN_wcoss2 b/tests/fv3_conf/compile_qsub.IN_wcoss2 index ee2b789758..9bd9e1e667 100644 --- a/tests/fv3_conf/compile_qsub.IN_wcoss2 +++ b/tests/fv3_conf/compile_qsub.IN_wcoss2 @@ -13,8 +13,10 @@ set -eux cd $PBS_O_WORKDIR export CRAY_CONFIG_DIR=$HOME +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_gaea b/tests/fv3_conf/compile_slurm.IN_gaea index f5051b92a6..2071d4b00f 100644 --- a/tests/fv3_conf/compile_slurm.IN_gaea +++ b/tests/fv3_conf/compile_slurm.IN_gaea @@ -11,8 +11,10 @@ set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_hera b/tests/fv3_conf/compile_slurm.IN_hera index 45fdbbe389..2bab9972bb 100644 --- a/tests/fv3_conf/compile_slurm.IN_hera +++ b/tests/fv3_conf/compile_slurm.IN_hera @@ -10,8 +10,10 @@ set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_jet b/tests/fv3_conf/compile_slurm.IN_jet index dc1b29c538..a04541d66e 100644 --- a/tests/fv3_conf/compile_slurm.IN_jet +++ b/tests/fv3_conf/compile_slurm.IN_jet @@ -11,8 +11,10 @@ set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_orion b/tests/fv3_conf/compile_slurm.IN_orion index 6d8bdeb8b9..f100c8121d 100644 --- a/tests/fv3_conf/compile_slurm.IN_orion +++ b/tests/fv3_conf/compile_slurm.IN_orion @@ -11,8 +11,10 @@ set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_bsub.IN_wcoss_cray b/tests/fv3_conf/fv3_bsub.IN_wcoss_cray index 81359cca4f..424ecc989d 100644 --- a/tests/fv3_conf/fv3_bsub.IN_wcoss_cray +++ b/tests/fv3_conf/fv3_bsub.IN_wcoss_cray @@ -10,6 +10,7 @@ #BSUB -M 500 set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt set +x source ./module-setup.sh @@ -28,5 +29,4 @@ export KMP_AFFINITY=disabled aprun -j 1 -n @[TASKS] -N @[TPN] -d @[THRD] -cc depth ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 b/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 index 0079469187..d28f04265e 100644 --- a/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 +++ b/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 @@ -11,6 +11,7 @@ #BSUB -R affinity[core(@[THRD])] set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt set +x source ./module-setup.sh @@ -28,5 +29,4 @@ export I_MPI_DEBUG=4 mpirun -l -n @[TASKS] ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_msub.IN b/tests/fv3_conf/fv3_msub.IN deleted file mode 100644 index cdce1e094f..0000000000 --- a/tests/fv3_conf/fv3_msub.IN +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash -l -#PBS -S /bin/bash -#PBS -o out -#PBS -e err -#PBS -N @[JBNME] -#PBS -A @[ACCNR] -#PBS -q @[QUEUE] -#PBS -d . -#PBS -l partition=@[PARTITION] -#PBS -l size=@[NODES] -#PBS -l walltime=00:@[WLCLK]:00 - -set -ux - -set +x -module use $( pwd -P ) -module load modules.fv3 -set -x -module list - -echo "Model started: " `date` - -export OMP_NUM_THREADS=@[THRD] -export OMP_STACKSIZE=1024M -export NC_BLKSZ=1M - -aprun -n @[TASKS] -d@[THRD] -j1 ./fv3.exe - -echo "Model ended: " `date` - -exit diff --git a/tests/fv3_conf/fv3_qsub.IN_cheyenne b/tests/fv3_conf/fv3_qsub.IN_cheyenne index f3476d9b3b..9a651df675 100644 --- a/tests/fv3_conf/fv3_qsub.IN_cheyenne +++ b/tests/fv3_conf/fv3_qsub.IN_cheyenne @@ -8,6 +8,7 @@ #PBS -l walltime=00:@[WLCLK]:00 set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt set +x source ./module-setup.sh @@ -30,5 +31,4 @@ sync && sleep 1 mpiexec_mpt -np @[TASKS] ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_qsub.IN_wcoss2 b/tests/fv3_conf/fv3_qsub.IN_wcoss2 index d000b7e493..2316551603 100644 --- a/tests/fv3_conf/fv3_qsub.IN_wcoss2 +++ b/tests/fv3_conf/fv3_qsub.IN_wcoss2 @@ -9,6 +9,7 @@ #PBS -l walltime=00:@[WLCLK]:00 set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt cd $PBS_O_WORKDIR export CRAY_CONFIG_DIR=$HOME @@ -28,5 +29,4 @@ export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 cray aprun -n @[TASKS] ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea index ada92b658d..fcadd8c8dc 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea +++ b/tests/fv3_conf/fv3_slurm.IN_gaea @@ -8,7 +8,8 @@ #SBATCH --ntasks=@[TASKS] #SBATCH --time=@[WLCLK] -set -ux +set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt set +x source ./module-setup.sh @@ -30,5 +31,4 @@ sync && sleep 1 srun ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_hera b/tests/fv3_conf/fv3_slurm.IN_hera index 6c48bb4f64..c8c12d041c 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hera +++ b/tests/fv3_conf/fv3_slurm.IN_hera @@ -11,6 +11,7 @@ ### #SBATCH --exclusive set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt set +x source ./module-setup.sh @@ -35,5 +36,4 @@ sync && sleep 1 srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_jet b/tests/fv3_conf/fv3_slurm.IN_jet index d44012ed11..bb7fb42a36 100644 --- a/tests/fv3_conf/fv3_slurm.IN_jet +++ b/tests/fv3_conf/fv3_slurm.IN_jet @@ -10,6 +10,7 @@ ### #SBATCH --exclusive set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt set +x source ./module-setup.sh @@ -34,5 +35,4 @@ sync && sleep 1 srun ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_orion b/tests/fv3_conf/fv3_slurm.IN_orion index d1c142f513..857550fb30 100644 --- a/tests/fv3_conf/fv3_slurm.IN_orion +++ b/tests/fv3_conf/fv3_slurm.IN_orion @@ -12,6 +12,7 @@ #SBATCH --exclusive set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt set +x source ./module-setup.sh @@ -39,5 +40,4 @@ sync && sleep 1 srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_stampede b/tests/fv3_conf/fv3_slurm.IN_stampede index 59fe5a87f7..1c81669128 100644 --- a/tests/fv3_conf/fv3_slurm.IN_stampede +++ b/tests/fv3_conf/fv3_slurm.IN_stampede @@ -1,13 +1,14 @@ #!/bin/bash -l #SBATCH -o out #SBATCH -e err -#SBATCH -N 4 +#SBATCH -N @[NODES] #SBATCH -A @[ACCNR] -#SBATCH -p skx-dev +#SBATCH -p @[QUEUE] #SBATCH -n @[TASKS] #SBATCH -t 00:@[WLCLK]:00 set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt set +x source ./module-setup.sh @@ -32,5 +33,4 @@ export LD_BIND_NOW=1 ibrun ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/rt.conf b/tests/rt.conf index c1669c361e..3a39fd4416 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -2,7 +2,7 @@ # PROD tests # ################################################################################################################################################################################### -COMPILE | SUITES=FV3_GFS_2017 | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017 | | fv3 | RUN | fv3_control | | fv3 | RUN | fv3_decomp | - jet.intel | | @@ -23,21 +23,21 @@ RUN | fv3_iau RUN | fv3_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 | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +COMPILE | APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp | + wcoss_dell_p3 hera.intel orion.intel | fv3 | RUN | fv3_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | RUN | fv3_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | RUN | fv3_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | # Run multigases test in REPRO mode to avoid numerical instability in the deep atmosphere -COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y | | fv3 | RUN | fv3_multigases | | fv3 | -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | RUN | fv3_control_32bit | | fv3 | RUN | fv3_stretched | | fv3 | RUN | fv3_stretched_nest | | fv3 | -COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | RUN | fv3_regional_control | | fv3 | RUN | fv3_regional_restart | | fv3 | fv3_regional_control RUN | fv3_regional_quilt | | fv3 | @@ -49,19 +49,19 @@ RUN | fv3_regional_quilt_netcdf_parallel #RUN | fv3_regional_c768 | jet.intel | fv3 | #RUN | fv3_regional_c768 | orion.intel | fv3 | -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | RUN | fv3_gfdlmp | | fv3 | RUN | fv3_gfdlmprad_gwd | | fv3 | RUN | fv3_gfdlmprad_noahmp | | fv3 | -COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | #RUN | fv3_csawmgshoc | | fv3 | #RUN | fv3_csawmg3shoc127 | | fv3 | RUN | fv3_csawmg | | fv3 | RUN | fv3_satmedmf | | fv3 | RUN | fv3_satmedmfq | | fv3 | -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | RUN | fv3_gfdlmp_32bit | | fv3 | RUN | fv3_gfdlmprad_32bit_post | | fv3 | RUN | fv3_cpt | | fv3 | @@ -74,7 +74,7 @@ RUN | fv3_thompson_no_aero # This test crashes with NaNs on jet.intel RUN | fv3_rrfs_v1beta | - jet.intel | fv3 | -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | # fv3_gfs_v15p2 and fv3_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 RUN | fv3_gfs_v15p2 | - cheyenne.intel | fv3 | RUN | fv3_gfs_v16 | | fv3 | @@ -85,16 +85,16 @@ RUN | fv3_gfs_v16_RRTMGP RUN | fv3_gfs_v16_RRTMGP_c192L127 | | fv3 | RUN | fv3_gfs_v16_RRTMGP_2thrd | | fv3 | -COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_v16_csawmg | | fv3 | # fv3_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests RUN | fv3_gfsv16_csawmg | - cheyenne.intel | fv3 | RUN | fv3_gfsv16_csawmgt | - cheyenne.intel | fv3 | -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | RUN | fv3_gocart_clm | | fv3 | RUN | fv3_gfs_v16_flake | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras | | fv3 | +COMPILE | APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras | | fv3 | RUN | fv3_HAFS_v0_hwrf_thompson | | fv3 | #RUN | fv3_HAFS_v0_hwrf | | fv3 | RUN | fv3_esg_HAFS_v0_hwrf_thompson | | fv3 | @@ -106,13 +106,13 @@ RUN | fv3_gfs_v16_ras # DEBUG tests # ################################################################################################################################################################################### -COMPILE | DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | | fv3 | +COMPILE | APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | | fv3 | RUN | fv3_gfs_v15p2_debug | | fv3 | RUN | fv3_gfs_v16_debug | | fv3 | RUN | fv3_gfs_v15p2_RRTMGP_debug | | fv3 | RUN | fv3_gfs_v16_RRTMGP_debug | | fv3 | -COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | RUN | fv3_regional_control_debug | | fv3 | RUN | fv3_control_debug | | fv3 | RUN | fv3_stretched_nest_debug | | fv3 | @@ -122,7 +122,7 @@ RUN | fv3_thompson_debug RUN | fv3_thompson_no_aero_debug | | fv3 | RUN | fv3_rrfs_v1beta_debug | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y | | fv3 | +COMPILE | APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y | | fv3 | RUN | fv3_HAFS_v0_hwrf_thompson_debug | | fv3 | #RUN | fv3_HAFS_v0_hwrf_debug | | fv3 | RUN | fv3_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | @@ -133,7 +133,7 @@ RUN | fv3_gfs_v16_ras_debug # CPLD tests # ################################################################################################################################################################################### -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | +COMPILE | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled | - wcoss_cray jet.intel | fv3 | RUN | cpld_control | - wcoss_cray jet.intel | fv3 | RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 | @@ -165,13 +165,13 @@ RUN | cpld_restart_bmarkfrac RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +COMPILE | APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_control_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,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | +COMPILE | APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled | - wcoss_cray jet.intel | fv3 | RUN | cpld_debug | - wcoss_cray jet.intel | fv3 | RUN | cpld_debugfrac | - wcoss_cray jet.intel | fv3 | @@ -179,7 +179,7 @@ RUN | cpld_debugfrac # Data Atmosphere tests # ################################################################################################################################################################################### -COMPILE | DATM=Y S2S=Y | - wcoss_cray jet.intel | fv3 | +COMPILE | APP=DATM_NEMS | - wcoss_cray jet.intel | fv3 | RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 | RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr RUN | datm_control_gefs | - wcoss_cray jet.intel | fv3 | @@ -190,5 +190,5 @@ RUN | datm_bulk_gefs RUN | datm_mx025_cfsr | - wcoss_cray jet.intel gaea.intel | fv3 | RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 | -COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 | +COMPILE | APP=DATM_NEMS DEBUG=Y | - wcoss_cray jet.intel | fv3 | RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 5a892accb0..fa245cf8fe 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -327,11 +327,12 @@ elif [[ $MACHINE_ID = stampede.* ]]; then export PYTHONPATH= ECFLOW_START= - QUEUE=skx-dev + QUEUE=skx-normal COMPILE_QUEUE=skx-dev PARTITION= - dprefix=$WORK/ufs-weather-model/run - DISKNM=$WORK/ufs-weather-model/RT + ACCNR=TG-EES200015 + dprefix=$SCRATCH/ufs-weather-model/run + DISKNM=/work/07736/minsukji/stampede2/ufs-weather-model/RT STMP=$dprefix PTMP=$dprefix SCHEDULER=slurm @@ -435,7 +436,6 @@ if [[ $CREATE_BASELINE == true ]]; then mkdir -p "${NEW_BASELINE}" fi -COMPILE_LOG=${PATHRT}/Compile_$MACHINE_ID.log REGRESSIONTEST_LOG=${PATHRT}/RegressionTests_$MACHINE_ID.log date > ${REGRESSIONTEST_LOG} @@ -444,12 +444,13 @@ echo >> ${REGRESSIONTEST_LOG} source default_vars.sh +JOB_NR=0 TEST_NR=0 COMPILE_NR=0 COMPILE_PREV_WW3_NR='' rm -f fail_test -LOG_DIR=${PATHRT}/log_$MACHINE_ID +export LOG_DIR=${PATHRT}/log_$MACHINE_ID rm -rf ${LOG_DIR} mkdir ${LOG_DIR} @@ -529,8 +530,7 @@ if [[ $ECFLOW == true ]]; then rm -rf ${ECFLOW_RUN} mkdir -p ${ECFLOW_RUN}/${ECFLOW_SUITE} cp head.h tail.h ${ECFLOW_RUN} - > ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - cat << EOF >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}.def suite ${ECFLOW_SUITE} edit ECF_HOME '${ECFLOW_RUN}' edit ECF_INCLUDE '${ECFLOW_RUN}' @@ -582,6 +582,8 @@ while read -r line || [ "$line" ]; do [[ ${#line} == 0 ]] && continue [[ $line == \#* ]] && continue + JOB_NR=$( printf '%03d' $(( 10#$JOB_NR + 1 )) ) + if [[ $line == COMPILE* ]] ; then MAKE_OPT=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') @@ -601,9 +603,11 @@ while read -r line || [ "$line" ]; do fi fi - (( COMPILE_NR += 1 )) + export COMPILE_NR=$( printf '%03d' $(( 10#$COMPILE_NR + 1 )) ) cat << EOF > ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env + export JOB_NR=${JOB_NR} + export COMPILE_NR=${COMPILE_NR} export MACHINE_ID=${MACHINE_ID} export RT_COMPILER=${RT_COMPILER} export PATHRT=${PATHRT} @@ -697,6 +701,7 @@ EOF fi cat << EOF > ${RUNDIR_ROOT}/run_test_${TEST_NR}.env + export JOB_NR=${JOB_NR} export MACHINE_ID=${MACHINE_ID} export RT_COMPILER=${RT_COMPILER} export RTPWD=${RTPWD} @@ -758,7 +763,7 @@ fi ## regression test is either failed or successful ## set +e -cat ${LOG_DIR}/compile_*.log > ${COMPILE_LOG} +cat ${LOG_DIR}/compile_*_time.log >> ${REGRESSIONTEST_LOG} cat ${LOG_DIR}/rt_*.log >> ${REGRESSIONTEST_LOG} if [[ -e fail_test ]]; then echo "FAILED TESTS: " @@ -783,6 +788,6 @@ fi date >> ${REGRESSIONTEST_LOG} -elapsed_time=$( printf '%02dh:%02dm:%02ds\n' $(($SECONDS%86400/3600)) $(($SECONDS%3600/60)) $(($SECONDS%60)) ) +elapsed_time=$( printf '%02dh:%02dm:%02ds\n' $((SECONDS%86400/3600)) $((SECONDS%3600/60)) $((SECONDS%60)) ) echo "Elapsed time: ${elapsed_time}. Have a nice day!" >> ${REGRESSIONTEST_LOG} echo "Elapsed time: ${elapsed_time}. Have a nice day!" diff --git a/tests/rt_35d.conf b/tests/rt_35d.conf index 9397d51c46..42eb3b230c 100644 --- a/tests/rt_35d.conf +++ b/tests/rt_35d.conf @@ -1,4 +1,4 @@ -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | + hera.intel orion.intel | fv3 | | +COMPILE | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | + hera.intel orion.intel | fv3 | | RUN | cpld_bmark_35d | | fv3 | | 2012010100 RUN | cpld_bmark_35d | | fv3 | | 2012040100 RUN | cpld_bmark_35d | | fv3 | | 2012070100 @@ -8,7 +8,7 @@ RUN | cpld_bmark_35d 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 | | +COMPILE | APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | + 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 @@ -18,7 +18,7 @@ RUN | cpld_bmark_wave_35d 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 | + hera.intel orion.intel | fv3 | | +COMPILE | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | + hera.intel orion.intel | fv3 | | RUN | cpld_bmarkfrac_35d | | fv3 | | 2012010100 RUN | cpld_bmarkfrac_35d | | fv3 | | 2012040100 RUN | cpld_bmarkfrac_35d | | fv3 | | 2012070100 @@ -28,7 +28,7 @@ RUN | cpld_bmarkfrac_35d RUN | cpld_bmarkfrac_35d | | fv3 | | 2013070100 RUN | cpld_bmarkfrac_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 | | +COMPILE | APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | + hera.intel orion.intel | fv3 | | RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2012010100 RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2012040100 RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2012070100 @@ -38,7 +38,7 @@ RUN | cpld_bmarkfrac_wave_35d RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2013070100 RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2013100100 -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | + hera.intel orion.intel | fv3 | | +COMPILE | APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled | + hera.intel orion.intel | fv3 | | RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012010100 RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012040100 RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012070100 diff --git a/tests/rt_ccpp_dev.conf b/tests/rt_ccpp_dev.conf index 562022cb6f..fd61d05ed3 100644 --- a/tests/rt_ccpp_dev.conf +++ b/tests/rt_ccpp_dev.conf @@ -4,7 +4,7 @@ # CCPP REPRO tests # ############################################################################################################################################################ -COMPILE | REPRO=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah | | fv3 | +COMPILE | APP=ATM 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 | | fv3 | RUN | fv3_ccpp_gf_thompson | | fv3 | @@ -15,12 +15,12 @@ RUN | fv3_ccpp_gsd_lndp RUN | fv3_ccpp_gsd_noah | | fv3 | RUN | fv3_ccpp_gsd_noah_lndp | | fv3 | -COMPILE | REPRO=Y SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | | fv3 | +COMPILE | APP=ATM REPRO=Y SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | | fv3 | RUN | fv3_ccpp_gsd_mynnsfc | | fv3 | RUN | fv3_ccpp_gsd_noah_mynnsfc | | fv3 | -COMPILE | REPRO=Y SUITES=FV3_GFS_v16_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | | fv3 | +COMPILE | APP=ATM REPRO=Y SUITES=FV3_GFS_v16_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | | fv3 | RUN | fv3_ccpp_thompson | | fv3 | RUN | fv3_ccpp_thompson_no_aero | | fv3 | @@ -28,7 +28,7 @@ RUN | fv3_ccpp_gf 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 | | fv3 | +COMPILE | APP=ATM 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 | | | @@ -36,7 +36,7 @@ RUN | fv3_ccpp_rap RUN | fv3_ccpp_hrrr | | fv3 | # Compile without suite argument for CAPS physics -COMPILE | REPRO=Y | | fv3 | +COMPILE | APP=ATM REPRO=Y | | fv3 | # Run tests RUN | fv3_ccpp_shinhong | | fv3 | RUN | fv3_ccpp_ysu | | fv3 | @@ -46,7 +46,7 @@ RUN | fv3_ccpp_ntiedtke # CCPP DEBUG tests # ############################################################################################################################################################ -COMPILE | DEBUG=Y SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc,FV3_GFS_v16_thompson | | fv3 | +COMPILE | APP=ATM DEBUG=Y SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc,FV3_GFS_v16_thompson | | fv3 | RUN | fv3_ccpp_gsd_debug | | fv3 | RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | @@ -54,6 +54,6 @@ RUN | fv3_ccpp_gsd_mynnsfc_debug 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 | | fv3 | +COMPILE | APP=ATM 32BIT=Y DEBUG=Y SUITES=FV3_GSD_SAR,FV3_RAP,FV3_HRRR | | fv3 | # Run tests RUN | fv3_ccpp_gsd_sar_debug | | fv3 | diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 23ea04488f..d1bac460d1 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -2,10 +2,10 @@ # CCPP PROD tests # ################################################################################################################################################################## -COMPILE | SUITES=FV3_GFS_2017_gfdlmp | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017_gfdlmp | | fv3 | RUN | fv3_gfdlmp | | fv3 | -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | RUN | fv3_gfs_v15p2 | | fv3 | RUN | fv3_gfs_v16 | | fv3 | RUN | fv3_gfs_v16_restart | | | fv3_gfs_v16 @@ -14,13 +14,13 @@ RUN | fv3_gfs_v16_flake RUN | fv3_gfs_v15p2_RRTMGP | | fv3 | RUN | fv3_gfs_v16_RRTMGP | | fv3 | -COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y | | fv3 | RUN | fv3_gsd | | fv3 | RUN | fv3_thompson | | fv3 | RUN | fv3_thompson_no_aero | | fv3 | RUN | fv3_rrfs_v1beta | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras | | fv3 | +COMPILE | APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras | | fv3 | RUN | fv3_HAFS_v0_hwrf_thompson | | fv3 | #RUN | fv3_HAFS_v0_hwrf | | fv3 | RUN | fv3_esg_HAFS_v0_hwrf_thompson | | fv3 | @@ -33,7 +33,7 @@ RUN | fv3_gfs_v16_ras ################################################################################################################################################################## # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -COMPILE | 32BIT=Y DEBUG=Y | | fv3 | +COMPILE | APP=ATM 32BIT=Y DEBUG=Y | | fv3 | RUN | fv3_control_debug | | fv3 | RUN | fv3_regional_control_debug | | fv3 | RUN | fv3_rrfs_v1beta_debug | | fv3 | @@ -41,16 +41,16 @@ RUN | fv3_gsd_debug RUN | fv3_thompson_debug | | fv3 | RUN | fv3_thompson_no_aero_debug | | fv3 | -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y | | fv3 | RUN | fv3_gfs_v15p2_debug | | fv3 | RUN | fv3_gfs_v16_debug | | fv3 | RUN | fv3_gfs_v15p2_RRTMGP_debug | | fv3 | RUN | fv3_gfs_v16_RRTMGP_debug | | fv3 | -COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | RUN | fv3_multigases | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y | | fv3 | +COMPILE | APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y | | fv3 | RUN | fv3_HAFS_v0_hwrf_thompson_debug | | fv3 | #RUN | fv3_HAFS_v0_hwrf_debug | | fv3 | RUN | fv3_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | @@ -61,10 +61,10 @@ RUN | fv3_gfs_v16_ras_debug # S2S tests # ################################################################################################################################################################## -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | | fv3 | +COMPILE | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | | fv3 | ################################################################################################################################################################## # Data Atmosphere tests # ################################################################################################################################################################## -COMPILE | DATM=Y S2S=Y | | fv3 | +COMPILE | APP=DATM_NEMS | | fv3 | diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index a6e982a4de..34ed5dff25 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -375,8 +375,6 @@ rocoto_create_compile_task() { echo " " >> $ROCOTO_XML fi - rocoto_cmd="&PATHRT;/compile.sh $MACHINE_ID \"${MAKE_OPT}\" $COMPILE_NR" - # serialize WW3 builds. FIXME DEP_STRING="" if [[ ${MAKE_OPT^^} =~ "WW3=Y" && ${COMPILE_PREV_WW3_NR} != '' ]]; then @@ -393,7 +391,6 @@ rocoto_create_compile_task() { fi if [[ ${MACHINE_ID} == wcoss_cray ]]; then BUILD_CORES=24 - rocoto_cmd="aprun -n 1 -j 1 -N 1 -d $BUILD_CORES $rocoto_cmd" NATIVE=" PATHTR&PATHTR;" fi if [[ ${MACHINE_ID} == jet ]]; then @@ -406,14 +403,15 @@ rocoto_create_compile_task() { cat << EOF >> $ROCOTO_XML $DEP_STRING - $rocoto_cmd + &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_NR} compile_${COMPILE_NR} ${ACCNR} ${COMPILE_QUEUE} ${PARTITION} ${BUILD_CORES} ${BUILD_WALLTIME} - &LOG;/compile_${COMPILE_NR}.log + &RUNDIR_ROOT;/compile_${COMPILE_NR}/out + &RUNDIR_ROOT;/compile_${COMPILE_NR}/err ${NATIVE} EOF @@ -450,7 +448,8 @@ rocoto_create_run_task() { ${PARTITION} ${NODES}:ppn=${TPN} 00:${WLCLK}:00 - &LOG;/run_${TEST_NR}_${TEST_NAME}${RT_SUFFIX}.log + &RUNDIR_ROOT;/${TEST_NAME}${RT_SUFFIX}/out + &RUNDIR_ROOT;/${TEST_NAME}${RT_SUFFIX}/err ${NATIVE} EOF diff --git a/tests/run_compile.sh b/tests/run_compile.sh index 7ee1db6ea5..5de9cb5663 100755 --- a/tests/run_compile.sh +++ b/tests/run_compile.sh @@ -35,6 +35,8 @@ export TEST_NR=${COMPILE_NR} export JBNME="compile_${COMPILE_NR}" export RUNDIR=${RUNDIR_ROOT}/${TEST_NAME}_${TEST_NR} +echo -n "${JBNME}, $( date +%s )," > ${LOG_DIR}/job_${JOB_NR}_timestamp.txt + source rt_utils.sh source atparse.bash @@ -64,5 +66,7 @@ fi # End compile job ################################################################################ +echo " $( date +%s )" >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt + elapsed=$SECONDS echo "Elapsed time $elapsed seconds. Compile ${COMPILE_NR}" diff --git a/tests/run_test.sh b/tests/run_test.sh index 582e3bd179..5e9cb3ac52 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -50,6 +50,8 @@ export CNTL_DIR=${CNTL_DIR}${BL_SUFFIX} export JBNME=$(basename $RUNDIR_ROOT)_${TEST_NR} +echo -n "${TEST_NAME}, $( date +%s )," > ${LOG_DIR}/job_${JOB_NR}_timestamp.txt + UNIT_TEST=${UNIT_TEST:-false} if [[ ${UNIT_TEST} == false ]]; then REGRESSIONTEST_LOG=${LOG_DIR}/rt_${TEST_NR}_${TEST_NAME}${RT_SUFFIX}.log @@ -167,5 +169,7 @@ check_results # End test ################################################################################ +echo " $( date +%s )" >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt + elapsed=$SECONDS echo "Elapsed time $elapsed seconds. Test ${TEST_NAME}" diff --git a/tests/utest b/tests/utest index 4ba5c5bbfa..28a2a9b8d5 100755 --- a/tests/utest +++ b/tests/utest @@ -55,7 +55,7 @@ cleanup() { build_utests() { [[ -f $build_file ]] || error "$build_file does not exist" - rm -f fv3_*.exe modules.fv3_* $compile_log + rm -f fv3_*.exe modules.fv3_* model_found=false base_opt= @@ -92,9 +92,12 @@ build_utests() { ;; esac MAKE_OPT=$(echo $MAKE_OPT | sed -e 's/^ *//' -e 's/ *$//') + export COMPILE_NR=${name} cat <<-EOF > ${RUNDIR_ROOT}/compile_${name}.env export MACHINE_ID=${MACHINE_ID} + export JOB_NR=${COMPILE_NR} + export COMPILE_NR=${COMPILE_NR} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export SCHEDULER=${SCHEDULER} @@ -119,6 +122,7 @@ build_utests() { } run_utests() { + JOB_NR=0 for rc in $run_case; do # load default variables and override as necessary source default_vars.sh @@ -132,6 +136,7 @@ run_utests() { comp_nm=std RT_SUFFIX="_${rc}" + JOB_NR=$( printf '%03d' $(( 10#$JOB_NR + 1 )) ) case $rc in std_base) @@ -332,6 +337,7 @@ run_utests() { esac cat <<- EOF > ${RUNDIR_ROOT}/run_test${RT_SUFFIX}.env + export JOB_NR=${JOB_NR} export MACHINE_ID=${MACHINE_ID} export RTPWD=${RTPWD} export INPUTDATA_ROOT=${INPUTDATA_ROOT} @@ -631,7 +637,7 @@ if [[ $run_case =~ std_base && ! $run_case =~ ^std_base ]]; then fi # log directory -LOG_DIR=${PATHRT}/log_ut_$MACHINE_ID +export LOG_DIR=${PATHRT}/log_ut_$MACHINE_ID rm -rf ${LOG_DIR} mkdir ${LOG_DIR} @@ -667,7 +673,6 @@ if [[ $ECFLOW == true ]]; then fi fi -compile_log=${PATHRT}/Compile_ut_$MACHINE_ID.log unittest_log=${PATHRT}/UnitTests_$MACHINE_ID.log REGRESSIONTEST_LOG=$unittest_log @@ -699,9 +704,6 @@ if [[ $skip_compile == true ]]; then else echo "cases to compile: $compile_case" build_utests - if [[ $ECFLOW == false ]]; then - cat ${LOG_DIR}/compile_*.log > ${compile_log} - fi fi # if skipping run, stop after build. print out status information and @@ -749,9 +751,6 @@ fi #### UNIT TEST STATUS #### ######################################################################## set +e -if [[ $ECFLOW == true ]]; then - cat ${LOG_DIR}/compile_*.log > ${compile_log} -fi cat ${LOG_DIR}/ut_*.log | tee -a ${unittest_log} if [[ -e fail_unit_test ]]; then diff --git a/tests/utest.bld b/tests/utest.bld index a2852dbeb9..be685aa6d1 100644 --- a/tests/utest.bld +++ b/tests/utest.bld @@ -1,22 +1,22 @@ -fv3_control | SUITES=FV3_GFS_2017 -fv3_wrtGauss_netcdf_esmf | SUITES=FV3_GFS_2017 -fv3_wrtGauss_netcdf | SUITES=FV3_GFS_2017 -fv3_wrtGlatlon_netcdf | SUITES=FV3_GFS_2017 -fv3_wrtGauss_nemsio | SUITES=FV3_GFS_2017 -fv3_stochy | SUITES=FV3_GFS_2017 -fv3_iau | SUITES=FV3_GFS_2017 -fv3_ca | SUITES=FV3_GFS_2017 -fv3_lheatstrg | SUITES=FV3_GFS_2017 -fv3_gfdlmprad | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -fv3_gfdlmprad_atmwav | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -fv3_multigases | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -fv3_gfdlmp | SUITES=FV3_GFS_2017_gfdlmp, FV3_GFS_2017_gfdlmp_noahmp -fv3_gfdlmprad_gwd | SUITES=FV3_GFS_2017_gfdlmp, FV3_GFS_2017_gfdlmp_noahmp -fv3_gfdlmprad_noahmp | SUITES=FV3_GFS_2017_gfdlmp, FV3_GFS_2017_gfdlmp_noahmp -fv3_csawmg | SUITES=FV3_GFS_2017_csawmg -fv3_satmedmf | SUITES=FV3_GFS_2017_satmedmf -fv3_satmedmfq | SUITES=FV3_GFS_2017_satmedmfq -fv3_gfsv16_csawmg | SUITES=FV3_GFS_v16_csawmg -fv3_gfsv16_csawmgt | SUITES=FV3_GFS_v16_csawmg -fv3_gocart_clm | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -fv3_gfs_v16_flake | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +fv3_control | APP=ATM SUITES=FV3_GFS_2017 +fv3_wrtGauss_netcdf_esmf | APP=ATM SUITES=FV3_GFS_2017 +fv3_wrtGauss_netcdf | APP=ATM SUITES=FV3_GFS_2017 +fv3_wrtGlatlon_netcdf | APP=ATM SUITES=FV3_GFS_2017 +fv3_wrtGauss_nemsio | APP=ATM SUITES=FV3_GFS_2017 +fv3_stochy | APP=ATM SUITES=FV3_GFS_2017 +fv3_iau | APP=ATM SUITES=FV3_GFS_2017 +fv3_ca | APP=ATM SUITES=FV3_GFS_2017 +fv3_lheatstrg | APP=ATM SUITES=FV3_GFS_2017 +fv3_gfdlmprad | APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +fv3_gfdlmprad_atmwav | APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +fv3_multigases | APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +fv3_gfdlmp | APP=ATM SUITES=FV3_GFS_2017_gfdlmp, FV3_GFS_2017_gfdlmp_noahmp +fv3_gfdlmprad_gwd | APP=ATM SUITES=FV3_GFS_2017_gfdlmp, FV3_GFS_2017_gfdlmp_noahmp +fv3_gfdlmprad_noahmp | APP=ATM SUITES=FV3_GFS_2017_gfdlmp, FV3_GFS_2017_gfdlmp_noahmp +fv3_csawmg | APP=ATM SUITES=FV3_GFS_2017_csawmg +fv3_satmedmf | APP=ATM SUITES=FV3_GFS_2017_satmedmf +fv3_satmedmfq | APP=ATM SUITES=FV3_GFS_2017_satmedmfq +fv3_gfsv16_csawmg | APP=ATM SUITES=FV3_GFS_v16_csawmg +fv3_gfsv16_csawmgt | APP=ATM SUITES=FV3_GFS_v16_csawmg +fv3_gocart_clm | APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +fv3_gfs_v16_flake | APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake From a86b1ec6b097600521638f81be524a3ef4cc747c Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Thu, 25 Mar 2021 20:18:30 +0000 Subject: [PATCH 087/109] &gfs_physics_nml print_diff_pgr=.true. will print per-timestep pgr change stats --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index c4dff78560..7fb4c3082a 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c4dff78560fe86a5bf1495f4f24f782d90010acd +Subproject commit 7fb4c3082a5e41a2c6315624f4798035190d41ae From e03d7287b26b748de28d2dd9258773e9ab50b630 Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Thu, 25 Mar 2021 20:29:46 +0000 Subject: [PATCH 088/109] point to sam's repository for FV3 and atmos_cubed_sphere --- .gitmodules | 4 ++-- FV3 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index 5524c9d299..a9ad3c1d9d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,7 @@ [submodule "FV3"] path = FV3 - url = https://github.com/NOAA-GSL/fv3atm - branch = gsl/develop + url = https://github.com/SamuelTrahanNOAA/fv3atm + branch = feature/per-timestep-pgr-like-wrf [submodule "NEMS"] path = NEMS url = https://github.com/NOAA-EMC/NEMS diff --git a/FV3 b/FV3 index 7fb4c3082a..c19100b069 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 7fb4c3082a5e41a2c6315624f4798035190d41ae +Subproject commit c19100b0693767740a87b66db03790ffa072dc9a From 59de5e6428dd76c23e67852e2343ae69e76044fc Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Thu, 25 Mar 2021 21:34:13 +0000 Subject: [PATCH 089/109] Add units and lat/lon to per-timestep pgr stats --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index c19100b069..6f9299bb17 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c19100b0693767740a87b66db03790ffa072dc9a +Subproject commit 6f9299bb1793ad0fe21f5266c6ad16cab6e96e49 From 2eb59c773e50fe13ad5906a97055b49fec281a51 Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Thu, 25 Mar 2021 22:23:13 +0000 Subject: [PATCH 090/109] Rebase atmos_cubed_sphere to NOAA-GFDL dev/emc branch --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 6f9299bb17..1d47548f7f 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 6f9299bb1793ad0fe21f5266c6ad16cab6e96e49 +Subproject commit 1d47548f7f779fb812a3c5882442788e9896dc37 From 40221b4eb062996c419de1e2cec3b7d4f95e7888 Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Thu, 25 Mar 2021 23:05:33 +0000 Subject: [PATCH 091/109] Print mean pgr change as hPa/hr and other pgr data as bars. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 6f9299bb17..cd31df5fa5 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 6f9299bb1793ad0fe21f5266c6ad16cab6e96e49 +Subproject commit cd31df5fa54b100dbb4057b264f7e9db4a4f30b0 From de799582bfdfa0a938f4d74d3e51f8f5b5523654 Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Fri, 26 Mar 2021 16:32:07 +0000 Subject: [PATCH 092/109] Remove changes from atmos_cubed_sphere and simplify atmos_model.F90 changes. --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index cd31df5fa5..84c9f0b0d7 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit cd31df5fa54b100dbb4057b264f7e9db4a4f30b0 +Subproject commit 84c9f0b0d7eae4916bea0546ffab8f15069eec1f From e93bd16d6cf53f14b8a7e0462225d63647b5edb4 Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Fri, 26 Mar 2021 18:52:23 +0000 Subject: [PATCH 093/109] print mean abs change instead of mean change in pgr --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index 84c9f0b0d7..591edc0179 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 84c9f0b0d7eae4916bea0546ffab8f15069eec1f +Subproject commit 591edc0179ffe05090dd46eef634773560999319 From c780ec0fef52f6c382f49ab7908ac41091da8404 Mon Sep 17 00:00:00 2001 From: AnningCheng-NOAA <48297505+AnningCheng-NOAA@users.noreply.github.com> Date: Fri, 26 Mar 2021 17:51:26 -0400 Subject: [PATCH 094/109] upgrade coarse resolution OPAC aerosol with more advanced high resolution MERRA2 aerosol data (#451) * Implement 0.625 degree MERRA2 climatological aerosol * Update gfs_v16 tests --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 220 +-- tests/RegressionTests_cheyenne.intel.log | 1014 ++++++------- tests/RegressionTests_gaea.intel.log | 1144 ++++++-------- tests/RegressionTests_hera.gnu.log | 218 +-- tests/RegressionTests_hera.intel.log | 720 ++++----- tests/RegressionTests_jet.intel.log | 755 ++++------ tests/RegressionTests_orion.intel.log | 1242 ++++++---------- tests/RegressionTests_wcoss_cray.log | 719 ++++----- tests/RegressionTests_wcoss_dell_p3.log | 1725 ++++++++++------------ tests/fv3_conf/gfs_v16_run.IN | 8 + tests/parm/v16_c96.nml.IN | 2 +- tests/rt.conf | 9 +- tests/rt.sh | 6 +- tests/tests/fv3_gfs_v16 | 1 + tests/tests/fv3_gfs_v16_RRTMGP | 1 + tests/tests/fv3_gfs_v16_RRTMGP_2thrd | 1 + tests/tests/fv3_gfs_v16_RRTMGP_debug | 1 + tests/tests/fv3_gfs_v16_debug | 1 + tests/tests/fv3_gfs_v16_ras | 1 + tests/tests/fv3_gfs_v16_ras_debug | 1 + tests/tests/fv3_gfs_v16_restart | 1 + tests/tests/fv3_gfs_v16_stochy | 1 + 23 files changed, 3310 insertions(+), 4483 deletions(-) diff --git a/FV3 b/FV3 index 07b00a9a84..0e05075456 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 07b00a9a84782aa95a18cc8a9c91ba31a76ea619 +Subproject commit 0e05075456800f0c5abd7bfb1ce6f89b26dd7989 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 427578d950..c778b6341f 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,19 +1,19 @@ -Tue Mar 23 10:02:26 MDT 2021 +Thu Mar 25 09:47:38 MDT 2021 Start Regression test -Compile 001 elapsed time 331 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp -Compile 002 elapsed time 330 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP -Compile 003 elapsed time 372 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y -Compile 004 elapsed time 337 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 005 elapsed time 300 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 006 elapsed time 180 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y -Compile 007 elapsed time 370 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -Compile 008 elapsed time 184 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 009 elapsed time 454 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 010 elapsed time 376 seconds. APP=DATM_NEMS - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfdlmp -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfdlmp +Compile 001 elapsed time 330 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp +Compile 002 elapsed time 338 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 003 elapsed time 371 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y +Compile 004 elapsed time 334 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 005 elapsed time 303 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 006 elapsed time 187 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y +Compile 007 elapsed time 364 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +Compile 008 elapsed time 187 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 009 elapsed time 458 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 010 elapsed time 375 seconds. APP=DATM_NEMS + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfdlmp +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -58,13 +58,13 @@ Checking test 001 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 73.822607 +The total amount of wall time = 73.618411 Test 001 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2 -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v15p2 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v15p2 +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v15p2 Checking test 002 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -129,13 +129,13 @@ Checking test 002 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 142.583647 +The total amount of wall time = 141.743242 Test 002 fv3_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16 Checking test 003 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -212,13 +212,13 @@ Checking test 003 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 187.862691 +The total amount of wall time = 224.438472 Test 003 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16_restart Checking test 004 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -265,13 +265,13 @@ Checking test 004 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 96.737676 +The total amount of wall time = 136.421769 Test 004 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_stochy -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_stochy +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16_stochy Checking test 005 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -336,13 +336,13 @@ Checking test 005 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 89.151107 +The total amount of wall time = 87.345748 Test 005 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_flake -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_flake +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16_flake Checking test 006 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -407,13 +407,13 @@ Checking test 006 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 150.318528 +The total amount of wall time = 149.972377 Test 006 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_RRTMGP -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v15p2_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v15p2_RRTMGP +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v15p2_RRTMGP Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -478,13 +478,13 @@ Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 257.751810 +The total amount of wall time = 258.366359 Test 007 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16_RRTMGP Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -549,13 +549,13 @@ Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 264.075689 +The total amount of wall time = 263.296473 Test 008 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gsd -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gsd +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gsd Checking test 009 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -644,13 +644,13 @@ Checking test 009 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 354.707006 +The total amount of wall time = 353.949008 Test 009 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_thompson Checking test 010 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -715,13 +715,13 @@ Checking test 010 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 165.624665 +The total amount of wall time = 164.754097 Test 010 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_no_aero -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_thompson_no_aero +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_thompson_no_aero Checking test 011 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,13 +786,13 @@ Checking test 011 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 158.885758 +The total amount of wall time = 157.597801 Test 011 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_rrfs_v1beta +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -857,13 +857,13 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 181.237842 +The total amount of wall time = 180.824871 Test 012 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_HAFS_v0_hwrf_thompson Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -928,13 +928,13 @@ Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 259.165626 +The total amount of wall time = 258.786296 Test 013 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_esg_HAFS_v0_hwrf_thompson Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -949,13 +949,13 @@ Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 461.066887 +The total amount of wall time = 462.249482 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfsv16_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfsv16_ugwpv1 Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1014,13 +1014,13 @@ Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 306.507474 +The total amount of wall time = 305.552962 Test 015 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfsv16_ugwpv1_warmstart Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1079,13 +1079,13 @@ Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 305.432456 +The total amount of wall time = 303.038972 Test 016 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_ras -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_ras +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16_ras Checking test 017 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1150,13 +1150,13 @@ Checking test 017 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 167.196042 +The total amount of wall time = 165.039024 Test 017 fv3_gfs_v16_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_control_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_control_debug Checking test 018 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1183,13 +1183,13 @@ Checking test 018 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 75.360078 +The total amount of wall time = 75.565061 Test 018 fv3_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_regional_control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_regional_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_regional_control_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_regional_control_debug Checking test 019 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1197,13 +1197,13 @@ Checking test 019 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 186.920286 +The total amount of wall time = 185.867369 Test 019 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_rrfs_v1beta_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_rrfs_v1beta_debug Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1268,13 +1268,13 @@ Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 109.698301 +The total amount of wall time = 109.533251 Test 020 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gsd_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gsd_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gsd_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gsd_debug Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1339,13 +1339,13 @@ Checking test 021 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 115.629137 +The total amount of wall time = 115.252184 Test 021 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_thompson_debug Checking test 022 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1410,13 +1410,13 @@ Checking test 022 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 184.849713 +The total amount of wall time = 183.371099 Test 022 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_no_aero_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_thompson_no_aero_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_thompson_no_aero_debug Checking test 023 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,13 +1481,13 @@ Checking test 023 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 178.640481 +The total amount of wall time = 176.845157 Test 023 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v15p2_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v15p2_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v15p2_debug Checking test 024 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1552,13 +1552,13 @@ Checking test 024 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 135.283433 +The total amount of wall time = 137.176533 Test 024 fv3_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16_debug Checking test 025 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1623,13 +1623,13 @@ Checking test 025 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 98.621448 +The total amount of wall time = 149.036465 Test 025 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_RRTMGP_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v15p2_RRTMGP_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v15p2_RRTMGP_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v15p2_RRTMGP_debug Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1694,13 +1694,13 @@ Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 198.764803 +The total amount of wall time = 197.468490 Test 026 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_RRTMGP_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16_RRTMGP_debug Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1765,13 +1765,13 @@ Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 205.615144 +The total amount of wall time = 205.202459 Test 027 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_multigases -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_multigases +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_multigases +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_multigases Checking test 028 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,13 +1842,13 @@ Checking test 028 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 176.982886 +The total amount of wall time = 174.702322 Test 028 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_HAFS_v0_hwrf_thompson_debug Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1913,13 +1913,13 @@ Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 113.203162 +The total amount of wall time = 112.640350 Test 029 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1934,13 +1934,13 @@ Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 216.377887 +The total amount of wall time = 215.254661 Test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfsv16_ugwpv1_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfsv16_ugwpv1_debug Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1999,13 +1999,13 @@ Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 304.979048 +The total amount of wall time = 301.566226 Test 031 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_ras_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16_ras_debug Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2070,11 +2070,11 @@ Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 173.459798 +The total amount of wall time = 171.717886 Test 032 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 23 10:24:42 MDT 2021 -Elapsed time: 00h:22m:16s. Have a nice day! +Thu Mar 25 10:08:07 MDT 2021 +Elapsed time: 00h:20m:29s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 63c6e1bf20..3766ddbf70 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,28 +1,28 @@ -Tue Mar 23 10:02:03 MDT 2021 +Thu Mar 25 12:27:05 MDT 2021 Start Regression test -Compile 001 elapsed time 699 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 672 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 001 elapsed time 706 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 678 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y Compile 003 elapsed time 734 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 725 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 765 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 866 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 960 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 008 elapsed time 826 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 729 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 780 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 837 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 254 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 260 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 014 elapsed time 251 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 015 elapsed time 1015 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 016 elapsed time 1103 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 350 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 018 elapsed time 651 seconds. APP=DATM_NEMS -Compile 019 elapsed time 240 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_control +Compile 004 elapsed time 732 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 761 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 862 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 968 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 008 elapsed time 759 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 725 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 791 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 844 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 241 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 265 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 014 elapsed time 255 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 015 elapsed time 1018 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 016 elapsed time 1085 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 354 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 649 seconds. APP=DATM_NEMS +Compile 019 elapsed time 245 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -87,13 +87,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.178755 +The total amount of wall time = 48.037218 Test 001 fv3_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -158,13 +158,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.868721 +The total amount of wall time = 47.960783 Test 002 fv3_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -229,13 +229,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 106.639135 +The total amount of wall time = 106.760747 Test 003 fv3_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -282,13 +282,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 23.548673 +The total amount of wall time = 23.372045 Test 004 fv3_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_read_inc +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_read_inc +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -353,13 +353,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.049568 +The total amount of wall time = 47.123795 Test 005 fv3_read_inc PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGauss_netcdf_esmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -404,13 +404,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 123.631961 +The total amount of wall time = 123.038756 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGauss_netcdf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -455,13 +455,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.195175 +The total amount of wall time = 47.189186 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGauss_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -471,8 +471,8 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf000.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 @@ -506,13 +506,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.101523 +The total amount of wall time = 48.054332 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGlatlon_netcdf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGlatlon_netcdf +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -557,13 +557,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.112194 +The total amount of wall time = 46.477696 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGauss_nemsio +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -608,13 +608,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.426691 +The total amount of wall time = 46.649119 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGauss_nemsio_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -659,13 +659,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 123.357213 +The total amount of wall time = 125.614804 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stochy +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -730,13 +730,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 56.835528 +The total amount of wall time = 55.086660 Test 012 fv3_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_ca +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -801,13 +801,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 28.790625 +The total amount of wall time = 30.527469 Test 013 fv3_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_lndp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lndp +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -872,13 +872,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.596543 +The total amount of wall time = 51.164460 Test 014 fv3_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_iau +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_iau +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -943,13 +943,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.879389 +The total amount of wall time = 46.416051 Test 015 fv3_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_lheatstrg +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lheatstrg +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -994,13 +994,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 45.983111 +The total amount of wall time = 47.080201 Test 016 fv3_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_multigases_repro +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_multigases_repro +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1071,13 +1071,13 @@ Checking test 017 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 112.612255 +The total amount of wall time = 113.689083 Test 017 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_control_32bit +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_32bit +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1142,13 +1142,13 @@ Checking test 018 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 39.816619 +The total amount of wall time = 40.337517 Test 018 fv3_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_stretched +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1201,13 +1201,13 @@ Checking test 019 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 332.376233 +The total amount of wall time = 332.394004 Test 019 fv3_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_stretched_nest +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1271,13 +1271,13 @@ Checking test 020 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 352.138405 +The total amount of wall time = 353.819232 Test 020 fv3_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_regional_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1285,25 +1285,25 @@ Checking test 021 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 721.330913 +The total amount of wall time = 715.747620 Test 021 fv3_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_regional_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_restart +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_regional_restart Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 395.221716 +The total amount of wall time = 392.522315 Test 022 fv3_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_regional_quilt +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1314,13 +1314,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 739.701537 +The total amount of wall time = 742.402420 Test 023 fv3_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_regional_quilt_hafs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_hafs +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1329,27 +1329,27 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 736.434029 +The total amount of wall time = 739.062024 Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_regional_quilt_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK -The total amount of wall time = 739.713307 +The total amount of wall time = 741.381067 Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfdlmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1394,13 +1394,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 53.464722 +The total amount of wall time = 54.229943 Test 026 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfdlmprad_gwd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_gwd +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1445,13 +1445,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 53.006336 +The total amount of wall time = 53.631075 Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfdlmprad_noahmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_noahmp +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1496,13 +1496,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 54.069160 +The total amount of wall time = 54.085702 Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_csawmg +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_csawmg +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1547,13 +1547,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 141.686452 +The total amount of wall time = 140.967523 Test 029 fv3_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_satmedmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmf +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1598,13 +1598,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.566593 +The total amount of wall time = 59.577739 Test 030 fv3_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_satmedmfq +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmfq +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1649,13 +1649,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.229744 +The total amount of wall time = 60.060009 Test 031 fv3_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfdlmp_32bit +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp_32bit +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1700,13 +1700,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 41.624572 +The total amount of wall time = 42.768383 Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfdlmprad_32bit_post +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_32bit_post +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1755,13 @@ Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 72.784409 +The total amount of wall time = 73.711306 Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_cpt +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_cpt +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1812,13 +1812,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 331.355609 +The total amount of wall time = 330.559020 Test 034 fv3_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1907,13 +1907,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 202.125869 +The total amount of wall time = 201.836515 Test 035 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rap -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_rap +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rap +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_rap Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,13 +1978,13 @@ Checking test 036 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 101.714197 +The total amount of wall time = 100.313999 Test 036 fv3_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_hrrr -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_hrrr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_hrrr +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_hrrr Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2049,13 +2049,13 @@ Checking test 037 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 106.224389 +The total amount of wall time = 107.194282 Test 037 fv3_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_thompson Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2120,13 +2120,13 @@ Checking test 038 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 96.969428 +The total amount of wall time = 95.246771 Test 038 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_thompson_no_aero Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2191,13 +2191,13 @@ Checking test 039 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 90.728528 +The total amount of wall time = 91.286840 Test 039 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_rrfs_v1beta Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2262,13 +2262,13 @@ Checking test 040 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 107.279906 +The total amount of wall time = 109.504179 Test 040 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16 Checking test 041 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2345,13 +2345,13 @@ Checking test 041 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 130.505196 +The total amount of wall time = 169.751681 Test 041 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_restart Checking test 042 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2398,13 +2398,13 @@ Checking test 042 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 68.582090 +The total amount of wall time = 104.014940 Test 042 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_stochy +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_stochy Checking test 043 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2469,13 +2469,13 @@ Checking test 043 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 62.889352 +The total amount of wall time = 61.462190 Test 043 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_RRTMGP Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2540,13 +2540,13 @@ Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 224.082495 +The total amount of wall time = 204.315474 Test 044 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_RRTMGP_c192L127 Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2605,13 +2605,13 @@ Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 928.334238 +The total amount of wall time = 833.678304 Test 045 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_RRTMGP_2thrd Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2676,13 +2676,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 477.074774 +The total amount of wall time = 476.944473 Test 046 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gocart_clm +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gocart_clm +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gocart_clm Checking test 047 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2727,13 +2727,13 @@ Checking test 047 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 55.320850 +The total amount of wall time = 57.906718 Test 047 fv3_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_flake +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_flake Checking test 048 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2798,13 +2798,13 @@ Checking test 048 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 116.427427 +The total amount of wall time = 116.180593 Test 048 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_HAFS_v0_hwrf_thompson Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2869,13 +2869,13 @@ Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 195.904103 +The total amount of wall time = 181.850449 Test 049 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_esg_HAFS_v0_hwrf_thompson Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2890,13 +2890,13 @@ Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 318.947790 +The total amount of wall time = 339.059730 Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfsv16_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfsv16_ugwpv1 Checking test 051 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2955,13 +2955,13 @@ Checking test 051 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 217.260557 +The total amount of wall time = 208.133452 Test 051 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfsv16_ugwpv1_warmstart Checking test 052 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3020,13 +3020,13 @@ Checking test 052 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 215.968637 +The total amount of wall time = 207.974584 Test 052 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_ras Checking test 053 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3091,156 +3091,14 @@ Checking test 053 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 115.543656 +The total amount of wall time = 112.209976 Test 053 fv3_gfs_v16_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v15p2_debug -Checking test 054 fv3_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 - -The total amount of wall time = 245.121956 - -Test 054 fv3_gfs_v15p2_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_debug -Checking test 055 fv3_gfs_v16_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 - -The total amount of wall time = 190.269671 - -Test 055 fv3_gfs_v16_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v15p2_RRTMGP_debug -Checking test 056 fv3_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_debug +Checking test 054 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3304,14 +3162,14 @@ Checking test 056 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 386.179513 +The total amount of wall time = 275.334943 -Test 056 fv3_gfs_v15p2_RRTMGP_debug PASS +Test 054 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_RRTMGP_debug -Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_RRTMGP_debug +Checking test 055 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3375,28 +3233,28 @@ Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 393.762440 +The total amount of wall time = 394.622200 -Test 057 fv3_gfs_v16_RRTMGP_debug PASS +Test 055 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_regional_control_debug -Checking test 058 fv3_regional_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_regional_control_debug +Checking test 056 fv3_regional_control_debug 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 -The total amount of wall time = 367.914286 +The total amount of wall time = 368.294697 -Test 058 fv3_regional_control_debug PASS +Test 056 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_control_debug -Checking test 059 fv3_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_control_debug +Checking test 057 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3422,14 +3280,14 @@ Checking test 059 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 146.617398 +The total amount of wall time = 146.795024 -Test 059 fv3_control_debug PASS +Test 057 fv3_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_stretched_nest_debug -Checking test 060 fv3_stretched_nest_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_stretched_nest_debug +Checking test 058 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3445,14 +3303,14 @@ Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 433.869722 +The total amount of wall time = 434.171767 -Test 060 fv3_stretched_nest_debug PASS +Test 058 fv3_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gsd_debug -Checking test 061 fv3_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gsd_debug +Checking test 059 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3516,14 +3374,14 @@ Checking test 061 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 216.723020 +The total amount of wall time = 216.473643 -Test 061 fv3_gsd_debug PASS +Test 059 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gsd_diag3d_debug -Checking test 062 fv3_gsd_diag3d_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_diag3d_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gsd_diag3d_debug +Checking test 060 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3587,14 +3445,14 @@ Checking test 062 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 265.472296 +The total amount of wall time = 263.029647 -Test 062 fv3_gsd_diag3d_debug PASS +Test 060 fv3_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_thompson_debug -Checking test 063 fv3_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_thompson_debug +Checking test 061 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3658,14 +3516,14 @@ Checking test 063 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 360.098930 +The total amount of wall time = 361.301781 -Test 063 fv3_thompson_debug PASS +Test 061 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_thompson_no_aero_debug -Checking test 064 fv3_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_thompson_no_aero_debug +Checking test 062 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3729,14 +3587,14 @@ Checking test 064 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 347.542197 +The total amount of wall time = 348.741724 -Test 064 fv3_thompson_no_aero_debug PASS +Test 062 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_rrfs_v1beta_debug -Checking test 065 fv3_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_rrfs_v1beta_debug +Checking test 063 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3800,14 +3658,14 @@ Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 209.333728 +The total amount of wall time = 211.679995 -Test 065 fv3_rrfs_v1beta_debug PASS +Test 063 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 064 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3871,14 +3729,14 @@ Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 223.613218 +The total amount of wall time = 223.799774 -Test 066 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 064 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 065 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3892,14 +3750,14 @@ Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 397.115334 +The total amount of wall time = 397.638980 -Test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 065 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfsv16_ugwpv1_debug -Checking test 068 fv3_gfsv16_ugwpv1_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfsv16_ugwpv1_debug +Checking test 066 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3957,14 +3815,14 @@ Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 604.069957 +The total amount of wall time = 602.244296 -Test 068 fv3_gfsv16_ugwpv1_debug PASS +Test 066 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_ras_debug -Checking test 069 fv3_gfs_v16_ras_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_ras_debug +Checking test 067 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4028,14 +3886,14 @@ Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 342.678273 +The total amount of wall time = 343.564488 -Test 069 fv3_gfs_v16_ras_debug PASS +Test 067 fv3_gfs_v16_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_control -Checking test 070 cpld_control results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_control +Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4084,14 +3942,14 @@ Checking test 070 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 99.211920 +The total amount of wall time = 98.320255 -Test 070 cpld_control PASS +Test 068 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart -Checking test 071 cpld_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restart +Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4140,14 +3998,14 @@ Checking test 071 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 55.480542 +The total amount of wall time = 54.790189 -Test 071 cpld_restart PASS +Test 069 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_controlfrac -Checking test 072 cpld_controlfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_controlfrac +Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4196,14 +4054,14 @@ Checking test 072 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 98.419990 +The total amount of wall time = 98.462978 -Test 072 cpld_controlfrac PASS +Test 070 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restartfrac -Checking test 073 cpld_restartfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restartfrac +Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4252,14 +4110,14 @@ Checking test 073 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 54.817555 +The total amount of wall time = 54.067893 -Test 073 cpld_restartfrac PASS +Test 071 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_2threads -Checking test 074 cpld_2threads results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_2threads +Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4308,14 +4166,14 @@ Checking test 074 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 260.478892 +The total amount of wall time = 258.970638 -Test 074 cpld_2threads PASS +Test 072 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_decomp -Checking test 075 cpld_decomp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_decomp +Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4364,14 +4222,14 @@ Checking test 075 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 96.451004 +The total amount of wall time = 92.551359 -Test 075 cpld_decomp PASS +Test 073 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_satmedmf -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_satmedmf -Checking test 076 cpld_satmedmf results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_satmedmf +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_satmedmf +Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4420,14 +4278,14 @@ Checking test 076 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 96.401051 +The total amount of wall time = 96.335590 -Test 076 cpld_satmedmf PASS +Test 074 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_ca -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_ca -Checking test 077 cpld_ca results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_ca +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_ca +Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4476,14 +4334,14 @@ Checking test 077 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 97.547900 +The total amount of wall time = 96.016649 -Test 077 cpld_ca PASS +Test 075 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_control_c192 -Checking test 078 cpld_control_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_control_c192 +Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4532,14 +4390,14 @@ Checking test 078 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 411.206890 +The total amount of wall time = 408.475924 -Test 078 cpld_control_c192 PASS +Test 076 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart_c192 -Checking test 079 cpld_restart_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restart_c192 +Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4588,14 +4446,14 @@ Checking test 079 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 295.653758 +The total amount of wall time = 293.257150 -Test 079 cpld_restart_c192 PASS +Test 077 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_controlfrac_c192 -Checking test 080 cpld_controlfrac_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_controlfrac_c192 +Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4644,14 +4502,14 @@ Checking test 080 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 408.293885 +The total amount of wall time = 394.301730 -Test 080 cpld_controlfrac_c192 PASS +Test 078 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restartfrac_c192 -Checking test 081 cpld_restartfrac_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restartfrac_c192 +Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4700,14 +4558,14 @@ Checking test 081 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 298.385402 +The total amount of wall time = 291.606557 -Test 081 cpld_restartfrac_c192 PASS +Test 079 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_control_c384 -Checking test 082 cpld_control_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c384 +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_control_c384 +Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4759,14 +4617,14 @@ Checking test 082 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1601.371689 +The total amount of wall time = 1486.091643 -Test 082 cpld_control_c384 PASS +Test 080 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart_c384 -Checking test 083 cpld_restart_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c384 +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restart_c384 +Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4818,14 +4676,14 @@ Checking test 083 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 841.967363 +The total amount of wall time = 841.235035 -Test 083 cpld_restart_c384 PASS +Test 081 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_controlfrac_c384 -Checking test 084 cpld_controlfrac_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c384 +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_controlfrac_c384 +Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4877,14 +4735,14 @@ Checking test 084 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1592.004091 +The total amount of wall time = 1592.449818 -Test 084 cpld_controlfrac_c384 PASS +Test 082 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restartfrac_c384 -Checking test 085 cpld_restartfrac_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c384 +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restartfrac_c384 +Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4936,14 +4794,14 @@ Checking test 085 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 838.836412 +The total amount of wall time = 834.220510 -Test 085 cpld_restartfrac_c384 PASS +Test 083 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmark -Checking test 086 cpld_bmark results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_bmark +Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4995,14 +4853,14 @@ Checking test 086 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 910.340201 +The total amount of wall time = 905.601571 -Test 086 cpld_bmark PASS +Test 084 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart_bmark -Checking test 087 cpld_restart_bmark results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restart_bmark +Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5054,14 +4912,14 @@ Checking test 087 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 482.987624 +The total amount of wall time = 491.256290 -Test 087 cpld_restart_bmark PASS +Test 085 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmarkfrac -Checking test 088 cpld_bmarkfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_bmarkfrac +Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5113,14 +4971,14 @@ Checking test 088 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 905.071576 +The total amount of wall time = 896.585630 -Test 088 cpld_bmarkfrac PASS +Test 086 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart_bmarkfrac -Checking test 089 cpld_restart_bmarkfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restart_bmarkfrac +Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5172,14 +5030,14 @@ Checking test 089 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 493.685792 +The total amount of wall time = 494.381708 -Test 089 cpld_restart_bmarkfrac PASS +Test 087 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmarkfrac_v16 -Checking test 090 cpld_bmarkfrac_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_bmarkfrac_v16 +Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5231,14 +5089,14 @@ Checking test 090 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -The total amount of wall time = 1631.797689 +The total amount of wall time = 1625.590057 -Test 090 cpld_bmarkfrac_v16 PASS +Test 088 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart_bmarkfrac_v16 -Checking test 091 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restart_bmarkfrac_v16 +Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5290,14 +5148,14 @@ Checking test 091 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -The total amount of wall time = 876.604526 +The total amount of wall time = 872.231913 -Test 091 cpld_restart_bmarkfrac_v16 PASS +Test 089 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark_wave -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmark_wave -Checking test 092 cpld_bmark_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark_wave +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_bmark_wave +Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5352,14 +5210,14 @@ Checking test 092 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 1568.580930 +The total amount of wall time = 1517.513722 -Test 092 cpld_bmark_wave PASS +Test 090 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmarkfrac_wave -Checking test 093 cpld_bmarkfrac_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_wave +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_bmarkfrac_wave +Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5414,14 +5272,14 @@ Checking test 093 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 1571.671695 +The total amount of wall time = 1570.213867 -Test 093 cpld_bmarkfrac_wave PASS +Test 091 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmarkfrac_wave_v16 -Checking test 094 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_bmarkfrac_wave_v16 +Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5475,14 +5333,14 @@ Checking test 094 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 1058.786853 +The total amount of wall time = 1043.428181 -Test 094 cpld_bmarkfrac_wave_v16 PASS +Test 092 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_wave -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_control_wave -Checking test 095 cpld_control_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_wave +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_control_wave +Checking test 093 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5534,14 +5392,14 @@ Checking test 095 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 815.612195 +The total amount of wall time = 813.055325 -Test 095 cpld_control_wave PASS +Test 093 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_debug -Checking test 096 cpld_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_debug +Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5590,14 +5448,14 @@ Checking test 096 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 306.791877 +The total amount of wall time = 307.483368 -Test 096 cpld_debug PASS +Test 094 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debugfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_debugfrac -Checking test 097 cpld_debugfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_debugfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_debugfrac +Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5646,74 +5504,74 @@ Checking test 097 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 305.455981 +The total amount of wall time = 304.950454 -Test 097 cpld_debugfrac PASS +Test 095 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_control_cfsr -Checking test 098 datm_control_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 102.438765 +The total amount of wall time = 102.095321 -Test 098 datm_control_cfsr PASS +Test 096 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_restart_cfsr -Checking test 099 datm_restart_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 63.790987 +The total amount of wall time = 63.584151 -Test 099 datm_restart_cfsr PASS +Test 097 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_control_gefs -Checking test 100 datm_control_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 95.432646 +The total amount of wall time = 95.768941 -Test 100 datm_control_gefs PASS +Test 098 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_bulk_cfsr -Checking test 101 datm_bulk_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 98.813916 +The total amount of wall time = 98.977391 -Test 101 datm_bulk_cfsr PASS +Test 099 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_bulk_gefs -Checking test 102 datm_bulk_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_bulk_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 96.660125 +The total amount of wall time = 93.037856 -Test 102 datm_bulk_gefs PASS +Test 100 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_mx025_cfsr -Checking test 103 datm_mx025_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/datm_mx025_cfsr +Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5721,14 +5579,14 @@ Checking test 103 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 411.142194 +The total amount of wall time = 394.286064 -Test 103 datm_mx025_cfsr PASS +Test 101 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_mx025_gefs -Checking test 104 datm_mx025_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_mx025_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/datm_mx025_gefs +Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5736,23 +5594,23 @@ Checking test 104 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 391.332862 +The total amount of wall time = 391.172858 -Test 104 datm_mx025_gefs PASS +Test 102 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_debug_cfsr -Checking test 105 datm_debug_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_debug_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_43153/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 285.144005 +The total amount of wall time = 286.549102 -Test 105 datm_debug_cfsr PASS +Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 23 11:46:13 MDT 2021 -Elapsed time: 01h:44m:10s. Have a nice day! +Thu Mar 25 13:49:26 MDT 2021 +Elapsed time: 01h:22m:22s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index a0dea96443..c16a16c5ac 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,27 +1,27 @@ -Mon Mar 22 19:31:45 EDT 2021 +Thu Mar 25 13:18:42 EDT 2021 Start Regression test -Compile 001 elapsed time 659 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 001 elapsed time 690 seconds. APP=ATM SUITES=FV3_GFS_2017 Compile 002 elapsed time 666 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y Compile 003 elapsed time 665 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 665 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 668 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 709 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 761 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 008 elapsed time 709 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 708 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 699 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 698 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 214 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 249 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 014 elapsed time 250 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 015 elapsed time 695 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 016 elapsed time 260 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 525 seconds. APP=DATM_NEMS -Compile 018 elapsed time 213 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_control +Compile 004 elapsed time 692 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 671 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 750 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 822 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 008 elapsed time 678 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 680 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 687 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 695 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 260 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 258 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 014 elapsed time 248 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 015 elapsed time 713 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 016 elapsed time 281 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 554 seconds. APP=DATM_NEMS +Compile 018 elapsed time 258 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -86,13 +86,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.225195 +The total amount of wall time = 64.917783 Test 001 fv3_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_decomp +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -157,13 +157,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 75.935929 +The total amount of wall time = 43.934317 Test 002 fv3_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_2threads +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -228,13 +228,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.173784 +The total amount of wall time = 66.529972 Test 003 fv3_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_restart +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -281,13 +281,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 50.596998 +The total amount of wall time = 24.640952 Test 004 fv3_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_read_inc +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_read_inc +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -352,13 +352,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 70.840529 +The total amount of wall time = 50.033215 Test 005 fv3_read_inc PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGauss_netcdf_esmf +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -403,13 +403,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 102.378153 +The total amount of wall time = 101.648105 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGauss_netcdf +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -454,13 +454,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 40.642970 +The total amount of wall time = 41.803412 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -505,13 +505,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.474674 +The total amount of wall time = 92.251832 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGlatlon_netcdf +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGlatlon_netcdf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -556,13 +556,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 43.503530 +The total amount of wall time = 41.961586 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGauss_nemsio +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -607,13 +607,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 40.957067 +The total amount of wall time = 40.350025 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGauss_nemsio_c192 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -658,13 +658,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 132.992870 +The total amount of wall time = 113.182373 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_stochy +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stochy +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -729,13 +729,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.544528 +The total amount of wall time = 48.987230 Test 012 fv3_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_ca +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_ca +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -800,13 +800,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.000807 +The total amount of wall time = 28.554379 Test 013 fv3_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_lndp +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lndp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -871,13 +871,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.989290 +The total amount of wall time = 56.387135 Test 014 fv3_lndp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_iau +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_iau +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -942,13 +942,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.163920 +The total amount of wall time = 48.237089 Test 015 fv3_iau PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_lheatstrg +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lheatstrg +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -993,13 +993,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 43.945547 +The total amount of wall time = 42.402292 Test 016 fv3_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_multigases_repro +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_multigases_repro +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1070,13 +1070,13 @@ Checking test 017 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 97.564858 +The total amount of wall time = 122.105786 Test 017 fv3_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_control_32bit +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_32bit +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1141,13 +1141,13 @@ Checking test 018 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 69.788288 +The total amount of wall time = 41.494253 Test 018 fv3_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_stretched +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1200,13 +1200,13 @@ Checking test 019 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 301.800169 +The total amount of wall time = 333.182107 Test 019 fv3_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_stretched_nest +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1270,13 +1270,13 @@ Checking test 020 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 367.462041 +The total amount of wall time = 334.441839 Test 020 fv3_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_regional_control +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1284,25 +1284,25 @@ Checking test 021 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 675.543808 +The total amount of wall time = 677.205584 Test 021 fv3_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_regional_restart +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_restart +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_regional_restart Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 368.830369 +The total amount of wall time = 368.311248 Test 022 fv3_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_regional_quilt +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1313,13 +1313,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 693.040273 +The total amount of wall time = 695.419473 Test 023 fv3_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_regional_quilt_hafs +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_hafs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1328,13 +1328,13 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 693.339867 +The total amount of wall time = 695.973709 Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_regional_quilt_netcdf_parallel +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1342,13 +1342,13 @@ Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK -The total amount of wall time = 696.050653 +The total amount of wall time = 700.442754 Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfdlmp +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1393,13 +1393,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 47.247639 +The total amount of wall time = 56.190627 Test 026 fv3_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfdlmprad_gwd +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_gwd +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1444,13 +1444,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 73.433251 +The total amount of wall time = 52.230360 Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfdlmprad_noahmp +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_noahmp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1495,13 +1495,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 51.640234 +The total amount of wall time = 47.421094 Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_csawmg +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_csawmg +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1546,13 +1546,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 124.913956 +The total amount of wall time = 123.843987 Test 029 fv3_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_satmedmf +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1597,13 +1597,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 55.783295 +The total amount of wall time = 77.988011 Test 030 fv3_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_satmedmfq +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmfq +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1648,13 +1648,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 55.670851 +The total amount of wall time = 51.798888 Test 031 fv3_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfdlmp_32bit +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp_32bit +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1699,13 +1699,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 40.005785 +The total amount of wall time = 39.649691 Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfdlmprad_32bit_post +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_32bit_post +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1754,13 +1754,13 @@ Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 84.731814 +The total amount of wall time = 78.836639 Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_cpt +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_cpt +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1811,13 +1811,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 318.400027 +The total amount of wall time = 290.828493 Test 034 fv3_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gsd +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1906,13 +1906,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 195.270970 +The total amount of wall time = 194.532851 Test 035 fv3_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rap -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_rap +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rap +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_rap Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,13 +1977,13 @@ Checking test 036 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 97.802874 +The total amount of wall time = 99.197639 Test 036 fv3_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_hrrr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_hrrr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_hrrr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_hrrr Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2048,13 +2048,13 @@ Checking test 037 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 101.307182 +The total amount of wall time = 102.168380 Test 037 fv3_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_thompson +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_thompson Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2119,13 +2119,13 @@ Checking test 038 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 93.567935 +The total amount of wall time = 94.026976 Test 038 fv3_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_thompson_no_aero +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_thompson_no_aero Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2190,13 +2190,13 @@ Checking test 039 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 88.994027 +The total amount of wall time = 89.150302 Test 039 fv3_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_rrfs_v1beta +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_rrfs_v1beta Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2261,85 +2261,14 @@ Checking test 040 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 108.472896 +The total amount of wall time = 105.461066 Test 040 fv3_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v15p2 -Checking test 041 fv3_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 - -The total amount of wall time = 106.728293 - -Test 041 fv3_gfs_v15p2 PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16 -Checking test 042 fv3_gfs_v16 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16 +Checking test 041 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2415,14 +2344,14 @@ Checking test 042 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 121.076566 +The total amount of wall time = 228.059364 -Test 042 fv3_gfs_v16 PASS +Test 041 fv3_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_restart -Checking test 043 fv3_gfs_v16_restart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_restart +Checking test 042 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2468,14 +2397,14 @@ Checking test 043 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.376138 +The total amount of wall time = 93.353187 -Test 043 fv3_gfs_v16_restart PASS +Test 042 fv3_gfs_v16_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_stochy -Checking test 044 fv3_gfs_v16_stochy results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_stochy +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_stochy +Checking test 043 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2539,85 +2468,14 @@ Checking test 044 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 55.983496 - -Test 044 fv3_gfs_v16_stochy PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v15p2_RRTMGP -Checking test 045 fv3_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 - -The total amount of wall time = 177.460026 +The total amount of wall time = 55.458283 -Test 045 fv3_gfs_v15p2_RRTMGP PASS +Test 043 fv3_gfs_v16_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_RRTMGP -Checking test 046 fv3_gfs_v16_RRTMGP results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_RRTMGP +Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2681,14 +2539,14 @@ Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 181.213570 +The total amount of wall time = 181.540772 -Test 046 fv3_gfs_v16_RRTMGP PASS +Test 044 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_RRTMGP_c192L127 -Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_RRTMGP_c192L127 +Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2746,14 +2604,14 @@ Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 724.789646 +The total amount of wall time = 724.485143 -Test 047 fv3_gfs_v16_RRTMGP_c192L127 PASS +Test 045 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_RRTMGP_2thrd -Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_RRTMGP_2thrd +Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2817,14 +2675,14 @@ Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 274.080356 +The total amount of wall time = 273.527960 -Test 048 fv3_gfs_v16_RRTMGP_2thrd PASS +Test 046 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmg -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfsv16_csawmg -Checking test 049 fv3_gfsv16_csawmg results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_csawmg +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfsv16_csawmg +Checking test 047 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2868,14 +2726,14 @@ Checking test 049 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 135.369583 +The total amount of wall time = 156.935277 -Test 049 fv3_gfsv16_csawmg PASS +Test 047 fv3_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmgt -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfsv16_csawmgt -Checking test 050 fv3_gfsv16_csawmgt results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_csawmgt +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfsv16_csawmgt +Checking test 048 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2919,14 +2777,14 @@ Checking test 050 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 132.882688 +The total amount of wall time = 137.109500 -Test 050 fv3_gfsv16_csawmgt PASS +Test 048 fv3_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gocart_clm -Checking test 051 fv3_gocart_clm results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gocart_clm +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gocart_clm +Checking test 049 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2970,14 +2828,14 @@ Checking test 051 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 54.922876 +The total amount of wall time = 54.230399 -Test 051 fv3_gocart_clm PASS +Test 049 fv3_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_flake -Checking test 052 fv3_gfs_v16_flake results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_flake +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_flake +Checking test 050 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3041,14 +2899,14 @@ Checking test 052 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 109.303302 +The total amount of wall time = 110.810193 -Test 052 fv3_gfs_v16_flake PASS +Test 050 fv3_gfs_v16_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_HAFS_v0_hwrf_thompson -Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_HAFS_v0_hwrf_thompson +Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3112,14 +2970,14 @@ Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 167.057868 +The total amount of wall time = 167.893400 -Test 053 fv3_HAFS_v0_hwrf_thompson PASS +Test 051 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -3133,14 +2991,14 @@ Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 327.903178 +The total amount of wall time = 307.733304 -Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 052 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfsv16_ugwpv1 -Checking test 055 fv3_gfsv16_ugwpv1 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfsv16_ugwpv1 +Checking test 053 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3198,14 +3056,14 @@ Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 185.574296 +The total amount of wall time = 192.814996 -Test 055 fv3_gfsv16_ugwpv1 PASS +Test 053 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfsv16_ugwpv1_warmstart -Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfsv16_ugwpv1_warmstart +Checking test 054 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3263,14 +3121,14 @@ Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 186.731894 +The total amount of wall time = 186.484792 -Test 056 fv3_gfsv16_ugwpv1_warmstart PASS +Test 054 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_ras -Checking test 057 fv3_gfs_v16_ras results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_ras +Checking test 055 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3334,156 +3192,14 @@ Checking test 057 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 100.736490 - -Test 057 fv3_gfs_v16_ras PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v15p2_debug -Checking test 058 fv3_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 - -The total amount of wall time = 228.248607 - -Test 058 fv3_gfs_v15p2_debug PASS - - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_debug -Checking test 059 fv3_gfs_v16_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 - -The total amount of wall time = 171.161098 +The total amount of wall time = 104.489992 -Test 059 fv3_gfs_v16_debug PASS +Test 055 fv3_gfs_v16_ras PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v15p2_RRTMGP_debug -Checking test 060 fv3_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_debug +Checking test 056 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3547,14 +3263,14 @@ Checking test 060 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 365.856875 +The total amount of wall time = 272.206711 -Test 060 fv3_gfs_v15p2_RRTMGP_debug PASS +Test 056 fv3_gfs_v16_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_RRTMGP_debug -Checking test 061 fv3_gfs_v16_RRTMGP_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_RRTMGP_debug +Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3618,28 +3334,28 @@ Checking test 061 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 374.839771 +The total amount of wall time = 376.426718 -Test 061 fv3_gfs_v16_RRTMGP_debug PASS +Test 057 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_regional_control_debug -Checking test 062 fv3_regional_control_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_regional_control_debug +Checking test 058 fv3_regional_control_debug 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 -The total amount of wall time = 370.805224 +The total amount of wall time = 370.852344 -Test 062 fv3_regional_control_debug PASS +Test 058 fv3_regional_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_control_debug -Checking test 063 fv3_control_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_control_debug +Checking test 059 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3665,14 +3381,14 @@ Checking test 063 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 131.307378 +The total amount of wall time = 130.437058 -Test 063 fv3_control_debug PASS +Test 059 fv3_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_stretched_nest_debug -Checking test 064 fv3_stretched_nest_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_stretched_nest_debug +Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3688,14 +3404,14 @@ Checking test 064 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 436.083582 +The total amount of wall time = 434.995200 -Test 064 fv3_stretched_nest_debug PASS +Test 060 fv3_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gsd_debug -Checking test 065 fv3_gsd_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gsd_debug +Checking test 061 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3759,14 +3475,14 @@ Checking test 065 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 199.019429 +The total amount of wall time = 194.147838 -Test 065 fv3_gsd_debug PASS +Test 061 fv3_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gsd_diag3d_debug -Checking test 066 fv3_gsd_diag3d_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_diag3d_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gsd_diag3d_debug +Checking test 062 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3830,14 +3546,14 @@ Checking test 066 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 224.513938 +The total amount of wall time = 223.159413 -Test 066 fv3_gsd_diag3d_debug PASS +Test 062 fv3_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_thompson_debug -Checking test 067 fv3_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_thompson_debug +Checking test 063 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3901,14 +3617,14 @@ Checking test 067 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 342.983195 +The total amount of wall time = 343.346196 -Test 067 fv3_thompson_debug PASS +Test 063 fv3_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_thompson_no_aero_debug -Checking test 068 fv3_thompson_no_aero_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_thompson_no_aero_debug +Checking test 064 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3972,14 +3688,14 @@ Checking test 068 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 331.555462 +The total amount of wall time = 327.347677 -Test 068 fv3_thompson_no_aero_debug PASS +Test 064 fv3_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_rrfs_v1beta_debug -Checking test 069 fv3_rrfs_v1beta_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_rrfs_v1beta_debug +Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4043,14 +3759,14 @@ Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 194.231787 +The total amount of wall time = 188.880084 -Test 069 fv3_rrfs_v1beta_debug PASS +Test 065 fv3_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 070 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4114,14 +3830,14 @@ Checking test 070 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 207.154542 +The total amount of wall time = 222.035068 -Test 070 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 066 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -4135,14 +3851,14 @@ Checking test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 377.946486 +The total amount of wall time = 375.891594 -Test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfsv16_ugwpv1_debug -Checking test 072 fv3_gfsv16_ugwpv1_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfsv16_ugwpv1_debug +Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -4200,14 +3916,14 @@ Checking test 072 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 579.751934 +The total amount of wall time = 606.946748 -Test 072 fv3_gfsv16_ugwpv1_debug PASS +Test 068 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_ras_debug -Checking test 073 fv3_gfs_v16_ras_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_ras_debug +Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4271,14 +3987,14 @@ Checking test 073 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 323.082325 +The total amount of wall time = 321.607104 -Test 073 fv3_gfs_v16_ras_debug PASS +Test 069 fv3_gfs_v16_ras_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_control -Checking test 074 cpld_control results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_control +Checking test 070 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4327,14 +4043,14 @@ Checking test 074 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 102.328696 +The total amount of wall time = 92.483043 -Test 074 cpld_control PASS +Test 070 cpld_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restart -Checking test 075 cpld_restart results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_restart +Checking test 071 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4383,14 +4099,14 @@ Checking test 075 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 87.418611 +The total amount of wall time = 55.835531 -Test 075 cpld_restart PASS +Test 071 cpld_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_controlfrac -Checking test 076 cpld_controlfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_controlfrac +Checking test 072 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4439,14 +4155,14 @@ Checking test 076 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 102.481930 +The total amount of wall time = 91.203316 -Test 076 cpld_controlfrac PASS +Test 072 cpld_controlfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restartfrac -Checking test 077 cpld_restartfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_restartfrac +Checking test 073 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4495,14 +4211,14 @@ Checking test 077 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 48.798117 +The total amount of wall time = 72.176388 -Test 077 cpld_restartfrac PASS +Test 073 cpld_restartfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_2threads -Checking test 078 cpld_2threads results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_2threads +Checking test 074 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4551,14 +4267,14 @@ Checking test 078 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 148.977014 +The total amount of wall time = 117.226717 -Test 078 cpld_2threads PASS +Test 074 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_decomp -Checking test 079 cpld_decomp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_decomp +Checking test 075 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4607,14 +4323,14 @@ Checking test 079 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 121.811380 +The total amount of wall time = 91.685194 -Test 079 cpld_decomp PASS +Test 075 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_satmedmf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_satmedmf -Checking test 080 cpld_satmedmf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_satmedmf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_satmedmf +Checking test 076 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4663,14 +4379,14 @@ Checking test 080 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 93.958109 +The total amount of wall time = 90.498945 -Test 080 cpld_satmedmf PASS +Test 076 cpld_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_ca -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_ca -Checking test 081 cpld_ca results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_ca +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_ca +Checking test 077 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4719,14 +4435,14 @@ Checking test 081 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 90.407515 +The total amount of wall time = 90.229342 -Test 081 cpld_ca PASS +Test 077 cpld_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_control_c192 -Checking test 082 cpld_control_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_control_c192 +Checking test 078 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4775,14 +4491,14 @@ Checking test 082 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 412.336650 +The total amount of wall time = 415.383190 -Test 082 cpld_control_c192 PASS +Test 078 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restart_c192 -Checking test 083 cpld_restart_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_restart_c192 +Checking test 079 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4831,14 +4547,14 @@ Checking test 083 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 279.332122 +The total amount of wall time = 309.087020 -Test 083 cpld_restart_c192 PASS +Test 079 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_controlfrac_c192 -Checking test 084 cpld_controlfrac_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_controlfrac_c192 +Checking test 080 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4887,14 +4603,14 @@ Checking test 084 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 413.374264 +The total amount of wall time = 409.531605 -Test 084 cpld_controlfrac_c192 PASS +Test 080 cpld_controlfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restartfrac_c192 -Checking test 085 cpld_restartfrac_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_restartfrac_c192 +Checking test 081 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4943,14 +4659,14 @@ Checking test 085 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 306.907812 +The total amount of wall time = 307.610492 -Test 085 cpld_restartfrac_c192 PASS +Test 081 cpld_restartfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_control_c384 -Checking test 086 cpld_control_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_control_c384 +Checking test 082 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5002,14 +4718,14 @@ Checking test 086 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1552.205444 +The total amount of wall time = 1554.615364 -Test 086 cpld_control_c384 PASS +Test 082 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restart_c384 -Checking test 087 cpld_restart_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_restart_c384 +Checking test 083 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5061,14 +4777,14 @@ Checking test 087 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 777.917290 +The total amount of wall time = 818.148244 -Test 087 cpld_restart_c384 PASS +Test 083 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_controlfrac_c384 -Checking test 088 cpld_controlfrac_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_controlfrac_c384 +Checking test 084 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5120,14 +4836,14 @@ Checking test 088 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1515.256597 +The total amount of wall time = 1504.849592 -Test 088 cpld_controlfrac_c384 PASS +Test 084 cpld_controlfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restartfrac_c384 -Checking test 089 cpld_restartfrac_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_restartfrac_c384 +Checking test 085 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5179,14 +4895,14 @@ Checking test 089 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 781.289270 +The total amount of wall time = 793.384140 -Test 089 cpld_restartfrac_c384 PASS +Test 085 cpld_restartfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_bmark -Checking test 090 cpld_bmark results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_bmark +Checking test 086 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5238,14 +4954,14 @@ Checking test 090 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 958.000708 +The total amount of wall time = 889.762729 -Test 090 cpld_bmark PASS +Test 086 cpld_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restart_bmark -Checking test 091 cpld_restart_bmark results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_restart_bmark +Checking test 087 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5297,14 +5013,14 @@ Checking test 091 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 453.419012 +The total amount of wall time = 456.630379 -Test 091 cpld_restart_bmark PASS +Test 087 cpld_restart_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_bmarkfrac -Checking test 092 cpld_bmarkfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_bmarkfrac +Checking test 088 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5356,14 +5072,14 @@ Checking test 092 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 942.282580 +The total amount of wall time = 886.202474 -Test 092 cpld_bmarkfrac PASS +Test 088 cpld_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restart_bmarkfrac -Checking test 093 cpld_restart_bmarkfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_restart_bmarkfrac +Checking test 089 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5415,14 +5131,14 @@ Checking test 093 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 453.040563 +The total amount of wall time = 482.095775 -Test 093 cpld_restart_bmarkfrac PASS +Test 089 cpld_restart_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_debug -Checking test 094 cpld_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_debug +Checking test 090 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5471,14 +5187,14 @@ Checking test 094 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 262.426117 +The total amount of wall time = 290.301324 -Test 094 cpld_debug PASS +Test 090 cpld_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debugfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_debugfrac -Checking test 095 cpld_debugfrac results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_debugfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_debugfrac +Checking test 091 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5527,74 +5243,74 @@ Checking test 095 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 262.383198 +The total amount of wall time = 261.943709 -Test 095 cpld_debugfrac PASS +Test 091 cpld_debugfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/datm_control_cfsr -Checking test 096 datm_control_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/datm_control_cfsr +Checking test 092 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 -The total amount of wall time = 102.362921 +The total amount of wall time = 130.413112 -Test 096 datm_control_cfsr PASS +Test 092 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/datm_restart_cfsr -Checking test 097 datm_restart_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/datm_restart_cfsr +Checking test 093 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 -The total amount of wall time = 59.056087 +The total amount of wall time = 60.480500 -Test 097 datm_restart_cfsr PASS +Test 093 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/datm_control_gefs -Checking test 098 datm_control_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/datm_control_gefs +Checking test 094 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 -The total amount of wall time = 96.122095 +The total amount of wall time = 100.549181 -Test 098 datm_control_gefs PASS +Test 094 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/datm_bulk_cfsr -Checking test 099 datm_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/datm_bulk_cfsr +Checking test 095 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 -The total amount of wall time = 100.572498 +The total amount of wall time = 97.753332 -Test 099 datm_bulk_cfsr PASS +Test 095 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/datm_bulk_gefs -Checking test 100 datm_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/datm_bulk_gefs +Checking test 096 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 -The total amount of wall time = 104.806785 +The total amount of wall time = 92.481118 -Test 100 datm_bulk_gefs PASS +Test 096 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/datm_mx025_gefs -Checking test 101 datm_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/datm_mx025_gefs +Checking test 097 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5602,23 +5318,23 @@ Checking test 101 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 404.813727 +The total amount of wall time = 387.324489 -Test 101 datm_mx025_gefs PASS +Test 097 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/datm_debug_cfsr -Checking test 102 datm_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 228.906112 +The total amount of wall time = 223.718116 -Test 102 datm_debug_cfsr PASS +Test 098 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 22 21:33:28 EDT 2021 -Elapsed time: 02h:01m:44s. Have a nice day! +Thu Mar 25 14:47:47 EDT 2021 +Elapsed time: 01h:29m:06s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index fed59af2fa..235fcdd476 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,19 +1,19 @@ -Mon Mar 22 23:32:14 UTC 2021 +Thu Mar 25 14:46:21 UTC 2021 Start Regression test -Compile 001 elapsed time 208 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp -Compile 002 elapsed time 209 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP -Compile 003 elapsed time 229 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y -Compile 004 elapsed time 207 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 001 elapsed time 203 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp +Compile 002 elapsed time 205 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 003 elapsed time 228 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y +Compile 004 elapsed time 203 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras Compile 005 elapsed time 132 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 006 elapsed time 105 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y -Compile 007 elapsed time 231 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -Compile 008 elapsed time 100 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 009 elapsed time 230 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 010 elapsed time 217 seconds. APP=DATM_NEMS - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfdlmp +Compile 006 elapsed time 100 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y +Compile 007 elapsed time 230 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +Compile 008 elapsed time 102 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 009 elapsed time 231 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 010 elapsed time 213 seconds. APP=DATM_NEMS + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -58,13 +58,13 @@ Checking test 001 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 230.266133 + 0: The total amount of wall time = 230.658929 Test 001 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v15p2 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v15p2 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v15p2 Checking test 002 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -129,13 +129,13 @@ Checking test 002 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 599.039738 + 0: The total amount of wall time = 633.270456 Test 002 fv3_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16 Checking test 003 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -212,13 +212,13 @@ Checking test 003 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 615.898198 + 0: The total amount of wall time = 653.003005 Test 003 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16_restart Checking test 004 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -265,13 +265,13 @@ Checking test 004 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 291.894690 + 0: The total amount of wall time = 337.439096 Test 004 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16_stochy Checking test 005 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -336,13 +336,13 @@ Checking test 005 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 358.763115 + 0: The total amount of wall time = 352.897264 Test 005 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16_flake Checking test 006 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -407,13 +407,13 @@ Checking test 006 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 600.638267 + 0: The total amount of wall time = 612.923154 Test 006 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v15p2_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v15p2_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v15p2_RRTMGP Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -478,13 +478,13 @@ Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 676.389434 + 0: The total amount of wall time = 693.671152 Test 007 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16_RRTMGP Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -549,13 +549,13 @@ Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 669.247663 + 0: The total amount of wall time = 701.608400 Test 008 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gsd Checking test 009 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -644,13 +644,13 @@ Checking test 009 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 812.596497 + 0: The total amount of wall time = 820.313640 Test 009 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_thompson Checking test 010 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -715,13 +715,13 @@ Checking test 010 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 401.362889 + 0: The total amount of wall time = 397.498999 Test 010 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_thompson_no_aero Checking test 011 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,13 +786,13 @@ Checking test 011 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 399.151230 + 0: The total amount of wall time = 365.386068 Test 011 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -857,13 +857,13 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 411.855119 + 0: The total amount of wall time = 421.769696 Test 012 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_HAFS_v0_hwrf_thompson Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -928,13 +928,13 @@ Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 624.576443 + 0: The total amount of wall time = 618.573402 Test 013 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_esg_HAFS_v0_hwrf_thompson Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -949,13 +949,13 @@ Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 458.898500 + 0: The total amount of wall time = 445.981440 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfsv16_ugwpv1 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfsv16_ugwpv1 Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1014,13 +1014,13 @@ Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 915.054144 + 0: The total amount of wall time = 893.286609 Test 015 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfsv16_ugwpv1_warmstart Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1079,13 +1079,13 @@ Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 914.921473 + 0: The total amount of wall time = 904.914218 Test 016 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16_ras Checking test 017 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1150,13 +1150,13 @@ Checking test 017 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 565.263089 + 0: The total amount of wall time = 571.976108 Test 017 fv3_gfs_v16_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_control_debug Checking test 018 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1183,13 +1183,13 @@ Checking test 018 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 81.813810 + 0: The total amount of wall time = 87.764311 Test 018 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_regional_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_regional_control_debug Checking test 019 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1197,13 +1197,13 @@ Checking test 019 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 166.326174 + 0: The total amount of wall time = 165.637467 Test 019 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_rrfs_v1beta_debug Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1268,13 +1268,13 @@ Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 119.092666 + 0: The total amount of wall time = 117.136661 Test 020 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gsd_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gsd_debug Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1339,13 +1339,13 @@ Checking test 021 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 122.752133 + 0: The total amount of wall time = 123.939896 Test 021 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_thompson_debug Checking test 022 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1410,13 +1410,13 @@ Checking test 022 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.099441 + 0: The total amount of wall time = 200.658729 Test 022 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_thompson_no_aero_debug Checking test 023 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,13 +1481,13 @@ Checking test 023 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.623075 + 0: The total amount of wall time = 192.644521 Test 023 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v15p2_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v15p2_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v15p2_debug Checking test 024 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1552,13 +1552,13 @@ Checking test 024 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.075516 + 0: The total amount of wall time = 280.811160 Test 024 fv3_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16_debug Checking test 025 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1623,13 +1623,13 @@ Checking test 025 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 128.813953 + 0: The total amount of wall time = 170.549779 Test 025 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v15p2_RRTMGP_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v15p2_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v15p2_RRTMGP_debug Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1694,13 +1694,13 @@ Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 326.063341 + 0: The total amount of wall time = 341.451969 Test 026 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_RRTMGP_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16_RRTMGP_debug Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1765,13 +1765,13 @@ Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 346.720349 + 0: The total amount of wall time = 339.837849 Test 027 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_multigases -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_multigases +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_multigases +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_multigases Checking test 028 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,13 +1842,13 @@ Checking test 028 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 437.284426 + 0: The total amount of wall time = 444.581635 Test 028 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_HAFS_v0_hwrf_thompson_debug Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1913,13 +1913,13 @@ Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 134.270458 + 0: The total amount of wall time = 134.692318 Test 029 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1934,13 +1934,13 @@ Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 227.874411 + 0: The total amount of wall time = 227.558155 Test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfsv16_ugwpv1_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfsv16_ugwpv1_debug Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1999,13 +1999,13 @@ Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 393.520437 + 0: The total amount of wall time = 392.457886 Test 031 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16_ras_debug Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2070,11 +2070,11 @@ Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.615543 + 0: The total amount of wall time = 224.014594 Test 032 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 22 23:58:26 UTC 2021 -Elapsed time: 00h:26m:12s. Have a nice day! +Thu Mar 25 16:09:45 UTC 2021 +Elapsed time: 01h:23m:25s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index d98bdacc82..bf7e49be3f 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,29 +1,29 @@ -Mon Mar 22 23:46:54 UTC 2021 +Thu Mar 25 01:01:28 UTC 2021 Start Regression test -Compile 001 elapsed time 824 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 966 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -Compile 003 elapsed time 794 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 004 elapsed time 538 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 005 elapsed time 575 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 006 elapsed time 516 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 007 elapsed time 699 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 008 elapsed time 588 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 009 elapsed time 573 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP -Compile 010 elapsed time 515 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 011 elapsed time 505 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 012 elapsed time 533 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 013 elapsed time 169 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 014 elapsed time 217 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 015 elapsed time 290 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 016 elapsed time 560 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 608 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 018 elapsed time 236 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 019 elapsed time 402 seconds. APP=DATM_NEMS -Compile 020 elapsed time 148 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_control +Compile 001 elapsed time 550 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 740 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 682 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 512 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 549 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 006 elapsed time 512 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 595 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 641 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 009 elapsed time 598 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 553 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 503 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 547 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 186 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 176 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 015 elapsed time 159 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 016 elapsed time 563 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 554 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 165 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 019 elapsed time 386 seconds. APP=DATM_NEMS +Compile 020 elapsed time 145 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -88,13 +88,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 41.030328 + 0: The total amount of wall time = 39.569798 Test 001 fv3_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -159,13 +159,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 40.788778 + 0: The total amount of wall time = 40.426292 Test 002 fv3_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -230,13 +230,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 42.015029 + 0: The total amount of wall time = 42.562755 Test 003 fv3_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -283,13 +283,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 19.138450 + 0: The total amount of wall time = 19.032269 Test 004 fv3_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_read_inc +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_read_inc +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -354,13 +354,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.320009 + 0: The total amount of wall time = 36.475524 Test 005 fv3_read_inc PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_netcdf_esmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -405,13 +405,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 119.133302 + 0: The total amount of wall time = 111.516344 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_netcdf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -456,13 +456,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.286086 + 0: The total amount of wall time = 38.028970 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -507,13 +507,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 51.159720 + 0: The total amount of wall time = 46.749120 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGlatlon_netcdf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGlatlon_netcdf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -558,13 +558,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 38.669334 + 0: The total amount of wall time = 36.857125 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_nemsio +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,13 +609,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.356743 + 0: The total amount of wall time = 36.415520 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_nemsio_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -660,13 +660,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.705260 + 0: The total amount of wall time = 95.970368 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -731,13 +731,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 40.753609 + 0: The total amount of wall time = 41.251163 Test 012 fv3_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -802,13 +802,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 26.700711 + 0: The total amount of wall time = 25.842749 Test 013 fv3_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -873,13 +873,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.608968 + 0: The total amount of wall time = 43.301023 Test 014 fv3_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_iau +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_iau +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,13 +944,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 35.910157 + 0: The total amount of wall time = 36.185397 Test 015 fv3_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_lheatstrg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lheatstrg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -995,13 +995,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.034232 + 0: The total amount of wall time = 36.589257 Test 016 fv3_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmprad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1047,13 +1047,13 @@ Checking test 017 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 651.522086 + 0: The total amount of wall time = 647.808781 Test 017 fv3_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmprad_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1099,13 +1099,13 @@ Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 795.771025 + 0: The total amount of wall time = 793.451093 Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_nemsio_c768 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio_c768 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_wrtGauss_nemsio_c768 Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1151,13 +1151,13 @@ Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 686.696713 + 0: The total amount of wall time = 675.961489 Test 019 fv3_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_multigases_repro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_multigases_repro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_multigases_repro Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1228,13 +1228,13 @@ Checking test 020 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 94.409498 + 0: The total amount of wall time = 94.189609 Test 020 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_control_32bit +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_32bit +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_control_32bit Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1299,13 +1299,13 @@ Checking test 021 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.293494 + 0: The total amount of wall time = 35.972635 Test 021 fv3_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_stretched +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_stretched Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1358,13 +1358,13 @@ Checking test 022 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.619141 + 0: The total amount of wall time = 220.622366 Test 022 fv3_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_stretched_nest +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_stretched_nest Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1428,13 +1428,13 @@ Checking test 023 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK - 0: The total amount of wall time = 241.143728 + 0: The total amount of wall time = 239.068823 Test 023 fv3_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_regional_control Checking test 024 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1442,25 +1442,25 @@ Checking test 024 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 545.888116 + 0: The total amount of wall time = 548.785021 Test 024 fv3_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_regional_restart Checking test 025 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 302.592031 + 0: The total amount of wall time = 305.519454 Test 025 fv3_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_quilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_regional_quilt Checking test 026 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1471,13 +1471,13 @@ Checking test 026 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 571.379197 + 0: The total amount of wall time = 575.474818 Test 026 fv3_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_quilt_hafs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_hafs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_regional_quilt_hafs Checking test 027 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1486,13 +1486,13 @@ Checking test 027 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 572.107104 + 0: The total amount of wall time = 578.036367 Test 027 fv3_regional_quilt_hafs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_quilt_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_regional_quilt_netcdf_parallel Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1500,13 +1500,13 @@ Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 574.912938 + 0: The total amount of wall time = 579.863110 Test 028 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfdlmp Checking test 029 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1551,13 +1551,13 @@ Checking test 029 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.405055 + 0: The total amount of wall time = 41.832184 Test 029 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmprad_gwd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_gwd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfdlmprad_gwd Checking test 030 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1602,13 +1602,13 @@ Checking test 030 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.194658 + 0: The total amount of wall time = 42.316280 Test 030 fv3_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmprad_noahmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_noahmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfdlmprad_noahmp Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1653,13 +1653,13 @@ Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.634125 + 0: The total amount of wall time = 42.661135 Test 031 fv3_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_csawmg Checking test 032 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1704,13 +1704,13 @@ Checking test 032 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 107.844218 + 0: The total amount of wall time = 106.824820 Test 032 fv3_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_satmedmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_satmedmf Checking test 033 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1755,13 @@ Checking test 033 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.213413 + 0: The total amount of wall time = 45.158954 Test 033 fv3_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_satmedmfq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmfq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_satmedmfq Checking test 034 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1806,13 +1806,13 @@ Checking test 034 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.173363 + 0: The total amount of wall time = 45.200156 Test 034 fv3_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmp_32bit +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp_32bit +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfdlmp_32bit Checking test 035 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1857,13 +1857,13 @@ Checking test 035 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 36.570245 + 0: The total amount of wall time = 36.574544 Test 035 fv3_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmprad_32bit_post +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_32bit_post +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfdlmprad_32bit_post Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1912,13 +1912,13 @@ Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 74.817737 + 0: The total amount of wall time = 74.311706 Test 036 fv3_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_cpt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_cpt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_cpt Checking test 037 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1969,13 +1969,13 @@ Checking test 037 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 253.319232 + 0: The total amount of wall time = 252.620553 Test 037 fv3_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gsd Checking test 038 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2064,13 +2064,13 @@ Checking test 038 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.564346 + 0: The total amount of wall time = 176.895898 Test 038 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rap -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_rap +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rap +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_rap Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2135,13 +2135,13 @@ Checking test 039 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.295678 + 0: The total amount of wall time = 86.830353 Test 039 fv3_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_hrrr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_hrrr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_hrrr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_hrrr Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,13 +2206,13 @@ Checking test 040 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.088209 + 0: The total amount of wall time = 96.290772 Test 040 fv3_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_thompson Checking test 041 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2277,13 +2277,13 @@ Checking test 041 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 83.657385 + 0: The total amount of wall time = 83.959327 Test 041 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_thompson_no_aero Checking test 042 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2348,13 +2348,13 @@ Checking test 042 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 80.112242 + 0: The total amount of wall time = 79.002212 Test 042 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_rrfs_v1beta Checking test 043 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2419,13 +2419,13 @@ Checking test 043 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 97.405291 + 0: The total amount of wall time = 97.439888 Test 043 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v15p2 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v15p2 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v15p2 Checking test 044 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2490,13 +2490,13 @@ Checking test 044 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 92.950771 + 0: The total amount of wall time = 95.711429 Test 044 fv3_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16 Checking test 045 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2573,13 +2573,13 @@ Checking test 045 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 103.658244 + 0: The total amount of wall time = 134.215278 Test 045 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_restart Checking test 046 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2626,13 +2626,13 @@ Checking test 046 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 52.932842 + 0: The total amount of wall time = 83.478988 Test 046 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_stochy Checking test 047 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2697,13 +2697,13 @@ Checking test 047 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 47.955265 + 0: The total amount of wall time = 47.497561 Test 047 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v15p2_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v15p2_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v15p2_RRTMGP Checking test 048 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2768,13 +2768,13 @@ Checking test 048 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 155.768039 + 0: The total amount of wall time = 160.979640 Test 048 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_RRTMGP Checking test 049 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2839,13 +2839,13 @@ Checking test 049 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 160.084440 + 0: The total amount of wall time = 162.680201 Test 049 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_RRTMGP_c192L127 Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2904,13 +2904,13 @@ Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 624.134358 + 0: The total amount of wall time = 622.127195 Test 050 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_RRTMGP_2thrd Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2975,13 +2975,13 @@ Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 174.236436 + 0: The total amount of wall time = 172.184935 Test 051 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfsv16_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfsv16_csawmg Checking test 052 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3026,13 +3026,13 @@ Checking test 052 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 114.815562 + 0: The total amount of wall time = 113.951885 Test 052 fv3_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfsv16_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfsv16_csawmgt Checking test 053 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3077,13 +3077,13 @@ Checking test 053 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 112.729723 + 0: The total amount of wall time = 112.191887 Test 053 fv3_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gocart_clm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gocart_clm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gocart_clm Checking test 054 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3128,13 +3128,13 @@ Checking test 054 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 48.822872 + 0: The total amount of wall time = 47.853881 Test 054 fv3_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_flake Checking test 055 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3199,13 +3199,13 @@ Checking test 055 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 98.159527 + 0: The total amount of wall time = 97.570599 Test 055 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_HAFS_v0_hwrf_thompson Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3270,13 +3270,13 @@ Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 141.808981 + 0: The total amount of wall time = 142.560489 Test 056 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_esg_HAFS_v0_hwrf_thompson Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3291,13 +3291,13 @@ Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 279.286937 + 0: The total amount of wall time = 279.068181 Test 057 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfsv16_ugwpv1 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfsv16_ugwpv1 Checking test 058 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3356,13 +3356,13 @@ Checking test 058 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 163.097602 + 0: The total amount of wall time = 165.213611 Test 058 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfsv16_ugwpv1_warmstart Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3421,13 +3421,13 @@ Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 162.731251 + 0: The total amount of wall time = 165.506709 Test 059 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_ras Checking test 060 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3492,13 +3492,13 @@ Checking test 060 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 88.161439 + 0: The total amount of wall time = 88.980063 Test 060 fv3_gfs_v16_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v15p2_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v15p2_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v15p2_debug Checking test 061 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3563,13 +3563,13 @@ Checking test 061 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.007305 + 0: The total amount of wall time = 225.099175 Test 061 fv3_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_debug Checking test 062 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3634,13 +3634,13 @@ Checking test 062 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.622768 + 0: The total amount of wall time = 243.367325 Test 062 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v15p2_RRTMGP_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v15p2_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v15p2_RRTMGP_debug Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3705,13 +3705,13 @@ Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 349.388826 + 0: The total amount of wall time = 352.198668 Test 063 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_RRTMGP_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_RRTMGP_debug Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3776,13 +3776,13 @@ Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.212254 + 0: The total amount of wall time = 348.231119 Test 064 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_regional_control_debug Checking test 065 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3790,13 +3790,13 @@ Checking test 065 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 347.942146 + 0: The total amount of wall time = 335.875164 Test 065 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_control_debug Checking test 066 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3823,13 +3823,13 @@ Checking test 066 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 130.840777 + 0: The total amount of wall time = 134.742829 Test 066 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_stretched_nest_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_stretched_nest_debug Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3846,13 +3846,13 @@ Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 351.036123 + 0: The total amount of wall time = 353.085271 Test 067 fv3_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gsd_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gsd_debug Checking test 068 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3917,13 +3917,13 @@ Checking test 068 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.786741 + 0: The total amount of wall time = 192.591354 Test 068 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gsd_diag3d_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_diag3d_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gsd_diag3d_debug Checking test 069 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3988,13 +3988,13 @@ Checking test 069 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 255.528227 + 0: The total amount of wall time = 256.340673 Test 069 fv3_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_thompson_debug Checking test 070 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4059,13 +4059,13 @@ Checking test 070 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 327.548315 + 0: The total amount of wall time = 328.618804 Test 070 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_thompson_no_aero_debug Checking test 071 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4130,13 +4130,13 @@ Checking test 071 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 322.229219 + 0: The total amount of wall time = 312.673129 Test 071 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_rrfs_v1beta_debug Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4201,13 +4201,13 @@ Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.080651 + 0: The total amount of wall time = 191.752292 Test 072 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_HAFS_v0_hwrf_thompson_debug Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4272,13 +4272,13 @@ Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 201.966598 + 0: The total amount of wall time = 200.938783 Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4293,13 +4293,13 @@ Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 387.174978 + 0: The total amount of wall time = 378.186319 Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfsv16_ugwpv1_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfsv16_ugwpv1_debug Checking test 075 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4358,13 +4358,13 @@ Checking test 075 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 548.665426 + 0: The total amount of wall time = 544.867505 Test 075 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_ras_debug Checking test 076 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4429,13 +4429,13 @@ Checking test 076 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 308.110126 + 0: The total amount of wall time = 315.751593 Test 076 fv3_gfs_v16_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_control Checking test 077 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4485,13 +4485,13 @@ Checking test 077 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 91.160881 + 0: The total amount of wall time = 90.044466 Test 077 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restart Checking test 078 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4541,13 +4541,13 @@ Checking test 078 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 53.505299 + 0: The total amount of wall time = 55.576142 Test 078 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_controlfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_controlfrac Checking test 079 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4597,13 +4597,13 @@ Checking test 079 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 92.818979 + 0: The total amount of wall time = 90.628179 Test 079 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restartfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restartfrac Checking test 080 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4653,13 +4653,13 @@ Checking test 080 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 54.188205 + 0: The total amount of wall time = 55.570850 Test 080 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_2threads Checking test 081 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4709,13 +4709,13 @@ Checking test 081 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 109.846490 + 0: The total amount of wall time = 109.929377 Test 081 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_decomp Checking test 082 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4765,13 +4765,13 @@ Checking test 082 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 88.891960 + 0: The total amount of wall time = 88.407913 Test 082 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_satmedmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_satmedmf Checking test 083 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4821,13 +4821,13 @@ Checking test 083 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 88.584800 + 0: The total amount of wall time = 87.955582 Test 083 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_ca Checking test 084 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4877,13 +4877,13 @@ Checking test 084 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 88.504438 + 0: The total amount of wall time = 89.353323 Test 084 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_control_c192 Checking test 085 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4933,13 +4933,13 @@ Checking test 085 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 377.874915 + 0: The total amount of wall time = 377.968528 Test 085 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restart_c192 Checking test 086 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4989,13 +4989,13 @@ Checking test 086 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 265.979803 + 0: The total amount of wall time = 265.944466 Test 086 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_controlfrac_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_controlfrac_c192 Checking test 087 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -5045,13 +5045,13 @@ Checking test 087 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 374.411148 + 0: The total amount of wall time = 384.196523 Test 087 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restartfrac_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restartfrac_c192 Checking test 088 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -5101,13 +5101,13 @@ Checking test 088 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 261.415897 + 0: The total amount of wall time = 261.089301 Test 088 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_control_c384 Checking test 089 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5160,13 +5160,13 @@ Checking test 089 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1317.485100 + 0: The total amount of wall time = 1345.438543 Test 089 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restart_c384 Checking test 090 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5219,13 +5219,13 @@ Checking test 090 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 689.823982 + 0: The total amount of wall time = 704.114745 Test 090 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_controlfrac_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_controlfrac_c384 Checking test 091 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5278,13 +5278,13 @@ Checking test 091 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1303.957096 + 0: The total amount of wall time = 1320.483850 Test 091 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restartfrac_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restartfrac_c384 Checking test 092 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5337,13 +5337,13 @@ Checking test 092 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 682.402036 + 0: The total amount of wall time = 683.056444 Test 092 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmark +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_bmark Checking test 093 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5396,13 +5396,13 @@ Checking test 093 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 820.589829 + 0: The total amount of wall time = 817.576210 Test 093 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart_bmark +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restart_bmark Checking test 094 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5455,13 +5455,13 @@ Checking test 094 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 441.981540 + 0: The total amount of wall time = 437.353297 Test 094 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmarkfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_bmarkfrac Checking test 095 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5514,13 +5514,13 @@ Checking test 095 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 809.816461 + 0: The total amount of wall time = 812.952543 Test 095 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart_bmarkfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restart_bmarkfrac Checking test 096 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5573,13 +5573,13 @@ Checking test 096 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 441.646627 + 0: The total amount of wall time = 441.442526 Test 096 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmarkfrac_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_bmarkfrac_v16 Checking test 097 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5632,13 +5632,13 @@ Checking test 097 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 1315.649066 + 0: The total amount of wall time = 1305.496119 Test 097 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart_bmarkfrac_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restart_bmarkfrac_v16 Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5691,13 +5691,13 @@ Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 716.016695 + 0: The total amount of wall time = 703.748712 Test 098 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmark_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_bmark_wave Checking test 099 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5753,13 +5753,13 @@ Checking test 099 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1382.696571 + 0: The total amount of wall time = 1368.686466 Test 099 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmarkfrac_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_bmarkfrac_wave Checking test 100 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5815,13 +5815,13 @@ Checking test 100 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1368.527549 + 0: The total amount of wall time = 1371.999124 Test 100 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmarkfrac_wave_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_bmarkfrac_wave_v16 Checking test 101 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5876,13 +5876,13 @@ Checking test 101 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 891.093208 + 0: The total amount of wall time = 892.368621 Test 101 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_control_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_control_wave Checking test 102 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5935,13 +5935,13 @@ Checking test 102 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 783.029630 + 0: The total amount of wall time = 782.683284 Test 102 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_debug Checking test 103 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5991,13 +5991,13 @@ Checking test 103 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 285.421588 + 0: The total amount of wall time = 288.011087 Test 103 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debugfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_debugfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_debugfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_debugfrac Checking test 104 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -6047,73 +6047,73 @@ Checking test 104 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 281.936341 + 0: The total amount of wall time = 286.355890 Test 104 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/datm_control_cfsr Checking test 105 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 - 0: The total amount of wall time = 97.924781 + 0: The total amount of wall time = 95.917587 Test 105 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/datm_restart_cfsr Checking test 106 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 - 0: The total amount of wall time = 63.390943 + 0: The total amount of wall time = 63.974885 Test 106 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/datm_control_gefs Checking test 107 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 - 0: The total amount of wall time = 90.525353 + 0: The total amount of wall time = 88.939427 Test 107 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/datm_bulk_cfsr Checking test 108 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 - 0: The total amount of wall time = 94.753543 + 0: The total amount of wall time = 92.475060 Test 108 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/datm_bulk_gefs Checking test 109 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 - 0: The total amount of wall time = 90.559121 + 0: The total amount of wall time = 89.705565 Test 109 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/datm_mx025_cfsr Checking test 110 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -6122,13 +6122,13 @@ Checking test 110 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 363.841625 + 0: The total amount of wall time = 355.804060 Test 110 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/datm_mx025_gefs Checking test 111 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -6137,23 +6137,23 @@ Checking test 111 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 349.344429 + 0: The total amount of wall time = 351.373008 Test 111 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/datm_debug_cfsr Checking test 112 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 - 0: The total amount of wall time = 269.316066 + 0: The total amount of wall time = 269.926969 Test 112 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 23 01:13:29 UTC 2021 -Elapsed time: 01h:26m:35s. Have a nice day! +Thu Mar 25 03:18:33 UTC 2021 +Elapsed time: 02h:17m:06s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 390cfb3f75..86632b702f 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,23 +1,23 @@ -Mon Mar 22 23:31:27 GMT 2021 +Thu Mar 25 20:16:17 GMT 2021 Start Regression test -Compile 001 elapsed time 3225 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 1177 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 2040 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 2052 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 2078 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 2601 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 2476 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 008 elapsed time 2255 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 2186 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 2083 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 2293 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 219 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 230 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 014 elapsed time 211 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_control +Compile 001 elapsed time 2097 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 1148 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 2038 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 2043 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 2087 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 2275 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 2498 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 008 elapsed time 2093 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 2166 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 2956 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 2982 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 212 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 347 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 014 elapsed time 214 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -82,13 +82,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 63.457498 +The total amount of wall time = 59.249616 Test 001 fv3_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_2threads +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_2threads Checking test 002 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -153,13 +153,13 @@ Checking test 002 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 286.959426 +The total amount of wall time = 289.169843 Test 002 fv3_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_restart +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_restart Checking test 003 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -206,13 +206,13 @@ Checking test 003 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 28.010051 +The total amount of wall time = 27.623003 Test 003 fv3_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_read_inc +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_read_inc +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_read_inc Checking test 004 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -277,13 +277,13 @@ Checking test 004 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.034675 +The total amount of wall time = 53.207164 Test 004 fv3_read_inc PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGauss_netcdf_esmf +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_wrtGauss_netcdf_esmf Checking test 005 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -328,13 +328,13 @@ Checking test 005 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 155.728536 +The total amount of wall time = 162.234299 Test 005 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGauss_netcdf +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_wrtGauss_netcdf Checking test 006 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -379,13 +379,13 @@ Checking test 006 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.058650 +The total amount of wall time = 52.845349 Test 006 fv3_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGauss_netcdf_parallel +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_wrtGauss_netcdf_parallel Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -430,13 +430,13 @@ Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 67.698088 +The total amount of wall time = 68.613624 Test 007 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGlatlon_netcdf +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGlatlon_netcdf +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_wrtGlatlon_netcdf Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -481,13 +481,13 @@ Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.516661 +The total amount of wall time = 52.633247 Test 008 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGauss_nemsio +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_wrtGauss_nemsio Checking test 009 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -532,13 +532,13 @@ Checking test 009 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.530401 +The total amount of wall time = 52.319853 Test 009 fv3_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGauss_nemsio_c192 +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_wrtGauss_nemsio_c192 Checking test 010 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,13 +583,13 @@ Checking test 010 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 140.918517 +The total amount of wall time = 140.386793 Test 010 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_stochy +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stochy +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_stochy Checking test 011 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -654,13 +654,13 @@ Checking test 011 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.535293 +The total amount of wall time = 58.752844 Test 011 fv3_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_ca +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_ca +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_ca Checking test 012 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -725,13 +725,13 @@ Checking test 012 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 43.192538 +The total amount of wall time = 43.563227 Test 012 fv3_ca PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_lndp +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lndp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_lndp Checking test 013 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -796,13 +796,13 @@ Checking test 013 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 64.112856 +The total amount of wall time = 67.670359 Test 013 fv3_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_iau +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_iau +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_iau Checking test 014 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -867,13 +867,13 @@ Checking test 014 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.773235 +The total amount of wall time = 52.502947 Test 014 fv3_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_lheatstrg +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lheatstrg +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_lheatstrg Checking test 015 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -918,13 +918,13 @@ Checking test 015 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.165470 +The total amount of wall time = 52.330329 Test 015 fv3_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_multigases_repro +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_multigases_repro +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_multigases_repro Checking test 016 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -995,13 +995,13 @@ Checking test 016 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 129.437864 +The total amount of wall time = 129.593993 Test 016 fv3_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_control_32bit +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_32bit +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_control_32bit Checking test 017 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1066,13 +1066,13 @@ Checking test 017 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 55.128539 +The total amount of wall time = 58.310821 Test 017 fv3_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_stretched +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_stretched Checking test 018 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1125,13 +1125,13 @@ Checking test 018 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 395.212291 +The total amount of wall time = 395.357411 Test 018 fv3_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_stretched_nest +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_stretched_nest Checking test 019 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1195,13 +1195,13 @@ Checking test 019 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 425.768103 +The total amount of wall time = 421.960868 Test 019 fv3_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_control +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_regional_control Checking test 020 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,25 +1209,25 @@ Checking test 020 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 862.438264 +The total amount of wall time = 864.416783 Test 020 fv3_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_restart +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_restart +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_regional_restart Checking test 021 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 482.687176 +The total amount of wall time = 483.232496 Test 021 fv3_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_quilt +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_regional_quilt Checking test 022 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1238,13 +1238,13 @@ Checking test 022 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 843.703210 +The total amount of wall time = 854.145853 Test 022 fv3_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_quilt_hafs +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_hafs +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_regional_quilt_hafs Checking test 023 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1253,13 +1253,13 @@ Checking test 023 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 849.096346 +The total amount of wall time = 849.644219 Test 023 fv3_regional_quilt_hafs PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_quilt_netcdf_parallel +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_regional_quilt_netcdf_parallel Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1267,13 +1267,13 @@ Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 846.773020 +The total amount of wall time = 853.828607 Test 024 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfdlmp +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfdlmp Checking test 025 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1318,13 +1318,13 @@ Checking test 025 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.602688 +The total amount of wall time = 66.955817 Test 025 fv3_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfdlmprad_gwd +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_gwd +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfdlmprad_gwd Checking test 026 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1369,13 +1369,13 @@ Checking test 026 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.719972 +The total amount of wall time = 61.138613 Test 026 fv3_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfdlmprad_noahmp +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_noahmp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfdlmprad_noahmp Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1420,13 +1420,13 @@ Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.836103 +The total amount of wall time = 62.988935 Test 027 fv3_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_csawmg +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_csawmg +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_csawmg Checking test 028 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1471,13 +1471,13 @@ Checking test 028 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 150.291266 +The total amount of wall time = 150.833492 Test 028 fv3_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_satmedmf +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmf +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_satmedmf Checking test 029 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1522,13 +1522,13 @@ Checking test 029 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 66.779379 +The total amount of wall time = 66.742157 Test 029 fv3_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_satmedmfq +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmfq +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_satmedmfq Checking test 030 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1573,13 +1573,13 @@ Checking test 030 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 65.432115 +The total amount of wall time = 66.012765 Test 030 fv3_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfdlmp_32bit +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp_32bit +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfdlmp_32bit Checking test 031 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1624,13 +1624,13 @@ Checking test 031 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 53.211388 +The total amount of wall time = 52.022141 Test 031 fv3_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfdlmprad_32bit_post +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_32bit_post +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfdlmprad_32bit_post Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1679,13 +1679,13 @@ Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 95.386979 +The total amount of wall time = 96.557091 Test 032 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_cpt +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_cpt +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_cpt Checking test 033 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1736,13 @@ Checking test 033 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 348.795415 +The total amount of wall time = 348.758388 Test 033 fv3_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gsd +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gsd Checking test 034 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1831,13 +1831,13 @@ Checking test 034 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 244.664044 +The total amount of wall time = 242.906566 Test 034 fv3_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_thompson +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_thompson Checking test 035 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1902,13 +1902,13 @@ Checking test 035 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 113.992952 +The total amount of wall time = 113.309544 Test 035 fv3_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_thompson_no_aero +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_thompson_no_aero Checking test 036 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1973,85 +1973,14 @@ Checking test 036 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 107.419023 +The total amount of wall time = 110.747057 Test 036 fv3_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2 -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v15p2 -Checking test 037 fv3_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 - -The total amount of wall time = 119.860968 - -Test 037 fv3_gfs_v15p2 PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16 -Checking test 038 fv3_gfs_v16 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16 +Checking test 037 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2127,14 +2056,14 @@ Checking test 038 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 145.620340 +The total amount of wall time = 178.889485 -Test 038 fv3_gfs_v16 PASS +Test 037 fv3_gfs_v16 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_restart -Checking test 039 fv3_gfs_v16_restart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_restart +Checking test 038 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2180,14 +2109,14 @@ Checking test 039 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 75.006198 +The total amount of wall time = 106.498490 -Test 039 fv3_gfs_v16_restart PASS +Test 038 fv3_gfs_v16_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_stochy -Checking test 040 fv3_gfs_v16_stochy results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_stochy +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_stochy +Checking test 039 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2251,14 +2180,14 @@ Checking test 040 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 66.798086 +The total amount of wall time = 65.638747 -Test 040 fv3_gfs_v16_stochy PASS +Test 039 fv3_gfs_v16_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_RRTMGP -Checking test 041 fv3_gfs_v16_RRTMGP results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_RRTMGP +Checking test 040 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2322,14 +2251,14 @@ Checking test 041 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 192.208742 +The total amount of wall time = 191.102316 -Test 041 fv3_gfs_v16_RRTMGP PASS +Test 040 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_RRTMGP_c192L127 -Checking test 042 fv3_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_RRTMGP_c192L127 +Checking test 041 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2387,14 +2316,14 @@ Checking test 042 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 804.367251 +The total amount of wall time = 804.104664 -Test 042 fv3_gfs_v16_RRTMGP_c192L127 PASS +Test 041 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_RRTMGP_2thrd -Checking test 043 fv3_gfs_v16_RRTMGP_2thrd results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_RRTMGP_2thrd +Checking test 042 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2458,14 +2387,14 @@ Checking test 043 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 806.425917 +The total amount of wall time = 794.648192 -Test 043 fv3_gfs_v16_RRTMGP_2thrd PASS +Test 042 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmg -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfsv16_csawmg -Checking test 044 fv3_gfsv16_csawmg results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_csawmg +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfsv16_csawmg +Checking test 043 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2509,14 +2438,14 @@ Checking test 044 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 161.862794 +The total amount of wall time = 160.717013 -Test 044 fv3_gfsv16_csawmg PASS +Test 043 fv3_gfsv16_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfsv16_csawmgt -Checking test 045 fv3_gfsv16_csawmgt results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfsv16_csawmgt +Checking test 044 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2560,14 +2489,14 @@ Checking test 045 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 160.459083 +The total amount of wall time = 159.791211 -Test 045 fv3_gfsv16_csawmgt PASS +Test 044 fv3_gfsv16_csawmgt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gocart_clm -Checking test 046 fv3_gocart_clm results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gocart_clm +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gocart_clm +Checking test 045 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2611,14 +2540,14 @@ Checking test 046 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 67.712083 +The total amount of wall time = 66.817716 -Test 046 fv3_gocart_clm PASS +Test 045 fv3_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_flake -Checking test 047 fv3_gfs_v16_flake results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_flake +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_flake +Checking test 046 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2682,14 +2611,14 @@ Checking test 047 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 122.945789 +The total amount of wall time = 124.241285 -Test 047 fv3_gfs_v16_flake PASS +Test 046 fv3_gfs_v16_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_HAFS_v0_hwrf_thompson -Checking test 048 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_HAFS_v0_hwrf_thompson +Checking test 047 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2753,14 +2682,14 @@ Checking test 048 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 191.517763 +The total amount of wall time = 192.679150 -Test 048 fv3_HAFS_v0_hwrf_thompson PASS +Test 047 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 049 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 048 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2774,14 +2703,14 @@ Checking test 049 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 357.299887 +The total amount of wall time = 356.880059 -Test 049 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 048 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfsv16_ugwpv1 -Checking test 050 fv3_gfsv16_ugwpv1 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfsv16_ugwpv1 +Checking test 049 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2839,14 +2768,14 @@ Checking test 050 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 229.338431 +The total amount of wall time = 231.496224 -Test 050 fv3_gfsv16_ugwpv1 PASS +Test 049 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfsv16_ugwpv1_warmstart -Checking test 051 fv3_gfsv16_ugwpv1_warmstart results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfsv16_ugwpv1_warmstart +Checking test 050 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2904,14 +2833,14 @@ Checking test 051 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 228.134745 +The total amount of wall time = 229.632922 -Test 051 fv3_gfsv16_ugwpv1_warmstart PASS +Test 050 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_ras -Checking test 052 fv3_gfs_v16_ras results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_ras +Checking test 051 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2975,156 +2904,14 @@ Checking test 052 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 122.757670 - -Test 052 fv3_gfs_v16_ras PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v15p2_debug -Checking test 053 fv3_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 - -The total amount of wall time = 273.041754 - -Test 053 fv3_gfs_v15p2_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_debug -Checking test 054 fv3_gfs_v16_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 - -The total amount of wall time = 207.147070 +The total amount of wall time = 123.431468 -Test 054 fv3_gfs_v16_debug PASS +Test 051 fv3_gfs_v16_ras PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v15p2_RRTMGP_debug -Checking test 055 fv3_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_debug +Checking test 052 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3188,14 +2975,14 @@ Checking test 055 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 440.676073 +The total amount of wall time = 297.041731 -Test 055 fv3_gfs_v15p2_RRTMGP_debug PASS +Test 052 fv3_gfs_v16_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_RRTMGP_debug -Checking test 056 fv3_gfs_v16_RRTMGP_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_RRTMGP_debug +Checking test 053 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3259,28 +3046,28 @@ Checking test 056 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 454.031668 +The total amount of wall time = 451.905702 -Test 056 fv3_gfs_v16_RRTMGP_debug PASS +Test 053 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_control_debug -Checking test 057 fv3_regional_control_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_regional_control_debug +Checking test 054 fv3_regional_control_debug 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 -The total amount of wall time = 455.214080 +The total amount of wall time = 454.591110 -Test 057 fv3_regional_control_debug PASS +Test 054 fv3_regional_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_control_debug -Checking test 058 fv3_control_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_control_debug +Checking test 055 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3306,14 +3093,14 @@ Checking test 058 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 160.145813 +The total amount of wall time = 158.948733 -Test 058 fv3_control_debug PASS +Test 055 fv3_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_stretched_nest_debug -Checking test 059 fv3_stretched_nest_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_stretched_nest_debug +Checking test 056 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3329,14 +3116,14 @@ Checking test 059 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 535.120230 +The total amount of wall time = 534.778696 -Test 059 fv3_stretched_nest_debug PASS +Test 056 fv3_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gsd_debug -Checking test 060 fv3_gsd_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gsd_debug +Checking test 057 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3400,14 +3187,14 @@ Checking test 060 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 240.946924 +The total amount of wall time = 239.499156 -Test 060 fv3_gsd_debug PASS +Test 057 fv3_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gsd_diag3d_debug -Checking test 061 fv3_gsd_diag3d_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_diag3d_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gsd_diag3d_debug +Checking test 058 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3471,14 +3258,14 @@ Checking test 061 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 269.074205 +The total amount of wall time = 273.412196 -Test 061 fv3_gsd_diag3d_debug PASS +Test 058 fv3_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_thompson_debug -Checking test 062 fv3_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_thompson_debug +Checking test 059 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3542,14 +3329,14 @@ Checking test 062 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 417.046468 +The total amount of wall time = 416.999151 -Test 062 fv3_thompson_debug PASS +Test 059 fv3_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_thompson_no_aero_debug -Checking test 063 fv3_thompson_no_aero_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_thompson_no_aero_debug +Checking test 060 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3613,14 +3400,14 @@ Checking test 063 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 403.581965 +The total amount of wall time = 406.065095 -Test 063 fv3_thompson_no_aero_debug PASS +Test 060 fv3_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_rrfs_v1beta_debug -Checking test 064 fv3_rrfs_v1beta_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_rrfs_v1beta_debug +Checking test 061 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3684,14 +3471,14 @@ Checking test 064 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 230.865834 +The total amount of wall time = 231.671000 -Test 064 fv3_rrfs_v1beta_debug PASS +Test 061 fv3_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 065 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 062 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3755,14 +3542,14 @@ Checking test 065 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 248.012531 +The total amount of wall time = 249.858526 -Test 065 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 062 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 063 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3776,14 +3563,14 @@ Checking test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 464.074253 +The total amount of wall time = 464.531961 -Test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 063 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfsv16_ugwpv1_debug -Checking test 067 fv3_gfsv16_ugwpv1_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfsv16_ugwpv1_debug +Checking test 064 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3841,14 +3628,14 @@ Checking test 067 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 709.823754 +The total amount of wall time = 710.386890 -Test 067 fv3_gfsv16_ugwpv1_debug PASS +Test 064 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_ras_debug -Checking test 068 fv3_gfs_v16_ras_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_ras_debug +Checking test 065 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3912,11 +3699,11 @@ Checking test 068 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 395.042769 +The total amount of wall time = 395.586576 -Test 068 fv3_gfs_v16_ras_debug PASS +Test 065 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 23 02:45:23 GMT 2021 -Elapsed time: 03h:13m:56s. Have a nice day! +Thu Mar 25 22:42:44 GMT 2021 +Elapsed time: 02h:26m:28s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 87f9342763..f0ebbff093 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,29 +1,29 @@ -Tue Mar 23 07:53:29 CDT 2021 +Thu Mar 25 09:17:16 CDT 2021 Start Regression test -Compile 001 elapsed time 494 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 573 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -Compile 003 elapsed time 534 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 004 elapsed time 490 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 005 elapsed time 494 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 006 elapsed time 564 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 007 elapsed time 667 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 008 elapsed time 736 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 009 elapsed time 663 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP -Compile 010 elapsed time 540 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 011 elapsed time 508 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 012 elapsed time 551 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 013 elapsed time 145 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 014 elapsed time 143 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 001 elapsed time 493 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 524 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 471 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 488 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 496 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 006 elapsed time 501 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 558 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 593 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 009 elapsed time 505 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 542 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 500 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 553 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 135 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 148 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y Compile 015 elapsed time 134 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 016 elapsed time 740 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 564 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 018 elapsed time 152 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 019 elapsed time 380 seconds. APP=DATM_NEMS -Compile 020 elapsed time 128 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_control +Compile 016 elapsed time 563 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 574 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 147 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 019 elapsed time 377 seconds. APP=DATM_NEMS +Compile 020 elapsed time 126 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -88,13 +88,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 46.101687 + 0: The total amount of wall time = 47.210314 Test 001 fv3_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -159,13 +159,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 50.718015 + 0: The total amount of wall time = 50.168216 Test 002 fv3_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -230,13 +230,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 44.711798 + 0: The total amount of wall time = 44.185307 Test 003 fv3_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -283,13 +283,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 23.482743 + 0: The total amount of wall time = 26.399795 Test 004 fv3_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_read_inc +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_read_inc +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -354,13 +354,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 49.553305 + 0: The total amount of wall time = 50.507396 Test 005 fv3_read_inc PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_netcdf_esmf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -405,13 +405,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.108596 + 0: The total amount of wall time = 153.700113 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_netcdf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -456,13 +456,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 47.991036 + 0: The total amount of wall time = 45.995926 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -470,7 +470,7 @@ Checking test 008 fv3_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 @@ -507,13 +507,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 58.224379 + 0: The total amount of wall time = 57.380205 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGlatlon_netcdf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGlatlon_netcdf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -558,13 +558,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.794276 + 0: The total amount of wall time = 45.483171 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_nemsio +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,13 +609,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 39.920793 + 0: The total amount of wall time = 45.824878 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_nemsio_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -660,13 +660,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 107.928106 + 0: The total amount of wall time = 105.360400 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -731,13 +731,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 50.234873 + 0: The total amount of wall time = 52.958987 Test 012 fv3_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_ca +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -802,13 +802,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 35.593690 + 0: The total amount of wall time = 29.808758 Test 013 fv3_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -873,13 +873,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 58.322300 + 0: The total amount of wall time = 53.407781 Test 014 fv3_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_iau +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_iau +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,13 +944,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.056711 + 0: The total amount of wall time = 50.685859 Test 015 fv3_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_lheatstrg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lheatstrg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -995,13 +995,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 47.053957 + 0: The total amount of wall time = 44.215027 Test 016 fv3_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmprad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1047,13 +1047,13 @@ Checking test 017 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 677.826819 + 0: The total amount of wall time = 678.540590 Test 017 fv3_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_atmwav -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmprad_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1099,13 +1099,13 @@ Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 819.282807 + 0: The total amount of wall time = 822.179775 Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_nemsio_c768 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio_c768 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_wrtGauss_nemsio_c768 Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1151,13 +1151,13 @@ Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 696.965587 + 0: The total amount of wall time = 698.087814 Test 019 fv3_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_multigases_repro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_multigases_repro +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_multigases_repro Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1228,13 +1228,13 @@ Checking test 020 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 105.512769 + 0: The total amount of wall time = 99.562804 Test 020 fv3_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_control_32bit +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_32bit +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_control_32bit Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1299,13 +1299,13 @@ Checking test 021 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 38.127887 + 0: The total amount of wall time = 46.552070 Test 021 fv3_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_stretched +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_stretched Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1358,13 +1358,13 @@ Checking test 022 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.119629 + 0: The total amount of wall time = 222.059384 Test 022 fv3_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_stretched_nest +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_stretched_nest Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1428,13 +1428,13 @@ Checking test 023 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK - 0: The total amount of wall time = 243.635806 + 0: The total amount of wall time = 240.381614 Test 023 fv3_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_regional_control Checking test 024 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1442,25 +1442,25 @@ Checking test 024 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 534.231915 + 0: The total amount of wall time = 538.075472 Test 024 fv3_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_regional_restart Checking test 025 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 297.626999 + 0: The total amount of wall time = 302.789352 Test 025 fv3_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_quilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_regional_quilt Checking test 026 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1471,13 +1471,13 @@ Checking test 026 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 579.524629 + 0: The total amount of wall time = 586.430164 Test 026 fv3_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_quilt_hafs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_hafs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_regional_quilt_hafs Checking test 027 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1486,27 +1486,27 @@ Checking test 027 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 579.955266 + 0: The total amount of wall time = 581.827455 Test 027 fv3_regional_quilt_hafs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_quilt_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_regional_quilt_netcdf_parallel Checking test 028 fv3_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 - 0: The total amount of wall time = 581.995280 + 0: The total amount of wall time = 588.431507 Test 028 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfdlmp Checking test 029 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1551,13 +1551,13 @@ Checking test 029 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 50.451199 + 0: The total amount of wall time = 50.606839 Test 029 fv3_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmprad_gwd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_gwd +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfdlmprad_gwd Checking test 030 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1602,13 +1602,13 @@ Checking test 030 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 52.016158 + 0: The total amount of wall time = 51.021363 Test 030 fv3_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmprad_noahmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_noahmp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfdlmprad_noahmp Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1653,13 +1653,13 @@ Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 52.811692 + 0: The total amount of wall time = 49.324618 Test 031 fv3_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_csawmg Checking test 032 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1704,13 +1704,13 @@ Checking test 032 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 111.056297 + 0: The total amount of wall time = 120.381428 Test 032 fv3_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_satmedmf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_satmedmf Checking test 033 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1755,13 @@ Checking test 033 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 51.489409 + 0: The total amount of wall time = 54.251730 Test 033 fv3_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_satmedmfq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmfq +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_satmedmfq Checking test 034 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1806,13 +1806,13 @@ Checking test 034 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 47.330009 + 0: The total amount of wall time = 56.389869 Test 034 fv3_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmp_32bit +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp_32bit +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfdlmp_32bit Checking test 035 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1857,13 +1857,13 @@ Checking test 035 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 46.764119 + 0: The total amount of wall time = 47.019053 Test 035 fv3_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmprad_32bit_post +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_32bit_post +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfdlmprad_32bit_post Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1912,13 +1912,13 @@ Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 72.443134 + 0: The total amount of wall time = 73.692836 Test 036 fv3_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_cpt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_cpt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_cpt Checking test 037 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1969,13 +1969,13 @@ Checking test 037 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 261.739828 + 0: The total amount of wall time = 263.136719 Test 037 fv3_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gsd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gsd Checking test 038 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2064,13 +2064,13 @@ Checking test 038 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.164520 + 0: The total amount of wall time = 194.356867 Test 038 fv3_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rap -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_rap +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rap +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_rap Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2135,13 +2135,13 @@ Checking test 039 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 98.581565 + 0: The total amount of wall time = 103.830709 Test 039 fv3_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_hrrr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_hrrr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_hrrr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_hrrr Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,13 +2206,13 @@ Checking test 040 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 109.029001 + 0: The total amount of wall time = 112.894398 Test 040 fv3_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_thompson Checking test 041 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2277,13 +2277,13 @@ Checking test 041 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 93.946234 + 0: The total amount of wall time = 97.373654 Test 041 fv3_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_thompson_no_aero +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_thompson_no_aero Checking test 042 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2348,13 +2348,13 @@ Checking test 042 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 92.037144 + 0: The total amount of wall time = 93.471761 Test 042 fv3_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_rrfs_v1beta Checking test 043 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2419,85 +2419,14 @@ Checking test 043 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 112.322392 + 0: The total amount of wall time = 106.101728 Test 043 fv3_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v15p2 -Checking test 044 fv3_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 - - 0: The total amount of wall time = 102.189974 - -Test 044 fv3_gfs_v15p2 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16 -Checking test 045 fv3_gfs_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16 +Checking test 044 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2573,14 +2502,14 @@ Checking test 045 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 111.578814 + 0: The total amount of wall time = 206.556147 -Test 045 fv3_gfs_v16 PASS +Test 044 fv3_gfs_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_restart -Checking test 046 fv3_gfs_v16_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_restart +Checking test 045 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2626,14 +2555,14 @@ Checking test 046 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 62.286551 + 0: The total amount of wall time = 150.711583 -Test 046 fv3_gfs_v16_restart PASS +Test 045 fv3_gfs_v16_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_stochy -Checking test 047 fv3_gfs_v16_stochy results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_stochy +Checking test 046 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2697,85 +2626,14 @@ Checking test 047 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 52.595486 - -Test 047 fv3_gfs_v16_stochy PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v15p2_RRTMGP -Checking test 048 fv3_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 - - 0: The total amount of wall time = 163.887440 + 0: The total amount of wall time = 55.290345 -Test 048 fv3_gfs_v15p2_RRTMGP PASS +Test 046 fv3_gfs_v16_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_RRTMGP -Checking test 049 fv3_gfs_v16_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_RRTMGP +Checking test 047 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2839,14 +2697,14 @@ Checking test 049 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 165.993988 + 0: The total amount of wall time = 168.802059 -Test 049 fv3_gfs_v16_RRTMGP PASS +Test 047 fv3_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_RRTMGP_c192L127 -Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_RRTMGP_c192L127 +Checking test 048 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2904,14 +2762,14 @@ Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 625.562035 + 0: The total amount of wall time = 631.555322 -Test 050 fv3_gfs_v16_RRTMGP_c192L127 PASS +Test 048 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_RRTMGP_2thrd -Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_RRTMGP_2thrd +Checking test 049 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2975,14 +2833,14 @@ Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 176.015856 + 0: The total amount of wall time = 180.163710 -Test 051 fv3_gfs_v16_RRTMGP_2thrd PASS +Test 049 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmg -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfsv16_csawmg -Checking test 052 fv3_gfsv16_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfsv16_csawmg +Checking test 050 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3026,14 +2884,14 @@ Checking test 052 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 130.545428 + 0: The total amount of wall time = 133.710115 -Test 052 fv3_gfsv16_csawmg PASS +Test 050 fv3_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmgt -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfsv16_csawmgt -Checking test 053 fv3_gfsv16_csawmgt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfsv16_csawmgt +Checking test 051 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3077,14 +2935,14 @@ Checking test 053 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 128.037325 + 0: The total amount of wall time = 130.239689 -Test 053 fv3_gfsv16_csawmgt PASS +Test 051 fv3_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gocart_clm -Checking test 054 fv3_gocart_clm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gocart_clm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gocart_clm +Checking test 052 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3128,14 +2986,14 @@ Checking test 054 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 60.929529 + 0: The total amount of wall time = 57.284369 -Test 054 fv3_gocart_clm PASS +Test 052 fv3_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_flake -Checking test 055 fv3_gfs_v16_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_flake +Checking test 053 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3199,14 +3057,14 @@ Checking test 055 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 106.638832 + 0: The total amount of wall time = 106.753169 -Test 055 fv3_gfs_v16_flake PASS +Test 053 fv3_gfs_v16_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_HAFS_v0_hwrf_thompson -Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_HAFS_v0_hwrf_thompson +Checking test 054 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3270,14 +3128,14 @@ Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 151.631406 + 0: The total amount of wall time = 150.201240 -Test 056 fv3_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 055 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -3291,14 +3149,14 @@ Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 295.112559 + 0: The total amount of wall time = 296.921666 -Test 057 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 055 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfsv16_ugwpv1 -Checking test 058 fv3_gfsv16_ugwpv1 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfsv16_ugwpv1 +Checking test 056 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3356,14 +3214,14 @@ Checking test 058 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 167.645191 + 0: The total amount of wall time = 170.860496 -Test 058 fv3_gfsv16_ugwpv1 PASS +Test 056 fv3_gfsv16_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfsv16_ugwpv1_warmstart -Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfsv16_ugwpv1_warmstart +Checking test 057 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3421,14 +3279,14 @@ Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 175.648535 + 0: The total amount of wall time = 170.210518 -Test 059 fv3_gfsv16_ugwpv1_warmstart PASS +Test 057 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_ras -Checking test 060 fv3_gfs_v16_ras results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_ras +Checking test 058 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3492,156 +3350,14 @@ Checking test 060 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 93.123008 - -Test 060 fv3_gfs_v16_ras PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v15p2_debug -Checking test 061 fv3_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 - - 0: The total amount of wall time = 243.950865 - -Test 061 fv3_gfs_v15p2_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_debug -Checking test 062 fv3_gfs_v16_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 - - 0: The total amount of wall time = 187.453483 + 0: The total amount of wall time = 96.767554 -Test 062 fv3_gfs_v16_debug PASS +Test 058 fv3_gfs_v16_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v15p2_RRTMGP_debug -Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_debug +Checking test 059 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3705,14 +3421,14 @@ Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 374.261105 + 0: The total amount of wall time = 300.406632 -Test 063 fv3_gfs_v15p2_RRTMGP_debug PASS +Test 059 fv3_gfs_v16_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_RRTMGP_debug -Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_RRTMGP_debug +Checking test 060 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3776,28 +3492,28 @@ Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 382.555526 + 0: The total amount of wall time = 381.618739 -Test 064 fv3_gfs_v16_RRTMGP_debug PASS +Test 060 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_control_debug -Checking test 065 fv3_regional_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_regional_control_debug +Checking test 061 fv3_regional_control_debug 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 - 0: The total amount of wall time = 373.369585 + 0: The total amount of wall time = 377.145504 -Test 065 fv3_regional_control_debug PASS +Test 061 fv3_regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_control_debug -Checking test 066 fv3_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_control_debug +Checking test 062 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3823,14 +3539,14 @@ Checking test 066 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 150.261458 + 0: The total amount of wall time = 159.736805 -Test 066 fv3_control_debug PASS +Test 062 fv3_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_stretched_nest_debug -Checking test 067 fv3_stretched_nest_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_stretched_nest_debug +Checking test 063 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3846,14 +3562,14 @@ Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 372.625045 + 0: The total amount of wall time = 377.116312 -Test 067 fv3_stretched_nest_debug PASS +Test 063 fv3_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gsd_debug -Checking test 068 fv3_gsd_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gsd_debug +Checking test 064 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3917,14 +3633,14 @@ Checking test 068 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 216.904775 + 0: The total amount of wall time = 219.702807 -Test 068 fv3_gsd_debug PASS +Test 064 fv3_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gsd_diag3d_debug -Checking test 069 fv3_gsd_diag3d_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_diag3d_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gsd_diag3d_debug +Checking test 065 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3988,14 +3704,14 @@ Checking test 069 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 302.162771 + 0: The total amount of wall time = 305.573719 -Test 069 fv3_gsd_diag3d_debug PASS +Test 065 fv3_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_thompson_debug -Checking test 070 fv3_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_thompson_debug +Checking test 066 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4059,14 +3775,14 @@ Checking test 070 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 359.858399 + 0: The total amount of wall time = 365.297575 -Test 070 fv3_thompson_debug PASS +Test 066 fv3_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_thompson_no_aero_debug -Checking test 071 fv3_thompson_no_aero_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_thompson_no_aero_debug +Checking test 067 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4130,14 +3846,14 @@ Checking test 071 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 345.693456 + 0: The total amount of wall time = 352.389501 -Test 071 fv3_thompson_no_aero_debug PASS +Test 067 fv3_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_rrfs_v1beta_debug -Checking test 072 fv3_rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_rrfs_v1beta_debug +Checking test 068 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4201,14 +3917,14 @@ Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.369735 + 0: The total amount of wall time = 214.584575 -Test 072 fv3_rrfs_v1beta_debug PASS +Test 068 fv3_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 069 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4272,14 +3988,14 @@ Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 225.720337 + 0: The total amount of wall time = 225.445429 -Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 069 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 070 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -4293,14 +4009,14 @@ Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 424.190416 + 0: The total amount of wall time = 407.788868 -Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 070 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfsv16_ugwpv1_debug -Checking test 075 fv3_gfsv16_ugwpv1_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfsv16_ugwpv1_debug +Checking test 071 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -4358,14 +4074,14 @@ Checking test 075 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 583.478429 + 0: The total amount of wall time = 579.889296 -Test 075 fv3_gfsv16_ugwpv1_debug PASS +Test 071 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_ras_debug -Checking test 076 fv3_gfs_v16_ras_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_ras_debug +Checking test 072 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4429,14 +4145,14 @@ Checking test 076 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 344.240212 + 0: The total amount of wall time = 338.724736 -Test 076 fv3_gfs_v16_ras_debug PASS +Test 072 fv3_gfs_v16_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_control -Checking test 077 cpld_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_control +Checking test 073 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4485,14 +4201,14 @@ Checking test 077 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 101.860852 + 0: The total amount of wall time = 98.677566 -Test 077 cpld_control PASS +Test 073 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart -Checking test 078 cpld_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restart +Checking test 074 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4541,14 +4257,14 @@ Checking test 078 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 65.476460 + 0: The total amount of wall time = 69.384433 -Test 078 cpld_restart PASS +Test 074 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_controlfrac -Checking test 079 cpld_controlfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_controlfrac +Checking test 075 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4597,14 +4313,14 @@ Checking test 079 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 108.466565 + 0: The total amount of wall time = 102.371523 -Test 079 cpld_controlfrac PASS +Test 075 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restartfrac -Checking test 080 cpld_restartfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restartfrac +Checking test 076 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4653,14 +4369,14 @@ Checking test 080 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 74.103551 + 0: The total amount of wall time = 75.617802 -Test 080 cpld_restartfrac PASS +Test 076 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_2threads -Checking test 081 cpld_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_2threads +Checking test 077 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4709,14 +4425,14 @@ Checking test 081 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 135.602745 + 0: The total amount of wall time = 121.002313 -Test 081 cpld_2threads PASS +Test 077 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_decomp -Checking test 082 cpld_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_decomp +Checking test 078 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4765,14 +4481,14 @@ Checking test 082 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 102.686077 + 0: The total amount of wall time = 97.144194 -Test 082 cpld_decomp PASS +Test 078 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_satmedmf -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_satmedmf -Checking test 083 cpld_satmedmf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_satmedmf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_satmedmf +Checking test 079 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4821,14 +4537,14 @@ Checking test 083 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 106.577948 + 0: The total amount of wall time = 100.138916 -Test 083 cpld_satmedmf PASS +Test 079 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_ca -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_ca -Checking test 084 cpld_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_ca +Checking test 080 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4877,14 +4593,14 @@ Checking test 084 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 106.772190 + 0: The total amount of wall time = 97.947509 -Test 084 cpld_ca PASS +Test 080 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_control_c192 -Checking test 085 cpld_control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_control_c192 +Checking test 081 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4933,14 +4649,14 @@ Checking test 085 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 394.095414 + 0: The total amount of wall time = 386.185048 -Test 085 cpld_control_c192 PASS +Test 081 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart_c192 -Checking test 086 cpld_restart_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restart_c192 +Checking test 082 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4989,14 +4705,14 @@ Checking test 086 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 269.148793 + 0: The total amount of wall time = 278.129117 -Test 086 cpld_restart_c192 PASS +Test 082 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_controlfrac_c192 -Checking test 087 cpld_controlfrac_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_controlfrac_c192 +Checking test 083 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -5045,14 +4761,14 @@ Checking test 087 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 383.675006 + 0: The total amount of wall time = 383.917237 -Test 087 cpld_controlfrac_c192 PASS +Test 083 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restartfrac_c192 -Checking test 088 cpld_restartfrac_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restartfrac_c192 +Checking test 084 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -5101,14 +4817,14 @@ Checking test 088 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 269.767705 + 0: The total amount of wall time = 276.807218 -Test 088 cpld_restartfrac_c192 PASS +Test 084 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_control_c384 -Checking test 089 cpld_control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_control_c384 +Checking test 085 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5160,14 +4876,14 @@ Checking test 089 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1328.094632 + 0: The total amount of wall time = 1314.515300 -Test 089 cpld_control_c384 PASS +Test 085 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart_c384 -Checking test 090 cpld_restart_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restart_c384 +Checking test 086 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5219,14 +4935,14 @@ Checking test 090 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 693.331967 + 0: The total amount of wall time = 707.962252 -Test 090 cpld_restart_c384 PASS +Test 086 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_controlfrac_c384 -Checking test 091 cpld_controlfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_controlfrac_c384 +Checking test 087 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5278,14 +4994,14 @@ Checking test 091 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1316.562844 + 0: The total amount of wall time = 1311.911565 -Test 091 cpld_controlfrac_c384 PASS +Test 087 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restartfrac_c384 -Checking test 092 cpld_restartfrac_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restartfrac_c384 +Checking test 088 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5337,14 +5053,14 @@ Checking test 092 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 677.544485 + 0: The total amount of wall time = 700.279946 -Test 092 cpld_restartfrac_c384 PASS +Test 088 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmark -Checking test 093 cpld_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_bmark +Checking test 089 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5396,14 +5112,14 @@ Checking test 093 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 834.684270 + 0: The total amount of wall time = 832.498176 -Test 093 cpld_bmark PASS +Test 089 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart_bmark -Checking test 094 cpld_restart_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restart_bmark +Checking test 090 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5455,14 +5171,14 @@ Checking test 094 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 442.270687 + 0: The total amount of wall time = 455.964912 -Test 094 cpld_restart_bmark PASS +Test 090 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmarkfrac -Checking test 095 cpld_bmarkfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_bmarkfrac +Checking test 091 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5514,14 +5230,14 @@ Checking test 095 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 826.817121 + 0: The total amount of wall time = 852.293681 -Test 095 cpld_bmarkfrac PASS +Test 091 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart_bmarkfrac -Checking test 096 cpld_restart_bmarkfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restart_bmarkfrac +Checking test 092 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5573,14 +5289,14 @@ Checking test 096 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 436.932599 + 0: The total amount of wall time = 451.862267 -Test 096 cpld_restart_bmarkfrac PASS +Test 092 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmarkfrac_v16 -Checking test 097 cpld_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_bmarkfrac_v16 +Checking test 093 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5632,14 +5348,14 @@ Checking test 097 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 1332.676304 + 0: The total amount of wall time = 1347.747751 -Test 097 cpld_bmarkfrac_v16 PASS +Test 093 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart_bmarkfrac_v16 -Checking test 098 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restart_bmarkfrac_v16 +Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5691,14 +5407,14 @@ Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 726.331517 + 0: The total amount of wall time = 723.082186 -Test 098 cpld_restart_bmarkfrac_v16 PASS +Test 094 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark_wave -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmark_wave -Checking test 099 cpld_bmark_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_bmark_wave +Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5753,14 +5469,14 @@ Checking test 099 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1441.141040 + 0: The total amount of wall time = 1430.509656 -Test 099 cpld_bmark_wave PASS +Test 095 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmarkfrac_wave -Checking test 100 cpld_bmarkfrac_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_bmarkfrac_wave +Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5815,14 +5531,14 @@ Checking test 100 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1420.068920 + 0: The total amount of wall time = 1431.755862 -Test 100 cpld_bmarkfrac_wave PASS +Test 096 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmarkfrac_wave_v16 -Checking test 101 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_bmarkfrac_wave_v16 +Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5876,14 +5592,14 @@ Checking test 101 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 945.773922 + 0: The total amount of wall time = 957.953755 -Test 101 cpld_bmarkfrac_wave_v16 PASS +Test 097 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_wave -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_control_wave -Checking test 102 cpld_control_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_control_wave +Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5935,14 +5651,14 @@ Checking test 102 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 821.600514 + 0: The total amount of wall time = 821.973292 -Test 102 cpld_control_wave PASS +Test 098 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debug -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_debug -Checking test 103 cpld_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_debug +Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5991,14 +5707,14 @@ Checking test 103 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 333.488070 + 0: The total amount of wall time = 318.634283 -Test 103 cpld_debug PASS +Test 099 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debugfrac -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_debugfrac -Checking test 104 cpld_debugfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_debugfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_debugfrac +Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -6047,74 +5763,74 @@ Checking test 104 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 1386.257202 + 0: The total amount of wall time = 319.629412 -Test 104 cpld_debugfrac PASS +Test 100 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_control_cfsr -Checking test 105 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/datm_control_cfsr +Checking test 101 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 - 0: The total amount of wall time = 101.019579 + 0: The total amount of wall time = 104.118194 -Test 105 datm_control_cfsr PASS +Test 101 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_restart_cfsr -Checking test 106 datm_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/datm_restart_cfsr +Checking test 102 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 - 0: The total amount of wall time = 71.648752 + 0: The total amount of wall time = 72.184577 -Test 106 datm_restart_cfsr PASS +Test 102 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_control_gefs -Checking test 107 datm_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/datm_control_gefs +Checking test 103 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 - 0: The total amount of wall time = 94.086336 + 0: The total amount of wall time = 95.885242 -Test 107 datm_control_gefs PASS +Test 103 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_bulk_cfsr -Checking test 108 datm_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/datm_bulk_cfsr +Checking test 104 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 - 0: The total amount of wall time = 97.609697 + 0: The total amount of wall time = 100.040361 -Test 108 datm_bulk_cfsr PASS +Test 104 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_bulk_gefs -Checking test 109 datm_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/datm_bulk_gefs +Checking test 105 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 - 0: The total amount of wall time = 96.111352 + 0: The total amount of wall time = 97.337336 -Test 109 datm_bulk_gefs PASS +Test 105 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_mx025_cfsr -Checking test 110 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/datm_mx025_cfsr +Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -6122,14 +5838,14 @@ Checking test 110 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 381.993465 + 0: The total amount of wall time = 387.448171 -Test 110 datm_mx025_cfsr PASS +Test 106 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_mx025_gefs -Checking test 111 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/datm_mx025_gefs +Checking test 107 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -6137,23 +5853,23 @@ Checking test 111 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 382.126847 + 0: The total amount of wall time = 391.419922 -Test 111 datm_mx025_gefs PASS +Test 107 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_debug_cfsr -Checking test 112 datm_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/datm_debug_cfsr +Checking test 108 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 - 0: The total amount of wall time = 287.666163 + 0: The total amount of wall time = 290.658014 -Test 112 datm_debug_cfsr PASS +Test 108 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 23 09:18:07 CDT 2021 -Elapsed time: 01h:24m:39s. Have a nice day! +Thu Mar 25 11:45:34 CDT 2021 +Elapsed time: 02h:28m:19s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 73259c41ed..8765b5b904 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,23 +1,23 @@ -Tue Mar 23 19:01:32 UTC 2021 +Thu Mar 25 15:20:20 UTC 2021 Start Regression test -Compile 001 elapsed time 900 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 902 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 936 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 929 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 913 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 979 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 1023 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 008 elapsed time 960 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 944 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 936 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 1018 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 563 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 546 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 014 elapsed time 534 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_control +Compile 001 elapsed time 977 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 981 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 938 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 931 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 926 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 1098 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 1039 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 008 elapsed time 924 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 971 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 997 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 985 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 545 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 558 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 014 elapsed time 533 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -82,13 +82,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 54.181357 +The total amount of wall time = 59.087912 Test 001 fv3_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_decomp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -153,13 +153,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 55.766983 +The total amount of wall time = 60.814763 Test 002 fv3_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_2threads +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -224,13 +224,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 45.593699 +The total amount of wall time = 47.196168 Test 003 fv3_2threads PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -277,13 +277,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 23.633691 +The total amount of wall time = 23.261020 Test 004 fv3_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_read_inc -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_read_inc +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_read_inc +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -348,13 +348,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.290996 +The total amount of wall time = 49.507874 Test 005 fv3_read_inc PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGauss_netcdf_esmf -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGauss_netcdf_esmf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_netcdf_esmf +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -399,13 +399,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 118.662507 +The total amount of wall time = 141.592436 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGauss_netcdf -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGauss_netcdf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_netcdf +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -450,13 +450,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.672881 +The total amount of wall time = 61.134784 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGauss_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -501,13 +501,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.153928 +The total amount of wall time = 63.940614 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGlatlon_netcdf -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGlatlon_netcdf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGlatlon_netcdf +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -552,13 +552,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.378979 +The total amount of wall time = 55.744533 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGauss_nemsio -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGauss_nemsio +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_nemsio +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -603,13 +603,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.341767 +The total amount of wall time = 64.288077 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGauss_nemsio_c192 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGauss_nemsio_c192 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_nemsio_c192 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -654,13 +654,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 121.534151 +The total amount of wall time = 124.029871 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_stochy -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_stochy +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -725,13 +725,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 54.164695 +The total amount of wall time = 56.676736 Test 012 fv3_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_ca -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_ca +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_ca +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -796,13 +796,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 39.725006 +The total amount of wall time = 43.062458 Test 013 fv3_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_lndp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_lndp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_lndp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -867,13 +867,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 56.313339 +The total amount of wall time = 57.578755 Test 014 fv3_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_iau -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_iau +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_iau +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,13 +938,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 49.355312 +The total amount of wall time = 51.502547 Test 015 fv3_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_lheatstrg -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_lheatstrg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_lheatstrg +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -989,13 +989,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.862734 +The total amount of wall time = 62.207008 Test 016 fv3_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_multigases_repro -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_multigases_repro +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_multigases_repro +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1066,13 +1066,13 @@ Checking test 017 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 98.393273 +The total amount of wall time = 99.003135 Test 017 fv3_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_control_32bit -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_control_32bit +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control_32bit +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1137,13 +1137,13 @@ Checking test 018 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 50.903327 +The total amount of wall time = 54.913454 Test 018 fv3_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_stretched -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_stretched +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_stretched +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1196,13 +1196,13 @@ Checking test 019 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 323.540037 +The total amount of wall time = 328.862270 Test 019 fv3_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_stretched_nest -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_stretched_nest +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_stretched_nest +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1266,13 +1266,13 @@ Checking test 020 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 358.312525 +The total amount of wall time = 369.375111 Test 020 fv3_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_regional_control +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1280,25 +1280,25 @@ Checking test 021 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 694.918940 +The total amount of wall time = 700.256822 Test 021 fv3_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_restart -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_regional_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_restart +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_regional_restart Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 410.922728 +The total amount of wall time = 408.910367 Test 022 fv3_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_quilt -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_regional_quilt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_quilt +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1309,13 +1309,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 700.289611 +The total amount of wall time = 699.538819 Test 023 fv3_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_quilt_hafs -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_regional_quilt_hafs +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_quilt_hafs +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1324,13 +1324,13 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 698.328839 +The total amount of wall time = 698.092243 Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_regional_quilt_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1338,13 +1338,13 @@ Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 700.867561 +The total amount of wall time = 702.657967 Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfdlmp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfdlmp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1389,13 +1389,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 55.665164 +The total amount of wall time = 67.021362 Test 026 fv3_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfdlmprad_gwd -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfdlmprad_gwd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmprad_gwd +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1440,13 +1440,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 55.944638 +The total amount of wall time = 60.281119 Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfdlmprad_noahmp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfdlmprad_noahmp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmprad_noahmp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1491,13 +1491,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 68.670490 +The total amount of wall time = 75.543649 Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_csawmg -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_csawmg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_csawmg +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1542,13 +1542,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 128.721390 +The total amount of wall time = 129.101799 Test 029 fv3_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_satmedmf -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_satmedmf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_satmedmf +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1593,13 +1593,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.137603 +The total amount of wall time = 57.677462 Test 030 fv3_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_satmedmfq -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_satmedmfq +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_satmedmfq +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1644,13 +1644,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.300887 +The total amount of wall time = 57.987494 Test 031 fv3_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfdlmp_32bit -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfdlmp_32bit +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmp_32bit +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1695,13 +1695,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 48.189951 +The total amount of wall time = 69.204279 Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfdlmprad_32bit_post -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfdlmprad_32bit_post +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmprad_32bit_post +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1750,13 +1750,13 @@ Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 100.233980 +The total amount of wall time = 107.205157 Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_cpt -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_cpt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_cpt +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1807,13 +1807,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 285.318168 +The total amount of wall time = 281.996295 Test 034 fv3_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gsd -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gsd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gsd +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1902,13 +1902,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 198.948099 +The total amount of wall time = 197.911119 Test 035 fv3_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_rap -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_rap +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_rap +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_rap Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1973,13 +1973,13 @@ Checking test 036 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 103.121426 +The total amount of wall time = 103.999031 Test 036 fv3_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_hrrr -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_hrrr +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_hrrr +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_hrrr Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2044,13 +2044,13 @@ Checking test 037 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 110.194777 +The total amount of wall time = 107.212728 Test 037 fv3_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_thompson -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_thompson +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_thompson Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2115,13 +2115,13 @@ Checking test 038 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 97.531919 +The total amount of wall time = 98.519402 Test 038 fv3_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_thompson_no_aero -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_thompson_no_aero +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_thompson_no_aero +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_thompson_no_aero Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2186,13 +2186,13 @@ Checking test 039 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 92.294440 +The total amount of wall time = 91.157798 Test 039 fv3_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_rrfs_v1beta -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_rrfs_v1beta +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_rrfs_v1beta +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_rrfs_v1beta Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2257,16 +2257,14 @@ Checking test 040 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 109.548864 +The total amount of wall time = 109.965261 Test 040 fv3_rrfs_v1beta PASS -Test 041 fv3_gfs_v15p2 FAIL - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16 -Checking test 042 fv3_gfs_v16 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16 +Checking test 041 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2342,14 +2340,14 @@ Checking test 042 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 124.119466 +The total amount of wall time = 195.938826 -Test 042 fv3_gfs_v16 PASS +Test 041 fv3_gfs_v16 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_restart -Checking test 043 fv3_gfs_v16_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_restart +Checking test 042 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2395,14 +2393,14 @@ Checking test 043 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 66.460357 +The total amount of wall time = 150.699384 -Test 043 fv3_gfs_v16_restart PASS +Test 042 fv3_gfs_v16_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_stochy -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_stochy -Checking test 044 fv3_gfs_v16_stochy results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_stochy +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_stochy +Checking test 043 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2466,16 +2464,14 @@ Checking test 044 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.644591 - -Test 044 fv3_gfs_v16_stochy PASS +The total amount of wall time = 66.571608 -Test 045 fv3_gfs_v15p2_RRTMGP FAIL +Test 043 fv3_gfs_v16_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_RRTMGP -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_RRTMGP -Checking test 046 fv3_gfs_v16_RRTMGP results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_RRTMGP +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_RRTMGP +Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2539,14 +2535,14 @@ Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 170.291390 +The total amount of wall time = 173.499902 -Test 046 fv3_gfs_v16_RRTMGP PASS +Test 044 fv3_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_RRTMGP_c192L127 -Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_RRTMGP_c192L127 +Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2604,14 +2600,14 @@ Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 714.283719 +The total amount of wall time = 719.147361 -Test 047 fv3_gfs_v16_RRTMGP_c192L127 PASS +Test 045 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_RRTMGP -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_RRTMGP_2thrd -Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_RRTMGP +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_RRTMGP_2thrd +Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2675,14 +2671,14 @@ Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 161.452458 +The total amount of wall time = 166.560685 -Test 048 fv3_gfs_v16_RRTMGP_2thrd PASS +Test 046 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfsv16_csawmg -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfsv16_csawmg -Checking test 049 fv3_gfsv16_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_csawmg +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfsv16_csawmg +Checking test 047 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2726,14 +2722,14 @@ Checking test 049 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 139.130456 +The total amount of wall time = 147.113979 -Test 049 fv3_gfsv16_csawmg PASS +Test 047 fv3_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfsv16_csawmgt -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfsv16_csawmgt -Checking test 050 fv3_gfsv16_csawmgt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_csawmgt +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfsv16_csawmgt +Checking test 048 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2777,14 +2773,14 @@ Checking test 050 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 136.270951 +The total amount of wall time = 139.278094 -Test 050 fv3_gfsv16_csawmgt PASS +Test 048 fv3_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gocart_clm -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gocart_clm -Checking test 051 fv3_gocart_clm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gocart_clm +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gocart_clm +Checking test 049 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2828,14 +2824,14 @@ Checking test 051 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 77.083874 +The total amount of wall time = 63.768256 -Test 051 fv3_gocart_clm PASS +Test 049 fv3_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_flake -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_flake -Checking test 052 fv3_gfs_v16_flake results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_flake +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_flake +Checking test 050 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2899,14 +2895,14 @@ Checking test 052 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 105.976975 +The total amount of wall time = 103.665678 -Test 052 fv3_gfs_v16_flake PASS +Test 050 fv3_gfs_v16_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_HAFS_v0_hwrf_thompson -Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_HAFS_v0_hwrf_thompson +Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2970,14 +2966,14 @@ Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 162.377383 +The total amount of wall time = 160.498110 -Test 053 fv3_HAFS_v0_hwrf_thompson PASS +Test 051 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2991,14 +2987,14 @@ Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 351.963836 +The total amount of wall time = 308.825971 -Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 052 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfsv16_ugwpv1 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfsv16_ugwpv1 -Checking test 055 fv3_gfsv16_ugwpv1 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_ugwpv1 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfsv16_ugwpv1 +Checking test 053 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3056,14 +3052,14 @@ Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 194.130522 +The total amount of wall time = 192.685190 -Test 055 fv3_gfsv16_ugwpv1 PASS +Test 053 fv3_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfsv16_ugwpv1_warmstart -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfsv16_ugwpv1_warmstart -Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_ugwpv1_warmstart +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfsv16_ugwpv1_warmstart +Checking test 054 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3121,14 +3117,14 @@ Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 193.636061 +The total amount of wall time = 191.357969 -Test 056 fv3_gfsv16_ugwpv1_warmstart PASS +Test 054 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_ras -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_ras -Checking test 057 fv3_gfs_v16_ras results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_ras +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_ras +Checking test 055 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3192,156 +3188,14 @@ Checking test 057 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 107.075383 - -Test 057 fv3_gfs_v16_ras PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v15p2_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v15p2_debug -Checking test 058 fv3_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 - -The total amount of wall time = 207.075769 - -Test 058 fv3_gfs_v15p2_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_debug -Checking test 059 fv3_gfs_v16_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 - -The total amount of wall time = 161.262855 +The total amount of wall time = 105.350616 -Test 059 fv3_gfs_v16_debug PASS +Test 055 fv3_gfs_v16_ras PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v15p2_RRTMGP_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v15p2_RRTMGP_debug -Checking test 060 fv3_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_debug +Checking test 056 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3405,14 +3259,14 @@ Checking test 060 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 333.313594 +The total amount of wall time = 251.625799 -Test 060 fv3_gfs_v15p2_RRTMGP_debug PASS +Test 056 fv3_gfs_v16_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_RRTMGP_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_RRTMGP_debug -Checking test 061 fv3_gfs_v16_RRTMGP_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_RRTMGP_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_RRTMGP_debug +Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3476,28 +3330,28 @@ Checking test 061 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 340.652034 +The total amount of wall time = 340.780574 -Test 061 fv3_gfs_v16_RRTMGP_debug PASS +Test 057 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_control_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_regional_control_debug -Checking test 062 fv3_regional_control_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_control_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_regional_control_debug +Checking test 058 fv3_regional_control_debug 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 -The total amount of wall time = 341.091158 +The total amount of wall time = 344.637942 -Test 062 fv3_regional_control_debug PASS +Test 058 fv3_regional_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_control_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_control_debug -Checking test 063 fv3_control_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_control_debug +Checking test 059 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3523,14 +3377,14 @@ Checking test 063 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 124.095935 +The total amount of wall time = 124.917316 -Test 063 fv3_control_debug PASS +Test 059 fv3_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_stretched_nest_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_stretched_nest_debug -Checking test 064 fv3_stretched_nest_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_stretched_nest_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_stretched_nest_debug +Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3546,14 +3400,14 @@ Checking test 064 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 407.127074 +The total amount of wall time = 406.192255 -Test 064 fv3_stretched_nest_debug PASS +Test 060 fv3_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gsd_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gsd_debug -Checking test 065 fv3_gsd_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gsd_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gsd_debug +Checking test 061 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3617,14 +3471,14 @@ Checking test 065 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 190.071342 +The total amount of wall time = 188.708339 -Test 065 fv3_gsd_debug PASS +Test 061 fv3_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gsd_diag3d_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gsd_diag3d_debug -Checking test 066 fv3_gsd_diag3d_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gsd_diag3d_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gsd_diag3d_debug +Checking test 062 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3688,14 +3542,14 @@ Checking test 066 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 218.845830 +The total amount of wall time = 223.040673 -Test 066 fv3_gsd_diag3d_debug PASS +Test 062 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_thompson_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_thompson_debug -Checking test 067 fv3_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_thompson_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_thompson_debug +Checking test 063 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3759,14 +3613,14 @@ Checking test 067 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 320.590012 +The total amount of wall time = 324.238065 -Test 067 fv3_thompson_debug PASS +Test 063 fv3_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_thompson_no_aero_debug -Checking test 068 fv3_thompson_no_aero_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_thompson_no_aero_debug +Checking test 064 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3830,14 +3684,14 @@ Checking test 068 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 307.651853 +The total amount of wall time = 308.749081 -Test 068 fv3_thompson_no_aero_debug PASS +Test 064 fv3_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_rrfs_v1beta_debug -Checking test 069 fv3_rrfs_v1beta_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_rrfs_v1beta_debug +Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3901,14 +3755,14 @@ Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 187.461681 +The total amount of wall time = 182.685412 -Test 069 fv3_rrfs_v1beta_debug PASS +Test 065 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 070 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3972,14 +3826,14 @@ Checking test 070 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 189.957662 +The total amount of wall time = 189.446242 -Test 070 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 066 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3993,14 +3847,14 @@ Checking test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 348.270535 +The total amount of wall time = 347.035733 -Test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfsv16_ugwpv1_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfsv16_ugwpv1_debug -Checking test 072 fv3_gfsv16_ugwpv1_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_ugwpv1_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfsv16_ugwpv1_debug +Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -4058,14 +3912,14 @@ Checking test 072 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 539.522156 +The total amount of wall time = 537.805159 -Test 072 fv3_gfsv16_ugwpv1_debug PASS +Test 068 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_ras_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_ras_debug -Checking test 073 fv3_gfs_v16_ras_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_ras_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_ras_debug +Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4129,16 +3983,11 @@ Checking test 073 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 300.749507 +The total amount of wall time = 301.920050 -Test 073 fv3_gfs_v16_ras_debug PASS +Test 069 fv3_gfs_v16_ras_debug PASS -FAILED TESTS: -Test fv3_gfs_v15p2 041 failed failed -Test fv3_gfs_v15p2 041 failed in run_test failed -Test fv3_gfs_v15p2_RRTMGP 045 failed failed -Test fv3_gfs_v15p2_RRTMGP 045 failed in run_test failed -REGRESSION TEST FAILED -Tue Mar 23 19:44:35 UTC 2021 -Elapsed time: 00h:43m:03s. Have a nice day! +REGRESSION TEST WAS SUCCESSFUL +Thu Mar 25 16:02:12 UTC 2021 +Elapsed time: 00h:41m:53s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 62032d5595..91baf6b57a 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,10 +1,29 @@ -Mon Mar 15 15:09:37 UTC 2021 +Thu Mar 25 22:57:50 UTC 2021 Start Regression test - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control results .... +Compile 001 elapsed time 1529 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 1924 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 1436 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 1627 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 1545 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 007 elapsed time 1956 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 2399 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 009 elapsed time 1681 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 1586 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 1772 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 1905 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 400 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 427 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 015 elapsed time 404 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 016 elapsed time 2685 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 2436 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 655 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 019 elapsed time 1333 seconds. APP=DATM_NEMS +Compile 020 elapsed time 413 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_control +Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -68,14 +87,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 50.002583 +[0] The total amount of wall time = 49.307319 -Test 001 fv3_ccpp_control PASS +Test 001 fv3_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_decomp +Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -139,14 +158,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 50.402100 +[0] The total amount of wall time = 50.255851 -Test 002 fv3_ccpp_decomp PASS +Test 002 fv3_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_2threads +Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -210,14 +229,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 41.017446 +[0] The total amount of wall time = 40.803826 -Test 003 fv3_ccpp_2threads PASS +Test 003 fv3_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_restart +Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -263,14 +282,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 24.566906 +[0] The total amount of wall time = 24.593102 -Test 004 fv3_ccpp_restart PASS +Test 004 fv3_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_read_inc +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_read_inc +Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -334,14 +353,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 46.492268 +[0] The total amount of wall time = 46.681731 -Test 005 fv3_ccpp_read_inc PASS +Test 005 fv3_read_inc PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_netcdf_esmf +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_wrtGauss_netcdf_esmf +Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -385,14 +404,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 165.809172 +[0] The total amount of wall time = 147.946115 -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS +Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_netcdf +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_wrtGauss_netcdf +Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -436,22 +455,22 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 46.025304 +[0] The total amount of wall time = 45.365085 -Test 007 fv3_ccpp_wrtGauss_netcdf PASS +Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_wrtGauss_netcdf_parallel +Checking test 008 fv3_wrtGauss_netcdf_parallel 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.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK @@ -487,14 +506,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 63.915216 +[0] The total amount of wall time = 61.756678 -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS +Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGlatlon_netcdf +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_wrtGlatlon_netcdf +Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -538,14 +557,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.741756 +[0] The total amount of wall time = 45.618473 -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS +Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_nemsio +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_wrtGauss_nemsio +Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -589,14 +608,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.525979 +[0] The total amount of wall time = 45.376551 -Test 010 fv3_ccpp_wrtGauss_nemsio PASS +Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_nemsio_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_wrtGauss_nemsio_c192 +Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -640,14 +659,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 128.519598 +[0] The total amount of wall time = 131.749356 -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS +Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_stochy +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_stochy +Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -711,14 +730,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 52.079623 +[0] The total amount of wall time = 52.263756 -Test 012 fv3_ccpp_stochy PASS +Test 012 fv3_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_ca +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_ca +Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -782,14 +801,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 34.346209 +[0] The total amount of wall time = 34.154600 -Test 013 fv3_ccpp_ca PASS +Test 013 fv3_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_lndp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_lndp +Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -853,14 +872,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 53.866895 +[0] The total amount of wall time = 53.945913 -Test 014 fv3_ccpp_lndp PASS +Test 014 fv3_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_iau +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_iau +Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -924,14 +943,14 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 46.185478 +[0] The total amount of wall time = 46.970405 -Test 015 fv3_ccpp_iau PASS +Test 015 fv3_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_lheatstrg +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_lheatstrg +Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -975,14 +994,14 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.683496 +[0] The total amount of wall time = 45.419609 -Test 016 fv3_ccpp_lheatstrg PASS +Test 016 fv3_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmprad_prod -Checking test 017 fv3_ccpp_gfdlmprad results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmprad +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfdlmprad +Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1027,14 +1046,14 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -[0] The total amount of wall time = 679.246413 +[0] The total amount of wall time = 678.076273 -Test 017 fv3_ccpp_gfdlmprad PASS +Test 017 fv3_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmprad_atmwav +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfdlmprad_atmwav +Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1079,14 +1098,14 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -[0] The total amount of wall time = 851.013289 +[0] The total amount of wall time = 862.488465 -Test 018 fv3_ccpp_gfdlmprad_atmwav PASS +Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_multigases_prod -Checking test 019 fv3_ccpp_multigases results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_multigases_repro +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_multigases_repro +Checking test 019 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1156,14 +1175,14 @@ Checking test 019 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 96.389756 +[0] The total amount of wall time = 114.124704 -Test 019 fv3_ccpp_multigases PASS +Test 019 fv3_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_control_32bit_prod -Checking test 020 fv3_ccpp_control_32bit results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control_32bit +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_control_32bit +Checking test 020 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1227,14 +1246,14 @@ Checking test 020 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.432879 +[0] The total amount of wall time = 45.483974 -Test 020 fv3_ccpp_control_32bit PASS +Test 020 fv3_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_stretched_prod -Checking test 021 fv3_ccpp_stretched results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_stretched +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_stretched +Checking test 021 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1286,14 +1305,14 @@ Checking test 021 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 330.907296 +[0] The total amount of wall time = 326.066449 -Test 021 fv3_ccpp_stretched PASS +Test 021 fv3_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_stretched_nest_prod -Checking test 022 fv3_ccpp_stretched_nest results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_stretched_nest +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_stretched_nest +Checking test 022 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1356,40 +1375,40 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -[0] The total amount of wall time = 353.071570 +[0] The total amount of wall time = 352.099737 -Test 022 fv3_ccpp_stretched_nest PASS +Test 022 fv3_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_regional_control_prod -Checking test 023 fv3_ccpp_regional_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_regional_control +Checking test 023 fv3_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 -[0] The total amount of wall time = 722.293073 +[0] The total amount of wall time = 716.101354 -Test 023 fv3_ccpp_regional_control PASS +Test 023 fv3_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_regional_restart_prod -Checking test 024 fv3_ccpp_regional_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_restart +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_regional_restart +Checking test 024 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -[0] The total amount of wall time = 403.268898 +[0] The total amount of wall time = 405.444689 -Test 024 fv3_ccpp_regional_restart PASS +Test 024 fv3_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_regional_quilt_prod -Checking test 025 fv3_ccpp_regional_quilt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_quilt +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_regional_quilt +Checking test 025 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1399,14 +1418,14 @@ Checking test 025 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 736.957871 +[0] The total amount of wall time = 736.561113 -Test 025 fv3_ccpp_regional_quilt PASS +Test 025 fv3_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_hafs_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_regional_quilt_hafs_prod -Checking test 026 fv3_ccpp_regional_quilt_hafs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_quilt_hafs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_regional_quilt_hafs +Checking test 026 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1414,181 +1433,28 @@ Checking test 026 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 738.403767 +[0] The total amount of wall time = 735.601817 -Test 026 fv3_ccpp_regional_quilt_hafs PASS +Test 026 fv3_regional_quilt_hafs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_regional_quilt_netcdf_parallel +Checking test 027 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -[0] The total amount of wall time = 734.026054 - -Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmp_prod -Checking test 028 fv3_ccpp_gfdlmp 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 - -[0] The total amount of wall time = 52.148013 - -Test 028 fv3_ccpp_gfdlmp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 029 fv3_ccpp_gfdlmprad_gwd 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 - -[0] The total amount of wall time = 52.829517 - -Test 029 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 030 fv3_ccpp_gfdlmprad_noahmp 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 - -[0] The total amount of wall time = 52.447149 +[0] The total amount of wall time = 739.964598 -Test 030 fv3_ccpp_gfdlmprad_noahmp PASS +Test 027 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_csawmg_prod -Checking test 031 fv3_ccpp_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_csawmg +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_csawmg +Checking test 031 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1632,14 +1498,14 @@ Checking test 031 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 134.024265 +[0] The total amount of wall time = 131.197573 -Test 031 fv3_ccpp_csawmg PASS +Test 031 fv3_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_satmedmf_prod -Checking test 032 fv3_ccpp_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_satmedmf +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_satmedmf +Checking test 032 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1683,14 +1549,14 @@ Checking test 032 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 56.039994 +[0] The total amount of wall time = 56.631616 -Test 032 fv3_ccpp_satmedmf PASS +Test 032 fv3_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_satmedmfq_prod -Checking test 033 fv3_ccpp_satmedmfq results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_satmedmfq +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_satmedmfq +Checking test 033 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1734,14 +1600,14 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 56.139441 +[0] The total amount of wall time = 57.024723 -Test 033 fv3_ccpp_satmedmfq PASS +Test 033 fv3_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmp_32bit_prod -Checking test 034 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmp_32bit +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfdlmp_32bit +Checking test 034 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1785,14 +1651,14 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 44.712953 +[0] The total amount of wall time = 44.232535 -Test 034 fv3_ccpp_gfdlmp_32bit PASS +Test 034 fv3_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmprad_32bit_post +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfdlmprad_32bit_post +Checking test 035 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1840,14 +1706,14 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 90.038256 +[0] The total amount of wall time = 90.135001 -Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 035 fv3_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_cpt_prod -Checking test 036 fv3_ccpp_cpt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_cpt +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_cpt +Checking test 036 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1897,14 +1763,14 @@ Checking test 036 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 309.839479 +[0] The total amount of wall time = 307.670828 -Test 036 fv3_ccpp_cpt PASS +Test 036 fv3_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gsd_prod -Checking test 037 fv3_ccpp_gsd results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gsd +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gsd +Checking test 037 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1992,14 +1858,14 @@ Checking test 037 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 210.714190 +[0] The total amount of wall time = 210.071493 -Test 037 fv3_ccpp_gsd PASS +Test 037 fv3_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_rap_prod -Checking test 038 fv3_ccpp_rap results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_rap +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_rap +Checking test 038 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2063,14 +1929,14 @@ Checking test 038 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 104.773158 +[0] The total amount of wall time = 105.023483 -Test 038 fv3_ccpp_rap PASS +Test 038 fv3_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_hrrr_prod -Checking test 039 fv3_ccpp_hrrr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_hrrr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_hrrr +Checking test 039 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2134,14 +2000,14 @@ Checking test 039 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 113.518912 +[0] The total amount of wall time = 113.647281 -Test 039 fv3_ccpp_hrrr PASS +Test 039 fv3_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_thompson_prod -Checking test 040 fv3_ccpp_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_thompson +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_thompson +Checking test 040 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2205,14 +2071,14 @@ Checking test 040 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 101.215020 +[0] The total amount of wall time = 100.135366 -Test 040 fv3_ccpp_thompson PASS +Test 040 fv3_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_thompson_no_aero_prod -Checking test 041 fv3_ccpp_thompson_no_aero results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_thompson_no_aero +Checking test 041 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2276,14 +2142,14 @@ Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 95.132614 +[0] The total amount of wall time = 95.500126 -Test 041 fv3_ccpp_thompson_no_aero PASS +Test 041 fv3_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_rrfs_v1beta_prod -Checking test 042 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_rrfs_v1beta +Checking test 042 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2347,85 +2213,14 @@ Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 115.302938 - -Test 042 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v15p2_prod -Checking test 043 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 - -[0] The total amount of wall time = 102.243971 +[0] The total amount of wall time = 115.015421 -Test 043 fv3_ccpp_gfs_v15p2 PASS +Test 042 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_prod -Checking test 044 fv3_ccpp_gfs_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16 +Checking test 043 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2501,14 +2296,14 @@ Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 123.270637 +[0] The total amount of wall time = 153.731844 -Test 044 fv3_ccpp_gfs_v16 PASS +Test 043 fv3_gfs_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_restart_prod -Checking test 045 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_restart +Checking test 044 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2554,14 +2349,14 @@ Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 66.386939 +[0] The total amount of wall time = 94.371799 -Test 045 fv3_ccpp_gfs_v16_restart PASS +Test 044 fv3_gfs_v16_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_stochy_prod -Checking test 046 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_stochy +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_stochy +Checking test 045 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2625,14 +2420,14 @@ Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 59.471855 +[0] The total amount of wall time = 59.355079 -Test 046 fv3_ccpp_gfs_v16_stochy PASS +Test 045 fv3_gfs_v16_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_RRTMGP +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_RRTMGP +Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2696,44 +2491,38 @@ Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 175.824391 +[0] The total amount of wall time = 186.509627 -Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 046 fv3_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 048 fv3_ccpp_gfs_v16_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 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_RRTMGP_c192L127 +Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... 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 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 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 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 @@ -2767,85 +2556,20 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 178.091322 +[0] The total amount of wall time = 754.766127 -Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 047 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... - 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 - -[0] The total amount of wall time = 756.150922 - -Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod -Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd 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 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_RRTMGP +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_RRTMGP_2thrd +Checking test 048 fv3_gfs_v16_RRTMGP_2thrd 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 @@ -2903,14 +2627,14 @@ Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 165.445358 +[0] The total amount of wall time = 173.473086 -Test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS +Test 048 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfsv16_csawmg_prod -Checking test 051 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_csawmg +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfsv16_csawmg +Checking test 049 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2954,14 +2678,14 @@ Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 142.203987 +[0] The total amount of wall time = 141.440462 -Test 051 fv3_ccpp_gfsv16_csawmg PASS +Test 049 fv3_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_csawmgt +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfsv16_csawmgt +Checking test 050 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3005,14 +2729,14 @@ Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 140.422558 +[0] The total amount of wall time = 138.730052 -Test 052 fv3_ccpp_gfsv16_csawmgt PASS +Test 050 fv3_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gocart_clm_prod -Checking test 053 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gocart_clm +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gocart_clm +Checking test 051 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3056,14 +2780,14 @@ Checking test 053 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 58.333771 +[0] The total amount of wall time = 56.399454 -Test 053 fv3_ccpp_gocart_clm PASS +Test 051 fv3_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_flake_prod -Checking test 054 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_flake +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_flake +Checking test 052 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3127,14 +2851,14 @@ Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 105.620445 +[0] The total amount of wall time = 112.595488 -Test 054 fv3_ccpp_gfs_v16_flake PASS +Test 052 fv3_gfs_v16_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_HAFS_v0_hwrf_thompson +Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3198,14 +2922,14 @@ Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 173.530690 +[0] The total amount of wall time = 172.318670 -Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 053 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -3219,14 +2943,14 @@ Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 317.455085 +[0] The total amount of wall time = 319.376611 -Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_ugwpv1 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfsv16_ugwpv1 +Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3284,14 +3008,14 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 197.918400 +[0] The total amount of wall time = 197.423268 -Test 057 fv3_ccpp_gfsv16_ugwpv1 PASS +Test 055 fv3_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_ugwpv1_warmstart +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfsv16_ugwpv1_warmstart +Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3349,85 +3073,14 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 197.401325 - -Test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 059 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 - -[0] The total amount of wall time = 260.548556 +[0] The total amount of wall time = 196.492951 -Test 059 fv3_ccpp_gfs_v15p2_debug PASS +Test 056 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_debug_prod -Checking test 060 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_ras +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_ras +Checking test 057 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3440,24 +3093,24 @@ Checking test 060 fv3_ccpp_gfs_v16_debug results .... 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 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 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 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 @@ -3491,14 +3144,14 @@ Checking test 060 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 203.248959 +[0] The total amount of wall time = 107.154728 -Test 060 fv3_ccpp_gfs_v16_debug PASS +Test 057 fv3_gfs_v16_ras PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_debug +Checking test 058 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3562,14 +3215,14 @@ Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 410.527748 +[0] The total amount of wall time = 287.252461 -Test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 058 fv3_gfs_v16_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_RRTMGP_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_RRTMGP_debug +Checking test 059 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3633,28 +3286,28 @@ Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 416.985777 +[0] The total amount of wall time = 421.003161 -Test 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 059 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_regional_control_debug_prod -Checking test 063 fv3_ccpp_regional_control_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_control_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_regional_control_debug +Checking test 060 fv3_regional_control_debug 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 -[0] The total amount of wall time = 396.967541 +[0] The total amount of wall time = 395.048739 -Test 063 fv3_ccpp_regional_control_debug PASS +Test 060 fv3_regional_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_control_debug_prod -Checking test 064 fv3_ccpp_control_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_control_debug +Checking test 061 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3680,14 +3333,14 @@ Checking test 064 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -[0] The total amount of wall time = 158.947916 +[0] The total amount of wall time = 158.432698 -Test 064 fv3_ccpp_control_debug PASS +Test 061 fv3_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_stretched_nest_debug_prod -Checking test 065 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_stretched_nest_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_stretched_nest_debug +Checking test 062 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3703,14 +3356,14 @@ Checking test 065 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -[0] The total amount of wall time = 469.286389 +[0] The total amount of wall time = 466.531974 -Test 065 fv3_ccpp_stretched_nest_debug PASS +Test 062 fv3_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gsd_debug_prod -Checking test 066 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gsd_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gsd_debug +Checking test 063 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3774,14 +3427,14 @@ Checking test 066 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 233.573521 +[0] The total amount of wall time = 233.187788 -Test 066 fv3_ccpp_gsd_debug PASS +Test 063 fv3_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gsd_diag3d_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gsd_diag3d_debug +Checking test 064 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3845,14 +3498,14 @@ Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 307.798202 +[0] The total amount of wall time = 299.401541 -Test 067 fv3_ccpp_gsd_diag3d_debug PASS +Test 064 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_thompson_debug_prod -Checking test 068 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_thompson_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_thompson_debug +Checking test 065 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3916,14 +3569,14 @@ Checking test 068 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 389.542056 +[0] The total amount of wall time = 388.296544 -Test 068 fv3_ccpp_thompson_debug PASS +Test 065 fv3_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_thompson_no_aero_debug +Checking test 066 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3987,14 +3640,14 @@ Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 375.403940 +[0] The total amount of wall time = 373.632853 -Test 069 fv3_ccpp_thompson_no_aero_debug PASS +Test 066 fv3_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_rrfs_v1beta_debug +Checking test 067 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4058,14 +3711,14 @@ Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 226.258341 +[0] The total amount of wall time = 226.032531 -Test 070 fv3_ccpp_rrfs_v1beta_debug PASS +Test 067 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 068 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4129,14 +3782,14 @@ Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 237.111319 +[0] The total amount of wall time = 236.859379 -Test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 068 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -4150,14 +3803,14 @@ Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 429.285809 +[0] The total amount of wall time = 427.166449 -Test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_ugwpv1_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfsv16_ugwpv1_debug +Checking test 070 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -4215,14 +3868,85 @@ Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 645.867642 +[0] The total amount of wall time = 644.748322 + +Test 070 fv3_gfsv16_ugwpv1_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_ras_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_ras_debug +Checking test 071 fv3_gfs_v16_ras_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 + +[0] The total amount of wall time = 367.711787 -Test 073 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 071 fv3_gfs_v16_ras_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_control_prod -Checking test 074 cpld_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_control +Checking test 072 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4271,14 +3995,14 @@ Checking test 074 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 109.719107 +[0] The total amount of wall time = 104.734314 -Test 074 cpld_control PASS +Test 072 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_prod -Checking test 075 cpld_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restart +Checking test 073 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4327,14 +4051,14 @@ Checking test 075 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 70.051137 +[0] The total amount of wall time = 68.511421 -Test 075 cpld_restart PASS +Test 073 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_controlfrac_prod -Checking test 076 cpld_controlfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_controlfrac +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_controlfrac +Checking test 074 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4383,14 +4107,14 @@ Checking test 076 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 109.284327 +[0] The total amount of wall time = 107.197741 -Test 076 cpld_controlfrac PASS +Test 074 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restartfrac_prod -Checking test 077 cpld_restartfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_controlfrac +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restartfrac +Checking test 075 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4439,14 +4163,14 @@ Checking test 077 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 69.098664 +[0] The total amount of wall time = 67.601396 -Test 077 cpld_restartfrac PASS +Test 075 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_2threads_prod -Checking test 078 cpld_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_2threads +Checking test 076 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4495,14 +4219,14 @@ Checking test 078 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 98.525705 +[0] The total amount of wall time = 99.110525 -Test 078 cpld_2threads PASS +Test 076 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_decomp_prod -Checking test 079 cpld_decomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_decomp +Checking test 077 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4551,14 +4275,14 @@ Checking test 079 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 106.535856 +[0] The total amount of wall time = 105.059299 -Test 079 cpld_decomp PASS +Test 077 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_satmedmf_prod -Checking test 080 cpld_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_satmedmf +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_satmedmf +Checking test 078 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4607,14 +4331,14 @@ Checking test 080 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 104.276542 +[0] The total amount of wall time = 105.531356 -Test 080 cpld_satmedmf PASS +Test 078 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_ca_prod -Checking test 081 cpld_ca results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_ca +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_ca +Checking test 079 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4663,14 +4387,14 @@ Checking test 081 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 105.530333 +[0] The total amount of wall time = 105.516421 -Test 081 cpld_ca PASS +Test 079 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_control_c192_prod -Checking test 082 cpld_control_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_control_c192 +Checking test 080 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4719,14 +4443,14 @@ Checking test 082 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 428.275145 +[0] The total amount of wall time = 420.033839 -Test 082 cpld_control_c192 PASS +Test 080 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_c192_prod -Checking test 083 cpld_restart_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restart_c192 +Checking test 081 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4775,14 +4499,14 @@ Checking test 083 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 323.332241 +[0] The total amount of wall time = 321.170421 -Test 083 cpld_restart_c192 PASS +Test 081 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_controlfrac_c192_prod -Checking test 084 cpld_controlfrac_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_controlfrac_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_controlfrac_c192 +Checking test 082 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4831,14 +4555,14 @@ Checking test 084 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 424.905236 +[0] The total amount of wall time = 434.211932 -Test 084 cpld_controlfrac_c192 PASS +Test 082 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restartfrac_c192_prod -Checking test 085 cpld_restartfrac_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_controlfrac_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restartfrac_c192 +Checking test 083 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4887,14 +4611,14 @@ Checking test 085 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 320.351215 +[0] The total amount of wall time = 318.473224 -Test 085 cpld_restartfrac_c192 PASS +Test 083 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_control_c384_prod -Checking test 086 cpld_control_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_control_c384 +Checking test 084 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4946,14 +4670,14 @@ Checking test 086 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 1486.372821 +[0] The total amount of wall time = 1504.372053 -Test 086 cpld_control_c384 PASS +Test 084 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_c384_prod -Checking test 087 cpld_restart_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restart_c384 +Checking test 085 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5005,14 +4729,14 @@ Checking test 087 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 813.507268 +[0] The total amount of wall time = 814.463830 -Test 087 cpld_restart_c384 PASS +Test 085 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_controlfrac_c384_prod -Checking test 088 cpld_controlfrac_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_controlfrac_c384 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_controlfrac_c384 +Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5064,14 +4788,14 @@ Checking test 088 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 1482.076509 +[0] The total amount of wall time = 1487.820012 -Test 088 cpld_controlfrac_c384 PASS +Test 086 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restartfrac_c384_prod -Checking test 089 cpld_restartfrac_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_controlfrac_c384 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restartfrac_c384 +Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5123,14 +4847,14 @@ Checking test 089 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 813.606606 +[0] The total amount of wall time = 810.140505 -Test 089 cpld_restartfrac_c384 PASS +Test 087 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmark_prod -Checking test 090 cpld_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmark +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_bmark +Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5182,14 +4906,14 @@ Checking test 090 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 909.086334 +[0] The total amount of wall time = 908.673484 -Test 090 cpld_bmark PASS +Test 088 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_bmark_prod -Checking test 091 cpld_restart_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmark +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restart_bmark +Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5241,14 +4965,14 @@ Checking test 091 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 539.380482 +[0] The total amount of wall time = 535.541494 -Test 091 cpld_restart_bmark PASS +Test 089 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmarkfrac_prod -Checking test 092 cpld_bmarkfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmarkfrac +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_bmarkfrac +Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5300,14 +5024,14 @@ Checking test 092 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 898.631878 +[0] The total amount of wall time = 907.028361 -Test 092 cpld_bmarkfrac PASS +Test 090 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_bmarkfrac_prod -Checking test 093 cpld_restart_bmarkfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmarkfrac +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restart_bmarkfrac +Checking test 091 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5359,14 +5083,14 @@ Checking test 093 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 544.158349 +[0] The total amount of wall time = 527.060841 -Test 093 cpld_restart_bmarkfrac PASS +Test 091 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmarkfrac_v16_prod -Checking test 094 cpld_bmarkfrac_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmarkfrac_v16 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_bmarkfrac_v16 +Checking test 092 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5418,14 +5142,14 @@ Checking test 094 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -[0] The total amount of wall time = 1563.309967 +[0] The total amount of wall time = 1527.292453 -Test 094 cpld_bmarkfrac_v16 PASS +Test 092 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_bmarkfrac_v16_prod -Checking test 095 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmarkfrac_v16 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restart_bmarkfrac_v16 +Checking test 093 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5477,14 +5201,14 @@ Checking test 095 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -[0] The total amount of wall time = 909.566357 +[0] The total amount of wall time = 889.341022 -Test 095 cpld_restart_bmarkfrac_v16 PASS +Test 093 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmark_wave_prod -Checking test 096 cpld_bmark_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmark_wave +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_bmark_wave +Checking test 094 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5539,14 +5263,14 @@ Checking test 096 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 1555.677848 +[0] The total amount of wall time = 1584.499027 -Test 096 cpld_bmark_wave PASS +Test 094 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmarkfrac_wave_prod -Checking test 097 cpld_bmarkfrac_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmarkfrac_wave +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_bmarkfrac_wave +Checking test 095 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5601,14 +5325,14 @@ Checking test 097 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 1595.340933 +[0] The total amount of wall time = 1605.296026 -Test 097 cpld_bmarkfrac_wave PASS +Test 095 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmarkfrac_wave_v16_prod -Checking test 098 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmarkfrac_wave_v16 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_bmarkfrac_wave_v16 +Checking test 096 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5662,14 +5386,14 @@ Checking test 098 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 1080.328155 +[0] The total amount of wall time = 1077.270686 -Test 098 cpld_bmarkfrac_wave_v16 PASS +Test 096 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_control_wave_prod -Checking test 099 cpld_control_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control_wave +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_control_wave +Checking test 097 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5721,14 +5445,14 @@ Checking test 099 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -[0] The total amount of wall time = 869.599664 +[0] The total amount of wall time = 869.614332 -Test 099 cpld_control_wave PASS +Test 097 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_debug_prod -Checking test 100 cpld_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_debug +Checking test 098 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5777,14 +5501,14 @@ Checking test 100 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -[0] The total amount of wall time = 334.866020 +[0] The total amount of wall time = 333.094289 -Test 100 cpld_debug PASS +Test 098 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_debugfrac_prod -Checking test 101 cpld_debugfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_debugfrac +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_debugfrac +Checking test 099 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5833,74 +5557,74 @@ Checking test 101 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -[0] The total amount of wall time = 333.134213 +[0] The total amount of wall time = 332.127407 -Test 101 cpld_debugfrac PASS +Test 099 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_control_cfsr -Checking test 102 datm_control_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/datm_control_cfsr +Checking test 100 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 -[0] The total amount of wall time = 114.676823 +[0] The total amount of wall time = 110.732917 -Test 102 datm_control_cfsr PASS +Test 100 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_restart_cfsr -Checking test 103 datm_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/datm_restart_cfsr +Checking test 101 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 -[0] The total amount of wall time = 79.119218 +[0] The total amount of wall time = 78.759201 -Test 103 datm_restart_cfsr PASS +Test 101 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_control_gefs -Checking test 104 datm_control_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/datm_control_gefs +Checking test 102 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 -[0] The total amount of wall time = 105.406199 +[0] The total amount of wall time = 103.414547 -Test 104 datm_control_gefs PASS +Test 102 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_bulk_cfsr -Checking test 105 datm_bulk_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/datm_bulk_cfsr +Checking test 103 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 -[0] The total amount of wall time = 109.256390 +[0] The total amount of wall time = 108.913522 -Test 105 datm_bulk_cfsr PASS +Test 103 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_bulk_gefs -Checking test 106 datm_bulk_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/datm_bulk_gefs +Checking test 104 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 -[0] The total amount of wall time = 107.763318 +[0] The total amount of wall time = 106.648635 -Test 106 datm_bulk_gefs PASS +Test 104 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_mx025_cfsr -Checking test 107 datm_mx025_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/datm_mx025_cfsr +Checking test 105 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5908,14 +5632,14 @@ Checking test 107 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 409.787142 +[0] The total amount of wall time = 415.296184 -Test 107 datm_mx025_cfsr PASS +Test 105 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_mx025_gefs -Checking test 108 datm_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/datm_mx025_gefs +Checking test 106 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5923,23 +5647,188 @@ Checking test 108 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 407.007046 +[0] The total amount of wall time = 411.871933 -Test 108 datm_mx025_gefs PASS +Test 106 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_debug_cfsr -Checking test 109 datm_debug_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/datm_debug_cfsr +Checking test 107 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 -[0] The total amount of wall time = 315.039480 +[0] The total amount of wall time = 315.378131 + +Test 107 datm_debug_cfsr PASS + +FAILED TESTS: +Test fv3_gfdlmprad_noahmp 030 failed in run_test failed +Test fv3_gfdlmp 028 failed in run_test failed +Test fv3_gfdlmprad_gwd 029 failed in run_test failed + +REGRESSION TEST FAILED +Fri Mar 26 02:39:01 UTC 2021 +Elapsed time: 03h:41m:13s. Have a nice day! +Fri Mar 26 15:29:18 UTC 2021 +Start Regression test + +Compile 001 elapsed time 1680 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_161716/fv3_gfdlmp +Checking test 001 fv3_gfdlmp 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 + +[0] The total amount of wall time = 52.084481 + +Test 001 fv3_gfdlmp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmprad_gwd +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_161716/fv3_gfdlmprad_gwd +Checking test 002 fv3_gfdlmprad_gwd 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 + +[0] The total amount of wall time = 52.396464 + +Test 002 fv3_gfdlmprad_gwd PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmprad_noahmp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_161716/fv3_gfdlmprad_noahmp +Checking test 003 fv3_gfdlmprad_noahmp 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 + +[0] The total amount of wall time = 52.403795 -Test 109 datm_debug_cfsr PASS +Test 003 fv3_gfdlmprad_noahmp PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 15 19:23:17 UTC 2021 -Elapsed time: 04h:13m:43s. Have a nice day! +Fri Mar 26 17:07:15 UTC 2021 +Elapsed time: 01h:37m:59s. Have a nice day! diff --git a/tests/fv3_conf/gfs_v16_run.IN b/tests/fv3_conf/gfs_v16_run.IN index bd8c0500aa..8bc6f6db15 100644 --- a/tests/fv3_conf/gfs_v16_run.IN +++ b/tests/fv3_conf/gfs_v16_run.IN @@ -19,6 +19,14 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_suite2 field_table cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . +for n in 01 02 03 04 05 06 07 08 09 10 11 12; do +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc +done +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat if [ $DO_RRTMGP = .T. ]; then cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . diff --git a/tests/parm/v16_c96.nml.IN b/tests/parm/v16_c96.nml.IN index 95c136ccdd..18ed7aec61 100644 --- a/tests/parm/v16_c96.nml.IN +++ b/tests/parm/v16_c96.nml.IN @@ -133,7 +133,7 @@ deflate_level=1 fhlwr = 3600. ialb = 1 iems = 1 - iaer = 5111 + iaer = @[IAER] icliq_sw = 2 iovr = 3 ico2 = 2 diff --git a/tests/rt.conf b/tests/rt.conf index 3a39fd4416..76f29be742 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -74,13 +74,10 @@ RUN | fv3_thompson_no_aero # This test crashes with NaNs on jet.intel RUN | fv3_rrfs_v1beta | - jet.intel | fv3 | -COMPILE | APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | -# fv3_gfs_v15p2 and fv3_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 -RUN | fv3_gfs_v15p2 | - cheyenne.intel | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP | | fv3 | RUN | fv3_gfs_v16 | | fv3 | RUN | fv3_gfs_v16_restart | | | fv3_gfs_v16 RUN | fv3_gfs_v16_stochy | | fv3 | -RUN | fv3_gfs_v15p2_RRTMGP | - cheyenne.intel jet.intel | fv3 | RUN | fv3_gfs_v16_RRTMGP | | fv3 | RUN | fv3_gfs_v16_RRTMGP_c192L127 | | fv3 | RUN | fv3_gfs_v16_RRTMGP_2thrd | | fv3 | @@ -106,10 +103,8 @@ RUN | fv3_gfs_v16_ras # DEBUG tests # ################################################################################################################################################################################### -COMPILE | APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | | fv3 | -RUN | fv3_gfs_v15p2_debug | | fv3 | +COMPILE | APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP | | fv3 | RUN | fv3_gfs_v16_debug | | fv3 | -RUN | fv3_gfs_v15p2_RRTMGP_debug | | fv3 | RUN | fv3_gfs_v16_RRTMGP_debug | | fv3 | COMPILE | APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index fa245cf8fe..c5e54b9bef 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -416,12 +416,12 @@ 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-20210318/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210324/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210318} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210324} fi -INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210212} +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210324} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20201220 INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20210212} diff --git a/tests/tests/fv3_gfs_v16 b/tests/tests/fv3_gfs_v16 index 72c5e5f27d..be0c022296 100644 --- a/tests/tests/fv3_gfs_v16 +++ b/tests/tests/fv3_gfs_v16 @@ -96,5 +96,6 @@ export NSTF_NAME=2,1,0,0,0 export FV3_RUN=gfs_v16_run.IN export CCPP_SUITE=FV3_GFS_v16 export INPUT_NML=v16_c96.nml.IN +export IAER=1111 export WLCLK=30 diff --git a/tests/tests/fv3_gfs_v16_RRTMGP b/tests/tests/fv3_gfs_v16_RRTMGP index 306907184d..0cf240a8c9 100644 --- a/tests/tests/fv3_gfs_v16_RRTMGP +++ b/tests/tests/fv3_gfs_v16_RRTMGP @@ -80,4 +80,5 @@ export DO_RRTMGP=.T. export FV3_RUN=gfs_v16_run.IN export CCPP_SUITE=FV3_GFS_v16_RRTMGP export INPUT_NML=v16_c96_rrtmgp.nml.IN +export IAER=5111 diff --git a/tests/tests/fv3_gfs_v16_RRTMGP_2thrd b/tests/tests/fv3_gfs_v16_RRTMGP_2thrd index 2778beae72..d46114b00e 100644 --- a/tests/tests/fv3_gfs_v16_RRTMGP_2thrd +++ b/tests/tests/fv3_gfs_v16_RRTMGP_2thrd @@ -82,6 +82,7 @@ export WRTTASK_PER_GROUP=12 DT_ATMOS="1200" export DO_RRTMGP=.T. +export IAER=5111 export FV3_RUN=gfs_v16_run.IN export CCPP_SUITE=FV3_GFS_v16_RRTMGP diff --git a/tests/tests/fv3_gfs_v16_RRTMGP_debug b/tests/tests/fv3_gfs_v16_RRTMGP_debug index 0bf86c202c..1241a372e1 100644 --- a/tests/tests/fv3_gfs_v16_RRTMGP_debug +++ b/tests/tests/fv3_gfs_v16_RRTMGP_debug @@ -76,6 +76,7 @@ export_fv3 export FHMAX="06" DT_ATMOS="1200" export DO_RRTMGP=.T. +export IAER=5111 export FV3_RUN=gfs_v16_run.IN export CCPP_SUITE=FV3_GFS_v16_RRTMGP diff --git a/tests/tests/fv3_gfs_v16_debug b/tests/tests/fv3_gfs_v16_debug index 2091a8f60c..483b8f0a02 100644 --- a/tests/tests/fv3_gfs_v16_debug +++ b/tests/tests/fv3_gfs_v16_debug @@ -81,4 +81,5 @@ export NSTF_NAME=2,1,0,0,0 export FV3_RUN=gfs_v16_run.IN export CCPP_SUITE=FV3_GFS_v16 export INPUT_NML=v16_c96.nml.IN +export IAER=1111 diff --git a/tests/tests/fv3_gfs_v16_ras b/tests/tests/fv3_gfs_v16_ras index 7a3af317e3..a50c824866 100644 --- a/tests/tests/fv3_gfs_v16_ras +++ b/tests/tests/fv3_gfs_v16_ras @@ -85,3 +85,4 @@ export IMFDEEPCNV=-1 export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. +export IAER=5111 diff --git a/tests/tests/fv3_gfs_v16_ras_debug b/tests/tests/fv3_gfs_v16_ras_debug index e8d792b768..72f011ac5a 100644 --- a/tests/tests/fv3_gfs_v16_ras_debug +++ b/tests/tests/fv3_gfs_v16_ras_debug @@ -87,3 +87,4 @@ export IMFDEEPCNV=-1 export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. +export IAER=5111 diff --git a/tests/tests/fv3_gfs_v16_restart b/tests/tests/fv3_gfs_v16_restart index 41f9bcb6b6..04c39cfaa7 100644 --- a/tests/tests/fv3_gfs_v16_restart +++ b/tests/tests/fv3_gfs_v16_restart @@ -67,6 +67,7 @@ export EXTERNAL_IC=.F. export MAKE_NH=.F. export MOUNTAIN=.T. export NSTF_NAME=2,0,0,0,0 +export IAER=1111 export FV3_RUN=gfs_v16_run.IN export CCPP_SUITE=FV3_GFS_v16 diff --git a/tests/tests/fv3_gfs_v16_stochy b/tests/tests/fv3_gfs_v16_stochy index cfab01181d..5830f01eb0 100644 --- a/tests/tests/fv3_gfs_v16_stochy +++ b/tests/tests/fv3_gfs_v16_stochy @@ -85,6 +85,7 @@ export DO_SKEB=.T. export SKEB=0.3 export SHUM=0.003 export SPPT=0.2 +export IAER=5111 export FV3_RUN=gfs_v16_run.IN export CCPP_SUITE=FV3_GFS_v16 From 8ba45a1396bf4f0905155f77e7adac6b1d9b4616 Mon Sep 17 00:00:00 2001 From: XiaqiongZhou-NOAA <48254930+XiaqiongZhou-NOAA@users.noreply.github.com> Date: Tue, 30 Mar 2021 10:30:58 -0400 Subject: [PATCH 095/109] Update dycore to the GFDL dev/emc (the FV3 202101 version ) (#481) Use the GFDL dycore repository dev/emc. The GFDL dev/emc branch of dycore was synchronized with the GFDL master, which included the FV3 202101 upgrade except inline GFDL_MP: https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere/releases/tag/FV3-202101-public --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 399 +++---- tests/RegressionTests_cheyenne.intel.log | 674 ++++++------ tests/RegressionTests_gaea.intel.log | 634 +++++------ tests/RegressionTests_hera.gnu.log | 405 +++---- tests/RegressionTests_hera.intel.log | 1236 +++++++++------------- tests/RegressionTests_jet.intel.log | 428 ++++---- tests/RegressionTests_orion.intel.log | 696 ++++++------ tests/RegressionTests_wcoss_cray.log | 450 ++++---- tests/RegressionTests_wcoss_dell_p3.log | 995 +++++++++-------- tests/parm/stretched-nest-input.nml.IN | 3 +- tests/rt.sh | 4 +- tests/rt_gnu.conf | 1 - 13 files changed, 2745 insertions(+), 3182 deletions(-) diff --git a/FV3 b/FV3 index 0e05075456..972d662f70 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 0e05075456800f0c5abd7bfb1ce6f89b26dd7989 +Subproject commit 972d662f7059b95993e9e3d314093d7306f70b63 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index c778b6341f..f46c889bb1 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,19 +1,19 @@ -Thu Mar 25 09:47:38 MDT 2021 +Mon Mar 29 10:44:05 MDT 2021 Start Regression test -Compile 001 elapsed time 330 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp +Compile 001 elapsed time 339 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp Compile 002 elapsed time 338 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP -Compile 003 elapsed time 371 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y -Compile 004 elapsed time 334 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 005 elapsed time 303 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 006 elapsed time 187 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y -Compile 007 elapsed time 364 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -Compile 008 elapsed time 187 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 009 elapsed time 458 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 003 elapsed time 373 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y +Compile 004 elapsed time 342 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 005 elapsed time 308 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 006 elapsed time 186 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y +Compile 007 elapsed time 380 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +Compile 008 elapsed time 191 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 009 elapsed time 462 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled Compile 010 elapsed time 375 seconds. APP=DATM_NEMS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfdlmp -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfdlmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfdlmp +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -58,85 +58,14 @@ Checking test 001 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 73.618411 +The total amount of wall time = 73.019305 Test 001 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v15p2 -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v15p2 -Checking test 002 fv3_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 ............SKIP for gnu compilers - 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 - -The total amount of wall time = 141.743242 - -Test 002 fv3_gfs_v15p2 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16 -Checking test 003 fv3_gfs_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16 +Checking test 002 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -212,14 +141,14 @@ Checking test 003 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 224.438472 +The total amount of wall time = 232.109430 -Test 003 fv3_gfs_v16 PASS +Test 002 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16_restart -Checking test 004 fv3_gfs_v16_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16_restart +Checking test 003 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -265,14 +194,14 @@ Checking test 004 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 136.421769 +The total amount of wall time = 139.100033 -Test 004 fv3_gfs_v16_restart PASS +Test 003 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16_stochy -Checking test 005 fv3_gfs_v16_stochy results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16_stochy +Checking test 004 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -336,14 +265,14 @@ Checking test 005 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 87.345748 +The total amount of wall time = 90.014133 -Test 005 fv3_gfs_v16_stochy PASS +Test 004 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_flake -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16_flake -Checking test 006 fv3_gfs_v16_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_flake +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16_flake +Checking test 005 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -407,14 +336,14 @@ Checking test 006 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 149.972377 +The total amount of wall time = 150.106242 -Test 006 fv3_gfs_v16_flake PASS +Test 005 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v15p2_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v15p2_RRTMGP -Checking test 007 fv3_gfs_v15p2_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v15p2_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v15p2_RRTMGP +Checking test 006 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -478,14 +407,14 @@ Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 258.366359 +The total amount of wall time = 258.292202 -Test 007 fv3_gfs_v15p2_RRTMGP PASS +Test 006 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16_RRTMGP -Checking test 008 fv3_gfs_v16_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16_RRTMGP +Checking test 007 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -549,14 +478,14 @@ Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 263.296473 +The total amount of wall time = 263.320161 -Test 008 fv3_gfs_v16_RRTMGP PASS +Test 007 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gsd -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gsd -Checking test 009 fv3_gsd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gsd +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gsd +Checking test 008 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -644,14 +573,14 @@ Checking test 009 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 353.949008 +The total amount of wall time = 359.418388 -Test 009 fv3_gsd PASS +Test 008 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_thompson -Checking test 010 fv3_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_thompson +Checking test 009 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -715,14 +644,14 @@ Checking test 010 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 164.754097 +The total amount of wall time = 168.282812 -Test 010 fv3_thompson PASS +Test 009 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_thompson_no_aero -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_thompson_no_aero -Checking test 011 fv3_thompson_no_aero results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_thompson_no_aero +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_thompson_no_aero +Checking test 010 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -786,14 +715,14 @@ Checking test 011 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 157.597801 +The total amount of wall time = 160.611284 -Test 011 fv3_thompson_no_aero PASS +Test 010 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_rrfs_v1beta -Checking test 012 fv3_rrfs_v1beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_rrfs_v1beta +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_rrfs_v1beta +Checking test 011 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -857,14 +786,14 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 180.824871 +The total amount of wall time = 182.263180 -Test 012 fv3_rrfs_v1beta PASS +Test 011 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_HAFS_v0_hwrf_thompson -Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_HAFS_v0_hwrf_thompson +Checking test 012 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -928,14 +857,14 @@ Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 258.786296 +The total amount of wall time = 260.844523 -Test 013 fv3_HAFS_v0_hwrf_thompson PASS +Test 012 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 013 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -949,14 +878,14 @@ Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 462.249482 +The total amount of wall time = 464.655560 -Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 013 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfsv16_ugwpv1 -Checking test 015 fv3_gfsv16_ugwpv1 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfsv16_ugwpv1 +Checking test 014 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1014,14 +943,14 @@ Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 305.552962 +The total amount of wall time = 308.603458 -Test 015 fv3_gfsv16_ugwpv1 PASS +Test 014 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfsv16_ugwpv1_warmstart -Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfsv16_ugwpv1_warmstart +Checking test 015 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1079,14 +1008,14 @@ Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 303.038972 +The total amount of wall time = 305.799437 -Test 016 fv3_gfsv16_ugwpv1_warmstart PASS +Test 015 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_ras -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16_ras -Checking test 017 fv3_gfs_v16_ras results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_ras +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16_ras +Checking test 016 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1150,14 +1079,14 @@ Checking test 017 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 165.039024 +The total amount of wall time = 168.027719 -Test 017 fv3_gfs_v16_ras PASS +Test 016 fv3_gfs_v16_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_control_debug -Checking test 018 fv3_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_control_debug +Checking test 017 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1183,28 +1112,28 @@ Checking test 018 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 75.565061 +The total amount of wall time = 76.643208 -Test 018 fv3_control_debug PASS +Test 017 fv3_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_regional_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_regional_control_debug -Checking test 019 fv3_regional_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_regional_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_regional_control_debug +Checking test 018 fv3_regional_control_debug 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 -The total amount of wall time = 185.867369 +The total amount of wall time = 189.487170 -Test 019 fv3_regional_control_debug PASS +Test 018 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_rrfs_v1beta_debug -Checking test 020 fv3_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_rrfs_v1beta_debug +Checking test 019 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1268,14 +1197,14 @@ Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 109.533251 +The total amount of wall time = 113.573650 -Test 020 fv3_rrfs_v1beta_debug PASS +Test 019 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gsd_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gsd_debug -Checking test 021 fv3_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gsd_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gsd_debug +Checking test 020 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1339,14 +1268,14 @@ Checking test 021 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 115.252184 +The total amount of wall time = 119.437540 -Test 021 fv3_gsd_debug PASS +Test 020 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_thompson_debug -Checking test 022 fv3_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_thompson_debug +Checking test 021 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1410,14 +1339,14 @@ Checking test 022 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 183.371099 +The total amount of wall time = 191.823232 -Test 022 fv3_thompson_debug PASS +Test 021 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_thompson_no_aero_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_thompson_no_aero_debug -Checking test 023 fv3_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_thompson_no_aero_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_thompson_no_aero_debug +Checking test 022 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1481,14 +1410,14 @@ Checking test 023 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 176.845157 +The total amount of wall time = 184.933272 -Test 023 fv3_thompson_no_aero_debug PASS +Test 022 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v15p2_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v15p2_debug -Checking test 024 fv3_gfs_v15p2_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v15p2_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v15p2_debug +Checking test 023 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1552,14 +1481,14 @@ Checking test 024 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 137.176533 +The total amount of wall time = 138.386383 -Test 024 fv3_gfs_v15p2_debug PASS +Test 023 fv3_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16_debug -Checking test 025 fv3_gfs_v16_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16_debug +Checking test 024 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1623,14 +1552,14 @@ Checking test 025 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 149.036465 +The total amount of wall time = 149.443934 -Test 025 fv3_gfs_v16_debug PASS +Test 024 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v15p2_RRTMGP_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v15p2_RRTMGP_debug -Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v15p2_RRTMGP_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v15p2_RRTMGP_debug +Checking test 025 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1694,14 +1623,14 @@ Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 197.468490 +The total amount of wall time = 198.166943 -Test 026 fv3_gfs_v15p2_RRTMGP_debug PASS +Test 025 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16_RRTMGP_debug -Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16_RRTMGP_debug +Checking test 026 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1765,14 +1694,14 @@ Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 205.202459 +The total amount of wall time = 205.441786 -Test 027 fv3_gfs_v16_RRTMGP_debug PASS +Test 026 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_multigases -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_multigases -Checking test 028 fv3_multigases results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_multigases +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_multigases +Checking test 027 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1842,14 +1771,14 @@ Checking test 028 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 174.702322 +The total amount of wall time = 178.915134 -Test 028 fv3_multigases PASS +Test 027 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 028 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1913,14 +1842,14 @@ Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 112.640350 +The total amount of wall time = 113.099966 -Test 029 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 028 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -1934,14 +1863,14 @@ Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 215.254661 +The total amount of wall time = 215.362078 -Test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfsv16_ugwpv1_debug -Checking test 031 fv3_gfsv16_ugwpv1_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfsv16_ugwpv1_debug +Checking test 030 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1999,14 +1928,14 @@ Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 301.566226 +The total amount of wall time = 306.104500 -Test 031 fv3_gfsv16_ugwpv1_debug PASS +Test 030 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_20278/fv3_gfs_v16_ras_debug -Checking test 032 fv3_gfs_v16_ras_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16_ras_debug +Checking test 031 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2070,11 +1999,11 @@ Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 171.717886 +The total amount of wall time = 172.783650 -Test 032 fv3_gfs_v16_ras_debug PASS +Test 031 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 25 10:08:07 MDT 2021 -Elapsed time: 00h:20m:29s. Have a nice day! +Mon Mar 29 11:04:50 MDT 2021 +Elapsed time: 00h:20m:45s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 3766ddbf70..9bb9d6c7dc 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,28 +1,28 @@ -Thu Mar 25 12:27:05 MDT 2021 +Mon Mar 29 13:58:12 MDT 2021 Start Regression test -Compile 001 elapsed time 706 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 678 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 734 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 732 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 761 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 862 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 968 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 008 elapsed time 759 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 725 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 791 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 844 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 241 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 265 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 014 elapsed time 255 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 015 elapsed time 1018 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 016 elapsed time 1085 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 354 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 018 elapsed time 649 seconds. APP=DATM_NEMS -Compile 019 elapsed time 245 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_control +Compile 001 elapsed time 734 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 712 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 755 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 753 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 787 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 885 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 988 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 008 elapsed time 776 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 752 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 808 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 862 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 257 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 267 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 014 elapsed time 259 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 015 elapsed time 1047 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 016 elapsed time 1046 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 366 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 656 seconds. APP=DATM_NEMS +Compile 019 elapsed time 250 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -87,13 +87,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.037218 +The total amount of wall time = 48.526805 Test 001 fv3_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -158,13 +158,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.960783 +The total amount of wall time = 47.798815 Test 002 fv3_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -229,13 +229,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 106.760747 +The total amount of wall time = 107.170912 Test 003 fv3_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -282,13 +282,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 23.372045 +The total amount of wall time = 22.990870 Test 004 fv3_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_read_inc -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_read_inc +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_read_inc +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -353,13 +353,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.123795 +The total amount of wall time = 47.431305 Test 005 fv3_read_inc PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_wrtGauss_netcdf_esmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -404,13 +404,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 123.038756 +The total amount of wall time = 130.110830 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_wrtGauss_netcdf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -455,13 +455,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.189186 +The total amount of wall time = 47.828960 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_wrtGauss_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -471,8 +471,8 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc .........OK + Comparing dynf000.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 @@ -506,13 +506,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.054332 +The total amount of wall time = 49.275015 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGlatlon_netcdf -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_wrtGlatlon_netcdf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGlatlon_netcdf +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -557,13 +557,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.477696 +The total amount of wall time = 47.104866 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_wrtGauss_nemsio +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -608,13 +608,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.649119 +The total amount of wall time = 46.608599 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_wrtGauss_nemsio_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -659,13 +659,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 125.614804 +The total amount of wall time = 123.013105 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -730,13 +730,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 55.086660 +The total amount of wall time = 57.376869 Test 012 fv3_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_ca -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_ca +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -801,13 +801,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 30.527469 +The total amount of wall time = 30.076032 Test 013 fv3_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lndp -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_lndp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lndp +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -872,13 +872,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.164460 +The total amount of wall time = 52.624702 Test 014 fv3_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_iau -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_iau +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_iau +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -943,13 +943,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.416051 +The total amount of wall time = 46.805202 Test 015 fv3_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lheatstrg -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_lheatstrg +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lheatstrg +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -994,13 +994,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.080201 +The total amount of wall time = 50.116706 Test 016 fv3_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_multigases_repro -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_multigases_repro +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_multigases_repro +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1071,13 +1071,13 @@ Checking test 017 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 113.689083 +The total amount of wall time = 111.777375 Test 017 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_32bit -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_control_32bit +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_32bit +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1142,13 +1142,13 @@ Checking test 018 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 40.337517 +The total amount of wall time = 40.009813 Test 018 fv3_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_stretched +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1201,13 +1201,13 @@ Checking test 019 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 332.394004 +The total amount of wall time = 333.539238 Test 019 fv3_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_stretched_nest +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1271,13 +1271,13 @@ Checking test 020 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 353.819232 +The total amount of wall time = 354.356366 Test 020 fv3_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_regional_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1285,25 +1285,25 @@ Checking test 021 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 715.747620 +The total amount of wall time = 715.804547 Test 021 fv3_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_restart -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_regional_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_restart +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_regional_restart Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 392.522315 +The total amount of wall time = 393.055057 Test 022 fv3_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_regional_quilt +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1314,13 +1314,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 742.402420 +The total amount of wall time = 743.049345 Test 023 fv3_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_hafs -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_regional_quilt_hafs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_hafs +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1329,27 +1329,27 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 739.062024 +The total amount of wall time = 740.662523 Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_regional_quilt_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK -The total amount of wall time = 741.381067 +The total amount of wall time = 720.699318 Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfdlmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1394,13 +1394,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 54.229943 +The total amount of wall time = 52.767034 Test 026 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_gwd -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfdlmprad_gwd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_gwd +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1445,13 +1445,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 53.631075 +The total amount of wall time = 53.175454 Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_noahmp -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfdlmprad_noahmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_noahmp +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1496,13 +1496,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 54.085702 +The total amount of wall time = 53.205348 Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_csawmg -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_csawmg +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_csawmg +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1547,13 +1547,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 140.967523 +The total amount of wall time = 139.763589 Test 029 fv3_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmf -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_satmedmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmf +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1598,13 +1598,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.577739 +The total amount of wall time = 59.254615 Test 030 fv3_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmfq -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_satmedmfq +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmfq +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1649,13 +1649,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 60.060009 +The total amount of wall time = 59.227283 Test 031 fv3_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp_32bit -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfdlmp_32bit +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp_32bit +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1700,13 +1700,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 42.768383 +The total amount of wall time = 41.948815 Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_32bit_post -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfdlmprad_32bit_post +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_32bit_post +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1755,13 @@ Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 73.711306 +The total amount of wall time = 73.807482 Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_cpt -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_cpt +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_cpt +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1812,13 +1812,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 330.559020 +The total amount of wall time = 334.085461 Test 034 fv3_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1907,13 +1907,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 201.836515 +The total amount of wall time = 204.664541 Test 035 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rap -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_rap +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rap +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_rap Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,13 +1978,13 @@ Checking test 036 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 100.313999 +The total amount of wall time = 103.353145 Test 036 fv3_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_hrrr -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_hrrr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_hrrr +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_hrrr Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2049,13 +2049,13 @@ Checking test 037 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 107.194282 +The total amount of wall time = 106.843635 Test 037 fv3_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_thompson Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2120,13 +2120,13 @@ Checking test 038 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 95.246771 +The total amount of wall time = 96.180730 Test 038 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_thompson_no_aero Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2191,13 +2191,13 @@ Checking test 039 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 91.286840 +The total amount of wall time = 91.045639 Test 039 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_rrfs_v1beta Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2262,13 +2262,13 @@ Checking test 040 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 109.504179 +The total amount of wall time = 107.823103 Test 040 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16 Checking test 041 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2345,13 +2345,13 @@ Checking test 041 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 169.751681 +The total amount of wall time = 170.037949 Test 041 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_restart Checking test 042 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2398,13 +2398,13 @@ Checking test 042 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 104.014940 +The total amount of wall time = 104.675764 Test 042 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_stochy Checking test 043 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2469,13 +2469,13 @@ Checking test 043 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.462190 +The total amount of wall time = 63.357942 Test 043 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_RRTMGP Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2540,13 +2540,13 @@ Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 204.315474 +The total amount of wall time = 226.307420 Test 044 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_RRTMGP_c192L127 Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2605,13 +2605,13 @@ Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 833.678304 +The total amount of wall time = 932.539768 Test 045 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_RRTMGP_2thrd Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2676,13 +2676,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 476.944473 +The total amount of wall time = 477.641270 Test 046 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gocart_clm -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gocart_clm +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gocart_clm +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gocart_clm Checking test 047 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2727,13 +2727,13 @@ Checking test 047 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 57.906718 +The total amount of wall time = 56.790882 Test 047 fv3_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_flake -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_flake +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_flake Checking test 048 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2798,13 +2798,13 @@ Checking test 048 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 116.180593 +The total amount of wall time = 115.824688 Test 048 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_HAFS_v0_hwrf_thompson Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2869,13 +2869,13 @@ Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 181.850449 +The total amount of wall time = 196.509575 Test 049 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_esg_HAFS_v0_hwrf_thompson Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2890,13 +2890,13 @@ Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 339.059730 +The total amount of wall time = 339.206720 Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfsv16_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfsv16_ugwpv1 Checking test 051 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2955,13 +2955,13 @@ Checking test 051 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 208.133452 +The total amount of wall time = 216.820105 Test 051 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfsv16_ugwpv1_warmstart Checking test 052 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3020,13 +3020,13 @@ Checking test 052 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 207.974584 +The total amount of wall time = 217.505557 Test 052 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_ras Checking test 053 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3091,13 +3091,13 @@ Checking test 053 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 112.209976 +The total amount of wall time = 116.134393 Test 053 fv3_gfs_v16_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_debug Checking test 054 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3162,13 +3162,13 @@ Checking test 054 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 275.334943 +The total amount of wall time = 272.803358 Test 054 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_RRTMGP_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_RRTMGP_debug Checking test 055 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3233,13 +3233,13 @@ Checking test 055 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 394.622200 +The total amount of wall time = 393.852456 Test 055 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_regional_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_regional_control_debug Checking test 056 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3247,13 +3247,13 @@ Checking test 056 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 368.294697 +The total amount of wall time = 367.086292 Test 056 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_control_debug Checking test 057 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3280,13 +3280,13 @@ Checking test 057 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 146.795024 +The total amount of wall time = 147.025456 Test 057 fv3_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_stretched_nest_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_stretched_nest_debug Checking test 058 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3303,13 +3303,13 @@ Checking test 058 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 434.171767 +The total amount of wall time = 433.249022 Test 058 fv3_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gsd_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gsd_debug Checking test 059 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3374,13 +3374,13 @@ Checking test 059 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 216.473643 +The total amount of wall time = 219.370895 Test 059 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_diag3d_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gsd_diag3d_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_diag3d_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gsd_diag3d_debug Checking test 060 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3445,13 +3445,13 @@ Checking test 060 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 263.029647 +The total amount of wall time = 266.439669 Test 060 fv3_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_thompson_debug Checking test 061 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3516,13 +3516,13 @@ Checking test 061 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 361.301781 +The total amount of wall time = 362.740125 Test 061 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_thompson_no_aero_debug Checking test 062 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3587,13 +3587,13 @@ Checking test 062 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 348.741724 +The total amount of wall time = 349.289812 Test 062 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_rrfs_v1beta_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_rrfs_v1beta_debug Checking test 063 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3658,13 +3658,13 @@ Checking test 063 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 211.679995 +The total amount of wall time = 211.106020 Test 063 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_HAFS_v0_hwrf_thompson_debug Checking test 064 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3729,13 +3729,13 @@ Checking test 064 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 223.799774 +The total amount of wall time = 224.774415 Test 064 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 065 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3750,13 +3750,13 @@ Checking test 065 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 397.638980 +The total amount of wall time = 399.374049 Test 065 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfsv16_ugwpv1_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfsv16_ugwpv1_debug Checking test 066 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3815,13 +3815,13 @@ Checking test 066 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 602.244296 +The total amount of wall time = 608.831074 Test 066 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/fv3_gfs_v16_ras_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_ras_debug Checking test 067 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3886,13 +3886,13 @@ Checking test 067 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 343.564488 +The total amount of wall time = 346.901587 Test 067 fv3_gfs_v16_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_control Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3942,13 +3942,13 @@ Checking test 068 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 98.320255 +The total amount of wall time = 99.930076 Test 068 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restart Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3998,13 +3998,13 @@ Checking test 069 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 54.790189 +The total amount of wall time = 52.892804 Test 069 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_controlfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_controlfrac Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4054,13 +4054,13 @@ Checking test 070 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 98.462978 +The total amount of wall time = 98.227868 Test 070 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restartfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restartfrac Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4110,13 +4110,13 @@ Checking test 071 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 54.067893 +The total amount of wall time = 54.639463 Test 071 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_2threads Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4166,13 +4166,13 @@ Checking test 072 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 258.970638 +The total amount of wall time = 256.356918 Test 072 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_decomp Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4222,13 +4222,13 @@ Checking test 073 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 92.551359 +The total amount of wall time = 93.596933 Test 073 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_satmedmf -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_satmedmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_satmedmf +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_satmedmf Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4278,13 +4278,13 @@ Checking test 074 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 96.335590 +The total amount of wall time = 93.337159 Test 074 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_ca -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_ca +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_ca Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4334,13 +4334,13 @@ Checking test 075 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 96.016649 +The total amount of wall time = 96.153916 Test 075 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_control_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_control_c192 Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4390,13 +4390,13 @@ Checking test 076 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 408.475924 +The total amount of wall time = 408.804021 Test 076 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restart_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restart_c192 Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4446,13 +4446,13 @@ Checking test 077 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 293.257150 +The total amount of wall time = 292.598134 Test 077 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_controlfrac_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_controlfrac_c192 Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4502,13 +4502,13 @@ Checking test 078 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 394.301730 +The total amount of wall time = 403.359160 Test 078 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restartfrac_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restartfrac_c192 Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4558,13 +4558,13 @@ Checking test 079 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 291.606557 +The total amount of wall time = 292.959986 Test 079 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_control_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_control_c384 Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4617,13 +4617,13 @@ Checking test 080 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1486.091643 +The total amount of wall time = 1594.101123 Test 080 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restart_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restart_c384 Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4676,13 +4676,13 @@ Checking test 081 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 841.235035 +The total amount of wall time = 845.361372 Test 081 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_controlfrac_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_controlfrac_c384 Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4735,13 +4735,13 @@ Checking test 082 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1592.449818 +The total amount of wall time = 1595.999315 Test 082 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restartfrac_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restartfrac_c384 Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4794,13 +4794,13 @@ Checking test 083 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 834.220510 +The total amount of wall time = 841.274608 Test 083 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_bmark +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_bmark Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4853,13 +4853,13 @@ Checking test 084 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 905.601571 +The total amount of wall time = 908.696348 Test 084 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restart_bmark +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restart_bmark Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4912,13 +4912,13 @@ Checking test 085 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 491.256290 +The total amount of wall time = 495.052066 Test 085 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_bmarkfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_bmarkfrac Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4971,13 +4971,13 @@ Checking test 086 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 896.585630 +The total amount of wall time = 906.805467 Test 086 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restart_bmarkfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restart_bmarkfrac Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5030,13 +5030,13 @@ Checking test 087 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 494.381708 +The total amount of wall time = 497.083469 Test 087 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_bmarkfrac_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_bmarkfrac_v16 Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5089,13 +5089,13 @@ Checking test 088 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -The total amount of wall time = 1625.590057 +The total amount of wall time = 1634.233073 Test 088 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_restart_bmarkfrac_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restart_bmarkfrac_v16 Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5148,13 +5148,13 @@ Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -The total amount of wall time = 872.231913 +The total amount of wall time = 873.710903 Test 089 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark_wave -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_bmark_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark_wave +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_bmark_wave Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5210,13 +5210,13 @@ Checking test 090 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 1517.513722 +The total amount of wall time = 1570.499984 Test 090 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_wave -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_bmarkfrac_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_wave +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_bmarkfrac_wave Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5272,13 +5272,13 @@ Checking test 091 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 1570.213867 +The total amount of wall time = 1571.579022 Test 091 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_bmarkfrac_wave_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_bmarkfrac_wave_v16 Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5333,13 +5333,13 @@ Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 1043.428181 +The total amount of wall time = 1057.432413 Test 092 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_wave -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_control_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_wave +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_control_wave Checking test 093 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5392,13 +5392,13 @@ Checking test 093 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 813.055325 +The total amount of wall time = 827.421768 Test 093 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_debug Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5448,13 +5448,13 @@ Checking test 094 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 307.483368 +The total amount of wall time = 308.765252 Test 094 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_debugfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/cpld_debugfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_debugfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_debugfrac Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5504,73 +5504,73 @@ Checking test 095 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 304.950454 +The total amount of wall time = 306.332658 Test 095 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/datm_control_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 102.095321 +The total amount of wall time = 102.505823 Test 096 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/datm_restart_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 63.584151 +The total amount of wall time = 63.779888 Test 097 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/datm_control_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 95.768941 +The total amount of wall time = 95.967009 Test 098 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/datm_bulk_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 98.977391 +The total amount of wall time = 98.251686 Test 099 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_bulk_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/datm_bulk_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 93.037856 +The total amount of wall time = 96.163211 Test 100 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/datm_mx025_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5579,13 +5579,13 @@ Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 394.286064 +The total amount of wall time = 395.042702 Test 101 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_mx025_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/datm_mx025_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5594,23 +5594,23 @@ Checking test 102 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 391.172858 +The total amount of wall time = 390.983819 Test 102 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_debug_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_43153/datm_debug_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 286.549102 +The total amount of wall time = 285.850921 Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 25 13:49:26 MDT 2021 -Elapsed time: 01h:22m:22s. Have a nice day! +Mon Mar 29 15:47:09 MDT 2021 +Elapsed time: 01h:48m:57s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index c16a16c5ac..1ba610f814 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,27 +1,27 @@ -Thu Mar 25 13:18:42 EDT 2021 +Mon Mar 29 10:33:02 EDT 2021 Start Regression test -Compile 001 elapsed time 690 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 666 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 665 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 692 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 671 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 750 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 822 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 008 elapsed time 678 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 680 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 687 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 695 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 260 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 258 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 014 elapsed time 248 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 015 elapsed time 713 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 016 elapsed time 281 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 554 seconds. APP=DATM_NEMS -Compile 018 elapsed time 258 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_control +Compile 001 elapsed time 656 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 647 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 647 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 656 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 655 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 708 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 762 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 008 elapsed time 654 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 702 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 666 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 709 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 249 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 252 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 014 elapsed time 243 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 015 elapsed time 690 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 016 elapsed time 267 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 532 seconds. APP=DATM_NEMS +Compile 018 elapsed time 242 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -86,13 +86,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 64.917783 +The total amount of wall time = 93.550980 Test 001 fv3_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_decomp +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -157,13 +157,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 43.934317 +The total amount of wall time = 45.295537 Test 002 fv3_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_2threads +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -228,13 +228,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 66.529972 +The total amount of wall time = 57.018466 Test 003 fv3_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_restart +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -281,13 +281,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 24.640952 +The total amount of wall time = 21.802953 Test 004 fv3_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_read_inc -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_read_inc +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_read_inc +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -352,13 +352,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 50.033215 +The total amount of wall time = 40.889257 Test 005 fv3_read_inc PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_wrtGauss_netcdf_esmf +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -403,13 +403,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 101.648105 +The total amount of wall time = 101.836804 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_wrtGauss_netcdf +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -454,13 +454,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 41.803412 +The total amount of wall time = 40.303697 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -505,13 +505,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 92.251832 +The total amount of wall time = 149.126987 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_wrtGlatlon_netcdf +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGlatlon_netcdf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -556,13 +556,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 41.961586 +The total amount of wall time = 40.840686 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_wrtGauss_nemsio +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -607,13 +607,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 40.350025 +The total amount of wall time = 40.890248 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_wrtGauss_nemsio_c192 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -658,13 +658,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 113.182373 +The total amount of wall time = 133.660993 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stochy -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_stochy +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stochy +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -729,13 +729,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.987230 +The total amount of wall time = 48.088304 Test 012 fv3_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_ca -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_ca +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_ca +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -800,13 +800,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 28.554379 +The total amount of wall time = 28.046050 Test 013 fv3_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lndp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_lndp +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lndp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -871,13 +871,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 56.387135 +The total amount of wall time = 53.099010 Test 014 fv3_lndp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_iau -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_iau +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_iau +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -942,13 +942,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.237089 +The total amount of wall time = 41.063086 Test 015 fv3_iau PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lheatstrg -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_lheatstrg +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lheatstrg +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -993,13 +993,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 42.402292 +The total amount of wall time = 41.712579 Test 016 fv3_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_multigases_repro -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_multigases_repro +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_multigases_repro +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1070,13 +1070,13 @@ Checking test 017 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 122.105786 +The total amount of wall time = 125.351024 Test 017 fv3_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_32bit -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_control_32bit +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_32bit +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1141,13 +1141,13 @@ Checking test 018 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 41.494253 +The total amount of wall time = 39.728770 Test 018 fv3_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_stretched +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1200,13 +1200,13 @@ Checking test 019 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 333.182107 +The total amount of wall time = 307.233334 Test 019 fv3_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_stretched_nest +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1270,13 +1270,13 @@ Checking test 020 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 334.441839 +The total amount of wall time = 364.732464 Test 020 fv3_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_regional_control +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1284,25 +1284,25 @@ Checking test 021 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 677.205584 +The total amount of wall time = 676.419757 Test 021 fv3_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_regional_restart +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_restart +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_regional_restart Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 368.311248 +The total amount of wall time = 370.487759 Test 022 fv3_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_regional_quilt +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1313,13 +1313,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 695.419473 +The total amount of wall time = 692.112350 Test 023 fv3_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_hafs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_regional_quilt_hafs +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_hafs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1328,27 +1328,27 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 695.973709 +The total amount of wall time = 698.044656 Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_regional_quilt_netcdf_parallel +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 700.442754 +The total amount of wall time = 694.585469 Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfdlmp +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1393,13 +1393,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 56.190627 +The total amount of wall time = 84.574834 Test 026 fv3_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_gwd -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfdlmprad_gwd +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_gwd +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1444,13 +1444,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.230360 +The total amount of wall time = 74.131852 Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_noahmp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfdlmprad_noahmp +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_noahmp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1495,13 +1495,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 47.421094 +The total amount of wall time = 88.514824 Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_csawmg -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_csawmg +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_csawmg +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1546,13 +1546,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 123.843987 +The total amount of wall time = 121.739591 Test 029 fv3_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_satmedmf +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1597,13 +1597,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 77.988011 +The total amount of wall time = 51.471660 Test 030 fv3_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmfq -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_satmedmfq +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmfq +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1648,13 +1648,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.798888 +The total amount of wall time = 51.378236 Test 031 fv3_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp_32bit -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfdlmp_32bit +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp_32bit +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1699,13 +1699,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 39.649691 +The total amount of wall time = 39.133520 Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfdlmprad_32bit_post +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_32bit_post +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1754,13 +1754,13 @@ Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 78.836639 +The total amount of wall time = 79.778399 Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_cpt -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_cpt +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_cpt +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1811,13 +1811,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 290.828493 +The total amount of wall time = 288.484948 Test 034 fv3_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gsd +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1906,13 +1906,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 194.532851 +The total amount of wall time = 211.211127 Test 035 fv3_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rap -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_rap +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rap +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_rap Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,13 +1977,13 @@ Checking test 036 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 99.197639 +The total amount of wall time = 104.377006 Test 036 fv3_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_hrrr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_hrrr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_hrrr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_hrrr Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2048,13 +2048,13 @@ Checking test 037 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 102.168380 +The total amount of wall time = 99.719980 Test 037 fv3_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_thompson +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_thompson Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2119,13 +2119,13 @@ Checking test 038 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 94.026976 +The total amount of wall time = 91.538124 Test 038 fv3_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_thompson_no_aero +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_thompson_no_aero Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2190,13 +2190,13 @@ Checking test 039 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 89.150302 +The total amount of wall time = 85.852580 Test 039 fv3_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_rrfs_v1beta +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_rrfs_v1beta Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2261,13 +2261,13 @@ Checking test 040 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 105.461066 +The total amount of wall time = 102.101399 Test 040 fv3_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16 Checking test 041 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2344,13 +2344,13 @@ Checking test 041 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 228.059364 +The total amount of wall time = 169.664064 Test 041 fv3_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_restart +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_restart Checking test 042 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2397,13 +2397,13 @@ Checking test 042 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 93.353187 +The total amount of wall time = 91.350433 Test 042 fv3_gfs_v16_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_stochy -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_stochy +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_stochy +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_stochy Checking test 043 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2468,13 +2468,13 @@ Checking test 043 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 55.458283 +The total amount of wall time = 57.464023 Test 043 fv3_gfs_v16_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_RRTMGP +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_RRTMGP Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2539,13 +2539,13 @@ Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 181.540772 +The total amount of wall time = 178.081939 Test 044 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_RRTMGP_c192L127 Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2604,13 +2604,13 @@ Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 724.485143 +The total amount of wall time = 715.011641 Test 045 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_RRTMGP_2thrd Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2675,13 +2675,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 273.527960 +The total amount of wall time = 270.902248 Test 046 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_csawmg -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfsv16_csawmg +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_csawmg +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfsv16_csawmg Checking test 047 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2726,13 +2726,13 @@ Checking test 047 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 156.935277 +The total amount of wall time = 129.458617 Test 047 fv3_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_csawmgt -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfsv16_csawmgt +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_csawmgt +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfsv16_csawmgt Checking test 048 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2777,13 +2777,13 @@ Checking test 048 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 137.109500 +The total amount of wall time = 127.461967 Test 048 fv3_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gocart_clm -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gocart_clm +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gocart_clm +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gocart_clm Checking test 049 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2828,13 +2828,13 @@ Checking test 049 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 54.230399 +The total amount of wall time = 51.567219 Test 049 fv3_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_flake -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_flake +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_flake +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_flake Checking test 050 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2899,13 +2899,13 @@ Checking test 050 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 110.810193 +The total amount of wall time = 108.657456 Test 050 fv3_gfs_v16_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_HAFS_v0_hwrf_thompson Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2970,13 +2970,13 @@ Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 167.893400 +The total amount of wall time = 162.191987 Test 051 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_esg_HAFS_v0_hwrf_thompson Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2991,13 +2991,13 @@ Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 307.733304 +The total amount of wall time = 300.207929 Test 052 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfsv16_ugwpv1 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfsv16_ugwpv1 Checking test 053 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3056,13 +3056,13 @@ Checking test 053 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 192.814996 +The total amount of wall time = 188.652234 Test 053 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfsv16_ugwpv1_warmstart Checking test 054 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3121,13 +3121,13 @@ Checking test 054 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 186.484792 +The total amount of wall time = 184.786226 Test 054 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_ras +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_ras Checking test 055 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3192,13 +3192,13 @@ Checking test 055 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 104.489992 +The total amount of wall time = 102.076759 Test 055 fv3_gfs_v16_ras PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_debug Checking test 056 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3263,13 +3263,13 @@ Checking test 056 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 272.206711 +The total amount of wall time = 244.896403 Test 056 fv3_gfs_v16_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_RRTMGP_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_RRTMGP_debug Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3334,13 +3334,13 @@ Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 376.426718 +The total amount of wall time = 375.412079 Test 057 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_regional_control_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_regional_control_debug Checking test 058 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3348,13 +3348,13 @@ Checking test 058 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 370.852344 +The total amount of wall time = 368.468122 Test 058 fv3_regional_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_control_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_control_debug Checking test 059 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3381,13 +3381,13 @@ Checking test 059 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 130.437058 +The total amount of wall time = 133.625467 Test 059 fv3_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_stretched_nest_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_stretched_nest_debug Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3404,13 +3404,13 @@ Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 434.995200 +The total amount of wall time = 439.041439 Test 060 fv3_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gsd_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gsd_debug Checking test 061 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3475,13 +3475,13 @@ Checking test 061 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 194.147838 +The total amount of wall time = 196.475141 Test 061 fv3_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_diag3d_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gsd_diag3d_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_diag3d_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gsd_diag3d_debug Checking test 062 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3546,13 +3546,13 @@ Checking test 062 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 223.159413 +The total amount of wall time = 225.132013 Test 062 fv3_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_thompson_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_thompson_debug Checking test 063 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3617,13 +3617,13 @@ Checking test 063 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 343.346196 +The total amount of wall time = 346.768232 Test 063 fv3_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_thompson_no_aero_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_thompson_no_aero_debug Checking test 064 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3688,13 +3688,13 @@ Checking test 064 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 327.347677 +The total amount of wall time = 330.095961 Test 064 fv3_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_rrfs_v1beta_debug Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3759,13 +3759,13 @@ Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 188.880084 +The total amount of wall time = 190.234283 Test 065 fv3_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_HAFS_v0_hwrf_thompson_debug Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3830,13 +3830,13 @@ Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 222.035068 +The total amount of wall time = 204.686160 Test 066 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3851,13 +3851,13 @@ Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 375.891594 +The total amount of wall time = 376.915968 Test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfsv16_ugwpv1_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfsv16_ugwpv1_debug Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3916,13 +3916,13 @@ Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 606.946748 +The total amount of wall time = 582.826192 Test 068 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/fv3_gfs_v16_ras_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_ras_debug Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3987,13 +3987,13 @@ Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 321.607104 +The total amount of wall time = 323.774877 Test 069 fv3_gfs_v16_ras_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_control +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_control Checking test 070 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4043,13 +4043,13 @@ Checking test 070 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 92.483043 +The total amount of wall time = 114.205687 Test 070 cpld_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_restart +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_restart Checking test 071 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4099,13 +4099,13 @@ Checking test 071 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 55.835531 +The total amount of wall time = 54.139105 Test 071 cpld_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_controlfrac +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_controlfrac Checking test 072 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4155,13 +4155,13 @@ Checking test 072 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 91.203316 +The total amount of wall time = 89.966378 Test 072 cpld_controlfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_restartfrac +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_restartfrac Checking test 073 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4211,13 +4211,13 @@ Checking test 073 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 72.176388 +The total amount of wall time = 78.382879 Test 073 cpld_restartfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_2threads +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_2threads Checking test 074 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4267,13 +4267,13 @@ Checking test 074 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 117.226717 +The total amount of wall time = 122.517730 Test 074 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_decomp +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_decomp Checking test 075 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4323,13 +4323,13 @@ Checking test 075 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 91.685194 +The total amount of wall time = 114.530504 Test 075 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_satmedmf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_satmedmf +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_satmedmf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_satmedmf Checking test 076 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4379,13 +4379,13 @@ Checking test 076 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 90.498945 +The total amount of wall time = 93.642421 Test 076 cpld_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_ca -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_ca +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_ca +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_ca Checking test 077 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4435,13 +4435,13 @@ Checking test 077 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 90.229342 +The total amount of wall time = 90.818564 Test 077 cpld_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_control_c192 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_control_c192 Checking test 078 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4491,13 +4491,13 @@ Checking test 078 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 415.383190 +The total amount of wall time = 407.059110 Test 078 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_restart_c192 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_restart_c192 Checking test 079 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4547,13 +4547,13 @@ Checking test 079 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 309.087020 +The total amount of wall time = 281.954710 Test 079 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_controlfrac_c192 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_controlfrac_c192 Checking test 080 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4603,13 +4603,13 @@ Checking test 080 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 409.531605 +The total amount of wall time = 407.666481 Test 080 cpld_controlfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_restartfrac_c192 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_restartfrac_c192 Checking test 081 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4659,13 +4659,13 @@ Checking test 081 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 307.610492 +The total amount of wall time = 307.316327 Test 081 cpld_restartfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_control_c384 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_control_c384 Checking test 082 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4718,13 +4718,13 @@ Checking test 082 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1554.615364 +The total amount of wall time = 1510.318864 Test 082 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_restart_c384 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_restart_c384 Checking test 083 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4777,13 +4777,13 @@ Checking test 083 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 818.148244 +The total amount of wall time = 788.320437 Test 083 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_controlfrac_c384 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_controlfrac_c384 Checking test 084 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4836,13 +4836,13 @@ Checking test 084 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1504.849592 +The total amount of wall time = 1497.501260 Test 084 cpld_controlfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_restartfrac_c384 +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_restartfrac_c384 Checking test 085 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4895,13 +4895,13 @@ Checking test 085 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 793.384140 +The total amount of wall time = 772.290993 Test 085 cpld_restartfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_bmark +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_bmark Checking test 086 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4954,13 +4954,13 @@ Checking test 086 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 889.762729 +The total amount of wall time = 892.101884 Test 086 cpld_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_restart_bmark +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_restart_bmark Checking test 087 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5013,13 +5013,13 @@ Checking test 087 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 456.630379 +The total amount of wall time = 470.357327 Test 087 cpld_restart_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_bmarkfrac +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_bmarkfrac Checking test 088 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5072,13 +5072,13 @@ Checking test 088 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 886.202474 +The total amount of wall time = 924.276636 Test 088 cpld_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_restart_bmarkfrac +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_restart_bmarkfrac Checking test 089 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5131,13 +5131,13 @@ Checking test 089 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 482.095775 +The total amount of wall time = 483.166530 Test 089 cpld_restart_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_debug +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_debug Checking test 090 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5187,13 +5187,13 @@ Checking test 090 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 290.301324 +The total amount of wall time = 262.437476 Test 090 cpld_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_debugfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/cpld_debugfrac +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_debugfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_debugfrac Checking test 091 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5243,73 +5243,73 @@ Checking test 091 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 261.943709 +The total amount of wall time = 261.006516 Test 091 cpld_debugfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/datm_control_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/datm_control_cfsr Checking test 092 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 -The total amount of wall time = 130.413112 +The total amount of wall time = 101.008295 Test 092 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/datm_restart_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/datm_restart_cfsr Checking test 093 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 -The total amount of wall time = 60.480500 +The total amount of wall time = 63.802586 Test 093 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/datm_control_gefs +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/datm_control_gefs Checking test 094 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 -The total amount of wall time = 100.549181 +The total amount of wall time = 94.030499 Test 094 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/datm_bulk_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/datm_bulk_cfsr Checking test 095 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 -The total amount of wall time = 97.753332 +The total amount of wall time = 94.173805 Test 095 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/datm_bulk_gefs +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/datm_bulk_gefs Checking test 096 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 -The total amount of wall time = 92.481118 +The total amount of wall time = 101.725058 Test 096 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/datm_mx025_gefs +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/datm_mx025_gefs Checking test 097 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5318,23 +5318,23 @@ Checking test 097 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 387.324489 +The total amount of wall time = 389.618886 Test 097 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_43219/datm_debug_cfsr +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 223.718116 +The total amount of wall time = 229.864301 Test 098 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 25 14:47:47 EDT 2021 -Elapsed time: 01h:29m:06s. Have a nice day! +Mon Mar 29 11:56:58 EDT 2021 +Elapsed time: 01h:23m:57s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 235fcdd476..fdc740158a 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,19 +1,19 @@ -Thu Mar 25 14:46:21 UTC 2021 +Mon Mar 29 17:47:13 UTC 2021 Start Regression test -Compile 001 elapsed time 203 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp -Compile 002 elapsed time 205 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP -Compile 003 elapsed time 228 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y -Compile 004 elapsed time 203 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 005 elapsed time 132 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 006 elapsed time 100 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y -Compile 007 elapsed time 230 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -Compile 008 elapsed time 102 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 009 elapsed time 231 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 010 elapsed time 213 seconds. APP=DATM_NEMS - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfdlmp +Compile 001 elapsed time 208 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp +Compile 002 elapsed time 222 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 003 elapsed time 236 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y +Compile 004 elapsed time 217 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 005 elapsed time 175 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 006 elapsed time 102 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y +Compile 007 elapsed time 234 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +Compile 008 elapsed time 101 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 009 elapsed time 237 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 010 elapsed time 218 seconds. APP=DATM_NEMS + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -58,85 +58,14 @@ Checking test 001 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 230.658929 + 0: The total amount of wall time = 238.391210 Test 001 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v15p2 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v15p2 -Checking test 002 fv3_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 ............SKIP for gnu compilers - 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 - - 0: The total amount of wall time = 633.270456 - -Test 002 fv3_gfs_v15p2 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16 -Checking test 003 fv3_gfs_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16 +Checking test 002 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -212,14 +141,14 @@ Checking test 003 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 653.003005 + 0: The total amount of wall time = 659.562337 -Test 003 fv3_gfs_v16 PASS +Test 002 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16_restart -Checking test 004 fv3_gfs_v16_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16_restart +Checking test 003 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -265,14 +194,14 @@ Checking test 004 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 337.439096 + 0: The total amount of wall time = 321.865237 -Test 004 fv3_gfs_v16_restart PASS +Test 003 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16_stochy -Checking test 005 fv3_gfs_v16_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16_stochy +Checking test 004 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -336,14 +265,14 @@ Checking test 005 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 352.897264 + 0: The total amount of wall time = 344.053904 -Test 005 fv3_gfs_v16_stochy PASS +Test 004 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16_flake -Checking test 006 fv3_gfs_v16_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16_flake +Checking test 005 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -407,14 +336,14 @@ Checking test 006 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 612.923154 + 0: The total amount of wall time = 608.175598 -Test 006 fv3_gfs_v16_flake PASS +Test 005 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v15p2_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v15p2_RRTMGP -Checking test 007 fv3_gfs_v15p2_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v15p2_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v15p2_RRTMGP +Checking test 006 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -478,14 +407,14 @@ Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 693.671152 + 0: The total amount of wall time = 683.823351 -Test 007 fv3_gfs_v15p2_RRTMGP PASS +Test 006 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16_RRTMGP -Checking test 008 fv3_gfs_v16_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16_RRTMGP +Checking test 007 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -549,14 +478,14 @@ Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 701.608400 + 0: The total amount of wall time = 675.731257 -Test 008 fv3_gfs_v16_RRTMGP PASS +Test 007 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gsd -Checking test 009 fv3_gsd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gsd +Checking test 008 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -644,14 +573,14 @@ Checking test 009 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 820.313640 + 0: The total amount of wall time = 847.152089 -Test 009 fv3_gsd PASS +Test 008 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_thompson -Checking test 010 fv3_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_thompson +Checking test 009 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -715,14 +644,14 @@ Checking test 010 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 397.498999 + 0: The total amount of wall time = 420.734241 -Test 010 fv3_thompson PASS +Test 009 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_thompson_no_aero -Checking test 011 fv3_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_thompson_no_aero +Checking test 010 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -786,14 +715,14 @@ Checking test 011 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 365.386068 + 0: The total amount of wall time = 427.473658 -Test 011 fv3_thompson_no_aero PASS +Test 010 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_rrfs_v1beta -Checking test 012 fv3_rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_rrfs_v1beta +Checking test 011 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -857,14 +786,14 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 421.769696 + 0: The total amount of wall time = 416.532544 -Test 012 fv3_rrfs_v1beta PASS +Test 011 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_HAFS_v0_hwrf_thompson -Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_HAFS_v0_hwrf_thompson +Checking test 012 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -928,14 +857,14 @@ Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 618.573402 + 0: The total amount of wall time = 596.629317 -Test 013 fv3_HAFS_v0_hwrf_thompson PASS +Test 012 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 013 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -949,14 +878,14 @@ Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 445.981440 + 0: The total amount of wall time = 451.092369 -Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 013 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfsv16_ugwpv1 -Checking test 015 fv3_gfsv16_ugwpv1 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfsv16_ugwpv1 +Checking test 014 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1014,14 +943,14 @@ Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 893.286609 + 0: The total amount of wall time = 943.322439 -Test 015 fv3_gfsv16_ugwpv1 PASS +Test 014 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfsv16_ugwpv1_warmstart -Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfsv16_ugwpv1_warmstart +Checking test 015 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1079,14 +1008,14 @@ Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 904.914218 + 0: The total amount of wall time = 934.786994 -Test 016 fv3_gfsv16_ugwpv1_warmstart PASS +Test 015 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16_ras -Checking test 017 fv3_gfs_v16_ras results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16_ras +Checking test 016 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1150,14 +1079,14 @@ Checking test 017 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 571.976108 + 0: The total amount of wall time = 573.139564 -Test 017 fv3_gfs_v16_ras PASS +Test 016 fv3_gfs_v16_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_control_debug -Checking test 018 fv3_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_control_debug +Checking test 017 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1183,28 +1112,28 @@ Checking test 018 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 87.764311 + 0: The total amount of wall time = 84.288993 -Test 018 fv3_control_debug PASS +Test 017 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_regional_control_debug -Checking test 019 fv3_regional_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_regional_control_debug +Checking test 018 fv3_regional_control_debug 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 - 0: The total amount of wall time = 165.637467 + 0: The total amount of wall time = 167.321856 -Test 019 fv3_regional_control_debug PASS +Test 018 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_rrfs_v1beta_debug -Checking test 020 fv3_rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_rrfs_v1beta_debug +Checking test 019 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1268,14 +1197,14 @@ Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 117.136661 + 0: The total amount of wall time = 119.019865 -Test 020 fv3_rrfs_v1beta_debug PASS +Test 019 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gsd_debug -Checking test 021 fv3_gsd_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gsd_debug +Checking test 020 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1339,14 +1268,14 @@ Checking test 021 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 123.939896 + 0: The total amount of wall time = 122.064325 -Test 021 fv3_gsd_debug PASS +Test 020 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_thompson_debug -Checking test 022 fv3_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_thompson_debug +Checking test 021 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1410,14 +1339,14 @@ Checking test 022 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.658729 + 0: The total amount of wall time = 198.924527 -Test 022 fv3_thompson_debug PASS +Test 021 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_thompson_no_aero_debug -Checking test 023 fv3_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_thompson_no_aero_debug +Checking test 022 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1481,14 +1410,14 @@ Checking test 023 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.644521 + 0: The total amount of wall time = 193.106200 -Test 023 fv3_thompson_no_aero_debug PASS +Test 022 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v15p2_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v15p2_debug -Checking test 024 fv3_gfs_v15p2_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v15p2_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v15p2_debug +Checking test 023 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1552,14 +1481,14 @@ Checking test 024 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.811160 + 0: The total amount of wall time = 293.304579 -Test 024 fv3_gfs_v15p2_debug PASS +Test 023 fv3_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16_debug -Checking test 025 fv3_gfs_v16_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16_debug +Checking test 024 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1623,14 +1552,14 @@ Checking test 025 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.549779 + 0: The total amount of wall time = 189.721810 -Test 025 fv3_gfs_v16_debug PASS +Test 024 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v15p2_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v15p2_RRTMGP_debug -Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v15p2_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v15p2_RRTMGP_debug +Checking test 025 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1694,14 +1623,14 @@ Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.451969 + 0: The total amount of wall time = 329.844807 -Test 026 fv3_gfs_v15p2_RRTMGP_debug PASS +Test 025 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16_RRTMGP_debug -Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16_RRTMGP_debug +Checking test 026 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1765,14 +1694,14 @@ Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 339.837849 + 0: The total amount of wall time = 347.765032 -Test 027 fv3_gfs_v16_RRTMGP_debug PASS +Test 026 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_multigases -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_multigases -Checking test 028 fv3_multigases results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_multigases +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_multigases +Checking test 027 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1842,14 +1771,14 @@ Checking test 028 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 444.581635 + 0: The total amount of wall time = 460.001314 -Test 028 fv3_multigases PASS +Test 027 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 028 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1913,14 +1842,14 @@ Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 134.692318 + 0: The total amount of wall time = 133.272881 -Test 029 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 028 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -1934,14 +1863,14 @@ Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 227.558155 + 0: The total amount of wall time = 224.288158 -Test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfsv16_ugwpv1_debug -Checking test 031 fv3_gfsv16_ugwpv1_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfsv16_ugwpv1_debug +Checking test 030 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1999,14 +1928,14 @@ Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 392.457886 + 0: The total amount of wall time = 393.227179 -Test 031 fv3_gfsv16_ugwpv1_debug PASS +Test 030 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/GNU/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_84193/fv3_gfs_v16_ras_debug -Checking test 032 fv3_gfs_v16_ras_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16_ras_debug +Checking test 031 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2070,11 +1999,11 @@ Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.014594 + 0: The total amount of wall time = 222.220782 -Test 032 fv3_gfs_v16_ras_debug PASS +Test 031 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 25 16:09:45 UTC 2021 -Elapsed time: 01h:23m:25s. Have a nice day! +Mon Mar 29 18:32:27 UTC 2021 +Elapsed time: 00h:45m:14s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index bf7e49be3f..2548b6ee03 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,29 +1,29 @@ -Thu Mar 25 01:01:28 UTC 2021 +Mon Mar 29 19:01:28 UTC 2021 Start Regression test -Compile 001 elapsed time 550 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 740 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -Compile 003 elapsed time 682 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 001 elapsed time 578 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 545 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 497 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y Compile 004 elapsed time 512 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 005 elapsed time 549 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 506 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y Compile 006 elapsed time 512 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 007 elapsed time 595 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 008 elapsed time 641 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 009 elapsed time 598 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP -Compile 010 elapsed time 553 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 011 elapsed time 503 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 012 elapsed time 547 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 013 elapsed time 186 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 014 elapsed time 176 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 015 elapsed time 159 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 016 elapsed time 563 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 554 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 018 elapsed time 165 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 019 elapsed time 386 seconds. APP=DATM_NEMS -Compile 020 elapsed time 145 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_control +Compile 007 elapsed time 558 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 605 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 009 elapsed time 521 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 532 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 530 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 567 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 164 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 182 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 015 elapsed time 163 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 016 elapsed time 577 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 567 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 251 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 019 elapsed time 375 seconds. APP=DATM_NEMS +Compile 020 elapsed time 148 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -88,13 +88,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 39.569798 + 0: The total amount of wall time = 39.502738 Test 001 fv3_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -159,13 +159,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 40.426292 + 0: The total amount of wall time = 40.941751 Test 002 fv3_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -230,13 +230,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 42.562755 + 0: The total amount of wall time = 41.394100 Test 003 fv3_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -283,13 +283,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 19.032269 + 0: The total amount of wall time = 19.012992 Test 004 fv3_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_read_inc -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_read_inc +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_read_inc +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -354,13 +354,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.475524 + 0: The total amount of wall time = 37.166048 Test 005 fv3_read_inc PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_wrtGauss_netcdf_esmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -405,13 +405,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 111.516344 + 0: The total amount of wall time = 110.680544 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_wrtGauss_netcdf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -456,13 +456,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 38.028970 + 0: The total amount of wall time = 37.214512 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -507,13 +507,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 46.749120 + 0: The total amount of wall time = 48.201982 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGlatlon_netcdf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_wrtGlatlon_netcdf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGlatlon_netcdf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -558,13 +558,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.857125 + 0: The total amount of wall time = 37.148333 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_wrtGauss_nemsio +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,13 +609,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.415520 + 0: The total amount of wall time = 36.126734 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_wrtGauss_nemsio_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -660,13 +660,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 95.970368 + 0: The total amount of wall time = 96.081839 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -731,13 +731,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 41.251163 + 0: The total amount of wall time = 40.523824 Test 012 fv3_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -802,13 +802,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 25.842749 + 0: The total amount of wall time = 26.183893 Test 013 fv3_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -873,13 +873,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.301023 + 0: The total amount of wall time = 43.530296 Test 014 fv3_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_iau -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_iau +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_iau +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,13 +944,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.185397 + 0: The total amount of wall time = 37.197626 Test 015 fv3_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lheatstrg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_lheatstrg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lheatstrg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -995,13 +995,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.589257 + 0: The total amount of wall time = 36.586691 Test 016 fv3_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfdlmprad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1047,13 +1047,13 @@ Checking test 017 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 647.808781 + 0: The total amount of wall time = 649.222346 Test 017 fv3_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfdlmprad_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1099,13 +1099,13 @@ Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 793.451093 + 0: The total amount of wall time = 792.480968 Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_wrtGauss_nemsio_c768 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio_c768 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_wrtGauss_nemsio_c768 Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1151,13 +1151,13 @@ Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 675.961489 + 0: The total amount of wall time = 675.360509 Test 019 fv3_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_multigases_repro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_multigases_repro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_multigases_repro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_multigases_repro Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1228,13 +1228,13 @@ Checking test 020 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 94.189609 + 0: The total amount of wall time = 94.548039 Test 020 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_32bit -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_control_32bit +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_32bit +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_control_32bit Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1299,13 +1299,13 @@ Checking test 021 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 35.972635 + 0: The total amount of wall time = 36.019913 Test 021 fv3_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_stretched +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_stretched Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1358,13 +1358,13 @@ Checking test 022 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 220.622366 + 0: The total amount of wall time = 220.254119 Test 022 fv3_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_stretched_nest +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_stretched_nest Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1428,13 +1428,13 @@ Checking test 023 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK - 0: The total amount of wall time = 239.068823 + 0: The total amount of wall time = 250.277109 Test 023 fv3_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_regional_control Checking test 024 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1442,25 +1442,25 @@ Checking test 024 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 548.785021 + 0: The total amount of wall time = 548.483590 Test 024 fv3_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_regional_restart Checking test 025 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 305.519454 + 0: The total amount of wall time = 300.250071 Test 025 fv3_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_regional_quilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_regional_quilt Checking test 026 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1471,13 +1471,13 @@ Checking test 026 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 575.474818 + 0: The total amount of wall time = 573.181226 Test 026 fv3_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_regional_quilt_hafs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_hafs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_regional_quilt_hafs Checking test 027 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1486,13 +1486,13 @@ Checking test 027 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 578.036367 + 0: The total amount of wall time = 572.802686 Test 027 fv3_regional_quilt_hafs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_regional_quilt_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_regional_quilt_netcdf_parallel Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1500,13 +1500,13 @@ Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 579.863110 + 0: The total amount of wall time = 578.272554 Test 028 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfdlmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfdlmp Checking test 029 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1551,13 +1551,13 @@ Checking test 029 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 41.832184 + 0: The total amount of wall time = 42.371725 Test 029 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_gwd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfdlmprad_gwd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_gwd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfdlmprad_gwd Checking test 030 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1602,13 +1602,13 @@ Checking test 030 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.316280 + 0: The total amount of wall time = 43.024547 Test 030 fv3_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_noahmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfdlmprad_noahmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_noahmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfdlmprad_noahmp Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1653,13 +1653,13 @@ Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.661135 + 0: The total amount of wall time = 42.964177 Test 031 fv3_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_csawmg Checking test 032 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1704,13 +1704,13 @@ Checking test 032 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 106.824820 + 0: The total amount of wall time = 105.602419 Test 032 fv3_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_satmedmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_satmedmf Checking test 033 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1755,13 @@ Checking test 033 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.158954 + 0: The total amount of wall time = 45.880495 Test 033 fv3_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmfq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_satmedmfq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmfq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_satmedmfq Checking test 034 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1806,13 +1806,13 @@ Checking test 034 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.200156 + 0: The total amount of wall time = 45.539416 Test 034 fv3_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp_32bit -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfdlmp_32bit +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp_32bit +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfdlmp_32bit Checking test 035 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1857,13 +1857,13 @@ Checking test 035 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 36.574544 + 0: The total amount of wall time = 36.922173 Test 035 fv3_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_32bit_post -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfdlmprad_32bit_post +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_32bit_post +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfdlmprad_32bit_post Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1912,13 +1912,13 @@ Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 74.311706 + 0: The total amount of wall time = 73.744057 Test 036 fv3_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_cpt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_cpt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_cpt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_cpt Checking test 037 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1969,13 +1969,13 @@ Checking test 037 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 252.620553 + 0: The total amount of wall time = 255.985332 Test 037 fv3_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gsd Checking test 038 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2064,13 +2064,13 @@ Checking test 038 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.895898 + 0: The total amount of wall time = 177.425888 Test 038 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rap -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_rap +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rap +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_rap Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2135,13 +2135,13 @@ Checking test 039 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 86.830353 + 0: The total amount of wall time = 87.724789 Test 039 fv3_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_hrrr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_hrrr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_hrrr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_hrrr Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,13 +2206,13 @@ Checking test 040 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.290772 + 0: The total amount of wall time = 96.011786 Test 040 fv3_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_thompson Checking test 041 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2277,13 +2277,13 @@ Checking test 041 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 83.959327 + 0: The total amount of wall time = 84.198601 Test 041 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_thompson_no_aero Checking test 042 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2348,13 +2348,13 @@ Checking test 042 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 79.002212 + 0: The total amount of wall time = 79.765371 Test 042 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_rrfs_v1beta Checking test 043 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2419,85 +2419,14 @@ Checking test 043 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 97.439888 + 0: The total amount of wall time = 98.318190 Test 043 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v15p2 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v15p2 -Checking test 044 fv3_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 - - 0: The total amount of wall time = 95.711429 - -Test 044 fv3_gfs_v15p2 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16 -Checking test 045 fv3_gfs_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16 +Checking test 044 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2573,14 +2502,14 @@ Checking test 045 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 134.215278 + 0: The total amount of wall time = 132.007172 -Test 045 fv3_gfs_v16 PASS +Test 044 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_restart -Checking test 046 fv3_gfs_v16_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_restart +Checking test 045 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2626,14 +2555,14 @@ Checking test 046 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 83.478988 + 0: The total amount of wall time = 74.392731 -Test 046 fv3_gfs_v16_restart PASS +Test 045 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_stochy -Checking test 047 fv3_gfs_v16_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_stochy +Checking test 046 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2697,85 +2626,14 @@ Checking test 047 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 47.497561 - -Test 047 fv3_gfs_v16_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v15p2_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v15p2_RRTMGP -Checking test 048 fv3_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 - - 0: The total amount of wall time = 160.979640 + 0: The total amount of wall time = 47.181145 -Test 048 fv3_gfs_v15p2_RRTMGP PASS +Test 046 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_RRTMGP -Checking test 049 fv3_gfs_v16_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_RRTMGP +Checking test 047 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2839,14 +2697,14 @@ Checking test 049 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 162.680201 + 0: The total amount of wall time = 159.730628 -Test 049 fv3_gfs_v16_RRTMGP PASS +Test 047 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_RRTMGP_c192L127 -Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_RRTMGP_c192L127 +Checking test 048 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2904,14 +2762,14 @@ Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 622.127195 + 0: The total amount of wall time = 627.543946 -Test 050 fv3_gfs_v16_RRTMGP_c192L127 PASS +Test 048 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_RRTMGP_2thrd -Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_RRTMGP_2thrd +Checking test 049 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2975,14 +2833,14 @@ Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 172.184935 + 0: The total amount of wall time = 172.306106 -Test 051 fv3_gfs_v16_RRTMGP_2thrd PASS +Test 049 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfsv16_csawmg -Checking test 052 fv3_gfsv16_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfsv16_csawmg +Checking test 050 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3026,14 +2884,14 @@ Checking test 052 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 113.951885 + 0: The total amount of wall time = 112.779318 -Test 052 fv3_gfsv16_csawmg PASS +Test 050 fv3_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfsv16_csawmgt -Checking test 053 fv3_gfsv16_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfsv16_csawmgt +Checking test 051 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3077,14 +2935,14 @@ Checking test 053 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 112.191887 + 0: The total amount of wall time = 113.313509 -Test 053 fv3_gfsv16_csawmgt PASS +Test 051 fv3_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gocart_clm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gocart_clm -Checking test 054 fv3_gocart_clm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gocart_clm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gocart_clm +Checking test 052 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3128,14 +2986,14 @@ Checking test 054 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 47.853881 + 0: The total amount of wall time = 47.528540 -Test 054 fv3_gocart_clm PASS +Test 052 fv3_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_flake -Checking test 055 fv3_gfs_v16_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_flake +Checking test 053 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3199,14 +3057,14 @@ Checking test 055 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 97.570599 + 0: The total amount of wall time = 97.732864 -Test 055 fv3_gfs_v16_flake PASS +Test 053 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_HAFS_v0_hwrf_thompson -Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_HAFS_v0_hwrf_thompson +Checking test 054 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3270,14 +3128,14 @@ Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 142.560489 + 0: The total amount of wall time = 142.246580 -Test 056 fv3_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 055 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -3291,14 +3149,14 @@ Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 279.068181 + 0: The total amount of wall time = 283.155110 -Test 057 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 055 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfsv16_ugwpv1 -Checking test 058 fv3_gfsv16_ugwpv1 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfsv16_ugwpv1 +Checking test 056 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3356,14 +3214,14 @@ Checking test 058 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 165.213611 + 0: The total amount of wall time = 163.614073 -Test 058 fv3_gfsv16_ugwpv1 PASS +Test 056 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfsv16_ugwpv1_warmstart -Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfsv16_ugwpv1_warmstart +Checking test 057 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3421,14 +3279,14 @@ Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 165.506709 + 0: The total amount of wall time = 163.883512 -Test 059 fv3_gfsv16_ugwpv1_warmstart PASS +Test 057 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_ras -Checking test 060 fv3_gfs_v16_ras results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_ras +Checking test 058 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3492,156 +3350,14 @@ Checking test 060 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 88.980063 - -Test 060 fv3_gfs_v16_ras PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v15p2_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v15p2_debug -Checking test 061 fv3_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 - - 0: The total amount of wall time = 225.099175 - -Test 061 fv3_gfs_v15p2_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_debug -Checking test 062 fv3_gfs_v16_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 - - 0: The total amount of wall time = 243.367325 + 0: The total amount of wall time = 90.363068 -Test 062 fv3_gfs_v16_debug PASS +Test 058 fv3_gfs_v16_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v15p2_RRTMGP_debug -Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_debug +Checking test 059 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3705,14 +3421,14 @@ Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.198668 + 0: The total amount of wall time = 235.788839 -Test 063 fv3_gfs_v15p2_RRTMGP_debug PASS +Test 059 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_RRTMGP_debug -Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_RRTMGP_debug +Checking test 060 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3776,28 +3492,28 @@ Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.231119 + 0: The total amount of wall time = 353.876510 -Test 064 fv3_gfs_v16_RRTMGP_debug PASS +Test 060 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_regional_control_debug -Checking test 065 fv3_regional_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_regional_control_debug +Checking test 061 fv3_regional_control_debug 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 - 0: The total amount of wall time = 335.875164 + 0: The total amount of wall time = 364.613637 -Test 065 fv3_regional_control_debug PASS +Test 061 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_control_debug -Checking test 066 fv3_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_control_debug +Checking test 062 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3823,14 +3539,14 @@ Checking test 066 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 134.742829 + 0: The total amount of wall time = 132.373494 -Test 066 fv3_control_debug PASS +Test 062 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_stretched_nest_debug -Checking test 067 fv3_stretched_nest_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_stretched_nest_debug +Checking test 063 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3846,14 +3562,14 @@ Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 353.085271 + 0: The total amount of wall time = 354.118619 -Test 067 fv3_stretched_nest_debug PASS +Test 063 fv3_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gsd_debug -Checking test 068 fv3_gsd_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gsd_debug +Checking test 064 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3917,14 +3633,14 @@ Checking test 068 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.591354 + 0: The total amount of wall time = 196.418405 -Test 068 fv3_gsd_debug PASS +Test 064 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_diag3d_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gsd_diag3d_debug -Checking test 069 fv3_gsd_diag3d_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_diag3d_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gsd_diag3d_debug +Checking test 065 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3988,14 +3704,14 @@ Checking test 069 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 256.340673 + 0: The total amount of wall time = 254.656930 -Test 069 fv3_gsd_diag3d_debug PASS +Test 065 fv3_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_thompson_debug -Checking test 070 fv3_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_thompson_debug +Checking test 066 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4059,14 +3775,14 @@ Checking test 070 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 328.618804 + 0: The total amount of wall time = 333.030084 -Test 070 fv3_thompson_debug PASS +Test 066 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_thompson_no_aero_debug -Checking test 071 fv3_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_thompson_no_aero_debug +Checking test 067 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4130,14 +3846,14 @@ Checking test 071 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 312.673129 + 0: The total amount of wall time = 323.644780 -Test 071 fv3_thompson_no_aero_debug PASS +Test 067 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_rrfs_v1beta_debug -Checking test 072 fv3_rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_rrfs_v1beta_debug +Checking test 068 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4201,14 +3917,14 @@ Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.752292 + 0: The total amount of wall time = 195.218521 -Test 072 fv3_rrfs_v1beta_debug PASS +Test 068 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 069 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4272,14 +3988,14 @@ Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 200.938783 + 0: The total amount of wall time = 199.924520 -Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 069 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 070 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -4293,14 +4009,14 @@ Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 378.186319 + 0: The total amount of wall time = 384.851685 -Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 070 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfsv16_ugwpv1_debug -Checking test 075 fv3_gfsv16_ugwpv1_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfsv16_ugwpv1_debug +Checking test 071 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -4358,14 +4074,14 @@ Checking test 075 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 544.867505 + 0: The total amount of wall time = 558.135843 -Test 075 fv3_gfsv16_ugwpv1_debug PASS +Test 071 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/fv3_gfs_v16_ras_debug -Checking test 076 fv3_gfs_v16_ras_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_ras_debug +Checking test 072 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4429,14 +4145,14 @@ Checking test 076 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 315.751593 + 0: The total amount of wall time = 311.755579 -Test 076 fv3_gfs_v16_ras_debug PASS +Test 072 fv3_gfs_v16_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_control -Checking test 077 cpld_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_control +Checking test 073 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4485,14 +4201,14 @@ Checking test 077 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 90.044466 + 0: The total amount of wall time = 91.401249 -Test 077 cpld_control PASS +Test 073 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restart -Checking test 078 cpld_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restart +Checking test 074 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4541,14 +4257,14 @@ Checking test 078 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 55.576142 + 0: The total amount of wall time = 73.701381 -Test 078 cpld_restart PASS +Test 074 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_controlfrac -Checking test 079 cpld_controlfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_controlfrac +Checking test 075 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4597,14 +4313,14 @@ Checking test 079 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 90.628179 + 0: The total amount of wall time = 89.672757 -Test 079 cpld_controlfrac PASS +Test 075 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restartfrac -Checking test 080 cpld_restartfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restartfrac +Checking test 076 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4653,14 +4369,14 @@ Checking test 080 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 55.570850 + 0: The total amount of wall time = 76.850198 -Test 080 cpld_restartfrac PASS +Test 076 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_2threads -Checking test 081 cpld_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_2threads +Checking test 077 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4709,14 +4425,14 @@ Checking test 081 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 109.929377 + 0: The total amount of wall time = 108.169140 -Test 081 cpld_2threads PASS +Test 077 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_decomp -Checking test 082 cpld_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_decomp +Checking test 078 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4765,14 +4481,14 @@ Checking test 082 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 88.407913 + 0: The total amount of wall time = 88.285629 -Test 082 cpld_decomp PASS +Test 078 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_satmedmf -Checking test 083 cpld_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_satmedmf +Checking test 079 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4821,14 +4537,14 @@ Checking test 083 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 87.955582 + 0: The total amount of wall time = 88.688205 -Test 083 cpld_satmedmf PASS +Test 079 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_ca -Checking test 084 cpld_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_ca +Checking test 080 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4877,14 +4593,14 @@ Checking test 084 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 89.353323 + 0: The total amount of wall time = 89.432521 -Test 084 cpld_ca PASS +Test 080 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_control_c192 -Checking test 085 cpld_control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_control_c192 +Checking test 081 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4933,14 +4649,14 @@ Checking test 085 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 377.968528 + 0: The total amount of wall time = 383.128731 -Test 085 cpld_control_c192 PASS +Test 081 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restart_c192 -Checking test 086 cpld_restart_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restart_c192 +Checking test 082 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4989,14 +4705,14 @@ Checking test 086 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 265.944466 + 0: The total amount of wall time = 310.784527 -Test 086 cpld_restart_c192 PASS +Test 082 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_controlfrac_c192 -Checking test 087 cpld_controlfrac_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_controlfrac_c192 +Checking test 083 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -5045,14 +4761,14 @@ Checking test 087 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 384.196523 + 0: The total amount of wall time = 398.900268 -Test 087 cpld_controlfrac_c192 PASS +Test 083 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restartfrac_c192 -Checking test 088 cpld_restartfrac_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restartfrac_c192 +Checking test 084 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -5101,14 +4817,14 @@ Checking test 088 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 261.089301 + 0: The total amount of wall time = 335.265909 -Test 088 cpld_restartfrac_c192 PASS +Test 084 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_control_c384 -Checking test 089 cpld_control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_control_c384 +Checking test 085 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5160,14 +4876,14 @@ Checking test 089 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1345.438543 + 0: The total amount of wall time = 1379.775383 -Test 089 cpld_control_c384 PASS +Test 085 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restart_c384 -Checking test 090 cpld_restart_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restart_c384 +Checking test 086 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5219,14 +4935,14 @@ Checking test 090 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 704.114745 + 0: The total amount of wall time = 706.017639 -Test 090 cpld_restart_c384 PASS +Test 086 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_controlfrac_c384 -Checking test 091 cpld_controlfrac_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_controlfrac_c384 +Checking test 087 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5278,14 +4994,14 @@ Checking test 091 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1320.483850 + 0: The total amount of wall time = 1373.430151 -Test 091 cpld_controlfrac_c384 PASS +Test 087 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restartfrac_c384 -Checking test 092 cpld_restartfrac_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restartfrac_c384 +Checking test 088 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5337,14 +5053,14 @@ Checking test 092 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 683.056444 + 0: The total amount of wall time = 692.619021 -Test 092 cpld_restartfrac_c384 PASS +Test 088 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_bmark -Checking test 093 cpld_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_bmark +Checking test 089 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5396,14 +5112,14 @@ Checking test 093 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 817.576210 + 0: The total amount of wall time = 966.858821 -Test 093 cpld_bmark PASS +Test 089 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restart_bmark -Checking test 094 cpld_restart_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restart_bmark +Checking test 090 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5455,14 +5171,14 @@ Checking test 094 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 437.353297 + 0: The total amount of wall time = 476.569853 -Test 094 cpld_restart_bmark PASS +Test 090 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_bmarkfrac -Checking test 095 cpld_bmarkfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_bmarkfrac +Checking test 091 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5514,14 +5230,14 @@ Checking test 095 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 812.952543 + 0: The total amount of wall time = 951.635403 -Test 095 cpld_bmarkfrac PASS +Test 091 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restart_bmarkfrac -Checking test 096 cpld_restart_bmarkfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restart_bmarkfrac +Checking test 092 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5573,14 +5289,14 @@ Checking test 096 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 441.442526 + 0: The total amount of wall time = 448.931698 -Test 096 cpld_restart_bmarkfrac PASS +Test 092 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_bmarkfrac_v16 -Checking test 097 cpld_bmarkfrac_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_bmarkfrac_v16 +Checking test 093 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5632,14 +5348,14 @@ Checking test 097 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 1305.496119 + 0: The total amount of wall time = 1451.653182 -Test 097 cpld_bmarkfrac_v16 PASS +Test 093 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_restart_bmarkfrac_v16 -Checking test 098 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restart_bmarkfrac_v16 +Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5691,14 +5407,14 @@ Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 703.748712 + 0: The total amount of wall time = 745.140660 -Test 098 cpld_restart_bmarkfrac_v16 PASS +Test 094 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_bmark_wave -Checking test 099 cpld_bmark_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_bmark_wave +Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5753,14 +5469,14 @@ Checking test 099 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1368.686466 + 0: The total amount of wall time = 1471.516466 -Test 099 cpld_bmark_wave PASS +Test 095 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_bmarkfrac_wave -Checking test 100 cpld_bmarkfrac_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_bmarkfrac_wave +Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5815,14 +5531,14 @@ Checking test 100 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1371.999124 + 0: The total amount of wall time = 1410.893830 -Test 100 cpld_bmarkfrac_wave PASS +Test 096 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_bmarkfrac_wave_v16 -Checking test 101 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_bmarkfrac_wave_v16 +Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5876,14 +5592,14 @@ Checking test 101 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 892.368621 + 0: The total amount of wall time = 981.965181 -Test 101 cpld_bmarkfrac_wave_v16 PASS +Test 097 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_control_wave -Checking test 102 cpld_control_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_control_wave +Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5935,14 +5651,14 @@ Checking test 102 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 782.683284 + 0: The total amount of wall time = 782.480483 -Test 102 cpld_control_wave PASS +Test 098 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_debug -Checking test 103 cpld_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_debug +Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5991,14 +5707,14 @@ Checking test 103 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 288.011087 + 0: The total amount of wall time = 285.968834 -Test 103 cpld_debug PASS +Test 099 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_debugfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/cpld_debugfrac -Checking test 104 cpld_debugfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_debugfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_debugfrac +Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -6047,74 +5763,74 @@ Checking test 104 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 286.355890 + 0: The total amount of wall time = 281.907192 -Test 104 cpld_debugfrac PASS +Test 100 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/datm_control_cfsr -Checking test 105 datm_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/datm_control_cfsr +Checking test 101 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 - 0: The total amount of wall time = 95.917587 + 0: The total amount of wall time = 109.124113 -Test 105 datm_control_cfsr PASS +Test 101 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/datm_restart_cfsr -Checking test 106 datm_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/datm_restart_cfsr +Checking test 102 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 - 0: The total amount of wall time = 63.974885 + 0: The total amount of wall time = 70.473419 -Test 106 datm_restart_cfsr PASS +Test 102 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/datm_control_gefs -Checking test 107 datm_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/datm_control_gefs +Checking test 103 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 - 0: The total amount of wall time = 88.939427 + 0: The total amount of wall time = 117.213880 -Test 107 datm_control_gefs PASS +Test 103 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/datm_bulk_cfsr -Checking test 108 datm_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/datm_bulk_cfsr +Checking test 104 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 - 0: The total amount of wall time = 92.475060 + 0: The total amount of wall time = 100.660392 -Test 108 datm_bulk_cfsr PASS +Test 104 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/datm_bulk_gefs -Checking test 109 datm_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/datm_bulk_gefs +Checking test 105 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 - 0: The total amount of wall time = 89.705565 + 0: The total amount of wall time = 112.176728 -Test 109 datm_bulk_gefs PASS +Test 105 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/datm_mx025_cfsr -Checking test 110 datm_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/datm_mx025_cfsr +Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -6122,14 +5838,14 @@ Checking test 110 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 355.804060 + 0: The total amount of wall time = 391.508210 -Test 110 datm_mx025_cfsr PASS +Test 106 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/datm_mx025_gefs -Checking test 111 datm_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/datm_mx025_gefs +Checking test 107 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -6137,23 +5853,23 @@ Checking test 111 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 351.373008 + 0: The total amount of wall time = 378.596251 -Test 111 datm_mx025_gefs PASS +Test 107 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_251083/datm_debug_cfsr -Checking test 112 datm_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/datm_debug_cfsr +Checking test 108 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 - 0: The total amount of wall time = 269.926969 + 0: The total amount of wall time = 277.911046 -Test 112 datm_debug_cfsr PASS +Test 108 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 25 03:18:33 UTC 2021 -Elapsed time: 02h:17m:06s. Have a nice day! +Mon Mar 29 23:59:58 UTC 2021 +Elapsed time: 04h:58m:31s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 86632b702f..e4bd81f4bf 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,23 +1,23 @@ -Thu Mar 25 20:16:17 GMT 2021 +Mon Mar 29 16:01:40 GMT 2021 Start Regression test -Compile 001 elapsed time 2097 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 1148 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 2038 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 2043 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 2087 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 2275 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 2498 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 008 elapsed time 2093 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 2166 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 2956 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 2982 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 212 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 347 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 014 elapsed time 214 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_control +Compile 001 elapsed time 2134 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 1169 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 2119 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 2118 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 2128 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 3160 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 2984 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 008 elapsed time 2631 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 4494 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 2185 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 2484 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 233 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 341 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 014 elapsed time 253 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -82,13 +82,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.249616 +The total amount of wall time = 61.765787 Test 001 fv3_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_2threads +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_2threads Checking test 002 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -153,13 +153,13 @@ Checking test 002 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 289.169843 +The total amount of wall time = 293.781214 Test 002 fv3_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_restart +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_restart Checking test 003 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -206,13 +206,13 @@ Checking test 003 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 27.623003 +The total amount of wall time = 27.696583 Test 003 fv3_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_read_inc -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_read_inc +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_read_inc +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_read_inc Checking test 004 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -277,13 +277,13 @@ Checking test 004 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.207164 +The total amount of wall time = 52.431870 Test 004 fv3_read_inc PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_wrtGauss_netcdf_esmf +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_wrtGauss_netcdf_esmf Checking test 005 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -328,13 +328,13 @@ Checking test 005 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 162.234299 +The total amount of wall time = 152.967503 Test 005 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_wrtGauss_netcdf +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_wrtGauss_netcdf Checking test 006 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -379,13 +379,13 @@ Checking test 006 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.845349 +The total amount of wall time = 52.965099 Test 006 fv3_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_wrtGauss_netcdf_parallel +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_wrtGauss_netcdf_parallel Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -394,7 +394,7 @@ Checking test 007 fv3_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 RESTART/coupler.res .........OK @@ -430,13 +430,13 @@ Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 68.613624 +The total amount of wall time = 66.246037 Test 007 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_wrtGlatlon_netcdf +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGlatlon_netcdf +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_wrtGlatlon_netcdf Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -481,13 +481,13 @@ Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.633247 +The total amount of wall time = 52.721692 Test 008 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_wrtGauss_nemsio +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_wrtGauss_nemsio Checking test 009 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -532,13 +532,13 @@ Checking test 009 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.319853 +The total amount of wall time = 52.420355 Test 009 fv3_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_wrtGauss_nemsio_c192 +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_wrtGauss_nemsio_c192 Checking test 010 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,13 +583,13 @@ Checking test 010 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 140.386793 +The total amount of wall time = 140.245744 Test 010 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stochy -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_stochy +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stochy +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_stochy Checking test 011 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -654,13 +654,13 @@ Checking test 011 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.752844 +The total amount of wall time = 58.375677 Test 011 fv3_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_ca -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_ca +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_ca +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_ca Checking test 012 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -725,13 +725,13 @@ Checking test 012 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 43.563227 +The total amount of wall time = 42.418039 Test 012 fv3_ca PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lndp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_lndp +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lndp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_lndp Checking test 013 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -796,13 +796,13 @@ Checking test 013 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 67.670359 +The total amount of wall time = 65.668700 Test 013 fv3_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_iau -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_iau +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_iau +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_iau Checking test 014 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -867,13 +867,13 @@ Checking test 014 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.502947 +The total amount of wall time = 51.855580 Test 014 fv3_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lheatstrg -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_lheatstrg +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lheatstrg +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_lheatstrg Checking test 015 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -918,13 +918,13 @@ Checking test 015 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.330329 +The total amount of wall time = 52.011415 Test 015 fv3_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_multigases_repro -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_multigases_repro +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_multigases_repro +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_multigases_repro Checking test 016 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -995,13 +995,13 @@ Checking test 016 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 129.593993 +The total amount of wall time = 128.516541 Test 016 fv3_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_32bit -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_control_32bit +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_32bit +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_control_32bit Checking test 017 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1066,13 +1066,13 @@ Checking test 017 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.310821 +The total amount of wall time = 53.803674 Test 017 fv3_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_stretched +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_stretched Checking test 018 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1125,13 +1125,13 @@ Checking test 018 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 395.357411 +The total amount of wall time = 390.302718 Test 018 fv3_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_stretched_nest +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_stretched_nest Checking test 019 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1195,13 +1195,13 @@ Checking test 019 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 421.960868 +The total amount of wall time = 421.125142 Test 019 fv3_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_regional_control +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_regional_control Checking test 020 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,25 +1209,25 @@ Checking test 020 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 864.416783 +The total amount of wall time = 854.993221 Test 020 fv3_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_restart -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_regional_restart +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_restart +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_regional_restart Checking test 021 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 483.232496 +The total amount of wall time = 481.914136 Test 021 fv3_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_regional_quilt +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_regional_quilt Checking test 022 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1238,13 +1238,13 @@ Checking test 022 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 854.145853 +The total amount of wall time = 845.207670 Test 022 fv3_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_hafs -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_regional_quilt_hafs +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_hafs +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_regional_quilt_hafs Checking test 023 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1253,13 +1253,13 @@ Checking test 023 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 849.644219 +The total amount of wall time = 841.040744 Test 023 fv3_regional_quilt_hafs PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_regional_quilt_netcdf_parallel +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_regional_quilt_netcdf_parallel Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1267,13 +1267,13 @@ Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 853.828607 +The total amount of wall time = 850.373785 Test 024 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfdlmp +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfdlmp Checking test 025 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1318,13 +1318,13 @@ Checking test 025 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 66.955817 +The total amount of wall time = 60.852789 Test 025 fv3_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_gwd -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfdlmprad_gwd +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_gwd +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfdlmprad_gwd Checking test 026 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1369,13 +1369,13 @@ Checking test 026 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.138613 +The total amount of wall time = 61.184281 Test 026 fv3_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_noahmp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfdlmprad_noahmp +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_noahmp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfdlmprad_noahmp Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1420,13 +1420,13 @@ Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 62.988935 +The total amount of wall time = 60.943806 Test 027 fv3_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_csawmg -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_csawmg +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_csawmg +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_csawmg Checking test 028 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1471,13 +1471,13 @@ Checking test 028 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 150.833492 +The total amount of wall time = 149.458124 Test 028 fv3_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmf -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_satmedmf +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmf +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_satmedmf Checking test 029 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1522,13 +1522,13 @@ Checking test 029 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 66.742157 +The total amount of wall time = 64.507100 Test 029 fv3_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmfq -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_satmedmfq +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmfq +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_satmedmfq Checking test 030 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1573,13 +1573,13 @@ Checking test 030 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 66.012765 +The total amount of wall time = 65.225836 Test 030 fv3_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp_32bit -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfdlmp_32bit +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp_32bit +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfdlmp_32bit Checking test 031 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1624,13 +1624,13 @@ Checking test 031 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.022141 +The total amount of wall time = 52.565119 Test 031 fv3_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfdlmprad_32bit_post +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_32bit_post +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfdlmprad_32bit_post Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1679,13 +1679,13 @@ Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 96.557091 +The total amount of wall time = 95.846238 Test 032 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_cpt -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_cpt +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_cpt +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_cpt Checking test 033 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1736,13 @@ Checking test 033 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 348.758388 +The total amount of wall time = 354.788697 Test 033 fv3_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gsd +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gsd Checking test 034 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1831,13 +1831,13 @@ Checking test 034 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 242.906566 +The total amount of wall time = 242.577741 Test 034 fv3_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_thompson +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_thompson Checking test 035 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1902,13 +1902,13 @@ Checking test 035 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 113.309544 +The total amount of wall time = 115.479202 Test 035 fv3_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_thompson_no_aero +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_thompson_no_aero Checking test 036 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1973,13 +1973,13 @@ Checking test 036 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 110.747057 +The total amount of wall time = 110.276951 Test 036 fv3_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16 +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16 Checking test 037 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2056,13 +2056,13 @@ Checking test 037 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 178.889485 +The total amount of wall time = 178.745946 Test 037 fv3_gfs_v16 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_restart +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_restart Checking test 038 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2109,13 +2109,13 @@ Checking test 038 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 106.498490 +The total amount of wall time = 103.833325 Test 038 fv3_gfs_v16_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_stochy -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_stochy +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_stochy +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_stochy Checking test 039 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2180,13 +2180,13 @@ Checking test 039 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 65.638747 +The total amount of wall time = 65.753788 Test 039 fv3_gfs_v16_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_RRTMGP +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_RRTMGP Checking test 040 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2251,13 +2251,13 @@ Checking test 040 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 191.102316 +The total amount of wall time = 194.354611 Test 040 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_RRTMGP_c192L127 Checking test 041 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2316,13 +2316,13 @@ Checking test 041 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 804.104664 +The total amount of wall time = 802.636130 Test 041 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_RRTMGP_2thrd Checking test 042 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2387,13 +2387,13 @@ Checking test 042 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 794.648192 +The total amount of wall time = 813.035956 Test 042 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_csawmg -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfsv16_csawmg +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_csawmg +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfsv16_csawmg Checking test 043 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2438,13 +2438,13 @@ Checking test 043 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 160.717013 +The total amount of wall time = 159.557447 Test 043 fv3_gfsv16_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfsv16_csawmgt +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfsv16_csawmgt Checking test 044 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2489,13 +2489,13 @@ Checking test 044 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 159.791211 +The total amount of wall time = 157.040652 Test 044 fv3_gfsv16_csawmgt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gocart_clm -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gocart_clm +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gocart_clm +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gocart_clm Checking test 045 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2540,13 +2540,13 @@ Checking test 045 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 66.817716 +The total amount of wall time = 66.794504 Test 045 fv3_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_flake -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_flake +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_flake +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_flake Checking test 046 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2611,13 +2611,13 @@ Checking test 046 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 124.241285 +The total amount of wall time = 124.273765 Test 046 fv3_gfs_v16_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_HAFS_v0_hwrf_thompson Checking test 047 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2682,13 +2682,13 @@ Checking test 047 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 192.679150 +The total amount of wall time = 192.121477 Test 047 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_esg_HAFS_v0_hwrf_thompson Checking test 048 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2703,13 +2703,13 @@ Checking test 048 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 356.880059 +The total amount of wall time = 358.482263 Test 048 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfsv16_ugwpv1 +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfsv16_ugwpv1 Checking test 049 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2768,13 +2768,13 @@ Checking test 049 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 231.496224 +The total amount of wall time = 231.185334 Test 049 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfsv16_ugwpv1_warmstart Checking test 050 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2833,13 +2833,13 @@ Checking test 050 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 229.632922 +The total amount of wall time = 231.057494 Test 050 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_ras +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_ras Checking test 051 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2904,13 +2904,13 @@ Checking test 051 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 123.431468 +The total amount of wall time = 124.507553 Test 051 fv3_gfs_v16_ras PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_debug +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_debug Checking test 052 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2975,13 +2975,13 @@ Checking test 052 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 297.041731 +The total amount of wall time = 296.313830 Test 052 fv3_gfs_v16_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_RRTMGP_debug +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_RRTMGP_debug Checking test 053 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3046,13 +3046,13 @@ Checking test 053 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 451.905702 +The total amount of wall time = 450.660705 Test 053 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_regional_control_debug +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_regional_control_debug Checking test 054 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3060,13 +3060,13 @@ Checking test 054 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 454.591110 +The total amount of wall time = 453.818949 Test 054 fv3_regional_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_control_debug +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_control_debug Checking test 055 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3093,13 +3093,13 @@ Checking test 055 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 158.948733 +The total amount of wall time = 158.026545 Test 055 fv3_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_stretched_nest_debug +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_stretched_nest_debug Checking test 056 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3116,13 +3116,13 @@ Checking test 056 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 534.778696 +The total amount of wall time = 533.970694 Test 056 fv3_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gsd_debug +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gsd_debug Checking test 057 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3187,13 +3187,13 @@ Checking test 057 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 239.499156 +The total amount of wall time = 241.744406 Test 057 fv3_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_diag3d_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gsd_diag3d_debug +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_diag3d_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gsd_diag3d_debug Checking test 058 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3258,13 +3258,13 @@ Checking test 058 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 273.412196 +The total amount of wall time = 275.484650 Test 058 fv3_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_thompson_debug +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_thompson_debug Checking test 059 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3329,13 +3329,13 @@ Checking test 059 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 416.999151 +The total amount of wall time = 422.074745 Test 059 fv3_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_thompson_no_aero_debug +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_thompson_no_aero_debug Checking test 060 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3400,13 +3400,13 @@ Checking test 060 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 406.065095 +The total amount of wall time = 405.448701 Test 060 fv3_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_rrfs_v1beta_debug +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_rrfs_v1beta_debug Checking test 061 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3471,13 +3471,13 @@ Checking test 061 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 231.671000 +The total amount of wall time = 234.321189 Test 061 fv3_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_HAFS_v0_hwrf_thompson_debug Checking test 062 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3542,13 +3542,13 @@ Checking test 062 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 249.858526 +The total amount of wall time = 250.958336 Test 062 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 063 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3563,13 +3563,13 @@ Checking test 063 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 464.531961 +The total amount of wall time = 468.548686 Test 063 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfsv16_ugwpv1_debug +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfsv16_ugwpv1_debug Checking test 064 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3628,13 +3628,13 @@ Checking test 064 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 710.386890 +The total amount of wall time = 717.077778 Test 064 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_181655/fv3_gfs_v16_ras_debug +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_ras_debug Checking test 065 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3699,11 +3699,11 @@ Checking test 065 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 395.586576 +The total amount of wall time = 398.153648 Test 065 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 25 22:42:44 GMT 2021 -Elapsed time: 02h:26m:28s. Have a nice day! +Mon Mar 29 18:44:35 GMT 2021 +Elapsed time: 02h:42m:56s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index f0ebbff093..8dda0abe29 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,29 +1,29 @@ -Thu Mar 25 09:17:16 CDT 2021 +Mon Mar 29 09:01:41 CDT 2021 Start Regression test -Compile 001 elapsed time 493 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 524 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -Compile 003 elapsed time 471 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 004 elapsed time 488 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 005 elapsed time 496 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 006 elapsed time 501 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 007 elapsed time 558 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 008 elapsed time 593 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 009 elapsed time 505 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 010 elapsed time 542 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 011 elapsed time 500 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 012 elapsed time 553 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 013 elapsed time 135 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 014 elapsed time 148 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 015 elapsed time 134 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 016 elapsed time 563 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 574 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 018 elapsed time 147 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 001 elapsed time 510 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 529 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 552 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 570 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 509 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 006 elapsed time 516 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 560 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 611 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 009 elapsed time 521 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 535 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 525 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 571 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 138 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 152 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 015 elapsed time 140 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 016 elapsed time 575 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 585 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 154 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled Compile 019 elapsed time 377 seconds. APP=DATM_NEMS -Compile 020 elapsed time 126 seconds. APP=DATM_NEMS DEBUG=Y +Compile 020 elapsed time 124 seconds. APP=DATM_NEMS DEBUG=Y -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -88,13 +88,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 47.210314 + 0: The total amount of wall time = 46.110339 Test 001 fv3_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -159,13 +159,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 50.168216 + 0: The total amount of wall time = 46.887603 Test 002 fv3_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -230,13 +230,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 44.185307 + 0: The total amount of wall time = 44.542782 Test 003 fv3_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -283,13 +283,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 26.399795 + 0: The total amount of wall time = 23.953778 Test 004 fv3_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_read_inc -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_read_inc +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_read_inc +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -354,13 +354,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 50.507396 + 0: The total amount of wall time = 48.310337 Test 005 fv3_read_inc PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_wrtGauss_netcdf_esmf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -405,13 +405,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.700113 + 0: The total amount of wall time = 150.461313 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_wrtGauss_netcdf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -456,13 +456,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.995926 + 0: The total amount of wall time = 46.418161 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -470,10 +470,10 @@ Checking test 008 fv3_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 ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........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 @@ -507,13 +507,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 57.380205 + 0: The total amount of wall time = 57.294646 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGlatlon_netcdf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_wrtGlatlon_netcdf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGlatlon_netcdf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -558,13 +558,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.483171 + 0: The total amount of wall time = 45.597730 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_wrtGauss_nemsio +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,13 +609,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.824878 + 0: The total amount of wall time = 44.016033 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_wrtGauss_nemsio_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -660,13 +660,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 105.360400 + 0: The total amount of wall time = 103.485330 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -731,13 +731,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 52.958987 + 0: The total amount of wall time = 47.628018 Test 012 fv3_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_ca +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -802,13 +802,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 29.808758 + 0: The total amount of wall time = 34.054691 Test 013 fv3_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -873,13 +873,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 53.407781 + 0: The total amount of wall time = 53.168725 Test 014 fv3_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_iau -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_iau +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_iau +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,13 +944,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 50.685859 + 0: The total amount of wall time = 45.373465 Test 015 fv3_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_lheatstrg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_lheatstrg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lheatstrg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -995,13 +995,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 44.215027 + 0: The total amount of wall time = 43.122994 Test 016 fv3_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfdlmprad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1047,13 +1047,13 @@ Checking test 017 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 678.540590 + 0: The total amount of wall time = 676.314147 Test 017 fv3_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfdlmprad_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1099,13 +1099,13 @@ Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 822.179775 + 0: The total amount of wall time = 821.377327 Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_wrtGauss_nemsio_c768 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio_c768 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_wrtGauss_nemsio_c768 Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1151,13 +1151,13 @@ Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 698.087814 + 0: The total amount of wall time = 704.250351 Test 019 fv3_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_multigases_repro -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_multigases_repro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_multigases_repro +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_multigases_repro Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1228,13 +1228,13 @@ Checking test 020 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 99.562804 + 0: The total amount of wall time = 104.651260 Test 020 fv3_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_32bit -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_control_32bit +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_32bit +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_control_32bit Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1299,13 +1299,13 @@ Checking test 021 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 46.552070 + 0: The total amount of wall time = 45.449818 Test 021 fv3_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_stretched +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_stretched Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1358,13 +1358,13 @@ Checking test 022 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.059384 + 0: The total amount of wall time = 218.081077 Test 022 fv3_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_stretched_nest +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_stretched_nest Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1428,13 +1428,13 @@ Checking test 023 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK - 0: The total amount of wall time = 240.381614 + 0: The total amount of wall time = 239.114255 Test 023 fv3_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_regional_control Checking test 024 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1442,25 +1442,25 @@ Checking test 024 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 538.075472 + 0: The total amount of wall time = 531.396070 Test 024 fv3_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_restart -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_regional_restart Checking test 025 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 302.789352 + 0: The total amount of wall time = 297.035934 Test 025 fv3_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_regional_quilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_regional_quilt Checking test 026 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1471,13 +1471,13 @@ Checking test 026 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 586.430164 + 0: The total amount of wall time = 587.779200 Test 026 fv3_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_hafs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_regional_quilt_hafs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_hafs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_regional_quilt_hafs Checking test 027 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1486,13 +1486,13 @@ Checking test 027 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 581.827455 + 0: The total amount of wall time = 578.249723 Test 027 fv3_regional_quilt_hafs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_regional_quilt_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_regional_quilt_netcdf_parallel Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1500,13 +1500,13 @@ Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 588.431507 + 0: The total amount of wall time = 582.525316 Test 028 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfdlmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfdlmp Checking test 029 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1551,13 +1551,13 @@ Checking test 029 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 50.606839 + 0: The total amount of wall time = 45.468419 Test 029 fv3_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_gwd -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfdlmprad_gwd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_gwd +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfdlmprad_gwd Checking test 030 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1602,13 +1602,13 @@ Checking test 030 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 51.021363 + 0: The total amount of wall time = 50.767104 Test 030 fv3_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_noahmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfdlmprad_noahmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_noahmp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfdlmprad_noahmp Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1653,13 +1653,13 @@ Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 49.324618 + 0: The total amount of wall time = 52.514933 Test 031 fv3_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_csawmg Checking test 032 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1704,13 +1704,13 @@ Checking test 032 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 120.381428 + 0: The total amount of wall time = 117.342209 Test 032 fv3_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_satmedmf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_satmedmf Checking test 033 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1755,13 @@ Checking test 033 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 54.251730 + 0: The total amount of wall time = 52.921905 Test 033 fv3_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_satmedmfq -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_satmedmfq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmfq +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_satmedmfq Checking test 034 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1806,13 +1806,13 @@ Checking test 034 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 56.389869 + 0: The total amount of wall time = 53.503559 Test 034 fv3_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmp_32bit -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfdlmp_32bit +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp_32bit +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfdlmp_32bit Checking test 035 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1857,13 +1857,13 @@ Checking test 035 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 47.019053 + 0: The total amount of wall time = 45.181717 Test 035 fv3_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfdlmprad_32bit_post -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfdlmprad_32bit_post +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_32bit_post +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfdlmprad_32bit_post Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1912,13 +1912,13 @@ Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 73.692836 + 0: The total amount of wall time = 72.121268 Test 036 fv3_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_cpt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_cpt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_cpt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_cpt Checking test 037 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1969,13 +1969,13 @@ Checking test 037 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 263.136719 + 0: The total amount of wall time = 260.526978 Test 037 fv3_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gsd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gsd Checking test 038 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2064,13 +2064,13 @@ Checking test 038 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.356867 + 0: The total amount of wall time = 188.169451 Test 038 fv3_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rap -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_rap +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rap +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_rap Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2135,13 +2135,13 @@ Checking test 039 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 103.830709 + 0: The total amount of wall time = 97.960841 Test 039 fv3_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_hrrr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_hrrr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_hrrr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_hrrr Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,13 +2206,13 @@ Checking test 040 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 112.894398 + 0: The total amount of wall time = 105.305891 Test 040 fv3_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_thompson Checking test 041 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2277,13 +2277,13 @@ Checking test 041 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 97.373654 + 0: The total amount of wall time = 94.310794 Test 041 fv3_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_thompson_no_aero +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_thompson_no_aero Checking test 042 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2348,13 +2348,13 @@ Checking test 042 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 93.471761 + 0: The total amount of wall time = 89.499408 Test 042 fv3_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_rrfs_v1beta Checking test 043 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2419,13 +2419,13 @@ Checking test 043 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 106.101728 + 0: The total amount of wall time = 108.015559 Test 043 fv3_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16 Checking test 044 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2502,13 +2502,13 @@ Checking test 044 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 206.556147 + 0: The total amount of wall time = 186.836852 Test 044 fv3_gfs_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_restart Checking test 045 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2555,13 +2555,13 @@ Checking test 045 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 150.711583 + 0: The total amount of wall time = 133.902682 Test 045 fv3_gfs_v16_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_stochy Checking test 046 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2626,13 +2626,13 @@ Checking test 046 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 55.290345 + 0: The total amount of wall time = 55.254416 Test 046 fv3_gfs_v16_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_RRTMGP +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_RRTMGP Checking test 047 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2697,13 +2697,13 @@ Checking test 047 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 168.802059 + 0: The total amount of wall time = 164.485586 Test 047 fv3_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_RRTMGP_c192L127 Checking test 048 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2762,13 +2762,13 @@ Checking test 048 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 631.555322 + 0: The total amount of wall time = 636.145340 Test 048 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_RRTMGP_2thrd Checking test 049 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2833,13 +2833,13 @@ Checking test 049 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 180.163710 + 0: The total amount of wall time = 174.078223 Test 049 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfsv16_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfsv16_csawmg Checking test 050 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2884,13 +2884,13 @@ Checking test 050 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 133.710115 + 0: The total amount of wall time = 122.580612 Test 050 fv3_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfsv16_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfsv16_csawmgt Checking test 051 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2935,13 +2935,13 @@ Checking test 051 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 130.239689 + 0: The total amount of wall time = 123.170662 Test 051 fv3_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gocart_clm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gocart_clm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gocart_clm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gocart_clm Checking test 052 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2986,13 +2986,13 @@ Checking test 052 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 57.284369 + 0: The total amount of wall time = 58.556424 Test 052 fv3_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_flake +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_flake Checking test 053 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3057,13 +3057,13 @@ Checking test 053 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 106.753169 + 0: The total amount of wall time = 108.541208 Test 053 fv3_gfs_v16_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_HAFS_v0_hwrf_thompson Checking test 054 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3128,13 +3128,13 @@ Checking test 054 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 150.201240 + 0: The total amount of wall time = 148.009572 Test 054 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_esg_HAFS_v0_hwrf_thompson Checking test 055 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3149,13 +3149,13 @@ Checking test 055 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 296.921666 + 0: The total amount of wall time = 295.662334 Test 055 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfsv16_ugwpv1 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfsv16_ugwpv1 Checking test 056 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3214,13 +3214,13 @@ Checking test 056 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 170.860496 + 0: The total amount of wall time = 174.929694 Test 056 fv3_gfsv16_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfsv16_ugwpv1_warmstart Checking test 057 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3279,13 +3279,13 @@ Checking test 057 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 170.210518 + 0: The total amount of wall time = 173.941801 Test 057 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_ras Checking test 058 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3350,13 +3350,13 @@ Checking test 058 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.767554 + 0: The total amount of wall time = 95.068159 Test 058 fv3_gfs_v16_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_debug Checking test 059 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3421,13 +3421,13 @@ Checking test 059 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 300.406632 + 0: The total amount of wall time = 272.554598 Test 059 fv3_gfs_v16_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_RRTMGP_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_RRTMGP_debug Checking test 060 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3492,13 +3492,13 @@ Checking test 060 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 381.618739 + 0: The total amount of wall time = 384.080582 Test 060 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_regional_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_regional_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_regional_control_debug Checking test 061 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3506,13 +3506,13 @@ Checking test 061 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 377.145504 + 0: The total amount of wall time = 368.116032 Test 061 fv3_regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_control_debug Checking test 062 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3539,13 +3539,13 @@ Checking test 062 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 159.736805 + 0: The total amount of wall time = 152.475526 Test 062 fv3_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_stretched_nest_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_stretched_nest_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_stretched_nest_debug Checking test 063 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3562,13 +3562,13 @@ Checking test 063 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 377.116312 + 0: The total amount of wall time = 376.492674 Test 063 fv3_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gsd_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gsd_debug Checking test 064 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3633,13 +3633,13 @@ Checking test 064 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.702807 + 0: The total amount of wall time = 216.578287 Test 064 fv3_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gsd_diag3d_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gsd_diag3d_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_diag3d_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gsd_diag3d_debug Checking test 065 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3704,13 +3704,13 @@ Checking test 065 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 305.573719 + 0: The total amount of wall time = 299.835462 Test 065 fv3_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_thompson_debug Checking test 066 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3775,13 +3775,13 @@ Checking test 066 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 365.297575 + 0: The total amount of wall time = 355.963255 Test 066 fv3_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_thompson_no_aero_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_thompson_no_aero_debug Checking test 067 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3846,13 +3846,13 @@ Checking test 067 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.389501 + 0: The total amount of wall time = 344.473932 Test 067 fv3_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_rrfs_v1beta_debug Checking test 068 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3917,13 +3917,13 @@ Checking test 068 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 214.584575 + 0: The total amount of wall time = 212.927829 Test 068 fv3_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_HAFS_v0_hwrf_thompson_debug Checking test 069 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3988,13 +3988,13 @@ Checking test 069 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 225.445429 + 0: The total amount of wall time = 215.320502 Test 069 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 070 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4009,13 +4009,13 @@ Checking test 070 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 407.788868 + 0: The total amount of wall time = 418.559362 Test 070 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfsv16_ugwpv1_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfsv16_ugwpv1_debug Checking test 071 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4074,13 +4074,13 @@ Checking test 071 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 579.889296 + 0: The total amount of wall time = 583.380475 Test 071 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/fv3_gfs_v16_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/fv3_gfs_v16_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_ras_debug Checking test 072 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4145,13 +4145,13 @@ Checking test 072 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 338.724736 + 0: The total amount of wall time = 342.684006 Test 072 fv3_gfs_v16_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_control Checking test 073 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4201,13 +4201,13 @@ Checking test 073 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 98.677566 + 0: The total amount of wall time = 96.769618 Test 073 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restart Checking test 074 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4257,13 +4257,13 @@ Checking test 074 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 69.384433 + 0: The total amount of wall time = 63.399783 Test 074 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_controlfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_controlfrac Checking test 075 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4313,13 +4313,13 @@ Checking test 075 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 102.371523 + 0: The total amount of wall time = 103.520729 Test 075 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restartfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restartfrac Checking test 076 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4369,13 +4369,13 @@ Checking test 076 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 75.617802 + 0: The total amount of wall time = 70.011642 Test 076 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_2threads Checking test 077 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4425,13 +4425,13 @@ Checking test 077 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 121.002313 + 0: The total amount of wall time = 123.430851 Test 077 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_decomp Checking test 078 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4481,13 +4481,13 @@ Checking test 078 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 97.144194 + 0: The total amount of wall time = 94.828471 Test 078 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_satmedmf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_satmedmf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_satmedmf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_satmedmf Checking test 079 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4537,13 +4537,13 @@ Checking test 079 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 100.138916 + 0: The total amount of wall time = 95.364844 Test 079 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_ca +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_ca Checking test 080 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4593,13 +4593,13 @@ Checking test 080 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 97.947509 + 0: The total amount of wall time = 107.432213 Test 080 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_control_c192 Checking test 081 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4649,13 +4649,13 @@ Checking test 081 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 386.185048 + 0: The total amount of wall time = 387.641225 Test 081 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restart_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restart_c192 Checking test 082 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4705,13 +4705,13 @@ Checking test 082 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 278.129117 + 0: The total amount of wall time = 274.975548 Test 082 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_controlfrac_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_controlfrac_c192 Checking test 083 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4761,13 +4761,13 @@ Checking test 083 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 383.917237 + 0: The total amount of wall time = 390.904613 Test 083 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restartfrac_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restartfrac_c192 Checking test 084 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4817,13 +4817,13 @@ Checking test 084 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 276.807218 + 0: The total amount of wall time = 272.547764 Test 084 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_control_c384 Checking test 085 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4876,13 +4876,13 @@ Checking test 085 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1314.515300 + 0: The total amount of wall time = 1322.559028 Test 085 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restart_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restart_c384 Checking test 086 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4935,13 +4935,13 @@ Checking test 086 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 707.962252 + 0: The total amount of wall time = 700.510555 Test 086 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_controlfrac_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_controlfrac_c384 Checking test 087 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4994,13 +4994,13 @@ Checking test 087 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1311.911565 + 0: The total amount of wall time = 1320.653071 Test 087 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restartfrac_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restartfrac_c384 Checking test 088 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5053,13 +5053,13 @@ Checking test 088 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 700.279946 + 0: The total amount of wall time = 697.666394 Test 088 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_bmark +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_bmark Checking test 089 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5112,13 +5112,13 @@ Checking test 089 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 832.498176 + 0: The total amount of wall time = 859.169381 Test 089 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restart_bmark +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restart_bmark Checking test 090 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5171,13 +5171,13 @@ Checking test 090 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 455.964912 + 0: The total amount of wall time = 460.746557 Test 090 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_bmarkfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_bmarkfrac Checking test 091 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5230,13 +5230,13 @@ Checking test 091 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 852.293681 + 0: The total amount of wall time = 846.612737 Test 091 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restart_bmarkfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restart_bmarkfrac Checking test 092 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5289,13 +5289,13 @@ Checking test 092 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 451.862267 + 0: The total amount of wall time = 498.094775 Test 092 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_bmarkfrac_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_bmarkfrac_v16 Checking test 093 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5348,13 +5348,13 @@ Checking test 093 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 1347.747751 + 0: The total amount of wall time = 1374.565161 Test 093 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_restart_bmarkfrac_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restart_bmarkfrac_v16 Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5407,13 +5407,13 @@ Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 723.082186 + 0: The total amount of wall time = 719.163236 Test 094 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmark_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_bmark_wave +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_bmark_wave Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5469,13 +5469,13 @@ Checking test 095 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1430.509656 + 0: The total amount of wall time = 1430.349715 Test 095 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_bmarkfrac_wave +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_bmarkfrac_wave Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5531,13 +5531,13 @@ Checking test 096 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1431.755862 + 0: The total amount of wall time = 1434.948129 Test 096 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_bmarkfrac_wave_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_bmarkfrac_wave_v16 Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5592,13 +5592,13 @@ Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 957.953755 + 0: The total amount of wall time = 950.088570 Test 097 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_control_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_control_wave +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_control_wave Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5651,13 +5651,13 @@ Checking test 098 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 821.973292 + 0: The total amount of wall time = 821.592124 Test 098 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_debug Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5707,13 +5707,13 @@ Checking test 099 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 318.634283 + 0: The total amount of wall time = 333.498833 Test 099 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/cpld_debugfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/cpld_debugfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_debugfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_debugfrac Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5763,73 +5763,73 @@ Checking test 100 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 319.629412 + 0: The total amount of wall time = 326.141522 Test 100 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/datm_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/datm_control_cfsr Checking test 101 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 - 0: The total amount of wall time = 104.118194 + 0: The total amount of wall time = 99.836055 Test 101 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/datm_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/datm_restart_cfsr Checking test 102 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 - 0: The total amount of wall time = 72.184577 + 0: The total amount of wall time = 76.803098 Test 102 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/datm_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/datm_control_gefs Checking test 103 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 - 0: The total amount of wall time = 95.885242 + 0: The total amount of wall time = 97.144331 Test 103 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/datm_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/datm_bulk_cfsr Checking test 104 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 - 0: The total amount of wall time = 100.040361 + 0: The total amount of wall time = 96.636890 Test 104 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/datm_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/datm_bulk_gefs Checking test 105 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 - 0: The total amount of wall time = 97.337336 + 0: The total amount of wall time = 102.103034 Test 105 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/datm_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/datm_mx025_cfsr Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5838,13 +5838,13 @@ Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 387.448171 + 0: The total amount of wall time = 406.625414 Test 106 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/datm_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/datm_mx025_gefs Checking test 107 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5853,23 +5853,23 @@ Checking test 107 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 391.419922 + 0: The total amount of wall time = 394.539133 Test 107 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_396619/datm_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/datm_debug_cfsr Checking test 108 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 - 0: The total amount of wall time = 290.658014 + 0: The total amount of wall time = 294.034923 Test 108 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 25 11:45:34 CDT 2021 -Elapsed time: 02h:28m:19s. Have a nice day! +Mon Mar 29 10:35:39 CDT 2021 +Elapsed time: 01h:33m:59s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 8765b5b904..802cddfd04 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,23 +1,23 @@ -Thu Mar 25 15:20:20 UTC 2021 +Mon Mar 29 17:55:37 UTC 2021 Start Regression test -Compile 001 elapsed time 977 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 981 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 938 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 931 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 926 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 1098 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 1039 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 008 elapsed time 924 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 971 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 997 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 985 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 545 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 558 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 014 elapsed time 533 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_control +Compile 001 elapsed time 1022 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 1086 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 921 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 987 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 1125 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 1638 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 1284 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 008 elapsed time 1387 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 1488 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 1022 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 1150 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 776 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 1025 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 014 elapsed time 686 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -82,13 +82,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.087912 +The total amount of wall time = 54.662925 Test 001 fv3_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_decomp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -153,13 +153,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 60.814763 +The total amount of wall time = 53.703792 Test 002 fv3_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_2threads +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -224,13 +224,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.196168 +The total amount of wall time = 43.746136 Test 003 fv3_2threads PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -277,13 +277,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 23.261020 +The total amount of wall time = 23.114511 Test 004 fv3_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_read_inc -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_read_inc +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_read_inc +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -348,13 +348,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 49.507874 +The total amount of wall time = 49.643296 Test 005 fv3_read_inc PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_netcdf_esmf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_wrtGauss_netcdf_esmf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_netcdf_esmf +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -399,13 +399,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 141.592436 +The total amount of wall time = 149.877229 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_netcdf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_wrtGauss_netcdf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_netcdf +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -450,13 +450,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 61.134784 +The total amount of wall time = 53.541312 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_wrtGauss_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -501,13 +501,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 63.940614 +The total amount of wall time = 64.591018 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGlatlon_netcdf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_wrtGlatlon_netcdf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGlatlon_netcdf +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -552,13 +552,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 55.744533 +The total amount of wall time = 49.828962 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_nemsio -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_wrtGauss_nemsio +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_nemsio +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -603,13 +603,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 64.288077 +The total amount of wall time = 52.184331 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_nemsio_c192 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_wrtGauss_nemsio_c192 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_nemsio_c192 +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -654,13 +654,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 124.029871 +The total amount of wall time = 119.363651 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_stochy +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -725,13 +725,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 56.676736 +The total amount of wall time = 52.769412 Test 012 fv3_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_ca -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_ca +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_ca +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -796,13 +796,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 43.062458 +The total amount of wall time = 37.520069 Test 013 fv3_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_lndp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_lndp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_lndp +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -867,13 +867,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.578755 +The total amount of wall time = 54.673979 Test 014 fv3_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_iau -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_iau +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_iau +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,13 +938,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.502547 +The total amount of wall time = 49.545229 Test 015 fv3_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_lheatstrg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_lheatstrg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_lheatstrg +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -989,13 +989,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 62.207008 +The total amount of wall time = 51.490041 Test 016 fv3_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_multigases_repro -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_multigases_repro +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_multigases_repro +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1066,13 +1066,13 @@ Checking test 017 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 99.003135 +The total amount of wall time = 97.345208 Test 017 fv3_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control_32bit -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_control_32bit +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control_32bit +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1137,13 +1137,13 @@ Checking test 018 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 54.913454 +The total amount of wall time = 48.934531 Test 018 fv3_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_stretched -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_stretched +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_stretched +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1196,13 +1196,13 @@ Checking test 019 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 328.862270 +The total amount of wall time = 337.801944 Test 019 fv3_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_stretched_nest -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_stretched_nest +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_stretched_nest +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1266,13 +1266,13 @@ Checking test 020 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 369.375111 +The total amount of wall time = 369.003611 Test 020 fv3_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_regional_control +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_control +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1280,25 +1280,25 @@ Checking test 021 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 700.256822 +The total amount of wall time = 721.146859 Test 021 fv3_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_restart -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_regional_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_restart +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_regional_restart Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 408.910367 +The total amount of wall time = 409.465039 Test 022 fv3_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_quilt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_regional_quilt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_quilt +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1309,13 +1309,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 699.538819 +The total amount of wall time = 700.067668 Test 023 fv3_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_quilt_hafs -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_regional_quilt_hafs +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_quilt_hafs +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1324,13 +1324,13 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 698.092243 +The total amount of wall time = 703.253884 Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_regional_quilt_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1338,13 +1338,13 @@ Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 702.657967 +The total amount of wall time = 700.609470 Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfdlmp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmp +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1389,13 +1389,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 67.021362 +The total amount of wall time = 57.266183 Test 026 fv3_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmprad_gwd -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfdlmprad_gwd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmprad_gwd +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1440,13 +1440,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.281119 +The total amount of wall time = 57.723534 Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmprad_noahmp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfdlmprad_noahmp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmprad_noahmp +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1491,13 +1491,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 75.543649 +The total amount of wall time = 60.208831 Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_csawmg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_csawmg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_csawmg +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1542,13 +1542,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 129.101799 +The total amount of wall time = 126.672553 Test 029 fv3_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_satmedmf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_satmedmf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_satmedmf +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1593,13 +1593,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.677462 +The total amount of wall time = 58.337259 Test 030 fv3_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_satmedmfq -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_satmedmfq +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_satmedmfq +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1644,13 +1644,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.987494 +The total amount of wall time = 58.730474 Test 031 fv3_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmp_32bit -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfdlmp_32bit +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmp_32bit +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1695,13 +1695,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 69.204279 +The total amount of wall time = 52.183587 Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmprad_32bit_post -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfdlmprad_32bit_post +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmprad_32bit_post +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1750,13 +1750,13 @@ Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 107.205157 +The total amount of wall time = 106.179920 Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_cpt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_cpt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_cpt +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1807,13 +1807,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 281.996295 +The total amount of wall time = 285.103213 Test 034 fv3_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gsd -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gsd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gsd +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1902,13 +1902,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 197.911119 +The total amount of wall time = 198.158597 Test 035 fv3_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_rap -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_rap +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_rap +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_rap Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1973,13 +1973,13 @@ Checking test 036 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 103.999031 +The total amount of wall time = 102.511932 Test 036 fv3_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_hrrr -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_hrrr +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_hrrr +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_hrrr Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2044,13 +2044,13 @@ Checking test 037 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 107.212728 +The total amount of wall time = 109.622947 Test 037 fv3_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_thompson +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_thompson Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2115,13 +2115,13 @@ Checking test 038 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 98.519402 +The total amount of wall time = 98.007595 Test 038 fv3_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_thompson_no_aero -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_thompson_no_aero +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_thompson_no_aero +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_thompson_no_aero Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2186,13 +2186,13 @@ Checking test 039 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 91.157798 +The total amount of wall time = 91.762159 Test 039 fv3_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_rrfs_v1beta -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_rrfs_v1beta +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_rrfs_v1beta +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_rrfs_v1beta Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2257,13 +2257,13 @@ Checking test 040 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 109.965261 +The total amount of wall time = 108.249565 Test 040 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16 +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16 Checking test 041 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2340,13 +2340,13 @@ Checking test 041 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 195.938826 +The total amount of wall time = 184.402273 Test 041 fv3_gfs_v16 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16 +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_restart Checking test 042 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2393,13 +2393,13 @@ Checking test 042 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 150.699384 +The total amount of wall time = 134.788814 Test 042 fv3_gfs_v16_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_stochy +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_stochy Checking test 043 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2464,13 +2464,13 @@ Checking test 043 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 66.571608 +The total amount of wall time = 61.906884 Test 043 fv3_gfs_v16_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_RRTMGP -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_RRTMGP +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_RRTMGP +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_RRTMGP Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2535,13 +2535,13 @@ Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 173.499902 +The total amount of wall time = 175.686839 Test 044 fv3_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_RRTMGP_c192L127 Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2600,13 +2600,13 @@ Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 719.147361 +The total amount of wall time = 718.989297 Test 045 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_RRTMGP -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_RRTMGP +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_RRTMGP_2thrd Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2671,13 +2671,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 166.560685 +The total amount of wall time = 169.998053 Test 046 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_csawmg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfsv16_csawmg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_csawmg +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfsv16_csawmg Checking test 047 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2722,13 +2722,13 @@ Checking test 047 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 147.113979 +The total amount of wall time = 142.580560 Test 047 fv3_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_csawmgt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfsv16_csawmgt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_csawmgt +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfsv16_csawmgt Checking test 048 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2773,13 +2773,13 @@ Checking test 048 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 139.278094 +The total amount of wall time = 142.082071 Test 048 fv3_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gocart_clm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gocart_clm +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gocart_clm +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gocart_clm Checking test 049 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2824,13 +2824,13 @@ Checking test 049 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 63.768256 +The total amount of wall time = 66.004347 Test 049 fv3_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_flake -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_flake +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_flake +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_flake Checking test 050 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2895,13 +2895,13 @@ Checking test 050 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 103.665678 +The total amount of wall time = 104.504125 Test 050 fv3_gfs_v16_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_HAFS_v0_hwrf_thompson Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2966,13 +2966,13 @@ Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 160.498110 +The total amount of wall time = 161.855317 Test 051 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_esg_HAFS_v0_hwrf_thompson Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2987,13 +2987,13 @@ Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 308.825971 +The total amount of wall time = 309.753636 Test 052 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_ugwpv1 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfsv16_ugwpv1 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_ugwpv1 +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfsv16_ugwpv1 Checking test 053 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3052,13 +3052,13 @@ Checking test 053 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 192.685190 +The total amount of wall time = 195.924287 Test 053 fv3_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_ugwpv1_warmstart -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_ugwpv1_warmstart +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfsv16_ugwpv1_warmstart Checking test 054 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3117,13 +3117,13 @@ Checking test 054 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 191.357969 +The total amount of wall time = 195.357165 Test 054 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_ras -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_ras +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_ras +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_ras Checking test 055 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3188,13 +3188,13 @@ Checking test 055 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 105.350616 +The total amount of wall time = 106.214850 Test 055 fv3_gfs_v16_ras PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_debug +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_debug Checking test 056 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3259,13 +3259,13 @@ Checking test 056 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 251.625799 +The total amount of wall time = 245.331018 Test 056 fv3_gfs_v16_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_RRTMGP_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_RRTMGP_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_RRTMGP_debug +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_RRTMGP_debug Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3330,13 +3330,13 @@ Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 340.780574 +The total amount of wall time = 340.114417 Test 057 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_regional_control_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_control_debug +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_regional_control_debug Checking test 058 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3344,13 +3344,13 @@ Checking test 058 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 344.637942 +The total amount of wall time = 344.735041 Test 058 fv3_regional_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_control_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control_debug +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_control_debug Checking test 059 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3377,13 +3377,13 @@ Checking test 059 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 124.917316 +The total amount of wall time = 126.055386 Test 059 fv3_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_stretched_nest_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_stretched_nest_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_stretched_nest_debug +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_stretched_nest_debug Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3400,13 +3400,13 @@ Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 406.192255 +The total amount of wall time = 406.002194 Test 060 fv3_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gsd_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gsd_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gsd_debug +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gsd_debug Checking test 061 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3471,13 +3471,13 @@ Checking test 061 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 188.708339 +The total amount of wall time = 190.091186 Test 061 fv3_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gsd_diag3d_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gsd_diag3d_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gsd_diag3d_debug +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gsd_diag3d_debug Checking test 062 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3542,13 +3542,13 @@ Checking test 062 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 223.040673 +The total amount of wall time = 226.389819 Test 062 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_thompson_debug +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_thompson_debug Checking test 063 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3613,13 +3613,13 @@ Checking test 063 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 324.238065 +The total amount of wall time = 320.860326 Test 063 fv3_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_thompson_no_aero_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_thompson_no_aero_debug Checking test 064 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3684,13 +3684,13 @@ Checking test 064 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 308.749081 +The total amount of wall time = 316.328228 Test 064 fv3_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_rrfs_v1beta_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_rrfs_v1beta_debug Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3755,13 +3755,13 @@ Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 182.685412 +The total amount of wall time = 184.968222 Test 065 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_HAFS_v0_hwrf_thompson_debug Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3826,13 +3826,13 @@ Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 189.446242 +The total amount of wall time = 187.107966 Test 066 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3847,13 +3847,13 @@ Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 347.035733 +The total amount of wall time = 360.443909 Test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_ugwpv1_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfsv16_ugwpv1_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_ugwpv1_debug +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfsv16_ugwpv1_debug Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3912,13 +3912,13 @@ Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 537.805159 +The total amount of wall time = 542.343382 Test 068 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_ras_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_23466/fv3_gfs_v16_ras_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_ras_debug +working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_ras_debug Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3983,11 +3983,11 @@ Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 301.920050 +The total amount of wall time = 307.755160 Test 069 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 25 16:02:12 UTC 2021 -Elapsed time: 00h:41m:53s. Have a nice day! +Mon Mar 29 18:34:59 UTC 2021 +Elapsed time: 00h:39m:22s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 91baf6b57a..74faa7e815 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,28 +1,29 @@ -Thu Mar 25 22:57:50 UTC 2021 +Mon Mar 29 17:52:23 UTC 2021 Start Regression test -Compile 001 elapsed time 1529 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 1924 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -Compile 003 elapsed time 1436 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 004 elapsed time 1627 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 005 elapsed time 1545 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 007 elapsed time 1956 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 008 elapsed time 2399 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 009 elapsed time 1681 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 010 elapsed time 1586 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 011 elapsed time 1772 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 012 elapsed time 1905 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 013 elapsed time 400 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 014 elapsed time 427 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 015 elapsed time 404 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 016 elapsed time 2685 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 2436 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 018 elapsed time 655 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 019 elapsed time 1333 seconds. APP=DATM_NEMS -Compile 020 elapsed time 413 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_control +Compile 001 elapsed time 1571 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 1685 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 1495 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 1688 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 1599 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 006 elapsed time 1710 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 1975 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 2438 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 009 elapsed time 1700 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 1627 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 1793 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 1939 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 398 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 440 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 015 elapsed time 406 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 016 elapsed time 2768 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 3053 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 686 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 019 elapsed time 1385 seconds. APP=DATM_NEMS +Compile 020 elapsed time 426 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -87,13 +88,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 49.307319 +[0] The total amount of wall time = 48.129469 Test 001 fv3_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -158,13 +159,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 50.255851 +[0] The total amount of wall time = 50.164820 Test 002 fv3_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -229,13 +230,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 40.803826 +[0] The total amount of wall time = 40.891923 Test 003 fv3_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -282,13 +283,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 24.593102 +[0] The total amount of wall time = 24.448008 Test 004 fv3_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_read_inc -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_read_inc +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_read_inc +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -353,13 +354,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 46.681731 +[0] The total amount of wall time = 45.704104 Test 005 fv3_read_inc PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_netcdf_esmf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_wrtGauss_netcdf_esmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_netcdf_esmf +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -404,13 +405,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 147.946115 +[0] The total amount of wall time = 155.038433 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_netcdf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_wrtGauss_netcdf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_netcdf +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -455,13 +456,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.365085 +[0] The total amount of wall time = 45.792501 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_wrtGauss_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -470,7 +471,7 @@ Checking test 008 fv3_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 ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK @@ -506,13 +507,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 61.756678 +[0] The total amount of wall time = 59.900025 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGlatlon_netcdf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_wrtGlatlon_netcdf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGlatlon_netcdf +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -557,13 +558,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.618473 +[0] The total amount of wall time = 46.838657 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_nemsio -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_wrtGauss_nemsio +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_nemsio +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -608,13 +609,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.376551 +[0] The total amount of wall time = 45.336013 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_wrtGauss_nemsio_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_wrtGauss_nemsio_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_nemsio_c192 +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -659,13 +660,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 131.749356 +[0] The total amount of wall time = 128.399345 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_stochy +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_stochy +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -730,13 +731,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 52.263756 +[0] The total amount of wall time = 53.479128 Test 012 fv3_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_ca -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_ca +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_ca +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -801,13 +802,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 34.154600 +[0] The total amount of wall time = 34.750682 Test 013 fv3_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_lndp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_lndp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_lndp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -872,13 +873,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 53.945913 +[0] The total amount of wall time = 52.336096 Test 014 fv3_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_iau -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_iau +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_iau +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -943,13 +944,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 46.970405 +[0] The total amount of wall time = 45.326177 Test 015 fv3_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_lheatstrg -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_lheatstrg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_lheatstrg +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -994,13 +995,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.419609 +[0] The total amount of wall time = 45.275539 Test 016 fv3_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmprad -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfdlmprad +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmprad +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1046,13 +1047,13 @@ Checking test 017 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -[0] The total amount of wall time = 678.076273 +[0] The total amount of wall time = 681.744775 Test 017 fv3_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmprad_atmwav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfdlmprad_atmwav +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmprad_atmwav +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1098,13 +1099,13 @@ Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -[0] The total amount of wall time = 862.488465 +[0] The total amount of wall time = 859.914136 Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_multigases_repro -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_multigases_repro +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_multigases_repro +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_multigases_repro Checking test 019 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1175,13 +1176,13 @@ Checking test 019 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 114.124704 +[0] The total amount of wall time = 113.949889 Test 019 fv3_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control_32bit -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_control_32bit +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control_32bit +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_control_32bit Checking test 020 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1246,13 +1247,13 @@ Checking test 020 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.483974 +[0] The total amount of wall time = 45.327527 Test 020 fv3_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_stretched -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_stretched +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_stretched +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_stretched Checking test 021 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1305,13 +1306,13 @@ Checking test 021 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 326.066449 +[0] The total amount of wall time = 326.923244 Test 021 fv3_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_stretched_nest -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_stretched_nest +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_stretched_nest +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_stretched_nest Checking test 022 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,13 +1376,13 @@ Checking test 022 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -[0] The total amount of wall time = 352.099737 +[0] The total amount of wall time = 348.917272 Test 022 fv3_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_regional_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_regional_control Checking test 023 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1389,25 +1390,25 @@ Checking test 023 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 716.101354 +[0] The total amount of wall time = 720.552980 Test 023 fv3_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_restart -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_regional_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_restart +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_regional_restart Checking test 024 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -[0] The total amount of wall time = 405.444689 +[0] The total amount of wall time = 402.886179 Test 024 fv3_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_quilt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_regional_quilt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_quilt +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_regional_quilt Checking test 025 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1418,13 +1419,13 @@ Checking test 025 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 736.561113 +[0] The total amount of wall time = 732.776248 Test 025 fv3_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_quilt_hafs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_regional_quilt_hafs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_quilt_hafs +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_regional_quilt_hafs Checking test 026 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1433,27 +1434,180 @@ Checking test 026 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 735.601817 +[0] The total amount of wall time = 732.022663 Test 026 fv3_regional_quilt_hafs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_regional_quilt_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_regional_quilt_netcdf_parallel Checking test 027 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -[0] The total amount of wall time = 739.964598 +[0] The total amount of wall time = 737.854154 Test 027 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_csawmg -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_csawmg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfdlmp +Checking test 028 fv3_gfdlmp 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 + +[0] The total amount of wall time = 52.084009 + +Test 028 fv3_gfdlmp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmprad_gwd +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfdlmprad_gwd +Checking test 029 fv3_gfdlmprad_gwd 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 + +[0] The total amount of wall time = 53.527866 + +Test 029 fv3_gfdlmprad_gwd PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmprad_noahmp +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfdlmprad_noahmp +Checking test 030 fv3_gfdlmprad_noahmp 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 + +[0] The total amount of wall time = 52.655454 + +Test 030 fv3_gfdlmprad_noahmp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_csawmg +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_csawmg Checking test 031 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1498,13 +1652,13 @@ Checking test 031 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 131.197573 +[0] The total amount of wall time = 129.148771 Test 031 fv3_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_satmedmf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_satmedmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_satmedmf +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_satmedmf Checking test 032 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1549,13 +1703,13 @@ Checking test 032 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 56.631616 +[0] The total amount of wall time = 56.871279 Test 032 fv3_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_satmedmfq -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_satmedmfq +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_satmedmfq +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_satmedmfq Checking test 033 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1600,13 +1754,13 @@ Checking test 033 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 57.024723 +[0] The total amount of wall time = 58.002911 Test 033 fv3_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmp_32bit -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfdlmp_32bit +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmp_32bit +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfdlmp_32bit Checking test 034 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1651,13 +1805,13 @@ Checking test 034 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 44.232535 +[0] The total amount of wall time = 48.219808 Test 034 fv3_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmprad_32bit_post -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfdlmprad_32bit_post +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmprad_32bit_post +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfdlmprad_32bit_post Checking test 035 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1706,13 +1860,13 @@ Checking test 035 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 90.135001 +[0] The total amount of wall time = 94.735499 Test 035 fv3_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_cpt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_cpt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_cpt +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_cpt Checking test 036 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1763,13 +1917,13 @@ Checking test 036 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 307.670828 +[0] The total amount of wall time = 308.494272 Test 036 fv3_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gsd -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gsd +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gsd +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gsd Checking test 037 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1858,13 +2012,13 @@ Checking test 037 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 210.071493 +[0] The total amount of wall time = 209.078728 Test 037 fv3_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_rap -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_rap +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_rap +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_rap Checking test 038 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1929,13 +2083,13 @@ Checking test 038 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 105.023483 +[0] The total amount of wall time = 104.798533 Test 038 fv3_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_hrrr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_hrrr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_hrrr +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_hrrr Checking test 039 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2000,13 +2154,13 @@ Checking test 039 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 113.647281 +[0] The total amount of wall time = 113.534607 Test 039 fv3_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_thompson +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_thompson Checking test 040 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2071,13 +2225,13 @@ Checking test 040 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 100.135366 +[0] The total amount of wall time = 101.133055 Test 040 fv3_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_thompson_no_aero +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_thompson_no_aero Checking test 041 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2142,13 +2296,13 @@ Checking test 041 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 95.500126 +[0] The total amount of wall time = 95.792828 Test 041 fv3_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_rrfs_v1beta +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_rrfs_v1beta Checking test 042 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2213,13 +2367,13 @@ Checking test 042 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 115.015421 +[0] The total amount of wall time = 114.839334 Test 042 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16 +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16 Checking test 043 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2296,13 +2450,13 @@ Checking test 043 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 153.731844 +[0] The total amount of wall time = 153.432985 Test 043 fv3_gfs_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16 +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_restart Checking test 044 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2349,13 +2503,13 @@ Checking test 044 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 94.371799 +[0] The total amount of wall time = 92.520423 Test 044 fv3_gfs_v16_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_stochy +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_stochy +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_stochy Checking test 045 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2420,13 +2574,13 @@ Checking test 045 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 59.355079 +[0] The total amount of wall time = 59.640682 Test 045 fv3_gfs_v16_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_RRTMGP -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_RRTMGP +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_RRTMGP +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_RRTMGP Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2491,13 +2645,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 186.509627 +[0] The total amount of wall time = 185.700873 Test 046 fv3_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_RRTMGP_c192L127 Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2556,13 +2710,13 @@ Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 754.766127 +[0] The total amount of wall time = 755.918510 Test 047 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_RRTMGP -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_RRTMGP +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_RRTMGP_2thrd Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2627,13 +2781,13 @@ Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 173.473086 +[0] The total amount of wall time = 171.336213 Test 048 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_csawmg -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfsv16_csawmg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_csawmg +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfsv16_csawmg Checking test 049 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2678,13 +2832,13 @@ Checking test 049 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 141.440462 +[0] The total amount of wall time = 138.721067 Test 049 fv3_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_csawmgt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfsv16_csawmgt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_csawmgt +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfsv16_csawmgt Checking test 050 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2729,13 +2883,13 @@ Checking test 050 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 138.730052 +[0] The total amount of wall time = 135.319426 Test 050 fv3_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gocart_clm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gocart_clm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gocart_clm +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gocart_clm Checking test 051 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2780,13 +2934,13 @@ Checking test 051 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 56.399454 +[0] The total amount of wall time = 56.996322 Test 051 fv3_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_flake -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_flake +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_flake +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_flake Checking test 052 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2851,13 +3005,13 @@ Checking test 052 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 112.595488 +[0] The total amount of wall time = 113.800343 Test 052 fv3_gfs_v16_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_HAFS_v0_hwrf_thompson Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2922,13 +3076,13 @@ Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 172.318670 +[0] The total amount of wall time = 173.283911 Test 053 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_esg_HAFS_v0_hwrf_thompson Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2943,13 +3097,13 @@ Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 319.376611 +[0] The total amount of wall time = 317.950461 Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_ugwpv1 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfsv16_ugwpv1 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_ugwpv1 +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfsv16_ugwpv1 Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3008,13 +3162,13 @@ Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 197.423268 +[0] The total amount of wall time = 198.119832 Test 055 fv3_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_ugwpv1_warmstart -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_ugwpv1_warmstart +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfsv16_ugwpv1_warmstart Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3073,13 +3227,13 @@ Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 196.492951 +[0] The total amount of wall time = 197.160624 Test 056 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_ras -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_ras +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_ras +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_ras Checking test 057 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3144,13 +3298,13 @@ Checking test 057 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 107.154728 +[0] The total amount of wall time = 107.508172 Test 057 fv3_gfs_v16_ras PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_debug +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_debug Checking test 058 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3215,13 +3369,13 @@ Checking test 058 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 287.252461 +[0] The total amount of wall time = 288.349861 Test 058 fv3_gfs_v16_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_RRTMGP_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_RRTMGP_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_RRTMGP_debug +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_RRTMGP_debug Checking test 059 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3286,13 +3440,13 @@ Checking test 059 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 421.003161 +[0] The total amount of wall time = 421.136905 Test 059 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_regional_control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_regional_control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_control_debug +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_regional_control_debug Checking test 060 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3300,13 +3454,13 @@ Checking test 060 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 395.048739 +[0] The total amount of wall time = 397.179681 Test 060 fv3_regional_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control_debug +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_control_debug Checking test 061 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3333,13 +3487,13 @@ Checking test 061 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -[0] The total amount of wall time = 158.432698 +[0] The total amount of wall time = 159.099833 Test 061 fv3_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_stretched_nest_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_stretched_nest_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_stretched_nest_debug +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_stretched_nest_debug Checking test 062 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3356,13 +3510,13 @@ Checking test 062 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -[0] The total amount of wall time = 466.531974 +[0] The total amount of wall time = 467.833504 Test 062 fv3_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gsd_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gsd_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gsd_debug +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gsd_debug Checking test 063 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3427,13 +3581,13 @@ Checking test 063 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 233.187788 +[0] The total amount of wall time = 234.268544 Test 063 fv3_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gsd_diag3d_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gsd_diag3d_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gsd_diag3d_debug +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gsd_diag3d_debug Checking test 064 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3498,13 +3652,13 @@ Checking test 064 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 299.401541 +[0] The total amount of wall time = 305.663629 Test 064 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_thompson_debug +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_thompson_debug Checking test 065 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3569,13 +3723,13 @@ Checking test 065 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 388.296544 +[0] The total amount of wall time = 390.957925 Test 065 fv3_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_thompson_no_aero_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_thompson_no_aero_debug Checking test 066 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3640,13 +3794,13 @@ Checking test 066 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 373.632853 +[0] The total amount of wall time = 376.600889 Test 066 fv3_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_rrfs_v1beta_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_rrfs_v1beta_debug Checking test 067 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3711,13 +3865,13 @@ Checking test 067 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 226.032531 +[0] The total amount of wall time = 227.183578 Test 067 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_HAFS_v0_hwrf_thompson_debug Checking test 068 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3782,13 +3936,13 @@ Checking test 068 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 236.859379 +[0] The total amount of wall time = 237.979313 Test 068 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3803,13 +3957,13 @@ Checking test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 427.166449 +[0] The total amount of wall time = 429.819220 Test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfsv16_ugwpv1_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfsv16_ugwpv1_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_ugwpv1_debug +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfsv16_ugwpv1_debug Checking test 070 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3868,13 +4022,13 @@ Checking test 070 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 644.748322 +[0] The total amount of wall time = 649.006396 Test 070 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfs_v16_ras_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/fv3_gfs_v16_ras_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_ras_debug +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_ras_debug Checking test 071 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3939,13 +4093,13 @@ Checking test 071 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 367.711787 +[0] The total amount of wall time = 368.614784 Test 071 fv3_gfs_v16_ras_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_control Checking test 072 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3995,13 +4149,13 @@ Checking test 072 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 104.734314 +[0] The total amount of wall time = 107.726929 Test 072 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restart Checking test 073 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4051,13 +4205,13 @@ Checking test 073 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 68.511421 +[0] The total amount of wall time = 69.489798 Test 073 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_controlfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_controlfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_controlfrac +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_controlfrac Checking test 074 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4107,13 +4261,13 @@ Checking test 074 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 107.197741 +[0] The total amount of wall time = 108.683861 Test 074 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_controlfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restartfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_controlfrac +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restartfrac Checking test 075 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4163,13 +4317,13 @@ Checking test 075 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 67.601396 +[0] The total amount of wall time = 69.195530 Test 075 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_2threads Checking test 076 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4219,13 +4373,13 @@ Checking test 076 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 99.110525 +[0] The total amount of wall time = 100.132470 Test 076 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_decomp Checking test 077 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4275,13 +4429,13 @@ Checking test 077 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 105.059299 +[0] The total amount of wall time = 105.992224 Test 077 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_satmedmf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_satmedmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_satmedmf +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_satmedmf Checking test 078 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4331,13 +4485,13 @@ Checking test 078 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 105.531356 +[0] The total amount of wall time = 106.648747 Test 078 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_ca -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_ca +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_ca +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_ca Checking test 079 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4387,13 +4541,13 @@ Checking test 079 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 105.516421 +[0] The total amount of wall time = 107.002210 Test 079 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_control_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_control_c192 Checking test 080 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4443,13 +4597,13 @@ Checking test 080 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 420.033839 +[0] The total amount of wall time = 435.640989 Test 080 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restart_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restart_c192 Checking test 081 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4499,13 +4653,13 @@ Checking test 081 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 321.170421 +[0] The total amount of wall time = 324.099209 Test 081 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_controlfrac_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_controlfrac_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_controlfrac_c192 +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_controlfrac_c192 Checking test 082 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4555,13 +4709,13 @@ Checking test 082 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 434.211932 +[0] The total amount of wall time = 432.696751 Test 082 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_controlfrac_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restartfrac_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_controlfrac_c192 +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restartfrac_c192 Checking test 083 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4611,13 +4765,13 @@ Checking test 083 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 318.473224 +[0] The total amount of wall time = 324.394762 Test 083 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_control_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_control_c384 Checking test 084 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4670,13 +4824,13 @@ Checking test 084 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 1504.372053 +[0] The total amount of wall time = 1492.129092 Test 084 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restart_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restart_c384 Checking test 085 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4729,13 +4883,13 @@ Checking test 085 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 814.463830 +[0] The total amount of wall time = 813.438652 Test 085 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_controlfrac_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_controlfrac_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_controlfrac_c384 +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_controlfrac_c384 Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4788,13 +4942,13 @@ Checking test 086 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 1487.820012 +[0] The total amount of wall time = 1484.042405 Test 086 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_controlfrac_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restartfrac_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_controlfrac_c384 +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restartfrac_c384 Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4847,13 +5001,13 @@ Checking test 087 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 810.140505 +[0] The total amount of wall time = 808.615492 Test 087 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmark -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_bmark +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmark +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_bmark Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4906,13 +5060,13 @@ Checking test 088 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 908.673484 +[0] The total amount of wall time = 899.762563 Test 088 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmark -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restart_bmark +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmark +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restart_bmark Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4965,13 +5119,13 @@ Checking test 089 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 535.541494 +[0] The total amount of wall time = 537.526663 Test 089 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmarkfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_bmarkfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmarkfrac +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_bmarkfrac Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5024,13 +5178,13 @@ Checking test 090 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 907.028361 +[0] The total amount of wall time = 906.657884 Test 090 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmarkfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restart_bmarkfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmarkfrac +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restart_bmarkfrac Checking test 091 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5083,13 +5237,13 @@ Checking test 091 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 527.060841 +[0] The total amount of wall time = 538.894478 Test 091 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmarkfrac_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_bmarkfrac_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmarkfrac_v16 +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_bmarkfrac_v16 Checking test 092 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5142,13 +5296,13 @@ Checking test 092 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -[0] The total amount of wall time = 1527.292453 +[0] The total amount of wall time = 1539.866932 Test 092 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmarkfrac_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_restart_bmarkfrac_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmarkfrac_v16 +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restart_bmarkfrac_v16 Checking test 093 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5201,13 +5355,13 @@ Checking test 093 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -[0] The total amount of wall time = 889.341022 +[0] The total amount of wall time = 890.645158 Test 093 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmark_wave -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_bmark_wave +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmark_wave +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_bmark_wave Checking test 094 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5263,13 +5417,13 @@ Checking test 094 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 1584.499027 +[0] The total amount of wall time = 1565.480246 Test 094 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmarkfrac_wave -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_bmarkfrac_wave +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmarkfrac_wave +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_bmarkfrac_wave Checking test 095 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5325,13 +5479,13 @@ Checking test 095 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 1605.296026 +[0] The total amount of wall time = 1606.306985 Test 095 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_bmarkfrac_wave_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_bmarkfrac_wave_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmarkfrac_wave_v16 +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_bmarkfrac_wave_v16 Checking test 096 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5386,13 +5540,13 @@ Checking test 096 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 1077.270686 +[0] The total amount of wall time = 1074.074663 Test 096 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_control_wave -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_control_wave +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control_wave +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_control_wave Checking test 097 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5445,13 +5599,13 @@ Checking test 097 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -[0] The total amount of wall time = 869.614332 +[0] The total amount of wall time = 837.027269 Test 097 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_debug +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_debug Checking test 098 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5501,13 +5655,13 @@ Checking test 098 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -[0] The total amount of wall time = 333.094289 +[0] The total amount of wall time = 332.071663 Test 098 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/cpld_debugfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/cpld_debugfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_debugfrac +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_debugfrac Checking test 099 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5557,73 +5711,73 @@ Checking test 099 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -[0] The total amount of wall time = 332.127407 +[0] The total amount of wall time = 330.357965 Test 099 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/datm_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/datm_control_cfsr Checking test 100 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 -[0] The total amount of wall time = 110.732917 +[0] The total amount of wall time = 112.955041 Test 100 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/datm_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/datm_restart_cfsr Checking test 101 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 -[0] The total amount of wall time = 78.759201 +[0] The total amount of wall time = 78.936157 Test 101 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/datm_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/datm_control_gefs Checking test 102 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 -[0] The total amount of wall time = 103.414547 +[0] The total amount of wall time = 102.986334 Test 102 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/datm_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/datm_bulk_cfsr Checking test 103 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 -[0] The total amount of wall time = 108.913522 +[0] The total amount of wall time = 109.728267 Test 103 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/datm_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/datm_bulk_gefs Checking test 104 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 -[0] The total amount of wall time = 106.648635 +[0] The total amount of wall time = 104.146685 Test 104 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/datm_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/datm_mx025_cfsr Checking test 105 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5632,13 +5786,13 @@ Checking test 105 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 415.296184 +[0] The total amount of wall time = 405.554649 Test 105 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/datm_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/datm_mx025_gefs Checking test 106 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5647,188 +5801,23 @@ Checking test 106 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 411.871933 +[0] The total amount of wall time = 398.130464 Test 106 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_35117/datm_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/datm_debug_cfsr Checking test 107 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 -[0] The total amount of wall time = 315.378131 +[0] The total amount of wall time = 313.708469 Test 107 datm_debug_cfsr PASS -FAILED TESTS: -Test fv3_gfdlmprad_noahmp 030 failed in run_test failed -Test fv3_gfdlmp 028 failed in run_test failed -Test fv3_gfdlmprad_gwd 029 failed in run_test failed - -REGRESSION TEST FAILED -Fri Mar 26 02:39:01 UTC 2021 -Elapsed time: 03h:41m:13s. Have a nice day! -Fri Mar 26 15:29:18 UTC 2021 -Start Regression test - -Compile 001 elapsed time 1680 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_161716/fv3_gfdlmp -Checking test 001 fv3_gfdlmp 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 - -[0] The total amount of wall time = 52.084481 - -Test 001 fv3_gfdlmp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmprad_gwd -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_161716/fv3_gfdlmprad_gwd -Checking test 002 fv3_gfdlmprad_gwd 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 - -[0] The total amount of wall time = 52.396464 - -Test 002 fv3_gfdlmprad_gwd PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210324/fv3_gfdlmprad_noahmp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_161716/fv3_gfdlmprad_noahmp -Checking test 003 fv3_gfdlmprad_noahmp 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 - -[0] The total amount of wall time = 52.403795 - -Test 003 fv3_gfdlmprad_noahmp PASS - - REGRESSION TEST WAS SUCCESSFUL -Fri Mar 26 17:07:15 UTC 2021 -Elapsed time: 01h:37m:59s. Have a nice day! + +Mon Mar 29 19:24:46 UTC 2021 +Elapsed time: 01h:32m:25s. Have a nice day! diff --git a/tests/parm/stretched-nest-input.nml.IN b/tests/parm/stretched-nest-input.nml.IN index e6bc9be787..3410ffac86 100644 --- a/tests/parm/stretched-nest-input.nml.IN +++ b/tests/parm/stretched-nest-input.nml.IN @@ -112,8 +112,9 @@ / &fv_nest_nml grid_pes = 48, 48 - grid_coarse = 0, 1 tile_coarse = 0, 6 + num_tile_top = 6 + p_split=1 nest_refine = 0, 3 nest_ioffsets= 1, 14 nest_joffsets= 1, 19 diff --git a/tests/rt.sh b/tests/rt.sh index c5e54b9bef..b342a2b480 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -416,9 +416,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-20210324/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210329/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210324} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210329} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210324} diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index d1bac460d1..512a6da677 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -6,7 +6,6 @@ COMPILE | APP=ATM SUITES=FV3_GFS_2017_gfdlmp RUN | fv3_gfdlmp | | fv3 | COMPILE | APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | -RUN | fv3_gfs_v15p2 | | fv3 | RUN | fv3_gfs_v16 | | fv3 | RUN | fv3_gfs_v16_restart | | | fv3_gfs_v16 RUN | fv3_gfs_v16_stochy | | fv3 | From f89f5be49dff6da6dee420b92cafabf05229a1f6 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 31 Mar 2021 14:48:36 -0600 Subject: [PATCH 096/109] Update Thompson MP from gsl/develop, minor CCPP updates, minor regression test script updates (#498) - Updates to auto-rt in PR https://github.com/ufs-community/ufs-weather-model/pull/491 from @BrianCurtis-NOAA - Fixes to the regression testing scripts in branch https://github.com/DusanJovic-NOAA/ufs-weather-model/tree/rt_log_dir_fix from @DusanJovic-NOAA - Change baseline location on gaea to where emc.nemspara can write - Update of submodule pointers for fv3atm, ccpp-framework and ccpp-physics, and new Thompson MP lookup tables for the changes described in the associated PRs below - Remove tests fv3_gfs_v15p2_RRTMGP and fv3_gfs_v15p2_RRTMGP_debug from `tests/rt_gnu.conf` (same errors as with other GFS v15p2 tests previously, `compute_qs: saturation vapor pressure table overflow`) --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 432 ++++-------- tests/RegressionTests_cheyenne.intel.log | 662 +++++++++--------- tests/RegressionTests_gaea.intel.log | 632 ++++++++--------- tests/RegressionTests_hera.gnu.log | 440 ++++-------- tests/RegressionTests_hera.intel.log | 694 +++++++++--------- tests/RegressionTests_jet.intel.log | 430 ++++++------ tests/RegressionTests_orion.intel.log | 696 +++++++++--------- tests/RegressionTests_wcoss_cray.log | 450 ++++++------ tests/RegressionTests_wcoss_dell_p3.log | 698 +++++++++---------- tests/auto/.gitignore | 2 + tests/auto/jobs/bl.py | 219 ++++++ tests/auto/jobs/rt.py | 131 ++++ tests/auto/rt_auto.py | 352 ++++------ tests/auto/{rt_auto.sh => start_rt_auto.sh} | 33 +- tests/compile.sh | 6 +- tests/fv3_conf/c96_HAFS_v0_hwrf_run.IN | 4 +- tests/fv3_conf/compile_bsub.IN_wcoss_cray | 4 +- tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 | 6 +- tests/fv3_conf/compile_qsub.IN_cheyenne | 4 +- tests/fv3_conf/compile_qsub.IN_wcoss2 | 4 +- tests/fv3_conf/compile_slurm.IN_gaea | 4 +- tests/fv3_conf/compile_slurm.IN_hera | 4 +- tests/fv3_conf/compile_slurm.IN_jet | 4 +- tests/fv3_conf/compile_slurm.IN_orion | 4 +- tests/fv3_conf/fv3_bsub.IN_wcoss_cray | 4 +- tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 | 4 +- tests/fv3_conf/fv3_qsub.IN_cheyenne | 4 +- tests/fv3_conf/fv3_qsub.IN_wcoss2 | 4 +- tests/fv3_conf/fv3_slurm.IN_gaea | 4 +- tests/fv3_conf/fv3_slurm.IN_hera | 4 +- tests/fv3_conf/fv3_slurm.IN_jet | 4 +- tests/fv3_conf/fv3_slurm.IN_orion | 4 +- tests/fv3_conf/fv3_slurm.IN_stampede | 4 +- tests/fv3_conf/gf_thompson_run.IN | 6 +- tests/fv3_conf/gsd_run.IN | 6 +- tests/fv3_conf/gsd_sar_run.IN | 6 +- tests/rt.sh | 19 +- tests/rt_ccpp_dev.conf | 58 +- tests/rt_gnu.conf | 6 +- tests/run_compile.sh | 2 + tests/run_test.sh | 3 + 42 files changed, 3019 insertions(+), 3040 deletions(-) create mode 100644 tests/auto/.gitignore create mode 100644 tests/auto/jobs/bl.py create mode 100644 tests/auto/jobs/rt.py rename tests/auto/{rt_auto.sh => start_rt_auto.sh} (56%) mode change 100644 => 100755 tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 diff --git a/FV3 b/FV3 index 972d662f70..ebccc53404 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 972d662f7059b95993e9e3d314093d7306f70b63 +Subproject commit ebccc534045dc793c0a1191c5f24336d721a96ee diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index f46c889bb1..69d88c0c10 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,19 +1,19 @@ -Mon Mar 29 10:44:05 MDT 2021 +Tue Mar 30 20:01:31 MDT 2021 Start Regression test Compile 001 elapsed time 339 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp -Compile 002 elapsed time 338 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP -Compile 003 elapsed time 373 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y +Compile 002 elapsed time 339 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP +Compile 003 elapsed time 376 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y Compile 004 elapsed time 342 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 005 elapsed time 308 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 006 elapsed time 186 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y +Compile 005 elapsed time 306 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 006 elapsed time 191 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y Compile 007 elapsed time 380 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -Compile 008 elapsed time 191 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 009 elapsed time 462 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 010 elapsed time 375 seconds. APP=DATM_NEMS +Compile 008 elapsed time 190 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 009 elapsed time 465 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 010 elapsed time 374 seconds. APP=DATM_NEMS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfdlmp -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfdlmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfdlmp +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -58,13 +58,13 @@ Checking test 001 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 73.019305 +The total amount of wall time = 74.007640 Test 001 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_gfs_v16 Checking test 002 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -141,13 +141,13 @@ Checking test 002 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 232.109430 +The total amount of wall time = 234.570355 Test 002 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_gfs_v16_restart Checking test 003 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -194,13 +194,13 @@ Checking test 003 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 139.100033 +The total amount of wall time = 139.743956 Test 003 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_stochy -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_gfs_v16_stochy Checking test 004 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -265,13 +265,13 @@ Checking test 004 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 90.014133 +The total amount of wall time = 90.308458 Test 004 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_flake -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16_flake +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_gfs_v16_flake Checking test 005 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -336,14 +336,14 @@ Checking test 005 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 150.106242 +The total amount of wall time = 150.739226 Test 005 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v15p2_RRTMGP -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v15p2_RRTMGP -Checking test 006 fv3_gfs_v15p2_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_gfs_v16_RRTMGP +Checking test 006 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -407,85 +407,14 @@ Checking test 006 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 258.292202 +The total amount of wall time = 264.421122 -Test 006 fv3_gfs_v15p2_RRTMGP PASS +Test 006 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16_RRTMGP -Checking test 007 fv3_gfs_v16_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 ............SKIP for gnu compilers - 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 - -The total amount of wall time = 263.320161 - -Test 007 fv3_gfs_v16_RRTMGP PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gsd -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gsd -Checking test 008 fv3_gsd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gsd +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_gsd +Checking test 007 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -573,14 +502,14 @@ Checking test 008 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 359.418388 +The total amount of wall time = 352.491321 -Test 008 fv3_gsd PASS +Test 007 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_thompson -Checking test 009 fv3_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_thompson +Checking test 008 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -644,14 +573,14 @@ Checking test 009 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 168.282812 +The total amount of wall time = 158.276630 -Test 009 fv3_thompson PASS +Test 008 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_thompson_no_aero -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_thompson_no_aero -Checking test 010 fv3_thompson_no_aero results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_thompson_no_aero +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_thompson_no_aero +Checking test 009 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -715,14 +644,14 @@ Checking test 010 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 160.611284 +The total amount of wall time = 156.434045 -Test 010 fv3_thompson_no_aero PASS +Test 009 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_rrfs_v1beta -Checking test 011 fv3_rrfs_v1beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_rrfs_v1beta +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_rrfs_v1beta +Checking test 010 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -786,14 +715,14 @@ Checking test 011 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 182.263180 +The total amount of wall time = 168.795636 -Test 011 fv3_rrfs_v1beta PASS +Test 010 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_HAFS_v0_hwrf_thompson -Checking test 012 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_HAFS_v0_hwrf_thompson +Checking test 011 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -857,14 +786,14 @@ Checking test 012 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 260.844523 +The total amount of wall time = 259.989939 -Test 012 fv3_HAFS_v0_hwrf_thompson PASS +Test 011 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 013 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 012 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -878,14 +807,14 @@ Checking test 013 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 464.655560 +The total amount of wall time = 463.786339 -Test 013 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 012 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfsv16_ugwpv1 -Checking test 014 fv3_gfsv16_ugwpv1 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_gfsv16_ugwpv1 +Checking test 013 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -943,14 +872,14 @@ Checking test 014 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 308.603458 +The total amount of wall time = 308.689729 -Test 014 fv3_gfsv16_ugwpv1 PASS +Test 013 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfsv16_ugwpv1_warmstart -Checking test 015 fv3_gfsv16_ugwpv1_warmstart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_gfsv16_ugwpv1_warmstart +Checking test 014 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1008,14 +937,14 @@ Checking test 015 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 305.799437 +The total amount of wall time = 305.902430 -Test 015 fv3_gfsv16_ugwpv1_warmstart PASS +Test 014 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_ras -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16_ras -Checking test 016 fv3_gfs_v16_ras results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16_ras +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_gfs_v16_ras +Checking test 015 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1079,14 +1008,14 @@ Checking test 016 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 168.027719 +The total amount of wall time = 168.622870 -Test 016 fv3_gfs_v16_ras PASS +Test 015 fv3_gfs_v16_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_control_debug -Checking test 017 fv3_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_control_debug +Checking test 016 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1112,28 +1041,28 @@ Checking test 017 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 76.643208 +The total amount of wall time = 75.881059 -Test 017 fv3_control_debug PASS +Test 016 fv3_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_regional_control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_regional_control_debug -Checking test 018 fv3_regional_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_regional_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_regional_control_debug +Checking test 017 fv3_regional_control_debug 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 -The total amount of wall time = 189.487170 +The total amount of wall time = 187.374869 -Test 018 fv3_regional_control_debug PASS +Test 017 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_rrfs_v1beta_debug -Checking test 019 fv3_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_rrfs_v1beta_debug +Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1197,14 +1126,14 @@ Checking test 019 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 113.573650 +The total amount of wall time = 110.952925 -Test 019 fv3_rrfs_v1beta_debug PASS +Test 018 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gsd_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gsd_debug -Checking test 020 fv3_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gsd_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_gsd_debug +Checking test 019 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1268,85 +1197,14 @@ Checking test 020 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 119.437540 - -Test 020 fv3_gsd_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_thompson_debug -Checking test 021 fv3_thompson_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 ............SKIP for gnu compilers - 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 - -The total amount of wall time = 191.823232 +The total amount of wall time = 117.123120 -Test 021 fv3_thompson_debug PASS +Test 019 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_thompson_no_aero_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_thompson_no_aero_debug -Checking test 022 fv3_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_thompson_debug +Checking test 020 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1410,14 +1268,14 @@ Checking test 022 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 184.933272 +The total amount of wall time = 185.146279 -Test 022 fv3_thompson_no_aero_debug PASS +Test 020 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v15p2_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v15p2_debug -Checking test 023 fv3_gfs_v15p2_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_thompson_no_aero_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_thompson_no_aero_debug +Checking test 021 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1481,14 +1339,14 @@ Checking test 023 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 138.386383 +The total amount of wall time = 180.237238 -Test 023 fv3_gfs_v15p2_debug PASS +Test 021 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16_debug -Checking test 024 fv3_gfs_v16_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v15p2_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_gfs_v15p2_debug +Checking test 022 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1552,14 +1410,14 @@ Checking test 024 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 149.443934 +The total amount of wall time = 135.395139 -Test 024 fv3_gfs_v16_debug PASS +Test 022 fv3_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v15p2_RRTMGP_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v15p2_RRTMGP_debug -Checking test 025 fv3_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_gfs_v16_debug +Checking test 023 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1623,14 +1481,14 @@ Checking test 025 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 198.166943 +The total amount of wall time = 148.899634 -Test 025 fv3_gfs_v15p2_RRTMGP_debug PASS +Test 023 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16_RRTMGP_debug -Checking test 026 fv3_gfs_v16_RRTMGP_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_gfs_v16_RRTMGP_debug +Checking test 024 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1694,14 +1552,14 @@ Checking test 026 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 205.441786 +The total amount of wall time = 205.954916 -Test 026 fv3_gfs_v16_RRTMGP_debug PASS +Test 024 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_multigases -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_multigases -Checking test 027 fv3_multigases results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_multigases +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_multigases +Checking test 025 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1771,14 +1629,14 @@ Checking test 027 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 178.915134 +The total amount of wall time = 178.290976 -Test 027 fv3_multigases PASS +Test 025 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 028 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 026 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1842,14 +1700,14 @@ Checking test 028 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 113.099966 +The total amount of wall time = 113.913053 -Test 028 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 026 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 027 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -1863,14 +1721,14 @@ Checking test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 215.362078 +The total amount of wall time = 217.375774 -Test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 027 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfsv16_ugwpv1_debug -Checking test 030 fv3_gfsv16_ugwpv1_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_gfsv16_ugwpv1_debug +Checking test 028 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1928,14 +1786,14 @@ Checking test 030 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 306.104500 +The total amount of wall time = 307.641779 -Test 030 fv3_gfsv16_ugwpv1_debug PASS +Test 028 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_73511/fv3_gfs_v16_ras_debug -Checking test 031 fv3_gfs_v16_ras_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_2884/fv3_gfs_v16_ras_debug +Checking test 029 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1999,11 +1857,11 @@ Checking test 031 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 172.783650 +The total amount of wall time = 173.757978 -Test 031 fv3_gfs_v16_ras_debug PASS +Test 029 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 29 11:04:50 MDT 2021 -Elapsed time: 00h:20m:45s. Have a nice day! +Tue Mar 30 20:19:55 MDT 2021 +Elapsed time: 00h:18m:25s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 9bb9d6c7dc..616ec9b718 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,28 +1,28 @@ -Mon Mar 29 13:58:12 MDT 2021 +Wed Mar 31 05:57:46 MDT 2021 Start Regression test -Compile 001 elapsed time 734 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 712 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 755 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 753 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 787 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 885 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 988 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 008 elapsed time 776 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 752 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 808 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 862 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 001 elapsed time 712 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 713 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 754 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 750 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 774 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 859 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 981 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 008 elapsed time 756 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 749 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 820 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 846 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras Compile 012 elapsed time 257 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 267 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 014 elapsed time 259 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 015 elapsed time 1047 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 016 elapsed time 1046 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 366 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 018 elapsed time 656 seconds. APP=DATM_NEMS -Compile 019 elapsed time 250 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_control +Compile 013 elapsed time 274 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 014 elapsed time 257 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 015 elapsed time 1031 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 016 elapsed time 1112 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 355 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 644 seconds. APP=DATM_NEMS +Compile 019 elapsed time 243 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -87,13 +87,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.526805 +The total amount of wall time = 48.110858 Test 001 fv3_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -158,13 +158,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.798815 +The total amount of wall time = 50.282031 Test 002 fv3_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -229,13 +229,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 107.170912 +The total amount of wall time = 107.484896 Test 003 fv3_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -282,13 +282,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 22.990870 +The total amount of wall time = 23.071227 Test 004 fv3_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_read_inc -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_read_inc +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_read_inc +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -353,13 +353,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.431305 +The total amount of wall time = 47.046459 Test 005 fv3_read_inc PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_wrtGauss_netcdf_esmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -404,13 +404,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 130.110830 +The total amount of wall time = 119.281114 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_wrtGauss_netcdf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_netcdf +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -455,13 +455,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.828960 +The total amount of wall time = 48.359931 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_wrtGauss_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -506,13 +506,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 49.275015 +The total amount of wall time = 49.203084 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGlatlon_netcdf -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_wrtGlatlon_netcdf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGlatlon_netcdf +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -557,13 +557,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.104866 +The total amount of wall time = 48.450142 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_wrtGauss_nemsio +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_nemsio +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -608,13 +608,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.608599 +The total amount of wall time = 46.737869 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_wrtGauss_nemsio_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -659,13 +659,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 123.013105 +The total amount of wall time = 125.348901 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stochy -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -730,13 +730,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.376869 +The total amount of wall time = 57.585619 Test 012 fv3_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_ca -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_ca +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -801,13 +801,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 30.076032 +The total amount of wall time = 31.189964 Test 013 fv3_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lndp -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_lndp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_lndp +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -872,13 +872,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.624702 +The total amount of wall time = 53.129360 Test 014 fv3_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_iau -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_iau +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_iau +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -943,13 +943,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 46.805202 +The total amount of wall time = 46.557641 Test 015 fv3_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lheatstrg -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_lheatstrg +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_lheatstrg +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -994,13 +994,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 50.116706 +The total amount of wall time = 48.467633 Test 016 fv3_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_multigases_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_multigases_repro +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_multigases_repro +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1071,13 +1071,13 @@ Checking test 017 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 111.777375 +The total amount of wall time = 113.764292 Test 017 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_32bit -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_control_32bit +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control_32bit +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1142,13 +1142,13 @@ Checking test 018 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 40.009813 +The total amount of wall time = 40.901148 Test 018 fv3_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_stretched +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stretched +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1201,13 +1201,13 @@ Checking test 019 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 333.539238 +The total amount of wall time = 332.641528 Test 019 fv3_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_stretched_nest +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stretched_nest +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1271,13 +1271,13 @@ Checking test 020 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 354.356366 +The total amount of wall time = 356.081129 Test 020 fv3_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_regional_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1285,25 +1285,25 @@ Checking test 021 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 715.804547 +The total amount of wall time = 711.611913 Test 021 fv3_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_restart -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_regional_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_restart +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_regional_restart Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 393.055057 +The total amount of wall time = 388.924027 Test 022 fv3_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_regional_quilt +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_quilt +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1314,13 +1314,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 743.049345 +The total amount of wall time = 738.649039 Test 023 fv3_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_hafs -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_regional_quilt_hafs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_quilt_hafs +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1329,13 +1329,13 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 740.662523 +The total amount of wall time = 732.759227 Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_regional_quilt_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1343,13 +1343,13 @@ Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 720.699318 +The total amount of wall time = 738.156891 Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfdlmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmp +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1394,13 +1394,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.767034 +The total amount of wall time = 53.392765 Test 026 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_gwd -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfdlmprad_gwd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad_gwd +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1445,13 +1445,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 53.175454 +The total amount of wall time = 54.233840 Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_noahmp -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfdlmprad_noahmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad_noahmp +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1496,13 +1496,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 53.205348 +The total amount of wall time = 53.439044 Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_csawmg -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_csawmg +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_csawmg +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1547,13 +1547,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 139.763589 +The total amount of wall time = 139.316400 Test 029 fv3_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmf -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_satmedmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_satmedmf +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1598,13 +1598,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.254615 +The total amount of wall time = 59.173568 Test 030 fv3_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmfq -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_satmedmfq +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_satmedmfq +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1649,13 +1649,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.227283 +The total amount of wall time = 59.204921 Test 031 fv3_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp_32bit -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfdlmp_32bit +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmp_32bit +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1700,13 +1700,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 41.948815 +The total amount of wall time = 44.106991 Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_32bit_post -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfdlmprad_32bit_post +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad_32bit_post +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1755,13 @@ Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 73.807482 +The total amount of wall time = 72.886931 Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_cpt -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_cpt +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_cpt +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1812,13 +1812,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 334.085461 +The total amount of wall time = 330.789148 Test 034 fv3_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gsd +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1907,13 +1907,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 204.664541 +The total amount of wall time = 194.396435 Test 035 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rap -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_rap +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_rap +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_rap Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,13 +1978,13 @@ Checking test 036 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 103.353145 +The total amount of wall time = 98.663150 Test 036 fv3_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_hrrr -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_hrrr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_hrrr +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_hrrr Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2049,13 +2049,13 @@ Checking test 037 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 106.843635 +The total amount of wall time = 96.460847 Test 037 fv3_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_thompson Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2120,13 +2120,13 @@ Checking test 038 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 96.180730 +The total amount of wall time = 89.669853 Test 038 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson_no_aero +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_thompson_no_aero Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2191,13 +2191,13 @@ Checking test 039 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 91.045639 +The total amount of wall time = 89.257883 Test 039 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_rrfs_v1beta +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_rrfs_v1beta Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2262,13 +2262,13 @@ Checking test 040 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 107.823103 +The total amount of wall time = 96.921783 Test 040 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfs_v16 Checking test 041 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2345,13 +2345,13 @@ Checking test 041 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 170.037949 +The total amount of wall time = 173.722201 Test 041 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfs_v16_restart Checking test 042 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2398,13 +2398,13 @@ Checking test 042 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 104.675764 +The total amount of wall time = 103.349296 Test 042 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_stochy -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfs_v16_stochy Checking test 043 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2469,13 +2469,13 @@ Checking test 043 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 63.357942 +The total amount of wall time = 66.274458 Test 043 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfs_v16_RRTMGP Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2540,13 +2540,13 @@ Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 226.307420 +The total amount of wall time = 228.180089 Test 044 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfs_v16_RRTMGP_c192L127 Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2605,13 +2605,13 @@ Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 932.539768 +The total amount of wall time = 934.256608 Test 045 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfs_v16_RRTMGP_2thrd Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2676,13 +2676,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 477.641270 +The total amount of wall time = 481.079549 Test 046 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gocart_clm -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gocart_clm +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gocart_clm +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gocart_clm Checking test 047 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2727,13 +2727,13 @@ Checking test 047 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 56.790882 +The total amount of wall time = 56.850072 Test 047 fv3_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_flake -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_flake +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfs_v16_flake Checking test 048 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2798,13 +2798,13 @@ Checking test 048 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 115.824688 +The total amount of wall time = 131.940021 Test 048 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_HAFS_v0_hwrf_thompson Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2869,13 +2869,13 @@ Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 196.509575 +The total amount of wall time = 196.231343 Test 049 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_esg_HAFS_v0_hwrf_thompson Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2890,13 +2890,13 @@ Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 339.206720 +The total amount of wall time = 337.262058 Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfsv16_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfsv16_ugwpv1 Checking test 051 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2955,13 +2955,13 @@ Checking test 051 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 216.820105 +The total amount of wall time = 216.424086 Test 051 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfsv16_ugwpv1_warmstart Checking test 052 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3020,13 +3020,13 @@ Checking test 052 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 217.505557 +The total amount of wall time = 217.309093 Test 052 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_ras +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfs_v16_ras Checking test 053 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3091,13 +3091,13 @@ Checking test 053 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 116.134393 +The total amount of wall time = 115.308140 Test 053 fv3_gfs_v16_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfs_v16_debug Checking test 054 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3162,13 +3162,13 @@ Checking test 054 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 272.803358 +The total amount of wall time = 279.299568 Test 054 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_RRTMGP_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfs_v16_RRTMGP_debug Checking test 055 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3233,13 +3233,13 @@ Checking test 055 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 393.852456 +The total amount of wall time = 400.934315 Test 055 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_regional_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_regional_control_debug Checking test 056 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3247,13 +3247,13 @@ Checking test 056 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 367.086292 +The total amount of wall time = 370.951342 Test 056 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_control_debug Checking test 057 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3280,13 +3280,13 @@ Checking test 057 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 147.025456 +The total amount of wall time = 152.231807 Test 057 fv3_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_stretched_nest_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stretched_nest_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_stretched_nest_debug Checking test 058 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3303,13 +3303,13 @@ Checking test 058 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 433.249022 +The total amount of wall time = 438.498754 Test 058 fv3_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gsd_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gsd_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gsd_debug Checking test 059 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3374,13 +3374,13 @@ Checking test 059 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 219.370895 +The total amount of wall time = 223.826594 Test 059 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_diag3d_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gsd_diag3d_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gsd_diag3d_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gsd_diag3d_debug Checking test 060 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3445,13 +3445,13 @@ Checking test 060 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 266.439669 +The total amount of wall time = 264.526198 Test 060 fv3_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_thompson_debug Checking test 061 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3516,13 +3516,13 @@ Checking test 061 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 362.740125 +The total amount of wall time = 369.883158 Test 061 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson_no_aero_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_thompson_no_aero_debug Checking test 062 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3587,13 +3587,13 @@ Checking test 062 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 349.289812 +The total amount of wall time = 356.386770 Test 062 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_rrfs_v1beta_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_rrfs_v1beta_debug Checking test 063 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3658,13 +3658,13 @@ Checking test 063 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 211.106020 +The total amount of wall time = 216.998776 Test 063 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_HAFS_v0_hwrf_thompson_debug Checking test 064 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3729,13 +3729,13 @@ Checking test 064 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 224.774415 +The total amount of wall time = 225.130742 Test 064 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 065 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3750,13 +3750,13 @@ Checking test 065 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 399.374049 +The total amount of wall time = 400.185128 Test 065 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfsv16_ugwpv1_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfsv16_ugwpv1_debug Checking test 066 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3815,13 +3815,13 @@ Checking test 066 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 608.831074 +The total amount of wall time = 611.714808 Test 066 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/fv3_gfs_v16_ras_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/fv3_gfs_v16_ras_debug Checking test 067 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3886,13 +3886,13 @@ Checking test 067 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 346.901587 +The total amount of wall time = 353.911234 Test 067 fv3_gfs_v16_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_control Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3942,13 +3942,13 @@ Checking test 068 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 99.930076 +The total amount of wall time = 97.968757 Test 068 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_restart Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3998,13 +3998,13 @@ Checking test 069 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 52.892804 +The total amount of wall time = 54.607792 Test 069 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_controlfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_controlfrac Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4054,13 +4054,13 @@ Checking test 070 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 98.227868 +The total amount of wall time = 97.791128 Test 070 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restartfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_restartfrac Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4110,13 +4110,13 @@ Checking test 071 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 54.639463 +The total amount of wall time = 54.427068 Test 071 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_2threads Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4166,13 +4166,13 @@ Checking test 072 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 256.356918 +The total amount of wall time = 259.340500 Test 072 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_decomp Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4222,13 +4222,13 @@ Checking test 073 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 93.596933 +The total amount of wall time = 96.061882 Test 073 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_satmedmf -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_satmedmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_satmedmf +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_satmedmf Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4278,13 +4278,13 @@ Checking test 074 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 93.337159 +The total amount of wall time = 95.703503 Test 074 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_ca -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_ca +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_ca Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4334,13 +4334,13 @@ Checking test 075 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 96.153916 +The total amount of wall time = 96.138269 Test 075 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_control_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_control_c192 Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4390,13 +4390,13 @@ Checking test 076 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 408.804021 +The total amount of wall time = 408.742485 Test 076 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restart_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_restart_c192 Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4446,13 +4446,13 @@ Checking test 077 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 292.598134 +The total amount of wall time = 292.870514 Test 077 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_controlfrac_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_controlfrac_c192 Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4502,13 +4502,13 @@ Checking test 078 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 403.359160 +The total amount of wall time = 407.046572 Test 078 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restartfrac_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_restartfrac_c192 Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4558,13 +4558,13 @@ Checking test 079 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 292.959986 +The total amount of wall time = 291.165526 Test 079 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c384 -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_control_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_control_c384 Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4617,13 +4617,13 @@ Checking test 080 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1594.101123 +The total amount of wall time = 1590.577507 Test 080 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c384 -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restart_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_restart_c384 Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4676,13 +4676,13 @@ Checking test 081 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 845.361372 +The total amount of wall time = 837.295993 Test 081 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_controlfrac_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_controlfrac_c384 Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4735,13 +4735,13 @@ Checking test 082 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1595.999315 +The total amount of wall time = 1601.229539 Test 082 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restartfrac_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_restartfrac_c384 Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4794,13 +4794,13 @@ Checking test 083 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 841.274608 +The total amount of wall time = 839.801289 Test 083 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_bmark +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmark +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_bmark Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4853,13 +4853,13 @@ Checking test 084 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 908.696348 +The total amount of wall time = 904.667933 Test 084 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restart_bmark +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmark +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_restart_bmark Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4912,13 +4912,13 @@ Checking test 085 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 495.052066 +The total amount of wall time = 495.540015 Test 085 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_bmarkfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_bmarkfrac Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4971,13 +4971,13 @@ Checking test 086 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 906.805467 +The total amount of wall time = 905.748172 Test 086 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restart_bmarkfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_restart_bmarkfrac Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5030,13 +5030,13 @@ Checking test 087 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 497.083469 +The total amount of wall time = 493.215613 Test 087 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_bmarkfrac_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_bmarkfrac_v16 Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5089,13 +5089,13 @@ Checking test 088 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -The total amount of wall time = 1634.233073 +The total amount of wall time = 1624.815790 Test 088 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_restart_bmarkfrac_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_restart_bmarkfrac_v16 Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5148,13 +5148,13 @@ Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -The total amount of wall time = 873.710903 +The total amount of wall time = 882.730217 Test 089 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark_wave -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_bmark_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmark_wave +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_bmark_wave Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5210,13 +5210,13 @@ Checking test 090 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 1570.499984 +The total amount of wall time = 1571.612288 Test 090 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_wave -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_bmarkfrac_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac_wave +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_bmarkfrac_wave Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5272,13 +5272,13 @@ Checking test 091 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 1571.579022 +The total amount of wall time = 1563.568665 Test 091 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_bmarkfrac_wave_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_bmarkfrac_wave_v16 Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5333,13 +5333,13 @@ Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 1057.432413 +The total amount of wall time = 1028.924301 Test 092 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_wave -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_control_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_wave +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_control_wave Checking test 093 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5392,13 +5392,13 @@ Checking test 093 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 827.421768 +The total amount of wall time = 804.330378 Test 093 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_debug Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5448,13 +5448,13 @@ Checking test 094 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 308.765252 +The total amount of wall time = 311.610536 Test 094 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_debugfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/cpld_debugfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_debugfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/cpld_debugfrac Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5504,73 +5504,73 @@ Checking test 095 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 306.332658 +The total amount of wall time = 310.286677 Test 095 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/datm_control_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 102.505823 +The total amount of wall time = 101.646231 Test 096 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/datm_restart_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 63.779888 +The total amount of wall time = 63.752959 Test 097 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/datm_control_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 95.967009 +The total amount of wall time = 95.376893 Test 098 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/datm_bulk_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 98.251686 +The total amount of wall time = 98.506403 Test 099 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/datm_bulk_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/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 Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 96.163211 +The total amount of wall time = 96.103516 Test 100 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/datm_mx025_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5579,13 +5579,13 @@ Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 395.042702 +The total amount of wall time = 387.900527 Test 101 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/datm_mx025_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5594,23 +5594,23 @@ Checking test 102 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 390.983819 +The total amount of wall time = 388.256182 Test 102 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_50511/datm_debug_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_43538/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 285.850921 +The total amount of wall time = 285.358273 Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 29 15:47:09 MDT 2021 -Elapsed time: 01h:48m:57s. Have a nice day! +Wed Mar 31 07:35:03 MDT 2021 +Elapsed time: 01h:37m:17s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 1ba610f814..295580d848 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,27 +1,27 @@ -Mon Mar 29 10:33:02 EDT 2021 +Wed Mar 31 14:48:03 EDT 2021 Start Regression test -Compile 001 elapsed time 656 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 647 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 647 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 656 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 655 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 708 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 762 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 008 elapsed time 654 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 702 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 666 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 709 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 249 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 252 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 014 elapsed time 243 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 015 elapsed time 690 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 016 elapsed time 267 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 532 seconds. APP=DATM_NEMS -Compile 018 elapsed time 242 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_control +Compile 001 elapsed time 686 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 773 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 773 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 787 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 810 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 773 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 843 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 008 elapsed time 787 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 680 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 790 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 994 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 732 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 803 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 014 elapsed time 727 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 015 elapsed time 997 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 016 elapsed time 962 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 1208 seconds. APP=DATM_NEMS +Compile 018 elapsed time 615 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -86,13 +86,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 93.550980 +The total amount of wall time = 50.174813 Test 001 fv3_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -157,13 +157,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 45.295537 +The total amount of wall time = 44.764782 Test 002 fv3_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -228,13 +228,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.018466 +The total amount of wall time = 56.485595 Test 003 fv3_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -281,13 +281,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 21.802953 +The total amount of wall time = 23.313295 Test 004 fv3_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_read_inc -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_read_inc +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_read_inc +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -352,13 +352,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 40.889257 +The total amount of wall time = 71.352378 Test 005 fv3_read_inc PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_wrtGauss_netcdf_esmf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -403,13 +403,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 101.836804 +The total amount of wall time = 101.083478 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_wrtGauss_netcdf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_netcdf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -454,13 +454,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 40.303697 +The total amount of wall time = 40.562493 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -505,13 +505,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 149.126987 +The total amount of wall time = 286.141075 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_wrtGlatlon_netcdf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGlatlon_netcdf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -556,13 +556,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 40.840686 +The total amount of wall time = 59.181998 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_wrtGauss_nemsio +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_nemsio +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -607,13 +607,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 40.890248 +The total amount of wall time = 46.419470 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_wrtGauss_nemsio_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -658,13 +658,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 133.660993 +The total amount of wall time = 110.951396 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stochy -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -729,13 +729,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.088304 +The total amount of wall time = 47.728099 Test 012 fv3_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_ca -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_ca +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_ca +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -800,13 +800,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 28.046050 +The total amount of wall time = 28.772703 Test 013 fv3_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lndp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -871,13 +871,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.099010 +The total amount of wall time = 49.598280 Test 014 fv3_lndp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_iau -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_iau +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_iau +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -942,13 +942,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 41.063086 +The total amount of wall time = 43.331431 Test 015 fv3_iau PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lheatstrg -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_lheatstrg +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_lheatstrg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -993,13 +993,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 41.712579 +The total amount of wall time = 40.239251 Test 016 fv3_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_multigases_repro -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_multigases_repro +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_multigases_repro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1070,13 +1070,13 @@ Checking test 017 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 125.351024 +The total amount of wall time = 93.875906 Test 017 fv3_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_32bit -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_control_32bit +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control_32bit +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1141,13 +1141,13 @@ Checking test 018 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 39.728770 +The total amount of wall time = 48.999196 Test 018 fv3_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_stretched +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stretched +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1200,13 +1200,13 @@ Checking test 019 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 307.233334 +The total amount of wall time = 302.762151 Test 019 fv3_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_stretched_nest +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stretched_nest +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1270,13 +1270,13 @@ Checking test 020 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 364.732464 +The total amount of wall time = 333.182973 Test 020 fv3_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1284,25 +1284,25 @@ Checking test 021 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 676.419757 +The total amount of wall time = 668.505211 Test 021 fv3_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_regional_restart Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 370.487759 +The total amount of wall time = 368.386881 Test 022 fv3_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_regional_quilt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_quilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1313,13 +1313,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 692.112350 +The total amount of wall time = 685.666148 Test 023 fv3_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_hafs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_regional_quilt_hafs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_quilt_hafs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1328,13 +1328,13 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 698.044656 +The total amount of wall time = 683.682631 Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_regional_quilt_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1342,13 +1342,13 @@ Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 694.585469 +The total amount of wall time = 702.879462 Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfdlmp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1393,13 +1393,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 84.574834 +The total amount of wall time = 47.820318 Test 026 fv3_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_gwd -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfdlmprad_gwd +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad_gwd +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1444,13 +1444,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 74.131852 +The total amount of wall time = 53.022131 Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_noahmp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfdlmprad_noahmp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad_noahmp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1495,13 +1495,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 88.514824 +The total amount of wall time = 48.924039 Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_csawmg -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_csawmg +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_csawmg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1546,13 +1546,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 121.739591 +The total amount of wall time = 126.002535 Test 029 fv3_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_satmedmf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_satmedmf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1597,13 +1597,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.471660 +The total amount of wall time = 71.694143 Test 030 fv3_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmfq -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_satmedmfq +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_satmedmfq +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1648,13 +1648,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.378236 +The total amount of wall time = 51.045916 Test 031 fv3_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp_32bit -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfdlmp_32bit +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmp_32bit +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1699,13 +1699,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 39.133520 +The total amount of wall time = 42.429411 Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfdlmprad_32bit_post +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad_32bit_post +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1754,13 +1754,13 @@ Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 79.778399 +The total amount of wall time = 79.347056 Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_cpt -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_cpt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_cpt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1811,13 +1811,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 288.484948 +The total amount of wall time = 288.075899 Test 034 fv3_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gsd +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gsd +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1906,13 +1906,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 211.211127 +The total amount of wall time = 184.512953 Test 035 fv3_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rap -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_rap +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_rap +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_rap Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1977,13 +1977,13 @@ Checking test 036 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 104.377006 +The total amount of wall time = 96.243462 Test 036 fv3_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_hrrr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_hrrr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_hrrr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_hrrr Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2048,13 +2048,13 @@ Checking test 037 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 99.719980 +The total amount of wall time = 89.734978 Test 037 fv3_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_thompson Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2119,13 +2119,13 @@ Checking test 038 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 91.538124 +The total amount of wall time = 85.402476 Test 038 fv3_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_thompson_no_aero +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson_no_aero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_thompson_no_aero Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2190,13 +2190,13 @@ Checking test 039 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 85.852580 +The total amount of wall time = 111.524850 Test 039 fv3_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_rrfs_v1beta Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2261,13 +2261,13 @@ Checking test 040 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 102.101399 +The total amount of wall time = 91.876529 Test 040 fv3_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfs_v16 Checking test 041 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2344,13 +2344,13 @@ Checking test 041 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 169.664064 +The total amount of wall time = 158.936340 Test 041 fv3_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfs_v16_restart Checking test 042 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2397,13 +2397,13 @@ Checking test 042 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 91.350433 +The total amount of wall time = 97.335443 Test 042 fv3_gfs_v16_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_stochy -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfs_v16_stochy Checking test 043 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2468,13 +2468,13 @@ Checking test 043 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 57.464023 +The total amount of wall time = 57.713917 Test 043 fv3_gfs_v16_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_RRTMGP +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfs_v16_RRTMGP Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2539,13 +2539,13 @@ Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 178.081939 +The total amount of wall time = 181.860915 Test 044 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfs_v16_RRTMGP_c192L127 Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2604,13 +2604,13 @@ Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 715.011641 +The total amount of wall time = 719.362767 Test 045 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfs_v16_RRTMGP_2thrd Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2675,13 +2675,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 270.902248 +The total amount of wall time = 274.543156 Test 046 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_csawmg -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfsv16_csawmg +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_csawmg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfsv16_csawmg Checking test 047 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2726,13 +2726,13 @@ Checking test 047 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 129.458617 +The total amount of wall time = 129.701909 Test 047 fv3_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_csawmgt -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfsv16_csawmgt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfsv16_csawmgt Checking test 048 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2777,13 +2777,13 @@ Checking test 048 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 127.461967 +The total amount of wall time = 131.454042 Test 048 fv3_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gocart_clm -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gocart_clm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gocart_clm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gocart_clm Checking test 049 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2828,13 +2828,13 @@ Checking test 049 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 51.567219 +The total amount of wall time = 51.522579 Test 049 fv3_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_flake -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_flake +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_flake +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfs_v16_flake Checking test 050 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2899,13 +2899,13 @@ Checking test 050 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 108.657456 +The total amount of wall time = 108.969416 Test 050 fv3_gfs_v16_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_HAFS_v0_hwrf_thompson Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2970,13 +2970,13 @@ Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 162.191987 +The total amount of wall time = 161.156980 Test 051 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_esg_HAFS_v0_hwrf_thompson Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2991,13 +2991,13 @@ Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 300.207929 +The total amount of wall time = 323.369374 Test 052 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfsv16_ugwpv1 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_ugwpv1 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfsv16_ugwpv1 Checking test 053 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3056,13 +3056,13 @@ Checking test 053 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 188.652234 +The total amount of wall time = 187.176598 Test 053 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfsv16_ugwpv1_warmstart Checking test 054 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3121,13 +3121,13 @@ Checking test 054 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 184.786226 +The total amount of wall time = 185.865885 Test 054 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_ras +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfs_v16_ras Checking test 055 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3192,13 +3192,13 @@ Checking test 055 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 102.076759 +The total amount of wall time = 130.800614 Test 055 fv3_gfs_v16_ras PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfs_v16_debug Checking test 056 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3263,13 +3263,13 @@ Checking test 056 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 244.896403 +The total amount of wall time = 249.177291 Test 056 fv3_gfs_v16_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_RRTMGP_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfs_v16_RRTMGP_debug Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3334,13 +3334,13 @@ Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 375.412079 +The total amount of wall time = 379.920803 Test 057 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_regional_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_regional_control_debug Checking test 058 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3348,13 +3348,13 @@ Checking test 058 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 368.468122 +The total amount of wall time = 371.056099 Test 058 fv3_regional_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_control_debug Checking test 059 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3381,13 +3381,13 @@ Checking test 059 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 133.625467 +The total amount of wall time = 133.348004 Test 059 fv3_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_stretched_nest_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stretched_nest_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_stretched_nest_debug Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3404,13 +3404,13 @@ Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 439.041439 +The total amount of wall time = 443.229898 Test 060 fv3_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gsd_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gsd_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gsd_debug Checking test 061 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3475,13 +3475,13 @@ Checking test 061 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 196.475141 +The total amount of wall time = 203.777127 Test 061 fv3_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_diag3d_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gsd_diag3d_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gsd_diag3d_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gsd_diag3d_debug Checking test 062 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3546,13 +3546,13 @@ Checking test 062 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 225.132013 +The total amount of wall time = 224.266477 Test 062 fv3_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_thompson_debug Checking test 063 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3617,13 +3617,13 @@ Checking test 063 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 346.768232 +The total amount of wall time = 345.971137 Test 063 fv3_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_thompson_no_aero_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson_no_aero_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_thompson_no_aero_debug Checking test 064 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3688,13 +3688,13 @@ Checking test 064 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 330.095961 +The total amount of wall time = 333.181346 Test 064 fv3_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_rrfs_v1beta_debug Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3759,13 +3759,13 @@ Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 190.234283 +The total amount of wall time = 193.694881 Test 065 fv3_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_HAFS_v0_hwrf_thompson_debug Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3830,13 +3830,13 @@ Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 204.686160 +The total amount of wall time = 206.633516 Test 066 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3851,13 +3851,13 @@ Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 376.915968 +The total amount of wall time = 380.072689 Test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfsv16_ugwpv1_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfsv16_ugwpv1_debug Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3916,13 +3916,13 @@ Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 582.826192 +The total amount of wall time = 589.153589 Test 068 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/fv3_gfs_v16_ras_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/fv3_gfs_v16_ras_debug Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3987,13 +3987,13 @@ Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 323.774877 +The total amount of wall time = 328.785415 Test 069 fv3_gfs_v16_ras_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_control Checking test 070 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4043,13 +4043,13 @@ Checking test 070 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 114.205687 +The total amount of wall time = 121.002945 Test 070 cpld_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_restart Checking test 071 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4099,13 +4099,13 @@ Checking test 071 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 54.139105 +The total amount of wall time = 48.987853 Test 071 cpld_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_controlfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_controlfrac Checking test 072 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4155,13 +4155,13 @@ Checking test 072 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 89.966378 +The total amount of wall time = 92.077729 Test 072 cpld_controlfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_restartfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_restartfrac Checking test 073 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4211,13 +4211,13 @@ Checking test 073 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 78.382879 +The total amount of wall time = 65.965430 Test 073 cpld_restartfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_2threads Checking test 074 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4267,13 +4267,13 @@ Checking test 074 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 122.517730 +The total amount of wall time = 120.803755 Test 074 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_decomp Checking test 075 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4323,13 +4323,13 @@ Checking test 075 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 114.530504 +The total amount of wall time = 88.517170 Test 075 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_satmedmf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_satmedmf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_satmedmf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_satmedmf Checking test 076 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4379,13 +4379,13 @@ Checking test 076 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 93.642421 +The total amount of wall time = 88.433743 Test 076 cpld_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_ca -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_ca +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_ca +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_ca Checking test 077 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4435,13 +4435,13 @@ Checking test 077 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 90.818564 +The total amount of wall time = 89.385722 Test 077 cpld_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_control_c192 Checking test 078 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4491,13 +4491,13 @@ Checking test 078 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 407.059110 +The total amount of wall time = 432.044246 Test 078 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_restart_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_restart_c192 Checking test 079 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4547,13 +4547,13 @@ Checking test 079 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 281.954710 +The total amount of wall time = 282.469728 Test 079 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_controlfrac_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_controlfrac_c192 Checking test 080 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4603,13 +4603,13 @@ Checking test 080 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 407.666481 +The total amount of wall time = 411.041907 Test 080 cpld_controlfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_restartfrac_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_restartfrac_c192 Checking test 081 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4659,13 +4659,13 @@ Checking test 081 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 307.316327 +The total amount of wall time = 277.768749 Test 081 cpld_restartfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_control_c384 Checking test 082 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4718,13 +4718,13 @@ Checking test 082 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1510.318864 +The total amount of wall time = 1543.401062 Test 082 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_restart_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_restart_c384 Checking test 083 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4777,13 +4777,13 @@ Checking test 083 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 788.320437 +The total amount of wall time = 777.187903 Test 083 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_controlfrac_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_controlfrac_c384 Checking test 084 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4836,13 +4836,13 @@ Checking test 084 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 1497.501260 +The total amount of wall time = 1543.098041 Test 084 cpld_controlfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_restartfrac_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_restartfrac_c384 Checking test 085 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4895,13 +4895,13 @@ Checking test 085 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 772.290993 +The total amount of wall time = 768.315040 Test 085 cpld_restartfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_bmark +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmark +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_bmark Checking test 086 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4954,13 +4954,13 @@ Checking test 086 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 892.101884 +The total amount of wall time = 864.602616 Test 086 cpld_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_restart_bmark +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmark +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_restart_bmark Checking test 087 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5013,13 +5013,13 @@ Checking test 087 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 470.357327 +The total amount of wall time = 471.701097 Test 087 cpld_restart_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_bmarkfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_bmarkfrac Checking test 088 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5072,13 +5072,13 @@ Checking test 088 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 924.276636 +The total amount of wall time = 862.330067 Test 088 cpld_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_restart_bmarkfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_restart_bmarkfrac Checking test 089 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5131,13 +5131,13 @@ Checking test 089 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 483.166530 +The total amount of wall time = 459.228987 Test 089 cpld_restart_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_debug Checking test 090 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5187,13 +5187,13 @@ Checking test 090 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 262.437476 +The total amount of wall time = 268.724028 Test 090 cpld_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_debugfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/cpld_debugfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_debugfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/cpld_debugfrac Checking test 091 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5243,73 +5243,73 @@ Checking test 091 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 261.006516 +The total amount of wall time = 265.168530 Test 091 cpld_debugfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/datm_control_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/datm_control_cfsr Checking test 092 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 -The total amount of wall time = 101.008295 +The total amount of wall time = 99.014213 Test 092 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/datm_restart_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/datm_restart_cfsr Checking test 093 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 -The total amount of wall time = 63.802586 +The total amount of wall time = 89.684944 Test 093 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/datm_control_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/datm_control_gefs Checking test 094 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 -The total amount of wall time = 94.030499 +The total amount of wall time = 125.884698 Test 094 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/datm_bulk_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/datm_bulk_cfsr Checking test 095 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 -The total amount of wall time = 94.173805 +The total amount of wall time = 95.330657 Test 095 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/datm_bulk_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/datm_bulk_gefs Checking test 096 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 -The total amount of wall time = 101.725058 +The total amount of wall time = 100.814964 Test 096 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/datm_mx025_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/datm_mx025_gefs Checking test 097 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5318,23 +5318,23 @@ Checking test 097 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 389.618886 +The total amount of wall time = 403.011854 Test 097 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_48235/datm_debug_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_944/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 229.864301 +The total amount of wall time = 225.064424 Test 098 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 29 11:56:58 EDT 2021 -Elapsed time: 01h:23m:57s. Have a nice day! +Wed Mar 31 16:19:51 EDT 2021 +Elapsed time: 01h:31m:49s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index fdc740158a..45c11a3a57 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,19 +1,19 @@ -Mon Mar 29 17:47:13 UTC 2021 +Wed Mar 31 01:59:16 UTC 2021 Start Regression test -Compile 001 elapsed time 208 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp -Compile 002 elapsed time 222 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP -Compile 003 elapsed time 236 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y -Compile 004 elapsed time 217 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 005 elapsed time 175 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 006 elapsed time 102 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y -Compile 007 elapsed time 234 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -Compile 008 elapsed time 101 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 009 elapsed time 237 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 010 elapsed time 218 seconds. APP=DATM_NEMS - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfdlmp +Compile 001 elapsed time 215 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp +Compile 002 elapsed time 214 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP +Compile 003 elapsed time 237 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y +Compile 004 elapsed time 214 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 005 elapsed time 137 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 006 elapsed time 106 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y +Compile 007 elapsed time 252 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +Compile 008 elapsed time 112 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 009 elapsed time 239 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 010 elapsed time 224 seconds. APP=DATM_NEMS + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -58,13 +58,13 @@ Checking test 001 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 238.391210 + 0: The total amount of wall time = 230.794578 Test 001 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_gfs_v16 Checking test 002 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -141,13 +141,13 @@ Checking test 002 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 659.562337 + 0: The total amount of wall time = 640.393398 Test 002 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_gfs_v16_restart Checking test 003 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -194,13 +194,13 @@ Checking test 003 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 321.865237 + 0: The total amount of wall time = 319.271881 Test 003 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_gfs_v16_stochy Checking test 004 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -265,13 +265,13 @@ Checking test 004 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 344.053904 + 0: The total amount of wall time = 361.635947 Test 004 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_gfs_v16_flake Checking test 005 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -336,14 +336,14 @@ Checking test 005 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 608.175598 + 0: The total amount of wall time = 595.540658 Test 005 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v15p2_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v15p2_RRTMGP -Checking test 006 fv3_gfs_v15p2_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_gfs_v16_RRTMGP +Checking test 006 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -407,85 +407,14 @@ Checking test 006 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 683.823351 + 0: The total amount of wall time = 683.247283 -Test 006 fv3_gfs_v15p2_RRTMGP PASS +Test 006 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16_RRTMGP -Checking test 007 fv3_gfs_v16_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 ............SKIP for gnu compilers - 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 - - 0: The total amount of wall time = 675.731257 - -Test 007 fv3_gfs_v16_RRTMGP PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gsd -Checking test 008 fv3_gsd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_gsd +Checking test 007 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -573,14 +502,14 @@ Checking test 008 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 847.152089 + 0: The total amount of wall time = 815.512115 -Test 008 fv3_gsd PASS +Test 007 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_thompson -Checking test 009 fv3_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_thompson +Checking test 008 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -644,14 +573,14 @@ Checking test 009 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 420.734241 + 0: The total amount of wall time = 394.497180 -Test 009 fv3_thompson PASS +Test 008 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_thompson_no_aero -Checking test 010 fv3_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_thompson_no_aero +Checking test 009 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -715,14 +644,14 @@ Checking test 010 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 427.473658 + 0: The total amount of wall time = 370.056531 -Test 010 fv3_thompson_no_aero PASS +Test 009 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_rrfs_v1beta -Checking test 011 fv3_rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_rrfs_v1beta +Checking test 010 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -786,14 +715,14 @@ Checking test 011 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 416.532544 + 0: The total amount of wall time = 386.936053 -Test 011 fv3_rrfs_v1beta PASS +Test 010 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_HAFS_v0_hwrf_thompson -Checking test 012 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_HAFS_v0_hwrf_thompson +Checking test 011 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -857,14 +786,14 @@ Checking test 012 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 596.629317 + 0: The total amount of wall time = 618.499106 -Test 012 fv3_HAFS_v0_hwrf_thompson PASS +Test 011 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 013 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 012 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -878,14 +807,14 @@ Checking test 013 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 451.092369 + 0: The total amount of wall time = 443.772967 -Test 013 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 012 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfsv16_ugwpv1 -Checking test 014 fv3_gfsv16_ugwpv1 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_gfsv16_ugwpv1 +Checking test 013 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -943,14 +872,14 @@ Checking test 014 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 943.322439 + 0: The total amount of wall time = 914.195357 -Test 014 fv3_gfsv16_ugwpv1 PASS +Test 013 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfsv16_ugwpv1_warmstart -Checking test 015 fv3_gfsv16_ugwpv1_warmstart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_gfsv16_ugwpv1_warmstart +Checking test 014 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1008,14 +937,14 @@ Checking test 015 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 934.786994 + 0: The total amount of wall time = 899.799600 -Test 015 fv3_gfsv16_ugwpv1_warmstart PASS +Test 014 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16_ras -Checking test 016 fv3_gfs_v16_ras results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_gfs_v16_ras +Checking test 015 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1079,14 +1008,14 @@ Checking test 016 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 573.139564 + 0: The total amount of wall time = 578.360045 -Test 016 fv3_gfs_v16_ras PASS +Test 015 fv3_gfs_v16_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_control_debug -Checking test 017 fv3_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_control_debug +Checking test 016 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1112,28 +1041,28 @@ Checking test 017 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 84.288993 + 0: The total amount of wall time = 83.456954 -Test 017 fv3_control_debug PASS +Test 016 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_regional_control_debug -Checking test 018 fv3_regional_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_regional_control_debug +Checking test 017 fv3_regional_control_debug 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 - 0: The total amount of wall time = 167.321856 + 0: The total amount of wall time = 163.990165 -Test 018 fv3_regional_control_debug PASS +Test 017 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_rrfs_v1beta_debug -Checking test 019 fv3_rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_rrfs_v1beta_debug +Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1197,14 +1126,14 @@ Checking test 019 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 119.019865 + 0: The total amount of wall time = 116.155356 -Test 019 fv3_rrfs_v1beta_debug PASS +Test 018 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gsd_debug -Checking test 020 fv3_gsd_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_gsd_debug +Checking test 019 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1268,85 +1197,14 @@ Checking test 020 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 122.064325 - -Test 020 fv3_gsd_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_thompson_debug -Checking test 021 fv3_thompson_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 ............SKIP for gnu compilers - 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 - - 0: The total amount of wall time = 198.924527 + 0: The total amount of wall time = 120.027441 -Test 021 fv3_thompson_debug PASS +Test 019 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_thompson_no_aero_debug -Checking test 022 fv3_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_thompson_debug +Checking test 020 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1410,14 +1268,14 @@ Checking test 022 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.106200 + 0: The total amount of wall time = 197.854210 -Test 022 fv3_thompson_no_aero_debug PASS +Test 020 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v15p2_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v15p2_debug -Checking test 023 fv3_gfs_v15p2_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_thompson_no_aero_debug +Checking test 021 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1481,14 +1339,14 @@ Checking test 023 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 293.304579 + 0: The total amount of wall time = 193.323695 -Test 023 fv3_gfs_v15p2_debug PASS +Test 021 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16_debug -Checking test 024 fv3_gfs_v16_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v15p2_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_gfs_v15p2_debug +Checking test 022 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1552,14 +1410,14 @@ Checking test 024 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.721810 + 0: The total amount of wall time = 271.935511 -Test 024 fv3_gfs_v16_debug PASS +Test 022 fv3_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v15p2_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v15p2_RRTMGP_debug -Checking test 025 fv3_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_gfs_v16_debug +Checking test 023 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1623,14 +1481,14 @@ Checking test 025 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 329.844807 + 0: The total amount of wall time = 168.266439 -Test 025 fv3_gfs_v15p2_RRTMGP_debug PASS +Test 023 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16_RRTMGP_debug -Checking test 026 fv3_gfs_v16_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_gfs_v16_RRTMGP_debug +Checking test 024 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1694,14 +1552,14 @@ Checking test 026 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 347.765032 + 0: The total amount of wall time = 344.434797 -Test 026 fv3_gfs_v16_RRTMGP_debug PASS +Test 024 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_multigases -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_multigases -Checking test 027 fv3_multigases results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_multigases +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_multigases +Checking test 025 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1771,14 +1629,14 @@ Checking test 027 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 460.001314 + 0: The total amount of wall time = 428.287294 -Test 027 fv3_multigases PASS +Test 025 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 028 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 026 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1842,14 +1700,14 @@ Checking test 028 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 133.272881 + 0: The total amount of wall time = 132.530034 -Test 028 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 026 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 027 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -1863,14 +1721,14 @@ Checking test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 224.288158 + 0: The total amount of wall time = 226.475226 -Test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 027 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfsv16_ugwpv1_debug -Checking test 030 fv3_gfsv16_ugwpv1_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_gfsv16_ugwpv1_debug +Checking test 028 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -1928,14 +1786,14 @@ Checking test 030 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 393.227179 + 0: The total amount of wall time = 395.844464 -Test 030 fv3_gfsv16_ugwpv1_debug PASS +Test 028 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/GNU/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_263209/fv3_gfs_v16_ras_debug -Checking test 031 fv3_gfs_v16_ras_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/GNU/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_94111/fv3_gfs_v16_ras_debug +Checking test 029 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1999,11 +1857,11 @@ Checking test 031 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.220782 + 0: The total amount of wall time = 222.318089 -Test 031 fv3_gfs_v16_ras_debug PASS +Test 029 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 29 18:32:27 UTC 2021 -Elapsed time: 00h:45m:14s. Have a nice day! +Wed Mar 31 02:28:16 UTC 2021 +Elapsed time: 00h:29m:00s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 2548b6ee03..25490875ea 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,29 +1,29 @@ -Mon Mar 29 19:01:28 UTC 2021 +Wed Mar 31 02:32:49 UTC 2021 Start Regression test -Compile 001 elapsed time 578 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 545 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -Compile 003 elapsed time 497 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 004 elapsed time 512 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 005 elapsed time 506 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 001 elapsed time 566 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 519 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 508 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 503 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 565 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y Compile 006 elapsed time 512 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 007 elapsed time 558 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 008 elapsed time 605 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 009 elapsed time 521 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 010 elapsed time 532 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 011 elapsed time 530 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 012 elapsed time 567 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 013 elapsed time 164 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 014 elapsed time 182 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 015 elapsed time 163 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 016 elapsed time 577 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 567 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 018 elapsed time 251 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 019 elapsed time 375 seconds. APP=DATM_NEMS -Compile 020 elapsed time 148 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_control +Compile 007 elapsed time 838 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 598 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 009 elapsed time 502 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 516 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 514 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 576 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 171 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 172 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 015 elapsed time 172 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 016 elapsed time 683 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 576 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 210 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 019 elapsed time 471 seconds. APP=DATM_NEMS +Compile 020 elapsed time 370 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -88,13 +88,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 39.502738 + 0: The total amount of wall time = 255.667483 Test 001 fv3_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -159,13 +159,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 40.941751 + 0: The total amount of wall time = 287.844956 Test 002 fv3_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -230,13 +230,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 41.394100 + 0: The total amount of wall time = 57.267179 Test 003 fv3_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -283,13 +283,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 19.012992 + 0: The total amount of wall time = 19.091295 Test 004 fv3_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_read_inc -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_read_inc +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_read_inc +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -354,13 +354,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.166048 + 0: The total amount of wall time = 37.152208 Test 005 fv3_read_inc PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_wrtGauss_netcdf_esmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -405,13 +405,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 110.680544 + 0: The total amount of wall time = 157.272531 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_wrtGauss_netcdf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_netcdf +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -456,13 +456,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.214512 + 0: The total amount of wall time = 64.344558 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -507,13 +507,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 48.201982 + 0: The total amount of wall time = 63.202224 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGlatlon_netcdf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_wrtGlatlon_netcdf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGlatlon_netcdf +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -558,13 +558,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.148333 + 0: The total amount of wall time = 74.168584 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_wrtGauss_nemsio +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_nemsio +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,13 +609,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.126734 + 0: The total amount of wall time = 60.455769 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_wrtGauss_nemsio_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -660,13 +660,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.081839 + 0: The total amount of wall time = 120.523583 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stochy +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -731,13 +731,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 40.523824 + 0: The total amount of wall time = 59.301341 Test 012 fv3_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_ca +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -802,13 +802,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 26.183893 + 0: The total amount of wall time = 49.486982 Test 013 fv3_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_lndp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -873,13 +873,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.530296 + 0: The total amount of wall time = 63.866589 Test 014 fv3_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_iau -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_iau +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_iau +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,13 +944,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.197626 + 0: The total amount of wall time = 37.144885 Test 015 fv3_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lheatstrg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_lheatstrg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_lheatstrg +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -995,13 +995,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.586691 + 0: The total amount of wall time = 53.894319 Test 016 fv3_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfdlmprad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1047,13 +1047,13 @@ Checking test 017 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 649.222346 + 0: The total amount of wall time = 650.297253 Test 017 fv3_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfdlmprad_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1099,13 +1099,13 @@ Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 792.480968 + 0: The total amount of wall time = 882.758909 Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_wrtGauss_nemsio_c768 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_nemsio_c768 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_wrtGauss_nemsio_c768 Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1151,13 +1151,13 @@ Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 675.360509 + 0: The total amount of wall time = 708.295069 Test 019 fv3_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_multigases_repro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_multigases_repro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_multigases_repro +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_multigases_repro Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1228,13 +1228,13 @@ Checking test 020 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 94.548039 + 0: The total amount of wall time = 100.784775 Test 020 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_32bit -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_control_32bit +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control_32bit +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_control_32bit Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1299,13 +1299,13 @@ Checking test 021 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.019913 + 0: The total amount of wall time = 36.756387 Test 021 fv3_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_stretched +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stretched +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_stretched Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1358,13 +1358,13 @@ Checking test 022 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 220.254119 + 0: The total amount of wall time = 256.418528 Test 022 fv3_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_stretched_nest +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stretched_nest +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_stretched_nest Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1428,13 +1428,13 @@ Checking test 023 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK - 0: The total amount of wall time = 250.277109 + 0: The total amount of wall time = 283.766039 Test 023 fv3_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_regional_control Checking test 024 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1442,25 +1442,25 @@ Checking test 024 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 548.483590 + 0: The total amount of wall time = 558.418109 Test 024 fv3_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_restart +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_regional_restart Checking test 025 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 300.250071 + 0: The total amount of wall time = 297.379938 Test 025 fv3_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_regional_quilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_regional_quilt Checking test 026 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1471,13 +1471,13 @@ Checking test 026 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 573.181226 + 0: The total amount of wall time = 568.076039 Test 026 fv3_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_regional_quilt_hafs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_quilt_hafs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_regional_quilt_hafs Checking test 027 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1486,13 +1486,13 @@ Checking test 027 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 572.802686 + 0: The total amount of wall time = 584.418535 Test 027 fv3_regional_quilt_hafs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_regional_quilt_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_regional_quilt_netcdf_parallel Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1500,13 +1500,13 @@ Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 578.272554 + 0: The total amount of wall time = 577.018016 Test 028 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfdlmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfdlmp Checking test 029 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1551,13 +1551,13 @@ Checking test 029 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.371725 + 0: The total amount of wall time = 47.337330 Test 029 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_gwd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfdlmprad_gwd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad_gwd +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfdlmprad_gwd Checking test 030 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1602,13 +1602,13 @@ Checking test 030 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 43.024547 + 0: The total amount of wall time = 51.271626 Test 030 fv3_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_noahmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfdlmprad_noahmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad_noahmp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfdlmprad_noahmp Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1653,13 +1653,13 @@ Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.964177 + 0: The total amount of wall time = 42.912683 Test 031 fv3_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_csawmg Checking test 032 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1704,13 +1704,13 @@ Checking test 032 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 105.602419 + 0: The total amount of wall time = 112.273674 Test 032 fv3_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_satmedmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_satmedmf Checking test 033 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1755,13 @@ Checking test 033 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.880495 + 0: The total amount of wall time = 45.535378 Test 033 fv3_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmfq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_satmedmfq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_satmedmfq +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_satmedmfq Checking test 034 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1806,13 +1806,13 @@ Checking test 034 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.539416 + 0: The total amount of wall time = 47.060772 Test 034 fv3_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp_32bit -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfdlmp_32bit +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmp_32bit +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfdlmp_32bit Checking test 035 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1857,13 +1857,13 @@ Checking test 035 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 36.922173 + 0: The total amount of wall time = 39.378180 Test 035 fv3_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_32bit_post -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfdlmprad_32bit_post +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad_32bit_post +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfdlmprad_32bit_post Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1912,13 +1912,13 @@ Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 73.744057 + 0: The total amount of wall time = 80.684595 Test 036 fv3_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_cpt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_cpt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_cpt +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_cpt Checking test 037 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1969,13 +1969,13 @@ Checking test 037 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 255.985332 + 0: The total amount of wall time = 304.547378 Test 037 fv3_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gsd Checking test 038 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2064,13 +2064,13 @@ Checking test 038 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.425888 + 0: The total amount of wall time = 200.046578 Test 038 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rap -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_rap +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_rap +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_rap Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2135,13 +2135,13 @@ Checking test 039 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.724789 + 0: The total amount of wall time = 83.811368 Test 039 fv3_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_hrrr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_hrrr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_hrrr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_hrrr Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,13 +2206,13 @@ Checking test 040 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.011786 + 0: The total amount of wall time = 110.584597 Test 040 fv3_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_thompson Checking test 041 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2277,13 +2277,13 @@ Checking test 041 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 84.198601 + 0: The total amount of wall time = 280.477480 Test 041 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_thompson_no_aero Checking test 042 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2348,13 +2348,13 @@ Checking test 042 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 79.765371 + 0: The total amount of wall time = 140.177049 Test 042 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_rrfs_v1beta Checking test 043 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2419,13 +2419,13 @@ Checking test 043 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 98.318190 + 0: The total amount of wall time = 142.396693 Test 043 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfs_v16 Checking test 044 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2502,13 +2502,13 @@ Checking test 044 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 132.007172 + 0: The total amount of wall time = 145.411981 Test 044 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfs_v16_restart Checking test 045 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2555,13 +2555,13 @@ Checking test 045 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 74.392731 + 0: The total amount of wall time = 80.826734 Test 045 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfs_v16_stochy Checking test 046 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2626,13 +2626,13 @@ Checking test 046 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 47.181145 + 0: The total amount of wall time = 48.834224 Test 046 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfs_v16_RRTMGP Checking test 047 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2697,13 +2697,13 @@ Checking test 047 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 159.730628 + 0: The total amount of wall time = 170.269107 Test 047 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfs_v16_RRTMGP_c192L127 Checking test 048 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2762,13 +2762,13 @@ Checking test 048 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 627.543946 + 0: The total amount of wall time = 645.509123 Test 048 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfs_v16_RRTMGP_2thrd Checking test 049 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2833,13 +2833,13 @@ Checking test 049 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 172.306106 + 0: The total amount of wall time = 172.340921 Test 049 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfsv16_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfsv16_csawmg Checking test 050 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2884,13 +2884,13 @@ Checking test 050 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 112.779318 + 0: The total amount of wall time = 144.051861 Test 050 fv3_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfsv16_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfsv16_csawmgt Checking test 051 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2935,13 +2935,13 @@ Checking test 051 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 113.313509 + 0: The total amount of wall time = 128.105868 Test 051 fv3_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gocart_clm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gocart_clm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gocart_clm +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gocart_clm Checking test 052 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2986,13 +2986,13 @@ Checking test 052 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 47.528540 + 0: The total amount of wall time = 46.184367 Test 052 fv3_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfs_v16_flake Checking test 053 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3057,13 +3057,13 @@ Checking test 053 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 97.732864 + 0: The total amount of wall time = 102.876125 Test 053 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_HAFS_v0_hwrf_thompson Checking test 054 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3128,13 +3128,13 @@ Checking test 054 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 142.246580 + 0: The total amount of wall time = 160.103790 Test 054 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_esg_HAFS_v0_hwrf_thompson Checking test 055 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3149,13 +3149,13 @@ Checking test 055 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 283.155110 + 0: The total amount of wall time = 292.493842 Test 055 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfsv16_ugwpv1 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfsv16_ugwpv1 Checking test 056 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3214,13 +3214,13 @@ Checking test 056 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 163.614073 + 0: The total amount of wall time = 181.540977 Test 056 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfsv16_ugwpv1_warmstart Checking test 057 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3279,13 +3279,13 @@ Checking test 057 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 163.883512 + 0: The total amount of wall time = 197.092302 Test 057 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfs_v16_ras Checking test 058 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3350,13 +3350,13 @@ Checking test 058 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 90.363068 + 0: The total amount of wall time = 89.989884 Test 058 fv3_gfs_v16_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfs_v16_debug Checking test 059 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3421,13 +3421,13 @@ Checking test 059 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.788839 + 0: The total amount of wall time = 241.785245 Test 059 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_RRTMGP_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfs_v16_RRTMGP_debug Checking test 060 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3492,13 +3492,13 @@ Checking test 060 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 353.876510 + 0: The total amount of wall time = 375.010939 Test 060 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_regional_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_regional_control_debug Checking test 061 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3506,13 +3506,13 @@ Checking test 061 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 364.613637 + 0: The total amount of wall time = 388.931008 Test 061 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_control_debug Checking test 062 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3539,13 +3539,13 @@ Checking test 062 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 132.373494 + 0: The total amount of wall time = 135.564595 Test 062 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_stretched_nest_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stretched_nest_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_stretched_nest_debug Checking test 063 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3562,13 +3562,13 @@ Checking test 063 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 354.118619 + 0: The total amount of wall time = 357.322163 Test 063 fv3_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gsd_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gsd_debug Checking test 064 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3633,13 +3633,13 @@ Checking test 064 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.418405 + 0: The total amount of wall time = 202.729563 Test 064 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_diag3d_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gsd_diag3d_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gsd_diag3d_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gsd_diag3d_debug Checking test 065 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3704,13 +3704,13 @@ Checking test 065 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 254.656930 + 0: The total amount of wall time = 281.004917 Test 065 fv3_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_thompson_debug Checking test 066 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3775,13 +3775,13 @@ Checking test 066 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.030084 + 0: The total amount of wall time = 336.728934 Test 066 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_thompson_no_aero_debug Checking test 067 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3846,13 +3846,13 @@ Checking test 067 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 323.644780 + 0: The total amount of wall time = 321.486259 Test 067 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_rrfs_v1beta_debug Checking test 068 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3917,13 +3917,13 @@ Checking test 068 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.218521 + 0: The total amount of wall time = 225.910655 Test 068 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_HAFS_v0_hwrf_thompson_debug Checking test 069 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3988,13 +3988,13 @@ Checking test 069 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 199.924520 + 0: The total amount of wall time = 202.803640 Test 069 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 070 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4009,13 +4009,13 @@ Checking test 070 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 384.851685 + 0: The total amount of wall time = 380.247629 Test 070 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfsv16_ugwpv1_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfsv16_ugwpv1_debug Checking test 071 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4074,13 +4074,13 @@ Checking test 071 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 558.135843 + 0: The total amount of wall time = 790.702346 Test 071 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/fv3_gfs_v16_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/fv3_gfs_v16_ras_debug Checking test 072 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4145,13 +4145,13 @@ Checking test 072 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 311.755579 + 0: The total amount of wall time = 321.488531 Test 072 fv3_gfs_v16_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_control Checking test 073 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4201,13 +4201,13 @@ Checking test 073 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 91.401249 + 0: The total amount of wall time = 92.234144 Test 073 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_restart Checking test 074 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4257,13 +4257,13 @@ Checking test 074 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 73.701381 + 0: The total amount of wall time = 56.198223 Test 074 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_controlfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_controlfrac Checking test 075 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4313,13 +4313,13 @@ Checking test 075 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 89.672757 + 0: The total amount of wall time = 94.379237 Test 075 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restartfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_restartfrac Checking test 076 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4369,13 +4369,13 @@ Checking test 076 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 76.850198 + 0: The total amount of wall time = 56.738885 Test 076 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_2threads Checking test 077 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4425,13 +4425,13 @@ Checking test 077 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 108.169140 + 0: The total amount of wall time = 108.072966 Test 077 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_decomp Checking test 078 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4481,13 +4481,13 @@ Checking test 078 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 88.285629 + 0: The total amount of wall time = 88.938811 Test 078 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_satmedmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_satmedmf Checking test 079 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4537,13 +4537,13 @@ Checking test 079 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 88.688205 + 0: The total amount of wall time = 91.819417 Test 079 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_ca +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_ca Checking test 080 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4593,13 +4593,13 @@ Checking test 080 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 89.432521 + 0: The total amount of wall time = 88.810630 Test 080 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_control_c192 Checking test 081 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4649,13 +4649,13 @@ Checking test 081 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 383.128731 + 0: The total amount of wall time = 383.895206 Test 081 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restart_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_restart_c192 Checking test 082 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4705,13 +4705,13 @@ Checking test 082 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 310.784527 + 0: The total amount of wall time = 323.328965 Test 082 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_controlfrac_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_controlfrac_c192 Checking test 083 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4761,13 +4761,13 @@ Checking test 083 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 398.900268 + 0: The total amount of wall time = 383.390913 Test 083 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restartfrac_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_restartfrac_c192 Checking test 084 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4817,13 +4817,13 @@ Checking test 084 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 335.265909 + 0: The total amount of wall time = 290.570712 Test 084 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_control_c384 Checking test 085 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4876,13 +4876,13 @@ Checking test 085 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1379.775383 + 0: The total amount of wall time = 1353.895766 Test 085 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restart_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_restart_c384 Checking test 086 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4935,13 +4935,13 @@ Checking test 086 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 706.017639 + 0: The total amount of wall time = 707.919653 Test 086 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_controlfrac_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_controlfrac_c384 Checking test 087 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4994,13 +4994,13 @@ Checking test 087 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1373.430151 + 0: The total amount of wall time = 1334.583905 Test 087 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restartfrac_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_restartfrac_c384 Checking test 088 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5053,13 +5053,13 @@ Checking test 088 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 692.619021 + 0: The total amount of wall time = 712.431143 Test 088 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_bmark +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_bmark Checking test 089 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5112,13 +5112,13 @@ Checking test 089 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 966.858821 + 0: The total amount of wall time = 875.002427 Test 089 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restart_bmark +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_restart_bmark Checking test 090 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5171,13 +5171,13 @@ Checking test 090 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 476.569853 + 0: The total amount of wall time = 539.195583 Test 090 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_bmarkfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_bmarkfrac Checking test 091 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5230,13 +5230,13 @@ Checking test 091 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 951.635403 + 0: The total amount of wall time = 858.084040 Test 091 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restart_bmarkfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_restart_bmarkfrac Checking test 092 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5289,13 +5289,13 @@ Checking test 092 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 448.931698 + 0: The total amount of wall time = 455.596925 Test 092 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_bmarkfrac_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_bmarkfrac_v16 Checking test 093 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5348,13 +5348,13 @@ Checking test 093 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 1451.653182 + 0: The total amount of wall time = 1362.730729 Test 093 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_restart_bmarkfrac_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_restart_bmarkfrac_v16 Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5407,13 +5407,13 @@ Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 745.140660 + 0: The total amount of wall time = 736.351928 Test 094 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_bmark_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmark_wave +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_bmark_wave Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5469,13 +5469,13 @@ Checking test 095 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1471.516466 + 0: The total amount of wall time = 1387.998853 Test 095 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_bmarkfrac_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac_wave +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_bmarkfrac_wave Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5531,13 +5531,13 @@ Checking test 096 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1410.893830 + 0: The total amount of wall time = 1414.865129 Test 096 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_bmarkfrac_wave_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_bmarkfrac_wave_v16 Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5592,13 +5592,13 @@ Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 981.965181 + 0: The total amount of wall time = 917.733140 Test 097 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_control_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_wave +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_control_wave Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5651,13 +5651,13 @@ Checking test 098 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 782.480483 + 0: The total amount of wall time = 791.511499 Test 098 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_debug Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5707,13 +5707,13 @@ Checking test 099 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 285.968834 + 0: The total amount of wall time = 290.154271 Test 099 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_debugfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/cpld_debugfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_debugfrac +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/cpld_debugfrac Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5763,73 +5763,73 @@ Checking test 100 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 281.907192 + 0: The total amount of wall time = 290.543211 Test 100 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/datm_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/datm_control_cfsr Checking test 101 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 - 0: The total amount of wall time = 109.124113 + 0: The total amount of wall time = 99.511771 Test 101 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/datm_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/datm_restart_cfsr Checking test 102 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 - 0: The total amount of wall time = 70.473419 + 0: The total amount of wall time = 64.504844 Test 102 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/datm_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/datm_control_gefs Checking test 103 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 - 0: The total amount of wall time = 117.213880 + 0: The total amount of wall time = 86.798644 Test 103 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/datm_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/datm_bulk_cfsr Checking test 104 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 - 0: The total amount of wall time = 100.660392 + 0: The total amount of wall time = 93.357224 Test 104 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/datm_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/datm_bulk_gefs Checking test 105 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 - 0: The total amount of wall time = 112.176728 + 0: The total amount of wall time = 91.478339 Test 105 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/datm_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/datm_mx025_cfsr Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5838,13 +5838,13 @@ Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 391.508210 + 0: The total amount of wall time = 371.638067 Test 106 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/datm_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/datm_mx025_gefs Checking test 107 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5853,23 +5853,23 @@ Checking test 107 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 378.596251 + 0: The total amount of wall time = 375.685368 Test 107 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_235806/datm_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_54193/datm_debug_cfsr Checking test 108 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 - 0: The total amount of wall time = 277.911046 + 0: The total amount of wall time = 267.233969 Test 108 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 29 23:59:58 UTC 2021 -Elapsed time: 04h:58m:31s. Have a nice day! +Wed Mar 31 03:56:10 UTC 2021 +Elapsed time: 01h:23m:21s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index e4bd81f4bf..994664e87e 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,23 +1,23 @@ -Mon Mar 29 16:01:40 GMT 2021 +Wed Mar 31 17:20:19 GMT 2021 Start Regression test -Compile 001 elapsed time 2134 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 1169 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 2119 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 2118 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 2128 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 3160 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 2984 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 008 elapsed time 2631 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 4494 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 2185 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 2484 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 233 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 341 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 014 elapsed time 253 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_control +Compile 001 elapsed time 3292 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 1150 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 2864 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 2114 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 2364 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 3589 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 2722 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 008 elapsed time 2315 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 2526 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 3325 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 2401 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 237 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 315 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 014 elapsed time 205 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y + +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -82,13 +82,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 61.765787 +The total amount of wall time = 63.229125 Test 001 fv3_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_2threads +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_2threads Checking test 002 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -153,13 +153,13 @@ Checking test 002 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 293.781214 +The total amount of wall time = 249.084697 Test 002 fv3_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_restart +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_restart Checking test 003 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -206,13 +206,13 @@ Checking test 003 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 27.696583 +The total amount of wall time = 28.103790 Test 003 fv3_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_read_inc -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_read_inc +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_read_inc +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_read_inc Checking test 004 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -277,13 +277,13 @@ Checking test 004 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.431870 +The total amount of wall time = 52.354227 Test 004 fv3_read_inc PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_wrtGauss_netcdf_esmf +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_wrtGauss_netcdf_esmf Checking test 005 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -328,13 +328,13 @@ Checking test 005 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 152.967503 +The total amount of wall time = 165.438229 Test 005 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_wrtGauss_netcdf +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_netcdf +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_wrtGauss_netcdf Checking test 006 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -379,13 +379,13 @@ Checking test 006 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.965099 +The total amount of wall time = 52.760096 Test 006 fv3_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_wrtGauss_netcdf_parallel +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_wrtGauss_netcdf_parallel Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -394,7 +394,7 @@ Checking test 007 fv3_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 @@ -430,13 +430,13 @@ Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 66.246037 +The total amount of wall time = 66.552489 Test 007 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_wrtGlatlon_netcdf +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGlatlon_netcdf +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_wrtGlatlon_netcdf Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -481,13 +481,13 @@ Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.721692 +The total amount of wall time = 53.526173 Test 008 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_wrtGauss_nemsio +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_nemsio +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_wrtGauss_nemsio Checking test 009 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -532,13 +532,13 @@ Checking test 009 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.420355 +The total amount of wall time = 53.402771 Test 009 fv3_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_wrtGauss_nemsio_c192 +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_wrtGauss_nemsio_c192 Checking test 010 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,13 +583,13 @@ Checking test 010 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 140.245744 +The total amount of wall time = 147.649651 Test 010 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stochy -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_stochy +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stochy +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_stochy Checking test 011 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -654,13 +654,13 @@ Checking test 011 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.375677 +The total amount of wall time = 64.005158 Test 011 fv3_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_ca -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_ca +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_ca +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_ca Checking test 012 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -725,13 +725,13 @@ Checking test 012 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 42.418039 +The total amount of wall time = 42.571011 Test 012 fv3_ca PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lndp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_lndp +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_lndp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_lndp Checking test 013 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -796,13 +796,13 @@ Checking test 013 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 65.668700 +The total amount of wall time = 66.483218 Test 013 fv3_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_iau -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_iau +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_iau +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_iau Checking test 014 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -867,13 +867,13 @@ Checking test 014 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.855580 +The total amount of wall time = 52.403244 Test 014 fv3_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lheatstrg -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_lheatstrg +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_lheatstrg +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_lheatstrg Checking test 015 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -918,13 +918,13 @@ Checking test 015 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.011415 +The total amount of wall time = 52.483071 Test 015 fv3_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_multigases_repro -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_multigases_repro +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_multigases_repro +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_multigases_repro Checking test 016 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -995,13 +995,13 @@ Checking test 016 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 128.516541 +The total amount of wall time = 126.776355 Test 016 fv3_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_32bit -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_control_32bit +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control_32bit +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_control_32bit Checking test 017 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1066,13 +1066,13 @@ Checking test 017 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.803674 +The total amount of wall time = 53.113410 Test 017 fv3_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_stretched +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stretched +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_stretched Checking test 018 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1125,13 +1125,13 @@ Checking test 018 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 390.302718 +The total amount of wall time = 390.858187 Test 018 fv3_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_stretched_nest +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stretched_nest +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_stretched_nest Checking test 019 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1195,13 +1195,13 @@ Checking test 019 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 421.125142 +The total amount of wall time = 426.191167 Test 019 fv3_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_regional_control +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_regional_control Checking test 020 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,25 +1209,25 @@ Checking test 020 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 854.993221 +The total amount of wall time = 849.984569 Test 020 fv3_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_restart -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_regional_restart +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_restart +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_regional_restart Checking test 021 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 481.914136 +The total amount of wall time = 474.490045 Test 021 fv3_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_regional_quilt +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_quilt +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_regional_quilt Checking test 022 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1238,13 +1238,13 @@ Checking test 022 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 845.207670 +The total amount of wall time = 841.624404 Test 022 fv3_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_hafs -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_regional_quilt_hafs +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_quilt_hafs +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_regional_quilt_hafs Checking test 023 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1253,27 +1253,27 @@ Checking test 023 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 841.040744 +The total amount of wall time = 832.561284 Test 023 fv3_regional_quilt_hafs PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_regional_quilt_netcdf_parallel +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_regional_quilt_netcdf_parallel Checking test 024 fv3_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 -The total amount of wall time = 850.373785 +The total amount of wall time = 846.290905 Test 024 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfdlmp +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfdlmp Checking test 025 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1318,13 +1318,13 @@ Checking test 025 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.852789 +The total amount of wall time = 60.857722 Test 025 fv3_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_gwd -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfdlmprad_gwd +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad_gwd +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfdlmprad_gwd Checking test 026 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1369,13 +1369,13 @@ Checking test 026 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.184281 +The total amount of wall time = 60.585289 Test 026 fv3_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_noahmp -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfdlmprad_noahmp +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad_noahmp +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfdlmprad_noahmp Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1420,13 +1420,13 @@ Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.943806 +The total amount of wall time = 60.902558 Test 027 fv3_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_csawmg -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_csawmg +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_csawmg +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_csawmg Checking test 028 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1471,13 +1471,13 @@ Checking test 028 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 149.458124 +The total amount of wall time = 148.160521 Test 028 fv3_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmf -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_satmedmf +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_satmedmf +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_satmedmf Checking test 029 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1522,13 +1522,13 @@ Checking test 029 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 64.507100 +The total amount of wall time = 66.647191 Test 029 fv3_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmfq -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_satmedmfq +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_satmedmfq +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_satmedmfq Checking test 030 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1573,13 +1573,13 @@ Checking test 030 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 65.225836 +The total amount of wall time = 65.159769 Test 030 fv3_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp_32bit -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfdlmp_32bit +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmp_32bit +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfdlmp_32bit Checking test 031 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1624,13 +1624,13 @@ Checking test 031 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.565119 +The total amount of wall time = 53.527974 Test 031 fv3_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfdlmprad_32bit_post +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad_32bit_post +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfdlmprad_32bit_post Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1679,13 +1679,13 @@ Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 95.846238 +The total amount of wall time = 98.453695 Test 032 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_cpt -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_cpt +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_cpt +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_cpt Checking test 033 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1736,13 @@ Checking test 033 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 354.788697 +The total amount of wall time = 371.210185 Test 033 fv3_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gsd +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gsd +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gsd Checking test 034 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1831,13 +1831,13 @@ Checking test 034 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 242.577741 +The total amount of wall time = 231.993608 Test 034 fv3_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_thompson +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_thompson Checking test 035 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1902,13 +1902,13 @@ Checking test 035 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 115.479202 +The total amount of wall time = 105.773671 Test 035 fv3_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_thompson_no_aero +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson_no_aero +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_thompson_no_aero Checking test 036 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1973,13 +1973,13 @@ Checking test 036 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 110.276951 +The total amount of wall time = 106.526510 Test 036 fv3_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16 +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfs_v16 Checking test 037 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2056,13 +2056,13 @@ Checking test 037 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 178.745946 +The total amount of wall time = 176.534938 Test 037 fv3_gfs_v16 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_restart +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfs_v16_restart Checking test 038 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2109,13 +2109,13 @@ Checking test 038 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 103.833325 +The total amount of wall time = 103.247310 Test 038 fv3_gfs_v16_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_stochy -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_stochy +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_stochy +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfs_v16_stochy Checking test 039 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2180,13 +2180,13 @@ Checking test 039 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 65.753788 +The total amount of wall time = 66.471207 Test 039 fv3_gfs_v16_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_RRTMGP +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfs_v16_RRTMGP Checking test 040 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2251,13 +2251,13 @@ Checking test 040 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 194.354611 +The total amount of wall time = 191.516466 Test 040 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfs_v16_RRTMGP_c192L127 Checking test 041 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2316,13 +2316,13 @@ Checking test 041 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 802.636130 +The total amount of wall time = 804.678098 Test 041 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfs_v16_RRTMGP_2thrd Checking test 042 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2387,13 +2387,13 @@ Checking test 042 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 813.035956 +The total amount of wall time = 702.558033 Test 042 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_csawmg -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfsv16_csawmg +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_csawmg +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfsv16_csawmg Checking test 043 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2438,13 +2438,13 @@ Checking test 043 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 159.557447 +The total amount of wall time = 158.618721 Test 043 fv3_gfsv16_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfsv16_csawmgt +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfsv16_csawmgt Checking test 044 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2489,13 +2489,13 @@ Checking test 044 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 157.040652 +The total amount of wall time = 157.970382 Test 044 fv3_gfsv16_csawmgt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gocart_clm -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gocart_clm +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gocart_clm +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gocart_clm Checking test 045 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2540,13 +2540,13 @@ Checking test 045 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 66.794504 +The total amount of wall time = 68.379088 Test 045 fv3_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_flake -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_flake +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_flake +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfs_v16_flake Checking test 046 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2611,13 +2611,13 @@ Checking test 046 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 124.273765 +The total amount of wall time = 124.833191 Test 046 fv3_gfs_v16_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_HAFS_v0_hwrf_thompson Checking test 047 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2682,13 +2682,13 @@ Checking test 047 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 192.121477 +The total amount of wall time = 190.364996 Test 047 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_esg_HAFS_v0_hwrf_thompson Checking test 048 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2703,13 +2703,13 @@ Checking test 048 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 358.482263 +The total amount of wall time = 360.166111 Test 048 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfsv16_ugwpv1 +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_ugwpv1 +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfsv16_ugwpv1 Checking test 049 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2768,13 +2768,13 @@ Checking test 049 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 231.185334 +The total amount of wall time = 232.108234 Test 049 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfsv16_ugwpv1_warmstart Checking test 050 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2833,13 +2833,13 @@ Checking test 050 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 231.057494 +The total amount of wall time = 231.176757 Test 050 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_ras +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_ras +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfs_v16_ras Checking test 051 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2904,13 +2904,13 @@ Checking test 051 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 124.507553 +The total amount of wall time = 123.861135 Test 051 fv3_gfs_v16_ras PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfs_v16_debug Checking test 052 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2975,13 +2975,13 @@ Checking test 052 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 296.313830 +The total amount of wall time = 301.469439 Test 052 fv3_gfs_v16_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_RRTMGP_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfs_v16_RRTMGP_debug Checking test 053 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3046,13 +3046,13 @@ Checking test 053 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 450.660705 +The total amount of wall time = 456.553114 Test 053 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_regional_control_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_control_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_regional_control_debug Checking test 054 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3060,13 +3060,13 @@ Checking test 054 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 453.818949 +The total amount of wall time = 458.607816 Test 054 fv3_regional_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_control_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_control_debug Checking test 055 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3093,13 +3093,13 @@ Checking test 055 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 158.026545 +The total amount of wall time = 161.102206 Test 055 fv3_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_stretched_nest_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stretched_nest_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_stretched_nest_debug Checking test 056 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3116,13 +3116,13 @@ Checking test 056 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 533.970694 +The total amount of wall time = 539.294660 Test 056 fv3_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gsd_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gsd_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gsd_debug Checking test 057 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3187,13 +3187,13 @@ Checking test 057 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 241.744406 +The total amount of wall time = 244.469969 Test 057 fv3_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_diag3d_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gsd_diag3d_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gsd_diag3d_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gsd_diag3d_debug Checking test 058 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3258,13 +3258,13 @@ Checking test 058 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 275.484650 +The total amount of wall time = 275.840510 Test 058 fv3_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_thompson_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_thompson_debug Checking test 059 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3329,13 +3329,13 @@ Checking test 059 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 422.074745 +The total amount of wall time = 422.883006 Test 059 fv3_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_thompson_no_aero_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson_no_aero_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_thompson_no_aero_debug Checking test 060 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3400,13 +3400,13 @@ Checking test 060 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 405.448701 +The total amount of wall time = 408.017006 Test 060 fv3_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_rrfs_v1beta_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_rrfs_v1beta_debug Checking test 061 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3471,13 +3471,13 @@ Checking test 061 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 234.321189 +The total amount of wall time = 238.231149 Test 061 fv3_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_HAFS_v0_hwrf_thompson_debug Checking test 062 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3542,13 +3542,13 @@ Checking test 062 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 250.958336 +The total amount of wall time = 248.903423 Test 062 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 063 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3563,13 +3563,13 @@ Checking test 063 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 468.548686 +The total amount of wall time = 473.703666 Test 063 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfsv16_ugwpv1_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfsv16_ugwpv1_debug Checking test 064 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3628,13 +3628,13 @@ Checking test 064 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 717.077778 +The total amount of wall time = 723.262030 Test 064 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_222540/fv3_gfs_v16_ras_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_64044/fv3_gfs_v16_ras_debug Checking test 065 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3699,11 +3699,11 @@ Checking test 065 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 398.153648 +The total amount of wall time = 403.919363 Test 065 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 29 18:44:35 GMT 2021 -Elapsed time: 02h:42m:56s. Have a nice day! +Wed Mar 31 19:43:33 GMT 2021 +Elapsed time: 02h:23m:14s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 8dda0abe29..78b660c1f6 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,29 +1,29 @@ -Mon Mar 29 09:01:41 CDT 2021 +Wed Mar 31 07:16:59 CDT 2021 Start Regression test -Compile 001 elapsed time 510 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 529 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -Compile 003 elapsed time 552 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 004 elapsed time 570 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 001 elapsed time 508 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 507 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 491 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 501 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y Compile 005 elapsed time 509 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 006 elapsed time 516 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 007 elapsed time 560 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 008 elapsed time 611 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 009 elapsed time 521 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 010 elapsed time 535 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 011 elapsed time 525 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 012 elapsed time 571 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 013 elapsed time 138 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 014 elapsed time 152 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 015 elapsed time 140 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 016 elapsed time 575 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 585 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 018 elapsed time 154 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 019 elapsed time 377 seconds. APP=DATM_NEMS -Compile 020 elapsed time 124 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_control +Compile 006 elapsed time 514 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 539 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 606 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 009 elapsed time 500 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 521 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 522 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 549 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 154 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 144 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 015 elapsed time 152 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 016 elapsed time 576 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 565 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 149 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 019 elapsed time 391 seconds. APP=DATM_NEMS +Compile 020 elapsed time 111 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -88,13 +88,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 46.110339 + 0: The total amount of wall time = 46.414912 Test 001 fv3_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -159,13 +159,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 46.887603 + 0: The total amount of wall time = 48.541556 Test 002 fv3_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -230,13 +230,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 44.542782 + 0: The total amount of wall time = 45.148673 Test 003 fv3_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -283,13 +283,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 23.953778 + 0: The total amount of wall time = 27.954003 Test 004 fv3_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_read_inc -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_read_inc +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_read_inc +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -354,13 +354,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 48.310337 + 0: The total amount of wall time = 46.703294 Test 005 fv3_read_inc PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_wrtGauss_netcdf_esmf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -405,13 +405,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 150.461313 + 0: The total amount of wall time = 151.996049 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_wrtGauss_netcdf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_netcdf +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -456,13 +456,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 46.418161 + 0: The total amount of wall time = 44.425314 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -471,7 +471,7 @@ Checking test 008 fv3_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 @@ -507,13 +507,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 57.294646 + 0: The total amount of wall time = 54.762819 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGlatlon_netcdf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_wrtGlatlon_netcdf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGlatlon_netcdf +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -558,13 +558,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.597730 + 0: The total amount of wall time = 49.832194 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_wrtGauss_nemsio +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_nemsio +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,13 +609,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 44.016033 + 0: The total amount of wall time = 54.039681 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_wrtGauss_nemsio_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -660,13 +660,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 103.485330 + 0: The total amount of wall time = 106.305626 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stochy +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -731,13 +731,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 47.628018 + 0: The total amount of wall time = 49.935896 Test 012 fv3_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_ca +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_ca +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -802,13 +802,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 34.054691 + 0: The total amount of wall time = 36.278826 Test 013 fv3_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_lndp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -873,13 +873,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 53.168725 + 0: The total amount of wall time = 53.901853 Test 014 fv3_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_iau -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_iau +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_iau +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,13 +944,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.373465 + 0: The total amount of wall time = 49.494383 Test 015 fv3_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_lheatstrg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_lheatstrg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_lheatstrg +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -995,13 +995,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.122994 + 0: The total amount of wall time = 49.682004 Test 016 fv3_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfdlmprad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1047,13 +1047,13 @@ Checking test 017 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 676.314147 + 0: The total amount of wall time = 679.193460 Test 017 fv3_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfdlmprad_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad_atmwav +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1099,13 +1099,13 @@ Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 821.377327 + 0: The total amount of wall time = 827.827926 Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_wrtGauss_nemsio_c768 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_wrtGauss_nemsio_c768 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_wrtGauss_nemsio_c768 Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1151,13 +1151,13 @@ Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 704.250351 + 0: The total amount of wall time = 701.652528 Test 019 fv3_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_multigases_repro -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_multigases_repro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_multigases_repro +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_multigases_repro Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1228,13 +1228,13 @@ Checking test 020 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 104.651260 + 0: The total amount of wall time = 105.281934 Test 020 fv3_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_32bit -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_control_32bit +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control_32bit +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_control_32bit Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1299,13 +1299,13 @@ Checking test 021 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.449818 + 0: The total amount of wall time = 47.307365 Test 021 fv3_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_stretched +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stretched +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_stretched Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1358,13 +1358,13 @@ Checking test 022 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 218.081077 + 0: The total amount of wall time = 215.665265 Test 022 fv3_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_stretched_nest +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stretched_nest +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_stretched_nest Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1428,13 +1428,13 @@ Checking test 023 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK - 0: The total amount of wall time = 239.114255 + 0: The total amount of wall time = 245.789591 Test 023 fv3_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_regional_control Checking test 024 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1442,25 +1442,25 @@ Checking test 024 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 531.396070 + 0: The total amount of wall time = 530.817352 Test 024 fv3_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_restart -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_restart +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_regional_restart Checking test 025 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 297.035934 + 0: The total amount of wall time = 294.602840 Test 025 fv3_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_regional_quilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_quilt +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_regional_quilt Checking test 026 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1471,13 +1471,13 @@ Checking test 026 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 587.779200 + 0: The total amount of wall time = 588.601187 Test 026 fv3_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_hafs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_regional_quilt_hafs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_quilt_hafs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_regional_quilt_hafs Checking test 027 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1486,13 +1486,13 @@ Checking test 027 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 578.249723 + 0: The total amount of wall time = 579.966646 Test 027 fv3_regional_quilt_hafs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_regional_quilt_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_regional_quilt_netcdf_parallel Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1500,13 +1500,13 @@ Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 582.525316 + 0: The total amount of wall time = 583.249652 Test 028 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfdlmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfdlmp Checking test 029 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1551,13 +1551,13 @@ Checking test 029 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 45.468419 + 0: The total amount of wall time = 49.122440 Test 029 fv3_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_gwd -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfdlmprad_gwd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad_gwd +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfdlmprad_gwd Checking test 030 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1602,13 +1602,13 @@ Checking test 030 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 50.767104 + 0: The total amount of wall time = 52.054100 Test 030 fv3_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_noahmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfdlmprad_noahmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad_noahmp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfdlmprad_noahmp Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1653,13 +1653,13 @@ Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 52.514933 + 0: The total amount of wall time = 51.349861 Test 031 fv3_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_csawmg +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_csawmg Checking test 032 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1704,13 +1704,13 @@ Checking test 032 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 117.342209 + 0: The total amount of wall time = 117.011831 Test 032 fv3_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_satmedmf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_satmedmf +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_satmedmf Checking test 033 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1755,13 @@ Checking test 033 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 52.921905 + 0: The total amount of wall time = 54.786808 Test 033 fv3_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_satmedmfq -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_satmedmfq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_satmedmfq +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_satmedmfq Checking test 034 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1806,13 +1806,13 @@ Checking test 034 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 53.503559 + 0: The total amount of wall time = 59.173615 Test 034 fv3_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmp_32bit -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfdlmp_32bit +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmp_32bit +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfdlmp_32bit Checking test 035 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1857,13 +1857,13 @@ Checking test 035 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 45.181717 + 0: The total amount of wall time = 44.372653 Test 035 fv3_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfdlmprad_32bit_post -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfdlmprad_32bit_post +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfdlmprad_32bit_post +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfdlmprad_32bit_post Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1912,13 +1912,13 @@ Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 72.121268 + 0: The total amount of wall time = 78.548870 Test 036 fv3_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_cpt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_cpt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_cpt +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_cpt Checking test 037 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1969,13 +1969,13 @@ Checking test 037 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 260.526978 + 0: The total amount of wall time = 259.406636 Test 037 fv3_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gsd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gsd +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gsd Checking test 038 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2064,13 +2064,13 @@ Checking test 038 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.169451 + 0: The total amount of wall time = 180.172956 Test 038 fv3_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rap -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_rap +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_rap +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_rap Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2135,13 +2135,13 @@ Checking test 039 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 97.960841 + 0: The total amount of wall time = 95.557032 Test 039 fv3_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_hrrr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_hrrr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_hrrr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_hrrr Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,13 +2206,13 @@ Checking test 040 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 105.305891 + 0: The total amount of wall time = 95.145457 Test 040 fv3_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_thompson Checking test 041 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2277,13 +2277,13 @@ Checking test 041 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 94.310794 + 0: The total amount of wall time = 87.065604 Test 041 fv3_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_thompson_no_aero +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson_no_aero +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_thompson_no_aero Checking test 042 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2348,13 +2348,13 @@ Checking test 042 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 89.499408 + 0: The total amount of wall time = 88.694122 Test 042 fv3_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_rrfs_v1beta +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_rrfs_v1beta Checking test 043 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2419,13 +2419,13 @@ Checking test 043 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 108.015559 + 0: The total amount of wall time = 100.183547 Test 043 fv3_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfs_v16 Checking test 044 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2502,13 +2502,13 @@ Checking test 044 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 186.836852 + 0: The total amount of wall time = 210.619244 Test 044 fv3_gfs_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfs_v16_restart Checking test 045 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2555,13 +2555,13 @@ Checking test 045 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 133.902682 + 0: The total amount of wall time = 145.634840 Test 045 fv3_gfs_v16_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_stochy +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfs_v16_stochy Checking test 046 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2626,13 +2626,13 @@ Checking test 046 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 55.254416 + 0: The total amount of wall time = 56.164240 Test 046 fv3_gfs_v16_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_RRTMGP +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfs_v16_RRTMGP Checking test 047 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2697,13 +2697,13 @@ Checking test 047 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 164.485586 + 0: The total amount of wall time = 168.600863 Test 047 fv3_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfs_v16_RRTMGP_c192L127 Checking test 048 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2762,13 +2762,13 @@ Checking test 048 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 636.145340 + 0: The total amount of wall time = 634.713422 Test 048 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfs_v16_RRTMGP_2thrd Checking test 049 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2833,13 +2833,13 @@ Checking test 049 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 174.078223 + 0: The total amount of wall time = 176.309232 Test 049 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfsv16_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_csawmg +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfsv16_csawmg Checking test 050 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2884,13 +2884,13 @@ Checking test 050 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 122.580612 + 0: The total amount of wall time = 125.780534 Test 050 fv3_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfsv16_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_csawmgt +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfsv16_csawmgt Checking test 051 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2935,13 +2935,13 @@ Checking test 051 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 123.170662 + 0: The total amount of wall time = 126.510921 Test 051 fv3_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gocart_clm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gocart_clm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gocart_clm +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gocart_clm Checking test 052 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2986,13 +2986,13 @@ Checking test 052 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 58.556424 + 0: The total amount of wall time = 59.663808 Test 052 fv3_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_flake +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_flake +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfs_v16_flake Checking test 053 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3057,13 +3057,13 @@ Checking test 053 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 108.541208 + 0: The total amount of wall time = 108.588989 Test 053 fv3_gfs_v16_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_HAFS_v0_hwrf_thompson Checking test 054 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3128,13 +3128,13 @@ Checking test 054 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 148.009572 + 0: The total amount of wall time = 150.367116 Test 054 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_esg_HAFS_v0_hwrf_thompson Checking test 055 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3149,13 +3149,13 @@ Checking test 055 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 295.662334 + 0: The total amount of wall time = 297.939889 Test 055 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfsv16_ugwpv1 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_ugwpv1 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfsv16_ugwpv1 Checking test 056 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3214,13 +3214,13 @@ Checking test 056 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 174.929694 + 0: The total amount of wall time = 171.811136 Test 056 fv3_gfsv16_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfsv16_ugwpv1_warmstart Checking test 057 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3279,13 +3279,13 @@ Checking test 057 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 173.941801 + 0: The total amount of wall time = 184.348875 Test 057 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_ras +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfs_v16_ras Checking test 058 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3350,13 +3350,13 @@ Checking test 058 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 95.068159 + 0: The total amount of wall time = 98.450368 Test 058 fv3_gfs_v16_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_debug +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfs_v16_debug Checking test 059 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3421,13 +3421,13 @@ Checking test 059 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 272.554598 + 0: The total amount of wall time = 300.569914 Test 059 fv3_gfs_v16_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_RRTMGP_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfs_v16_RRTMGP_debug Checking test 060 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3492,13 +3492,13 @@ Checking test 060 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.080582 + 0: The total amount of wall time = 400.153579 Test 060 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_regional_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_regional_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_regional_control_debug +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_regional_control_debug Checking test 061 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3506,13 +3506,13 @@ Checking test 061 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 368.116032 + 0: The total amount of wall time = 374.380252 Test 061 fv3_regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_control_debug +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_control_debug Checking test 062 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3539,13 +3539,13 @@ Checking test 062 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 152.475526 + 0: The total amount of wall time = 162.873428 Test 062 fv3_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_stretched_nest_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_stretched_nest_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_stretched_nest_debug +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_stretched_nest_debug Checking test 063 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3562,13 +3562,13 @@ Checking test 063 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 376.492674 + 0: The total amount of wall time = 392.854418 Test 063 fv3_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gsd_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gsd_debug +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gsd_debug Checking test 064 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3633,13 +3633,13 @@ Checking test 064 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 216.578287 + 0: The total amount of wall time = 231.034273 Test 064 fv3_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gsd_diag3d_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gsd_diag3d_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gsd_diag3d_debug +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gsd_diag3d_debug Checking test 065 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3704,13 +3704,13 @@ Checking test 065 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 299.835462 + 0: The total amount of wall time = 320.980529 Test 065 fv3_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson_debug +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_thompson_debug Checking test 066 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3775,13 +3775,13 @@ Checking test 066 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 355.963255 + 0: The total amount of wall time = 363.447645 Test 066 fv3_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_thompson_no_aero_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_thompson_no_aero_debug +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_thompson_no_aero_debug Checking test 067 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3846,13 +3846,13 @@ Checking test 067 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 344.473932 + 0: The total amount of wall time = 354.167578 Test 067 fv3_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_rrfs_v1beta_debug +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_rrfs_v1beta_debug Checking test 068 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3917,13 +3917,13 @@ Checking test 068 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.927829 + 0: The total amount of wall time = 225.982687 Test 068 fv3_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_HAFS_v0_hwrf_thompson_debug Checking test 069 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3988,13 +3988,13 @@ Checking test 069 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 215.320502 + 0: The total amount of wall time = 221.349268 Test 069 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 070 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4009,13 +4009,13 @@ Checking test 070 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 418.559362 + 0: The total amount of wall time = 417.013062 Test 070 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfsv16_ugwpv1_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfsv16_ugwpv1_debug Checking test 071 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4074,13 +4074,13 @@ Checking test 071 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 583.380475 + 0: The total amount of wall time = 598.017873 Test 071 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/fv3_gfs_v16_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/fv3_gfs_v16_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/fv3_gfs_v16_ras_debug +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/fv3_gfs_v16_ras_debug Checking test 072 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4145,13 +4145,13 @@ Checking test 072 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 342.684006 + 0: The total amount of wall time = 334.489862 Test 072 fv3_gfs_v16_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_control Checking test 073 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4201,13 +4201,13 @@ Checking test 073 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 96.769618 + 0: The total amount of wall time = 113.391004 Test 073 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_restart Checking test 074 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4257,13 +4257,13 @@ Checking test 074 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 63.399783 + 0: The total amount of wall time = 74.938047 Test 074 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_controlfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_controlfrac Checking test 075 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4313,13 +4313,13 @@ Checking test 075 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 103.520729 + 0: The total amount of wall time = 110.949598 Test 075 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restartfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_restartfrac Checking test 076 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4369,13 +4369,13 @@ Checking test 076 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 70.011642 + 0: The total amount of wall time = 73.697667 Test 076 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_2threads Checking test 077 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4425,13 +4425,13 @@ Checking test 077 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 123.430851 + 0: The total amount of wall time = 134.232567 Test 077 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_decomp Checking test 078 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4481,13 +4481,13 @@ Checking test 078 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 94.828471 + 0: The total amount of wall time = 107.769516 Test 078 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_satmedmf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_satmedmf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_satmedmf +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_satmedmf Checking test 079 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4537,13 +4537,13 @@ Checking test 079 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 95.364844 + 0: The total amount of wall time = 103.305855 Test 079 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_ca +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_ca +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_ca Checking test 080 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4593,13 +4593,13 @@ Checking test 080 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 107.432213 + 0: The total amount of wall time = 112.760800 Test 080 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_control_c192 Checking test 081 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4649,13 +4649,13 @@ Checking test 081 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 387.641225 + 0: The total amount of wall time = 434.480016 Test 081 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restart_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_restart_c192 Checking test 082 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4705,13 +4705,13 @@ Checking test 082 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 274.975548 + 0: The total amount of wall time = 277.762890 Test 082 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_controlfrac_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac_c192 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_controlfrac_c192 Checking test 083 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4761,13 +4761,13 @@ Checking test 083 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 390.904613 + 0: The total amount of wall time = 397.235142 Test 083 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restartfrac_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac_c192 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_restartfrac_c192 Checking test 084 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4817,13 +4817,13 @@ Checking test 084 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 272.547764 + 0: The total amount of wall time = 271.052809 Test 084 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_control_c384 Checking test 085 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4876,13 +4876,13 @@ Checking test 085 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1322.559028 + 0: The total amount of wall time = 1327.820410 Test 085 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restart_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_restart_c384 Checking test 086 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4935,13 +4935,13 @@ Checking test 086 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 700.510555 + 0: The total amount of wall time = 703.842811 Test 086 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_controlfrac_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac_c384 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_controlfrac_c384 Checking test 087 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4994,13 +4994,13 @@ Checking test 087 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1320.653071 + 0: The total amount of wall time = 1318.485431 Test 087 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restartfrac_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_controlfrac_c384 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_restartfrac_c384 Checking test 088 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5053,13 +5053,13 @@ Checking test 088 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 697.666394 + 0: The total amount of wall time = 708.317311 Test 088 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_bmark +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmark +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_bmark Checking test 089 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5112,13 +5112,13 @@ Checking test 089 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 859.169381 + 0: The total amount of wall time = 844.955693 Test 089 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restart_bmark +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmark +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_restart_bmark Checking test 090 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5171,13 +5171,13 @@ Checking test 090 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 460.746557 + 0: The total amount of wall time = 467.587938 Test 090 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_bmarkfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_bmarkfrac Checking test 091 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5230,13 +5230,13 @@ Checking test 091 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 846.612737 + 0: The total amount of wall time = 849.142731 Test 091 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restart_bmarkfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_restart_bmarkfrac Checking test 092 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5289,13 +5289,13 @@ Checking test 092 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 498.094775 + 0: The total amount of wall time = 454.828198 Test 092 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_bmarkfrac_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac_v16 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_bmarkfrac_v16 Checking test 093 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5348,13 +5348,13 @@ Checking test 093 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 1374.565161 + 0: The total amount of wall time = 1432.314029 Test 093 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_restart_bmarkfrac_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac_v16 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_restart_bmarkfrac_v16 Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5407,13 +5407,13 @@ Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 719.163236 + 0: The total amount of wall time = 725.122361 Test 094 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmark_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_bmark_wave +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmark_wave +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_bmark_wave Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5469,13 +5469,13 @@ Checking test 095 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1430.349715 + 0: The total amount of wall time = 1446.365366 Test 095 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_bmarkfrac_wave +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac_wave +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_bmarkfrac_wave Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5531,13 +5531,13 @@ Checking test 096 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1434.948129 + 0: The total amount of wall time = 1445.334455 Test 096 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_bmarkfrac_wave_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_bmarkfrac_wave_v16 Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5592,13 +5592,13 @@ Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 950.088570 + 0: The total amount of wall time = 990.274043 Test 097 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_control_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_control_wave +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_control_wave +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_control_wave Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5651,13 +5651,13 @@ Checking test 098 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 821.592124 + 0: The total amount of wall time = 816.807417 Test 098 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_debug +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_debug Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5707,13 +5707,13 @@ Checking test 099 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 333.498833 + 0: The total amount of wall time = 345.313995 Test 099 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/cpld_debugfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/cpld_debugfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/cpld_debugfrac +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/cpld_debugfrac Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5763,73 +5763,73 @@ Checking test 100 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 326.141522 + 0: The total amount of wall time = 345.463342 Test 100 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/datm_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/datm_control_cfsr Checking test 101 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 - 0: The total amount of wall time = 99.836055 + 0: The total amount of wall time = 105.944705 Test 101 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/datm_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/datm_restart_cfsr Checking test 102 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 - 0: The total amount of wall time = 76.803098 + 0: The total amount of wall time = 73.805988 Test 102 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/datm_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/datm_control_gefs Checking test 103 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 - 0: The total amount of wall time = 97.144331 + 0: The total amount of wall time = 103.265901 Test 103 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/datm_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/datm_bulk_cfsr Checking test 104 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 - 0: The total amount of wall time = 96.636890 + 0: The total amount of wall time = 106.628302 Test 104 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/datm_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/datm_bulk_gefs Checking test 105 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 - 0: The total amount of wall time = 102.103034 + 0: The total amount of wall time = 101.390351 Test 105 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/datm_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/datm_mx025_cfsr Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5838,13 +5838,13 @@ Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 406.625414 + 0: The total amount of wall time = 407.509547 Test 106 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/datm_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/datm_mx025_gefs Checking test 107 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5853,23 +5853,23 @@ Checking test 107 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 394.539133 + 0: The total amount of wall time = 387.584019 Test 107 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_270535/datm_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_379316/datm_debug_cfsr Checking test 108 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 - 0: The total amount of wall time = 294.034923 + 0: The total amount of wall time = 296.905281 Test 108 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 29 10:35:39 CDT 2021 -Elapsed time: 01h:33m:59s. Have a nice day! +Wed Mar 31 13:28:21 CDT 2021 +Elapsed time: 06h:11m:23s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 802cddfd04..83183a86af 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,23 +1,23 @@ -Mon Mar 29 17:55:37 UTC 2021 +Wed Mar 31 15:08:35 UTC 2021 Start Regression test -Compile 001 elapsed time 1022 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 1086 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 921 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 987 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 1125 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 1638 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 1284 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 008 elapsed time 1387 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 1488 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 1022 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 1150 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 776 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 1025 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 014 elapsed time 686 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_control +Compile 001 elapsed time 998 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 1042 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 984 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 1098 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 1085 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 1013 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 1177 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 008 elapsed time 981 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 1009 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 1045 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 1045 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 623 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 556 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 014 elapsed time 574 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -82,13 +82,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 54.662925 +The total amount of wall time = 81.654257 Test 001 fv3_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_decomp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -153,13 +153,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.703792 +The total amount of wall time = 56.291265 Test 002 fv3_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_2threads +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -224,13 +224,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 43.746136 +The total amount of wall time = 49.319508 Test 003 fv3_2threads PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -277,13 +277,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 23.114511 +The total amount of wall time = 25.387457 Test 004 fv3_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_read_inc -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_read_inc +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_read_inc +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -348,13 +348,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 49.643296 +The total amount of wall time = 55.013243 Test 005 fv3_read_inc PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_netcdf_esmf -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_wrtGauss_netcdf_esmf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_wrtGauss_netcdf_esmf +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -399,13 +399,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 149.877229 +The total amount of wall time = 225.811007 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_netcdf -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_wrtGauss_netcdf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_wrtGauss_netcdf +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -450,13 +450,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.541312 +The total amount of wall time = 51.741444 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_wrtGauss_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -501,13 +501,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 64.591018 +The total amount of wall time = 61.490688 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGlatlon_netcdf -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_wrtGlatlon_netcdf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_wrtGlatlon_netcdf +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -552,13 +552,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 49.828962 +The total amount of wall time = 57.150181 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_nemsio -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_wrtGauss_nemsio +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_wrtGauss_nemsio +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -603,13 +603,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.184331 +The total amount of wall time = 51.674199 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_nemsio_c192 -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_wrtGauss_nemsio_c192 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_wrtGauss_nemsio_c192 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -654,13 +654,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 119.363651 +The total amount of wall time = 127.134134 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_stochy -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_stochy +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -725,13 +725,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.769412 +The total amount of wall time = 60.270588 Test 012 fv3_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_ca -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_ca +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_ca +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -796,13 +796,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 37.520069 +The total amount of wall time = 39.661403 Test 013 fv3_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_lndp -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_lndp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_lndp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -867,13 +867,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 54.673979 +The total amount of wall time = 76.783040 Test 014 fv3_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_iau -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_iau +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_iau +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,13 +938,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 49.545229 +The total amount of wall time = 51.819636 Test 015 fv3_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_lheatstrg -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_lheatstrg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_lheatstrg +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -989,13 +989,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.490041 +The total amount of wall time = 54.196128 Test 016 fv3_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_multigases_repro -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_multigases_repro +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_multigases_repro +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1066,13 +1066,13 @@ Checking test 017 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 97.345208 +The total amount of wall time = 101.332337 Test 017 fv3_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control_32bit -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_control_32bit +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_control_32bit +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1137,13 +1137,13 @@ Checking test 018 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.934531 +The total amount of wall time = 54.149771 Test 018 fv3_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_stretched -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_stretched +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_stretched +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1196,13 +1196,13 @@ Checking test 019 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 337.801944 +The total amount of wall time = 352.129800 Test 019 fv3_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_stretched_nest -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_stretched_nest +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_stretched_nest +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1266,13 +1266,13 @@ Checking test 020 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 369.003611 +The total amount of wall time = 397.301250 Test 020 fv3_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_control -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_regional_control +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_regional_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1280,25 +1280,25 @@ Checking test 021 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 721.146859 +The total amount of wall time = 727.930578 Test 021 fv3_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_restart -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_regional_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_regional_restart +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_regional_restart Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 409.465039 +The total amount of wall time = 410.705287 Test 022 fv3_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_quilt -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_regional_quilt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_regional_quilt +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1309,13 +1309,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 700.067668 +The total amount of wall time = 699.370127 Test 023 fv3_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_quilt_hafs -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_regional_quilt_hafs +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_regional_quilt_hafs +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1324,13 +1324,13 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 703.253884 +The total amount of wall time = 697.883859 Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_regional_quilt_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1338,13 +1338,13 @@ Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 700.609470 +The total amount of wall time = 712.282925 Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmp -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfdlmp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfdlmp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1389,13 +1389,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 57.266183 +The total amount of wall time = 63.675166 Test 026 fv3_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmprad_gwd -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfdlmprad_gwd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfdlmprad_gwd +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1440,13 +1440,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 57.723534 +The total amount of wall time = 62.340850 Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmprad_noahmp -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfdlmprad_noahmp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfdlmprad_noahmp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1491,13 +1491,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.208831 +The total amount of wall time = 59.649198 Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_csawmg -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_csawmg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_csawmg +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1542,13 +1542,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 126.672553 +The total amount of wall time = 127.264998 Test 029 fv3_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_satmedmf -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_satmedmf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_satmedmf +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1593,13 +1593,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.337259 +The total amount of wall time = 65.267542 Test 030 fv3_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_satmedmfq -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_satmedmfq +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_satmedmfq +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1644,13 +1644,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.730474 +The total amount of wall time = 63.867419 Test 031 fv3_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmp_32bit -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfdlmp_32bit +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfdlmp_32bit +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1695,13 +1695,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.183587 +The total amount of wall time = 58.645277 Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmprad_32bit_post -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfdlmprad_32bit_post +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfdlmprad_32bit_post +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1750,13 +1750,13 @@ Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 106.179920 +The total amount of wall time = 112.827007 Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_cpt -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_cpt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_cpt +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1807,13 +1807,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 285.103213 +The total amount of wall time = 286.082587 Test 034 fv3_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gsd -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gsd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gsd +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1902,13 +1902,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 198.158597 +The total amount of wall time = 200.026250 Test 035 fv3_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_rap -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_rap +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_rap +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_rap Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1973,13 +1973,13 @@ Checking test 036 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 102.511932 +The total amount of wall time = 108.062937 Test 036 fv3_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_hrrr -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_hrrr +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_hrrr +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_hrrr Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2044,13 +2044,13 @@ Checking test 037 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 109.622947 +The total amount of wall time = 106.202567 Test 037 fv3_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_thompson -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_thompson +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_thompson Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2115,13 +2115,13 @@ Checking test 038 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 98.007595 +The total amount of wall time = 94.844072 Test 038 fv3_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_thompson_no_aero -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_thompson_no_aero +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_thompson_no_aero +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_thompson_no_aero Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2186,13 +2186,13 @@ Checking test 039 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 91.762159 +The total amount of wall time = 94.511050 Test 039 fv3_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_rrfs_v1beta -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_rrfs_v1beta +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_rrfs_v1beta +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_rrfs_v1beta Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2257,13 +2257,13 @@ Checking test 040 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 108.249565 +The total amount of wall time = 99.279376 Test 040 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16 -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfs_v16 Checking test 041 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2340,13 +2340,13 @@ Checking test 041 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 184.402273 +The total amount of wall time = 214.433123 Test 041 fv3_gfs_v16 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16 -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfs_v16_restart Checking test 042 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2393,13 +2393,13 @@ Checking test 042 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 134.788814 +The total amount of wall time = 133.939345 Test 042 fv3_gfs_v16_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_stochy -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_stochy +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfs_v16_stochy Checking test 043 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2464,13 +2464,13 @@ Checking test 043 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.906884 +The total amount of wall time = 61.887269 Test 043 fv3_gfs_v16_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_RRTMGP -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_RRTMGP +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_RRTMGP +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfs_v16_RRTMGP Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2535,13 +2535,13 @@ Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 175.686839 +The total amount of wall time = 174.039624 Test 044 fv3_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfs_v16_RRTMGP_c192L127 Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2600,13 +2600,13 @@ Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 718.989297 +The total amount of wall time = 729.185761 Test 045 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_RRTMGP -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_RRTMGP +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfs_v16_RRTMGP_2thrd Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2671,13 +2671,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 169.998053 +The total amount of wall time = 165.714600 Test 046 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_csawmg -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfsv16_csawmg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfsv16_csawmg +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfsv16_csawmg Checking test 047 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2722,13 +2722,13 @@ Checking test 047 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 142.580560 +The total amount of wall time = 143.761030 Test 047 fv3_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_csawmgt -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfsv16_csawmgt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfsv16_csawmgt +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfsv16_csawmgt Checking test 048 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2773,13 +2773,13 @@ Checking test 048 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 142.082071 +The total amount of wall time = 141.454359 Test 048 fv3_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gocart_clm -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gocart_clm +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gocart_clm +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gocart_clm Checking test 049 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2824,13 +2824,13 @@ Checking test 049 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 66.004347 +The total amount of wall time = 74.888411 Test 049 fv3_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_flake -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_flake +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_flake +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfs_v16_flake Checking test 050 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2895,13 +2895,13 @@ Checking test 050 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 104.504125 +The total amount of wall time = 108.056367 Test 050 fv3_gfs_v16_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_HAFS_v0_hwrf_thompson Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2966,13 +2966,13 @@ Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 161.855317 +The total amount of wall time = 162.081794 Test 051 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_esg_HAFS_v0_hwrf_thompson Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2987,13 +2987,13 @@ Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 309.753636 +The total amount of wall time = 310.890732 Test 052 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_ugwpv1 -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfsv16_ugwpv1 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfsv16_ugwpv1 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfsv16_ugwpv1 Checking test 053 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3052,13 +3052,13 @@ Checking test 053 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 195.924287 +The total amount of wall time = 195.252734 Test 053 fv3_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_ugwpv1_warmstart -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfsv16_ugwpv1_warmstart +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfsv16_ugwpv1_warmstart Checking test 054 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3117,13 +3117,13 @@ Checking test 054 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 195.357165 +The total amount of wall time = 194.353683 Test 054 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_ras -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_ras +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_ras +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfs_v16_ras Checking test 055 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3188,13 +3188,13 @@ Checking test 055 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 106.214850 +The total amount of wall time = 106.979316 Test 055 fv3_gfs_v16_ras PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_debug -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfs_v16_debug Checking test 056 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3259,13 +3259,13 @@ Checking test 056 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 245.331018 +The total amount of wall time = 273.199908 Test 056 fv3_gfs_v16_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_RRTMGP_debug -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_RRTMGP_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_RRTMGP_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfs_v16_RRTMGP_debug Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3330,13 +3330,13 @@ Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 340.114417 +The total amount of wall time = 345.996862 Test 057 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_control_debug -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_regional_control_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_regional_control_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_regional_control_debug Checking test 058 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3344,13 +3344,13 @@ Checking test 058 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 344.735041 +The total amount of wall time = 352.411304 Test 058 fv3_regional_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control_debug -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_control_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_control_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_control_debug Checking test 059 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3377,13 +3377,13 @@ Checking test 059 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 126.055386 +The total amount of wall time = 125.747340 Test 059 fv3_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_stretched_nest_debug -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_stretched_nest_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_stretched_nest_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_stretched_nest_debug Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3400,13 +3400,13 @@ Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 406.002194 +The total amount of wall time = 416.173778 Test 060 fv3_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gsd_debug -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gsd_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gsd_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gsd_debug Checking test 061 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3471,13 +3471,13 @@ Checking test 061 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 190.091186 +The total amount of wall time = 190.898269 Test 061 fv3_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gsd_diag3d_debug -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gsd_diag3d_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gsd_diag3d_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gsd_diag3d_debug Checking test 062 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3542,13 +3542,13 @@ Checking test 062 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 226.389819 +The total amount of wall time = 219.539985 Test 062 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_thompson_debug -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_thompson_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_thompson_debug Checking test 063 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3613,13 +3613,13 @@ Checking test 063 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 320.860326 +The total amount of wall time = 322.430712 Test 063 fv3_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_thompson_no_aero_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_thompson_no_aero_debug Checking test 064 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3684,13 +3684,13 @@ Checking test 064 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 316.328228 +The total amount of wall time = 310.043778 Test 064 fv3_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_rrfs_v1beta_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_rrfs_v1beta_debug Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3755,13 +3755,13 @@ Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 184.968222 +The total amount of wall time = 184.672766 Test 065 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_HAFS_v0_hwrf_thompson_debug Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3826,13 +3826,13 @@ Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 187.107966 +The total amount of wall time = 188.388149 Test 066 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3847,13 +3847,13 @@ Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 360.443909 +The total amount of wall time = 351.228894 Test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_ugwpv1_debug -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfsv16_ugwpv1_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfsv16_ugwpv1_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfsv16_ugwpv1_debug Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3912,13 +3912,13 @@ Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 542.343382 +The total amount of wall time = 545.514585 Test 068 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_ras_debug -working dir = /gpfs/hps3/stmp/Xiaqiong.Zhou/FV3_RT/rt_29935/fv3_gfs_v16_ras_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_ras_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_18366/fv3_gfs_v16_ras_debug Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3983,11 +3983,11 @@ Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 307.755160 +The total amount of wall time = 308.099375 Test 069 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 29 18:34:59 UTC 2021 -Elapsed time: 00h:39m:22s. Have a nice day! +Wed Mar 31 15:52:12 UTC 2021 +Elapsed time: 00h:43m:37s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 74faa7e815..18b6e5dee3 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,29 +1,29 @@ -Mon Mar 29 17:52:23 UTC 2021 +Wed Mar 31 17:35:50 UTC 2021 Start Regression test -Compile 001 elapsed time 1571 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 1685 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -Compile 003 elapsed time 1495 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 004 elapsed time 1688 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 005 elapsed time 1599 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 006 elapsed time 1710 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 007 elapsed time 1975 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 008 elapsed time 2438 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y -Compile 009 elapsed time 1700 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 010 elapsed time 1627 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 011 elapsed time 1793 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 012 elapsed time 1939 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 013 elapsed time 398 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 014 elapsed time 440 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y -Compile 015 elapsed time 406 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 016 elapsed time 2768 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 3053 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 018 elapsed time 686 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 019 elapsed time 1385 seconds. APP=DATM_NEMS -Compile 020 elapsed time 426 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_control +Compile 001 elapsed time 1547 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 2122 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 1530 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 1756 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 1759 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 006 elapsed time 1774 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 2095 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 2410 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y +Compile 009 elapsed time 1787 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 1950 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 1808 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 1956 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 409 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 459 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y +Compile 015 elapsed time 418 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 016 elapsed time 2785 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 2802 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 711 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 019 elapsed time 1378 seconds. APP=DATM_NEMS +Compile 020 elapsed time 464 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -88,13 +88,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 48.129469 +[0] The total amount of wall time = 50.886569 Test 001 fv3_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -159,13 +159,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 50.164820 +[0] The total amount of wall time = 49.847297 Test 002 fv3_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -230,13 +230,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 40.891923 +[0] The total amount of wall time = 40.753802 Test 003 fv3_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -283,13 +283,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 24.448008 +[0] The total amount of wall time = 24.500906 Test 004 fv3_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_read_inc -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_read_inc +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_read_inc +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -354,13 +354,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.704104 +[0] The total amount of wall time = 46.255642 Test 005 fv3_read_inc PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_netcdf_esmf -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_wrtGauss_netcdf_esmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_wrtGauss_netcdf_esmf +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -405,13 +405,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 155.038433 +[0] The total amount of wall time = 156.774753 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_netcdf -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_wrtGauss_netcdf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_wrtGauss_netcdf +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -456,13 +456,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.792501 +[0] The total amount of wall time = 45.637495 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_wrtGauss_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -471,9 +471,9 @@ Checking test 008 fv3_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 ............ALT CHECK......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 @@ -507,13 +507,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 59.900025 +[0] The total amount of wall time = 61.354191 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGlatlon_netcdf -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_wrtGlatlon_netcdf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_wrtGlatlon_netcdf +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -558,13 +558,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 46.838657 +[0] The total amount of wall time = 45.541505 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_nemsio -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_wrtGauss_nemsio +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_wrtGauss_nemsio +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,13 +609,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.336013 +[0] The total amount of wall time = 45.400581 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_wrtGauss_nemsio_c192 -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_wrtGauss_nemsio_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_wrtGauss_nemsio_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -660,13 +660,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 128.399345 +[0] The total amount of wall time = 124.129088 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_stochy -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_stochy +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_stochy +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -731,13 +731,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 53.479128 +[0] The total amount of wall time = 51.963959 Test 012 fv3_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_ca -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_ca +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_ca +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -802,13 +802,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 34.750682 +[0] The total amount of wall time = 34.204269 Test 013 fv3_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_lndp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_lndp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_lndp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -873,13 +873,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 52.336096 +[0] The total amount of wall time = 53.478467 Test 014 fv3_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_iau -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_iau +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_iau +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,13 +944,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.326177 +[0] The total amount of wall time = 44.995479 Test 015 fv3_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_lheatstrg -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_lheatstrg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_lheatstrg +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -995,13 +995,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.275539 +[0] The total amount of wall time = 45.461730 Test 016 fv3_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmprad -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfdlmprad +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfdlmprad +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1047,13 +1047,13 @@ Checking test 017 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -[0] The total amount of wall time = 681.744775 +[0] The total amount of wall time = 681.658457 Test 017 fv3_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmprad_atmwav -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfdlmprad_atmwav +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfdlmprad_atmwav +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1099,13 +1099,13 @@ Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -[0] The total amount of wall time = 859.914136 +[0] The total amount of wall time = 857.019497 Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_multigases_repro -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_multigases_repro +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_multigases_repro +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_multigases_repro Checking test 019 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1176,13 +1176,13 @@ Checking test 019 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 113.949889 +[0] The total amount of wall time = 114.975211 Test 019 fv3_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control_32bit -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_control_32bit +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_control_32bit +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_control_32bit Checking test 020 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,13 +1247,13 @@ Checking test 020 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 45.327527 +[0] The total amount of wall time = 44.993035 Test 020 fv3_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_stretched -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_stretched +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_stretched +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_stretched Checking test 021 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1306,13 +1306,13 @@ Checking test 021 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 326.923244 +[0] The total amount of wall time = 326.626778 Test 021 fv3_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_stretched_nest -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_stretched_nest +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_stretched_nest +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_stretched_nest Checking test 022 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,13 +1376,13 @@ Checking test 022 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -[0] The total amount of wall time = 348.917272 +[0] The total amount of wall time = 349.373756 Test 022 fv3_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_regional_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_regional_control Checking test 023 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1390,25 +1390,25 @@ Checking test 023 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 720.552980 +[0] The total amount of wall time = 713.661027 Test 023 fv3_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_restart -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_regional_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_regional_restart +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_regional_restart Checking test 024 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -[0] The total amount of wall time = 402.886179 +[0] The total amount of wall time = 402.801069 Test 024 fv3_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_quilt -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_regional_quilt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_regional_quilt +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_regional_quilt Checking test 025 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1419,13 +1419,13 @@ Checking test 025 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 732.776248 +[0] The total amount of wall time = 729.138879 Test 025 fv3_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_quilt_hafs -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_regional_quilt_hafs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_regional_quilt_hafs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_regional_quilt_hafs Checking test 026 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1434,27 +1434,27 @@ Checking test 026 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 732.022663 +[0] The total amount of wall time = 728.293123 Test 026 fv3_regional_quilt_hafs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_regional_quilt_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_regional_quilt_netcdf_parallel Checking test 027 fv3_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 -[0] The total amount of wall time = 737.854154 +[0] The total amount of wall time = 733.440218 Test 027 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfdlmp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfdlmp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfdlmp Checking test 028 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1499,13 +1499,13 @@ Checking test 028 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 52.084009 +[0] The total amount of wall time = 51.898899 Test 028 fv3_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmprad_gwd -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfdlmprad_gwd +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfdlmprad_gwd +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfdlmprad_gwd Checking test 029 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1550,13 +1550,13 @@ Checking test 029 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 53.527866 +[0] The total amount of wall time = 52.417408 Test 029 fv3_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmprad_noahmp -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfdlmprad_noahmp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfdlmprad_noahmp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfdlmprad_noahmp Checking test 030 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1601,13 +1601,13 @@ Checking test 030 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 52.655454 +[0] The total amount of wall time = 52.432589 Test 030 fv3_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_csawmg -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_csawmg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_csawmg +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_csawmg Checking test 031 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1652,13 +1652,13 @@ Checking test 031 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 129.148771 +[0] The total amount of wall time = 129.645788 Test 031 fv3_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_satmedmf -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_satmedmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_satmedmf +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_satmedmf Checking test 032 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1703,13 +1703,13 @@ Checking test 032 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 56.871279 +[0] The total amount of wall time = 56.205239 Test 032 fv3_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_satmedmfq -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_satmedmfq +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_satmedmfq +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_satmedmfq Checking test 033 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1754,13 +1754,13 @@ Checking test 033 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 58.002911 +[0] The total amount of wall time = 56.229628 Test 033 fv3_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmp_32bit -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfdlmp_32bit +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfdlmp_32bit +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfdlmp_32bit Checking test 034 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1805,13 +1805,13 @@ Checking test 034 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 48.219808 +[0] The total amount of wall time = 44.569879 Test 034 fv3_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfdlmprad_32bit_post -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfdlmprad_32bit_post +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfdlmprad_32bit_post +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfdlmprad_32bit_post Checking test 035 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1860,13 +1860,13 @@ Checking test 035 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 94.735499 +[0] The total amount of wall time = 91.422899 Test 035 fv3_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_cpt -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_cpt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_cpt +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_cpt Checking test 036 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1917,13 +1917,13 @@ Checking test 036 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 308.494272 +[0] The total amount of wall time = 307.975439 Test 036 fv3_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gsd -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gsd +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gsd +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gsd Checking test 037 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2012,13 +2012,13 @@ Checking test 037 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 209.078728 +[0] The total amount of wall time = 198.299288 Test 037 fv3_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_rap -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_rap +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_rap +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_rap Checking test 038 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2083,13 +2083,13 @@ Checking test 038 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 104.798533 +[0] The total amount of wall time = 102.028271 Test 038 fv3_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_hrrr -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_hrrr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_hrrr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_hrrr Checking test 039 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2154,13 +2154,13 @@ Checking test 039 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 113.534607 +[0] The total amount of wall time = 100.218828 Test 039 fv3_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_thompson -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_thompson +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_thompson Checking test 040 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2225,13 +2225,13 @@ Checking test 040 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 101.133055 +[0] The total amount of wall time = 93.019663 Test 040 fv3_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_thompson_no_aero +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_thompson_no_aero Checking test 041 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2296,13 +2296,13 @@ Checking test 041 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 95.792828 +[0] The total amount of wall time = 92.931548 Test 041 fv3_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_rrfs_v1beta +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_rrfs_v1beta Checking test 042 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2367,13 +2367,13 @@ Checking test 042 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 114.839334 +[0] The total amount of wall time = 102.224719 Test 042 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16 -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfs_v16 Checking test 043 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2450,13 +2450,13 @@ Checking test 043 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 153.432985 +[0] The total amount of wall time = 154.427475 Test 043 fv3_gfs_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16 -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfs_v16_restart Checking test 044 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2503,13 +2503,13 @@ Checking test 044 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 92.520423 +[0] The total amount of wall time = 93.022025 Test 044 fv3_gfs_v16_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_stochy -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_stochy +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_stochy +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfs_v16_stochy Checking test 045 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2574,13 +2574,13 @@ Checking test 045 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 59.640682 +[0] The total amount of wall time = 59.607556 Test 045 fv3_gfs_v16_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_RRTMGP -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_RRTMGP +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_RRTMGP +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfs_v16_RRTMGP Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2645,13 +2645,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 185.700873 +[0] The total amount of wall time = 186.706261 Test 046 fv3_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfs_v16_RRTMGP_c192L127 Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2710,13 +2710,13 @@ Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 755.918510 +[0] The total amount of wall time = 756.053843 Test 047 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_RRTMGP -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_RRTMGP +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfs_v16_RRTMGP_2thrd Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2781,13 +2781,13 @@ Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 171.336213 +[0] The total amount of wall time = 173.523644 Test 048 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_csawmg -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfsv16_csawmg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfsv16_csawmg +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfsv16_csawmg Checking test 049 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2832,13 +2832,13 @@ Checking test 049 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 138.721067 +[0] The total amount of wall time = 138.303914 Test 049 fv3_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_csawmgt -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfsv16_csawmgt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfsv16_csawmgt +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfsv16_csawmgt Checking test 050 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2883,13 +2883,13 @@ Checking test 050 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 135.319426 +[0] The total amount of wall time = 136.317623 Test 050 fv3_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gocart_clm -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gocart_clm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gocart_clm +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gocart_clm Checking test 051 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2934,13 +2934,13 @@ Checking test 051 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 56.996322 +[0] The total amount of wall time = 57.437511 Test 051 fv3_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_flake -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_flake +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_flake +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfs_v16_flake Checking test 052 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3005,13 +3005,13 @@ Checking test 052 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 113.800343 +[0] The total amount of wall time = 112.964082 Test 052 fv3_gfs_v16_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_HAFS_v0_hwrf_thompson Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3076,13 +3076,13 @@ Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 173.283911 +[0] The total amount of wall time = 171.727905 Test 053 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_esg_HAFS_v0_hwrf_thompson Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3097,13 +3097,13 @@ Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 317.950461 +[0] The total amount of wall time = 318.403746 Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_ugwpv1 -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfsv16_ugwpv1 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfsv16_ugwpv1 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfsv16_ugwpv1 Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3162,13 +3162,13 @@ Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 198.119832 +[0] The total amount of wall time = 197.915338 Test 055 fv3_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_ugwpv1_warmstart -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfsv16_ugwpv1_warmstart +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfsv16_ugwpv1_warmstart Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3227,13 +3227,13 @@ Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 197.160624 +[0] The total amount of wall time = 197.672015 Test 056 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_ras -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_ras +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_ras +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfs_v16_ras Checking test 057 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3298,13 +3298,13 @@ Checking test 057 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 107.508172 +[0] The total amount of wall time = 108.419510 Test 057 fv3_gfs_v16_ras PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_debug -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfs_v16_debug Checking test 058 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3369,13 +3369,13 @@ Checking test 058 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 288.349861 +[0] The total amount of wall time = 293.910301 Test 058 fv3_gfs_v16_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_RRTMGP_debug -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_RRTMGP_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_RRTMGP_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfs_v16_RRTMGP_debug Checking test 059 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3440,13 +3440,13 @@ Checking test 059 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 421.136905 +[0] The total amount of wall time = 425.870568 Test 059 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_regional_control_debug -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_regional_control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_regional_control_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_regional_control_debug Checking test 060 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3454,13 +3454,13 @@ Checking test 060 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 397.179681 +[0] The total amount of wall time = 399.526326 Test 060 fv3_regional_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_control_debug -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_control_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_control_debug Checking test 061 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3487,13 +3487,13 @@ Checking test 061 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -[0] The total amount of wall time = 159.099833 +[0] The total amount of wall time = 161.989285 Test 061 fv3_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_stretched_nest_debug -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_stretched_nest_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_stretched_nest_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_stretched_nest_debug Checking test 062 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3510,13 +3510,13 @@ Checking test 062 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -[0] The total amount of wall time = 467.833504 +[0] The total amount of wall time = 473.275396 Test 062 fv3_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gsd_debug -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gsd_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gsd_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gsd_debug Checking test 063 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3581,13 +3581,13 @@ Checking test 063 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 234.268544 +[0] The total amount of wall time = 237.808340 Test 063 fv3_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gsd_diag3d_debug -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gsd_diag3d_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gsd_diag3d_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gsd_diag3d_debug Checking test 064 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3652,13 +3652,13 @@ Checking test 064 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 305.663629 +[0] The total amount of wall time = 301.732540 Test 064 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_thompson_debug -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_thompson_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_thompson_debug Checking test 065 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3723,13 +3723,13 @@ Checking test 065 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 390.957925 +[0] The total amount of wall time = 393.868422 Test 065 fv3_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_thompson_no_aero_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_thompson_no_aero_debug Checking test 066 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3794,13 +3794,13 @@ Checking test 066 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 376.600889 +[0] The total amount of wall time = 380.041442 Test 066 fv3_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_rrfs_v1beta_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_rrfs_v1beta_debug Checking test 067 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3865,13 +3865,13 @@ Checking test 067 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 227.183578 +[0] The total amount of wall time = 230.365979 Test 067 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_HAFS_v0_hwrf_thompson_debug Checking test 068 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3936,13 +3936,13 @@ Checking test 068 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 237.979313 +[0] The total amount of wall time = 237.717509 Test 068 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3957,13 +3957,13 @@ Checking test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 429.819220 +[0] The total amount of wall time = 432.398169 Test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfsv16_ugwpv1_debug -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfsv16_ugwpv1_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfsv16_ugwpv1_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfsv16_ugwpv1_debug Checking test 070 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4022,13 +4022,13 @@ Checking test 070 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 649.006396 +[0] The total amount of wall time = 654.926214 Test 070 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/fv3_gfs_v16_ras_debug -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/fv3_gfs_v16_ras_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/fv3_gfs_v16_ras_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/fv3_gfs_v16_ras_debug Checking test 071 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4093,13 +4093,13 @@ Checking test 071 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 368.614784 +[0] The total amount of wall time = 375.283921 Test 071 fv3_gfs_v16_ras_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_control Checking test 072 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4149,13 +4149,13 @@ Checking test 072 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 107.726929 +[0] The total amount of wall time = 111.773495 Test 072 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_restart Checking test 073 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4205,13 +4205,13 @@ Checking test 073 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 69.489798 +[0] The total amount of wall time = 67.509351 Test 073 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_controlfrac -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_controlfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_controlfrac +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_controlfrac Checking test 074 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4261,13 +4261,13 @@ Checking test 074 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 108.683861 +[0] The total amount of wall time = 112.406444 Test 074 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_controlfrac -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restartfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_controlfrac +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_restartfrac Checking test 075 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4317,13 +4317,13 @@ Checking test 075 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 69.195530 +[0] The total amount of wall time = 69.440220 Test 075 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_2threads Checking test 076 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4373,13 +4373,13 @@ Checking test 076 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 100.132470 +[0] The total amount of wall time = 102.622127 Test 076 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_decomp Checking test 077 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4429,13 +4429,13 @@ Checking test 077 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 105.992224 +[0] The total amount of wall time = 110.979282 Test 077 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_satmedmf -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_satmedmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_satmedmf +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_satmedmf Checking test 078 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4485,13 +4485,13 @@ Checking test 078 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 106.648747 +[0] The total amount of wall time = 109.093347 Test 078 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_ca -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_ca +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_ca +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_ca Checking test 079 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4541,13 +4541,13 @@ Checking test 079 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 107.002210 +[0] The total amount of wall time = 109.395131 Test 079 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_control_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_control_c192 Checking test 080 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4597,13 +4597,13 @@ Checking test 080 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 435.640989 +[0] The total amount of wall time = 426.299874 Test 080 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restart_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_restart_c192 Checking test 081 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4653,13 +4653,13 @@ Checking test 081 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 324.099209 +[0] The total amount of wall time = 319.935613 Test 081 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_controlfrac_c192 -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_controlfrac_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_controlfrac_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_controlfrac_c192 Checking test 082 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4709,13 +4709,13 @@ Checking test 082 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 432.696751 +[0] The total amount of wall time = 433.879550 Test 082 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_controlfrac_c192 -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restartfrac_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_controlfrac_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_restartfrac_c192 Checking test 083 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4765,13 +4765,13 @@ Checking test 083 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 324.394762 +[0] The total amount of wall time = 316.634424 Test 083 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_control_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_control_c384 Checking test 084 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4824,13 +4824,13 @@ Checking test 084 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 1492.129092 +[0] The total amount of wall time = 1493.872039 Test 084 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restart_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_restart_c384 Checking test 085 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4883,13 +4883,13 @@ Checking test 085 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 813.438652 +[0] The total amount of wall time = 819.043053 Test 085 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_controlfrac_c384 -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_controlfrac_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_controlfrac_c384 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_controlfrac_c384 Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4942,13 +4942,13 @@ Checking test 086 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 1484.042405 +[0] The total amount of wall time = 1484.578394 Test 086 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_controlfrac_c384 -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restartfrac_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_controlfrac_c384 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_restartfrac_c384 Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5001,13 +5001,13 @@ Checking test 087 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 808.615492 +[0] The total amount of wall time = 810.785691 Test 087 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmark -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_bmark +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_bmark +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_bmark Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5060,13 +5060,13 @@ Checking test 088 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 899.762563 +[0] The total amount of wall time = 919.010797 Test 088 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmark -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restart_bmark +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_bmark +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_restart_bmark Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5119,13 +5119,13 @@ Checking test 089 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 537.526663 +[0] The total amount of wall time = 536.172410 Test 089 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmarkfrac -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_bmarkfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_bmarkfrac +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_bmarkfrac Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5178,13 +5178,13 @@ Checking test 090 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 906.657884 +[0] The total amount of wall time = 902.952664 Test 090 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmarkfrac -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restart_bmarkfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_bmarkfrac +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_restart_bmarkfrac Checking test 091 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5237,13 +5237,13 @@ Checking test 091 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 538.894478 +[0] The total amount of wall time = 533.744717 Test 091 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmarkfrac_v16 -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_bmarkfrac_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_bmarkfrac_v16 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_bmarkfrac_v16 Checking test 092 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5296,13 +5296,13 @@ Checking test 092 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -[0] The total amount of wall time = 1539.866932 +[0] The total amount of wall time = 1547.561815 Test 092 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmarkfrac_v16 -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_restart_bmarkfrac_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_bmarkfrac_v16 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_restart_bmarkfrac_v16 Checking test 093 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5355,13 +5355,13 @@ Checking test 093 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -[0] The total amount of wall time = 890.645158 +[0] The total amount of wall time = 914.706152 Test 093 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmark_wave -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_bmark_wave +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_bmark_wave +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_bmark_wave Checking test 094 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5417,13 +5417,13 @@ Checking test 094 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 1565.480246 +[0] The total amount of wall time = 1565.508464 Test 094 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmarkfrac_wave -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_bmarkfrac_wave +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_bmarkfrac_wave +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_bmarkfrac_wave Checking test 095 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5479,13 +5479,13 @@ Checking test 095 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 1606.306985 +[0] The total amount of wall time = 1570.858032 Test 095 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_bmarkfrac_wave_v16 -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_bmarkfrac_wave_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_bmarkfrac_wave_v16 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_bmarkfrac_wave_v16 Checking test 096 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5540,13 +5540,13 @@ Checking test 096 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 1074.074663 +[0] The total amount of wall time = 1059.869743 Test 096 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_control_wave -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_control_wave +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_control_wave +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_control_wave Checking test 097 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5599,13 +5599,13 @@ Checking test 097 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -[0] The total amount of wall time = 837.027269 +[0] The total amount of wall time = 866.219809 Test 097 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_debug -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_debug Checking test 098 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5655,13 +5655,13 @@ Checking test 098 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -[0] The total amount of wall time = 332.071663 +[0] The total amount of wall time = 336.755043 Test 098 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/cpld_debugfrac -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/cpld_debugfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/cpld_debugfrac +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/cpld_debugfrac Checking test 099 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5711,73 +5711,73 @@ Checking test 099 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -[0] The total amount of wall time = 330.357965 +[0] The total amount of wall time = 335.929802 Test 099 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/datm_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/datm_control_cfsr Checking test 100 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 -[0] The total amount of wall time = 112.955041 +[0] The total amount of wall time = 114.593343 Test 100 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/datm_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/datm_restart_cfsr Checking test 101 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 -[0] The total amount of wall time = 78.936157 +[0] The total amount of wall time = 78.052362 Test 101 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/datm_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/datm_control_gefs Checking test 102 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 -[0] The total amount of wall time = 102.986334 +[0] The total amount of wall time = 106.585975 Test 102 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/datm_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/datm_bulk_cfsr Checking test 103 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 -[0] The total amount of wall time = 109.728267 +[0] The total amount of wall time = 107.078616 Test 103 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/datm_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/datm_bulk_gefs Checking test 104 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 -[0] The total amount of wall time = 104.146685 +[0] The total amount of wall time = 107.594344 Test 104 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/datm_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/datm_mx025_cfsr Checking test 105 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5786,13 +5786,13 @@ Checking test 105 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 405.554649 +[0] The total amount of wall time = 421.836233 Test 105 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/datm_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/datm_mx025_gefs Checking test 106 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5801,23 +5801,23 @@ Checking test 106 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 398.130464 +[0] The total amount of wall time = 415.409404 Test 106 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210329/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Xiaqiong.Zhou/FV3_RT/rt_47595/datm_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210330/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_195459/datm_debug_cfsr Checking test 107 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 -[0] The total amount of wall time = 313.708469 +[0] The total amount of wall time = 315.654853 Test 107 datm_debug_cfsr PASS -REGRESSION TEST WAS SUCCESSFUL -Mon Mar 29 19:24:46 UTC 2021 -Elapsed time: 01h:32m:25s. Have a nice day! +REGRESSION TEST WAS SUCCESSFUL +Wed Mar 31 19:43:27 UTC 2021 +Elapsed time: 02h:07m:39s. Have a nice day! diff --git a/tests/auto/.gitignore b/tests/auto/.gitignore new file mode 100644 index 0000000000..d1838a36cd --- /dev/null +++ b/tests/auto/.gitignore @@ -0,0 +1,2 @@ +accesstoken +rt_auto_*.log diff --git a/tests/auto/jobs/bl.py b/tests/auto/jobs/bl.py new file mode 100644 index 0000000000..2915953197 --- /dev/null +++ b/tests/auto/jobs/bl.py @@ -0,0 +1,219 @@ +# Imports +import datetime +import logging +import os +import sys +from . import rt + +def run(job_obj): + logger = logging.getLogger('BL/RUN') + workdir, rtbldir, blstore = set_directories(job_obj) + pr_repo_loc, repo_dir_str = clone_pr_repo(job_obj, workdir) + bldate = get_bl_date(job_obj, pr_repo_loc) + bldir = f'{blstore}/develop-{bldate}/{job_obj.compiler.upper()}' + run_regression_test(job_obj, pr_repo_loc) + post_process(job_obj, pr_repo_loc, repo_dir_str, rtbldir, bldir) + + +def set_directories(job_obj): + logger = logging.getLogger('BL/SET_DIRECTORIES') + if job_obj.machine == 'hera': + workdir = '/scratch1/NCEPDEV/nems/emc.nemspara/autort/pr' + blstore = '/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs' + rtbldir = '/scratch1/NCEPDEV/stmp4/emc.nemspara/FV3_RT/'\ + f'REGRESSION_TEST_{job_obj.compiler.upper()}' + elif job_obj.machine == 'jet': + workdir = '/lfs4/HFIP/h-nems/emc.nemspara/autort/pr' + blstore = '/lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/' + rtbldir = '/lfs4/HFIP/hfv3gfs/emc.nemspara/RT_BASELINE/'\ + f'emc.nemspara/FV3_RT/REGRESSION_TEST_{job_obj.compiler.upper()}' + elif job_obj.machine == 'gaea': + workdir = '/lustre/f2/pdata/ncep/emc.nemspara/autort/pr' + blstore = '/lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs' + rtbldir = '/lustre/f2/scratch/emc.nemspara/FV3_RT/'\ + f'REGRESSION_TEST_{job_obj.compiler.upper()}' + elif job_obj.machine == 'orion': + workdir = '/work/noaa/nems/emc.nemspara/autort/pr' + blstore = '/work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs' + rtbldir = '/work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/'\ + f'REGRESSION_TEST_{job_obj.compiler.upper()}' + elif job_obj.machine == 'cheyenne': + workdir = '/glade/work/heinzell/fv3/ufs-weather-model/auto-rt' + blstore = '/glade/p/ral/jntp/GMTB/ufs-weather-model/RT' + rtbldir = '/glade/work/heinzell/FV3_RT/'\ + f'REGRESSION_TEST_{job_obj.compiler.upper()}' + else: + logger.critical(f'Machine {job_obj.machine} is not supported for this job') + raise KeyError + + logger.info(f'machine: {job_obj.machine}') + logger.info(f'workdir: {workdir}') + logger.info(f'blstore: {blstore}') + logger.info(f'rtbldir: {rtbldir}') + + return workdir, rtbldir, blstore + + +def check_for_bl_dir(bldir): + logger = logging.getLogger('BL/CHECK_FOR_BL_DIR') + logger.info('Checking if baseline directory exists') + if os.path.exists(bldir): + logger.critical(f'Baseline dir: {bldir} exists. It should not, yet.') + raise FileExistsError + return False + + +def create_bl_dir(bldir): + logger = logging.getLogger('BL/CREATE_BL_DIR') + if not check_for_bl_dir(bldir): + os.makedirs(bldir) + if not os.path.exists(bldir): + logger.critical(f'Someting went wrong creating {bldir}') + raise FileNotFoundError + + +#def get_bl_date(job_obj): +# logger = logging.getLogger('BL/GET_BL_DATE') +# for line in job_obj.preq_dict['preq'].body.splitlines(): +# if 'BL_DATE:' in line: +# bldate = line +# bldate = bldate.replace('BL_DATE:', '') +# bldate = bldate.replace(' ', '') +# if len(bldate) != 8: +# print(f'Date: {bldate} is not formatted YYYYMMDD') +# raise ValueError +# logger.info(f'BL_DATE: {bldate}') +# bl_format = '%Y%m%d' +# try: +# datetime.datetime.strptime(bldate, bl_format) +# except ValueError: +# logger.info(f'Date {bldate} is not formatted YYYYMMDD') +# raise ValueError +# return bldate +# logger.critical('"BL_DATE:YYYYMMDD" needs to be in the PR body.'\ +# 'On its own line. Stopping') +# raise ValueError + + +def run_regression_test(job_obj, pr_repo_loc): + logger = logging.getLogger('BL/RUN_REGRESSION_TEST') + if job_obj.compiler == 'gnu': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -e -c -l rt_gnu.conf', + pr_repo_loc]] + elif job_obj.compiler == 'intel': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -e -c', pr_repo_loc]] + job_obj.run_commands(logger, rt_command) + + +def remove_pr_data(job_obj, pr_repo_loc, repo_dir_str, rt_dir): + logger = logging.getLogger('BL/REMOVE_PR_DATA') + rm_command = [ + [f'rm -rf {rt_dir}', pr_repo_loc], + [f'rm -rf {repo_dir_str}', pr_repo_loc] + ] + job_obj.run_commands(logger, rm_command) + + +def clone_pr_repo(job_obj, workdir): + ''' clone the GitHub pull request repo, via command line ''' + logger = logging.getLogger('BL/CLONE_PR_REPO') + repo_name = job_obj.preq_dict['preq'].head.repo.name + branch = job_obj.preq_dict['preq'].head.ref + git_url = job_obj.preq_dict['preq'].head.repo.html_url.split('//') + git_url = f'{git_url[0]}//${{ghapitoken}}@{git_url[1]}' + logger.debug(f'GIT URL: {git_url}') + logger.info('Starting repo clone') + repo_dir_str = f'{workdir}/'\ + f'{str(job_obj.preq_dict["preq"].id)}/'\ + f'{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}' + pr_repo_loc = f'{repo_dir_str}/{repo_name}' + job_obj.comment_text_append(f'Repo location: {pr_repo_loc}') + create_repo_commands = [ + [f'mkdir -p "{repo_dir_str}"', os.getcwd()], + [f'git clone -b {branch} {git_url}', repo_dir_str], + ['git submodule update --init --recursive', + f'{repo_dir_str}/{repo_name}'], + ['git config user.email "brian.curtis@noaa.gov"', + f'{repo_dir_str}/{repo_name}'], + ['git config user.name "Brian Curtis"', + f'{repo_dir_str}/{repo_name}'] + ] + + job_obj.run_commands(logger, create_repo_commands) + + logger.info('Finished repo clone') + return pr_repo_loc, repo_dir_str + + +def post_process(job_obj, pr_repo_loc, repo_dir_str, rtbldir, bldir): + logger = logging.getLogger('BL/MOVE_RT_LOGS') + rt_log = f'tests/RegressionTests_{job_obj.machine}'\ + f'.{job_obj.compiler}.log' + filepath = f'{pr_repo_loc}/{rt_log}' + rt_dir, logfile_pass = process_logfile(job_obj, filepath) + if logfile_pass: + create_bl_dir(bldir) + move_bl_command = [[f'mv {rtbldir}/* {bldir}/', pr_repo_loc]] + job_obj.run_commands(logger, move_bl_command) + logger.info('Starting RT Job') + rt.run(job_obj) + logger.info('Finished with RT Job') + remove_pr_data(job_obj, pr_repo_loc, repo_dir_str, rt_dir) + + +def get_bl_date(job_obj, pr_repo_loc): + logger = logging.getLogger('BL/UPDATE_RT_SH') + BLDATEFOUND = False + with open(f'{pr_repo_loc}/tests/rt.sh', 'r') as f: + for line in f: + if 'BL_DATE=' in line: + logger.info('Found BL_DATE in line') + BLDATEFOUND = True + bldate = line + bldate = bldate.rstrip('\n') + bldate = bldate.replace('BL_DATE=', '') + bldate = bldate.strip(' ') + logger.info(f'bldate is "{bldate}"') + logger.info(f'Type bldate: {type(bldate)}') + bl_format = '%Y%m%d' + try: + datetime.datetime.strptime(bldate, '%Y%m%d') + except ValueError: + logger.info(f'Date {bldate} is not formatted YYYYMMDD') + raise ValueError + if not BLDATEFOUND: + job_obj.comment_text_append('BL_DATE not found in rt.sh.' + 'Please manually edit rt.sh ' + 'with BL_DATE={bldate}') + job_obj.job_failed(logger, 'get_bl_date()') + logger.info('Finished get_bl_date') + + return bldate + + +def process_logfile(job_obj, logfile): + logger = logging.getLogger('BL/PROCESS_LOGFILE') + rt_dir = [] + if os.path.exists(logfile): + with open(logfile) as f: + for line in f: + if 'FAIL' in line and 'Test' in line: + job_obj.comment_text_append(f'{line.rstrip(chr(10))}') + elif 'working dir' in line and not rt_dir: + logger.info(f'Found "working dir" in line: {line}') + rt_dir = os.path.split(line.split()[-1])[0] + logger.info(f'It is: {rt_dir}') + job_obj.comment_text_append(f'Please manually delete: ' + f'{rt_dir}') + elif 'SUCCESSFUL' in line: + logger.info('RT Successful') + return rt_dir, True + logger.critical(f'Log file exists but is not complete') + job_obj.job_failed(logger, f'{job_obj.preq_dict["action"]}') + else: + logger.critical(f'Could not find {job_obj.machine}' + f'.{job_obj.compiler} ' + f'{job_obj.preq_dict["action"]} log') + raise FileNotFoundError diff --git a/tests/auto/jobs/rt.py b/tests/auto/jobs/rt.py new file mode 100644 index 0000000000..568bba39ee --- /dev/null +++ b/tests/auto/jobs/rt.py @@ -0,0 +1,131 @@ +# Imports +import datetime +import logging +import os + + +def run(job_obj): + logger = logging.getLogger('RT/RUN') + workdir = set_directories(job_obj) + branch, pr_repo_loc, repo_dir_str = clone_pr_repo(job_obj, workdir) + run_regression_test(job_obj, pr_repo_loc) + post_process(job_obj, pr_repo_loc, repo_dir_str, branch) + + +def set_directories(job_obj): + logger = logging.getLogger('RT/SET_DIRECTORIES') + if job_obj.machine == 'hera': + workdir = '/scratch1/NCEPDEV/nems/emc.nemspara/autort/pr' + elif job_obj.machine == 'jet': + workdir = '/lfs4/HFIP/h-nems/emc.nemspara/autort/pr' + elif job_obj.machine == 'gaea': + workdir = '/lustre/f2/pdata/ncep/emc.nemspara/autort/pr' + elif job_obj.machine == 'orion': + workdir = '/work/noaa/nems/emc.nemspara/autort/pr' + elif job_obj.machine == 'cheyenne': + workdir = '/glade/work/heinzell/fv3/ufs-weather-model/auto-rt' + else: + print(f'Machine {job_obj.machine} is not supported for this job') + raise KeyError + + logger.info(f'machine: {job_obj.machine}') + logger.info(f'workdir: {workdir}') + + return workdir + + +def run_regression_test(job_obj, pr_repo_loc): + logger = logging.getLogger('RT/RUN_REGRESSION_TEST') + if job_obj.compiler == 'gnu': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -e -l rt_gnu.conf', + pr_repo_loc]] + elif job_obj.compiler == 'intel': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -e', pr_repo_loc]] + job_obj.run_commands(logger, rt_command) + + +def remove_pr_data(job_obj, pr_repo_loc, repo_dir_str, rt_dir): + logger = logging.getLogger('RT/REMOVE_PR_DATA') + rm_command = [ + [f'rm -rf {rt_dir}', pr_repo_loc], + [f'rm -rf {repo_dir_str}', pr_repo_loc] + ] + job_obj.run_commands(logger, rm_command) + + +def clone_pr_repo(job_obj, workdir): + ''' clone the GitHub pull request repo, via command line ''' + logger = logging.getLogger('RT/CLONE_PR_REPO') + repo_name = job_obj.preq_dict['preq'].head.repo.name + branch = job_obj.preq_dict['preq'].head.ref + git_url = job_obj.preq_dict['preq'].head.repo.html_url.split('//') + git_url = f'{git_url[0]}//${{ghapitoken}}@{git_url[1]}' + logger.debug(f'GIT URL: {git_url}') + logger.info('Starting repo clone') + repo_dir_str = f'{workdir}/'\ + f'{str(job_obj.preq_dict["preq"].id)}/'\ + f'{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}' + pr_repo_loc = f'{repo_dir_str}/{repo_name}' + job_obj.comment_text_append(f'Repo location: {pr_repo_loc}') + create_repo_commands = [ + [f'mkdir -p "{repo_dir_str}"', os.getcwd()], + [f'git clone -b {branch} {git_url}', repo_dir_str], + ['git submodule update --init --recursive', + f'{repo_dir_str}/{repo_name}'], + ['git config user.email "brian.curtis@noaa.gov"', + f'{repo_dir_str}/{repo_name}'], + ['git config user.name "Brian Curtis"', + f'{repo_dir_str}/{repo_name}'] + ] + + job_obj.run_commands(logger, create_repo_commands) + + logger.info('Finished repo clone') + return branch, pr_repo_loc, repo_dir_str + + +def post_process(job_obj, pr_repo_loc, repo_dir_str, branch): + ''' This is the callback function associated with the "RT" command ''' + logger = logging.getLogger('RT/MOVE_RT_LOGS') + rt_log = f'tests/RegressionTests_{job_obj.machine}'\ + f'.{job_obj.compiler}.log' + filepath = f'{pr_repo_loc}/{rt_log}' + rt_dir, logfile_pass = process_logfile(job_obj, filepath) + if logfile_pass: + move_rt_commands = [ + [f'git pull --ff-only origin {branch}', pr_repo_loc], + [f'git add {rt_log}', pr_repo_loc], + [f'git commit -m "RT JOBS PASSED: {job_obj.machine}' + f'.{job_obj.compiler}. Log file uploaded."', + pr_repo_loc], + ['sleep 10', pr_repo_loc], + [f'git push origin {branch}', pr_repo_loc] + ] + job_obj.run_commands(logger, move_rt_commands) + remove_pr_data(job_obj, pr_repo_loc, repo_dir_str, rt_dir) + + +def process_logfile(job_obj, logfile): + logger = logging.getLogger('RT/PROCESS_LOGFILE') + rt_dir = [] + if os.path.exists(logfile): + with open(logfile) as f: + for line in f: + if 'FAIL' in line and 'Test' in line: + job_obj.comment_text_append(f'{line.rstrip(chr(10))}') + elif 'working dir' in line and not rt_dir: + rt_dir = os.path.split(line.split()[-1])[0] + job_obj.comment_text_append(f'Please manually delete: ' + f'{rt_dir}') + elif 'SUCCESSFUL' in line: + return rt_dir, True + job_obj.job_failed(logger, f'{job_obj.preq_dict["action"]}') + else: + logger.critical(f'Could not find {job_obj.machine}' + f'.{job_obj.compiler} ' + f'{job_obj.preq_dict["action"]} log') + print(f'Could not find {job_obj.machine}.{job_obj.compiler} ' + f'{job_obj.preq_dict["action"]} log') + raise FileNotFoundError diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index 5e0859531d..88e063ae4e 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -7,12 +7,13 @@ prior to start. """ from github import Github as gh -import argparse import datetime import subprocess import re import os import logging +import importlib + class GHInterface: ''' @@ -26,96 +27,78 @@ class GHInterface: client : pyGitHub communication object The connection to GitHub to make API requests ''' + def __init__(self): self.logger = logging.getLogger('GHINTERFACE') + + filename = 'accesstoken' + + if os.path.exists(filename): + if oct(os.stat(filename).st_mode)[-3:] != 600: + with open(filename) as f: + os.environ['ghapitoken'] = f.readline().strip('\n') + else: + raise Exception('File permission needs to be "600" ') + else: + raise FileNotFoundError('Cannot find file "accesstoken"') + try: self.client = gh(os.getenv('ghapitoken')) except Exception as e: self.logger.critical(f'Exception is {e}') raise(e) -def parse_args_in(): - ''' Parse all input arguments coming from rt_auto.sh ''' - logger = logging.getLogger('PARSE_ARGS_IN') - # Create Parse - parser = argparse.ArgumentParser() - - # Setup Input Arguments - choices = ['cheyenne', 'hera', 'orion', 'gaea', 'jet', 'wcoss_dell_p3'] - parser.add_argument('-m', '--machine', help='Machine name', required=True, choices=choices, type=str) - parser.add_argument('-w', '--workdir', help='Working directory', required=True, type=str) - - # Get Arguments - args = parser.parse_args() - - return args - -def input_data(args): - ''' Create dictionaries of data needed for processing UFS pull requests ''' - logger = logging.getLogger('INPUT_DATA') - machine_dict = { - 'name': args.machine, - 'workdir': args.workdir - } - repo_list_dict = [{ - 'name': 'ufs-weather-model', - 'address': 'ufs-community/ufs-weather-model', - 'base': 'develop' - }] - action_list_dict = [{ - 'name': 'RT', - 'callback_fnc': 'rt_callback' - }, - { - 'name': 'BL', - 'callback_fnc': 'bl_callback' - }] - - return machine_dict, repo_list_dict, action_list_dict def set_action_from_label(machine, actions, label): ''' Match the label that initiates a job with an action in the dict''' # -- i.e. hera-gnu-RT - # RT = full regression test suite logger = logging.getLogger('MATCH_LABEL_WITH_ACTIONS') + logger.info('Setting action from Label') split_label = label.name.split('-') - if len(split_label) != 3: return False, False #Make sure it has three parts + # Make sure it has three parts + if len(split_label) != 3: + return False, False + # Break the parts into their variables label_machine = split_label[0] label_compiler = split_label[1] label_action = split_label[2] - if not re.match(label_machine, machine['name']): return False, False #check machine name matches - if not str(label_compiler) in ["intel", "gnu"]: return False, False #Compiler must be intel or gnu - action_match = next((action for action in actions if re.match(action['name'], label_action)), False) - if label_action == 'RT': # SET ACTIONS BASED ON RT COMMAND - if label_compiler == "intel": - action_match["command"] = f'export RT_COMPILER="intel" && cd tests && /bin/bash --login ./rt.sh -e' - elif label_compiler == "gnu": - action_match["command"] = f'export RT_COMPILER="gnu" && cd tests && /bin/bash --login ./rt.sh -e -l rt_gnu.conf' - elif label_action == 'BL': # SET ACTIONS BASED ON BL COMMAND - if label_compiler == "intel": - action_match["command"] = f'export RT_COMPILER="intel" && cd tests && /bin/bash --login ./rt.sh -e -c' - elif label_compiler == "gnu": - action_match["command"] = f'export RT_COMPILER="gnu" && cd tests && /bin/bash --login ./rt.sh -e -c -l rt_gnu.conf' - + # check machine name matches + if not re.match(label_machine, machine): + return False, False + # Compiler must be intel or gnu + if not str(label_compiler) in ["intel", "gnu"]: + return False, False + action_match = next((action for action in actions + if re.match(action, label_action)), False) + + logging.info(f'Compiler: {label_compiler}, Action: {action_match}') return label_compiler, action_match def get_preqs_with_actions(repos, machine, ghinterface_obj, actions): - ''' Create list of dictionaries of a pull request and its machine label and action ''' + ''' Create list of dictionaries of a pull request + and its machine label and action ''' logger = logging.getLogger('GET_PREQS_WITH_ACTIONS') - gh_preqs = [ghinterface_obj.client.get_repo(repo['address']).get_pulls(state='open', sort='created', base=repo['base']) for repo in repos] + logger.info('Getting Pull Requests with Actions') + gh_preqs = [ghinterface_obj.client.get_repo(repo['address']) + .get_pulls(state='open', sort='created', base=repo['base']) + for repo in repos] each_pr = [preq for gh_preq in gh_preqs for preq in gh_preq] - preq_labels = [{'preq': pr, 'label': label} for pr in each_pr for label in pr.get_labels()] + preq_labels = [{'preq': pr, 'label': label} for pr in each_pr + for label in pr.get_labels()] - return_preq = [] + jobs = [] + # return_preq = [] for pr_label in preq_labels: - compiler, match = set_action_from_label(machine, actions, pr_label['label']) + compiler, match = set_action_from_label(machine, actions, + pr_label['label']) if match: - pr_label['action'] = match.copy() - pr_label['compiler'] = compiler - return_preq.append(pr_label.copy()) + pr_label['action'] = match + # return_preq.append(pr_label.copy()) + jobs.append(Job(pr_label.copy(), ghinterface_obj, machine, compiler)) + + return jobs - return return_preq class Job: ''' @@ -134,196 +117,153 @@ class Job: provided by the bash script ''' - def __init__(self, preq_dict, ghinterface_obj, machine): + def __init__(self, preq_dict, ghinterface_obj, machine, compiler): self.logger = logging.getLogger('JOB') self.preq_dict = preq_dict + self.job_mod = importlib.import_module( + f'jobs.{self.preq_dict["action"].lower()}') self.ghinterface_obj = ghinterface_obj self.machine = machine + self.compiler = compiler + self.comment_text = '' + self.failed_tests = [] + + def comment_text_append(self, newtext): + self.comment_text += f'{newtext}\n' def remove_pr_label(self): - ''' Removes the pull request label that initiated the job run from PR ''' + ''' Removes the PR label that initiated the job run from PR ''' self.logger.info(f'Removing Label: {self.preq_dict["label"]}') self.preq_dict['preq'].remove_from_labels(self.preq_dict['label']) def check_label_before_job_start(self): # LETS Check the label still exists before the start of the job in the # case of multiple jobs - label_to_check = f'{self.machine["name"]}-{self.preq_dict["compiler"]}-{self.preq_dict["action"]["name"]}' + label_to_check = f'{self.machine}'\ + f'-{self.compiler}'\ + f'-{self.preq_dict["action"]}' labels = self.preq_dict['preq'].get_labels() - label_match = next((label for label in labels if re.match(label.name, label_to_check)), False) + label_match = next((label for label in labels + if re.match(label.name, label_to_check)), False) return label_match - def run_commands(self, commands_with_cwd): - logger = logging.getLogger('JOB/RUN_COMMANDS') + def run_commands(self, logger, commands_with_cwd): for command, in_cwd in commands_with_cwd: - logger.info(f'Running "{command}" in location "{in_cwd}"') + logger.info(f'Running `{command}`') + logger.info(f'in location "{in_cwd}"') try: - output = subprocess.Popen(command, shell=True, cwd=in_cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - out, err = output.communicate() - out = [] if not out else out.decode('utf8').split('\n') - err = [] if not err else err.decode('utf8').split('\n') + output = subprocess.Popen(command, shell=True, cwd=in_cwd, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT) except Exception as e: - self.job_failed(logger, f'Command {command}', exception=e, out=out, err=err) - else: - logger.info(f'Finished running: {command}') - [logger.debug(f'stdout: {item}') for item in out if not None] - - def remove_pr_data(self): - logger = logging.getLogger('JOB/REMOVE_PR_DATA') - pr_dir_str = f'{self.machine["workdir"]}/{str(self.preq_dict["preq"].id)}' - rm_command = [ - [f'rm -rf {self.rt_dir}', self.pr_repo_loc], - [f'rm -rf {pr_dir_str}', self.pr_repo_loc] - ] - logger.info(f'Running "{rm_command}"') - self.run_commands(rm_command) - - def clone_pr_repo(self): - ''' clone the GitHub pull request repo, via command line ''' - logger = logging.getLogger('JOB/CLONE_PR_REPO') - repo_name = self.preq_dict['preq'].head.repo.name - self.branch = self.preq_dict['preq'].head.ref - git_url = self.preq_dict['preq'].head.repo.html_url.split('//') - git_url = f'{git_url[0]}//${{ghapitoken}}@{git_url[1]}' - logger.info(f'GIT URL: {git_url}') - logger.info('Starting repo clone') - repo_dir_str = f'{self.machine["workdir"]}/{str(self.preq_dict["preq"].id)}/{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}' - self.pr_repo_loc = repo_dir_str+"/"+repo_name - create_repo_commands = [ - [f'mkdir -p "{repo_dir_str}"', self.machine['workdir']], - [f'git clone -b {self.branch} {git_url}', repo_dir_str], - [f'git submodule update --init --recursive', f'{repo_dir_str}/{repo_name}'] - ] - - self.run_commands(create_repo_commands) - - logger.info('Finished repo clone') - return self.pr_repo_loc - - def execute_command(self): - ''' Run the command associted with the label used to initiate this job ''' - logger = logging.getLogger('JOB/EXECUTE_COMMAND') - compiler = self.preq_dict['compiler'] - logger.info(f'Compiler being used for command is {compiler}') - command = self.preq_dict["action"]["command"] - - try: - logger.info(f'Running: "{command}" in "{self.pr_repo_loc}"') - output = subprocess.Popen(command, cwd=self.pr_repo_loc, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - out,err = output.communicate() - except Exception as e: - out = [] if not out else out.decode('utf8').split('\n') - err = [] if not err else err.decode('utf8').split('\n') - self.job_failed(logger, f'Command {command}', exception=e, out=out, err=err) - else: - if output.returncode != 0: - self.job_failed(logger, "Script rt.sh", exception=SystemExit, STDOUT=False) + self.job_failed(logger, 'subprocess.Popen') else: try: - logger.info(f'Attempting to run callback: {self.preq_dict["action"]["callback_fnc"]}') - getattr(self, self.preq_dict['action']['callback_fnc'])() + out, err = output.communicate() + out = [] if not out else out.decode('utf8').split('\n') + logger.info(out) except Exception as e: - self.job_failed(logger, f'Callback function {self.preq_dict["action"]["callback_fnc"]}', exception=e, STDOUT=False) + err = [] if not err else err.decode('utf8').split('\n') + self.job_failed(logger, f'Command {command}', exception=e, + STDOUT=True, out=out, err=err) else: - logger.info(f'Finished callback {self.preq_dict["action"]["callback_fnc"]}') - [logger.debug(f'stdout: {item}') for item in out if not None] + logger.info(f'Finished running: {command}') def run(self): logger = logging.getLogger('JOB/RUN') logger.info(f'Starting Job: {self.preq_dict["label"]}') + self.comment_text_append(newtext=f'Machine: {self.machine}') + self.comment_text_append(f'Compiler: {self.compiler}') + self.comment_text_append(f'Job: {self.preq_dict["action"]}') if self.check_label_before_job_start(): try: logger.info('Calling remove_pr_label') self.remove_pr_label() - logger.info('Calling clone_pr_repo') - self.clone_pr_repo() - logger.info('Calling execute_command') - self.execute_command() - except Exception as e: - self.job_failed(logger, f'run()', exception=e, STDOUT=False) + logger.info('Calling Job to Run') + self.job_mod.run(self) + except Exception: + self.job_failed(logger, 'run()') + logger.info('Sending comment text') + self.send_comment_text() else: logger.info(f'Cannot find label {self.preq_dict["label"]}') - def job_failed(self, logger, job_name, exception=Exception, STDOUT=True, out=None, err=None): - comment_text = f'{job_name} FAILED \n'\ - f'Repo location: {self.pr_repo_loc} \n'\ - f'Machine: {self.machine["name"]} \n'\ - f'Compiler: {self.preq_dict["compiler"]} \n' + def send_comment_text(self): + logger = logging.getLogger('JOB/SEND_COMMENT_TEXT') + logger.info(f'Comment Text: {self.comment_text}') + self.comment_text_append('Please make changes and add ' + 'the following label back:') + self.comment_text_append(f'{self.machine}' + f'-{self.compiler}' + f'-{self.preq_dict["action"]}') + + self.preq_dict['preq'].create_issue_comment(self.comment_text) + + def job_failed(self, logger, job_name, exception=Exception, STDOUT=False, + out=None, err=None): + logger.critical(f'{job_name} FAILED. Exception:{exception}') + if STDOUT: - comment_text=comment_text+'\n'\ - f'STDOUT: {[item for item in out if not None]} \n'\ - f'STDERR: {[eitem for eitem in err if not None]} \n' - comment_text = comment_text+'Please make changes and add the following label back: '\ - f'{self.machine["name"]}-{self.preq_dict["compiler"]}-{self.preq_dict["action"]["name"]}' - logger.critical(comment_text) - self.preq_dict['preq'].create_issue_comment(comment_text) - raise exception - - def process_logfile(self, logfile): - self.rt_dir = [] - if os.path.exists(logfile): - with open(logfile) as f: - for line in f: - if 'working dir' in line and not self.rt_dir: - self.rt_dir = os.path.split(line.split()[-1])[0] - elif 'SUCCESSFUL' in line: - return True - self.job_failed(logger, "Regression Tests", STDOUT=False) - else: - logger.critical(f'Could not find {self.machine["name"]}.{self.preq_dict["compiler"]} RT log') - raise FileNotFoundError(f'Could not find {self.machine["name"]}.{self.preq_dict["compiler"]} RT log') - - # Add Callback Functions After Here - def rt_callback(self): - ''' This is the callback function associated with the "RT" command ''' - logger = logging.getLogger('JOB/MOVE_RT_LOGS') - rt_log = f'tests/RegressionTests_{self.machine["name"]}.{self.preq_dict["compiler"]}.log' - filepath = f'{self.pr_repo_loc}/{rt_log}' - logfile_pass = self.process_logfile(filepath) - if logfile_pass: - move_rt_commands = [ - [f'git pull --ff-only origin {self.branch}', self.pr_repo_loc], - [f'git add {rt_log}', self.pr_repo_loc], - [f'git commit -m "PASSED: {self.machine["name"]}.{self.preq_dict["compiler"]}. Log file uploaded. skip-ci"', self.pr_repo_loc], - ['sleep 10', self.pr_repo_loc], - [f'git push origin {self.branch}', self.pr_repo_loc] - ] - self.run_commands(move_rt_commands) - self.remove_pr_data() - - def bl_callback(self): - pass + logger.critical(f'STDOUT: {[item for item in out if not None]}') + logger.critical(f'STDERR: {[eitem for eitem in err if not None]}') + +def setup_env(): + hostname = os.getenv('HOSTNAME') + if bool(re.match(re.compile('hfe.+'), hostname)): + machine = 'hera' + elif bool(re.match(re.compile('fe.+'), hostname)): + machine = 'jet' + os.environ['ACCNR'] = 'h-nems' + elif bool(re.match(re.compile('gaea.+'), hostname)): + machine = 'gaea' + os.environ['ACCNR'] = 'nggps_emc' + elif bool(re.match(re.compile('Orion-login.+'), hostname)): + machine = 'orion' + elif bool(re.match(re.compile('.+.cheyenne.ucar.edu'), hostname)): + machine = 'cheyenne' + os.environ['ACCNR'] = 'P48503002' + else: + raise KeyError(f'Hostname: {hostname} does not match '\ + 'for a supported system. Exiting.') + + # Dictionary of GitHub repositories to check + repo_dict = [{ + 'name': 'ufs-weather-model', + 'address': 'ufs-community/ufs-weather-model', + 'base': 'develop' + }] + + # Approved Actions + action_list = ['RT', 'BL'] + + return machine, repo_dict, action_list + def main(): # handle logging - log_path = os.getcwd() - log_filename = f'rt_auto_{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}.log' - # Please don't run the following on cron with level=logging.DEBUG - # as it exposes the GH API Token - # Only set it to DEBUG while debugging - logging.basicConfig(filename=log_filename, filemode='w', level=logging.INFO) + log_filename = f'rt_auto_'\ + f'{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}.log' + logging.basicConfig(filename=log_filename, filemode='w', + level=logging.INFO) logger = logging.getLogger('MAIN') logger.info('Starting Script') - # handle input args - logger.info('Parsing input args') - args = parse_args_in() - # get input data - logger.info('Calling input_data().') - machine, repos, actions = input_data(args) + # setup environment + logger.info('Getting the environment setup') + machine, repos, actions = setup_env() # setup interface with GitHub logger.info('Setting up GitHub interface.') ghinterface_obj = GHInterface() # get all pull requests from the GitHub object - logger.info('Getting all pull requests, labels and actions applicable to this machine.') - preq_dict = get_preqs_with_actions(repos, machine, ghinterface_obj, actions) - # add Job objects and run them - logger.info('Adding all jobs to an object list and running them.') - jobs = [Job(pullreq, ghinterface_obj, machine) for pullreq in preq_dict] + # and turn them into Job objects + logger.info('Getting all pull requests, ' + 'labels and actions applicable to this machine.') + jobs = get_preqs_with_actions(repos, machine, + ghinterface_obj, actions) [job.run() for job in jobs] logger.info('Script Finished') diff --git a/tests/auto/rt_auto.sh b/tests/auto/start_rt_auto.sh similarity index 56% rename from tests/auto/rt_auto.sh rename to tests/auto/start_rt_auto.sh index 17d7e6ff00..74ad09f50a 100644 --- a/tests/auto/rt_auto.sh +++ b/tests/auto/start_rt_auto.sh @@ -1,53 +1,26 @@ #!/bin/bash --login set -eux -if [ -f "accesstoken.sh" ]; then - if [ $(stat -L -c "%a" "accesstoken.sh") == "600" ]; then - echo "Sourcing accesstoken.sh" - source ./accesstoken.sh - else - echo "accesstoken.sh permissions NEED to be set to 600 before starting" - exit 1 - fi -else - echo "Please create accesstoken.sh (600) with the following content\n" - echo "export ghapitoken=" - exit 1 -fi if [[ $HOSTNAME == hfe* ]]; then - MACHINE_NAME=hera - WORKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages elif [[ $HOSTNAME == Orion-login-* ]]; then - MACHINE_NAME=orion - WORKDIR=/work/noaa/nems/bcurtis/test export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages elif [[ $HOSTNAME == fe* ]]; then - MACHINE_NAME=jet - WORKDIR=/lfs4/HFIP/h-nems/Brian.Curtis/test - export ACCNR="h-nems" export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages elif [[ $HOSTNAME == gaea* ]]; then - MACHINE_NAME=gaea - WORKDIR=/lustre/f2/pdata/ncep/Brian.Curtis/test - export LOADEDMODULES=$LOADEDMODULES - export ACCNR="nggps_emc" # This applies to Brian.Curtis, may need change later export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages -elif [[ $HOSTNAME == *.cheyenne.ucar.edu ]]; then - MACHINE_NAME=cheyenne - WORKDIR=/glade/work/heinzell/fv3/ufs-weather-model/auto-rt - export ACCNR="P48503002" +elif [[ $HOSTNAME == *cheyenne* ]]; then export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages else - echo "No Python Path for this machine. automated RT not starting" + echo "No Python Path for this machine." exit 1 fi -python rt_auto.py -m $MACHINE_NAME -w $WORKDIR +python rt_auto.py exit 0 diff --git a/tests/compile.sh b/tests/compile.sh index 0ca68416ef..ff76688daa 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -31,11 +31,13 @@ if [[ $ARGC -lt 2 ]]; then else MACHINE_ID=$1 MAKE_OPT=${2:-} - BUILD_NAME=fv3${3:+_$3} + COMPILE_NR=${3:+_$3} clean_before=${4:-YES} clean_after=${5:-YES} fi +BUILD_NAME=fv3${COMPILE_NR} + PATHTR=${PATHTR:-$( cd ${MYDIR}/.. && pwd )} BUILD_DIR=$(pwd)/build_${BUILD_NAME} @@ -184,4 +186,4 @@ fi elapsed=$SECONDS echo "Elapsed time $elapsed seconds. Compiling ${MAKE_OPT} finished" -echo "Compile $COMPILE_NR elapsed time $elapsed seconds. ${MAKE_OPT}" >> ${LOG_DIR}/compile_${COMPILE_NR}_time.log +echo "Compile ${COMPILE_NR/#_} elapsed time $elapsed seconds. ${MAKE_OPT}" > compile${COMPILE_NR}_time.log diff --git a/tests/fv3_conf/c96_HAFS_v0_hwrf_run.IN b/tests/fv3_conf/c96_HAFS_v0_hwrf_run.IN index 52eaa53f67..d92d8476a8 100644 --- a/tests/fv3_conf/c96_HAFS_v0_hwrf_run.IN +++ b/tests/fv3_conf/c96_HAFS_v0_hwrf_run.IN @@ -76,8 +76,8 @@ fi # Thompson or F-A MP lookup tables if [ $IMP_PHYSICS = 8 ]; then - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat . - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qg.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qsV2.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qgV2.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . elif [ $IMP_PHYSICS = 15 ]; then diff --git a/tests/fv3_conf/compile_bsub.IN_wcoss_cray b/tests/fv3_conf/compile_bsub.IN_wcoss_cray index e9e76d1fe8..29f7f4013c 100644 --- a/tests/fv3_conf/compile_bsub.IN_wcoss_cray +++ b/tests/fv3_conf/compile_bsub.IN_wcoss_cray @@ -16,10 +16,10 @@ module load alps module list set -x -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` aprun -n 1 -j 1 -N 1 -d 24 @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 b/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 old mode 100644 new mode 100755 index 9bdb0713c7..367d830c6d --- a/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 +++ b/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 @@ -3,7 +3,7 @@ #BSUB -oo out #BSUB -eo err #BSUB -J @[JBNME] -#BSUB -W 00:45 +#BSUB -W 00:50 #BSUB -q @[QUEUE] #BSUB -P GFS-DEV #BSUB -n 1 @@ -12,10 +12,10 @@ set -eux -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_qsub.IN_cheyenne b/tests/fv3_conf/compile_qsub.IN_cheyenne index 03feac1e69..b122436ea7 100644 --- a/tests/fv3_conf/compile_qsub.IN_cheyenne +++ b/tests/fv3_conf/compile_qsub.IN_cheyenne @@ -9,10 +9,10 @@ set -eux -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_qsub.IN_wcoss2 b/tests/fv3_conf/compile_qsub.IN_wcoss2 index 9bd9e1e667..a6f979bafc 100644 --- a/tests/fv3_conf/compile_qsub.IN_wcoss2 +++ b/tests/fv3_conf/compile_qsub.IN_wcoss2 @@ -13,10 +13,10 @@ set -eux cd $PBS_O_WORKDIR export CRAY_CONFIG_DIR=$HOME -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_gaea b/tests/fv3_conf/compile_slurm.IN_gaea index 2071d4b00f..6b3282ffc3 100644 --- a/tests/fv3_conf/compile_slurm.IN_gaea +++ b/tests/fv3_conf/compile_slurm.IN_gaea @@ -11,10 +11,10 @@ set -eux -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_hera b/tests/fv3_conf/compile_slurm.IN_hera index 2bab9972bb..6ce910e665 100644 --- a/tests/fv3_conf/compile_slurm.IN_hera +++ b/tests/fv3_conf/compile_slurm.IN_hera @@ -10,10 +10,10 @@ set -eux -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_jet b/tests/fv3_conf/compile_slurm.IN_jet index a04541d66e..74760a6bf7 100644 --- a/tests/fv3_conf/compile_slurm.IN_jet +++ b/tests/fv3_conf/compile_slurm.IN_jet @@ -11,10 +11,10 @@ set -eux -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_orion b/tests/fv3_conf/compile_slurm.IN_orion index f100c8121d..73457cc269 100644 --- a/tests/fv3_conf/compile_slurm.IN_orion +++ b/tests/fv3_conf/compile_slurm.IN_orion @@ -11,10 +11,10 @@ set -eux -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_bsub.IN_wcoss_cray b/tests/fv3_conf/fv3_bsub.IN_wcoss_cray index 424ecc989d..f1e19023da 100644 --- a/tests/fv3_conf/fv3_bsub.IN_wcoss_cray +++ b/tests/fv3_conf/fv3_bsub.IN_wcoss_cray @@ -10,7 +10,7 @@ #BSUB -M 500 set -eux -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," > job_timestamp.txt set +x source ./module-setup.sh @@ -29,4 +29,4 @@ export KMP_AFFINITY=disabled aprun -j 1 -n @[TASKS] -N @[TPN] -d @[THRD] -cc depth ./fv3.exe echo "Model ended: " `date` -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 b/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 index d28f04265e..f7870107fb 100644 --- a/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 +++ b/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 @@ -11,7 +11,7 @@ #BSUB -R affinity[core(@[THRD])] set -eux -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," > job_timestamp.txt set +x source ./module-setup.sh @@ -29,4 +29,4 @@ export I_MPI_DEBUG=4 mpirun -l -n @[TASKS] ./fv3.exe echo "Model ended: " `date` -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_qsub.IN_cheyenne b/tests/fv3_conf/fv3_qsub.IN_cheyenne index 9a651df675..45af6e46e8 100644 --- a/tests/fv3_conf/fv3_qsub.IN_cheyenne +++ b/tests/fv3_conf/fv3_qsub.IN_cheyenne @@ -8,7 +8,7 @@ #PBS -l walltime=00:@[WLCLK]:00 set -eux -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," > job_timestamp.txt set +x source ./module-setup.sh @@ -31,4 +31,4 @@ sync && sleep 1 mpiexec_mpt -np @[TASKS] ./fv3.exe echo "Model ended: " `date` -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_qsub.IN_wcoss2 b/tests/fv3_conf/fv3_qsub.IN_wcoss2 index 2316551603..e3cefa0550 100644 --- a/tests/fv3_conf/fv3_qsub.IN_wcoss2 +++ b/tests/fv3_conf/fv3_qsub.IN_wcoss2 @@ -9,7 +9,7 @@ #PBS -l walltime=00:@[WLCLK]:00 set -eux -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," > job_timestamp.txt cd $PBS_O_WORKDIR export CRAY_CONFIG_DIR=$HOME @@ -29,4 +29,4 @@ export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 cray aprun -n @[TASKS] ./fv3.exe echo "Model ended: " `date` -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea index fcadd8c8dc..8238c978a3 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea +++ b/tests/fv3_conf/fv3_slurm.IN_gaea @@ -9,7 +9,7 @@ #SBATCH --time=@[WLCLK] set -eux -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," > job_timestamp.txt set +x source ./module-setup.sh @@ -31,4 +31,4 @@ sync && sleep 1 srun ./fv3.exe echo "Model ended: " `date` -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_hera b/tests/fv3_conf/fv3_slurm.IN_hera index c8c12d041c..a427250099 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hera +++ b/tests/fv3_conf/fv3_slurm.IN_hera @@ -11,7 +11,7 @@ ### #SBATCH --exclusive set -eux -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," > job_timestamp.txt set +x source ./module-setup.sh @@ -36,4 +36,4 @@ sync && sleep 1 srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_jet b/tests/fv3_conf/fv3_slurm.IN_jet index bb7fb42a36..4d6c4feb6f 100644 --- a/tests/fv3_conf/fv3_slurm.IN_jet +++ b/tests/fv3_conf/fv3_slurm.IN_jet @@ -10,7 +10,7 @@ ### #SBATCH --exclusive set -eux -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," > job_timestamp.txt set +x source ./module-setup.sh @@ -35,4 +35,4 @@ sync && sleep 1 srun ./fv3.exe echo "Model ended: " `date` -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_orion b/tests/fv3_conf/fv3_slurm.IN_orion index 857550fb30..68a93c28ec 100644 --- a/tests/fv3_conf/fv3_slurm.IN_orion +++ b/tests/fv3_conf/fv3_slurm.IN_orion @@ -12,7 +12,7 @@ #SBATCH --exclusive set -eux -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," > job_timestamp.txt set +x source ./module-setup.sh @@ -40,4 +40,4 @@ sync && sleep 1 srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_stampede b/tests/fv3_conf/fv3_slurm.IN_stampede index 1c81669128..0384da5966 100644 --- a/tests/fv3_conf/fv3_slurm.IN_stampede +++ b/tests/fv3_conf/fv3_slurm.IN_stampede @@ -8,7 +8,7 @@ #SBATCH -t 00:@[WLCLK]:00 set -eux -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," > job_timestamp.txt set +x source ./module-setup.sh @@ -33,4 +33,4 @@ export LD_BIND_NOW=1 ibrun ./fv3.exe echo "Model ended: " `date` -echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/gf_thompson_run.IN b/tests/fv3_conf/gf_thompson_run.IN index c2faa7eaa4..df350032bc 100644 --- a/tests/fv3_conf/gf_thompson_run.IN +++ b/tests/fv3_conf/gf_thompson_run.IN @@ -16,8 +16,8 @@ cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/field_table_gf_thompson field_table cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . # Thompson MP lookup tables - copy standard and SIONlib tables of precomputed tables -cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/thompson_tables_precomp.sl . -cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat . -cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qg.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qsV2.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qgV2.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . + diff --git a/tests/fv3_conf/gsd_run.IN b/tests/fv3_conf/gsd_run.IN index e071fa3938..acd94ae962 100644 --- a/tests/fv3_conf/gsd_run.IN +++ b/tests/fv3_conf/gsd_run.IN @@ -58,9 +58,8 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . # Thompson MP lookup tables - copy standard and SIONlib tables of precomputed tables if [ $IMP_PHYSICS = 8 ]; then - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/thompson_tables_precomp.sl . - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat . - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qg.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qsV2.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qgV2.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . fi @@ -68,3 +67,4 @@ fi if [ $GWD_OPT = 3 ] || [ $GWD_OPT = 33 ] || [ $GWD_OPT = 2 ] || [ $GWD_OPT = 22 ]; then cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/drag_suite/* INPUT/ fi + diff --git a/tests/fv3_conf/gsd_sar_run.IN b/tests/fv3_conf/gsd_sar_run.IN index 8a434bccc6..7effc0cae3 100644 --- a/tests/fv3_conf/gsd_sar_run.IN +++ b/tests/fv3_conf/gsd_sar_run.IN @@ -18,8 +18,8 @@ cp @[INPUTDATA_ROOT]/FV3_input_data_sar/field_table_gsd_sar field_table cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . # Thompson MP lookup tables - copy standard and SIONlib tables of precomputed tables -cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/thompson_tables_precomp.sl . -cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat . -cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qg.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qsV2.dat . +cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qgV2.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . + diff --git a/tests/rt.sh b/tests/rt.sh index b342a2b480..5d3ac34b89 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -212,11 +212,9 @@ elif [[ $MACHINE_ID = gaea.* ]]; then ECFLOW_START=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) - DISKNM=/lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT + DISKNM=/lustre/f2/pdata/ncep_shared/emc.nemspara/RT QUEUE=normal COMPILE_QUEUE=normal -# DO NOT SET AN ACCOUNT EVERYONE IS NOT A MEMBER OF -# USE AN ENVIRONMENT VARIABLE TO SET ACCOUNT # ACCNR=cmp PARTITION=c4 STMP=/lustre/f2/scratch @@ -296,7 +294,7 @@ elif [[ $MACHINE_ID = jet.* ]]; then COMPILE_QUEUE=batch ACCNR=hfv3gfs PARTITION=xjet - DISKNM=/lfs4/HFIP/hfv3gfs/RT + DISKNM=/lfs4/HFIP/hfv3gfs/emc.nemspara/RT dprefix=/lfs4/HFIP/hfv3gfs/$USER STMP=$dprefix/RT_BASELINE PTMP=$dprefix/RT_RUNDIRS @@ -415,10 +413,11 @@ if [[ $TESTS_FILE =~ '35d' ]]; then TEST_35D=true fi +BL_DATE=20210330 if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210329/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210329} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210324} @@ -628,6 +627,7 @@ EOF ecflow_create_compile_task else ./compile.sh $MACHINE_ID "${MAKE_OPT}" $COMPILE_NR > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1 + mv compile_${COMPILE_NR}_time.log ${LOG_DIR} fi # Set RT_SUFFIX (regression test run directories and log files) and BL_SUFFIX @@ -671,13 +671,6 @@ EOF # 35 day tests [[ $TEST_35D == true ]] && rt_35d - # skip all *_appbuild runs if rocoto or ecFlow is used. FIXME - if [[ ${ROCOTO} == true && ${ECFLOW} == true ]]; then - if [[ ${TEST_NAME} == *_appbuild ]]; then - continue - fi - fi - # Avoid uninitialized RT_SUFFIX/BL_SUFFIX (see definition above) RT_SUFFIX=${RT_SUFFIX:-""} BL_SUFFIX=${BL_SUFFIX:-""} diff --git a/tests/rt_ccpp_dev.conf b/tests/rt_ccpp_dev.conf index fd61d05ed3..9442786dab 100644 --- a/tests/rt_ccpp_dev.conf +++ b/tests/rt_ccpp_dev.conf @@ -6,41 +6,41 @@ COMPILE | APP=ATM 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 | | 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_lndp | | fv3 | -RUN | fv3_ccpp_gsd_noah | | fv3 | -RUN | fv3_ccpp_gsd_noah_lndp | | fv3 | +RUN | fv3_thompson_mynn | | fv3 | +RUN | fv3_gf_thompson | | fv3 | +RUN | fv3_gsd | | fv3 | +RUN | fv3_gsd_coldstart | | | +RUN | fv3_gsd_warmstart | | | fv3_gsd_coldstart +RUN | fv3_gsd_lndp | | fv3 | +RUN | fv3_gsd_noah | | fv3 | +RUN | fv3_gsd_noah_lndp | | fv3 | COMPILE | APP=ATM REPRO=Y SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | | fv3 | -RUN | fv3_ccpp_gsd_mynnsfc | | fv3 | -RUN | fv3_ccpp_gsd_noah_mynnsfc | | fv3 | +RUN | fv3_gsd_mynnsfc | | fv3 | +RUN | fv3_gsd_noah_mynnsfc | | fv3 | COMPILE | APP=ATM REPRO=Y SUITES=FV3_GFS_v16_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | | 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 | +RUN | fv3_thompson | | fv3 | +RUN | fv3_thompson_no_aero | | fv3 | +RUN | fv3_gf | | fv3 | +RUN | fv3_mynn | | fv3 | +RUN | fv3_gsd_sar | | fv3 | COMPILE | APP=ATM 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 | +RUN | fv3_gsd_drag_suite | | fv3 | +RUN | fv3_gsd_unified_ugwp | | | +RUN | fv3_gsd_drag_suite_unified_ugwp | | | +RUN | fv3_rap | | fv3 | +RUN | fv3_hrrr | | fv3 | # Compile without suite argument for CAPS physics COMPILE | APP=ATM REPRO=Y | | fv3 | # Run tests -RUN | fv3_ccpp_shinhong | | fv3 | -RUN | fv3_ccpp_ysu | | fv3 | -RUN | fv3_ccpp_ntiedtke | | fv3 | +RUN | fv3_shinhong | | fv3 | +RUN | fv3_ysu | | fv3 | +RUN | fv3_ntiedtke | | fv3 | ############################################################################################################################################################ # CCPP DEBUG tests # @@ -48,12 +48,12 @@ RUN | fv3_ccpp_ntiedtke COMPILE | APP=ATM DEBUG=Y SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc,FV3_GFS_v16_thompson | | 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 | +RUN | fv3_gsd_debug | | fv3 | +RUN | fv3_gsd_diag3d_debug | | fv3 | +RUN | fv3_gsd_mynnsfc_debug | | fv3 | +RUN | fv3_gsd_noah_mynnsfc_debug | | fv3 | +RUN | fv3_thompson_no_aero_debug | | fv3 | COMPILE | APP=ATM 32BIT=Y DEBUG=Y SUITES=FV3_GSD_SAR,FV3_RAP,FV3_HRRR | | fv3 | # Run tests -RUN | fv3_ccpp_gsd_sar_debug | | fv3 | +RUN | fv3_gsd_sar_debug | | fv3 | diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 512a6da677..76e9fb2c66 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -5,12 +5,11 @@ COMPILE | APP=ATM SUITES=FV3_GFS_2017_gfdlmp | | fv3 | RUN | fv3_gfdlmp | | fv3 | -COMPILE | APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP | | fv3 | RUN | fv3_gfs_v16 | | fv3 | RUN | fv3_gfs_v16_restart | | | fv3_gfs_v16 RUN | fv3_gfs_v16_stochy | | fv3 | RUN | fv3_gfs_v16_flake | | fv3 | -RUN | fv3_gfs_v15p2_RRTMGP | | fv3 | RUN | fv3_gfs_v16_RRTMGP | | fv3 | COMPILE | APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y | | fv3 | @@ -40,10 +39,9 @@ RUN | fv3_gsd_debug RUN | fv3_thompson_debug | | fv3 | RUN | fv3_thompson_no_aero_debug | | fv3 | -COMPILE | APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y | | fv3 | RUN | fv3_gfs_v15p2_debug | | fv3 | RUN | fv3_gfs_v16_debug | | fv3 | -RUN | fv3_gfs_v15p2_RRTMGP_debug | | fv3 | RUN | fv3_gfs_v16_RRTMGP_debug | | fv3 | COMPILE | APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | diff --git a/tests/run_compile.sh b/tests/run_compile.sh index 5de9cb5663..32870bd971 100755 --- a/tests/run_compile.sh +++ b/tests/run_compile.sh @@ -62,6 +62,8 @@ else ./job_card fi +cp ${RUNDIR}/compile_*_time.log ${LOG_DIR} +cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt ################################################################################ # End compile job ################################################################################ diff --git a/tests/run_test.sh b/tests/run_test.sh index 5e9cb3ac52..0d6010de23 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -165,6 +165,9 @@ fi check_results +if [[ $SCHEDULER != 'none' ]]; then + cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +fi ################################################################################ # End test ################################################################################ From e7b3dde8d499f1304727326da3e76438c8ed7b70 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 31 Mar 2021 16:47:17 -0600 Subject: [PATCH 097/109] Update .gitmodules and submodule pointers for stochastic_physics and fv3atm for code review and testing --- .gitmodules | 12 ++++++++---- FV3 | 2 +- stochastic_physics | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.gitmodules b/.gitmodules index 5524c9d299..c5a7fe1efc 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,9 @@ [submodule "FV3"] path = FV3 - url = https://github.com/NOAA-GSL/fv3atm - branch = gsl/develop + #url = https://github.com/NOAA-GSL/fv3atm + #branch = gsl/develop + url = https://github.com/climbfuji/fv3atm + branch = update_gsl_develop_from_develop_20210331 [submodule "NEMS"] path = NEMS url = https://github.com/NOAA-EMC/NEMS @@ -16,8 +18,10 @@ branch = develop [submodule "stochastic_physics"] path = stochastic_physics - url = https://github.com/noaa-gsl/stochastic_physics - branch = gsl/develop + #url = https://github.com/noaa-gsl/stochastic_physics + #branch = gsl/develop + url = https://github.com/climbfuji/stochastic_physics + branch = update_gsl_develop_from_master_20210331 [submodule "CMakeModules"] path = CMakeModules url = https://github.com/NOAA-EMC/CMakeModules diff --git a/FV3 b/FV3 index c4dff78560..1f82c5f272 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c4dff78560fe86a5bf1495f4f24f782d90010acd +Subproject commit 1f82c5f272b78a063e77aedb3f74fe9654d2416b diff --git a/stochastic_physics b/stochastic_physics index c39bb8a09a..d0e62eb299 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit c39bb8a09a196a9dd17ea3fb52152b61ef2881ae +Subproject commit d0e62eb2996b363862fd543fe9ec910bd75bf004 From 47351304c97ce45ff83bbef34392427c35e8624d Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 31 Mar 2021 20:17:15 -0600 Subject: [PATCH 098/109] Fix merge conflicts --- tests/fv3_conf/c96_HAFS_v0_hwrf_run.IN | 7 ------- tests/fv3_conf/esg_HAFS_v0_hwrf_run.IN | 7 ------- tests/fv3_conf/gf_thompson_run.IN | 1 + tests/fv3_conf/gsd_run.IN | 1 + tests/fv3_conf/gsd_sar_run.IN | 1 + tests/fv3_conf/regional_run.IN | 7 ------- 6 files changed, 3 insertions(+), 21 deletions(-) diff --git a/tests/fv3_conf/c96_HAFS_v0_hwrf_run.IN b/tests/fv3_conf/c96_HAFS_v0_hwrf_run.IN index 74dcc7c7ef..d92d8476a8 100644 --- a/tests/fv3_conf/c96_HAFS_v0_hwrf_run.IN +++ b/tests/fv3_conf/c96_HAFS_v0_hwrf_run.IN @@ -83,10 +83,3 @@ if [ $IMP_PHYSICS = 8 ]; then elif [ $IMP_PHYSICS = 15 ]; then cp @[INPUTDATA_ROOT]/FV3_input_data/DETAMPNEW_DATA* . fi - -# temporary: new Thompson tables -if [[ $MACHINE_ID = cheyenne.* ]]; then - cp /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/tmp_input_data_thompson_update_20210304/* . -else - cp /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/tmp_input_data_thompson_update_20210304/* . -fi diff --git a/tests/fv3_conf/esg_HAFS_v0_hwrf_run.IN b/tests/fv3_conf/esg_HAFS_v0_hwrf_run.IN index ba765330c7..86ac62ff16 100644 --- a/tests/fv3_conf/esg_HAFS_v0_hwrf_run.IN +++ b/tests/fv3_conf/esg_HAFS_v0_hwrf_run.IN @@ -45,10 +45,3 @@ else echo "ERROR, no field table configured for IMP_PHYSICS=${IMP_PHYSICS}" exit 1 fi - -# temporary: new Thompson tables -if [[ $MACHINE_ID = cheyenne.* ]]; then - cp /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/tmp_input_data_thompson_update_20210304/* . -else - cp /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/tmp_input_data_thompson_update_20210304/* . -fi diff --git a/tests/fv3_conf/gf_thompson_run.IN b/tests/fv3_conf/gf_thompson_run.IN index 2ba50d6d94..df350032bc 100644 --- a/tests/fv3_conf/gf_thompson_run.IN +++ b/tests/fv3_conf/gf_thompson_run.IN @@ -20,3 +20,4 @@ cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qsV2.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qgV2.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . + diff --git a/tests/fv3_conf/gsd_run.IN b/tests/fv3_conf/gsd_run.IN index 4bd2e02f33..acd94ae962 100644 --- a/tests/fv3_conf/gsd_run.IN +++ b/tests/fv3_conf/gsd_run.IN @@ -67,3 +67,4 @@ fi if [ $GWD_OPT = 3 ] || [ $GWD_OPT = 33 ] || [ $GWD_OPT = 2 ] || [ $GWD_OPT = 22 ]; then cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/drag_suite/* INPUT/ fi + diff --git a/tests/fv3_conf/gsd_sar_run.IN b/tests/fv3_conf/gsd_sar_run.IN index 9277942453..7effc0cae3 100644 --- a/tests/fv3_conf/gsd_sar_run.IN +++ b/tests/fv3_conf/gsd_sar_run.IN @@ -22,3 +22,4 @@ cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qsV2.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qgV2.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . + diff --git a/tests/fv3_conf/regional_run.IN b/tests/fv3_conf/regional_run.IN index 12c3c370cd..cc7d84dc34 100644 --- a/tests/fv3_conf/regional_run.IN +++ b/tests/fv3_conf/regional_run.IN @@ -42,10 +42,3 @@ elif [[ $POSTAPP = 'hafs' ]]; then cp ${PATHRT}/parm/postxconfig-NT-hafs.txt postxconfig-NT_FH00.txt cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new fi - -# temporary: new Thompson tables -if [[ $MACHINE_ID = cheyenne.* ]]; then - cp /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/tmp_input_data_thompson_update_20210304/* . -else - cp /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/tmp_input_data_thompson_update_20210304/* . -fi From d028ef3ac8a2749dba73f6a28f63ff36a8583963 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 31 Mar 2021 20:17:37 -0600 Subject: [PATCH 099/109] Revert change to .gitmodules and update submodule pointers for fv3atm and stochastic_physics --- .gitmodules | 12 ++++-------- FV3 | 2 +- stochastic_physics | 2 +- 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.gitmodules b/.gitmodules index c5a7fe1efc..5524c9d299 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,7 @@ [submodule "FV3"] path = FV3 - #url = https://github.com/NOAA-GSL/fv3atm - #branch = gsl/develop - url = https://github.com/climbfuji/fv3atm - branch = update_gsl_develop_from_develop_20210331 + url = https://github.com/NOAA-GSL/fv3atm + branch = gsl/develop [submodule "NEMS"] path = NEMS url = https://github.com/NOAA-EMC/NEMS @@ -18,10 +16,8 @@ branch = develop [submodule "stochastic_physics"] path = stochastic_physics - #url = https://github.com/noaa-gsl/stochastic_physics - #branch = gsl/develop - url = https://github.com/climbfuji/stochastic_physics - branch = update_gsl_develop_from_master_20210331 + url = https://github.com/noaa-gsl/stochastic_physics + branch = gsl/develop [submodule "CMakeModules"] path = CMakeModules url = https://github.com/NOAA-EMC/CMakeModules diff --git a/FV3 b/FV3 index 1f82c5f272..e2108f00d5 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 1f82c5f272b78a063e77aedb3f74fe9654d2416b +Subproject commit e2108f00d5cf54227002978d74e94033127a141f diff --git a/stochastic_physics b/stochastic_physics index d0e62eb299..6985b5fb6f 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit d0e62eb2996b363862fd543fe9ec910bd75bf004 +Subproject commit 6985b5fb6f04cf3ba6bda20d883522fd5a1de55a From abf59e45b2411baefc00b6ffb8d28143b63d9f83 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Thu, 1 Apr 2021 15:36:58 -0600 Subject: [PATCH 100/109] Turn on the printout of the WRF noise parameter for regression test fv3_gsd_diag3d_debug --- tests/default_vars.sh | 4 ++++ tests/parm/gsd.nml.IN | 1 + tests/tests/fv3_gsd_diag3d_debug | 2 ++ 3 files changed, 7 insertions(+) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index cba4c74880..22c0f774a7 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -467,6 +467,10 @@ export IAU_DRYMASSFIXER=.false. # Regional export WRITE_RESTART_WITH_BCS=.false. +# Diagnostics +export PRINT_DIFF_PGR=.false. + +# Coupling export coupling_interval_fast_sec=0 } diff --git a/tests/parm/gsd.nml.IN b/tests/parm/gsd.nml.IN index df71eadb12..5d5699c811 100644 --- a/tests/parm/gsd.nml.IN +++ b/tests/parm/gsd.nml.IN @@ -208,6 +208,7 @@ do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] do_ugwp_v1 = @[DO_UGWP_V1] do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] + print_diff_pgr = @[PRINT_DIFF_PGR] / &gfdl_cloud_microphysics_nml diff --git a/tests/tests/fv3_gsd_diag3d_debug b/tests/tests/fv3_gsd_diag3d_debug index 735e295527..161afb57a4 100644 --- a/tests/tests/fv3_gsd_diag3d_debug +++ b/tests/tests/fv3_gsd_diag3d_debug @@ -99,5 +99,7 @@ export LSM=3 export LSOIL_LSM=9 export KICE=9 +export PRINT_DIFF_PGR=.true. + export WLCLK=30 From d1db3455e37b043b1a1b329240f33fc9749730cb Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Fri, 2 Apr 2021 14:09:01 +0000 Subject: [PATCH 101/109] Point FV3 to gsl/develop in NOAA-GSL/atm --- .gitmodules | 4 ++-- FV3 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index a9ad3c1d9d..5524c9d299 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,7 @@ [submodule "FV3"] path = FV3 - url = https://github.com/SamuelTrahanNOAA/fv3atm - branch = feature/per-timestep-pgr-like-wrf + url = https://github.com/NOAA-GSL/fv3atm + branch = gsl/develop [submodule "NEMS"] path = NEMS url = https://github.com/NOAA-EMC/NEMS diff --git a/FV3 b/FV3 index 837f7b4e9b..6814d1ad9c 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 837f7b4e9b9834f66a28579c7f427d978708a797 +Subproject commit 6814d1ad9cfca50a61eaede0a1b5a795eaa63305 From 71bd5fee4170ae6cb6715236fbec3c1934e5f9c7 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Mon, 5 Apr 2021 20:36:15 -0600 Subject: [PATCH 102/109] Add gocart submodule --- .gitmodules | 4 ++++ gocart | 1 + 2 files changed, 5 insertions(+) create mode 160000 gocart diff --git a/.gitmodules b/.gitmodules index bf9f80c0cd..51015df0b5 100644 --- a/.gitmodules +++ b/.gitmodules @@ -18,3 +18,7 @@ path = stochastic_physics url = https://github.com/noaa-psd/stochastic_physics branch = master +[submodule "gocart"] + path = gocart + url = https://github.com/NOAA-GSL/GOCART + branch = gsl/develop-chem diff --git a/gocart b/gocart new file mode 160000 index 0000000000..2055e80e88 --- /dev/null +++ b/gocart @@ -0,0 +1 @@ +Subproject commit 2055e80e8827775b0454fd04ecc8b01eba7a0634 From e897ab5ca22dbcb1a836ae357f1a7aa226461659 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Tue, 6 Apr 2021 08:07:02 -0600 Subject: [PATCH 103/109] 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 51015df0b5..5df7a283db 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,9 @@ [submodule "FV3"] path = FV3 - url = https://github.com/NOAA-GSL/fv3atm - branch = gsd/develop-chem + #url = https://github.com/NOAA-GSL/fv3atm + #branch = gsl/develop-chem + url = https://github.com/climbfuji/fv3atm + branch = gsl_develop_chem_add_gocart [submodule "NEMS"] path = NEMS url = https://github.com/NOAA-EMC/NEMS diff --git a/FV3 b/FV3 index ff6637d197..37f5bf2f5a 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit ff6637d197ee7f6d366dfd4f8dfcaf76e5a453c0 +Subproject commit 37f5bf2f5af68ac96dc41dd407bd0ad6bb4a406d From aea1ec17cad2606b7c5e361ad04ab6ebd42ba403 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Thu, 8 Apr 2021 09:10:29 -0600 Subject: [PATCH 104/109] Update chemistry regression tests --- FV3 | 2 +- tests/fv3_conf/gfdlmp_run.IN | 10 + ...gsd_chem.nml.IN => gfdlmp_gsd_chem.nml.IN} | 6 +- ...em_ca.nml.IN => gfdlmp_gsd_chem_ca.nml.IN} | 6 +- ...ppt.nml.IN => gfdlmp_gsd_chem_sppt.nml.IN} | 6 +- tests/rt_ccpp_caps.conf | 18 -- tests/rt_ccpp_dev.conf | 11 +- tests/rt_ccpp_dtc.conf | 286 ------------------ tests/rt_ccpp_gsd.conf | 62 ---- tests/rt_ccpp_hafs.conf | 14 - tests/rt_chem.conf | 2 - tests/rt_chem_temp.conf | 9 + tests/tests/fv3_ccpp_gsd_mynnsfc | 127 -------- tests/tests/fv3_ccpp_gsd_mynnsfc_debug | 102 ------- tests/tests/fv3_ccpp_gsd_noah_mynnsfc | 125 -------- tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug | 100 ------ ...pp_gfdlmp_gsd_chem => fv3_gfdlmp_gsd_chem} | 9 +- ...lmp_gsd_chem_ca => fv3_gfdlmp_gsd_chem_ca} | 9 +- tests/tests/fv3_gfdlmp_gsd_chem_ca_debug | 64 ++++ tests/tests/fv3_gfdlmp_gsd_chem_debug | 64 ++++ ...gsd_chem_sppt => fv3_gfdlmp_gsd_chem_sppt} | 9 +- tests/tests/fv3_gfdlmp_gsd_chem_sppt_debug | 64 ++++ 22 files changed, 243 insertions(+), 862 deletions(-) rename tests/parm/{ccpp_gfdlmp_gsd_chem.nml.IN => gfdlmp_gsd_chem.nml.IN} (99%) rename tests/parm/{ccpp_gfdlmp_gsd_chem_ca.nml.IN => gfdlmp_gsd_chem_ca.nml.IN} (99%) rename tests/parm/{ccpp_gfdlmp_gsd_chem_sppt.nml.IN => gfdlmp_gsd_chem_sppt.nml.IN} (99%) delete mode 100644 tests/rt_ccpp_caps.conf delete mode 100644 tests/rt_ccpp_dtc.conf delete mode 100644 tests/rt_ccpp_gsd.conf delete mode 100644 tests/rt_ccpp_hafs.conf delete mode 100644 tests/rt_chem.conf create mode 100644 tests/rt_chem_temp.conf delete mode 100644 tests/tests/fv3_ccpp_gsd_mynnsfc delete mode 100644 tests/tests/fv3_ccpp_gsd_mynnsfc_debug delete mode 100644 tests/tests/fv3_ccpp_gsd_noah_mynnsfc delete mode 100644 tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug rename tests/tests/{fv3_ccpp_gfdlmp_gsd_chem => fv3_gfdlmp_gsd_chem} (91%) rename tests/tests/{fv3_ccpp_gfdlmp_gsd_chem_ca => fv3_gfdlmp_gsd_chem_ca} (91%) create mode 100644 tests/tests/fv3_gfdlmp_gsd_chem_ca_debug create mode 100644 tests/tests/fv3_gfdlmp_gsd_chem_debug rename tests/tests/{fv3_ccpp_gfdlmp_gsd_chem_sppt => fv3_gfdlmp_gsd_chem_sppt} (91%) create mode 100644 tests/tests/fv3_gfdlmp_gsd_chem_sppt_debug diff --git a/FV3 b/FV3 index 37f5bf2f5a..aa3acfc4d5 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 37f5bf2f5af68ac96dc41dd407bd0ad6bb4a406d +Subproject commit aa3acfc4d5b41420db876467568e5bc911ee46f1 diff --git a/tests/fv3_conf/gfdlmp_run.IN b/tests/fv3_conf/gfdlmp_run.IN index af0e3d5f84..1d2012c185 100644 --- a/tests/fv3_conf/gfdlmp_run.IN +++ b/tests/fv3_conf/gfdlmp_run.IN @@ -36,6 +36,16 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/diag_table_gfdlmp diag_table cp @[INPUTDATA_ROOT]/FV3_input_data/field_table_gfdlmp field_table cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . +if [ $CPLCHM = .T. ]; then +#cp @[INPUTDATA_ROOT]/GSD_CHEM_input_data/C384/INPUT/* INPUT/. +#cp @[INPUTDATA_ROOT]/GSD_CHEM_input_data/C384/*table* . +# DH* TEMPORARY +cp @[INPUTDATA_ROOT]/FV3_input_data_ugwpv1/seaice_newland.grb . +cp /scratch2/BMC/wrfruc/Samuel.Trahan/perturb-smoke/RT/NEMSfv3gfs/develop-20200929/INTEL/CCPP_gsd_chem_input_data/C384/INPUT/* INPUT/. +cp /scratch2/BMC/wrfruc/Samuel.Trahan/perturb-smoke/RT/NEMSfv3gfs/develop-20200929/INTEL/CCPP_gsd_chem_input_data/C384/*table* . +# *DH +fi + if [ $CPLWAV = .T. ]; then cp @[INPUTDATA_ROOT_WW3]/mod_def.* . cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . diff --git a/tests/parm/ccpp_gfdlmp_gsd_chem.nml.IN b/tests/parm/gfdlmp_gsd_chem.nml.IN similarity index 99% rename from tests/parm/ccpp_gfdlmp_gsd_chem.nml.IN rename to tests/parm/gfdlmp_gsd_chem.nml.IN index d8c1afa202..ee539a4cf2 100644 --- a/tests/parm/ccpp_gfdlmp_gsd_chem.nml.IN +++ b/tests/parm/gfdlmp_gsd_chem.nml.IN @@ -89,7 +89,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 1. @@ -128,8 +128,8 @@ pdfcld = .false. fhswr = 3600. fhlwr = 3600. - ialb = 1 - iems = 1 + ialb = @[IALB] + iems = @[IEMS] IAER = 111 ico2 = 2 isubc_sw = 2 diff --git a/tests/parm/ccpp_gfdlmp_gsd_chem_ca.nml.IN b/tests/parm/gfdlmp_gsd_chem_ca.nml.IN similarity index 99% rename from tests/parm/ccpp_gfdlmp_gsd_chem_ca.nml.IN rename to tests/parm/gfdlmp_gsd_chem_ca.nml.IN index 7a7f0779ae..392919b5ff 100644 --- a/tests/parm/ccpp_gfdlmp_gsd_chem_ca.nml.IN +++ b/tests/parm/gfdlmp_gsd_chem_ca.nml.IN @@ -89,7 +89,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 1. @@ -133,8 +133,8 @@ pdfcld = .false. fhswr = 3600. fhlwr = 3600. - ialb = 1 - iems = 1 + ialb = @[IALB] + iems = @[IEMS] IAER = 111 ico2 = 2 isubc_sw = 2 diff --git a/tests/parm/ccpp_gfdlmp_gsd_chem_sppt.nml.IN b/tests/parm/gfdlmp_gsd_chem_sppt.nml.IN similarity index 99% rename from tests/parm/ccpp_gfdlmp_gsd_chem_sppt.nml.IN rename to tests/parm/gfdlmp_gsd_chem_sppt.nml.IN index 7c56f1e8b8..03a2eebd66 100644 --- a/tests/parm/ccpp_gfdlmp_gsd_chem_sppt.nml.IN +++ b/tests/parm/gfdlmp_gsd_chem_sppt.nml.IN @@ -89,7 +89,7 @@ hord_mt = 6 hord_vt = 6 hord_tm = 6 - hord_dp = -6 + hord_dp = 6 hord_tr = 8 adjust_dry_mass = .F. consv_te = 1. @@ -128,8 +128,8 @@ pdfcld = .false. fhswr = 3600. fhlwr = 3600. - ialb = 1 - iems = 1 + ialb = @[IALB] + iems = @[IEMS] IAER = 111 ico2 = 2 isubc_sw = 2 diff --git a/tests/rt_ccpp_caps.conf b/tests/rt_ccpp_caps.conf deleted file mode 100644 index e40ee06a70..0000000000 --- a/tests/rt_ccpp_caps.conf +++ /dev/null @@ -1,18 +0,0 @@ -# Compile with CCPP - static mode -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu,FV3_GFS_2017_ntiedtke | standard | hera.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu,FV3_GFS_2017_ntiedtke | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu,FV3_GFS_2017_ntiedtke | standard | cheyenne.gnu | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu,FV3_GFS_2017_ntiedtke | standard | stampede.intel | fv3 | -# Run tests -RUN | fv3_ccpp_shinhong | standard | | fv3 | -RUN | fv3_ccpp_ysu | standard | | fv3 | -RUN | fv3_ccpp_ntiedtke | standard | | fv3 | -# Compile with CCPP - dynamic mode -COMPILE | CCPP=Y REPRO=Y | standard | hera.intel | | -COMPILE | CCPP=Y REPRO=Y | standard | cheyenne.intel | | -COMPILE | CCPP=Y REPRO=Y | standard | cheyenne.gnu | | -COMPILE | CCPP=Y REPRO=Y | standard | stampede.intel | | -# Run tests -RUN | fv3_ccpp_shinhong | standard | | | -RUN | fv3_ccpp_ysu | standard | | | -RUN | fv3_ccpp_ntiedtke | standard | | | diff --git a/tests/rt_ccpp_dev.conf b/tests/rt_ccpp_dev.conf index 9442786dab..602de6eb3d 100644 --- a/tests/rt_ccpp_dev.conf +++ b/tests/rt_ccpp_dev.conf @@ -35,6 +35,11 @@ RUN | fv3_gsd_drag_suite_unified_ugwp RUN | fv3_rap | | fv3 | RUN | fv3_hrrr | | fv3 | +COMPILE | APP=ATM REPRO=Y SUITES=FV3_GFS_2017_gfdlmp_gsd_chem | | fv3 | +RUN | fv3_gfdlmp_gsd_chem | | fv3 | +RUN | fv3_gfdlmp_gsd_chem_sppt | | fv3 | +RUN | fv3_gfdlmp_gsd_chem_ca | | fv3 | + # Compile without suite argument for CAPS physics COMPILE | APP=ATM REPRO=Y | | fv3 | # Run tests @@ -55,5 +60,9 @@ RUN | fv3_gsd_noah_mynnsfc_debug RUN | fv3_thompson_no_aero_debug | | fv3 | COMPILE | APP=ATM 32BIT=Y DEBUG=Y SUITES=FV3_GSD_SAR,FV3_RAP,FV3_HRRR | | fv3 | -# Run tests RUN | fv3_gsd_sar_debug | | fv3 | + +COMPILE | APP=ATM DEBUG=Y SUITES=FV3_GFS_2017_gfdlmp_gsd_chem | | fv3 | +RUN | fv3_gfdlmp_gsd_chem_debug | | fv3 | +RUN | fv3_gfdlmp_gsd_chem_sppt_debug | | fv3 | +RUN | fv3_gfdlmp_gsd_chem_ca_debug | | fv3 | diff --git a/tests/rt_ccpp_dtc.conf b/tests/rt_ccpp_dtc.conf deleted file mode 100644 index 6066938c58..0000000000 --- a/tests/rt_ccpp_dtc.conf +++ /dev/null @@ -1,286 +0,0 @@ -############################################################################################################################################################## -# CCPP reference: no CCPP, repro mode # -############################################################################################################################################################## -COMPILE | REPRO=Y | standard | gaea.intel | fv3 | -COMPILE | REPRO=Y | standard | hera.intel | fv3 | -COMPILE | REPRO=Y | standard | cheyenne.intel | fv3 | -COMPILE | REPRO=Y | standard | cheyenne.gnu | fv3 | -COMPILE | REPRO=Y | standard | stampede.intel | fv3 | -COMPILE | REPRO=Y | standard | jet.intel | fv3 | -# Run standard tests -RUN | fv3_control | standard | | fv3 | -RUN | fv3_decomp | standard | | | -RUN | fv3_2threads | standard | | | -RUN | fv3_ozphys_2015 | standard | | fv3 | -RUN | fv3_wsm6 | standard | | fv3 | -RUN | fv3_gfdlmp | standard | | fv3 | -RUN | fv3_gfdlmprad_gwd | standard | | fv3 | -RUN | fv3_gfdlmprad_noahmp | standard | | fv3 | -RUN | fv3_stochy | standard | | fv3 | -RUN | fv3_satmedmf | standard | | fv3 | -RUN | fv3_satmedmfq | standard | | fv3 | -RUN | fv3_lheatstrg | standard | | fv3 | -RUN | fv3_h2ophys | standard | | fv3 | -# Note: any suite that uses csawmg crashes with GNU and PGI (--> there must be something wrong with it) -RUN | fv3_csawmg | standard | gaea.intel | fv3 | -RUN | fv3_csawmg | standard | hera.intel | fv3 | -RUN | fv3_csawmg | standard | cheyenne.intel | fv3 | -RUN | fv3_csawmg | standard | jet.intel | fv3 | -RUN | fv3_csawmgshoc | standard | gaea.intel | fv3 | -RUN | fv3_csawmgshoc | standard | hera.intel | fv3 | -RUN | fv3_csawmgshoc | standard | cheyenne.intel | fv3 | -RUN | fv3_csawmgshoc | standard | jet.intel | fv3 | -RUN | fv3_csawmg3shoc127 | standard | gaea.intel | fv3 | -RUN | fv3_csawmg3shoc127 | standard | hera.intel | fv3 | -RUN | fv3_csawmg3shoc127 | standard | cheyenne.intel | fv3 | -RUN | fv3_csawmg3shoc127 | standard | jet.intel | fv3 | -# Coupled with WW3 -COMPILE | REPRO=Y WW3=Y | standard | hera.intel | fv3 | -RUN | fv3_gfdlmprad | standard | hera.intel | fv3 | -# 32-bit dynamics -COMPILE | REPRO=Y 32BIT=Y | standard | gaea.intel | fv3 | -COMPILE | REPRO=Y 32BIT=Y | standard | hera.intel | fv3 | -COMPILE | REPRO=Y 32BIT=Y | standard | cheyenne.intel | fv3 | -COMPILE | REPRO=Y 32BIT=Y | standard | cheyenne.gnu | fv3 | -COMPILE | REPRO=Y 32BIT=Y | standard | stampede.intel | fv3 | -COMPILE | REPRO=Y 32BIT=Y | standard | jet.intel | fv3 | -# Run standard tests, 32-bit dynamics -RUN | fv3_control_32bit | standard | | fv3 | -RUN | fv3_gfdlmp_32bit | standard | | fv3 | -RUN | fv3_sas | standard | | fv3 | -RUN | fv3_stretched | standard | | fv3 | -RUN | fv3_stretched_nest | standard | gaea.intel | fv3 | -RUN | fv3_stretched_nest | standard | hera.intel | fv3 | -RUN | fv3_stretched_nest | standard | cheyenne.intel | fv3 | -RUN | fv3_stretched_nest | standard | jet.intel | fv3 | -RUN | fv3_stretched_nest_quilt | standard | gaea.intel | fv3 | -RUN | fv3_stretched_nest_quilt | standard | hera.intel | fv3 | -RUN | fv3_regional_control | standard | | fv3 | -RUN | fv3_regional_restart | standard | | fv3 | fv3_regional_control -# fv3_regional_quilt/fv3_regional_c768 not working on Cheyenne, code aborts with invalid values -# for surface pressure, out of range warnings and all other sorts of errors -RUN | fv3_regional_quilt | standard | gaea.intel | fv3 | -RUN | fv3_regional_quilt | standard | hera.intel | fv3 | -RUN | fv3_regional_c768 | standard | gaea.intel | fv3 | -RUN | fv3_regional_c768 | standard | hera.intel | fv3 | -# Note: any suite that uses csawmg crashes with GNU and PGI (--> there must be something wrong with it) -RUN | fv3_cpt | standard | gaea.intel | fv3 | -RUN | fv3_cpt | standard | hera.intel | fv3 | -# CCPP only tests (use CCPP static build to create) -#RUN | fv3_gsd | standard | gaea.intel | fv3 | -#RUN | fv3_gsd | standard | hera.intel | fv3 | -#RUN | fv3_gfs_myj | standard | gaea.intel | fv3 | -#RUN | fv3_gfs_myj | standard | hera.intel | fv3 | -# UFS public release v1.0 tests (create baseline using CCPP static) -COMPILE | REPRO=Y | standard | gaea.intel | | -COMPILE | REPRO=Y | standard | hera.intel | | -COMPILE | REPRO=Y | standard | cheyenne.intel | | -COMPILE | REPRO=Y | standard | cheyenne.gnu | | -COMPILE | REPRO=Y | standard | stampede.intel | | -COMPILE | REPRO=Y | standard | jet.intel | | -RUN | fv3_gfs_v15p2 | standard | | | -RUN | fv3_gfs_v16beta | standard | | | - -############################################################################################################################################################## -# CCPP static: CCPP, static option, repro mode # -############################################################################################################################################################## -# control-based tests -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | standard | gaea.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | standard | hera.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | standard | cheyenne.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | standard | cheyenne.gnu | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | standard | stampede.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | standard | jet.intel | | -# Run tests with static CCPP add-on -RUN | fv3_ccpp_control | standard | | | -RUN | fv3_ccpp_decomp | standard | | | -RUN | fv3_ccpp_2threads | standard | | | -RUN | fv3_ccpp_stochy | standard | | | -RUN | fv3_ccpp_lheatstrg | standard | | | -RUN | fv3_ccpp_satmedmf | standard | | | -RUN | fv3_ccpp_satmedmfq | standard | | | -# gfdlmp-based tests -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | gaea.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | hera.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | cheyenne.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | cheyenne.gnu | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | stampede.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | jet.intel | | -# Run tests with static CCPP add-on -RUN | fv3_ccpp_gfdlmp | standard | | | -RUN | fv3_ccpp_gfdlmprad_gwd | standard | | | -RUN | fv3_ccpp_gfdlmprad_noahmp | standard | | | -# Coupled with WW3 -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp WW3=Y | standard | hera.intel | | -RUN | fv3_ccpp_gfdlmprad | standard | hera.intel | | -## csawmg-based tests (Intel only, crashing with GNU and PGI) -#COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc | standard | gaea.intel | | -#COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc | standard | hera.intel | | -#COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc | standard | cheyenne.intel | | -#COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc | standard | jet.intel | | -## Run tests with static CCPP add-on -#RUN | fv3_ccpp_csawmgshoc | standard | gaea.intel | | -#RUN | fv3_ccpp_csawmgshoc | standard | hera.intel | | -#RUN | fv3_ccpp_csawmgshoc | standard | cheyenne.intel | | -#RUN | fv3_ccpp_csawmgshoc | standard | jet.intel | | -# control- and gfdlmp-based tests, 32-bit dynamics -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp,FV3_GFS_2017_sas 32BIT=Y | standard | gaea.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp,FV3_GFS_2017_sas 32BIT=Y | standard | hera.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp,FV3_GFS_2017_sas 32BIT=Y | standard | cheyenne.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp,FV3_GFS_2017_sas 32BIT=Y | standard | cheyenne.gnu | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp,FV3_GFS_2017_sas 32BIT=Y | standard | jet.intel | | -# Run tests with static CCPP add-on, 32-bit dynamics -RUN | fv3_ccpp_control_32bit | standard | | | -RUN | fv3_ccpp_gfdlmp_32bit | standard | | | -RUN | fv3_ccpp_sas | standard | | | -# stretched- and stretched-nest based tests, 32-bit dynamics -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | gaea.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | hera.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | cheyenne.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | cheyenne.gnu | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | stampede.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | jet.intel | | -RUN | fv3_ccpp_stretched | standard | | | -RUN | fv3_ccpp_stretched_nest | standard | gaea.intel | | -RUN | fv3_ccpp_stretched_nest | standard | hera.intel | | -RUN | fv3_ccpp_stretched_nest | standard | cheyenne.intel | | -RUN | fv3_ccpp_stretched_nest | standard | jet.intel | | -RUN | fv3_ccpp_stretched_nest_quilt | standard | gaea.intel | | -RUN | fv3_ccpp_stretched_nest_quilt | standard | hera.intel | | -# gfdlmp-regional-based tests, 32-bit dynamics -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional 32BIT=Y | standard | gaea.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional 32BIT=Y | standard | hera.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional 32BIT=Y | standard | cheyenne.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional 32BIT=Y | standard | cheyenne.gnu | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional 32BIT=Y | standard | stampede.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional 32BIT=Y | standard | jet.intel | | -RUN | fv3_ccpp_regional_control | standard | | | -RUN | fv3_ccpp_regional_restart | standard | | | fv3_ccpp_regional_control -# fv3_ccpp_regional_quilt not working on Cheyenne, code aborts with invalid values -# for surface pressure, out of range warnings and all other sorts of errors -RUN | fv3_ccpp_regional_quilt | standard | gaea.intel | | -RUN | fv3_ccpp_regional_quilt | standard | hera.intel | | -# gfdlmp-regional-c768 based tests, 32-bit dynamics -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | gaea.intel | | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | hera.intel | | -# fv3_ccpp_regional_c768 not working on Cheyenne, code aborts with invalid values -# for surface pressure, out of range warnings and all other sorts of errors -RUN | fv3_ccpp_regional_c768 | standard | gaea.intel | | -RUN | fv3_ccpp_regional_c768 | standard | hera.intel | | -# Physics bakeoff tests, 32-bit dynamics -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | hera.intel | fv3 | -# Note: any suite that uses csawmg crashes with GNU and PGI (--> there must be something wrong with it) -RUN | fv3_ccpp_cpt | standard | gaea.intel | | -RUN | fv3_ccpp_cpt | standard | hera.intel | | -RUN | fv3_ccpp_gsd | standard | gaea.intel | fv3 | -RUN | fv3_ccpp_gsd | standard | hera.intel | fv3 | -# Additional physics: MYJ -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_myj 32BIT=Y | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_myj 32BIT=Y | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_myj | standard | gaea.intel | fv3 | -RUN | fv3_ccpp_gfs_myj | standard | hera.intel | fv3 | -# UFS public release v1.0 tests -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y | standard | hera.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y | standard | cheyenne.gnu | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y | standard | stampede.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y | standard | jet.intel | fv3 | -RUN | fv3_ccpp_gfs_v15p2 | standard | | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | | fv3 | - -############################################################################################################################################################## -# CCPP dynamic: CCPP, dynamic option, repro mode # -############################################################################################################################################################## -COMPILE | CCPP=Y REPRO=Y | standard | gaea.intel | | -COMPILE | CCPP=Y REPRO=Y | standard | hera.intel | | -COMPILE | CCPP=Y REPRO=Y | standard | cheyenne.intel | | -COMPILE | CCPP=Y REPRO=Y | standard | cheyenne.gnu | | -COMPILE | CCPP=Y REPRO=Y | standard | stampede.intel | | -COMPILE | CCPP=Y REPRO=Y | standard | jet.intel | | -# Run tests with CCPP add-on -RUN | fv3_ccpp_control | standard | | | -RUN | fv3_ccpp_decomp | standard | | | -RUN | fv3_ccpp_2threads | standard | | | -RUN | fv3_ccpp_ozphys_2015 | standard | | | -RUN | fv3_ccpp_gfdlmp | standard | | | -RUN | fv3_ccpp_gfdlmprad_gwd | standard | | | -RUN | fv3_ccpp_gfdlmprad_noahmp | standard | | | -RUN | fv3_ccpp_stochy | standard | | | -RUN | fv3_ccpp_satmedmf | standard | | | -RUN | fv3_ccpp_satmedmfq | standard | | | -RUN | fv3_ccpp_lheatstrg | standard | | | -RUN | fv3_ccpp_h2ophys | standard | | | -# Coupled with WW3 -COMPILE | CCPP=Y REPRO=Y WW3=Y | standard | hera.intel | | -RUN | fv3_ccpp_gfdlmprad | standard | hera.intel | | -## Note: any suite that uses csawmg crashes with GNU and PGI (--> there must be something wrong with it) -#RUN | fv3_ccpp_csawmgshoc | standard | gaea.intel | | -#RUN | fv3_ccpp_csawmgshoc | standard | hera.intel | | -#RUN | fv3_ccpp_csawmgshoc | standard | cheyenne.intel | | -# 32-bit dynamics -COMPILE | CCPP=Y REPRO=Y 32BIT=Y | standard | gaea.intel | | -COMPILE | CCPP=Y REPRO=Y 32BIT=Y | standard | hera.intel | | -COMPILE | CCPP=Y REPRO=Y 32BIT=Y | standard | cheyenne.intel | | -COMPILE | CCPP=Y REPRO=Y 32BIT=Y | standard | cheyenne.gnu | | -COMPILE | CCPP=Y REPRO=Y 32BIT=Y | standard | stampede.intel | | -COMPILE | CCPP=Y REPRO=Y 32BIT=Y | standard | jet.intel | | -# Run tests with CCPP add-on, 32-bit dynamics -RUN | fv3_ccpp_control_32bit | standard | | | -RUN | fv3_ccpp_gfdlmp_32bit | standard | | | -RUN | fv3_ccpp_sas | standard | | | -RUN | fv3_ccpp_stretched | standard | | | -RUN | fv3_ccpp_stretched_nest | standard | gaea.intel | | -RUN | fv3_ccpp_stretched_nest | standard | hera.intel | | -RUN | fv3_ccpp_stretched_nest | standard | cheyenne.intel | | -RUN | fv3_ccpp_stretched_nest | standard | jet.intel | | -RUN | fv3_ccpp_stretched_nest_quilt | standard | gaea.intel | | -RUN | fv3_ccpp_stretched_nest | standard | hera.intel | | -RUN | fv3_ccpp_regional_control | standard | | | -RUN | fv3_ccpp_regional_restart | standard | | | fv3_ccpp_regional_control -# fv3_regional_quilt/fv3_regional_c768 not working on Cheyenne, code aborts with invalid values -# for surface pressure, out of range warnings and all other sorts of errors -RUN | fv3_ccpp_regional_quilt | standard | gaea.intel | | -RUN | fv3_ccpp_regional_quilt | standard | hera.intel | | -RUN | fv3_ccpp_regional_c768 | standard | gaea.intel | | -RUN | fv3_ccpp_regional_c768 | standard | hera.intel | | -# Note: any suite that uses csawmg crashes with GNU and PGI (--> there must be something wrong with it) -RUN | fv3_ccpp_cpt | standard | gaea.intel | | -RUN | fv3_ccpp_cpt | standard | hera.intel | | -RUN | fv3_ccpp_gsd | standard | gaea.intel | | -RUN | fv3_ccpp_gsd | standard | hera.intel | | -# Additional physics: MYJ -RUN | fv3_ccpp_gfs_myj | standard | gaea.intel | | -RUN | fv3_ccpp_gfs_myj | standard | hera.intel | | -# UFS public release v1.0 tests -RUN | fv3_ccpp_gfs_v15p2 | standard | | | -RUN | fv3_ccpp_gfs_v16beta | standard | | | - -############################################################################################################################################################## -# CCPP STATIC PROD tests # -############################################################################################################################################################## - -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta | standard | hera.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta | standard | cheyenne.gnu | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta | standard | stampede.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta | standard | jet.intel | fv3 | -# Run tests with CCPP add-on -RUN | fv3_ccpp_gfs_v15p2 | standard | | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | | fv3 | - -############################################################################################################################################################## -# CCPP STATIC DEBUG tests # -############################################################################################################################################################## - -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y | standard | hera.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y | standard | cheyenne.gnu | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y | standard | stampede.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y | standard | jet.intel | fv3 | -# Run tests with CCPP add-on -RUN | fv3_ccpp_gfs_v15p2_debug | standard | | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | | fv3 | diff --git a/tests/rt_ccpp_gsd.conf b/tests/rt_ccpp_gsd.conf deleted file mode 100644 index 7a5eb55c55..0000000000 --- a/tests/rt_ccpp_gsd.conf +++ /dev/null @@ -1,62 +0,0 @@ -################################################################################################################################################################################# -# CCPP REPRO tests # -################################################################################################################################################################################# - -COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah | standard | hera.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah | standard | cheyenne.gnu | 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 | - -COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | standard | hera.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | standard | cheyenne.gnu | fv3 | - -RUN | fv3_ccpp_gsd_mynnsfc | standard | | fv3 | -RUN | fv3_ccpp_gsd_noah_mynnsfc | standard | | fv3 | - -COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_v15_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | standard | hera.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_v15_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_v15_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | standard | cheyenne.gnu | fv3 | - -RUN | fv3_ccpp_thompson | standard | | fv3 | -# Non-aerosol field_table staged only on hera for the moment -RUN | fv3_ccpp_thompson_no_aero | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gf | standard | | fv3 | -RUN | fv3_ccpp_mynn | standard | | fv3 | -RUN | fv3_ccpp_gsd_sar | standard | | fv3 | - -COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GSD_v0_drag_suite,FV3_RAP,FV3_HRRR | standard | hera.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GSD_v0_drag_suite,FV3_RAP,FV3_HRRR | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GSD_v0_drag_suite,FV3_RAP,FV3_HRRR | standard | cheyenne.gnu | fv3 | - -# Orographic data for drag suite (used by all three tests) staged only on hera for the moment -RUN | fv3_ccpp_gsd_drag_suite | standard | hera.intel | fv3 | -RUN | fv3_ccpp_rap | standard | hera.intel | fv3 | -RUN | fv3_ccpp_hrrr | standard | hera.intel | fv3 | - -################################################################################################################################################################################# -# CCPP DEBUG tests # -################################################################################################################################################################################# - -COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc,FV3_GFS_v15_thompson | standard | hera.intel | fv3 | -COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc,FV3_GFS_v15_thompson | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc,FV3_GFS_v15_thompson | standard | cheyenne.gnu | 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 | -# Non-aerosol field_table staged only on hera for the moment -RUN | fv3_ccpp_thompson_no_aero_debug | standard | hera.intel | fv3 | - -COMPILE | 32BIT=Y CCPP=Y DEBUG=Y SUITES=FV3_GSD_SAR,FV3_RAP,FV3_HRRR | standard | hera.intel | fv3 | -COMPILE | 32BIT=Y CCPP=Y DEBUG=Y SUITES=FV3_GSD_SAR,FV3_RAP,FV3_HRRR | standard | cheyenne.intel | fv3 | -COMPILE | 32BIT=Y CCPP=Y DEBUG=Y SUITES=FV3_GSD_SAR,FV3_RAP,FV3_HRRR | standard | cheyenne.gnu | fv3 | -# Run tests -RUN | fv3_ccpp_gsd_sar_25km_debug | standard | | fv3 | diff --git a/tests/rt_ccpp_hafs.conf b/tests/rt_ccpp_hafs.conf deleted file mode 100644 index e883003d5e..0000000000 --- a/tests/rt_ccpp_hafs.conf +++ /dev/null @@ -1,14 +0,0 @@ -############################################################################################################################################################## -# CCPP static: CCPP, static option, repro mode # -############################################################################################################################################################## -# control-based tests -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_HAFS_ferhires_update_moist | standard | hera.intel | fv3 | -# Run tests with static CCPP add-on -RUN | fv3_ccpp_regional_c768_FA_update_moist | standard | | fv3 | - -############################################################################################################################################################## -# CCPP dynamic: CCPP, dynamic option, repro mode # -############################################################################################################################################################## -COMPILE | CCPP=Y REPRO=Y | standard | hera.intel | | -# Run tests with CCPP add-on -RUN | fv3_ccpp_regional_c768_FA_update_moist | standard | | | diff --git a/tests/rt_chem.conf b/tests/rt_chem.conf deleted file mode 100644 index 09aae931b0..0000000000 --- a/tests/rt_chem.conf +++ /dev/null @@ -1,2 +0,0 @@ -COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_2017_gfdlmp_gsd_chem | standard | | fv3 | -RUN | fv3_ccpp_gfdlmp_gsd_chem | standard | | fv3 | diff --git a/tests/rt_chem_temp.conf b/tests/rt_chem_temp.conf new file mode 100644 index 0000000000..0fcb72c5e2 --- /dev/null +++ b/tests/rt_chem_temp.conf @@ -0,0 +1,9 @@ +COMPILE | APP=ATM REPRO=Y SUITES=FV3_GFS_2017_gfdlmp_gsd_chem | | fv3 | +RUN | fv3_gfdlmp_gsd_chem | | fv3 | +RUN | fv3_gfdlmp_gsd_chem_sppt | | fv3 | +RUN | fv3_gfdlmp_gsd_chem_ca | | fv3 | + +COMPILE | APP=ATM DEBUG=Y SUITES=FV3_GFS_2017_gfdlmp_gsd_chem | | fv3 | +RUN | fv3_gfdlmp_gsd_chem_debug | | fv3 | +RUN | fv3_gfdlmp_gsd_chem_sppt_debug | | fv3 | +RUN | fv3_gfdlmp_gsd_chem_ca_debug | | fv3 | diff --git a/tests/tests/fv3_ccpp_gsd_mynnsfc b/tests/tests/fv3_ccpp_gsd_mynnsfc deleted file mode 100644 index 8d39c21413..0000000000 --- a/tests/tests/fv3_ccpp_gsd_mynnsfc +++ /dev/null @@ -1,127 +0,0 @@ -############################################################################### -# -# FV3 CCPP GSD (GF CU + Thompson MP + MYNN PBL + RUC LSM + MYNN SFC) full (0-48h) test -# -############################################################################### - -export TEST_DESCR="Compare FV3 CCPP GSD + MYNN SFC results with previous trunk version" - -export CNTL_DIR=fv3_gsd_mynnsfc - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - phyf027.tile1.nc \ - phyf027.tile2.nc \ - phyf027.tile3.nc \ - phyf027.tile4.nc \ - phyf027.tile5.nc \ - phyf027.tile6.nc \ - phyf048.tile1.nc \ - phyf048.tile2.nc \ - phyf048.tile3.nc \ - phyf048.tile4.nc \ - phyf048.tile5.nc \ - phyf048.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - dynf027.tile1.nc \ - dynf027.tile2.nc \ - dynf027.tile3.nc \ - dynf027.tile4.nc \ - dynf027.tile5.nc \ - dynf027.tile6.nc \ - dynf048.tile1.nc \ - dynf048.tile2.nc \ - dynf048.tile3.nc \ - dynf048.tile4.nc \ - dynf048.tile5.nc \ - dynf048.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - -export_fv3 -export NODES=$(expr $TASKS / $TPN + 1) - -export FHMAX=48 -export FDIAG=3 - -export DT_ATMOS="600" -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.F. -export LRADAR=.T. -export LTAEROSOL=.T. - -export FV3_RUN=ccpp_gsd_run.IN -export CCPP_SUITE=FV3_GSD_v0_mynnsfc -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_gsd.nml.IN - -export HYBEDMF=.F. -export DO_MYNNEDMF=.T. -export DO_MYNNSFCLAY=.T. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LSM=3 -export LSOIL_LSM=9 - -RUN_SCRIPT=rt_fv3.sh - -export WLCLK=30 - diff --git a/tests/tests/fv3_ccpp_gsd_mynnsfc_debug b/tests/tests/fv3_ccpp_gsd_mynnsfc_debug deleted file mode 100644 index a394908ad7..0000000000 --- a/tests/tests/fv3_ccpp_gsd_mynnsfc_debug +++ /dev/null @@ -1,102 +0,0 @@ -########################################################################################## -# -# FV3 CCPP GSD (GF CU + Thompson MP + MYNN PBL + RUC LSM + MYNN SFC) 24h test in DEBUG mode -# -########################################################################################## - -export TEST_DESCR="Compare FV3 CCPP GSD + MYNN SFC DEBUG results with previous trunk version" - -export CNTL_DIR=fv3_gsd_mynnsfc_debug - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf003.tile1.nc \ - phyf003.tile2.nc \ - phyf003.tile3.nc \ - phyf003.tile4.nc \ - phyf003.tile5.nc \ - phyf003.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf003.tile1.nc \ - dynf003.tile2.nc \ - dynf003.tile3.nc \ - dynf003.tile4.nc \ - dynf003.tile5.nc \ - dynf003.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - -export_fv3 -export NODES=$(expr $TASKS / $TPN + 1) - -export FHMAX=3 -export FDIAG=3 - -export DT_ATMOS="600" -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.F. -export LRADAR=.T. -export LTAEROSOL=.T. - -export FV3_RUN=ccpp_gsd_run.IN -export CCPP_SUITE=FV3_GSD_v0_mynnsfc -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_gsd.nml.IN - -export HYBEDMF=.F. -export DO_MYNNEDMF=.T. -export DO_MYNNSFCLAY=.T. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LSM=3 -export LSOIL_LSM=9 - -RUN_SCRIPT=rt_fv3.sh - -export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc b/tests/tests/fv3_ccpp_gsd_noah_mynnsfc deleted file mode 100644 index 513ada1dc9..0000000000 --- a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc +++ /dev/null @@ -1,125 +0,0 @@ -############################################################################### -# -# FV3 CCPP GSD (GF CU + Thompson MP + MYNN PBL + NOAH LSM + MYNN SFC) full (0-48h) test -# -############################################################################### - -export TEST_DESCR="Compare FV3 CCPP GSD + NOAH LSM + MYNN SFC results with previous trunk version" - -export CNTL_DIR=fv3_gsd_noah_mynnsfc - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf024.tile1.nc \ - phyf024.tile2.nc \ - phyf024.tile3.nc \ - phyf024.tile4.nc \ - phyf024.tile5.nc \ - phyf024.tile6.nc \ - phyf027.tile1.nc \ - phyf027.tile2.nc \ - phyf027.tile3.nc \ - phyf027.tile4.nc \ - phyf027.tile5.nc \ - phyf027.tile6.nc \ - phyf048.tile1.nc \ - phyf048.tile2.nc \ - phyf048.tile3.nc \ - phyf048.tile4.nc \ - phyf048.tile5.nc \ - phyf048.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf024.tile1.nc \ - dynf024.tile2.nc \ - dynf024.tile3.nc \ - dynf024.tile4.nc \ - dynf024.tile5.nc \ - dynf024.tile6.nc \ - dynf027.tile1.nc \ - dynf027.tile2.nc \ - dynf027.tile3.nc \ - dynf027.tile4.nc \ - dynf027.tile5.nc \ - dynf027.tile6.nc \ - dynf048.tile1.nc \ - dynf048.tile2.nc \ - dynf048.tile3.nc \ - dynf048.tile4.nc \ - dynf048.tile5.nc \ - dynf048.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - -export_fv3 -export NODES=$(expr $TASKS / $TPN + 1) - -export FHMAX=48 -export FDIAG=3 - -export DT_ATMOS="600" -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.F. -export LRADAR=.T. -export LTAEROSOL=.T. - -export FV3_RUN=ccpp_gsd_run.IN -export CCPP_SUITE=FV3_GSD_noah_mynnsfc -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_gsd.nml.IN - -export HYBEDMF=.F. -export DO_MYNNEDMF=.T. -export DO_MYNNSFCLAY=.T. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 - -RUN_SCRIPT=rt_fv3.sh - -export WLCLK=30 - diff --git a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug b/tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug deleted file mode 100644 index 9aa27721d0..0000000000 --- a/tests/tests/fv3_ccpp_gsd_noah_mynnsfc_debug +++ /dev/null @@ -1,100 +0,0 @@ -########################################################################################## -# -# FV3 CCPP GSD (GF CU + Thompson MP + MYNN PBL + NOAH LSM + MYNN SFC) 24h test in DEBUG mode -# -########################################################################################## - -export TEST_DESCR="Compare FV3 CCPP GSD + NOAH LSM + MYNN SFC DEBUG results with previous trunk version" - -export CNTL_DIR=fv3_gsd_noah_mynnsfc_debug - -export LIST_FILES="atmos_4xdaily.tile1.nc \ - atmos_4xdaily.tile2.nc \ - atmos_4xdaily.tile3.nc \ - atmos_4xdaily.tile4.nc \ - atmos_4xdaily.tile5.nc \ - atmos_4xdaily.tile6.nc \ - phyf000.tile1.nc \ - phyf000.tile2.nc \ - phyf000.tile3.nc \ - phyf000.tile4.nc \ - phyf000.tile5.nc \ - phyf000.tile6.nc \ - phyf003.tile1.nc \ - phyf003.tile2.nc \ - phyf003.tile3.nc \ - phyf003.tile4.nc \ - phyf003.tile5.nc \ - phyf003.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf003.tile1.nc \ - dynf003.tile2.nc \ - dynf003.tile3.nc \ - dynf003.tile4.nc \ - dynf003.tile5.nc \ - dynf003.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - -export_fv3 -export NODES=$(expr $TASKS / $TPN + 1) - -export FHMAX=3 -export FDIAG=3 - -export DT_ATMOS="600" -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.F. -export LRADAR=.T. -export LTAEROSOL=.T. - -export FV3_RUN=ccpp_gsd_run.IN -export CCPP_SUITE=FV3_GSD_noah_mynnsfc -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_gsd.nml.IN - -export HYBEDMF=.F. -export DO_MYNNEDMF=.T. -export DO_MYNNSFCLAY=.T. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 - -RUN_SCRIPT=rt_fv3.sh - -export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_gfdlmp_gsd_chem b/tests/tests/fv3_gfdlmp_gsd_chem similarity index 91% rename from tests/tests/fv3_ccpp_gfdlmp_gsd_chem rename to tests/tests/fv3_gfdlmp_gsd_chem index 46b2357534..401ab64fe0 100644 --- a/tests/tests/fv3_ccpp_gfdlmp_gsd_chem +++ b/tests/tests/fv3_gfdlmp_gsd_chem @@ -1,10 +1,10 @@ ############################################################################### # -# FV3 CCPP GFDL-MP test +# FV3 GFDL-MP GSD-CHEM test # ############################################################################### -export TEST_DESCR="Compare FV3 CCPP GFDL-MP results with previous trunk version" +export TEST_DESCR="Compare FV3 GFDL-MP GSD-CHEM results with previous trunk version" export CNTL_DIR=fv3_gfdlmp_gsd_chem @@ -63,8 +63,7 @@ export WRITE_FSYNCFLAG=.true. export TRANS_TRAC=.T. export CPLCHM=.T. -export FV3_RUN=ccpp_gfdlmp_run.IN +export FV3_RUN=gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_gfdlmp_gsd_chem -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_gfdlmp_gsd_chem.nml.IN +export INPUT_NML=gfdlmp_gsd_chem.nml.IN diff --git a/tests/tests/fv3_ccpp_gfdlmp_gsd_chem_ca b/tests/tests/fv3_gfdlmp_gsd_chem_ca similarity index 91% rename from tests/tests/fv3_ccpp_gfdlmp_gsd_chem_ca rename to tests/tests/fv3_gfdlmp_gsd_chem_ca index fdd233c67a..d8458fe2f6 100644 --- a/tests/tests/fv3_ccpp_gfdlmp_gsd_chem_ca +++ b/tests/tests/fv3_gfdlmp_gsd_chem_ca @@ -1,10 +1,10 @@ ############################################################################### # -# FV3 CCPP GFDL-MP test +# FV3 GFDL-MP GSD-CHEM CA test # ############################################################################### -export TEST_DESCR="Compare FV3 CCPP GFDL-MP results with previous trunk version" +export TEST_DESCR="Compare FV3 GFDL-MP GSD-CHEM CA results with previous trunk version" export CNTL_DIR=fv3_gfdlmp_gsd_chem_ca @@ -63,8 +63,7 @@ export WRITE_FSYNCFLAG=.true. export TRANS_TRAC=.T. export CPLCHM=.T. -export FV3_RUN=ccpp_gfdlmp_run.IN +export FV3_RUN=gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_gfdlmp_gsd_chem -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_gfdlmp_gsd_chem_ca.nml.IN +export INPUT_NML=gfdlmp_gsd_chem_ca.nml.IN diff --git a/tests/tests/fv3_gfdlmp_gsd_chem_ca_debug b/tests/tests/fv3_gfdlmp_gsd_chem_ca_debug new file mode 100644 index 0000000000..5a36735e34 --- /dev/null +++ b/tests/tests/fv3_gfdlmp_gsd_chem_ca_debug @@ -0,0 +1,64 @@ +############################################################################### +# +# FV3 GFDL-MP GSD-CHEM CA DEBUG test +# +############################################################################### + +export TEST_DESCR="Compare FV3 GFDL-MP GSD-CHEM CA DEBUG results with previous trunk version" + +export CNTL_DIR=fv3_gfdlmp_gsd_chem_ca_debug + +export LIST_FILES="phyf000.nemsio \ + phyf006.nemsio \ + dynf000.nemsio \ + dynf006.nemsio \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 + +DT_ATMOS="1200" +export FHMAX=06 +export OUTPUT_GRID="'gaussian_grid'" +export OUTPUT_FILE="'nemsio'" +export WRITE_NEMSIOFLIP=.true. +export WRITE_FSYNCFLAG=.true. + +export TRANS_TRAC=.T. +export CPLCHM=.T. + +export FV3_RUN=gfdlmp_run.IN +export CCPP_SUITE=FV3_GFS_2017_gfdlmp_gsd_chem +export INPUT_NML=gfdlmp_gsd_chem_ca.nml.IN + diff --git a/tests/tests/fv3_gfdlmp_gsd_chem_debug b/tests/tests/fv3_gfdlmp_gsd_chem_debug new file mode 100644 index 0000000000..a398e94ab8 --- /dev/null +++ b/tests/tests/fv3_gfdlmp_gsd_chem_debug @@ -0,0 +1,64 @@ +############################################################################### +# +# FV3 GFDL-MP GSD-CHEM DEBUG test +# +############################################################################### + +export TEST_DESCR="Compare FV3 GFDL-MP GSD-CHEM DEBUG results with previous trunk version" + +export CNTL_DIR=fv3_gfdlmp_gsd_chem_debug + +export LIST_FILES="phyf000.nemsio \ + phyf006.nemsio \ + dynf000.nemsio \ + dynf006.nemsio \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 + +DT_ATMOS="1200" +export FHMAX=06 +export OUTPUT_GRID="'gaussian_grid'" +export OUTPUT_FILE="'nemsio'" +export WRITE_NEMSIOFLIP=.true. +export WRITE_FSYNCFLAG=.true. + +export TRANS_TRAC=.T. +export CPLCHM=.T. + +export FV3_RUN=gfdlmp_run.IN +export CCPP_SUITE=FV3_GFS_2017_gfdlmp_gsd_chem +export INPUT_NML=gfdlmp_gsd_chem.nml.IN + diff --git a/tests/tests/fv3_ccpp_gfdlmp_gsd_chem_sppt b/tests/tests/fv3_gfdlmp_gsd_chem_sppt similarity index 91% rename from tests/tests/fv3_ccpp_gfdlmp_gsd_chem_sppt rename to tests/tests/fv3_gfdlmp_gsd_chem_sppt index 0317042377..eaf83a34c3 100644 --- a/tests/tests/fv3_ccpp_gfdlmp_gsd_chem_sppt +++ b/tests/tests/fv3_gfdlmp_gsd_chem_sppt @@ -1,10 +1,10 @@ ############################################################################### # -# FV3 CCPP GFDL-MP test +# FV3 GFDL-MP GSD-CHEM SPPT test # ############################################################################### -export TEST_DESCR="Compare FV3 CCPP GFDL-MP results with previous trunk version" +export TEST_DESCR="Compare FV3 GFDL-MP GSD-CHEM SPPT results with previous trunk version" export CNTL_DIR=fv3_gfdlmp_gsd_chem_sppt @@ -63,8 +63,7 @@ export WRITE_FSYNCFLAG=.true. export TRANS_TRAC=.T. export CPLCHM=.T. -export FV3_RUN=ccpp_gfdlmp_run.IN +export FV3_RUN=gfdlmp_run.IN export CCPP_SUITE=FV3_GFS_2017_gfdlmp_gsd_chem -export CCPP_LIB_DIR=ccpp/lib -export INPUT_NML=ccpp_gfdlmp_gsd_chem_sppt.nml.IN +export INPUT_NML=gfdlmp_gsd_chem_sppt.nml.IN diff --git a/tests/tests/fv3_gfdlmp_gsd_chem_sppt_debug b/tests/tests/fv3_gfdlmp_gsd_chem_sppt_debug new file mode 100644 index 0000000000..61ece0524e --- /dev/null +++ b/tests/tests/fv3_gfdlmp_gsd_chem_sppt_debug @@ -0,0 +1,64 @@ +############################################################################### +# +# FV3 GFDL-MP GSD-CHEM SPPT DEBUG test +# +############################################################################### + +export TEST_DESCR="Compare FV3 GFDL-MP GSD-CHEM SPPT DEBUG results with previous trunk version" + +export CNTL_DIR=fv3_gfdlmp_gsd_chem_sppt_debug + +export LIST_FILES="phyf000.nemsio \ + phyf006.nemsio \ + dynf000.nemsio \ + dynf006.nemsio \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 + +DT_ATMOS="1200" +export FHMAX=06 +export OUTPUT_GRID="'gaussian_grid'" +export OUTPUT_FILE="'nemsio'" +export WRITE_NEMSIOFLIP=.true. +export WRITE_FSYNCFLAG=.true. + +export TRANS_TRAC=.T. +export CPLCHM=.T. + +export FV3_RUN=gfdlmp_run.IN +export CCPP_SUITE=FV3_GFS_2017_gfdlmp_gsd_chem +export INPUT_NML=gfdlmp_gsd_chem_sppt.nml.IN + From 849074a30f32fdbadc87053525931415c0d0a90c Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Thu, 8 Apr 2021 09:18:58 -0600 Subject: [PATCH 105/109] Add gocart submodule and configure app ATMC (=FV3+GOCART) --- .gitmodules | 6 ++++-- CMakeLists.txt | 21 ++++++++++++++++++++- cmake/configure_apps.cmake | 5 ++++- gocart | 2 +- tests/compile.sh | 4 ++++ 5 files changed, 33 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index 089a9d0e1a..69963e7fc3 100644 --- a/.gitmodules +++ b/.gitmodules @@ -22,8 +22,10 @@ branch = gsl/develop [submodule "gocart"] path = gocart - url = https://github.com/NOAA-GSL/GOCART - branch = gsl/develop-chem + #url = https://github.com/NOAA-GSL/GOCART + #branch = gsl/develop-chem + url = https://github.com/climbfuji/GOCART + branch = gsl_develop_chem_initial_updates [submodule "CMakeModules"] path = CMakeModules url = https://github.com/NOAA-EMC/CMakeModules diff --git a/CMakeLists.txt b/CMakeLists.txt index 735f5d8449..c845ce2d10 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,9 +40,10 @@ set(STOCH_PHYS OFF CACHE BOOL "Enable Stochastic Physics") set(NEMSdatm OFF CACHE BOOL "Enable NEMSdatm") set(CMEPS OFF CACHE BOOL "Enable CMEPS") set(CDEPS OFF CACHE BOOL "Enable CDEPS") +set(GOCART OFF CACHE BOOL "Enable GOCART") # Valid applications and choices -list(APPEND VALID_APPS ATM ATMW S2S S2SW DATM DATM_NEMS) +list(APPEND VALID_APPS ATM ATMC ATMW S2S S2SW DATM DATM_NEMS) set(APP NONE CACHE BOOL "Application Name") if(NOT (APP IN_LIST VALID_APPS)) message(FATAL_ERROR "${APP} is not a valid application.\nValid Applications are: ${VALID_APPS}") @@ -225,6 +226,24 @@ if(CICE6) add_subdirectory(CICE-interface) endif() +############################################################################### +### Chemistry Components [GOCART] +############################################################################### +if(GOCART) + # this will look for MAPL ? + #set(BUILD_UFS ON CACHE BOOL "Enable UFS build of GOCART") + #add_subdirectory(gocart) + list(APPEND _gocart_srcs gocart/Process_Library/Chem_MieTableMod2G.F90 + gocart/Process_Library/GOCART2G_Process.F90) + add_library(gocart ${_gocart_srcs}) + target_compile_definitions(gocart PRIVATE "HAS_NETCDF3") + #set_target_properties(gocart PROPERTIES Fortran_MODULE_DIRECTORY + # ${CMAKE_CURRENT_BINARY_DIR}/mod) + #target_include_directories(gocart PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/NEMS/src) + #target_include_directories(ufs INTERFACE $ + # $) +endif() + ############################################################################### ### Mediator Components [CMEPS] ############################################################################### diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index a02c79e30a..75c410b3fa 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -13,13 +13,16 @@ ############################################################################### ### Configure Application Components ############################################################################### -if(APP MATCHES "^(ATM|ATMW)$") +if(APP MATCHES "^(ATM|ATMW|ATMC)$") set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 ON CACHE BOOL "Enable FV3" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) if(APP MATCHES "ATMW") set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) message("Configuring UFS app in Atmosphere with Waves mode") + elseif(APP MATCHES "ATMC") + set(GOCART ON CACHE BOOL "Enable GOCART Chemistry" FORCE) + message("Configuring UFS app in Atmosphere with GOCART Chemistry") else() message("Configuring UFS app in Atmosphere Only mode") endif() diff --git a/gocart b/gocart index 2055e80e88..f92c753238 160000 --- a/gocart +++ b/gocart @@ -1 +1 @@ -Subproject commit 2055e80e8827775b0454fd04ecc8b01eba7a0634 +Subproject commit f92c753238d2532d709f5cfef843f9030b174e5a diff --git a/tests/compile.sh b/tests/compile.sh index ff76688daa..21617585c2 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -143,6 +143,10 @@ if [[ "${MAKE_OPT}" == *"APP=ATMW"* ]]; then CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATMW" fi +if [[ "${MAKE_OPT}" == *"APP=ATMC"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATMC" +fi + if [[ "${MAKE_OPT}" == *"APP=S2S"* ]]; then CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=S2S -DMOM6SOLO=ON" fi From 80d8c0b1eec1cb55690705ff835a8acf3818146c Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Fri, 9 Apr 2021 09:26:13 -0600 Subject: [PATCH 106/109] Run CA tests in tests/rt_ccpp_dev.conf only on hera.intel --- tests/rt_ccpp_dev.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/rt_ccpp_dev.conf b/tests/rt_ccpp_dev.conf index 602de6eb3d..8803cf4e4b 100644 --- a/tests/rt_ccpp_dev.conf +++ b/tests/rt_ccpp_dev.conf @@ -38,7 +38,7 @@ RUN | fv3_hrrr COMPILE | APP=ATM REPRO=Y SUITES=FV3_GFS_2017_gfdlmp_gsd_chem | | fv3 | RUN | fv3_gfdlmp_gsd_chem | | fv3 | RUN | fv3_gfdlmp_gsd_chem_sppt | | fv3 | -RUN | fv3_gfdlmp_gsd_chem_ca | | fv3 | +RUN | fv3_gfdlmp_gsd_chem_ca |+ hera.intel | fv3 | # Compile without suite argument for CAPS physics COMPILE | APP=ATM REPRO=Y | | fv3 | @@ -65,4 +65,4 @@ RUN | fv3_gsd_sar_debug COMPILE | APP=ATM DEBUG=Y SUITES=FV3_GFS_2017_gfdlmp_gsd_chem | | fv3 | RUN | fv3_gfdlmp_gsd_chem_debug | | fv3 | RUN | fv3_gfdlmp_gsd_chem_sppt_debug | | fv3 | -RUN | fv3_gfdlmp_gsd_chem_ca_debug | | fv3 | +RUN | fv3_gfdlmp_gsd_chem_ca_debug |+ hera.intel | fv3 | From 5f91eadd1152651f8f05cc24473fb7f13458f591 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Fri, 9 Apr 2021 10:46:25 -0600 Subject: [PATCH 107/109] Update submodule pointer for fv3atm --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index aa3acfc4d5..3580bc730a 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit aa3acfc4d5b41420db876467568e5bc911ee46f1 +Subproject commit 3580bc730a6d227fd165d4abed38f6998b0e67b6 From 1f2a01436cfcba04e4058c8db6e01e652e82af87 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Fri, 9 Apr 2021 10:49:30 -0600 Subject: [PATCH 108/109] Fix RTPWD in tests/rt.sh --- tests/chem.conf | 3 --- tests/rt.sh | 3 --- tests/rt_chem_temp.conf | 9 --------- 3 files changed, 15 deletions(-) delete mode 100644 tests/chem.conf delete mode 100644 tests/rt_chem_temp.conf diff --git a/tests/chem.conf b/tests/chem.conf deleted file mode 100644 index 5f90efc187..0000000000 --- a/tests/chem.conf +++ /dev/null @@ -1,3 +0,0 @@ -COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_2017_gfdlmp_gsd_chem | standard | | fv3 | -RUN | fv3_ccpp_gfdlmp_gsd_chem | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfdlmp_gsd_chem_sppt | standard | hera.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 7241f2d28c..5d3ac34b89 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -247,9 +247,6 @@ elif [[ $MACHINE_ID = hera.* ]]; then STMP=$dprefix/stmp4 PTMP=$dprefix/stmp2 - # Until we find a better place, the chemistry test case is here: - export RTPWD=/scratch2/BMC/wrfruc/Samuel.Trahan/perturb-smoke/RT/NEMSfv3gfs/develop-20200929/${RT_COMPILER^^}/ - SCHEDULER=slurm cp fv3_conf/fv3_slurm.IN_hera fv3_conf/fv3_slurm.IN cp fv3_conf/compile_slurm.IN_hera fv3_conf/compile_slurm.IN diff --git a/tests/rt_chem_temp.conf b/tests/rt_chem_temp.conf deleted file mode 100644 index 0fcb72c5e2..0000000000 --- a/tests/rt_chem_temp.conf +++ /dev/null @@ -1,9 +0,0 @@ -COMPILE | APP=ATM REPRO=Y SUITES=FV3_GFS_2017_gfdlmp_gsd_chem | | fv3 | -RUN | fv3_gfdlmp_gsd_chem | | fv3 | -RUN | fv3_gfdlmp_gsd_chem_sppt | | fv3 | -RUN | fv3_gfdlmp_gsd_chem_ca | | fv3 | - -COMPILE | APP=ATM DEBUG=Y SUITES=FV3_GFS_2017_gfdlmp_gsd_chem | | fv3 | -RUN | fv3_gfdlmp_gsd_chem_debug | | fv3 | -RUN | fv3_gfdlmp_gsd_chem_sppt_debug | | fv3 | -RUN | fv3_gfdlmp_gsd_chem_ca_debug | | fv3 | From 718c185537fdd61cc1c1641fb691d4298969dd4d Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Tue, 13 Apr 2021 07:39:36 -0600 Subject: [PATCH 109/109] Revert change to .gitmodules and update submodule pointers for gocart and fv3atm --- .gitmodules | 12 ++++-------- FV3 | 2 +- gocart | 2 +- 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.gitmodules b/.gitmodules index 69963e7fc3..c4ba436e3a 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,7 @@ [submodule "FV3"] path = FV3 - #url = https://github.com/NOAA-GSL/fv3atm - #branch = gsl/develop-chem - url = https://github.com/climbfuji/fv3atm - branch = gsl_develop_chem_add_gocart + url = https://github.com/NOAA-GSL/fv3atm + branch = gsl/develop-chem [submodule "NEMS"] path = NEMS url = https://github.com/NOAA-EMC/NEMS @@ -22,10 +20,8 @@ branch = gsl/develop [submodule "gocart"] path = gocart - #url = https://github.com/NOAA-GSL/GOCART - #branch = gsl/develop-chem - url = https://github.com/climbfuji/GOCART - branch = gsl_develop_chem_initial_updates + url = https://github.com/NOAA-GSL/GOCART + branch = gsl/develop-chem [submodule "CMakeModules"] path = CMakeModules url = https://github.com/NOAA-EMC/CMakeModules diff --git a/FV3 b/FV3 index 3580bc730a..0e197f9e57 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 3580bc730a6d227fd165d4abed38f6998b0e67b6 +Subproject commit 0e197f9e5731d74562ed9ae6071ca5a7e0602424 diff --git a/gocart b/gocart index f92c753238..1707791190 160000 --- a/gocart +++ b/gocart @@ -1 +1 @@ -Subproject commit f92c753238d2532d709f5cfef843f9030b174e5a +Subproject commit 1707791190b44250b587db5a74b49f8aa0e4b899